get reward info

Overview

The /staking/getRewardInfo API provides reward information for the WEMIX.Fi staking pool.

Staking reward information

GET /staking/getRewardInfo

Returns the staking pool's reward based on the block number you entered.

Query Parameters

NameTypeDescription

block_number

number

Block number to view data

{
  "type": "success",
  "message": "success",
  "data": {
    "_staking_reward": {
      "totalStakedGrand": "string",
      "totalRewardGrand": "string",
      "totalStakedLiquid": "string",
      "totalRewardLiquid": "string"
    },
    "staking_reward": {
      "totalStakedGrand": 0,
      "totalRewardGrand": 0,
      "totalStakedLiquid": 0,
      "totalRewardLiquid": 0
    }
  }
}

Request

Parameter

NameTypeDescription

block_number

number

Block number to view data

Response

Parameter

NameTypeDescription

type

string

success/failure status

message

string

success/failure message

data

-

-

totalStakedGrand

string

Total number of WEMIX staked in GRAND Staking in wei and WEMIX

totalRewardGrand

string

Total amount of reward accrued from GRAND Staking in wei and WEMIX

totalStakedLiquid

string

Total number of WEMIX staked in LIQUID Staking in wei and WEMIX

totalRewardLiquid

string

Total amount of reward accrued from LIQUID Staking in wei and WEMIX

Sample

Request

curl

curl -X 'GET' \
  'https://openapi.wemix.fi/staking/getRewardInfo' \
  -H 'accept: application/json'

Request URL

https://openapi.wemix.fi/staking/getRewardInfo

Response

{
  "type": "success",
  "message": "success",
  "data": {
    "_staking_reward": {
      "totalStakedGrand": "40059117466308860412790618",
      "totalRewardGrand": "1602081000000000000000000",
      "totalStakedLiquid": "2594451438708084400000000",
      "totalRewardLiquid": "111586554393232140000000"
    },
    "staking_reward": {
      "totalStakedGrand": 40059117.46630886,
      "totalRewardGrand": 1602081,
      "totalStakedLiquid": 2594451.438708084,
      "totalRewardLiquid": 111586.55439323215
    }
  }
}