Skip to content

Commit

Permalink
update sample configs
Browse files Browse the repository at this point in the history
  • Loading branch information
boojamya committed Jan 24, 2024
1 parent 91db2e9 commit 7fc6b07
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 49 deletions.
39 changes: 0 additions & 39 deletions config/sample-app-config.yaml

This file was deleted.

14 changes: 7 additions & 7 deletions config/sample.yaml → config/sample-config.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
chains:
ethereum:
chain-id: 5
rpc: "https://goerli.infura.io/v3/apiKey"
ws: "wss://goerli.infura.io/ws/v3/apiKey"
domain: 0
rpc: # Ethereum RPC
ws: # Ethereum Websocket
message-transmitter: "0x26413e8157CD32011E726065a5462e97dD4d03D9"

start-block: 9737196
start-block: 0 # set to 0 to default to latest block
lookback-period: 5 # historical blocks to look back on launch

broadcast-retries: 5 # number of times to attempt the broadcast
broadcast-retry-interval: 10 # time between retries in seconds

minter-private-key: "privateKey"
minter-private-key: # private key


noble:
rpc: "https://rpc.testnet.noble.strange.love:443"
rpc: #noble RPC; for stability, use a reliable private node
chain-id: "grand-1"

start-block: 0 # set to 0 to default to latest block
Expand All @@ -27,8 +28,7 @@ chains:
broadcast-retries: 5 # number of times to attempt the broadcast
broadcast-retry-interval: 5 # time between retries in seconds

# hex encoded
minter-private-key: "hexEncodedPrivateKey"
minter-private-key: # hex encoded privateKey

# source domain id -> destination domain id
enabled-routes:
Expand Down
13 changes: 10 additions & 3 deletions config/sample-integration-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# This file is for integration testing.
# These extra wallets keep the relayer wallet separate from the wallet used to send test transactions

networks:
ethereum:
rpc: "https://goerli.infura.io/v3/<key>"
address: "noble1...."
private_key: "..." # hex encoded, no 0x prefix
# Sepolia
address:
private_key:

noble:
address:
private_key:

0 comments on commit 7fc6b07

Please sign in to comment.