Comment on page
Messaging Protocols
List of Messaging Protocols integrated in Rango
A messaging protocol acts like a bridge, but is also capable of transferring a message to another chain rather than just an asset. Some messaging protocols support transferring messages without bridging assets, while other protocols only support message passing while transferring funds.
If you want to only receive the metadata for supported Messaging Protocols, you can use messaging protocols metadata endpoint.
cURL
curl 'https://api.rango.exchange/basic/meta/messaging-protocols?apiKey=YOUR_API_KEY' \
-H 'content-type: application/json;charset=UTF-8'
This is a sample of response for messaging protocols metadata endpoint:
{
"protocols": [
{
"id": "CBRIDGE"
},
{
"id": "ANYCALL"
},
{
"id": "SATELLITE"
},
{
"id": "LAYER_ZERO"
},
{
"id": "WORMHOLE"
},
...
]
}
Last modified 3mo ago