-
Notifications
You must be signed in to change notification settings - Fork 15
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 tomls for SIP-363 base-sepolia #171
Conversation
cf5f3d9
to
91509bc
Compare
fromCall.func = "owner" | ||
func = "updatePriceData" | ||
args = [ | ||
"<%= settings.perpsWifMarketId %>", |
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.
Can we export market id with extras, use it here instead of hardcoded setting and then remove depends? On all steps
@@ -14,7 +14,7 @@ const { wrapCollateral } = require('../../tasks/wrapCollateral'); | |||
const { unwrapCollateral } = require('../../tasks/unwrapCollateral'); | |||
const { syncTime } = require('../../tasks/syncTime'); | |||
|
|||
const SYNTH_USDC_MAX_MARKET_COLLATERAL = 10_000_000; | |||
const SYNTH_USDC_MAX_MARKET_COLLATERAL = 20_000_000; |
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.
When people managed to fill up 10mil wrapper? I thought we did not have free mint to avoid this...
@@ -40,7 +40,7 @@ const { | |||
}, | |||
} = require('../../deployments/meta.json'); | |||
|
|||
describe(require('path').basename(__filename, '.e2e.js'), function () { | |||
describe.only(require('path').basename(__filename, '.e2e.js'), function () { |
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.
describe.only(require('path').basename(__filename, '.e2e.js'), function () { | |
describe(require('path').basename(__filename, '.e2e.js'), function () { |
@@ -230,6 +245,11 @@ describe(require('path').basename(__filename, '.e2e.js'), function () { | |||
settlementStrategyId, | |||
}); | |||
|
|||
const PerpsMarketProxy = new ethers.Contract( |
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.
Unused?
No description provided.