📖
Bridge Intergration Guide
  • Introduction
  • Token Registration for Bridging
    • Registration Using Etherscan
    • Registration Using Remix
    • Bridge to TON
      • Using Etherscan(TON)
      • Using Remix(TON)
    • Reference: Layer 1 Contracts
  • CORE
    • Protocol Overview
    • Integrate to services
      • Contract
      • REST API
  • Reference
Powered by GitBook
On this page

Was this helpful?

  1. CORE
  2. Integrate to services

REST API

PreviousContract

Last updated 1 year ago

Was this helpful?

Get brief info for supported chain(native coin)

get

.

Responses
200
Successful operation
get
GET /open/v1/api/nativeswap/info HTTP/1.1
Host: bridge.orbitchain.io
Accept: */*
200

Successful operation

{
  "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
}