xdapp-book/projects/evm-tokenbridge/README.md

17 lines
643 B
Markdown
Raw Normal View History

# EVM Token Bridge
Attests and send tokens from one EVM contract to another on another EVM chain.
2022-06-28 21:27:31 -07:00
## Dependencies
This project uses Foundry to compile and deploy EVM contracts. You can find install instructions at [`https://getfoundry.sh`](http://getfoundry.sh)
The javascript dependencies can be installed via `npm install` in this folder.
## Test Scripts
You can run the basic test with `npm run test`. This will:
2022-06-29 21:56:33 -07:00
- Deploy a Treasury contract
- Attest the TKN ERC20 token from Chain0 (ETH) to Chain1 (BSC)
- Mint 100 TKN tokens to the Treasury on ETH
- Approve & Transfer 50 TKN tokens from the treasury on ETH to the Treasury on BSC.
2022-06-28 21:27:31 -07:00