Params

Params defines a gRPC query method that returns the tokenfactory module's parameters.

GET/osmosis/tokenfactory/v1beta1/params
Response

A successful response.

Body
paramsobject

params defines the parameters of the module.

Request
const response = await fetch('/osmosis/tokenfactory/v1beta1/params', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "params": {
    "denom_creation_fee": [
      {
        "denom": "text",
        "amount": "text"
      }
    ]
  }
}

Last updated