Skip to content

Commit fca6912

Browse files
gator-boia5-pickle
andauthored
evm: deploy new testnet contracts (#159)
Co-authored-by: gator-boi <gator-boi@users.noreply.github.com> Co-authored-by: A5 Pickle <5342825+a5-pickle@users.noreply.github.com> Co-authored-by: A5 Pickle <a5-pickle@users.noreply.github.com>
1 parent db4048d commit fca6912

20 files changed

+149
-142
lines changed

evm/README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ make build
1212

1313
The testing environments can be found in the following locations:
1414

15-
- [Unit Tests](./forge/tests/)
16-
- [Integration Tests](./ts/tests/)
15+
- [Unit Tests](./forge/tests/)
16+
- [Integration Tests](./ts/tests/)
1717

1818
To run the unit tests, set the `AVALANCHE_RPC` environment variable in `env/testing.env` and run `make unit-test`. To run the integration tests, create a `.env` file in the `ts/tests` directory with the following environment variables:
1919

@@ -30,14 +30,14 @@ Then run `make integration-test`.
3030

3131
Before deploying any contracts, make sure to set the `RPC` environment variable in each environment file in the target `env` directory.
3232

33-
To deploy the `MatchingEngine` contract, open the `avalanche.env` file in the target `env` directory and set the `RELEASE_FEE_RECIPIENT_ADDRESS` environment variable. The `MatchingEngine` contract is design to be deployed to the Avalanche network to help support faster-than-finality transfers. Run the following command for each network:
33+
To deploy the `MatchingEngine` contract, open the `Avalanche.env` file in the target `env` directory and set the `RELEASE_FEE_RECIPIENT_ADDRESS` environment variable. The `MatchingEngine` contract is design to be deployed to the Avalanche network to help support faster-than-finality transfers. Run the following command for each network:
3434

3535
```
3636
bash sh/deploy_matching_engine.sh -k PRIVATE_KEY -n NETWORK_TYPE -c CHAIN_NAME
3737
3838
# Argument examples
3939
-n testnet, mainnet, localnet
40-
-c avalanche, ethereum
40+
-c Avalanche, Ethereum
4141
```
4242

4343
To deploy the `TokenRouter` contract, open the target environment file in the `env` directory and set the `RELEASE_OWNER_ASSISTANT_ADDRESS`, `RELEASE_MATCHING_ENGINE_CHAIN` and `RELEASE_MATCHING_ENGINE_ADDRESS` environment variables. The `MatchingEngine` contract must be deployed before any `TokenRouter` contracts. Then run the following command:
@@ -47,21 +47,21 @@ bash sh/deploy_token_router.sh -k PRIVATE_KEY -n NETWORK_TYPE -c CHAIN_NAME
4747
4848
# Argument examples
4949
-n testnet, mainnet, localnet
50-
-c avalanche, ethereum
50+
-c Avalanche, Ethereum
5151
```
5252

5353
## Initial Contract Setup
5454

5555
Once the contracts (`TokenRouter` and `MatchingEngine`) have been deployed, the deployment configuration file needs to be updated with the deployed contract addresses, initial `FastTransferParameters` and `AuctionConfig`. The configuration file can be found in the `cfg` directory. Copy the sample testnet file and replace the network type with your network of choice. Run the following commands for each `TokenRouter` contract (in the following order):
5656

5757
```
58-
bash sh/setup_token_router.sh -k PRIVATE_KEY -n NETWORK_TYPE -c CHAIN_NAME
59-
bash sh/set_fast_transfer_parameters.sh -k PRIVATE_KEY -n NETWORK_TYPE -c CHAIN_NAME
58+
bash sh/configure_token_router.sh -k PRIVATE_KEY -n NETWORK_TYPE -c CHAIN_NAME
59+
bash sh/update_fast_transfer_parameters.sh -k PRIVATE_KEY -n NETWORK_TYPE -c CHAIN_NAME
6060
```
6161

6262
Run the following commands for the `MatchingEngine` contract (in the following order):
6363

6464
```
65-
bash sh/setup_matching_engine.sh -k PRIVATE_KEY -n NETWORK_TYPE -c CHAIN_NAME
66-
bash sh/set_auction_config.sh -k PRIVATE_KEY -n NETWORK_TYPE -c CHAIN_NAME
65+
bash sh/configure_matching_engine.sh -k PRIVATE_KEY -n NETWORK_TYPE -c CHAIN_NAME
66+
bash sh/update_auction_config.sh -k PRIVATE_KEY -n NETWORK_TYPE -c CHAIN_NAME
6767
```
File renamed without changes.
File renamed without changes.
File renamed without changes.

evm/env/testnet/arbitrum_sepolia.env evm/env/testnet/ArbitrumSepolia.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export RELEASE_OWNER_ASSISTANT_ADDRESS=0x
3737

3838

3939
### Token Router Proxy (evm address)
40-
export RELEASE_TOKEN_ROUTER_ADDRESS=0xc1Cf3501ef0b26c8A47759F738832563C7cB014A
40+
export RELEASE_TOKEN_ROUTER_ADDRESS=0xe0418C44F06B0b0D7D1706E01706316DBB0B210E
4141

4242

4343
############################### Matching Engine ###############################

evm/env/testnet/avalanche.env evm/env/testnet/Avalanche.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export RELEASE_FEE_RECIPIENT_ADDRESS=0x
4141
############################### Token Router #################################
4242

4343
### Token Router Proxy (evm address)
44-
export RELEASE_TOKEN_ROUTER_ADDRESS=0x7353B29FDc79435dcC7ECc9Ac9F9b61d83B4E0F4
44+
export RELEASE_TOKEN_ROUTER_ADDRESS=0x8Cd7D7C980cd72eBD16737dC3fa04469dcFcf07A
4545

4646

4747
############################### Matching Engine ###############################

evm/env/testnet/base_sepolia.env evm/env/testnet/BaseSepolia.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export RELEASE_OWNER_ASSISTANT_ADDRESS=0x
3737

3838

3939
### Token Router Proxy (evm address)
40-
export RELEASE_TOKEN_ROUTER_ADDRESS=0x4452B708C01d6aD7058a7541A3A82f0aD0A1abB1
40+
export RELEASE_TOKEN_ROUTER_ADDRESS=0x824Ea687CD1CC2f2446235D33Ae764CbCd08e18C
4141

4242

4343
############################### Matching Engine ###############################

evm/env/testnet/optimism_sepolia.env evm/env/testnet/OptimismSepolia.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export RELEASE_OWNER_ASSISTANT_ADDRESS=0x
3737

3838

3939
### Token Router Proxy (evm address)
40-
export RELEASE_TOKEN_ROUTER_ADDRESS=0xc1Cf3501ef0b26c8A47759F738832563C7cB014A
40+
export RELEASE_TOKEN_ROUTER_ADDRESS=0x6BAa7397c18abe6221b4f6C3Ac91C88a9faE00D8
4141

4242

4343
############################### Matching Engine ###############################

evm/env/testnet/polygon.env evm/env/testnet/PolygonSepolia.env

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
export RELEASE_CHAIN_TYPE=evm
22

33
### RPC
4-
export RPC=
4+
export RPC=https://rpc-amoy.polygon.technology/
55

66
### Wormhole Chain ID (uint16)
7-
export RELEASE_CHAIN_ID=5
7+
export RELEASE_CHAIN_ID=10007
88

99
### Circle Domain (uint32)
1010
export RELEASE_DOMAIN=7
1111

1212
### Token (evm address)
1313
###
14-
### Token Info: https://mumbai.polygonscan.com/token/0x9999f7fea5938fd3b1e26a12c3f2fb024e194f97
15-
export RELEASE_TOKEN_ADDRESS=0x9999f7fea5938fd3b1e26a12c3f2fb024e194f97
14+
### Token Info: https://www.oklink.com/amoy/address/0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582
15+
export RELEASE_TOKEN_ADDRESS=0x41E94Eb019C0762f9Bfcf9Fb1E58725BfB0e7582
1616

1717
############################# Wormhole Contracts #############################
1818

1919
### Wormhole (evm address)
20-
export RELEASE_WORMHOLE_ADDRESS=0x0CBE91CF822c73C2315FB05100C2F714765d5c20
20+
export RELEASE_WORMHOLE_ADDRESS=0x6b9C8671cdDC8dEab9c719bB87cBd3e782bA6a35
2121

2222

2323
############################# Circle Contracts #################################
@@ -37,7 +37,7 @@ export RELEASE_OWNER_ASSISTANT_ADDRESS=0x
3737

3838

3939
### Token Router Proxy (evm address)
40-
export RELEASE_TOKEN_ROUTER_ADDRESS=0x3Ce8a3aC230Eb4bCE3688f2A1ab21d986a0A0B06
40+
export RELEASE_TOKEN_ROUTER_ADDRESS=0xa098368AaaDc0FdF3e309cda710D7A5f8BDEeCD9
4141

4242

4343
############################### Matching Engine ###############################

evm/env/testnet/sepolia.env evm/env/testnet/Sepolia.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export RELEASE_OWNER_ASSISTANT_ADDRESS=0x
3838

3939

4040
### Token Router Proxy (evm address)
41-
export RELEASE_TOKEN_ROUTER_ADDRESS=0x603541d1Cf7178C407aA7369b67CB7e0274952e2
41+
export RELEASE_TOKEN_ROUTER_ADDRESS=0xE57D917bf955FedE2888AAbD056202a6497F1882
4242

4343

4444
############################### Matching Engine ###############################

evm/ts/scripts/set_fast_transfer_parameters.ts

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { getConfig } from "./helpers";
22
import { ITokenRouter__factory } from "../src/types/factories/ITokenRouter__factory";
33
import { ITokenRouter, FastTransferParametersStruct } from "../src/types/ITokenRouter";
44
import { ethers } from "ethers";
5-
import { Chain, toChainId, toNative } from "@wormhole-foundation/sdk";
5+
import { Chain, toChainId, toNative, toUniversal, toChain } from "@wormhole-foundation/sdk";
66

77
export function getArgs() {
88
const argv = require("yargs")
@@ -53,12 +53,13 @@ async function main() {
5353
const wallet = new ethers.Wallet(key, provider);
5454

5555
const routerChainId = toChainId(chain);
56+
const routerChain = toChain(routerChainId);
57+
const routerAddress = toUniversal(routerChain, routers[routerChainId].address)
58+
.toNative(routerChain)
59+
.toString();
5660

5761
// Setup token router contract.
58-
const tokenRouter = ITokenRouter__factory.connect(
59-
toNative(chain as Chain, routers[routerChainId].address).toString(),
60-
wallet,
61-
);
62+
const tokenRouter = ITokenRouter__factory.connect(routerAddress, wallet);
6263

6364
await setFastTransferParams(routerChainId.toString(), tokenRouter, fastTransferParams);
6465
}

evm/ts/scripts/setup_matching_engine.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { getConfig, ZERO_BYTES32 } from "./helpers";
22
import { IMatchingEngine__factory, IMatchingEngine } from "../src/types/";
33
import { RouterEndpointStruct } from "../src/types/IMatchingEngine";
44
import { ethers } from "ethers";
5-
import { ChainId, toChain, toChainId, toNative } from "@wormhole-foundation/sdk";
5+
import { ChainId, toChain, toChainId, toNative, toUniversal } from "@wormhole-foundation/sdk";
66

77
export function getArgs() {
88
const argv = require("yargs")
@@ -71,7 +71,10 @@ async function main() {
7171
}
7272

7373
const engineChain = toChain(engineChainId);
74-
const engineAddress = toNative(engineChain, matchingEngineConfig["address"]);
74+
const engineAddress = toUniversal(engineChain, matchingEngineConfig["address"])
75+
.toNative(engineChain)
76+
.toString();
77+
7578
// Setup token router contract.
7679
const engine = IMatchingEngine__factory.connect(engineAddress.toString(), wallet);
7780

evm/ts/scripts/setup_token_router.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ITokenRouter__factory } from "../src/types/factories/ITokenRouter__fact
33
import { ITokenRouter } from "../src/types/ITokenRouter";
44
import { EndpointStruct } from "../src/types/ITokenRouter";
55
import { ethers } from "ethers";
6-
import { toChain, toChainId, toNative } from "@wormhole-foundation/sdk";
6+
import { toChain, toChainId, toNative, toUniversal } from "@wormhole-foundation/sdk";
77

88
export function getArgs() {
99
const argv = require("yargs")
@@ -66,7 +66,9 @@ async function main() {
6666

6767
const routerChainId = toChainId(chain);
6868
const routerChain = toChain(routerChainId);
69-
const routerAddress = toNative(routerChain, routers[routerChainId].address);
69+
const routerAddress = toUniversal(routerChain, routers[routerChainId].address)
70+
.toNative(routerChain)
71+
.toString();
7072

7173
// Setup token router contract.
7274
const tokenRouter = ITokenRouter__factory.connect(routerAddress.toString(), wallet);

evm/ts/tests/00__environment.ts

+5-13
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe("Environment", () => {
3535
tokenAddress: usdcAddress,
3636
wormholeAddress,
3737
tokenMessengerAddress,
38-
} = parseLiquidityLayerEnvFile(`${envPath}/${chainName.toLowerCase()}.env`);
38+
} = parseLiquidityLayerEnvFile(`${envPath}/${chainName}.env`);
3939

4040
const localhost = LOCALHOSTS[chainName] as string;
4141

@@ -243,9 +243,7 @@ describe("Environment", () => {
243243
const scripts = `${__dirname}/../../sh`;
244244
const cmd =
245245
`bash ${scripts}/deploy_matching_engine.sh ` +
246-
`-n localnet -c ${chainName.toLowerCase()} -u ${localhost} -k ${
247-
owner.privateKey
248-
} ` +
246+
`-n localnet -c ${chainName} -u ${localhost} -k ${owner.privateKey} ` +
249247
`> /dev/null 2>&1`;
250248
const out = execSync(cmd, { encoding: "utf8" });
251249

@@ -258,9 +256,7 @@ describe("Environment", () => {
258256
const scripts = `${__dirname}/../../sh`;
259257
const cmd =
260258
`bash ${scripts}/upgrade_matching_engine.sh ` +
261-
`-n localnet -c ${chainName.toLowerCase()} -u ${localhost} -k ${
262-
owner.privateKey
263-
}` +
259+
`-n localnet -c ${chainName} -u ${localhost} -k ${owner.privateKey}` +
264260
`> /dev/null 2>&1`;
265261
const out = execSync(cmd, { encoding: "utf8" });
266262
await provider.send("evm_setAutomine", [false]);
@@ -273,9 +269,7 @@ describe("Environment", () => {
273269
const scripts = `${__dirname}/../../sh`;
274270
const cmd =
275271
`bash ${scripts}/deploy_token_router.sh ` +
276-
`-n localnet -c ${chainName.toLowerCase()} -u ${localhost} -k ${
277-
owner.privateKey
278-
} ` +
272+
`-n localnet -c ${chainName} -u ${localhost} -k ${owner.privateKey} ` +
279273
`> /dev/null 2>&1`;
280274
const out = execSync(cmd, { encoding: "utf8" });
281275

@@ -288,9 +282,7 @@ describe("Environment", () => {
288282
const scripts = `${__dirname}/../../sh`;
289283
const cmd =
290284
`bash ${scripts}/upgrade_token_router.sh ` +
291-
`-n localnet -c ${chainName.toLowerCase()} -u ${localhost} -k ${
292-
owner.privateKey
293-
}` +
285+
`-n localnet -c ${chainName} -u ${localhost} -k ${owner.privateKey}` +
294286
`> /dev/null 2>&1`;
295287
const out = execSync(cmd, { encoding: "utf8" });
296288
await provider.send("evm_setAutomine", [false]);

evm/ts/tests/01__registration.ts

+4-10
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ describe("Registration", () => {
1919
const envPath = `${__dirname}/../../env/localnet`;
2020

2121
describe(`Register Token Routers on ${MATCHING_ENGINE_NAME} Matching Engine`, () => {
22-
const env = parseLiquidityLayerEnvFile(
23-
`${envPath}/${MATCHING_ENGINE_NAME.toLowerCase()}.env`,
24-
);
22+
const env = parseLiquidityLayerEnvFile(`${envPath}/${MATCHING_ENGINE_NAME}.env`);
2523
const provider = new ethers.providers.StaticJsonRpcProvider(
2624
LOCALHOSTS[MATCHING_ENGINE_NAME],
2725
);
@@ -37,9 +35,7 @@ describe("Registration", () => {
3735

3836
for (const chainName of CHAIN_PATHWAYS) {
3937
it(`Register ${chainName}`, async () => {
40-
const targetEnv = parseLiquidityLayerEnvFile(
41-
`${envPath}/${chainName.toLowerCase()}.env`,
42-
);
38+
const targetEnv = parseLiquidityLayerEnvFile(`${envPath}/${chainName}.env`);
4339
const [formattedAddress, mintRecipient] = fetchTokenRouterEndpoint(
4440
targetEnv,
4541
chainName,
@@ -66,7 +62,7 @@ describe("Registration", () => {
6662

6763
for (const chainName of CHAIN_PATHWAYS) {
6864
describe(`Register Token Routers on ${chainName}`, () => {
69-
const env = parseLiquidityLayerEnvFile(`${envPath}/${chainName.toLowerCase()}.env`);
65+
const env = parseLiquidityLayerEnvFile(`${envPath}/${chainName}.env`);
7066
const provider = new ethers.providers.StaticJsonRpcProvider(LOCALHOSTS[chainName]);
7167
const assistant = new ethers.Wallet(OWNER_ASSISTANT_PRIVATE_KEY, provider);
7268
const router = ITokenRouter__factory.connect(env.tokenRouterAddress, assistant);
@@ -77,9 +73,7 @@ describe("Registration", () => {
7773
}
7874

7975
it(`Register ${targetChain}`, async () => {
80-
const targetEnv = parseLiquidityLayerEnvFile(
81-
`${envPath}/${targetChain.toLowerCase()}.env`,
82-
);
76+
const targetEnv = parseLiquidityLayerEnvFile(`${envPath}/${targetChain}.env`);
8377
const [formattedAddress, mintRecipient] = fetchTokenRouterEndpoint(
8478
targetEnv,
8579
chainName,

evm/ts/tests/02__configuration.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe("Configuration", () => {
1919

2020
describe("Token Router Configuration", () => {
2121
for (const chainName of CHAIN_PATHWAYS) {
22-
const env = parseLiquidityLayerEnvFile(`${envPath}/${chainName.toLowerCase()}.env`);
22+
const env = parseLiquidityLayerEnvFile(`${envPath}/${chainName}.env`);
2323
const provider = new ethers.providers.StaticJsonRpcProvider(LOCALHOSTS[chainName]);
2424
const assistant = new ethers.Wallet(OWNER_ASSISTANT_PRIVATE_KEY, provider);
2525
const router = ITokenRouter__factory.connect(env.tokenRouterAddress, assistant);
@@ -52,9 +52,7 @@ describe("Configuration", () => {
5252

5353
describe("Matching Engine Configuration", () => {
5454
it("Set Infinite Approval For Matching Engine", async () => {
55-
const env = parseLiquidityLayerEnvFile(
56-
`${envPath}/${MATCHING_ENGINE_NAME.toLowerCase()}.env`,
57-
);
55+
const env = parseLiquidityLayerEnvFile(`${envPath}/${MATCHING_ENGINE_NAME}.env`);
5856
const provider = new ethers.providers.StaticJsonRpcProvider(
5957
LOCALHOSTS[MATCHING_ENGINE_NAME],
6058
);

evm/ts/tests/03__marketOrder.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@ describe("Market Order Business Logic -- CCTP to CCTP", () => {
4444
);
4545
const fromWallet = new ethers.Wallet(WALLET_PRIVATE_KEYS[0], fromProvider);
4646

47-
const fromEnv = parseLiquidityLayerEnvFile(
48-
`${envPath}/${fromChainName.toLowerCase()}.env`,
49-
);
47+
const fromEnv = parseLiquidityLayerEnvFile(`${envPath}/${fromChainName}.env`);
5048
const fromTokenRouter = (() => {
5149
if (fromEnv.chainType === ChainType.Evm) {
5250
return new EvmTokenRouter(
@@ -63,7 +61,7 @@ describe("Market Order Business Logic -- CCTP to CCTP", () => {
6361
const toProvider = new ethers.providers.StaticJsonRpcProvider(LOCALHOSTS[toChainName]);
6462
const toWallet = new ethers.Wallet(WALLET_PRIVATE_KEYS[1], toProvider);
6563

66-
const toEnv = parseLiquidityLayerEnvFile(`${envPath}/${toChainName.toLowerCase()}.env`);
64+
const toEnv = parseLiquidityLayerEnvFile(`${envPath}/${toChainName}.env`);
6765
const toTokenRouter = (() => {
6866
if (toEnv.chainType === ChainType.Evm) {
6967
return new EvmTokenRouter(

evm/ts/tests/04__fastMarketOrder.ts

+3-7
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,7 @@ describe("Fast Market Order Business Logic -- CCTP to CCTP", function (this: Moc
5151
LOCALHOSTS[MATCHING_ENGINE_NAME],
5252
);
5353
const engineWallet = new ethers.Wallet(WALLET_PRIVATE_KEYS[2], engineProvider);
54-
const engineEnv = parseLiquidityLayerEnvFile(
55-
`${envPath}/${MATCHING_ENGINE_NAME.toLowerCase()}.env`,
56-
);
54+
const engineEnv = parseLiquidityLayerEnvFile(`${envPath}/${MATCHING_ENGINE_NAME}.env`);
5755
const engine = (() => {
5856
if (engineEnv.chainType === ChainType.Evm) {
5957
return new EvmMatchingEngine(
@@ -85,9 +83,7 @@ describe("Fast Market Order Business Logic -- CCTP to CCTP", function (this: Moc
8583
);
8684
const fromWallet = new ethers.Wallet(WALLET_PRIVATE_KEYS[0], fromProvider);
8785

88-
const fromEnv = parseLiquidityLayerEnvFile(
89-
`${envPath}/${fromChainName.toLowerCase()}.env`,
90-
);
86+
const fromEnv = parseLiquidityLayerEnvFile(`${envPath}/${fromChainName}.env`);
9187
const fromTokenRouter = (() => {
9288
if (fromEnv.chainType === ChainType.Evm) {
9389
return new EvmTokenRouter(
@@ -104,7 +100,7 @@ describe("Fast Market Order Business Logic -- CCTP to CCTP", function (this: Moc
104100
const toProvider = new ethers.providers.StaticJsonRpcProvider(LOCALHOSTS[toChainName]);
105101
const toWallet = new ethers.Wallet(WALLET_PRIVATE_KEYS[1], toProvider);
106102

107-
const toEnv = parseLiquidityLayerEnvFile(`${envPath}/${toChainName.toLowerCase()}.env`);
103+
const toEnv = parseLiquidityLayerEnvFile(`${envPath}/${toChainName}.env`);
108104
const toTokenRouter = (() => {
109105
if (toEnv.chainType === ChainType.Evm) {
110106
return new EvmTokenRouter(

0 commit comments

Comments
 (0)