wormhole-circle-integration/evm
A5 Pickle 74e11b17ba
evm: revert #42 (#45)
* Revert "Adds VAA self signing logic and updates implementation addresses (#42)"

This reverts commit 105ad59bad.

* evm: clean ts/src/ethers-contracts

---------

Co-authored-by: A5 Pickle <a5-pickle@users.noreply.github.com>
2023-12-05 10:08:14 -06:00
..
env evm: revert #42 (#45) 2023-12-05 10:08:14 -06:00
forge-scripts Optimism testnet deployment (#40) 2023-08-23 16:27:30 -05:00
forge-test evm: update registration to accept VAAs with target chain zero (#38) 2023-09-26 10:05:15 -05:00
modules evm: upgrade compiler (#32) 2023-04-20 08:56:04 -05:00
shell-scripts evm: revert #42 (#45) 2023-12-05 10:08:14 -06:00
src evm: update registration to accept VAAs with target chain zero (#38) 2023-09-26 10:05:15 -05:00
ts evm: revert #42 (#45) 2023-12-05 10:08:14 -06:00
.gitignore evm: fix .gitignore; fix testing.env; fix echo (#44) 2023-12-05 09:46:08 -06:00
Makefile evm: revert #42 (#45) 2023-12-05 10:08:14 -06:00
README.md evm: revert #42 (#45) 2023-12-05 10:08:14 -06:00
foundry-test.toml evm: upgrade compiler (#32) 2023-04-20 08:56:04 -05:00
foundry.toml Optimism testnet deployment (#40) 2023-08-23 16:27:30 -05:00
package.json evm: revert #42 (#45) 2023-12-05 10:08:14 -06:00
tsconfig.json evm: revert #42 (#45) 2023-12-05 10:08:14 -06:00
yarn.lock evm: revert #42 (#45) 2023-12-05 10:08:14 -06:00

README.md

EVM Wormhole-Circle-Integration

Prerequisites

Install Foundry tools, which include forge, anvil and cast CLI tools.

Build

Run the following commands to install necessary dependencies and to build the smart contracts:

make dependencies
make build

Deployment

To deploy Wormhole's Circle Integration contracts, see the Wormhole Book to fetch the Wormhole Core contract address of the target network. Next, create a .env file with the following environment variables:

####### sample deployment environment file #######

# Wormhole Core Contract Address
export RELEASE_WORMHOLE_ADDRESS=0x

# Circle Bridge Contract Address (TokenMessenger)
export RELEASE_CIRCLE_BRIDGE_ADDRESS=0x

# Circle Message Transmitter Address
export RELEASE_WORMHOLE_FINALITY=

Then run the following command to deploy (and set up) the proxy contract:

# sample deployment command
. env/put_your_env_file_here.env && PRIVATE_KEY=put_your_private_key_here bash shell-scripts/deploy_contracts.sh

Test Suite

Run the Solidity-based unit tests:

make unit-test

Run the local-validator integration tests:

make integration-test

To run both the Solidity-based unit tests and the local-validator integration tests:

make test