@apibara/indexer 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -114,6 +114,10 @@ export declare type EventFilter = {
|
|
|
114
114
|
data?: FieldElement[];
|
|
115
115
|
/** Include events from reverted transactions. */
|
|
116
116
|
includeReverted?: boolean;
|
|
117
|
+
/** Include the transaction that emitted the event. Defaults to true. */
|
|
118
|
+
includeTransaction?: boolean;
|
|
119
|
+
/** Include the receipt of the transaction that emitted the event. Defaults to true. */
|
|
120
|
+
includeReceipt?: boolean;
|
|
117
121
|
};
|
|
118
122
|
export declare type L2ToL1MessageFilter = {
|
|
119
123
|
/** Filter by destination address. */
|
package/package.json
CHANGED
package/src/starknet/filter.ts
CHANGED
|
@@ -136,6 +136,10 @@ export type EventFilter = {
|
|
|
136
136
|
data?: FieldElement[];
|
|
137
137
|
/** Include events from reverted transactions. */
|
|
138
138
|
includeReverted?: boolean;
|
|
139
|
+
/** Include the transaction that emitted the event. Defaults to true. */
|
|
140
|
+
includeTransaction?: boolean;
|
|
141
|
+
/** Include the receipt of the transaction that emitted the event. Defaults to true. */
|
|
142
|
+
includeReceipt?: boolean;
|
|
139
143
|
};
|
|
140
144
|
|
|
141
145
|
export type L2ToL1MessageFilter = {
|