aura.v1.MsgBurn
A message that burns USDY from a user.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgBurn",
"signer": "noble1signer",
"from": "noble1user",
"amount": "1000000000000000000"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
from
— The Noble address to burn USDY from.amount
— The amount of USDY to burn.
- Signer must be one of the allowed
burners
. - Burner must have enough allowance.
burners
- User balance via
x/bank
module.
aura.v1.MsgMint
A message that mints USDY to a user.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgMint",
"signer": "noble1signer",
"to": "noble1user",
"amount": "1000000000000000000"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
to
— The Noble address to mint USDY to.amount
— The amount of USDY to mint.
- Signer must be one of the allowed
minters
. - Minter must have enough allowance.
minters
- User balance via
x/bank
module.
aura.v1.MsgPause
A message that pauses USDY.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgPause",
"signer": "noble1signer"
}
],
"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.
- Signer must be one of the allowed
pausers
.
aura.v1.MsgUnpause
A message that unpauses USDY.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgUnpause",
"signer": "noble1signer"
}
],
"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.
- Signer must be the current
owner
.
aura.v1.MsgTransferOwnership
A message that initiates an ownership transfer to a provided address.
{
"body": {
"messages": [
{
"@type": "/aura.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.v1.MsgAcceptOwnership
A message that finalizes an ownership transfer.
{
"body": {
"messages": [
{
"@type": "/aura.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.v1.MsgAddBurner
A message that adds a new burner, with an initial allowance.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgAddBurner",
"signer": "noble1signer",
"burner": "noble1burner",
"allowance": "0"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
burner
— The Noble address to add as a new burner.allowance
— The initial burn allowance of this new burner.
- Signer must be the current
owner
.
aura.v1.MsgRemoveBurner
A message that removes a burner.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgRemoveBurner",
"signer": "noble1signer",
"burner": "noble1burner"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
burner
— The Noble address to remove as a burner.
- Signer must be the current
owner
.
aura.v1.MsgSetBurnerAllowance
A message that sets the allowance of a burner.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgSetBurnerAllowance",
"signer": "noble1signer",
"burner": "noble1burner",
"allowance": "1000000000000000000"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
burner
— The Noble address to update the burn allowance for.allowance
— The burn allowance to update to.
- Signer must be the current
owner
.
aura.v1.MsgAddMinter
A message that adds a new minter, with an initial allowance.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgAddMinter",
"signer": "noble1signer",
"minter": "noble1minter",
"allowance": "0"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
minter
— The Noble address to add as a new minter.allowance
— The initial mint allowance of this new minter.
- Signer must be the current
owner
.
aura.v1.MsgRemoveMinter
A message that removes a minter.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgRemoveMinter",
"signer": "noble1signer",
"minter": "noble1minter"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
minter
— The Noble address to remove as a minter.
- Signer must be the current
owner
.
aura.v1.MsgSetMinterAllowance
A message that sets the allowance of a minter.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgSetMinterAllowance",
"signer": "noble1signer",
"minter": "noble1minter",
"allowance": "1000000000000000000"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
minter
— The Noble address to update the mint allowance for.allowance
— The mint allowance to update to.
- Signer must be the current
owner
.
aura.v1.MsgAddPauser
A message that adds a new pauser.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgAddPauser",
"signer": "noble1signer",
"pauser": "noble1pauser"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
pauser
— The Noble address to add as a new pauser.
- Signer must be the current
owner
.
aura.v1.MsgRemovePauser
A message that removes a pauser.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgRemovePauser",
"signer": "noble1signer",
"pauser": "noble1pauser"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
pauser
— The Noble address to remove as a pauser.
- Signer must be the current
owner
.
aura.v1.MsgAddBlockedChannel
A message that adds a blocked channel.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgAddBlockedChannel",
"signer": "noble1signer",
"channel": "channel-0"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
channel
— The IBC channel to block.
- Signer must be the current
owner
.
aura.v1.MsgRemoveBlockedChannel
A message that removes a blocked channel.
{
"body": {
"messages": [
{
"@type": "/aura.v1.MsgRemoveBlockedChannel",
"signer": "noble1signer",
"channel": "channel-0"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}
channel
— The IBC channel to unblock.
- Signer must be the current
owner
.