Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wormhole-foundation/example-sei-relayer
https://github.com/wormhole-foundation/example-sei-relayer
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wormhole-foundation/example-sei-relayer
- Owner: wormhole-foundation
- License: other
- Created: 2023-05-03T23:09:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-26T00:50:59.000Z (9 months ago)
- Last Synced: 2024-04-01T16:10:16.884Z (9 months ago)
- Language: TypeScript
- Size: 166 KB
- Stars: 3
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# example-sei-relayer
Run the spy, redis, and then the relayer.
**Run a wormhole network spy**
Testnet:
```bash
docker run --platform=linux/amd64 -p 7073:7073 --entrypoint /guardiand ghcr.io/wormhole-foundation/guardiand:latest spy --nodeKey /node.key --spyRPC "[::]:7073" --network /wormhole/testnet/2/1 --bootstrap /dns4/wormhole-testnet-v2-bootstrap.certus.one/udp/8999/quic/p2p/12D3KooWAkB9ynDur1Jtoa97LBUp8RXdhzS5uHgAfdTquJbrbN7i
```Mainnet:
```bash
docker run --platform=linux/amd64 -p 7073:7073 --entrypoint /guardiand ghcr.io/wormhole-foundation/guardiand:latest spy --nodeKey /node.key --spyRPC "[::]:7073" --network /wormhole/mainnet/2 --bootstrap /dns4/wormhole-mainnet-v2-bootstrap.certus.one/udp/8999/quic/p2p/12D3KooWQp644DK27fd3d4Km3jr7gHiuJJ5ZGmy8hH4py7fP4FP7
```**Run redis**
```bash
docker run --rm -p 6379:6379 --name redis-docker -d redis
```**Run the relayer**
```bash
nvm use && npm ci && npm start
```