Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update transaction_hash in Dex Ag / NFT #14

Merged
merged 2 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion schemas/dex-aggregator/SCHEMA.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ List of trades executed on the protocol.
| timestamp | The timestamp of the trade. | number |
| chain_id | The standard id of the chain this trade belongs to. | number |
| block_number | The block number in which the trade occurred. | number |
| transaction_id | The transaction id associated with this trade. | string |
| transaction_hash | The transaction hash associated with this trade. | string |
| fees | The amount of fees from this trade (ie, the revenue generated from executing this trade). | number |
| fees_usd | The fees for this trade in USD. | number |
| slippage | (Optional) The slippage of the given trade, as a percentage (ie, 1.3% slippage is 0.013). | number |
Expand Down
4 changes: 2 additions & 2 deletions schemas/dex-aggregator/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@
"description": "The block number in which the trade occurred.",
"type": "number"
},
"transaction_id": {
"description": "The transaction id associated with this trade.",
"transaction_hash": {
"description": "The transaction hash associated with this trade.",
"type": "string"
},
"fees": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/nft/SCHEMA.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ List of NFT transfers.
| timestamp | The timestamp of the transfer. | number |
| chain_id | The standard id of the chain. | number |
| block_number | The block number of the transfer. | number |
| transaction_id | The transaction id of the transfer. | string |
| transaction_hash | The transaction hash of the transfer. | string |
| nft_collection_address | The contract address of the NFT collection. | string |
| nft_id | The unique identifier of the NFT. | string |
| sender_address | The address of the sender of the NFT. | string |
Expand Down
4 changes: 2 additions & 2 deletions schemas/nft/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"description": "The block number of the transfer.",
"type": "number"
},
"transaction_id": {
"description": "The transaction id of the transfer.",
"transaction_hash": {
"description": "The transaction hash of the transfer.",
"type": "string"
},
"nft_collection_address": {
Expand Down