Skip to content
LogoLogo

Distribution

CommunityPool

GET/cosmos/distribution/v1beta1/community_pool

WARNING: This query will fail if an external community pool is used.

Responses

DelegationTotalRewards

GET/cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards

DelegationTotalRewards queries the total rewards accrued by each validator.

Path Parameters

delegator_addressRequired
string

delegator_address defines the delegator address to query for.

Responses

DelegationRewards

GET/cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards/{validator_address}

DelegationRewards queries the total rewards accrued by a delegation.

Path Parameters

delegator_addressRequired
string

delegator_address defines the delegator address to query for.

validator_addressRequired
string

validator_address defines the validator address to query for.

Responses

DelegatorValidators

GET/cosmos/distribution/v1beta1/delegators/{delegator_address}/validators

DelegatorValidators queries the validators of a delegator.

Path Parameters

delegator_addressRequired
string

delegator_address defines the delegator address to query for.

Responses

DelegatorWithdrawAddress

GET/cosmos/distribution/v1beta1/delegators/{delegator_address}/withdraw_address

DelegatorWithdrawAddress queries withdraw address of a delegator.

Path Parameters

delegator_addressRequired
string

delegator_address defines the delegator address to query for.

Responses

Params

GET/cosmos/distribution/v1beta1/params

Params queries params of the distribution module.

Responses

ValidatorDistributionInfo

GET/cosmos/distribution/v1beta1/validators/{validator_address}

ValidatorDistributionInfo queries validator commission and self-delegation rewards for validator

Path Parameters

validator_addressRequired
string

validator_address defines the validator address to query for.

Responses

ValidatorCommission

GET/cosmos/distribution/v1beta1/validators/{validator_address}/commission

ValidatorCommission queries accumulated commission for a validator.

Path Parameters

validator_addressRequired
string

validator_address defines the validator address to query for.

Responses

ValidatorOutstandingRewards

GET/cosmos/distribution/v1beta1/validators/{validator_address}/outstanding_rewards

ValidatorOutstandingRewards queries rewards of a validator address.

Path Parameters

validator_addressRequired
string

validator_address defines the validator address to query for.

Responses

ValidatorSlashes

GET/cosmos/distribution/v1beta1/validators/{validator_address}/slashes

ValidatorSlashes queries slash events of a validator.

Path Parameters

validator_addressRequired
string

validator_address defines the validator address to query for.

Query Parameters

starting_height
string <uint64>

starting_height defines the optional starting height to query the slashes.

ending_height
string <uint64>

starting_height defines the optional ending height to query the slashes.

pagination.key
string

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offset
string <uint64>

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limit
string <uint64>

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_total
boolean

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

Responses