Unagii Docs
  • Introduction
  • Unagii Vaults
    • Overview
    • Understanding Vaults
    • Strategies
    • Architecture
    • Smart Contracts
    • Security
    • F.A.Q
    • Vault Integration
  • Unagii Stake
    • Overview
    • Ethereum
      • Kyber
      • Skale
    • Tendermint
      • Band
      • Cosmos
      • Kava
      • Persistence
      • Terra
      • Agoric
      • Akash
      • Archway
      • Shentu
      • Kujira
      • Osmosis
      • Passage
      • Quicksilver
      • Celestia
      • dYdX
    • Others
      • Sui
      • Solana
    • Security
    • F.A.Q
    • Stake Integration
      • Kyber
      • Skale
      • Tendermint Ecosystem
      • Sui
      • Solana
    • Page
  • DeFi
    • What is DeFi?
    • What are the risks in DeFi?
    • What are Stablecoins?
      • How to earn yield on Stablecoins?
        • What are Lending Pools?
        • What are Liquidity Pools?
  • Unagii Account
Powered by GitBook
On this page
  • Get all network chain ids
  • Get network info
  • Get estimated APY
  • Get chain total staked and staked ratio
  • Get available balance
  • Get staked balance
  • Get unbonding delegations
  • Get unclaimed rewards

Was this helpful?

  1. Unagii Stake
  2. Stake Integration

Tendermint Ecosystem

If you require assistance or need additional information to integrate Unagii Stake, reach out to us at support@unagii.com.

Get all network chain ids

Use these networks and chainIds for all apis below.

GET https://app.unagii.com/api/v1/tendermint/latest_chain_ids

{
  "success": true,
  "error_code": 0,
  "result": {
    "cosmos": "cosmoshub-4",
    "kava": "kava_2222-10",
    "band": "laozi-mainnet",
    "persistence": "core-1",
    "osmosis": "osmosis-1",
    "certik": "shentu-2.2",
    "agoric": "agoric-3",
    "akash": "akashnet-2",
    "passage3d": "passage-2",
    "quicksilver": "quicksilver-2",
    "kujira": "kaiyo-1",
    "archway": "archway-1",
    "celestia": "celestia",
    "dydx": "dydx-mainnet-1",
    "canto": "canto_7700-1",
    "selfchain": "self-1"
  }
}

Get network info

GET https://app.unagii.com/api/v1/tendermint/network-info/{network}/{chainId}

Path Parameters

Name
Type
Description

network

string

chainId

string

{
  "success": true,
  "error_code": 0,
  "result": {
    "network": "cosmos",
    "value": {
      "chainId": "cosmoshub-4",
      "blockHeight": 21542716,
      "blockTime": "2024-08-01T08:55:12.172629179Z",
      "validatorAddr": "cosmosvaloper1jlr62guqwrwkdt4m3y00zh2rrsamhjf9num5xr",
      "authzSupport": true,
      "autoCompoundBotAddress": "cosmos1ltd3ynqjvy39r3lc48p4zlqa59hvam5t4n2nfq"
    }
  }
}

Get estimated APY

GET https://app.unagii.com/api/v1/tendermint/yield/{network}/{chainId}

Path Parameters

Name
Type
Description

network

string

chainId

string

{
  "success": true,
  "error_code": 0,
  "result": {
    "network": "cosmos",
    "apy": 0.1387,
    "compoundApy": "0.1488"
  }
}

Get chain total staked and staked ratio

GET https://app.unagii.com/api/v1/tendermint/total-staked/{network}/{chainId}

Path Parameters

Name
Type
Description

network

string

chainId

string

{
  "success": true,
  "error_code": 0,
  "result": {
    "network": "cosmos",
    "value": "251678217920702",
    "stakedRatio": "0.6163",
    "swuStaked": "551667.710282",
    "totalStaked": "251678217.920702"
  }
}

Get available balance

GET https://app.unagii.com/api/v1/tendermint/balance/{network}/{chainId}/{address}

Path Parameters

Name
Type
Description

network

string

chainId

string

address

string

{
  "success": true,
  "error_code": 0,
  "result": {
    "network": "cosmos",
    "address": "cosmos16s9g7cffxnm7eepmery6jc7g2jgq7jl9wlz9sh",
    "balances": [{ "value": 968179048, "denom": "uatom" }],
    "chainId": "cosmoshub-4"
  }
}

Get staked balance

GET https://app.unagii.com/api/v1/tendermint/delegators/swu/{network}/{chainId}/{address}

Path Parameters

Name
Type
Description

network

string

chainId

string

address

string

{
  "success": true,
  "error_code": 0,
  "result": {
    "delegation": {
      "delegator_address": "cosmos16s9g7cffxnm7eepmery6jc7g2jgq7jl9wlz9sh",
      "validator_address": "cosmosvaloper1jlr62guqwrwkdt4m3y00zh2rrsamhjf9num5xr",
      "shares": "100586942.000000000000000000"
    },
    "balance": "100586942"
  }
}

Get unbonding delegations

GET https://app.unagii.com/api/v1/tendermint/delegators/unbonding-delegations/list/{network}/{chainId}/{address}

Path Parameters

Name
Type
Description

network

string

chainId

string

address

string

{
  "success": true,
  "error_code": 0,
  "result": [
    {
      "delegator_address": "cosmos16s9g7cffxnm7eepmery6jc7g2jgq7jl9wlz9sh",
      "validator_address": "cosmosvaloper1jlr62guqwrwkdt4m3y00zh2rrsamhjf9num5xr",
      "entries": [
        {
          "creation_height": "937218",
          "completion_time": "2021-06-29T02:59:26.581287757Z",
          "initial_balance": "2000000000",
          "balance": "2000000000"
        }
      ],
      "validator": {
        "moniker": "StakeWithUs",
        "identity": "609F83752053AD57",
        "website": "https://stakewith.us",
        "details": "Secured Staking Made Easy. Put Your Crypto to Work - Hassle Free. Disclaimer: Delegators should understand that delegation comes with slashing risk. By delegating to StakeWithUs Pte Ltd, you acknowledge that StakeWithUs Pte Ltd is not liable for any losses on your investment."
      },
      "denom": "uatom"
    }
  ]
}

Get unclaimed rewards

GET https://app.unagii.com/api/v1/tendermint/unclaimed-rewards/list/{network}/{chainId}/{address}

Path Parameters

Name
Type
Description

network

string

chainId

string

address

string

{
  "success": true,
  "error_code": 0,
  "result": {
    "network": "cosmos",
    "address": "cosmos16s9g7cffxnm7eepmery6jc7g2jgq7jl9wlz9sh",
    "rewards": [
      {
        "validator": {
          "moniker": "StakeWith.Us",
          "identity": "609F83752053AD57",
          "website": "https://stakewith.us",
          "details": "Secured Staking Made Easy. Put Your Crypto to Work - Hassle Free. Disclaimer: Delegators should understand that delegation comes with slashing risk. By delegating to StakeWithUs Pte Ltd, you acknowledge that StakeWithUs Pte Ltd is not liable for any losses on your investment."
        },
        "validator_address": "cosmosvaloper1jlr62guqwrwkdt4m3y00zh2rrsamhjf9num5xr",
        "value": "2000000",
        "denom": "uatom",
        "reward": [{ "denom": "uatom", "amount": "2000000" }]
      }
    ],
    "chainId": "cosmoshub-4"
  }
}

PreviousSkaleNextSui

Last updated 9 months ago

Was this helpful?