AssetInfo
Minimal asset info for API responses
Properties
| Property | Type | Required | Description |
|---|---|---|---|
contract_address |
string,null | No | |
decimals |
integer | Yes | |
id |
string | Yes | |
is_native |
boolean | Yes | |
is_stablecoin |
boolean | Yes | |
name |
string | Yes | |
network_id |
string | Yes | |
network_name |
string | Yes | |
symbol |
string | Yes |
View JSON Schema
{
"type": "object",
"description": "Minimal asset info for API responses",
"required": [
"id",
"symbol",
"name",
"decimals",
"network_id",
"network_name",
"is_native",
"is_stablecoin"
],
"properties": {
"contract_address": {
"type": [
"string",
"null"
]
},
"decimals": {
"type": "integer",
"format": "int32"
},
"id": {
"type": "string",
"format": "uuid"
},
"is_native": {
"type": "boolean"
},
"is_stablecoin": {
"type": "boolean"
},
"name": {
"type": "string"
},
"network_id": {
"type": "string"
},
"network_name": {
"type": "string"
},
"symbol": {
"type": "string"
}
}
}