forked from wormhole-foundation/wormhole-sdk-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelayer.ts
54 lines (53 loc) · 3.03 KB
/
relayer.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import type { MapLevels } from "./../../utils/index.js";
import type { Network } from "../networks.js";
import type { Chain } from "../chains.js";
// prettier-ignore
export const relayerContracts = [[
"Mainnet", [
["Ethereum", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Bsc", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Polygon", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Avalanche", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Fantom", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Klaytn", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Celo", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Moonbeam", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Base", "0x706f82e9bb5b0813501714ab5974216704980e31"],
["Arbitrum", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Optimism", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Blast", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Scroll", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Mantle", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Xlayer", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Berachain", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Ink", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Worldchain","0x1520cc9e779c56dab5866bebfb885c86840c33d3"],
["Snaxchain", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Unichain", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
]], [
"Testnet", [
["Ethereum", "0x28D8F1Be96f97C1387e94A53e00eCcFb4E75175a"],
["Bsc", "0x80aC94316391752A193C1c47E27D382b507c93F3"],
["Polygon", "0x0591C25ebd0580E0d4F27A82Fc2e24E7489CB5e0"],
["Avalanche", "0xA3cF45939bD6260bcFe3D66bc73d60f19e49a8BB"],
["Fantom", "0x7B1bD7a6b4E61c2a123AC6BC2cbfC614437D0470"],
["Celo", "0x306B68267Deb7c5DfCDa3619E22E9Ca39C374f84"],
["Seievm", "0x362fca37E45fe1096b42021b543f462D49a5C8df"],
["Moonbeam", "0x0591C25ebd0580E0d4F27A82Fc2e24E7489CB5e0"],
["Arbitrum", "0xAd753479354283eEE1b86c9470c84D42f229FF43"],
["Optimism", "0x01A957A525a5b7A72808bA9D10c389674E459891"],
["Base", "0xea8029CD7FCAEFFcD1F53686430Db0Fc8ed384E1"],
["Sepolia", "0x7B1bD7a6b4E61c2a123AC6BC2cbfC614437D0470"],
["ArbitrumSepolia", "0x7B1bD7a6b4E61c2a123AC6BC2cbfC614437D0470"],
["BaseSepolia", "0x93BAD53DDfB6132b0aC8E37f6029163E63372cEE"],
["OptimismSepolia", "0x93BAD53DDfB6132b0aC8E37f6029163E63372cEE"],
["Berachain", "0x362fca37E45fe1096b42021b543f462D49a5C8df"],
["Unichain", "0x362fca37E45fe1096b42021b543f462D49a5C8df"],
["Ink", "0x362fca37E45fe1096b42021b543f462D49a5C8df"],
["Monad", "0x362fca37E45fe1096b42021b543f462D49a5C8df"],
]], [
"Devnet", [
["Ethereum", "0xcC680D088586c09c3E0E099a676FA4b6e42467b4"],
["Bsc", "0xcC680D088586c09c3E0E099a676FA4b6e42467b4"],
]],
] as const satisfies MapLevels<[Network, Chain, string]>;