prepare-change-token-factory-admin
Prepare a blockchain transaction to transfer token factory admin privileges from one address to another on the Osmosis network.
Instructions
Prepares a transaction to change the admin of a token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
denom | Yes | The token factory denomination | |
newAdmin | Yes | The new admin address | |
sender | Yes | The current admin address |
Input Schema (JSON Schema)
{
"properties": {
"denom": {
"description": "The token factory denomination",
"type": "string"
},
"newAdmin": {
"description": "The new admin address",
"type": "string"
},
"sender": {
"description": "The current admin address",
"type": "string"
}
},
"required": [
"sender",
"denom",
"newAdmin"
],
"type": "object"
}