CosmoBook nodes
  • README
  • Cosmos validator node guides
    • defund
      • defund_on_akash
      • old_defund-private-1
        • install_node
    • haqq
      • install_node
    • humans
      • commands
      • install_mainnet
      • install_testnet
      • Statesync instructions
      • Upgrade mainnet validator node
    • hypersign
      • install_node
    • ollo
      • install_node
    • paloma
      • install_node
    • quicksilver
      • install_node
    • rebus
      • install_node
      • install_with_cosmovisor
    • sei
      • Gentx for Sei Incentivized testnet (chain-id atlantic-1)
      • install_node
      • old_sei-testnet-2
        • install_node
    • stafi
      • install_node
    • stride
      • install_node
      • old_stride1
        • install_node
      • old_stride2
        • install_node
    • ununifi
      • install_node
  • polkadot
    • subspace
      • install_node
  • starknet
    • StarkNet node
  • usefull utils
    • List of usefull commands
    • cosmos_monitoring
      • install_guide
    • relayer_hermes
      • Hermes relayer
    • relayer_ibc_go_v.2.0.0
    • Faucet
  • blockclique
    • massa
      • install_node
  • ethereum
    • masa_finance
      • install_node
    • obol
      • Charon Distributed Validator Node
Powered by GitBook
On this page
  1. Cosmos validator node guides
  2. defund

defund_on_akash

Create deploy.yaml

--
version: "2.0"

services:
  node:
    image: schnetzlerjoe/defund-node:v0.0.3
    env:
      - MONIKER=defund-akash-node
      - CHAIN_ID=defund-private-1
      - PRUNING=custom
      - PRUNING_KEEP_RECENT=107
      - PRUNING_KEEP_EVERY=0
      - PRUNING_INTERVAL=10
      - API=true
      - SWAGGER=true
      - RPC_LADDR=tcp://0.0.0.0
      - RPC_PORT=26657
      - API_LADDR=tcp://0.0.0.0
      - API_PORT=1317
      - MINIMUM_GAS_PRICES=0.25ufetf
      - LOG_LEVEL=info
    expose:
      - port: 26657
        as: 80
        to:
          - global: true
      - port: 26656
        to:
          - global: true
      - port: 1317
        to:
          - global: true

profiles:
  compute:
    node:
      resources:
        cpu:
          units: 4
        memory:
          size: 4Gi
        storage:
          size: 300Gi
  placement:
    dcloud:
      attributes:
        host: akash
      signedBy:
        anyOf:
          - <akash_address>
      pricing:
        node:
          denom: uakt
          amount: 300

deployment:
  node:
    dcloud:
      profile: node
      count: 1

Create validator

defundd tx staking create-validator
--amount=1000000ufetf
--pubkey=$(defundd tendermint show-validator)
--moniker="choose a moniker"
--chain-id=defund-private-1
--commission-rate="0.10"
--commission-max-rate="0.20"
--commission-max-change-rate="0.01"
--min-self-delegation="1000000"
--gas="auto"
--from=<key_name>
PreviousdefundNextold_defund-private-1

Last updated 1 year ago