Community pool

CommunityPool queries the community pool coins.

GET//rest.origin.uptick.network/cosmos/distribution/v1beta1/community_pool
Response

A successful response.

Body
poolarray of object

pool defines community pool's coins.

Request
const response = await fetch('//rest.origin.uptick.network/cosmos/distribution/v1beta1/community_pool', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "pool": [
    {
      "denom": "text",
      "amount": "text"
    }
  ]
}

Last updated