Skip to content

Commit

Permalink
fix: flow stream address and testnet examples (#1169)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenFluin committed Sep 17, 2024
1 parent 3b3f331 commit 49b1308
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
18 changes: 16 additions & 2 deletions src/content/docs/validator/amplifier/verifier-onboarding.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,20 @@ The following are an example `config.toml` files:
chain_finalization="ConfirmationHeight"
type="EvmVerifierSetVerifier"
[[handlers]]
chain_name="flow"
chain_rpc_url="[flow gateway rpc url]"
cosmwasm_contract="axelar1kkqdsqvwq9a7p9fj0w89wpx2m2t0vrxl782aslhq0kdw2xxd2aesv3un04"
chain_finalization="RPCFinalizedBlock"
type="EvmMsgVerifier"
[[handlers]]
chain_name="flow"
chain_rpc_url="[flow gateway rpc url]"
cosmwasm_contract="axelar1kkqdsqvwq9a7p9fj0w89wpx2m2t0vrxl782aslhq0kdw2xxd2aesv3un04"
chain_finalization="RPCFinalizedBlock"
type="EvmVerifierSetVerifier"
# For each supported chain
#[[handlers]]
#chain_name="[chain name]"
Expand Down Expand Up @@ -425,7 +439,7 @@ Prior to running the `ampd` daemon, you will need to set up your wallet with dev
ampd bond-verifier validators 100000000000 uaxl
```

Bonded verifiers will stay bonded until they unbond or are removed by governance. The bond for testnet is 100000000000uaxl (100k AXL).
Bonded verifiers will stay bonded until they unbond or are removed by governance. The bond for testnet is 100000000000uaxl (100k AXL). The bond for mainnet is 50000000000uaxl (50k AXL).

1. Register your public key with `ecdsa` or `ed25519`:

Expand All @@ -436,7 +450,7 @@ Prior to running the `ampd` daemon, you will need to set up your wallet with dev
1. Register support for desired chains, enabling `ampd` to participate in voting and signing for your supported chains.

```bash
ampd register-chain-support validators avalanche ethereum-sepolia
ampd register-chain-support amplifier flow
```

Multiple chain names can be passed, separated by a space (`ampd register-chain-support [service name] [chains]...`). Note that any chain you want to support here must be configured in your ampd `config.toml` file.
Expand Down
1 change: 1 addition & 0 deletions src/content/docs/validator/external-chains/flow.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ ExecStart=/usr/bin/access-node \
--secretsdir=$PWD/data/secrets \
--execution-data-dir=$PWD/data/execution_data \
--rpc-addr=0.0.0.0:9000 \
--state-stream-addr=0.0.0.0:9000 \
--secure-rpc-addr=0.0.0.0:9001 \
--http-addr=0.0.0.0:8000 \
--rest-addr=0.0.0.0:8070 \
Expand Down

0 comments on commit 49b1308

Please sign in to comment.