Skip to content

Commit da295aa

Browse files
committed
v3.3.8
- removed redundant notifications array, since receipts.receiver was already indexed - updated get_action output to include all fields - removed unused fields to save raw data storage - added block_id as a searchable field to get_actions - added parser 3.2 as default for the latest Antelope versions, removed deprecated v1.7 parser - fastify security updates - get_actions/get_deltas `before` and `after` now support block_num input as well as timestamps
1 parent 4035de3 commit da295aa

28 files changed

+817
-781
lines changed

api/routes/v2-history/get_actions/definitions.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export const terms = [
22
"notified",
3+
"receipts.receiver",
34
"act.authorization.actor"
45
];
56

@@ -15,14 +16,19 @@ export const extendedActions = new Set([
1516
]);
1617

1718
export const primaryTerms = [
18-
"notified",
1919
"block_num",
20+
"block_id",
2021
"global_sequence",
2122
"producer",
2223
"@timestamp",
2324
"creator_action_ordinal",
2425
"action_ordinal",
2526
"cpu_usage_us",
2627
"net_usage_words",
27-
"trx_id"
28+
"trx_id",
29+
"receipts.receiver",
30+
"receipts.global_sequence",
31+
"receipts.recv_sequence",
32+
"receipts.auth_sequence.account",
33+
"receipts.auth_sequence.sequence"
2834
];

0 commit comments

Comments
 (0)