Get Chain List
Endpoint: GET /api/oracle/chains
Request:
None
Response:
Parameter Name | Type | Description |
---|---|---|
code | number | Status code |
msg | string | Return message |
data | array | Chain list |
id | string | Chain id |
chainName | string | Chain name |
imageUrl | string | Image URL |
{
"code": 0,
"msg": "success",
"data": [
{
"id": "1",
"chainName": "Ethereum",
"imageUrl": "..."
}
]
}