-
Notifications
You must be signed in to change notification settings - Fork 7
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
Carson/form deployment #20
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
2977898
test: test ids are unique on bridge even with the same bridge data
CarsonCase 5755243
feat: added fraxtal deploy config and updated createX addrs
jpick713 65f1a5a
chore: cleaned up logs
jpick713 db48f76
fix: op messenger and config updated to deployment specific
CarsonCase 7f6bc65
feat: script to check whether the teller upgrade was done correctly
junkim012 4b0891b
feat: edited opMessenger key to move from chain config to l1 and l2 s…
jpick713 2395323
codespell fix
CarsonCase 974aeaf
feat: added in correct spot in l1 and l2 configs opMessenger flag
jpick713 ab8958c
Merge pull request #4 from Ion-Protocol/carson/crosschain-op
junkim012 2ff6581
fix: wrong addrs on boba and fraxtal messenger in config
jpick713 9a44fe8
chore: remove ccip in lib
junkim012 df49e52
Merge pull request #11 from Ion-Protocol/fraxtal-deploy
junkim012 d12533e
Merge branch 'master' into carson/OPMessenger-fix
CarsonCase 9b79f22
Merge pull request #12 from Ion-Protocol/carson/OPMessenger-fix
junkim012 7bf0e41
Merge pull request #13 from Ion-Protocol/jun/teller-upgrade-checker
junkim012 e370738
feat: generic rate provider test and deployment for swBTC
junkim012 8fcbdd6
Merge branch 'master' into jun/rswBTC
junkim012 1150638
feat: deployment script for generic rate provider
junkim012 32b51d6
chore: rswBTC deployment config
junkim012 b8036ab
chore: fix spelling error and remove base from chain specific config …
junkim012 dcc199e
fix: do not hardcode boring vault decimals
junkim012 34eb07b
chore: chain config sepolia
CarsonCase 5bc1215
refactor: ready for deployment, awaiting form confirmation
CarsonCase cbe0b2e
build: form deployment on sepolia
CarsonCase aa5da38
example changed
CarsonCase 799dbdd
refactor: comment to clarify why CREATEX is different
CarsonCase 2ed232c
refactor: no assets in example
CarsonCase f0c86ff
fix: makefile fix
CarsonCase 882e6c3
fix: innacurate chain config data
CarsonCase b3bdef2
chore: scripts moved to makefile
CarsonCase c15a117
test: generic rate provider require has asserts
CarsonCase 4f54ce6
merge resolution
CarsonCase File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"cSpell.enableFiletypes": [ | ||
"makefile" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"name": "Ethereum Sepolia", | ||
"balancerVault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", | ||
"lzEndpoint": "0x6EDCE65403992e310A62460808c4b910D972f10f" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"base": "0x160345fC359604fC6e70E3c5fAcbdE5F7A9342d8", | ||
"name": "Sei", | ||
"balancerVault": "0x0000000000000000000000000000000000000000", | ||
"opMessenger": "0x0000000000000000000000000000000000000000", | ||
"lzEndpoint": "0x1a44076050125825900e736c501f859c50fE728c" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"name": "Fraxtal", | ||
"balancerVault": "0x0000000000000000000000000000000000000000", | ||
"lzEndpoint": "0x1a44076050125825900e736c501f859c50fE728c" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"base": "0xDeadDeAddeAddEAddeadDEaDDEAdDeaDDeAD0000", | ||
"name": "Boba", | ||
"balancerVault": "0x0000000000000000000000000000000000000000", | ||
"opMessenger": "0x4200000000000000000000000000000000000010", | ||
"lzEndpoint": "0x0000000000000000000000000000000000000000" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"base": "0x0893A950E8f80B21658ba35D39d9AB00cCa95589", | ||
"protocolAdmin": "0x0000000000417626Ef34D62C4DC189b021603f2F", | ||
"boringVaultAndBaseDecimals": "8", | ||
"boringVault": { | ||
"boringVaultSalt": "0x1ddd634c506ad203da17ff000000000000000000000000000000000000000011", | ||
"boringVaultName": "Form BTC", | ||
"boringVaultSymbol": "FBTC", | ||
"address": "0x0000000000000000000000000000000000000000" | ||
}, | ||
"manager": { | ||
"managerSalt": "0x30432d4b4ec00003b4a250000000000000000000000000000000000000000011", | ||
"address": "0x0000000000000000000000000000000000000000" | ||
}, | ||
"accountant": { | ||
"accountantSalt": "0x6a184dbea6f3cc0318679f000000000000000000000000000000000000000011", | ||
"payoutAddress": "0x0000000000417626Ef34D62C4DC189b021603f2F", | ||
"allowedExchangeRateChangeUpper": "10003", | ||
"allowedExchangeRateChangeLower": "9998", | ||
"minimumUpdateDelayInSeconds": "3600", | ||
"managementFee": "0", | ||
"address": "0x0000000000000000000000000000000000000000" | ||
}, | ||
"teller": { | ||
"tellerSalt": "0x51f8968749a56d01202c91000000000000000000000000000000000000000011", | ||
"maxGasForPeer": 100000, | ||
"minGasForPeer": 0, | ||
"peerEid": 40270, | ||
"tellerContractName": "TellerWithMultiAssetSupport", | ||
"opMessenger": "0x58Cc85b8D04EA49cC6DBd3CbFFd00B4B8D6cb3ef", | ||
"assets": [], | ||
"dvnIfNoDefault": { | ||
"required": [ | ||
"0x589dEDbD617e0CBcB916A9223F4d1300c294236b" | ||
], | ||
"optional": [ | ||
"0x380275805876Ff19055EA900CDb2B46a94ecF20D", | ||
"0x8FafAE7Dd957044088b3d0F67359C327c6200d18", | ||
"0xa59BA433ac34D2927232918Ef5B2eaAfcF130BA5", | ||
"0xe552485d02EDd3067FE7FCbD4dd56BB1D3A998D2" | ||
], | ||
"blockConfirmationsRequiredIfNoDefault": 15, | ||
"optionalThreshold": 1 | ||
}, | ||
"address": "0x0000000000000000000000000000000000000000" | ||
}, | ||
"rolesAuthority": { | ||
"rolesAuthoritySalt": "0x66bbc3b3b3000b01466a3a000000000000000000000000000000000000000011", | ||
"strategist": "0x0000000000417626Ef34D62C4DC189b021603f2F", | ||
"exchangeRateBot": "0x0000000000417626Ef34D62C4DC189b021603f2F", | ||
"address": "0x0000000000000000000000000000000000000000" | ||
}, | ||
"decoder": { | ||
"decoderSalt": "0x48b53893da2e0b0248268c000000000000000000000000000000000000000011", | ||
"address": "0x0000000000000000000000000000000000000000" | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Let's add a "name" field that's unused but lets us know which actual chain these are