For the complete documentation index, see llms.txt. This page is also available as Markdown.

Params

Params queries a specific parameter of a module, given its subspace and key.

get
Query parameters
subspacestringOptional

subspace defines the module to query the parameter for.

keystringOptional

key defines the key of the parameter in the subspace.

Responses
200

A successful response.

application/json

QueryParamsResponse is response type for the Query/Params RPC method.

get/cosmos/params/v1beta1/params
GET /cosmos/params/v1beta1/params HTTP/1.1
Accept: */*
{
  "param": {
    "subspace": "text",
    "key": "text",
    "value": "text"
  }
}

Last updated

Was this helpful?