Skip to content

Commit

Permalink
Update fulfill helper address
Browse files Browse the repository at this point in the history
  • Loading branch information
mrlotfi authored and mrlotfi committed Jul 24, 2024
1 parent f5bdc2d commit 743e0ba
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions src/config/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ export const FeeCollectorSolana = 'pSwTTFE92RsRtvMCpb3mjruv5ww2KgBNVPscwdWwbxk';
export const MayanForwarderAddress = '0x0654874eb7F59C6f5b39931FC45dC45337c967c3';

export const fulfillHelpers: { [key: number]: string } = {
[CHAIN_ID_ARBITRUM]: '0x53bc894F60F55D8113396Ce63398b48E175A3CeE',
[CHAIN_ID_BASE]: '0x53bc894F60F55D8113396Ce63398b48E175A3CeE',
[CHAIN_ID_ETH]: '0x53bc894F60F55D8113396Ce63398b48E175A3CeE',
[CHAIN_ID_AVAX]: '0x53bc894F60F55D8113396Ce63398b48E175A3CeE',
[CHAIN_ID_OPTIMISM]: '0x53bc894F60F55D8113396Ce63398b48E175A3CeE',
[CHAIN_ID_POLYGON]: '0x53bc894F60F55D8113396Ce63398b48E175A3CeE',
[CHAIN_ID_BSC]: '0x53bc894F60F55D8113396Ce63398b48E175A3CeE',
[CHAIN_ID_ARBITRUM]: '0x6DaEA6e2B30010BF8F5aeCDe9741a9D86f3DA919',
[CHAIN_ID_BASE]: '0x6DaEA6e2B30010BF8F5aeCDe9741a9D86f3DA919',
[CHAIN_ID_ETH]: '0x6DaEA6e2B30010BF8F5aeCDe9741a9D86f3DA919',
[CHAIN_ID_AVAX]: '0x6DaEA6e2B30010BF8F5aeCDe9741a9D86f3DA919',
[CHAIN_ID_OPTIMISM]: '0x6DaEA6e2B30010BF8F5aeCDe9741a9D86f3DA919',
[CHAIN_ID_POLYGON]: '0x6DaEA6e2B30010BF8F5aeCDe9741a9D86f3DA919',
[CHAIN_ID_BSC]: '0x6DaEA6e2B30010BF8F5aeCDe9741a9D86f3DA919',
};
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export async function main() {
rpcConfig.wormholeGuardianRpcs = initialDynamicConfig.wormholeGuardianRpcs.split(',');

const globalConfig: GlobalConfig = {
auctionTimeSeconds: 0 || initialDynamicConfig.auctionTimeSeconds, // TODO: remove hardcode values
batchUnlockThreshold: 1 || initialDynamicConfig.batchUnlockThreshold,
auctionTimeSeconds: initialDynamicConfig.auctionTimeSeconds,
batchUnlockThreshold: initialDynamicConfig.batchUnlockThreshold,
registerInterval: initialDynamicConfig.registerInterval,
scheduleUnlockInterval: initialDynamicConfig.scheduleUnlockInterval,
singleBatchChainIds: initialDynamicConfig.singleBatchChainIds.split(',').map((x) => +x),
Expand Down

0 comments on commit 743e0ba

Please sign in to comment.