-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deploy ronin saigon usdc market #104
base: main
Are you sure you want to change the base?
Conversation
…are/collateral-extension
…tware/comet into woof-software/collateral-extension
…xtension-audit-fix Audit fixes to collateral extension
…tware/comet into deploy-ronin-saigon-usdc-market
constructor(CometConfiguration.AssetConfig[] memory assetConfigs) { | ||
uint8 _numAssets = uint8(assetConfigs.length); | ||
numAssets = _numAssets; | ||
|
||
(asset00_a, asset00_b) = getPackedAssetInternal(assetConfigs, 0); | ||
(asset01_a, asset01_b) = getPackedAssetInternal(assetConfigs, 1); | ||
(asset02_a, asset02_b) = getPackedAssetInternal(assetConfigs, 2); | ||
(asset03_a, asset03_b) = getPackedAssetInternal(assetConfigs, 3); | ||
(asset04_a, asset04_b) = getPackedAssetInternal(assetConfigs, 4); | ||
(asset05_a, asset05_b) = getPackedAssetInternal(assetConfigs, 5); | ||
(asset06_a, asset06_b) = getPackedAssetInternal(assetConfigs, 6); | ||
(asset07_a, asset07_b) = getPackedAssetInternal(assetConfigs, 7); | ||
(asset08_a, asset08_b) = getPackedAssetInternal(assetConfigs, 8); | ||
(asset09_a, asset09_b) = getPackedAssetInternal(assetConfigs, 9); | ||
(asset10_a, asset10_b) = getPackedAssetInternal(assetConfigs, 10); | ||
(asset11_a, asset11_b) = getPackedAssetInternal(assetConfigs, 11); | ||
(asset12_a, asset12_b) = getPackedAssetInternal(assetConfigs, 12); | ||
(asset13_a, asset13_b) = getPackedAssetInternal(assetConfigs, 13); | ||
(asset14_a, asset14_b) = getPackedAssetInternal(assetConfigs, 14); | ||
(asset15_a, asset15_b) = getPackedAssetInternal(assetConfigs, 15); | ||
(asset16_a, asset16_b) = getPackedAssetInternal(assetConfigs, 16); | ||
(asset17_a, asset17_b) = getPackedAssetInternal(assetConfigs, 17); | ||
(asset18_a, asset18_b) = getPackedAssetInternal(assetConfigs, 18); | ||
(asset19_a, asset19_b) = getPackedAssetInternal(assetConfigs, 19); | ||
(asset20_a, asset20_b) = getPackedAssetInternal(assetConfigs, 20); | ||
(asset21_a, asset21_b) = getPackedAssetInternal(assetConfigs, 21); | ||
(asset22_a, asset22_b) = getPackedAssetInternal(assetConfigs, 22); | ||
(asset23_a, asset23_b) = getPackedAssetInternal(assetConfigs, 23); | ||
} |
Check warning
Code scanning / Semgrep OSS
Semgrep Finding: compound.solidity.missing-constructor-sanity-checks Warning
constructor(CometConfiguration.AssetConfig[] memory assetConfigs) { | ||
uint8 _numAssets = uint8(assetConfigs.length); | ||
numAssets = _numAssets; | ||
|
||
(asset00_a, asset00_b) = getPackedAssetInternal(assetConfigs, 0); | ||
(asset01_a, asset01_b) = getPackedAssetInternal(assetConfigs, 1); | ||
(asset02_a, asset02_b) = getPackedAssetInternal(assetConfigs, 2); | ||
(asset03_a, asset03_b) = getPackedAssetInternal(assetConfigs, 3); | ||
(asset04_a, asset04_b) = getPackedAssetInternal(assetConfigs, 4); | ||
(asset05_a, asset05_b) = getPackedAssetInternal(assetConfigs, 5); | ||
(asset06_a, asset06_b) = getPackedAssetInternal(assetConfigs, 6); | ||
(asset07_a, asset07_b) = getPackedAssetInternal(assetConfigs, 7); | ||
(asset08_a, asset08_b) = getPackedAssetInternal(assetConfigs, 8); | ||
(asset09_a, asset09_b) = getPackedAssetInternal(assetConfigs, 9); | ||
(asset10_a, asset10_b) = getPackedAssetInternal(assetConfigs, 10); | ||
(asset11_a, asset11_b) = getPackedAssetInternal(assetConfigs, 11); | ||
(asset12_a, asset12_b) = getPackedAssetInternal(assetConfigs, 12); | ||
(asset13_a, asset13_b) = getPackedAssetInternal(assetConfigs, 13); | ||
(asset14_a, asset14_b) = getPackedAssetInternal(assetConfigs, 14); | ||
(asset15_a, asset15_b) = getPackedAssetInternal(assetConfigs, 15); | ||
(asset16_a, asset16_b) = getPackedAssetInternal(assetConfigs, 16); | ||
(asset17_a, asset17_b) = getPackedAssetInternal(assetConfigs, 17); | ||
(asset18_a, asset18_b) = getPackedAssetInternal(assetConfigs, 18); | ||
(asset19_a, asset19_b) = getPackedAssetInternal(assetConfigs, 19); | ||
(asset20_a, asset20_b) = getPackedAssetInternal(assetConfigs, 20); | ||
(asset21_a, asset21_b) = getPackedAssetInternal(assetConfigs, 21); | ||
(asset22_a, asset22_b) = getPackedAssetInternal(assetConfigs, 22); | ||
(asset23_a, asset23_b) = getPackedAssetInternal(assetConfigs, 23); | ||
} |
Check notice
Code scanning / Semgrep OSS
Semgrep Finding: rules.solidity.performance.non-payable-constructor Note
|
||
uint startGas = gasleft(); | ||
accrueInternal(); | ||
for (uint i = 0; i < accounts.length; ) { |
Check notice
Code scanning / Semgrep OSS
Semgrep Finding: rules.solidity.performance.array-length-outside-loop Note
accrueInternal(); | ||
for (uint i = 0; i < accounts.length; ) { | ||
absorbInternal(absorber, accounts[i]); | ||
unchecked { i++; } |
Check notice
Code scanning / Semgrep OSS
Semgrep Finding: rules.solidity.performance.use-prefix-increment-not-postfix Note
The prefix increment expression is cheaper in terms of gas.
// Using gas price instead of base fee would more accurately reflect spend, | ||
// but is also subject to abuse if refunds were to be given automatically. | ||
LiquidatorPoints memory points = liquidatorPoints[absorber]; | ||
points.numAbsorbs++; |
Check notice
Code scanning / Semgrep OSS
Semgrep Finding: rules.solidity.performance.use-prefix-increment-not-postfix Note
The prefix increment expression is cheaper in terms of gas.
|
||
emit AbsorbCollateral(absorber, account, asset, seizeAmount, value); | ||
} | ||
unchecked { i++; } |
Check notice
Code scanning / Semgrep OSS
Semgrep Finding: rules.solidity.performance.use-prefix-increment-not-postfix Note
The prefix increment expression is cheaper in terms of gas.
if (isBuyPaused()) revert Paused(); | ||
|
||
int reserves = getReserves(); | ||
if (reserves >= 0 && uint(reserves) >= targetReserves) revert NotForSale(); |
Check notice
Code scanning / Semgrep OSS
Semgrep Finding: rules.solidity.performance.use-nested-if Note
There are more advantages, such as easier to read code and better coverage reports.
constructor(address l2Router_) { | ||
l2Router = l2Router_; | ||
} |
Check warning
Code scanning / Semgrep OSS
Semgrep Finding: compound.solidity.missing-constructor-sanity-checks Warning
constructor(address l2Router_) { | ||
l2Router = l2Router_; | ||
} |
Check notice
Code scanning / Semgrep OSS
Semgrep Finding: rules.solidity.performance.non-payable-constructor Note
} | ||
|
||
function toAddress(bytes memory data) public pure returns (address addr) { | ||
require(data.length >= 20, "Invalid data length"); |
Check notice
Code scanning / Semgrep OSS
Semgrep Finding: rules.solidity.performance.use-custom-error-not-require Note
to describe the error in detail using NatSpec.
No description provided.