noble.dollar.portal.v1.MsgDeliver
This message acts as the core mechanism for delivering Noble Dollar Portal messages from other chains. While its primary use case is within vote extension processes by validators, it remains publicly accessible to support permissionless, manual message relaying.
{
"body": {
"messages": [
{
"@type": "/noble.dollar.portal.v1.MsgDeliver",
"signer": "noble1validator",
"vaa": "base64_encoded_vaa"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}vaa— The VAA (Verifiable Action Approval) message to be delivered.
- The VAA is a valid Noble Dollar Portal message, signed by the current Wormhole Guardian Set.
- An issuance of $USDN via the
x/bankmodule.- In the case of an $M transfer, this is minted directly to a user.
- In the case of an index update, this is minted to the module yield accrual account.
noble.dollar.portal.v1.MsgTransfer
This message allows transferring $USDN from Noble and receiving $M cross-chain.
{
"body": {
"messages": [
{
"@type": "/noble.dollar.portal.v1.MsgTransfer",
"signer": "noble1user",
"amount": "1000000",
"destination_chain_id": 2,
"destination_token": "base64_encoded_destination_token",
"recipient": "base64_encoded_recipient_address"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}amount— The amount of $USDN to be transferred.destination_chain_id— The Wormhole Chain ID of the destination chain.destination_token— The 32-byte encoded destination token on the destination chain.recipient— The 32-byte encoded recipient address on the destination chain.
- The specified amount of $USDN is burned on Noble and sent via Wormhole to the destination chain.
noble.dollar.portal.v1.MsgSetPausedState
This message allows the owner to set the PortalPause state to true or false, enabling or disabling the Deliver and Transfer actions.
{
"body": {
"messages": [
{
"@type": "/noble.dollar.portal.v1.MsgSetPausedState",
"signer": "noble1signer",
"paused": "true"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}paused— Specifies the pause state to set (true|false).
- Signer must be the current Owner.
noble.dollar.portal.v1.MsgSetPeer
This message allows the owner of the Noble Dollar Portal to set external peers.
{
"body": {
"messages": [
{
"@type": "/noble.dollar.portal.v1.MsgSetPeer",
"signer": "noble1owner",
"chain": 1,
"transceiver": "base64_encoded_transceiver",
"manager": "base64_encoded_manager"
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}chain— The Wormhole Chain ID of the peer being set.transceiver— The transceiver address for cross-chain communication.manager— The manager address responsible for the peer's operation.
- Signer must be the current
owner.
noble.dollar.portal.v1.MsgSetBridgingPath
This message allows the owner of the Noble Dollar Portal to set supported bridging paths.
{
"body": {
"messages": [
{
"@type": "/noble.dollar.portal.v1.MsgSetBridgingPath",
"signer": "noble1owner",
"destination_chain_id": 2,
"destination_token": "base64_encoded_destination_token",
"supported": true
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}destination_chain_id— The Wormhole Chain ID of the support bridging path being set.destination_token— The 32-byte encoded destination token of the bridging path.supported— The boolean value representing whether the path is supported or not.
- Signer must be the current
owner.
noble.dollar.portal.v1.MsgTransferOwnership
This message allows the transfer of ownership of the Noble Dollar Portal to a new address.
{
"body": {
"messages": [
{
"@type": "/noble.dollar.portal.v1.MsgTransferOwnership",
"signer": "noble1owner",
"new_owner": "noble1newowner"
}
],
"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 transfer ownership to.