Objects
Assets
Learn about the Asset object type, its fields, and how to query asset data.
Assets
A digital or virtual property that has economic value. In Proof-of-Stake systems, assets serve as collateral enabling network participation and reward generation.
Queryable Properties
You can query multiple Asset object properties including:
- Reward Options (input/output)
- Metrics
- Tags
- Base data (Symbol, Slug, Name)
- Underlying assets
Asset Object Fields
| Field | Type | Required | Description |
|---|---|---|---|
id | ID | Yes | Unique identifier |
name | String | Yes | Human-readable name |
slug | String | Yes | URL-friendly unique identifier |
symbol | String | Yes | Ticker symbol |
type | ListItem | Yes | Asset type classification |
description | String | No | Description of the asset |
notification | String | No | Any active notifications |
logoUrl | String | No | URL to asset logo |
priceMappingID | String | No | Price data mapping ID |
tradingviewPair | String | No | TradingView pair identifier |
stakingLaunchDate | Date | No | When staking launched |
mainnetLaunchDate | Date | No | Mainnet launch date |
activeSince | Date | No | Active tracking start date |
isActive | Boolean | No | Whether asset is active |
isLaunched | Boolean | No | Whether asset has launched |
underMaintenance | Boolean | No | Maintenance status |
hideValidatorAddresses | Boolean | No | Hide validator addresses |
excludeFromRanking | Boolean | No | Exclude from rankings |
stakingContractAudited | Boolean | No | Audit status |
rewardOptionsWithAssetAsInput | Array | No | Reward options using this as input |
rewardOptionsWithAssetAsOutput | Array | No | Reward options using this as output |
metrics | Array | No | Associated metrics |
underlyingAssets | Array | No | Underlying assets |
Sample Queries
Query by Symbol
{
assets(where: { symbols: ["ETH"] }, limit: 1) {
id
name
slug
description
symbol
}
}Query by Search
{
assets(where: { search: "ethereum" }, limit: 10) {
id
name
slug
description
symbol
}
}Any argument has to be an array (except booleans). For example, use symbols: ["ETH"] not symbol: "ETH".
Related Types
- Providers — Entities offering staking services
- Validators — Validator nodes on the network
- Reward Options — Staking mechanisms
- Metrics — Metric data points