Proof of Stake module: Endpoint reference

This page summarizes all API endpoints specific to the PoS module.

All the aforementioned endpoints can be invoked using the pos prefix.

Endpoints can be invoked as explained in the Connecting via endpoints guide.

pos_getStaker

Returns the stored information of a staker based on the given address.

  • Specification

  • Node CLI

  • cURL

Name Type Description Sample

address

string

The Lisk32 address of a staker.

lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4

lisk-core endpoint:invoke pos_getStaker '{"address":"lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4"}' --pretty
curl --location 'http://localhost:7887/rpc' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "pos_getStaker",
    "params": {
        "address": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4"
    }
}'
Response
Example output
{
  "stakes": [
    {
      "validatorAddress": "lskx9oc6auv2v38sorwbwgzhq9ovmjwbk5wpzmda7",
      "amount": "500000000000",
      "sharingCoefficients": []
    },
    {
      "validatorAddress": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4",
      "amount": "9899000000000",
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "1a348739e81c40a641227c5d"
        }
      ]
    }
  ],
  "pendingUnlocks": [
    {
      "validatorAddress": "lskpgd5q6up2u3m7xgfwnpazu2k2e3rea6a2pkh4k",
      "amount": "500000000000",
      "unstakeHeight": 128838
    },
    {
      "validatorAddress": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4",
      "amount": "1000000000",
      "unstakeHeight": 92887
    }
  ]
}

pos_getValidator

Returns the stored information of a validator based on the given address.

  • Specification

  • Node CLI

  • cURL

Name Type Description Sample

address

string

The Lisk32 address of a validator.

lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4

lisk-core endpoint:invoke pos_getValidator '{"address":"lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4"}' --pretty
curl --location 'http://localhost:7887/rpc' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "pos_getValidator",
    "params": {
        "address": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4"
    }
}'
Response
Example output
{
  "name": "przemer",
  "totalStake": "103150000000000",
  "selfStake": "9899000000000",
  "lastGeneratedHeight": 397037,
  "isBanned": false,
  "reportMisbehaviorHeights": [],
  "consecutiveMissedBlocks": 2209,
  "commission": 9500,
  "lastCommissionIncreaseHeight": 68231,
  "sharingCoefficients": [
    {
      "tokenID": "0200000000000000",
      "coefficient": "20c157e32fecfda501718a0f"
    }
  ],
  "address": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4",
  "punishmentPeriods": []
}

pos_getAllValidators

Returns information of all validators.

  • Specification

  • Node CLI

  • cURL

No parameters.

lisk-core endpoint:invoke pos_getAllValidators --pretty
curl --location 'http://localhost:7887/rpc' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "pos_getAllValidators",
    "params": {}
}'
Response
Example output
{
  "validators": [
    {
      "name": "genesis_18",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 8749,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskzzsu2zz6gqvdcawjfv64ovznx36qq86ap3opz5",
      "punishmentPeriods": []
    },
    {
      "name": "opt1mus",
      "totalStake": "1522000000000",
      "selfStake": "100000000000",
      "lastGeneratedHeight": 418796,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 116945,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lskzytpy82c8xtkpopchzee3vydza4cvjvcsa4fv3",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_22",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 8334,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskz224zqw73czcr6yecdkp47h8xdbfwwzmc4be82",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_75",
      "totalStake": "1000000000",
      "selfStake": "0",
      "lastGeneratedHeight": 2872,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskzjyzhmeo4sy8rwfbq72autamoa3u5yq7u4x24u",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_65",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 3892,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskxc4ut4byxxt28z8bbgxxdtxg2e3ma835y3gosh",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_42",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 6278,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskxpwpxjhqcypj78wpsfsm2go4zy3yrqek8qom4s",
      "punishmentPeriods": []
    },
    {
      "name": "samuray",
      "totalStake": "550000000000",
      "selfStake": "550000000000",
      "lastGeneratedHeight": 418789,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 155327,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lskxbe5kzt6k69km6ruq9nx4b7kyyonp3bj5yhrcq",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_69",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 3501,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskx54mqaunemxpfgn5w3jgjzrp77aun5wdxvzxnc",
      "punishmentPeriods": []
    },
    {
      "name": "endro_2",
      "totalStake": "542000000000",
      "selfStake": "22000000000",
      "lastGeneratedHeight": 251401,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 9849,
      "commission": 8000,
      "lastCommissionIncreaseHeight": 128719,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "037d9eba0c56b89a6a5e979dd8"
        }
      ],
      "address": "lskx9oc6auv2v38sorwbwgzhq9ovmjwbk5wpzmda7",
      "punishmentPeriods": []
    },
    {
      "name": "oskar",
      "totalStake": "12000000000",
      "selfStake": "12000000000",
      "lastGeneratedHeight": 76354,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 1580,
      "lastCommissionIncreaseHeight": 295526,
      "sharingCoefficients": [],
      "address": "lskxud8mwmw4et3zhrr6cee9q4d8thhe2b3x6yqdp",
      "punishmentPeriods": []
    },
    {
      "name": "tschakki",
      "totalStake": "500000000000",
      "selfStake": "150000000000",
      "lastGeneratedHeight": 295597,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 7251,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 70796,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lskxsddtvbc7ze98bqbawaq3ydj2f8387429633t9",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_39",
      "totalStake": "2000000000",
      "selfStake": "0",
      "lastGeneratedHeight": 6581,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskxhk9o3tqd887vj9e6hzmz6t9aj4t546wmabmxm",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_8",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 9777,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskxgmgx6ycbsgg5wzjqgqtgk7vhqe5s2rrdetfbn",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_43",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 6141,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskvxb95vmcgvxk22gq84u654r7t5x5ooe5xsm887",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_53",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 5124,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskvpjmup72df9jw32yfoqraqspx77gfuuaz92n6b",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_41",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 6349,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskvuv6xf2d8eqveht8o6vghyuut5sw3sm7pvst8b",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_54",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 5012,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskvtoofp8mpvvbtpd9rhx9h6f6b2x46a4hndqq3t",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_100",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 239,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskvk2ojvbhux564z3o6v8pzcbcejnrmn3p3p3qyh",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_73",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 3034,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskvac7vvztxetrecq3nvafgvdh8vb2n565at3zfg",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_35",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 6996,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskvam7a9cgdbu7y2vw88ojbpzh7s2ukmzdzsph7x",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_11",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 9476,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskvsxpr4vwcgfryyx2w94xjw63294xwj2s66dkmp",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_58",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 4586,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskvgphcvbvfxaopmt98b4y4qfvvfrd6oa7mhneuo",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_50",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 5449,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskcxg3gzuv82zptppz2n9qmnwcy8kx8dnprsfpat",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_3",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 10299,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskcmvk8ypeye2uqpawwun9u35y5c8kyrgrnygqq4",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_59",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 4515,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskcbc28736x95p6txz3ad8mxx4yko6jbzo4vhagf",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_5",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 10091,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskc94hx5zgu3vbydwj96v64r5pdfj4q3ytfxyw23",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_10",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 9575,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskcdmcxk82hn7krh58u8u2h3whqrtfbjjh267ksk",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_90",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 1312,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskpnpmxcr4x3j7d7j2gj5mmk56xjcyu7foddmkmx",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_21",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 8430,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskp3f884jszqaqoqfczet4g7dyg8q4dyaajc6vr9",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_17",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 8855,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskpwubbs45u628t6y34ouqdnje8dtwx5s46yw9ve",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_23",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 8228,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskp2yfmwkga9atcwqsk6b6ck7dcxbqdxnuzdbcpn",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_63",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 4059,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskpaabbq6evah2bdhv7e2dd2pfe4xxmzanyod65u",
      "punishmentPeriods": []
    },
    {
      "name": "endro",
      "totalStake": "1000000000000",
      "selfStake": "0",
      "lastGeneratedHeight": 111575,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 552,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 111575,
      "sharingCoefficients": [],
      "address": "lskpgd5q6up2u3m7xgfwnpazu2k2e3rea6a2pkh4k",
      "punishmentPeriods": []
    },
    {
      "name": "korben3",
      "totalStake": "5126000000000",
      "selfStake": "5000000000000",
      "lastGeneratedHeight": 410970,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 739,
      "commission": 5000,
      "lastCommissionIncreaseHeight": 85824,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "03f624c8f9aaeeed45f814a606"
        }
      ],
      "address": "lskmz22uzabdhhad2ddb2f6hqky9v9b4n926hggfg",
      "punishmentPeriods": []
    },
    {
      "name": "subzer01",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 1292,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 5000,
      "lastCommissionIncreaseHeight": 1292,
      "sharingCoefficients": [],
      "address": "lskmzafez7j53hxtaw6we8eas9c8omvcp6e6bha3v",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_85",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 1831,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskm6pz3coqmeo5nzwrcxntwrnu2u77yav7w4vmmy",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_36",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 6894,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskm6fdfhem7wvj76tj6bako4d446scr8wnomocqo",
      "punishmentPeriods": []
    },
    {
      "name": "ys_mdmg",
      "totalStake": "6099000000000",
      "selfStake": "0",
      "lastGeneratedHeight": 378441,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 28,
      "commission": 3000,
      "lastCommissionIncreaseHeight": 73911,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "065e697575cf1806ee6eb5469c"
        }
      ],
      "address": "lskm7bcu9g5wz8vc4j2tfjmndnq2hsupsarcu7p8v",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_0",
      "totalStake": "300000000000",
      "selfStake": "0",
      "lastGeneratedHeight": 69010,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 4778,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskm25ey5bcsnu5kh98wavyhy9t6m8yqumq2nhcbw",
      "punishmentPeriods": []
    },
    {
      "name": "anonimowy891",
      "totalStake": "4528000000000",
      "selfStake": "3000000000000",
      "lastGeneratedHeight": 418791,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 8999,
      "lastCommissionIncreaseHeight": 69003,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "0155c571775d86b0f4eae4adae"
        }
      ],
      "address": "lskmfoq8b2xjk9ttnfhhhjq33ukas4ndb7eckc3c3",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_28",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 7719,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskbcfrv3owewqpemx8vswbx5qg69f9skmod4zcdm",
      "punishmentPeriods": []
    },
    {
      "name": "stellardynamic",
      "totalStake": "11134000000000",
      "selfStake": "300000000000",
      "lastGeneratedHeight": 418795,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 0,
      "lastCommissionIncreaseHeight": 69795,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "056a62b6aef04cd3480c1cf371"
        }
      ],
      "address": "lskbm4p4sava9x75osfcw67jwv387m7zgwvz35mkw",
      "punishmentPeriods": []
    },
    {
      "name": "subzero",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 1157,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 3700,
      "lastCommissionIncreaseHeight": 1157,
      "sharingCoefficients": [],
      "address": "lskbgyrx3v76jxowgkgthu9yaf3dr29wqxbtxz8yp",
      "punishmentPeriods": []
    },
    {
      "name": "ultrafresh",
      "totalStake": "1169000000000",
      "selfStake": "169000000000",
      "lastGeneratedHeight": 418790,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 190406,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lsknnashp7msn4zwn7owe84xfn7brr9p66e7m9uzg",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_76",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 2761,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskn4f6an9fxcncnrt97tzkpfpv8hztyu3pyebsx3",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_45",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 5957,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskndyb4mogp2m8s8yq77aa5kg9fevqzj7mhu7daw",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_74",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 2927,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsknfpvztkyw3k74dqhdz4ghup9xp5c485222fod3",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_55",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 4912,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk3b9wwqp9phaxtdfqz5pwhry4m4oabza8ydttrj",
      "punishmentPeriods": []
    },
    {
      "name": "drag0nv3rt",
      "totalStake": "10150000000000",
      "selfStake": "9000000000000",
      "lastGeneratedHeight": 418797,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 81567,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lsk3oe7hmf5k5e4f58zhmbouzx3t4v98sgsfuhwnw",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_68",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 3597,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk39e24ozjr6egmeg2atepd3m5xrwuukvjqpu2ev",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_71",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 3240,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk3t2qkdhno6996kstuonpt7p6z97b4o3vufwux9",
      "punishmentPeriods": []
    },
    {
      "name": "ultrafreshtest",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 297584,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 297584,
      "sharingCoefficients": [],
      "address": "lsk3s8rsbv4nvnq8azesm74ub9mhncw57kumarf7t",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_101",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 0,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk3gj4sfhzp3nof67nsaqpntnr8y3573rujk2dde",
      "punishmentPeriods": []
    },
    {
      "name": "cc001",
      "totalStake": "6145000000000",
      "selfStake": "5100000000000",
      "lastGeneratedHeight": 406635,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 1102,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 119842,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lsk6pbgwqdmba9ktyxy3k5rzjvyeknxp6wfwk36oa",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_91",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 1168,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk6b4o7wvqnyotqsu44pkxbhyjmyozqt8q32osje",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_1",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 10506,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk6ew29p4dzponwg98ymekg6nbjaynq4hqwetxpm",
      "punishmentPeriods": []
    },
    {
      "name": "ultrafreshtest4",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 298369,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 298369,
      "sharingCoefficients": [],
      "address": "lsk6h5esgwgmpkvgxcwaksn6c6x9grj92scyjhu2q",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_93",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 969,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk5vjoxvy844fp7aqjfhdkabdyx6vz4f3ynfkutu",
      "punishmentPeriods": []
    },
    {
      "name": "punkrock",
      "totalStake": "2223000000000",
      "selfStake": "171000000000",
      "lastGeneratedHeight": 418798,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 115409,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lsk5cbsc8y69shtgnmegoqt4yrfy5xe92db3kaqxb",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_83",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 2054,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk5uzmjmyukatwdznuy2g289fnmcjvdz94osrphj",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_82",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 2083,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk5w3z9xpm5rz788nk2337ecry92sjuk9v3p5zvz",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_97",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 536,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskovuu99rvqfdhs3s9e9xyfbodccyf73k4yz4ouc",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_33",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 7203,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsko689oj26mb36tej8e83fduh9aczcwm6e3vp9ec",
      "punishmentPeriods": []
    },
    {
      "name": "ade",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 301692,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 301692,
      "sharingCoefficients": [],
      "address": "lskooakcgz89t9m7goeyafpa4acttwr6nm4q3fyh6",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_52",
      "totalStake": "1000000000",
      "selfStake": "0",
      "lastGeneratedHeight": 5241,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskoqqyfe6dsu8vu2ryatvkaq7cggkbdob67rkd2d",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_6",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 9990,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskoary3z6dwdc4g87daqw7dpfetmn2yyanuytztq",
      "punishmentPeriods": []
    },
    {
      "name": "splatters",
      "totalStake": "1500000000000",
      "selfStake": "100000000000",
      "lastGeneratedHeight": 418793,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 122997,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lsk9xxaky96k6p3o7azt6brgasfye9yhumywwduyc",
      "punishmentPeriods": []
    },
    {
      "name": "gaxda",
      "totalStake": "510000000000",
      "selfStake": "110000000000",
      "lastGeneratedHeight": 397687,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 1781,
      "commission": 8000,
      "lastCommissionIncreaseHeight": 105394,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "03f44db16f5590d4dee02706d0"
        }
      ],
      "address": "lsk9xu5ohfvx5bzntyy5udqx59amoha6w55xwcn97",
      "punishmentPeriods": []
    },
    {
      "name": "raphael",
      "totalStake": "30301000000000",
      "selfStake": "4500000000000",
      "lastGeneratedHeight": 377193,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 3012,
      "commission": 9898,
      "lastCommissionIncreaseHeight": 94070,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "02d9bb2355699a36df6d8b2d"
        }
      ],
      "address": "lsk9p7zenqhs3avzy58vjavt98c9gmncvfemhayxt",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_31",
      "totalStake": "9000000000",
      "selfStake": "0",
      "lastGeneratedHeight": 7413,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk9nuup6rxnc2qgf3obd3bdchw2u86t4x4w2mmmb",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_96",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 637,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk983s23sx8g5qettuttbru9o6anqxr97xbpr8ve",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_29",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 7616,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk9f8zd62up4gyzrvpnkqf75d2a2jyyca4jcropb",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_30",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 7505,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk7bx83fp49gk5wr8hvyk2ap6sdm9rzyj3fowvdw",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_57",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 4703,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk789atxh65gcg44vnbx6y8s2uhgnxy5ww6r76ee",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_40",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 6480,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk7eoho24rx8utowyqxc6g6bugb8w59fuovdp2z3",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_66",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 3773,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk7hsxb4wbqc6kxjs67vxtnghvfva53yrfp8fjk9",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_26",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 7906,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk8b6dnfzxhnfmeo9b2ayxcpxtca8ujpxp3bqyxh",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_14",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 9166,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk8qbtu8gs9wgzuu6363cxdfqp6e6pexbqkxntwa",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_46",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 5827,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk8sr9rcx8zqyawywk7g9fxnmzjnvbtuewatdb72",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_80",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 2365,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskuu794czefzz5vk3tv52zstfvxhuwcz99fv9o49",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_44",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 6053,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsku2foy2q87nrxfexvs3f3gf6bboptrvs2zq8kkx",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_47",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 5733,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskuatmyvmbtaduv7k6z2b9qn3dw7deher5pakfbh",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_25",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 8017,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskufnvso6xdursjaazz547t5jgpbhgy6nkpzembu",
      "punishmentPeriods": []
    },
    {
      "name": "corsaro",
      "totalStake": "185000000000",
      "selfStake": "180000000000",
      "lastGeneratedHeight": 418792,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 89239,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lskyvov25nzg63c6k59hytnfhgd3vcsrztx3zux49",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_62",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 4168,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskyym2fymah28syg6w2pd2bs3srmgp987wyk5xff",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_13",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 9270,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskrzt55u2ya44m84mdyk8puy7ss5z2s8djyjtkjo",
      "punishmentPeriods": []
    },
    {
      "name": "banned",
      "totalStake": "1110000000000",
      "selfStake": "110000000000",
      "lastGeneratedHeight": 418794,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 91653,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lskrbqgfofry4gqqzzakuyevvtcsn52m94pb5gf9b",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_49",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 5542,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskr58cuw632y2p9ft6gz2quzgznqhfo3ejyynbpe",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_61",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 4265,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskrfk9x3ak9hx5tkgp6v3vr3tf7mg3c8wysuwqgv",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_87",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 1612,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskrgyyuoo5d4o3z922wang58faw4v2p7mj8vm5wa",
      "punishmentPeriods": []
    },
    {
      "name": "corbifex",
      "totalStake": "11000000000",
      "selfStake": "1000000000",
      "lastGeneratedHeight": 67872,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 441,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 67872,
      "sharingCoefficients": [],
      "address": "lsktmnjxbt77t4hpr5qq4yprr4aemv47dvcj5dj3h",
      "punishmentPeriods": []
    },
    {
      "name": "irina18",
      "totalStake": "10651000000000",
      "selfStake": "150000000000",
      "lastGeneratedHeight": 415596,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 318,
      "commission": 3000,
      "lastCommissionIncreaseHeight": 87621,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "07dd639418d278168840638fe6"
        }
      ],
      "address": "lskth9yqsevfc984gpe8euk9m85vtowqzv2ewwnmv",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_78",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 2562,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskqvmuk9qxpp5n53wk23zz4gvdxsamxtjaf78yhs",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_16",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 8957,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskq3c6z24ogq7xce9y9xy78qbn76a8vuawtjzrt8",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_79",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 2464,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskqo8t2pawy7mbqk6mkbcguz5mhhs543pr29amvy",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_67",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 3643,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskqs4o97adpr8k5vwxgwmdrhe7quck78k99wa4pa",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_38",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 6691,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lske4yuaygtugq28uzfnmfugbejtv48jbro2ppaae",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_32",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 7303,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lske689ejxjjmmhnfdnrj4fg3rsaq4ndn4mx4ucne",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_86",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 1719,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskeogmhs2dog4ecgepbjwsbynuhvc9a75raxgjv9",
      "punishmentPeriods": []
    },
    {
      "name": "liskscan",
      "totalStake": "30044000000000",
      "selfStake": "30000000000000",
      "lastGeneratedHeight": 394834,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 1978,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 69561,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lskeqhjv84465mtjqtmpthkzuucovd7nmrwa7y5r4",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_51",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 5311,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskejmx5d8ecs7x7depaxuf4tnfz4evzhkn2dgc6n",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_27",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 7819,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskwpqc7w84mxjcoh62m39f9dfzxjhrn7zx7m739p",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_84",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 1938,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskw3b26zznjpn42mshfvrrrnkazuwwdt743aepux",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_72",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 3147,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskweagknwvxfmdubjs98nyon3qa7k9njjsonj67z",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_56",
      "totalStake": "1000000000",
      "selfStake": "0",
      "lastGeneratedHeight": 4841,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskw2y6gybz98wkcmcgcd9ggempqopkqa293ga83c",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_37",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 6761,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk27p9fjqdmoythmzkm9bwtvhh722o6casbjqm5u",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_92",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 1104,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk2t7r4usxeqj45t7r9aw56he3w8nwgpjgh7ydsz",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_60",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 4385,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk2w86e245npdtosxm93oykpq3bfxe3qqwm4pmda",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_102",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 0,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsk2h79h9vnw5bn9a64p3cjrmbaayyz4da9bqdypg",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_34",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 7082,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lska7nb5ezs2rz34pqs8fde55gpnhhb4n637ojv48",
      "punishmentPeriods": []
    },
    {
      "name": "lemii",
      "totalStake": "26069000000000",
      "selfStake": "24523000000000",
      "lastGeneratedHeight": 387415,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 2437,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 69286,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lska7owayy5cgmko5gxxou9kgf6gjmharb94k34rv",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_89",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 1356,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lska8nwqtwgfeqz4o9mr5fak3uygrkqwxjy43k58z",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_99",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 396,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskakvdvjnsdjot2uqyt43uxkykqfmcujogyd766z",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_20",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 8542,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskafnbdxsyr56nn5d6pbs92s574ga2e8g7chgk2p",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_2",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 10401,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskafuhtj7rjn5g7u45qjxf5hn6mhc9zja7vyasdw",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_15",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 9058,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskd5zqbts72odcq5wdfddftnrhvjybx5nk77rxcz",
      "punishmentPeriods": []
    },
    {
      "name": "ultrafreshtest3",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 297908,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 297908,
      "sharingCoefficients": [],
      "address": "lskd8qqfbdmd58kwxc8kpph5myyceqvdcasgc6dqd",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_7",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 9881,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskducahygwshx6co8hexjkagqd3n5ftz4zr8pgk4",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_48",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 5655,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskdf96jm3jooqe8xa2hs6x3hhfw2q3babh8wz9yc",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_81",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 2196,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskszxb5yyat36hyt9uq2kwsys8jteoy2vjtssdoz",
      "punishmentPeriods": []
    },
    {
      "name": "ultrafreshtest2",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 297834,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 297834,
      "sharingCoefficients": [],
      "address": "lsksyufsp93ptnwhrkw4uren33ts3pg9wbrz6dpxq",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_98",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 491,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lsksjo5op9yo3brvsns5o8mksd94qnz93ydzwm5z5",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_88",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 1482,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskj8tb7ortqbo4rz23gk4s5ctuua7c942mjjscz9",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_94",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 840,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskjebqm4vruteehae4excs2rcf4vjtfvhn9y9378",
      "punishmentPeriods": []
    },
    {
      "name": "grumlin",
      "totalStake": "7745000000000",
      "selfStake": "840000000000",
      "lastGeneratedHeight": 295592,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 7262,
      "commission": 1000,
      "lastCommissionIncreaseHeight": 101654,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "05cdf46e11690433824a355d59"
        }
      ],
      "address": "lskhahpjmn86e3ahn4wpvtmjnwzqguz3zv9woqh8u",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_64",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 3960,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskhdhtc72gmb27t7kugxn7n5hmgx34uvo5pt26xr",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_12",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 9365,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskhh3qt6yzht3a93ubheoczvro7fch39mm85sk9o",
      "punishmentPeriods": []
    },
    {
      "name": "przemer",
      "totalStake": "103150000000000",
      "selfStake": "9899000000000",
      "lastGeneratedHeight": 397037,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 1822,
      "commission": 9500,
      "lastCommissionIncreaseHeight": 68231,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "20c157e32fecfda501718a0f"
        }
      ],
      "address": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_77",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 2645,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskfszrq5nbepgf84d9wrvnags6pcn32bxt8cx9ec",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_95",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 785,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskgvqzr5kjsnexsr8eurg27vqxapjz66894qc68k",
      "punishmentPeriods": []
    },
    {
      "name": "ultrafreshtest5",
      "totalStake": "101000000000",
      "selfStake": "101000000000",
      "lastGeneratedHeight": 382866,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 2700,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 298493,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": ""
        }
      ],
      "address": "lskg6ng4o6h9cnv26j5qpfx5554ousp2nc5u62qhr",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_19",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 8650,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskg6qkdzjre9ymx8vuedcbqxjz6yr9o2onwcs6z6",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_24",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 8137,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskg5b3es9efs2u9ecqwvcwtnb9xdgtgdndgvb6n3",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_4",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 10196,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskgtaymmxz93mjakuwnqcpt8jwwksmo7oqhpreqr",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_9",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 9676,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskgwn65oosep5tvedmzoww7peroe5h8v4p96p3ht",
      "punishmentPeriods": []
    },
    {
      "name": "genesis_70",
      "totalStake": "0",
      "selfStake": "0",
      "lastGeneratedHeight": 3373,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 0,
      "commission": 10000,
      "lastCommissionIncreaseHeight": 0,
      "sharingCoefficients": [],
      "address": "lskgsbt7ucod8qmcwot5525nydotvk6krf4rr7a7e",
      "punishmentPeriods": []
    }
  ]
}

pos_getLockedStakedAmount

Returns the total amount locked due to participation in staking (active stakes and pending unlocks) for the given address.

  • Specification

  • Node CLI

  • cURL

Name Type Description Sample

address

string

The Lisk32 address of a validator.

lskzytpy82c8xtkpopchzee3vydza4cvjvcsa4fv3

lisk-core endpoint:invoke pos_getLockedStakedAmount '{"address":"lskzytpy82c8xtkpopchzee3vydza4cvjvcsa4fv3"}' --pretty
curl --location 'http://localhost:7887/rpc' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "pos_getLockedStakedAmount",
    "params": {
        "address": "lskzytpy82c8xtkpopchzee3vydza4cvjvcsa4fv3"
    }
}'
Response
Example output
{
  "amount": "100000000000"
}

pos_getConstants

Returns the configuration of the PoS module.

  • Specification

  • Node CLI

  • cURL

No parameters.

lisk-core endpoint:invoke pos_getConstants --pretty
curl --location 'http://localhost:7887/rpc' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "pos_getConstants",
    "params": {}
}'
Response
Example output
{
  "factorSelfStakes": 10,
  "maxLengthName": 20,
  "maxNumberSentStakes": 10,
  "maxNumberPendingUnlocks": 20,
  "failSafeMissedBlocks": 50,
  "failSafeInactiveWindow": 260000,
  "punishmentWindow": 780000,
  "roundLength": 103,
  "minWeightStandby": "100000000000",
  "numberActiveValidators": 101,
  "numberStandbyValidators": 2,
  "posTokenID": "0200000000000000",
  "validatorRegistrationFee": "1000000000",
  "maxBFTWeightCap": 500,
  "commissionIncreasePeriod": 260000,
  "maxCommissionIncreaseRate": 500,
  "useInvalidBLSKey": true
}

pos_getPendingUnlocks

Returns the list of pending unlocks for the given address.

  • Specification

  • Node CLI

  • cURL

Name Type Description Sample

address

string

The Lisk32 address of a staker.

lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4

lisk-core endpoint:invoke pos_getPendingUnlocks '{"address":"lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4"}' --pretty
curl --location 'http://localhost:7887/rpc' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "pos_getPendingUnlocks",
    "params": {
        "address": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4"
    }
}'
Response
Example output
{
  "pendingUnlocks": [
    {
      "validatorAddress": "lskpgd5q6up2u3m7xgfwnpazu2k2e3rea6a2pkh4k",
      "amount": "500000000000",
      "unstakeHeight": 128838,
      "unlockable": false,
      "expectedUnlockableHeight": 154838
    },
    {
      "validatorAddress": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4",
      "amount": "1000000000",
      "unstakeHeight": 92887,
      "unlockable": false,
      "expectedUnlockableHeight": 352887
    }
  ]
}

pos_getPoSTokenID

Returns the tokenID used by the PoS module.

  • Specification

  • Node CLI

  • cURL

No parameters.

lisk-core endpoint:invoke pos_getPoSTokenID --pretty
curl --location 'http://localhost:7887/rpc' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "pos_getPoSTokenID",
    "params": {}
}'
Response
Example output
{
  "tokenID": "0200000000000000"
}

pos_getValidatorsByStake

Returns the list of validators based on their stakes.

  • Specification

  • Node CLI

  • cURL

Name Type Description Sample

limit

integer

The number of validators to be returned against the request.

2

lisk-core endpoint:invoke pos_getValidatorsByStake '{"limit":2}' --pretty
curl --location 'http://localhost:7887/rpc' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "pos_getValidatorsByStake",
    "params": {
        "limit": 2
    }
}'
Response
Example output
{
  "validators": [
    {
      "name": "przemer",
      "totalStake": "103150000000000",
      "selfStake": "9899000000000",
      "lastGeneratedHeight": 397037,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 1844,
      "commission": 9500,
      "lastCommissionIncreaseHeight": 68231,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "20c157e32fecfda501718a0f"
        }
      ],
      "address": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4",
      "punishmentPeriods": []
    },
    {
      "name": "raphael",
      "totalStake": "30301000000000",
      "selfStake": "4500000000000",
      "lastGeneratedHeight": 377193,
      "isBanned": false,
      "reportMisbehaviorHeights": [],
      "consecutiveMissedBlocks": 3033,
      "commission": 9898,
      "lastCommissionIncreaseHeight": 94070,
      "sharingCoefficients": [
        {
          "tokenID": "0200000000000000",
          "coefficient": "02d9bb2355699a36df6d8b2d"
        }
      ],
      "address": "lsk9p7zenqhs3avzy58vjavt98c9gmncvfemhayxt",
      "punishmentPeriods": []
    }
  ]
}

pos_getLockedReward

Returns the amount of locked rewards in a validator’s account which is to be shared with the stakers.

  • Specification

  • Node CLI

  • cURL

Name Type Description Sample

address

string

The Lisk32 address of a validator.

lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4

tokenID

string

Used as token identifiers.

0200000000000000

lisk-core endpoint:invoke pos_getLockedReward '{"address":"lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4", "tokenID": "0200000000000000"}' --pretty
curl --location 'http://localhost:7887/rpc' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "pos_getLockedReward",
    "params": {
        "address": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4",
        "tokenID": "0200000000000000"
    }
}'
Response
Example output
{
  "reward": "2330882668064"
}

pos_getClaimableRewards

Returns the rewards that a user can claim.

  • Specification

  • Node CLI

  • cURL

Name Type Description Sample

address

string

The Lisk32 address of a user.

lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4

lisk-core endpoint:invoke pos_getClaimableRewards '{"address":"lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4"}' --pretty
curl --location 'http://localhost:7887/rpc' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "pos_getClaimableRewards",
    "params": {
        "address": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4"
    }
}'
Response
Example output
{
  "rewards": [
    {
      "tokenID": "0200000000000000",
      "reward": "1745351614004"
    }
  ]
}

pos_getRegistrationFee

Returns the registration fee that should be paid by a user to become a validator.

  • Specification

  • Node CLI

  • cURL

No parameters.

lisk-core endpoint:invoke pos_getRegistrationFee --pretty
curl --location 'http://localhost:7887/rpc' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "pos_getRegistrationFee",
    "params": {}
}'
Response
Example output
{
  "fee": "1000000000"
}

pos_getExpectedSharedRewards

Returns the expected reward for staking with a particular validator.

  • Specification

  • Node CLI

  • cURL

Name Type Description Sample

validatorAddress

string

The Lisk32 address of a validator.

lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4

validatorReward

string

The hypothetical reward for the validator.

500000000

stake

string

The amount the user is considering to stake with the specified validator.

1000000000

lisk-core endpoint:invoke pos_getExpectedSharedRewards '{"validatorAddress": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4", "validatorReward": "500000000", "stake":"1000000000" }' --pretty
curl --location 'http://localhost:7887/rpc' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "pos_getExpectedSharedRewards",
    "params": {
        "validatorAddress": "lskhf3gtj3wecxaxy7csqb5k8kszugghpscvat5b4",
        "validatorReward":"500000000",
        "stake": "1000000000"
    }
}'
Response
Example output
{
  "reward": "242"
}