List Blockchains
GET/public/NftBlockchains
Returns a list of supported blockchains and associated currencies.
Responses
- 200
Response
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
error string[]required
result objectnullable
items object[]required
asset stringrequired
id stringrequired
Possible values: [Ethereum
, Solana
, Polygon
]
total uint64required
{
"error": [
"EGeneral:Invalid arguments"
],
"result": {
"items": [
{
"asset": "string",
"id": "Ethereum"
}
],
"total": 0
}
}
{
"error": [],
"result": {
"items": [
{
"id": "Ethereum",
"asset": "ETH"
},
{
"id": "Solana",
"asset": "SOL"
},
{
"id": "Polygon",
"asset": "MATIC"
}
],
"total": 3
}
}
Loading...