cURL
curl --request GET \ --url https://prv.stake.biya.io/stake/delegator/delegations
{ "delegation_responses": [ { "delegation": { "validator_address": "<string>", "shares": "<string>" }, "balance": { "denom": "<string>", "amount": "<string>" } } ], "pagination": { "page": 123, "page_size": 123, "total": "<string>", "total_pages": 123, "has_prev": true, "has_next": true } }
GetDelegatorDelegations queries all delegations for a delegator with pagination
Delegator address
页码,从1开始,默认1(基于页数的分页)
每页大小,默认20,最大100
游标(基于游标的分页,用于大数据集优化,优先级高于 page) 对于区块:使用区块高度(height) 对于交易:使用交易号(tx_number)或区块高度+交易号的组合
OK
GetDelegatorDelegationsResponse represents all delegations for a delegator This corresponds to QueryDelegatorDelegations response
List of delegation responses
Show child attributes
Pagination information