On this page

Enable Tendermint Task: Init

API-v2task::enable_tendermint::init

Use this method for task managed activation of Tendermint coins. Refer to the task managed activation overview for activation of other coin types.

ParameterTypeRequiredDefaultDescription
tickerstring-Ticker of the Tendermint-based coin you want to enable.
nodesarray of objects-A list of standard CoinNode objects.
tokens_paramsarray of objects-A list of standard TokenActivationParams objects representing IBC assets to activate alongside the platform coin.
get_balancesbooleantrueIf false, balances will not be returned in the response, resulting in a faster reply.
tx_historybooleanfalseIf true the Komodo DeFi Framework API will preload transaction history as a background process. Must be set to true to use the my_tx_history method.
path_to_addressobject-A standard AddressPath object (account/change/index) used to derive a non-standard address.
activation_paramsobject-A standard ActivationParams object used when activating via Keplr, Ledger, or WalletConnect.

ParameterTypeDescription
task_idintegerAn identifying number which is used to query task status.

ATOM Activation (native key)

POST
task::enable_tendermint::init
{
  "userpass": "RPC_UserP@SSW0RD",
  "mmrpc": "2.0",
  "method": "task::enable_tendermint::init",
  "params": {
    "ticker": "ATOM",
    "nodes": [
      {
        "url": "https://cosmos-rpc.alpha.komodo.earth/"
      },
      {
        "url": "https://cosmoshub.rpc.stakin-nodes.com/"
      }
    ],
    "tx_history": true
  }
}

OSMO Activation (WalletConnect)

POST
task::enable_tendermint::init
{
  "userpass": "RPC_UserP@SSW0RD",
  "mmrpc": "2.0",
  "method": "task::enable_tendermint::init",
  "params": {
    "ticker": "OSMO",
    "nodes": [
      {
        "url": "https://osmosis-rpc.alpha.komodo.earth/"
      },
      {
        "url": "https://osmosis.rpc.stakin-nodes.com"
      }
    ],
    "activation_params": {
      "type": "WalletConnect",
      "params": {
        "session_topic": "YOUR_WC_SESSION_TOPIC"
      }
    }
  }
}