Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Bridge: Fix wormhole relayer address #60

Merged
merged 1 commit into from
Jul 7, 2023
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
4 changes: 2 additions & 2 deletions packages/bridge-connector/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
"lint:solidity": "solhint 'contracts/**/*.sol' --config ../../node_modules/solhint-config-mimic/index.js",
"lint:typescript": "eslint . --ext .ts",
"test": "hardhat test",
"test:mainnet": "yarn test --fork mainnet --block-number 17480539 --chain-id 1",
"test:mainnet": "yarn test --fork mainnet --block-number 17619914 --chain-id 1",
"test:polygon": "yarn test --fork polygon --block-number 42310578 --chain-id 137",
"test:optimism": "yarn test --fork optimism --block-number 96415838 --chain-id 10",
"test:arbitrum": "yarn test --fork arbitrum --block-number 87338311 --chain-id 42161 --fork-ignore-unknown-tx-type true",
"test:gnosis": "yarn test --fork gnosis --block-number 27780294 --chain-id 100",
"test:bsc": "yarn test --fork bsc --block-number 27925272 --chain-id 56",
"test:avalanche": "yarn test --fork avalanche --block-number 31333905 --chain-id 43114",
"test:avalanche": "yarn test --fork avalanche --block-number 32162641 --chain-id 43114",
"test:fantom": "yarn test --fork fantom --block-number 61485606 --chain-id 250",
"prepare": "yarn build"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const WAVAX = '0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7'
const USDC = '0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E'
const WHALE = '0xbbff2a8ec8d702e61faaccf7cf705968bb6a5bab'

const WORMHOLE_CIRCLE_RELAYER = '0x32DeC3F4A0723Ce02232f87e8772024E0C86d834'
const WORMHOLE_CIRCLE_RELAYER = '0x4cb69FaE7e7Af841e44E1A1c30Af640739378bb2'
const AXELAR_GATEWAY = '0x5029C0EFf6C34351a0CEc334542cDb22c7928f78'

describe('BridgeConnector', () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/bridge-connector/test/BridgeConnector.mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const USDC = '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'
const WETH = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'
const WHALE = '0xf584f8728b874a6a5c7a8d4d387c9aae9172d621'

const WORMHOLE_CIRCLE_RELAYER = '0x32DeC3F4A0723Ce02232f87e8772024E0C86d834'
const WORMHOLE_CIRCLE_RELAYER = '0x4cb69FaE7e7Af841e44E1A1c30Af640739378bb2'
const CONNEXT = '0x8898B472C54c31894e3B9bb83cEA802a5d0e63C6'
const AXELAR_GATEWAY = '0x4F4495243837681061C4743b74B3eEdf548D56A5'

Expand Down
2 changes: 1 addition & 1 deletion packages/smart-vault/test/SmartVault.mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ describe('SmartVault', () => {
const LIMIT_TYPE = 0 // slippage
const SLIPPAGE = fp(0.002)

const WORMHOLE_CIRCLE_RELAYER = '0x32DeC3F4A0723Ce02232f87e8772024E0C86d834'
const WORMHOLE_CIRCLE_RELAYER = '0x4cb69FaE7e7Af841e44E1A1c30Af640739378bb2'
const CONNEXT = '0x8898B472C54c31894e3B9bb83cEA802a5d0e63C6'
const AXELAR_GATEWAY = '0x4F4495243837681061C4743b74B3eEdf548D56A5'

Expand Down