Send enabled

SendEnabled queries for SendEnabled entries.

This query only returns denominations that have specific SendEnabled settings. Any denomination that does not have a specific setting will use the default params.default_send_enabled, and will not be returned by this query.

Since: cosmos-sdk 0.47

GET//osmo.nownodes.io/cosmos/bank/v1beta1/send_enabled
Query parameters
Response

A successful response.

Body
send_enabledarray of object
paginationobject

pagination defines the pagination in the response. This field is only populated if the denoms field in the request is empty.

Request
const response = await fetch('//osmo.nownodes.io/cosmos/bank/v1beta1/send_enabled', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "send_enabled": [
    {
      "denom": "text",
      "enabled": false
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}