wallet-cli permission show
September 18, 2026 · View on GitHub
Show the account's permission structure.
Synopsis
wallet-cli permission show [options]
Description
A read-only view of the account's permission groups — owner, witness (SRs only), and up to 8 active groups — each with its threshold, keys (address + weight), and, for active groups, the decoded list of operations it may perform. Run it before permission update, and use it to check a co-signer's structure before signing.
By default it reads the active account; --account overrides it and also accepts a bare address, so you can inspect any account on chain.
Reading the output — the text layout mirrors the TronScan permission page, one "label / value" card per group:
- Permission Name — the on-chain
permission_nameplus its id (active groups are markedactive). The name is chosen when the group is created bypermission update; it is a mnemonic only, with no on-chain meaning. A never-modified account shows the chain default: anownerand anactivegroup, each with the account's own address as the sole key and threshold1. - Operation(s) — active groups only. On chain this is a 32-byte bitmap (one bit per contract type); the text decodes it to human operation labels (
Transfer TRX,Vote, …) and gives the total count. The label set matches what the TronScan permission page shows. JSON keeps the machine-readable contract-type names inoperationsplus the rawoperationsHex. - Threshold — the combined signature weight a transaction needs to be valid for this group.
- Authorized To — the group's keys as
Address / Weight. Keys held by a local wallet (software or Ledger) are annotated(this wallet: <label>), so you can see at a glance how much weight you control — the basis for the lockout warning inpermission update.
Options
No command-specific options; the global options only (--network, and --account, which also accepts a bare address).
Examples
A never-modified account shows the chain-default structure — the active group covers every ordinary operation type:
wallet-cli permission show --account solo --network nile
Account solo (TDWjkQ5EoUSoRNhhw6cDfa72YN8WuV5d8a)
Permission Name owner (id 0)
Threshold 1
Authorized To Address Weight
TDWjkQ5EoUSoRNhhw6cDfa72YN8WuV5d8a 1 (this wallet: solo)
Permission Name active (id 2, active)
Operation(s) Activate Account · Transfer TRX · Transfer TRC10 · Vote for TRC10 [unused]
Vote · Apply to Become a SR Candidate · Issue TRC10 · Update SR Info
Participate in TRC10 Issuance · Update Account Name · TRX Stake (1.0)
TRX Unstake (1.0) · Claim Voting Rewards · Unstake TRC10
Update TRC10 Parameters · Create Proposal · Approve Proposal
Cancel Proposal · Set Account Id · Custom Contract · Create Smart Contract
Trigger Smart Contract · Get Contract · Update Contract Parameters
Create Bancor Transaction · Inject Assets into Bancor Transaction
Withdraw Assets from Bancor Transaction · Execute Bancor Transaction
Update Contract Energy Limit · Clear Contract ABI
Update SR Commission Ratio · Market Sell Asset · Market Cancel Order
TRX Stake (2.0) · TRX Unstake (2.0) · Withdraw Unstaked TRX
Delegate Resources · Reclaim Resources · Cancel Unstake (39 total)
Threshold 1
Authorized To Address Weight
TDWjkQ5EoUSoRNhhw6cDfa72YN8WuV5d8a 1 (this wallet: solo)
A multi-sig account — here the owner group is a 2-of-3 and a scoped finance active group handles day-to-day transfers. This wallet holds only one of the keys (main); the other two are held by external co-signers, so they carry no annotation:
wallet-cli permission show --account main --network nile
Account main (TP2Zs9qKScTMs8jDYV3SAHQ5pqgKY1NQ5V)
Permission Name owner (id 0)
Threshold 2
Authorized To Address Weight
TP2Zs9qKScTMs8jDYV3SAHQ5pqgKY1NQ5V 1 (this wallet: main)
TF9yB7bAL2oBbonYaMvGTqoXxExS14x73c 1
TNDHPk1LMLZTap8tMWfxUBy4MgArnWeSVP 1
Permission Name finance (id 2, active)
Operation(s) Transfer TRX · Transfer TRC10 · Trigger Smart Contract (3 total)
Threshold 2
Authorized To Address Weight
TP2Zs9qKScTMs8jDYV3SAHQ5pqgKY1NQ5V 1 (this wallet: main)
TF9yB7bAL2oBbonYaMvGTqoXxExS14x73c 1
TNDHPk1LMLZTap8tMWfxUBy4MgArnWeSVP 1
wallet-cli permission show --account main --network nile -o json
{"schema":"wallet-cli.result.v1","success":true,"command":"permission.show","data":{"address":"TP2Zs9qKScTMs8jDYV3SAHQ5pqgKY1NQ5V","owner":{"id":0,"name":"owner","threshold":2,"keys":[{"address":"TP2Zs9qKScTMs8jDYV3SAHQ5pqgKY1NQ5V","weight":1,"local":"main"},{"address":"TF9yB7bAL2oBbonYaMvGTqoXxExS14x73c","weight":1,"local":null},{"address":"TNDHPk1LMLZTap8tMWfxUBy4MgArnWeSVP","weight":1,"local":null}]},"witness":null,"actives":[{"id":2,"name":"finance","threshold":2,"operations":["TransferContract","TransferAssetContract","TriggerSmartContract"],"operationLabels":["Transfer TRX","Transfer TRC10","Trigger Smart Contract"],"operationsHex":"0600008000000000000000000000000000000000000000000000000000000000","unknownOperationIds":[],"keys":[{"address":"TP2Zs9qKScTMs8jDYV3SAHQ5pqgKY1NQ5V","weight":1,"local":"main"},{"address":"TF9yB7bAL2oBbonYaMvGTqoXxExS14x73c","weight":1,"local":null},{"address":"TNDHPk1LMLZTap8tMWfxUBy4MgArnWeSVP","weight":1,"local":null}]}]},"meta":{"durationMs":21,"warnings":[]},"chain":{"family":"tron","network":"tron:3448148188","chainId":"3448148188"}}
Output
| Field | Type | Meaning |
|---|---|---|
address | string | Queried account |
owner | object | Owner group {id, name, threshold, keys[]} |
witness | object | null | Witness group {id, name, threshold, keys[]} for SRs, else null |
actives[] | array | Active groups, each {id, name, threshold, operations[], operationLabels[], operationsHex, unknownOperationIds[], keys[]} |
…operations[] | string[] | Contract-type names the active group may perform |
…operationLabels[] | string[] | Human-readable labels for the known operation ids |
…operationsHex | string | Raw 32-byte operations bitmap, hex |
…unknownOperationIds[] | number[] | Set bits this build cannot map to a known contract type; empty when all operations are known |
…keys[] | array | Group keys: {address, weight, local} — local is the wallet label if held locally, else null |
Exit status
0 success · 1 execution failure (not_found — the address is unactivated or absent on chain; rpc_error) · 2 usage error (invalid_value).