Avalanche · Schema

TeleporterMessageInfo

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
teleporterMessageId string
direction object
sourceChainId string chain id of the source chain. valid only for destination transactions
destinationChainId string chain id of the destination chain. valid only for source transactions
View JSON Schema on GitHub

JSON Schema

TeleporterMessageInfo.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/TeleporterMessageInfo.json",
  "title": "TeleporterMessageInfo",
  "type": "object",
  "properties": {
    "teleporterMessageId": {
      "type": "string"
    },
    "direction": {
      "$ref": "#/components/schemas/TransactionDirectionType"
    },
    "sourceChainId": {
      "type": "string",
      "description": "chain id of the source chain. valid only for destination transactions"
    },
    "destinationChainId": {
      "type": "string",
      "description": "chain id of the destination chain. valid only for source transactions"
    }
  },
  "required": [
    "teleporterMessageId",
    "direction"
  ]
}