Community pool

CommunityPool queries the community pool coins.

Deprecated: Prefer to use x/protocolpool module's CommunityPool rpc method. Since: cosmos-sdk 0.50

GEThttps://band-rest.nownodes.io/cosmos/distribution/v1beta1/community_pool
Response

A successful response.

Body
poolarray of object

pool defines community pool's coins.

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

Last updated