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.

const meta = await rango.messagingProtocols()
Metadata API

This is a sample of response for messaging protocols metadata endpoint:

{
  "protocols": [
    {
      "id": "CBRIDGE"
    },
    {
      "id": "ANYCALL"
    },
    {
      "id": "SATELLITE"
    },
    {
      "id": "LAYER_ZERO"
    },
    {
      "id": "WORMHOLE"
    }
  ]
}

Last updated