@sentio/sdk 1.37.5-rc.1 → 1.37.5-rc.3
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.
- package/lib/builtin/internal/EACAggregatorProxy.d.ts +8 -8
- package/lib/builtin/internal/ERC1155.d.ts +8 -8
- package/lib/builtin/internal/ERC20.d.ts +6 -6
- package/lib/builtin/internal/ERC20Bytes.d.ts +4 -4
- package/lib/builtin/internal/ERC721.d.ts +6 -6
- package/lib/builtin/internal/WETH9.d.ts +8 -8
- package/lib/builtin/internal/common.d.ts +5 -5
- package/lib/builtin/internal/eacaggregatorproxy_processor.d.ts +24 -24
- package/lib/builtin/internal/erc1155_processor.d.ts +9 -9
- package/lib/builtin/internal/erc20_processor.d.ts +19 -19
- package/lib/builtin/internal/erc20bytes_processor.d.ts +10 -10
- package/lib/builtin/internal/erc721_processor.d.ts +15 -15
- package/lib/builtin/internal/weth9_processor.d.ts +12 -12
- package/lib/core/account-processor.js +2 -2
- package/lib/core/account-processor.js.map +1 -1
- package/lib/core/base-processor.d.ts +4 -4
- package/lib/core/base-processor.js +19 -6
- package/lib/core/base-processor.js.map +1 -1
- package/lib/core/context.d.ts +3 -2
- package/lib/core/context.js +5 -3
- package/lib/core/context.js.map +1 -1
- package/lib/core/eth-plugin.js +12 -30
- package/lib/core/eth-plugin.js.map +1 -1
- package/lib/core/exporter.d.ts +1 -1
- package/lib/core/logger.d.ts +1 -1
- package/lib/core/metadata.d.ts +1 -1
- package/lib/core/numberish.d.ts +1 -1
- package/lib/core/sui-processor.d.ts +1 -1
- package/lib/promise-or-void.d.ts +1 -1
- package/lib/testing/test-processor-server.js +6 -3
- package/lib/testing/test-processor-server.js.map +1 -1
- package/package.json +4 -4
- package/src/core/account-processor.ts +3 -3
- package/src/core/base-processor.ts +30 -10
- package/src/core/context.ts +6 -3
- package/src/core/eth-plugin.ts +24 -32
- package/src/testing/test-processor-server.ts +6 -3
|
@@ -107,7 +107,10 @@ export class TestProcessorServer implements ProcessorServiceImplementation {
|
|
|
107
107
|
if (config.signature == signature) {
|
|
108
108
|
return {
|
|
109
109
|
data: {
|
|
110
|
-
ethTrace: {
|
|
110
|
+
ethTrace: {
|
|
111
|
+
trace,
|
|
112
|
+
timestamp: new Date(),
|
|
113
|
+
},
|
|
111
114
|
},
|
|
112
115
|
handlerIds: [config.handlerId],
|
|
113
116
|
handlerType: HandlerType.ETH_TRACE,
|
|
@@ -168,7 +171,7 @@ export class TestProcessorServer implements ProcessorServiceImplementation {
|
|
|
168
171
|
if (match) {
|
|
169
172
|
return {
|
|
170
173
|
data: {
|
|
171
|
-
ethLog: { log },
|
|
174
|
+
ethLog: { log, timestamp: new Date() },
|
|
172
175
|
},
|
|
173
176
|
handlerIds: [config.handlerId],
|
|
174
177
|
handlerType: HandlerType.ETH_LOG,
|
|
@@ -229,7 +232,7 @@ export class TestProcessorServer implements ProcessorServiceImplementation {
|
|
|
229
232
|
if (match) {
|
|
230
233
|
return {
|
|
231
234
|
data: {
|
|
232
|
-
ethLog: { log },
|
|
235
|
+
ethLog: { log, timestamp: new Date() },
|
|
233
236
|
},
|
|
234
237
|
handlerIds: [config.handlerId],
|
|
235
238
|
handlerType: HandlerType.ETH_LOG,
|