返回 钱包 API 当前支持的所有区块链网络的信息,如 Bitcoin,Ethereum 网络上的 logo 和主链币唯一标识等。
GET https://www.okx.com/api/v5/wallet/chain/supported-chains
无
Parameter | Type | Description |
---|---|---|
name | String | 链名称 |
logoUrl | String | 链标志 URL |
shortName | String | 链简称 |
chainIndex | String | 链唯一标识 |
curl --location --request GET 'https://www.okx.com/api/v5/wallet/chain/supported-chains'
--header 'Content-Type: application/json' \
--header 'OK-ACCESS-PROJECT: 86af********d1bc' \
--header 'OK-ACCESS-KEY: 37c541a1-****-****-****-10fe7a038418' \
--header 'OK-ACCESS-SIGN: leaV********3uw=' \
--header 'OK-ACCESS-PASSPHRASE: 1****6' \
--header 'OK-ACCESS-TIMESTAMP: 2023-10-18T12:21:41.274Z'
{
"code": "0",
"data": [
{
"name": "Ethereum",
"logoUrl": "http://www.eth.org/eth.png",
"shortName": "ETH",
"chainIndex": "1"
}
],
"msg": ""
}