An open API service indexing awesome lists of open source software.

https://github.com/joehowarth/gr-workshop

Wormhole Generic Relayer Demo
https://github.com/joehowarth/gr-workshop

Last synced: 7 months ago
JSON representation

Wormhole Generic Relayer Demo

Awesome Lists containing this project

README

          

# gr-workshop
Wormhole Generic Relayer Demo

## Quick Start
```bash
# If you haven't installed foundry:
# curl -L https://foundry.paradigm.xyz | bash

# confirm you have an wallet funded with Fuji Avax and Celo Alfajores
echo $EVM_PRIVATE_KEY
# if that key is not present, set it by doing:
# EVM_PRIVATE_KEY=0x123..123 # your key here

# Install nodejs dependencies
yarn

# deploy the contracts to the chains configured in ts-scripts/config.json
# also cross-registers contracts with each other
yarn deploy

# increment the counter on wormhole chainId 6 (Avax)
# and request a message to all other registered chains
yarn increment -c 6

# observe the counter propogates to all connected chains 🎉🎉
yarn read
```