module_authz
authz
module
authz
moduleIntroduction
The authz
module facilitates granting authorizations to perform actions, such as spending tokens, on behalf of one account to other accounts.
Overview
An authorization is an allowance to execute an action by the grantee on behalf of the authorization granter, e.g. to send tokens to an account from the granter, or to delegate tokens to a validator from the granter. There are 3 major built-in authorization types:
SendAuthorization
StakeAuthorization
GenericAuthorization
SendAuthorization
SendAuthorization
implements an authorization to the grantee to perform, on behalf of the granter, a basic send
action defined in the bank module. It takes a SpendLimit
that is greater than 0 to specify the maximum amount of tokens the grantee can spend with. The SpendLimit
keeps track of how many tokens allowed are left in the authorization and is updated as the tokens are spent until the SendAuthorization
gets cleared when the SpendLimit
reaches 0. Sending an amount greater than the SpendLimit
is not allowed.
StakeAuthorization
StakeAuthorization
implements an authorization to the grantee to perform, on behalf of the granter, delegate
, unbond
(undelegate), or redelegate
actions defined in the staking module. Each of the above actions needs to be authorized separately, with which either an AllowList
or a DenyList
must be specified to restrict which validators to or not to perform a staking action with. Optionally, MaxTokens
can also be specified in the authorization that keeps track of a limit to the amount of tokens to be delegated/undelegated/redelegated. If left unspecified, the amount is unlimited. Similar to the SpendLimit
in SendAuthorization
, MaxTokens
gets updated after each valid authorized staking action. An authorized staking action that uses tokens beyond the MaxTokens
is not allowed.
GenericAuthorization
GenericAuthorization
implements an authorization to the grantee to perform, on behalf of the granter, a generic action. In other words, GenericAuthorization
facilitates an arbitrary action grant, where a MsgTypeURL
must be specified to correspond to an action defined in the modules. A GenericAuthorization
is currently unrestricted beyond the MsgTypeURL
. For example, when granting someone to send tokens, the SpendLimit
in SendAuthorization
will not be enforced. Therefore, a SendAuthorization
without a spend limit may in fact be implemented as a GenericAuthorization
with the MsgTypeURL
been set to /cosmos.bank.v1beta1.MsgSend
. The following are some common MsgTypeURLs
:
Send:
/cosmos.bank.v1beta1.MsgSend
Delegate:
/cosmos.staking.v1beta1.MsgDelegate
Unbond/Undelegate:
/cosmos.staking.v1beta1.MsgUndelegate
Redelegate:
/cosmos.staking.v1beta1.MsgBeginRedelegate
Withdraw delegator reward:
/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward
Mint NFT:
/chainmain.nft.v1.MsgMintNFT
Burn NFT:
/chainmain.nft.v1.MsgBurnNFT
Transfer NFT:
/chainmain.nft.v1.MsgTransferNFT
Edit NFT:
/chainmain.nft.v1.MsgEditNFT
Transactions and Queries
Transactions
In general, a granter can grant
an authorization to a grantee or revoke
an existing authorization already granted to the grantee. A grantee can execute
an authorization already granted by the granter.
grant
:
grant
:An authorization starts from the granter granting the grantee.
under
SendAuthorization
tx authz grant [grantee_address] send --spend-limit [amount] --from [granter_address]
- Grant to send with a spend limit
under
StakeAuthorization
tx authz grant [grantee_address] delegate --spend-limit [amount] --allowed-validators [list_of_allowed_validators_separated_by_,] --from [granter_address]
- Grant to delegate to validators on a specified list
On the contrary, the granter may choose to exclude a list of validators the grantee can delegate to on the granter's behalf:
tx authz grant [grantee_address] delegate --spend-limit [amount] --deny-validators [list_of_deny_validators_separated_by_,] --from [granter_address]
- Grant to delegate to validators excluding a specified list
Granting to redelegate or undelegate (unbond) is very similar by just replacing the delegate
with redelegate
or unbond
:
tx authz grant [grantee_address] redelegate --spend-limit [amount] --allowed-validators [list_of_allowed_validators_separated_by_,] --from [granter_address]
- Grant to redelegate to validators on a specified list
tx authz grant [grantee_address] unbond --spend-limit [amount] --allowed-validators [list_of_allowed_validators_separated_by_,] --from [granter_address]
- Grant to unbond from validators on a specified list
under
GenericAuthorization
Other than the above grants under SendAuthorization
or StakeAuthorization
, one may authorize other grants through GenericAuthorization
:
tx authz grant [grantee_address] generic --msg-type [msg_type_url] --from [granter_address]
- Grant for generic authorization with a specified Message Type URL
Similarly:
tx authz grant [grantee_address] generic --msg-type /chainmain.nft.v1.MsgMintNFT --from [granter_address]
- Grant to mint NFT
tx authz grant [grantee_address] generic --msg-type /chainmain.nft.v1.MsgTransferNFT --from [granter_address]
- Grant to transfer NFT
tx authz grant [grantee_address] generic --msg-type /chainmain.nft.v1.MsgEditNFT --from [granter_address]
- Grant to edit NFT
so on and so forth.
exec
:
exec
:The exec
transaction composes of 2 transactions:
the
authorized transaction
: the transaction to be executed on behalf of the granter; andthe
execution transaction
: the transaction that contains and executes the aboveauthorized transaction
.
After a valid grant is set up, the grantee needs to first prepare the authorized transaction
, in JSON format, on behalf of the granter. For instance, when the grantee wants to execute a SendAuthorization
to send 10 CRO
from the granter to a recipient
, one easy way to generate such authorized transaction
and saves it to a file named tx.json
is to use the --generate-only
flag by running:
After the authorized transaction
is properly prepared, the grantee needs to issue an execution transaction
to execute the authorized transaction
:
tx authz exec [tx_json] --from [grantee_address]
- Execute an authorization
Likewise, all valid authorized grants can be executed with proper authorized transaction
and execution transaction
.
revoke
:
revoke
:The granter may choose to revoke
an existing authorization already granted to the grantee by running:
tx authz revoke [grantee_address] [msg_type_url] --from [granter_address]
- Revoke an authorization with a specified Message Type URL
Queries
query authz grants [granter_address] [grantee_address]
- Query all existing grants between a granter-grantee pair
We may also specify a MsgTypeURL
for the query:
query authz grants [granter_address] [grantee_address] [msg_type_url]
- Query the grant with a specified Message Type URL between a granter-grantee pair
Last updated