Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: flow stream address and testnet examples #1169

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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