@sentio/sdk 2.57.9-rc.1 → 2.57.9-rc.11

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.
Files changed (94) hide show
  1. package/lib/aptos/aptos-plugin.d.ts.map +1 -1
  2. package/lib/aptos/aptos-plugin.js +4 -2
  3. package/lib/aptos/aptos-plugin.js.map +1 -1
  4. package/lib/aptos/aptos-processor.d.ts +8 -2
  5. package/lib/aptos/aptos-processor.d.ts.map +1 -1
  6. package/lib/aptos/aptos-processor.js +11 -4
  7. package/lib/aptos/aptos-processor.js.map +1 -1
  8. package/lib/aptos/builtin/0x1.d.ts +155 -155
  9. package/lib/aptos/builtin/0x1.d.ts.map +1 -1
  10. package/lib/aptos/builtin/0x1.js +395 -308
  11. package/lib/aptos/builtin/0x1.js.map +1 -1
  12. package/lib/aptos/builtin/0x3.d.ts +52 -52
  13. package/lib/aptos/builtin/0x3.d.ts.map +1 -1
  14. package/lib/aptos/builtin/0x3.js +135 -102
  15. package/lib/aptos/builtin/0x3.js.map +1 -1
  16. package/lib/aptos/builtin/0x4.d.ts +12 -12
  17. package/lib/aptos/builtin/0x4.d.ts.map +1 -1
  18. package/lib/aptos/builtin/0x4.js +22 -22
  19. package/lib/aptos/builtin/0x4.js.map +1 -1
  20. package/lib/core/normalization.d.ts.map +1 -1
  21. package/lib/core/normalization.js +69 -3
  22. package/lib/core/normalization.js.map +1 -1
  23. package/lib/core/normalization.test.js.map +1 -1
  24. package/lib/eth/abi-decoder/decode-worker.d.ts +27 -0
  25. package/lib/eth/abi-decoder/decode-worker.d.ts.map +1 -0
  26. package/lib/eth/abi-decoder/decode-worker.js +63 -0
  27. package/lib/eth/abi-decoder/decode-worker.js.map +1 -0
  28. package/lib/eth/abi-decoder/index.d.ts +4 -0
  29. package/lib/eth/abi-decoder/index.d.ts.map +1 -0
  30. package/lib/eth/abi-decoder/index.js +134 -0
  31. package/lib/eth/abi-decoder/index.js.map +1 -0
  32. package/lib/eth/base-processor.d.ts.map +1 -1
  33. package/lib/eth/base-processor.js +7 -7
  34. package/lib/eth/base-processor.js.map +1 -1
  35. package/lib/move/filter.d.ts +1 -0
  36. package/lib/move/filter.d.ts.map +1 -1
  37. package/lib/move/filter.js.map +1 -1
  38. package/lib/move/shared-network-codegen.js +3 -3
  39. package/lib/move/shared-network-codegen.js.map +1 -1
  40. package/lib/store/codegen.js +1 -1
  41. package/lib/store/codegen.js.map +1 -1
  42. package/lib/store/convert.d.ts +1 -0
  43. package/lib/store/convert.d.ts.map +1 -1
  44. package/lib/store/convert.js +16 -0
  45. package/lib/store/convert.js.map +1 -1
  46. package/lib/store/decorators.d.ts +1 -0
  47. package/lib/store/decorators.d.ts.map +1 -1
  48. package/lib/store/decorators.js +2 -1
  49. package/lib/store/decorators.js.map +1 -1
  50. package/lib/store/schema.js +1 -1
  51. package/lib/store/schema.js.map +1 -1
  52. package/lib/store/types.d.ts +1 -0
  53. package/lib/store/types.d.ts.map +1 -1
  54. package/lib/store/types.js +3 -0
  55. package/lib/store/types.js.map +1 -1
  56. package/lib/sui/builtin/0x1.d.ts +7 -7
  57. package/lib/sui/builtin/0x1.d.ts.map +1 -1
  58. package/lib/sui/builtin/0x1.js +12 -12
  59. package/lib/sui/builtin/0x1.js.map +1 -1
  60. package/lib/sui/builtin/0x2.d.ts +34 -34
  61. package/lib/sui/builtin/0x2.d.ts.map +1 -1
  62. package/lib/sui/builtin/0x2.js +72 -66
  63. package/lib/sui/builtin/0x2.js.map +1 -1
  64. package/lib/sui/builtin/0x3.d.ts +14 -14
  65. package/lib/sui/builtin/0x3.d.ts.map +1 -1
  66. package/lib/sui/builtin/0x3.js +44 -26
  67. package/lib/sui/builtin/0x3.js.map +1 -1
  68. package/lib/sui/sui-plugin.d.ts.map +1 -1
  69. package/lib/sui/sui-plugin.js +2 -1
  70. package/lib/sui/sui-plugin.js.map +1 -1
  71. package/lib/tsup.config.ts +1 -1
  72. package/package.json +5 -3
  73. package/src/aptos/aptos-plugin.ts +4 -2
  74. package/src/aptos/aptos-processor.ts +18 -4
  75. package/src/aptos/builtin/0x1.ts +644 -155
  76. package/src/aptos/builtin/0x3.ts +208 -52
  77. package/src/aptos/builtin/0x4.ts +59 -12
  78. package/src/bundle.config.ts +1 -1
  79. package/src/core/normalization.ts +69 -4
  80. package/src/eth/abi-decoder/decode-worker.ts +85 -0
  81. package/src/eth/abi-decoder/index.ts +133 -0
  82. package/src/eth/base-processor.ts +19 -20
  83. package/src/move/filter.ts +1 -0
  84. package/src/move/shared-network-codegen.ts +3 -3
  85. package/src/store/codegen.ts +1 -1
  86. package/src/store/convert.ts +17 -0
  87. package/src/store/decorators.ts +2 -0
  88. package/src/store/schema.ts +1 -1
  89. package/src/store/types.ts +4 -0
  90. package/src/sui/builtin/0x1.ts +33 -7
  91. package/src/sui/builtin/0x2.ts +177 -34
  92. package/src/sui/builtin/0x3.ts +45 -14
  93. package/src/sui/sui-plugin.ts +2 -1
  94. package/src/tsup.config.ts +1 -1
@@ -3,7 +3,7 @@ import { MoveCoder, TypedEventInstance } from "@typemove/sui";
3
3
  import { TypedDevInspectResults } from "@typemove/sui";
4
4
  import { Transaction, TransactionArgument, TransactionObjectArgument } from "@mysten/sui/transactions";
5
5
  import { SuiClient } from "@mysten/sui/client";
6
- import { CallFilter, MoveFetchConfig } from "@sentio/sdk/move";
6
+ import { CallFilter, MoveFetchConfig, EventFilter } from "@sentio/sdk/move";
7
7
  import { SuiBindOptions, SuiBaseProcessor, TypedFunctionPayload, SuiContext } from "@sentio/sdk/sui";
8
8
  import * as _0x1 from "./0x1.js";
9
9
  export declare namespace address {
@@ -34,9 +34,9 @@ export declare class authenticator_state extends SuiBaseProcessor {
34
34
  constructor(options: SuiBindOptions);
35
35
  static DEFAULT_OPTIONS: SuiBindOptions;
36
36
  static bind(options?: Partial<SuiBindOptions>): authenticator_state;
37
- onEventActiveJwk(func: (event: authenticator_state.ActiveJwkInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): authenticator_state;
38
- onEventJWK(func: (event: authenticator_state.JWKInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): authenticator_state;
39
- onEventJwkId(func: (event: authenticator_state.JwkIdInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): authenticator_state;
37
+ onEventActiveJwk(func: (event: authenticator_state.ActiveJwkInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): authenticator_state;
38
+ onEventJWK(func: (event: authenticator_state.JWKInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): authenticator_state;
39
+ onEventJwkId(func: (event: authenticator_state.JwkIdInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): authenticator_state;
40
40
  }
41
41
  export declare namespace authenticator_state {
42
42
  interface ActiveJwk {
@@ -210,7 +210,7 @@ export declare class bcs extends SuiBaseProcessor {
210
210
  constructor(options: SuiBindOptions);
211
211
  static DEFAULT_OPTIONS: SuiBindOptions;
212
212
  static bind(options?: Partial<SuiBindOptions>): bcs;
213
- onEventBCS(func: (event: bcs.BCSInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): bcs;
213
+ onEventBCS(func: (event: bcs.BCSInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): bcs;
214
214
  }
215
215
  export declare namespace bcs {
216
216
  interface BCS {
@@ -552,7 +552,7 @@ export declare class coin extends SuiBaseProcessor {
552
552
  onEntryUpdateIconUrl(func: (call: coin.UpdateIconUrlPayload, ctx: SuiContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
553
553
  onEntryUpdateName(func: (call: coin.UpdateNamePayload, ctx: SuiContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
554
554
  onEntryUpdateSymbol(func: (call: coin.UpdateSymbolPayload, ctx: SuiContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
555
- onEventCurrencyCreated(func: (event: coin.CurrencyCreatedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
555
+ onEventCurrencyCreated(func: (event: coin.CurrencyCreatedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): coin;
556
556
  }
557
557
  export declare namespace coin {
558
558
  type Coin<T> = string;
@@ -1070,10 +1070,10 @@ export declare class deny_list extends SuiBaseProcessor {
1070
1070
  constructor(options: SuiBindOptions);
1071
1071
  static DEFAULT_OPTIONS: SuiBindOptions;
1072
1072
  static bind(options?: Partial<SuiBindOptions>): deny_list;
1073
- onEventAddressKey(func: (event: deny_list.AddressKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): deny_list;
1074
- onEventConfigKey(func: (event: deny_list.ConfigKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): deny_list;
1075
- onEventGlobalPauseKey(func: (event: deny_list.GlobalPauseKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): deny_list;
1076
- onEventPerTypeConfigCreated(func: (event: deny_list.PerTypeConfigCreatedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): deny_list;
1073
+ onEventAddressKey(func: (event: deny_list.AddressKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): deny_list;
1074
+ onEventConfigKey(func: (event: deny_list.ConfigKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): deny_list;
1075
+ onEventGlobalPauseKey(func: (event: deny_list.GlobalPauseKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): deny_list;
1076
+ onEventPerTypeConfigCreated(func: (event: deny_list.PerTypeConfigCreatedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): deny_list;
1077
1077
  }
1078
1078
  export declare namespace deny_list {
1079
1079
  interface AddressKey {
@@ -1295,8 +1295,8 @@ export declare class display extends SuiBaseProcessor {
1295
1295
  onEntryEdit(func: (call: display.EditPayload, ctx: SuiContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): display;
1296
1296
  onEntryRemove(func: (call: display.RemovePayload, ctx: SuiContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): display;
1297
1297
  onEntryUpdateVersion(func: (call: display.UpdateVersionPayload, ctx: SuiContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): display;
1298
- onEventDisplayCreated(func: (event: display.DisplayCreatedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): display;
1299
- onEventVersionUpdated(func: (event: display.VersionUpdatedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): display;
1298
+ onEventDisplayCreated(func: (event: display.DisplayCreatedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): display;
1299
+ onEventVersionUpdated(func: (event: display.VersionUpdatedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): display;
1300
1300
  }
1301
1301
  export declare namespace display {
1302
1302
  interface Display<T0> {
@@ -1507,7 +1507,7 @@ export declare class dynamic_object_field extends SuiBaseProcessor {
1507
1507
  constructor(options: SuiBindOptions);
1508
1508
  static DEFAULT_OPTIONS: SuiBindOptions;
1509
1509
  static bind(options?: Partial<SuiBindOptions>): dynamic_object_field;
1510
- onEventWrapper(func: (event: dynamic_object_field.WrapperInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): dynamic_object_field;
1510
+ onEventWrapper(func: (event: dynamic_object_field.WrapperInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): dynamic_object_field;
1511
1511
  }
1512
1512
  export declare namespace dynamic_object_field {
1513
1513
  interface Wrapper<T0> {
@@ -1700,10 +1700,10 @@ export declare class groth16 extends SuiBaseProcessor {
1700
1700
  constructor(options: SuiBindOptions);
1701
1701
  static DEFAULT_OPTIONS: SuiBindOptions;
1702
1702
  static bind(options?: Partial<SuiBindOptions>): groth16;
1703
- onEventCurve(func: (event: groth16.CurveInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): groth16;
1704
- onEventPreparedVerifyingKey(func: (event: groth16.PreparedVerifyingKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): groth16;
1705
- onEventProofPoints(func: (event: groth16.ProofPointsInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): groth16;
1706
- onEventPublicProofInputs(func: (event: groth16.PublicProofInputsInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): groth16;
1703
+ onEventCurve(func: (event: groth16.CurveInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): groth16;
1704
+ onEventPreparedVerifyingKey(func: (event: groth16.PreparedVerifyingKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): groth16;
1705
+ onEventProofPoints(func: (event: groth16.ProofPointsInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): groth16;
1706
+ onEventPublicProofInputs(func: (event: groth16.PublicProofInputsInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): groth16;
1707
1707
  }
1708
1708
  export declare namespace groth16 {
1709
1709
  interface Curve {
@@ -1801,7 +1801,7 @@ export declare class group_ops extends SuiBaseProcessor {
1801
1801
  constructor(options: SuiBindOptions);
1802
1802
  static DEFAULT_OPTIONS: SuiBindOptions;
1803
1803
  static bind(options?: Partial<SuiBindOptions>): group_ops;
1804
- onEventElement(func: (event: group_ops.ElementInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): group_ops;
1804
+ onEventElement(func: (event: group_ops.ElementInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): group_ops;
1805
1805
  }
1806
1806
  export declare namespace group_ops {
1807
1807
  interface Element<T0> {
@@ -1971,12 +1971,12 @@ export declare class kiosk extends SuiBaseProcessor {
1971
1971
  static DEFAULT_OPTIONS: SuiBindOptions;
1972
1972
  static bind(options?: Partial<SuiBindOptions>): kiosk;
1973
1973
  onEntryDefault(func: (call: kiosk.DefaultPayload, ctx: SuiContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): kiosk;
1974
- onEventItem(func: (event: kiosk.ItemInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): kiosk;
1975
- onEventItemDelisted(func: (event: kiosk.ItemDelistedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): kiosk;
1976
- onEventItemListed(func: (event: kiosk.ItemListedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): kiosk;
1977
- onEventItemPurchased(func: (event: kiosk.ItemPurchasedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): kiosk;
1978
- onEventListing(func: (event: kiosk.ListingInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): kiosk;
1979
- onEventLock(func: (event: kiosk.LockInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): kiosk;
1974
+ onEventItem(func: (event: kiosk.ItemInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): kiosk;
1975
+ onEventItemDelisted(func: (event: kiosk.ItemDelistedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): kiosk;
1976
+ onEventItemListed(func: (event: kiosk.ItemListedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): kiosk;
1977
+ onEventItemPurchased(func: (event: kiosk.ItemPurchasedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): kiosk;
1978
+ onEventListing(func: (event: kiosk.ListingInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): kiosk;
1979
+ onEventLock(func: (event: kiosk.LockInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): kiosk;
1980
1980
  }
1981
1981
  export declare namespace kiosk {
1982
1982
  interface Borrow {
@@ -2357,7 +2357,7 @@ export declare class kiosk_extension extends SuiBaseProcessor {
2357
2357
  constructor(options: SuiBindOptions);
2358
2358
  static DEFAULT_OPTIONS: SuiBindOptions;
2359
2359
  static bind(options?: Partial<SuiBindOptions>): kiosk_extension;
2360
- onEventExtensionKey(func: (event: kiosk_extension.ExtensionKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): kiosk_extension;
2360
+ onEventExtensionKey(func: (event: kiosk_extension.ExtensionKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): kiosk_extension;
2361
2361
  }
2362
2362
  export declare namespace kiosk_extension {
2363
2363
  interface Extension {
@@ -3258,8 +3258,8 @@ export declare class token extends SuiBaseProcessor {
3258
3258
  constructor(options: SuiBindOptions);
3259
3259
  static DEFAULT_OPTIONS: SuiBindOptions;
3260
3260
  static bind(options?: Partial<SuiBindOptions>): token;
3261
- onEventRuleKey(func: (event: token.RuleKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): token;
3262
- onEventTokenPolicyCreated(func: (event: token.TokenPolicyCreatedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): token;
3261
+ onEventRuleKey(func: (event: token.RuleKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): token;
3262
+ onEventTokenPolicyCreated(func: (event: token.TokenPolicyCreatedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): token;
3263
3263
  }
3264
3264
  export declare namespace token {
3265
3265
  interface ActionRequest<T0> {
@@ -3634,9 +3634,9 @@ export declare class transfer_policy extends SuiBaseProcessor {
3634
3634
  static DEFAULT_OPTIONS: SuiBindOptions;
3635
3635
  static bind(options?: Partial<SuiBindOptions>): transfer_policy;
3636
3636
  onEntryDefault(func: (call: transfer_policy.DefaultPayload, ctx: SuiContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): transfer_policy;
3637
- onEventRuleKey(func: (event: transfer_policy.RuleKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): transfer_policy;
3638
- onEventTransferPolicyCreated(func: (event: transfer_policy.TransferPolicyCreatedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): transfer_policy;
3639
- onEventTransferPolicyDestroyed(func: (event: transfer_policy.TransferPolicyDestroyedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): transfer_policy;
3637
+ onEventRuleKey(func: (event: transfer_policy.RuleKeyInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): transfer_policy;
3638
+ onEventTransferPolicyCreated(func: (event: transfer_policy.TransferPolicyCreatedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): transfer_policy;
3639
+ onEventTransferPolicyDestroyed(func: (event: transfer_policy.TransferPolicyDestroyedInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): transfer_policy;
3640
3640
  }
3641
3641
  export declare namespace transfer_policy {
3642
3642
  interface RuleKey<T0> {
@@ -3864,7 +3864,7 @@ export declare class url extends SuiBaseProcessor {
3864
3864
  constructor(options: SuiBindOptions);
3865
3865
  static DEFAULT_OPTIONS: SuiBindOptions;
3866
3866
  static bind(options?: Partial<SuiBindOptions>): url;
3867
- onEventUrl(func: (event: url.UrlInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): url;
3867
+ onEventUrl(func: (event: url.UrlInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): url;
3868
3868
  }
3869
3869
  export declare namespace url {
3870
3870
  interface Url {
@@ -3918,8 +3918,8 @@ export declare class vec_map extends SuiBaseProcessor {
3918
3918
  constructor(options: SuiBindOptions);
3919
3919
  static DEFAULT_OPTIONS: SuiBindOptions;
3920
3920
  static bind(options?: Partial<SuiBindOptions>): vec_map;
3921
- onEventEntry(func: (event: vec_map.EntryInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vec_map;
3922
- onEventVecMap(func: (event: vec_map.VecMapInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vec_map;
3921
+ onEventEntry(func: (event: vec_map.EntryInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): vec_map;
3922
+ onEventVecMap(func: (event: vec_map.VecMapInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): vec_map;
3923
3923
  }
3924
3924
  export declare namespace vec_map {
3925
3925
  interface Entry<T0, T1> {
@@ -4033,7 +4033,7 @@ export declare class vec_set extends SuiBaseProcessor {
4033
4033
  constructor(options: SuiBindOptions);
4034
4034
  static DEFAULT_OPTIONS: SuiBindOptions;
4035
4035
  static bind(options?: Partial<SuiBindOptions>): vec_set;
4036
- onEventVecSet(func: (event: vec_set.VecSetInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vec_set;
4036
+ onEventVecSet(func: (event: vec_set.VecSetInstance, ctx: SuiContext) => void, fetchConfig?: Partial<MoveFetchConfig>, eventFilter?: Omit<EventFilter, "type" | "account">): vec_set;
4037
4037
  }
4038
4038
  export declare namespace vec_set {
4039
4039
  interface VecSet<T0> {