aura.blocklist.v1.MsgTransferOwnership
A message that initiates an ownership transfer to a provided address.
{
"body": {
"messages": [
{
"@type": "/aura.blocklist.v1.MsgTransferOwnership",
"signer": "noble1signer",
"new_owner": "noble1owner"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
new_owner
— The Noble address to initiate an ownership transfer to.
aura.blocklist.v1.MsgAcceptOwnership
A message that finalizes an ownership transfer.
{
"body": {
"messages": [
{
"@type": "/aura.blocklist.v1.MsgAcceptOwnership",
"signer": "noble1owner"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
This message takes no arguments.
pending_owner
must be set in state first, initiated via aMsgTransferOwnership
message being previously executed.- Signer must be the
current
pending_owner
.
aura.blocklist.v1.MsgAddToBlocklist
A message that adds addresses to Aura's blocklist.
{
"body": {
"messages": [
{
"@type": "/aura.blocklist.v1.MsgAddToBlocklist",
"signer": "noble1signer",
"accounts": [
"noble1alice",
"noble1bob",
"noble1charlie"
]
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
accounts
— A list of Noble address to add to the blocklist.
- Signer must be the current
owner
.
aura.blocklist.v1.MsgRemoveFromBlocklist
A message that removes addresses from Aura's blocklist.
{
"body": {
"messages": [
{
"@type": "/aura.blocklist.v1.MsgRemoveFromBlocklist",
"signer": "noble1signer",
"accounts": [
"noble1alice",
"noble1bob",
"noble1charlie"
]
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
accounts
— A list of Noble address to remove from the blocklist.
- Signer must be the current
owner
.