Skip to content

Commit 34999c5

Browse files
committed
Added Base mainnet relayer support
1 parent dc2745d commit 34999c5

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

sdk/src/config/MAINNET.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ const MAINNET: { [chain in MainnetChainName]: ChainConfig } = {
206206
context: Context.ETH,
207207
contracts: {
208208
...CONTRACTS.MAINNET.base,
209-
relayer: undefined,
209+
relayer: '0xaE8dc4a7438801Ec4edC0B035EcCCcF3807F4CC1',
210210
},
211211
finalityThreshold: 0,
212212
nativeTokenDecimals: 18,

wormhole-connect/src/config/mainnet/chains.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ export const MAINNET_CHAINS: ChainsConfig = {
122122
gasToken: 'ETHbase',
123123
chainId: 8453,
124124
icon: Icon.BASE,
125+
automaticRelayer: true,
125126
maxBlockSearch: 2000,
126127
},
127128
osmosis: {

wormhole-connect/src/config/mainnet/gasEstimates.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ export const MAINNET_GAS_ESTIMATES: GasEstimates = {
134134
sendToken: 1000000,
135135
claim: 1000000,
136136
},
137+
[Route.Relay]: {
138+
sendNative: 300000,
139+
sendToken: 300000,
140+
},
137141
},
138142
wormchain: {
139143
[Route.Bridge]: {

0 commit comments

Comments
 (0)