TokenGrantAuthority

Grants authority to another account. The transaction signer must be the token's master_authority.Fields:

Field
Type
Description

authority_type

String

Type of authority to grant

new_authority

String

Address receiving the authority

mint_tokens

Option<String>

Optional amount of tokens to mint

token

String

Token address

Sample Response:

{
  "transaction_type": "TokenGrantAuthority",
  "data": {
    "authority_type": "master_authority",
    "new_authority": "0x9E1E9688A44D058fF181Ed64ddFAFbBE5CC74ff3",
    "mint_tokens": "1000000000000000000",
    "token": "0x1234567890123456789012345678901234567890"
  }
}

Last updated