Added instructions for the Terra testnet (#3)

This commit is contained in:
Yuriy Savchenko 2021-02-04 15:23:23 +02:00 committed by GitHub
parent ca48e93a13
commit 166a6896d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 1 deletions

Binary file not shown.

View File

@ -0,0 +1 @@
d9bb5f6802442f88ebe8db9b1a91a8ae3d3acbbb

Binary file not shown.

View File

@ -6,6 +6,8 @@ This Wormhole testnet connects the following chains:
- Ethereum [Goerli testnet](https://goerli.net).
- Terra [Tequila-0004 testnet](https://finder.terra.money/tequila-0004/).
## Network parameters
Gossip network name:
@ -22,6 +24,7 @@ Connected chain contracts:
|--------------------|------------------------------------------------|
| Ethereum Goerli | [`0xdae0Cba01eFc4bfEc1F7Fece73Fe8b8d2Eda65B0`](https://goerli.etherscan.io/address/0xdae0cba01efc4bfec1f7fece73fe8b8d2eda65b0) (verified on Etherscan) |
| Solana Tour de Sol | [`BrdgiFmZN3BKkcY3danbPYyxPKwb8RhQzpM2VY5L97ED`](https://explorer.solana.com/address/BrdgiFmZN3BKkcY3danbPYyxPKwb8RhQzpM2VY5L97ED?cluster=testnet) |
| Terra Tequila-0004 | [`terra176ckj5gu5vc704033wlm87avrem83pa4vx6c4p`](https://finder.terra.money/tequila-0004/address/terra176ckj5gu5vc704033wlm87avrem83pa4vx6c4p) |
A copy of the contract binaries that were deployed can be found in [artifacts/](artifacts), along with a pointer to the
Wormhole revision that they were built from.
@ -48,7 +51,13 @@ Refer to the [operations guide](https://github.com/certusone/wormhole/blob/maste
--bridgeKey /opt/solana/keys/wormhole-guardian.key \ # <-- your guardian key generated by "guardiand keygen"
--ethRPC wss://ethereum-node.example.com/ws/v3/[...] \ # <-- your ETH full/light node websocket URI
--adminSocket /run/guardiand/admin.socket \
--agentRPC /run/guardiand/agent.socket
--agentRPC /run/guardiand/agent.socket \
--terra \ # <-- use this flag to enable Terra support
--terraWS wss://terra-node.example.com:26657/websocket \ # <-- Terra node websocket URI
--terraLCD https://terra-lcd.example.com:1317 \ # <-- Terra LCD node HTTP URI
--terraChainID "tequila-0004" \
--terraContract "terra176ckj5gu5vc704033wlm87avrem83pa4vx6c4p" \
--terraKey /tmp/terra.key # <-- path to mnemonic key for the Terra transaction fee payer
```
```bash