8000 sdk: add Mantle and X Layer relayer addresses by evan-gray · Pull Request #4059 · wormhole-foundation/wormhole · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

sdk: add Mantle and X Layer relayer addresses #4059

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

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions sdk/js/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 0.10.18

Add Snaxchain testnet support
Add Mantle and X Layer

## 0.10.17

Expand Down
6 changes: 6 additions & 0 deletions sdk/js/src/relayer/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,12 @@ const MAINNET: { [K in ChainName]?: AddressInfo } = {
blast: {
wormholeRelayerAddress: "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911",
},
mantle: {
wormholeRelayerAddress: "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911",
},
xlayer: {
wormholeRelayerAddress: "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911",
},
};

export const RELAYER_CONTRACTS = { MAINNET, TESTNET, DEVNET };
Expand Down
2 changes: 2 additions & 0 deletions sdk/mainnet_consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,6 @@ var KnownAutomaticRelayerEmitters = []struct {
{ChainId: vaa.ChainIDBase, Addr: "000000000000000000000000706f82e9bb5b0813501714ab5974216704980e31"},
{ChainId: vaa.ChainIDScroll, Addr: "00000000000000000000000027428DD2d3DD32A4D7f7C497eAaa23130d894911"},
{ChainId: vaa.ChainIDBlast, Addr: "00000000000000000000000027428DD2d3DD32A4D7f7C497eAaa23130d894911"},
{ChainId: vaa.ChainIDMantle, Addr: "00000000000000000000000027428dd2d3dd32a4d7f7c497eaaa23130d894911"},
{ChainId: vaa.ChainIDXLayer, Addr: "00000000000000000000000027428dd2d3dd32a4d7f7c497eaaa23130d894911"},
}
Loading
0