- Intro
- History
- State
- Tokens
- Submit new transaction
Raw collections of blockchain storage
POST
https://api.trait.tech/state/storage_map
State
This endpopint allows, among other things, to get the state of any token / AppAgent / address.
Request
Body Params application/json
Request
Any of
/state/storage_map
.Example:
{"block":"blockchain_head","storage":{"module_name":"Nfts","storage_name":"Collection","data":{"key_0":{"$in":[56,17]}}}}
block
Block
storage
object
StorageMapFilter
Module and storage names
module_name
and storage_name
allows to get records from a particular storage mapFor example, the filter below retrieves all records from the storage "Nfts.Item",
which contains the data about all fungible tokens in the system:
{ "module_name": "Nfts", "storage_name": "Item" }
please refer to the source code of the blockchain runtime or ask the support service.
Content of the records
data
allows to filter by the content of the records.The example below provides data about the NFT token - collection ID "1567", item ID "381":
{
"module_name": "Nfts",
"storage_name": "Item",
"data": {
"key_0": 1567,
"key_1": 381
}
}
key_0
, key_1
, etc.To refer the value of storage records please use
storage_value
.To refer any subfield of the key / value - please use the dot notation.
please refer to the source code of the blockchain runtime or ask the support service.
{
"module_name": "Nfts",
"storage_name": "Item",
"data": {
"key_0": 1567,
"storage_value.owner": "ttqxHzRJmmjFBcE7Lb5Xs4GNMq2gFSt28JyvTEqjhqzE9EGP4"
}
}
Operators
$eq
, $ne
, $gt
, $gte
, $lt
, $lte
, $in
, $nin
.$and
, $not
, $nor
, $or
.It fetches NFT tokens from the collection 1567 that have item ID between 30 and 110:
{
"module_name": "Nfts",
"storage_name": "Item",
"data": {
"key_0": 1567,
"key_1": { "$gt": 30, "$lt": 110 }
}
}
{
"module_name": "Nfts",
"storage_name": "Item",
"data": {
"key_0": 1567,
"$or": [
{ "storage_value.owner": "ttqxHzRJmmjFBcE7Lb5Xs4GNMq2gFSt28JyvTEqjhqzE9EGP4" },
{ "storage_value.owner": "ttmkrX4meDh1dZzSLGcx2YqeUvCZHHzJYx8XBhjCjFXZUhQt4" }
]
}
}
Address properties
The example below fetches all NFT tokens from collection "1567" that belong to the given AppAgent:
{
"module_name": "Nfts",
"storage_name": "Item",
"data": {
"key_0": 1567,
"storage_value.owner": { "app_agent_id": 1567 }
}
}
FilterBlockchainAddress
.presentation
object
StateStorageMapPresentation
/state/storage_map
.Example
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.trait.tech/state/storage_map' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
Response schema for the endpoint `/state/storage_map`.
metadata
object (ResponseMetadataPaged)
required
request_context
object (ResponseBlockId)
required
blockchain_head
object (ResponseBlockId)
required
pagination
object (ResponsePaginationData)
required
data
array[object (StorageMapRecord) {8}]
Data
module_name
string
Module Name
>= 1 characters<= 50 characters
Match pattern:
^[a-zA-Z0-9_]{1,50}$
storage_name
string
Storage Name
>= 1 characters<= 50 characters
key_0
Key 0
key_1
Key 1
key_2
Key 2
key_3
Key 3
storage_value
Storage Value
raw_storage_key
string
Raw Storage Key
>= 18 characters
Match pattern:
^0x[0-9abcdefABCDEF]{16,}$
Example
{
"metadata": {
"request_context": {
"block_hash": "0xab8006019066f080402ab43da043127b930ef0ffb3349a333222d67c0f542338",
"block_index": 29702,
"block_timestamp": 1727581488000
},
"blockchain_head": {
"block_hash": "0xab8006019066f080402ab43da043127b930ef0ffb3349a333222d67c0f542338",
"block_index": 29702,
"block_timestamp": 1727581488000
},
"pagination": {
"current_page": 0,
"next_page_id": "109924cd-b827-4eb1-8901-1f45d2d753e9"
}
},
"data": [
{
"module_name": "Nfts",
"storage_name": "Collection",
"key_0": 56,
"key_1": null,
"key_2": null,
"key_3": null,
"storage_value": {
"owner": {
"address": "ttmE1FmLbQzwxDZ3s4GZviJ6iy6d5JeTVSketvtWhZBoMTrbV",
"account_id": "0x0304000001fc39587505d395e59c19b3e6f31f066c03ab26f9b2633f8600a2c7",
"address_type": "app_agent",
"app_agent_id": 1027,
"ta_id": null,
"address_name": null
},
"owner_deposit": 1011130100000000,
"items": 10,
"item_metadatas": 10,
"item_configs": 10,
"attributes": 0
},
"raw_storage_key": "0xe8d49389c2e23e152fdd6364daadd2cc375c4d25bef51e2f32fee9fc557b18200380353fe0c824bfe4038d9b490d395538000000"
},
{
"module_name": "Nfts",
"storage_name": "Collection",
"key_0": 17,
"key_1": null,
"key_2": null,
"key_3": null,
"storage_value": {
"owner": {
"address": "ttrnYjkipbBQVVvpcx349CsAvbQvF35JrXHosmbAULSZa7Uyv",
"account_id": "0xf903000001d19712b1c73aa01de7b7764c220ed3d23403f9ef8052e5d2fcc16e",
"address_type": "app_agent",
"app_agent_id": 1017,
"ta_id": null,
"address_name": null
},
"owner_deposit": 1011130100000000,
"items": 10,
"item_metadatas": 10,
"item_configs": 10,
"attributes": 0
},
"raw_storage_key": "0xe8d49389c2e23e152fdd6364daadd2cc375c4d25bef51e2f32fee9fc557b1820e37562bb4844e827a9b9fc94ab966edb11000000"
}
]
}
🟠422Parameter Error
Modified at 2024-11-21 18:59:09