13 KiB
Events
Rate limits
- IP weight =
2 + (limit * subaccounts.length / 10)wherelimitdefaults to 100 (max 500) andsubaccounts.lengthdefaults to 1- E.g: With
limit=100and 1 subaccount, weight = 12, allowing up to 200 requests per min or 33 requests / 10 secs.
- E.g: With
{% hint style="info" %} See more details in API Rate limits {% endhint %}
Available Events
Each event corresponds to a transaction type in Nado. See below available events and their event_type mapping:
| Event Name | Event Type Value |
|---|---|
LiquidateSubaccount |
liquidate_subaccount |
DepositCollateral |
deposit_collateral |
WithdrawCollateral |
withdraw_collateral |
SettlePnl |
settle_pnl |
MatchOrders |
match_orders |
MintLp |
mint_lp |
BurnLp |
burn_lp |
Event Limits
You can specify 2 types of limit on the query:
raw: the max number of events to return.txs: the max number of transactions to return. note: one transaction can emit multiple events, by specifying this limit, you will get all the events associated to the transactions in the response.
Request
{% tabs %}
{% tab title="Events by subaccount" %}
Query events corresponding to specific subaccounts, ordered by submission index desc. E.g: all MatchOrder events for subaccounts xxx specific to spot wBTC.
POST [ARCHIVE_ENDPOINT]
Body
{
"events": {
"product_ids": [
1
],
"subaccounts": [
"0x12a0b4888021576eb10a67616dd3dd3d9ce206b664656661756c740000000000"
],
"event_types": ["match_orders"],
"max_time": 1679728762,
"limit": {
"raw": 1
},
"isolated": false
}
}
{% endtab %}
{% tab title="Events by product" %}
Query events corresponding to specific products, ordered by submission index desc. Uses txs limit, will only return a single tx and one or more events associated with the tx.
POST [ARCHIVE_ENDPOINT]
Body
{
"events": {
"product_ids": [
1,
2
],
"max_time": "1679728762",
"limit": {
"txs": 1
}
}
}
{% endtab %}
{% tab title="Events by type" %}
Query events corresponding to specific types, ordered by submission index desc.
POST [ARCHIVE_ENDPOINT]
Body
{
"events": {
"event_types": ["deposit_collateral", "withdraw_collateral"],
"max_time": "1679728762",
"limit": {
"raw": 1
}
}
}
{% endtab %}
{% tab title="All events" %}
Query all events ordered by submission index desc.
POST [ARCHIVE_ENDPOINT]
Body
{
"events": {
"max_time": "1679728762",
"limit": {
"raw": 1
}
}
}
{% endtab %} {% endtabs %}
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| subaccounts | string[] | No | Array of bytes32 sent as hex strings; each includes the address and the subaccount identifier. When provided, only return events for the specified subaccounts. |
| product_ids | number[] | No | when provided, only return events for the specified product ids; return events for all products otherwise. |
| event_types | string[] | No | when provided, only return events for the specified event types; return all events otherwise. |
| idx | number / string | No | when provided, only return events with submission_idx <= idx |
| max_time | number / string | No | when idx is not provided, max_time (unix epoch in seconds) can be used to only return events created <= max_time |
| limit | object {"txs": number } | No |
|
| isolated | bool | No | When provided -- - true: only returns evens associated to isolated positions.- false: only return events associated to the cross-subaccount.defaults to null. In which case it returns everything.See Isolated Margin to learn more. |
Response
{% hint style="info" %} Note:
- the response includes a
txsfield which contains the relevant transactions to the events. There are>=1 eventsper transaction. - both
eventsandtxsare in descending order bysubmission_idx. - use the
submission_idxto associate aneventto it's corresponding transaction. {% endhint %}
{
"events": [
{
"subaccount": "0x12a0b4888021576eb10a67616dd3dd3d9ce206b664656661756c740000000000",
"product_id": 1,
"submission_idx": "563011",
"event_type": "match_orders",
"isolated": false,
"isolated_product_id": null,
"pre_balance": {
"spot": {
"product_id": 1,
"balance": {
"amount": "26766781157882079846319"
}
}
},
"post_balance": {
"spot": {
"product_id": 1,
"balance": {
"amount": "26767505157882079846318",
"last_cumulative_multiplier_x18": "1001292804799204317"
}
}
},
"product": {
"product_id": 1,
"oracle_price_x18": "115575316424148798147115",
"risk": {
"long_weight_initial_x18": "900000000000000000",
"short_weight_initial_x18": "1100000000000000000",
"long_weight_maintenance_x18": "950000000000000000",
"short_weight_maintenance_x18": "1050000000000000000",
"price_x18": "115575316424148798147115"
},
"config": {
"token": "0xc57c1c64561a37ac9e8f9039cb6deab7539d99fc",
"interest_inflection_util_x18": "800000000000000000",
"interest_floor_x18": "10000000000000000",
"interest_small_cap_x18": "40000000000000000",
"interest_large_cap_x18": "1000000000000000000",
"withdraw_fee_x18": "40000000000000",
"min_deposit_rate_x18": "0"
},
"state": {
"cumulative_deposits_multiplier_x18": "1000000000000318713",
"cumulative_borrows_multiplier_x18": "1000347390679880473",
"total_deposits_normalized": "9000399823280682696107190850",
"total_borrows_normalized": "9580268570661550719"
},
"book_info": {
"size_increment": "1000000000000000",
"price_increment_x18": "1000000000000000000",
"min_size": "4000000000000000",
"collected_fees": "0"
}
},
"net_interest_unrealized": "49040544804593257",
"net_interest_cumulative": "51596254598679857",
"net_funding_unrealized": "0",
"net_funding_cumulative": "0",
"net_entry_unrealized": "748947727410369682388339518",
"net_entry_cumulative": "749148081870171307027129958",
"quote_volume_cumulative": "1234567890123456789"
}
],
"txs": [
{
"tx": {
"match_orders": {
"product_id": 1,
"amm": true,
"taker": {
"order": {
"sender": "0x12a0b4888021576eb10a67616dd3dd3d9ce206b664656661756c740000000000",
"price_x18": "27540000000000000000000",
"amount": "2000000000000000000",
"appendix": "1537",
"expiration": 4611686020107120000,
"nonce": 1761322602510418000
},
"signature": "0x826c68f1a3f76d9ffbe8041f8d45e969d31f1ab6f2ae2f6379d1493e479e56436091d6cf4c72e212dd2f1d2fa17c627c4c21bd6d281c77172b8af030488478b71c"
},
"maker": {
"order": {
"sender": "0xf8d240d9514c9a4715d66268d7af3b53d619642564656661756c740000000000",
"price_x18": "27540000000000000000000",
"amount": "-724000000000000000",
"appendix": "1537",
"expiration": 1679731656,
"nonce": 1761322565506171000
},
"signature": "0xd8b6505b8d9b8c3cbfe793080976388035682c02a27893fb26b48a5b2bfe943f4162dea3a42e24e0dff5e2f74fbf77e33d83619140a2a581117c55e6cc236bdb1c"
}
}
},
"submission_idx": "563011",
"timestamp": "1679728127"
}
]
}
Response Fields
Events
{% hint style="info" %}
- Net cumulative: the net difference in that quantity since the beginning of time. For example, if I want to compute total amount paid out in funding between two events, you can subtract the
net_funding_cumulativeof the larger event by thenet_funding_cumulativeof the smaller event. - Net unrealized: similar to
net_cumulative, but fornet_unrealized, we have the caveat that when the magnitude of your position decreases, the magnitude of net_unrealizeddecreasesby the same amount. {% endhint %}
| Field name | Description |
|---|---|
| submission_idx | Used to uniquely identify the blockchain transaction that generated the event; you can use it to grab the relevant transaction in the txs section. |
| product_id | The id of of the product the event is associated with. |
| event_type | Name of the transaction type this event corresponds to. |
| subaccount | The subaccount associated to the event. |
| pre_balance | The state of your balance before the event happened. |
| post_balance | The state of your balance after the event happened. |
| product | The state of the product throughout the event. |
Txs
| Field name | Description |
|---|---|
| submission_idx | Unique identifier of the transaction. |
| product_id | Product associated to the transaction. |
| tx | Raw data of the corresponding transaction e.g: match_orders with all associated data. |
| timestamp | The unix epoch in seconds of when the transaction took place. |