Skip to content

Commit a85f445

Browse files
bruce-rileyevan-gray
authored andcommitted
evm: Add deployment info
1 parent 03b5c83 commit a85f445

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

evm/DEPLOYMENTS.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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 -->

evm/foundry.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
[profile.default]
2+
solc = "0.8.28"
3+
optimizer = true
4+
optimizer_runs = 200
5+
via_ir = true
6+
evm_version = "london"
27
src = "src"
38
out = "out"
49
libs = ["lib"]

0 commit comments

Comments
 (0)