Endpoint: /noble/dollar/portal/v1/owner
Retrieves the address of the current Noble Dollar Portal owner.
{
"address": "noble1owner"
}
owner
— The address of the current Noble Dollar Portal owner.
Endpoint: /noble/dollar/portal/v1/paused
Retrieves the current paused state of the Noble Dollar Portal.
{
"paused": "true"
}
paused
— The paused state of the Noble Dollar Portal.
Endpoint: /noble/dollar/portal/v1/peers
Retrieves all of the current Noble Dollar Portal external peers, filtered by Wormhole Chain ID.
{
"peers": {
"1": {
"transceiver": "",
"manager": ""
},
"2": {...},
...
}
}
peers
— A map containing external peer information, where the key is the Wormhole Chain ID (asuint16
) and the value is aportal.Peer
object containing the transceiver and manager addresses.
Endpoint: /noble/dollar/portal/v1/destination_tokens/{chain_id}
Retrieves all supported destination tokens based off of the current Noble Dollar Portal bridging paths, filtered by Wormhole Chain ID.
{
"destination_tokens": ["...", "...", ...]
}
destination_tokens
— An array containing the list of supported destination tokens of the provided Wormhole Chain ID.
Endpoint: /noble/dollar/portal/v1/nonce
Retrieves the latest message sent nonce of the Noble Dollar Portal.
{
"nonce": 42
}
nonce
— Auint64
of the latest message sent nonce.