Skip to content

Commit

Permalink
fix: verifier governance proposal requirements (#1084)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenFluin authored Aug 5, 2024
1 parent 93eeb8c commit 6be728a
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions src/pages/validator/amplifier/governance-proposals.mdx
Original file line number Diff line number Diff line change
@@ -1,33 +1,31 @@
## Verifier Governance Proposals

Changes are made to existing Amplifier chain settings through [community governance](/resources/community/community-pool-proposals). You will need to submit a governance proposal to modify these settings.
Changes are made to existing Amplifier settings through [community governance](/resources/community/community-pool-proposals). You will need to submit a governance proposal to modify these settings.

## Prerequisites

- Access to the [Axelar command-line interface](/learn/cli)
- 2,000 AXL for each proposal, either from your [own wallet](/resources/community/community-pool-proposals#create-a-local-wallet) or through a community member who can fund the proposal within one hour of posting
- A running [RPC endpoint](/resources/rpc/resources) or [Axelar node](/node/config-node)
- Experience with the appropriate Amplifier CosmWasm contracts and interfaces for integrating a chain (i.e. completed the [Integrate a Chain](/dev/amplifier/chain-integration/integrate-a-chain) tutorial)

## Community Forum introduction

You will need to introduce your chain to the community in order for Axelar token holders to vote for your proposals. This should be done on the governance section of the [Axelar Community Forum](https://community.axelar.network/c/governance2/33). Make a community introduction post that precedes and can be referenced by any on-chain proposals. It should include the following information:
You will need to introduce your verifier to the community in order for Axelar token holders to vote for your proposals. This should be done on the governance section of the [Axelar Community Forum](https://community.axelar.network/c/governance2/33). Make a community introduction post that precedes and can be referenced by any on-chain proposals. It should include the following information:

- Background
- Governance details
- Pre-deployed source chain gateway address
- Plan for funding rewards pools
- Team information
- Team background
- Relevant experience

All of your on-chain proposals will refer back to this introduction, so make sure to be thorough. You should stay present and engage with any questions or comments during the seven-day feedback period, which can include public comments as well as a security council review. When the feedback period is over, submit your on-chain governance proposals to finish the integration of your chain.
All of your on-chain proposals will refer back to this post, so make sure to be thorough. You should stay present and engage with any questions or comments during the seven-day feedback period, which can include public comments as well as a security council review. When the feedback period is over, submit your on-chain governance proposal to finish the approval as a verifier.

## Authorize verifiers with the service registry

Once the feedback period has passed, submit the proposal on the command line:
Once the 7 day feedback period has passed, submit the proposal on-chain via the command line:

```bash
export SERVICE_REGISTRY_ADDRESS="axelar1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luas9x8txw"
export VERIFIER_AXELAR_ADDRESS="axelar1ks5em0gmml0qjfek0msqm9pxcmawj54as65j5v"
export NETWORK_GOV_ADDRESS="axelar19vvhwq57656hqfczhxw3r874l29jtd3uns4fsu"
export SERVICE_REGISTRY_ADDRESS="axelar1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luas9x8txw" # TBD for testnet
export VERIFIER_AXELAR_ADDRESS="axelar1ks5em0gmml0qjfek0msqm9pxcmawj54as65j5v" # The address of your verifier
export NETWORK_GOV_ADDRESS="axelar19vvhwq57656hqfczhxw3r874l29jtd3uns4fsu" # TBD for testnet
export RPC="http://devnet-verifiers.axelar.dev:26657"
```

Expand All @@ -50,4 +48,4 @@ axelard tx gov submit-proposal execute-contract $SERVICE_REGISTRY_ADDRESS \
--gas auto --gas-adjustment 1.5 --gas-prices 0.007uamplifier \
--chain-id=devnet-verifiers \
--node $RPC
```
```

0 comments on commit 6be728a

Please sign in to comment.