Skip to main content
Version: v4 (next)

List Operator Authorizations

MOD-DE-QRY-1

Query existing operator authorizations. You can filter by authority, operator, or both.

Query Parameters

NameDescriptionMandatory
authorityFilter by authority (group account) addressno
operatorFilter by operator account addressno
limitMax items to return (default: 64, range: 1-1024)no
tip

At least one of authority or operator should be specified for meaningful results.

Execute the Query

Usage

veranad q de list-operator-authorizations \
[--authority <address>] \
[--operator <address>] \
[--limit <n>] \
--node $NODE_RPC --output json

Example: List all authorizations for an authority

veranad q de list-operator-authorizations \
--authority $AUTHORITY_ACC \
--node $NODE_RPC --output json

Example: List all authorizations for a specific operator

veranad q de list-operator-authorizations \
--operator $OPERATOR_ACC \
--node $NODE_RPC --output json

Example: Check authorization between specific authority and operator

veranad q de list-operator-authorizations \
--authority $AUTHORITY_ACC \
--operator $OPERATOR_ACC \
--node $NODE_RPC --output json

Example Response

{
"operator_authorizations": [
{
"authority": "verana1abc...",
"operator": "verana1xyz...",
"msg_types": [
"/verana.tr.v1.MsgCreateTrustRegistry",
"/verana.tr.v1.MsgUpdateTrustRegistry"
],
"spend_limit": [
{
"denom": "uvna",
"amount": "1000000"
}
],
"fee_spend_limit": [],
"expiration": "2026-12-31T23:59:59Z",
"period": null
}
]
}