Skip to main content

kwild migrate propose

kwild migrate propose

Submit a migration proposal.

Synopsis

A validator operator can submit a migration proposal using the propose subcommand.

The migration proposal includes the activation-period and duration. This will generate a migration resolution for the other validators to vote on. If a super-majority of validators approve the migration proposal, the migration will commence after the specified activation-period blocks from approval and will continue for the duration defined by duration blocks.

kwild migrate propose [flags]

Examples

# Submit a migration proposal to migrate to a new chain with activation period 1000 and migration duration of 14400 blocks.
kwild migrate propose --activation-period 1000 --duration 14400
(or)
kwild migrate propose -a 1000 -d 14400

Options

  -a, --activation-period uint   The number of blocks before the migration is activated since the approval of the proposal.
-d, --duration uint The duration of the migration.
-h, --help help for propose

Options inherited from parent commands

      --authrpc-cert string   kwild's TLS server certificate, required for HTTPS server
--output string the format for command output - either 'text' or 'json' (default "text")
--pass string admin server password (alternative to mTLS with tlskey/tlscert)
-r, --root string root directory (default "/home/jon/.kwild")
-s, --rpcserver string admin RPC server address (either UNIX socket path or TCP address) (default "/tmp/kwild.socket")
--tlscert string TLS client certificate file for server to authenticate us (default "auth.cert")
--tlskey string TLS client key file to establish a mTLS (authenticated) connection (default "auth.key")

SEE ALSO