Releases: pinax-network/antelope-transactions-api
Releases · pinax-network/antelope-transactions-api
v0.3.4
Changes
✨ Features
- add additional filters & endpoints @DenisCarriere (#7)
🐛 Bug Fixes
- add 404 return if not data exists @DenisCarriere (#8)
📝 Documentation
- add additional filters & endpoints @DenisCarriere (#7)
Full Changelog: v0.3.3...v0.3.4
v0.3.3
Changes
- remove Object from
where
statements - remove
meta
from Response - reduce json logging output
Full Changelog: v0.3.2...v0.3.3
v0.3.2
What's Changed
- change default logging to json by @DenisCarriere in #5
Full Changelog: v0.3.1...v0.3.2
v0.3.1
Changes
🐛 Bug Fixes
- fix where statement @DenisCarriere (#4)
📝 Documentation
- fix where statement @DenisCarriere (#4)
Full Changelog: v0.3.0...v0.3.1
v0.3.0
What's Changed
- Update to Raw Blocks & remove GraphQL by @DenisCarriere in #3
New Contributors
- @DenisCarriere made their first contribution in #3
Full Changelog: v0.2.0...v0.3.0
- removal of
./GraphQL
endpoint - refactor
./src/usage.ts
to be more generic to all endpoints - remove endpoints that don't have good indexing (would cause slow response & heavy database bytes reads)
- remove
schema.sql
&create_schema.sh
(these exists in Substreams Raw Blocks & Substreams SQL sink repo)- https://github.com/pinax-network/substreams-raw-blocks/blob/main/blocks/antelope/schema.sql
- https://github.com/pinax-network/substreams-sink-sql (should handle deploying to replicated cluster)
- refactor
UsageResponse
result to use same output response as Clickhouse
model UsageResponse<T> {
data: T[];
statistics: {
elapsed: float;
rows_read: safeint;
bytes_read: safeint;
};
rows: safeint;
rows_before_limit_at_least: safeint;
meta: {
name: string;
type: string;
}[];
}
Usage
Path | Description |
---|---|
GET /actions/tx_hash/{tx_hash} |
Actions by transaction |
GET /authorizations/tx_hash/{tx_hash} |
Authorizations by transaction |
GET /blocks/date/{date} |
Blocks by date |
GET /blocks/hash/{hash} |
Blocks by hash |
GET /blocks/number/{number} |
Blocks by number |
GET /db_ops/tx_hash/{tx_hash} |
Database operations by transaction |
GET /transactions/block_date/{block_date} |
Transactions by date |
GET /transactions/block_number/{block_number} |
Transactions by block |
GET /transactions/hash/{hash} |
Transactions by hash |