File tree Expand file tree Collapse file tree 2 files changed +59
-0
lines changed Expand file tree Collapse file tree 2 files changed +59
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Executor EVM Deployments
2
+
3
+ ## Testnet
4
+
5
+ ### March 18, 2025
6
+
7
+ #### Version Info
8
+
9
+ Commit Hash:
10
+
11
+ <!-- cspell:disable -->
12
+
13
+ ``` sh
14
+ evm (main)$ git rev-parse HEAD
15
+ 03b5c83a20060bd0d339e3dfdc5efa60d44423f3
16
+ evm (main)$
17
+ ```
18
+
19
+ <!-- cspell:enable -->
20
+
21
+ Foundry Version:
22
+
23
+ <!-- cspell:disable -->
24
+
25
+ ``` sh
26
+ evm (main)$ forge --version
27
+ forge Version: 1.0.0-stable
28
+ Commit SHA: e144b82070619b6e10485c38734b4d4d45aebe04
29
+ Build Timestamp: 2025-02-13T20:03:31.026474817Z (1739477011)
30
+ Build Profile: maxperf
31
+ evm (main)$
32
+ ```
33
+
34
+ <!-- cspell:enable -->
35
+
36
+ #### Chains Deployed
37
+
38
+ Here are the deployed contract addresses for each chain. The number after the chain name is the Wormhole chain ID configured for the contract.
39
+
40
+ - Sepolia (10002): [ 0xD0fb39f5a3361F21457653cB70F9D0C9bD86B66B] ( https://sepolia.etherscan.io/address/0xD0fb39f5a3361F21457653cB70F9D0C9bD86B66B )
41
+ - Base Sepolia (10004): [ 0x51B47D493CBA7aB97e3F8F163D6Ce07592CE4482] ( https://sepolia.basescan.org/address/0x51B47D493CBA7aB97e3F8F163D6Ce07592CE4482 )
42
+ - Avalanche Fuji (6): [ 0x4661F0E629E4ba8D04Ee90080Aee079740B00381] ( https://testnet.snowtrace.io/address/0x4661F0E629E4ba8D04Ee90080Aee079740B00381 )
43
+
44
+ ### Bytecode Verification
45
+
46
+ If you wish to verify that the bytecode built locally matches what is deployed on chain, you can do something like this:
47
+
48
+ <!-- cspell:disable -->
49
+
50
+ ```
51
+ forge verify-bytecode <contract_addr> Executor --rpc-url <archive_node_rpc> --verifier-api-key <your_etherscan_key> --constructor-args <wormhole_chain_id>
52
+ ```
53
+
54
+ <!-- cspell:enable -->
Original file line number Diff line number Diff line change 1
1
[profile .default ]
2
+ solc = " 0.8.28"
3
+ optimizer = true
4
+ optimizer_runs = 200
5
+ via_ir = true
6
+ evm_version = " london"
2
7
src = " src"
3
8
out = " out"
4
9
libs = [" lib" ]
You can’t perform that action at this time.
0 commit comments