-
Notifications
You must be signed in to change notification settings - Fork 3
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
[VEN-3024][VEN-3029] Add gmETH and gmBTC markets in the Core Pool / Arbitrum, and Thena to the Core Pool / BNB Chain #468
Conversation
simulations/vip-433/arbitrumone.ts
Outdated
const BLOCKS_PER_YEAR = BigNumber.from("31536000"); | ||
const ONE_YEAR = 3600 * 24 * 365; | ||
|
||
const { POOL_REGISTRY, NORMAL_TIMELOCK, RESILIENT_ORACLE, CHAINLINK_ORACLE } = NETWORK_ADDRESSES["arbitrumone"]; |
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: generally we use hardcoded addresses to freeze the variables used in the VIP in the event they might be affected by a package update
simulations/vip-433/arbitrumone.ts
Outdated
before(async () => { | ||
await setMaxStalePeriodInChainlinkOracle( | ||
CHAINLINK_ORACLE, | ||
"0x5979D7b546E38E414F7E9822514be443A4800529", |
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: Labelded addresses are nice for readability
|
||
checkIsolatedPoolsComptrollers(); | ||
}); | ||
}); |
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.
Aren't we checking converter configurations?
Description
Resolves VEN-3024 and VEN-3029