REST API

Get brief info for supported chain(native coin)

.

get

/nativeswap/info

Responses
curl -L \
  --url 'https://bridge.orbitchain.io/open/v1/api/nativeswap/info'
{
  "info": {
    "klaytn": {
      "address": "0x39d686418db4c1e88fb2ae502e34f84be6177cb3",
      "native": {
        "decimals": 18,
        "symbol": "KLAY"
      },
      "toChains": {
        "eth": {
          "minAmount": "20"
        },
        "matic": {
          "minAmount": "0"
        }
      }
    },
    "eth": {
      "address": "0x9B76935dDaa3FeD5EDdCE45aa69965ebc4b3e105",
      "native": {
        "decimals": 18,
        "symbol": "ETH"
      },
      "toChains": {
        "matic": {
          "minAmount": "0"
        },
        "klaytn": {
          "minAmount": "0"
        }
      }
    },
    "matic": {
      "address": "0x37550B7190E79050767d9e369A7A599AdC4F8292",
      "native": {
        "decimals": 18,
        "symbol": "MATIC"
      },
      "toChains": {
        "eth": {
          "minAmount": "15"
        },
        "matic": {
          "minAmount": "0"
        }
      }
    }
  },
  "success": true
}

Last updated

Was this helpful?