Skip to content
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 contracts to mainnet3 #2826

Merged
merged 46 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
b5e4c1c
add ophook
aroralanuk Oct 18, 2023
ccf7476
op ism
aroralanuk Oct 19, 2023
5f237be
setAuthoizedHook
aroralanuk Oct 19, 2023
f48f598
IL1CrossDomainMessenger
aroralanuk Oct 19, 2023
55480fd
Bubbling up verification artifacts to verification.json (#2817)
aroralanuk Oct 19, 2023
940db33
fallback
aroralanuk Oct 19, 2023
65a6136
rm config as address tmp
aroralanuk Oct 20, 2023
3d0dedf
Merge branch 'v3' into routing-hook-deployment
aroralanuk Oct 20, 2023
00086a0
mainnet3 chain adds
aroralanuk Oct 20, 2023
3f0d986
add testnet4 config
aroralanuk Oct 20, 2023
9bad181
add opstack for op and base
aroralanuk Oct 20, 2023
40a1329
override to handleTx
aroralanuk Oct 23, 2023
7440718
Merge branch 'v3' into routing-hook-deployment
aroralanuk Oct 23, 2023
0161127
Merge branch 'v3' into routing-hook-deployment
aroralanuk Oct 23, 2023
31b306c
Additional updates for mainnet3
yorhodes Oct 24, 2023
6052260
Merge branch 'v3' into mainnet3-env-switch
yorhodes Oct 24, 2023
9052582
Add new chains to config
yorhodes Oct 24, 2023
34e924c
Update agent image tags
yorhodes Oct 24, 2023
0ec9d9b
Merge branch 'v3' into mainnet3-env-switch
yorhodes Oct 24, 2023
22c187a
Revert rust test rename
yorhodes Oct 24, 2023
1b95bd0
Add new chains to owners list
yorhodes Oct 24, 2023
d26dafa
add addresses of underlying hooks
aroralanuk Oct 24, 2023
201a421
Create validator keys (#2840)
nambrot Oct 24, 2023
0ded001
Merge remote-tracking branch 'origin/v3' into routing-hook-deployment
aroralanuk Oct 24, 2023
ebe70aa
rest of merge
aroralanuk Oct 24, 2023
690e992
Reuse mainnet2 proxyadmin and storage gas oracle
yorhodes Oct 24, 2023
a4b21e0
Deploy ism factories to mainnet3
yorhodes Oct 24, 2023
6325d2e
Stash mainnet progress
yorhodes Oct 24, 2023
868b977
Finish contract deploy
nambrot Oct 25, 2023
0666a1b
Update mainnet config in rust
nambrot Oct 25, 2023
c324210
testnet4 hook rotation
aroralanuk Oct 25, 2023
8ccae96
Add base verification
yorhodes Oct 25, 2023
8290abd
Merge branch 'routing-hook-deployment' into mainnet3-env-switch
aroralanuk Oct 25, 2023
c4c7759
rm mainnet cache
aroralanuk Oct 25, 2023
adc98b1
yarn build fixes
aroralanuk Oct 25, 2023
0b50f89
omit kathy for aws keys
aroralanuk Oct 25, 2023
93374e7
adding chains to migrations
aroralanuk Oct 25, 2023
196f143
Update mainnet3 infra
nambrot Oct 25, 2023
a39c515
rm rc from deployment
aroralanuk Oct 25, 2023
d3fb2f6
fallback init
aroralanuk Oct 25, 2023
403eb95
Merge branch 'v3' into mainnet3-env-switch
nambrot Oct 28, 2023
2382bf0
Merge branch 'v3' into mainnet3-env-switch
yorhodes Oct 30, 2023
65d2d1e
Fix testnet4 hook config
yorhodes Oct 30, 2023
d74434d
Clean mainnet3 artifacts
yorhodes Oct 30, 2023
1f87d6f
Merge branch 'v3' into mainnet3-env-switch
yorhodes Oct 30, 2023
6c9181c
Skip v2 delivery checks
yorhodes Nov 1, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
# needs: [yarn-build]
# strategy:
# matrix:
# environment: [testnet4, mainnet2]
# environment: [testnet4, mainnet3]
# module: [ism, core, igp, ica, helloworld]

# steps:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,30 @@ const DOMAINS: &[RawDomain] = &[
is_test_net: true,
is_deprecated: false,
},
RawDomain {
name: "polygonzkevm",
token: "ETH",
domain: 1101,
chain_id: 1101,
is_test_net: false,
is_deprecated: false,
},
RawDomain {
name: "base",
token: "ETH",
domain: 8453,
chain_id: 8453,
is_test_net: false,
is_deprecated: false,
},
RawDomain {
name: "scroll",
token: "ETH",
domain: 534352,
chain_id: 534352,
is_test_net: false,
is_deprecated: false,
},
RawDomain {
name: "test1",
token: "ETH",
Expand Down
Loading
Loading