@sentio/sdk-bundle 3.0.0-rc.3 → 3.0.0-rc.5

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.
@@ -106,7 +106,7 @@ import {
106
106
  version,
107
107
  vesting,
108
108
  voting
109
- } from "../../chunk-WBLV5OOV.js";
109
+ } from "../../chunk-RRIGEXFE.js";
110
110
  import "../../chunk-JDTHJKBB.js";
111
111
  import "../../chunk-742S42NO.js";
112
112
  import "../../chunk-7IDGS56O.js";
@@ -6,8 +6,8 @@ import {
6
6
  token_coin_swap,
7
7
  token_event_store,
8
8
  token_transfers
9
- } from "../../chunk-EBUTPBE7.js";
10
- import "../../chunk-WBLV5OOV.js";
9
+ } from "../../chunk-3VCIP6SA.js";
10
+ import "../../chunk-RRIGEXFE.js";
11
11
  import "../../chunk-JDTHJKBB.js";
12
12
  import "../../chunk-742S42NO.js";
13
13
  import "../../chunk-7IDGS56O.js";
@@ -6,8 +6,8 @@ import {
6
6
  property_map,
7
7
  royalty,
8
8
  token
9
- } from "../../chunk-U3E5ZH2Z.js";
10
- import "../../chunk-WBLV5OOV.js";
9
+ } from "../../chunk-NRHAQ5TN.js";
10
+ import "../../chunk-RRIGEXFE.js";
11
11
  import "../../chunk-JDTHJKBB.js";
12
12
  import "../../chunk-742S42NO.js";
13
13
  import "../../chunk-7IDGS56O.js";
@@ -1,13 +1,13 @@
1
1
  import { createRequire as createRequireSdkShim } from 'module'; const require = createRequireSdkShim(import.meta.url);
2
2
  import {
3
3
  x3_exports
4
- } from "../../chunk-EBUTPBE7.js";
4
+ } from "../../chunk-3VCIP6SA.js";
5
5
  import {
6
6
  x4_exports
7
- } from "../../chunk-U3E5ZH2Z.js";
7
+ } from "../../chunk-NRHAQ5TN.js";
8
8
  import {
9
9
  x1_exports
10
- } from "../../chunk-WBLV5OOV.js";
10
+ } from "../../chunk-RRIGEXFE.js";
11
11
  import "../../chunk-JDTHJKBB.js";
12
12
  import "../../chunk-742S42NO.js";
13
13
  import "../../chunk-7IDGS56O.js";
@@ -11,7 +11,7 @@ import {
11
11
  isWhiteListToken,
12
12
  tokenTokenValueInUsd,
13
13
  whitelistTokens
14
- } from "../../chunk-WBLV5OOV.js";
14
+ } from "../../chunk-RRIGEXFE.js";
15
15
  import "../../chunk-JDTHJKBB.js";
16
16
  import "../../chunk-742S42NO.js";
17
17
  import "../../chunk-7IDGS56O.js";
@@ -18,7 +18,7 @@ import {
18
18
  RichAptosClientWithContext,
19
19
  defaultMoveCoder,
20
20
  defaultMoveCoderForClient
21
- } from "../chunk-WBLV5OOV.js";
21
+ } from "../chunk-RRIGEXFE.js";
22
22
  import "../chunk-JDTHJKBB.js";
23
23
  import "../chunk-742S42NO.js";
24
24
  import "../chunk-7IDGS56O.js";
@@ -5,7 +5,7 @@ import {
5
5
  defaultMoveCoder,
6
6
  defaultMoveCoderForClient,
7
7
  loadAllTypes
8
- } from "./chunk-WBLV5OOV.js";
8
+ } from "./chunk-RRIGEXFE.js";
9
9
  import {
10
10
  ANY_TYPE,
11
11
  TypeDescriptor
@@ -1794,4 +1794,4 @@ export {
1794
1794
  loadAllTypes2 as loadAllTypes,
1795
1795
  x3_exports
1796
1796
  };
1797
- //# sourceMappingURL=chunk-EBUTPBE7.js.map
1797
+ //# sourceMappingURL=chunk-3VCIP6SA.js.map
@@ -5,7 +5,7 @@ import {
5
5
  defaultMoveCoder,
6
6
  defaultMoveCoderForClient,
7
7
  loadAllTypes
8
- } from "./chunk-WBLV5OOV.js";
8
+ } from "./chunk-RRIGEXFE.js";
9
9
  import {
10
10
  TypeDescriptor
11
11
  } from "./chunk-V4L4R52Y.js";
@@ -1402,4 +1402,4 @@ export {
1402
1402
  loadAllTypes2 as loadAllTypes,
1403
1403
  x4_exports
1404
1404
  };
1405
- //# sourceMappingURL=chunk-U3E5ZH2Z.js.map
1405
+ //# sourceMappingURL=chunk-NRHAQ5TN.js.map
@@ -24315,6 +24315,25 @@ var AptosPlugin = class extends Plugin {
24315
24315
  };
24316
24316
  contractConfig.moveCallConfigs.push(functionHandlerConfig);
24317
24317
  }
24318
+ for (const handler of aptosProcessor.transactionIntervalHandlers) {
24319
+ const handlerId = this.handlerRegister.register(handler.handler, chainId);
24320
+ this.partitionManager.registerPartitionHandler(HandlerType.APT_CALL, handlerId, handler.partitionHandler);
24321
+ contractConfig.moveIntervalConfigs.push({
24322
+ intervalConfig: {
24323
+ handlerId,
24324
+ handlerName: handler.handlerName,
24325
+ minutes: 0,
24326
+ minutesInterval: handler.timeIntervalInMinutes,
24327
+ slot: 0,
24328
+ slotInterval: handler.versionInterval,
24329
+ fetchConfig: void 0
24330
+ },
24331
+ ownerType: MoveOwnerType.ADDRESS,
24332
+ fetchConfig: handler.fetchConfig,
24333
+ resourceFetchConfig: void 0,
24334
+ type: ""
24335
+ });
24336
+ }
24318
24337
  config.contractConfigs.push(contractConfig);
24319
24338
  }
24320
24339
  for (const aptosProcessor of AptosProcessorState.INSTANCE.getValues()) {
@@ -24338,25 +24357,6 @@ var AptosPlugin = class extends Plugin {
24338
24357
  includeDeleted: false
24339
24358
  });
24340
24359
  }
24341
- for (const handler of aptosProcessor.transactionIntervalHandlers) {
24342
- const handlerId = this.handlerRegister.register(handler.handler, chainId);
24343
- this.partitionManager.registerPartitionHandler(HandlerType.APT_CALL, handlerId, handler.partitionHandler);
24344
- accountConfig.moveIntervalConfigs.push({
24345
- intervalConfig: {
24346
- handlerId,
24347
- handlerName: handler.handlerName,
24348
- minutes: 0,
24349
- minutesInterval: handler.timeIntervalInMinutes,
24350
- slot: 0,
24351
- slotInterval: handler.versionInterval,
24352
- fetchConfig: void 0
24353
- },
24354
- ownerType: MoveOwnerType.ADDRESS,
24355
- fetchConfig: handler.fetchConfig,
24356
- resourceFetchConfig: void 0,
24357
- type: ""
24358
- });
24359
- }
24360
24360
  config.accountConfigs.push(accountConfig);
24361
24361
  }
24362
24362
  for (const aptosProcessor of AptosResourceProcessorState.INSTANCE.getValues()) {
@@ -40724,4 +40724,4 @@ export {
40724
40724
  @scure/bip32/lib/esm/index.js:
40725
40725
  (*! scure-bip32 - MIT License (c) 2022 Patricio Palladino, Paul Miller (paulmillr.com) *)
40726
40726
  */
40727
- //# sourceMappingURL=chunk-WBLV5OOV.js.map
40727
+ //# sourceMappingURL=chunk-RRIGEXFE.js.map