-
Notifications
You must be signed in to change notification settings - Fork 51
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
Add 1.5.1 pools #1551
Add 1.5.1 pools #1551
Conversation
e4a660f
to
8a24514
Compare
Quality Gate passedIssues Measures |
85696e5
to
31097f0
Compare
31097f0
to
9214ff3
Compare
/// Example: | ||
/// Assume there is a token with 6 decimals on chain A and 3 decimals on chain B. | ||
/// - 1.123456 tokens are burned on chain A. | ||
/// - 1.234 tokens are minted on chain B. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
q: shouldn't it be 1.123
?
@@ -78,7 +78,7 @@ contract USDCTokenPool is TokenPool, ITypeAndVersion { | |||
address[] memory allowlist, | |||
address rmnProxy, | |||
address router | |||
) TokenPool(token, allowlist, rmnProxy, router) { | |||
) TokenPool(token, 6, allowlist, rmnProxy, router) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: use constant instead of magic number
import {HybridLockReleaseUSDCTokenPool} from "../../../../pools/USDC/HybridLockReleaseUSDCTokenPool.sol"; | ||
import {HybridLockReleaseUSDCTokenPoolSetup} from "./HybridLockReleaseUSDCTokenPoolSetup.t.sol"; | ||
|
||
contract HybridLockReleaseUSDCTokenPool_TransferLiquidity is HybridLockReleaseUSDCTokenPoolSetup { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
contract HybridLockReleaseUSDCTokenPool_TransferLiquidity is HybridLockReleaseUSDCTokenPoolSetup { | |
contract HybridLockReleaseUSDCTokenPool_transferLiquidity is HybridLockReleaseUSDCTokenPoolSetup { |
No description provided.