@sentio/sdk 2.56.0 → 2.57.0-rc.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.
Files changed (45) hide show
  1. package/lib/aptos/builtin/0x1.d.ts +308 -308
  2. package/lib/aptos/builtin/0x1.d.ts.map +1 -1
  3. package/lib/aptos/builtin/0x1.js.map +1 -1
  4. package/lib/aptos/builtin/0x3.d.ts +102 -102
  5. package/lib/aptos/builtin/0x3.d.ts.map +1 -1
  6. package/lib/aptos/builtin/0x3.js.map +1 -1
  7. package/lib/aptos/builtin/0x4.d.ts +22 -22
  8. package/lib/aptos/builtin/0x4.d.ts.map +1 -1
  9. package/lib/aptos/builtin/0x4.js.map +1 -1
  10. package/lib/fuel/asset-processor.d.ts +2 -2
  11. package/lib/fuel/asset-processor.d.ts.map +1 -1
  12. package/lib/fuel/asset-processor.js.map +1 -1
  13. package/lib/fuel/fuel-plugin.d.ts +2 -2
  14. package/lib/fuel/fuel-plugin.d.ts.map +1 -1
  15. package/lib/fuel/fuel-plugin.js +19 -18
  16. package/lib/fuel/fuel-plugin.js.map +1 -1
  17. package/lib/fuel/fuel-processor.d.ts +5 -4
  18. package/lib/fuel/fuel-processor.d.ts.map +1 -1
  19. package/lib/fuel/fuel-processor.js +38 -4
  20. package/lib/fuel/fuel-processor.js.map +1 -1
  21. package/lib/fuel/types.d.ts +10 -7
  22. package/lib/fuel/types.d.ts.map +1 -1
  23. package/lib/fuel/types.js.map +1 -1
  24. package/lib/sui/builtin/0x1.d.ts +12 -12
  25. package/lib/sui/builtin/0x1.d.ts.map +1 -1
  26. package/lib/sui/builtin/0x1.js.map +1 -1
  27. package/lib/sui/builtin/0x2.d.ts +66 -66
  28. package/lib/sui/builtin/0x2.d.ts.map +1 -1
  29. package/lib/sui/builtin/0x2.js.map +1 -1
  30. package/lib/sui/builtin/0x3.d.ts +26 -26
  31. package/lib/sui/builtin/0x3.d.ts.map +1 -1
  32. package/lib/testing/fuel-facet.js +3 -3
  33. package/lib/testing/fuel-facet.js.map +1 -1
  34. package/package.json +8 -8
  35. package/src/aptos/builtin/0x1.ts +539 -579
  36. package/src/aptos/builtin/0x3.ts +177 -191
  37. package/src/aptos/builtin/0x4.ts +28 -31
  38. package/src/fuel/asset-processor.ts +5 -2
  39. package/src/fuel/fuel-plugin.ts +22 -19
  40. package/src/fuel/fuel-processor.ts +54 -7
  41. package/src/fuel/types.ts +11 -6
  42. package/src/sui/builtin/0x1.ts +12 -13
  43. package/src/sui/builtin/0x2.ts +87 -86
  44. package/src/sui/builtin/0x3.ts +65 -65
  45. package/src/testing/fuel-facet.ts +3 -3
@@ -48,10 +48,10 @@ export declare namespace authenticator_state {
48
48
  const TYPE_QNAME = "0x2::authenticator_state::ActiveJwk";
49
49
  function type(): TypeDescriptor<ActiveJwk>;
50
50
  }
51
- interface ActiveJwkInstance extends TypedEventInstance<ActiveJwk> {
51
+ type ActiveJwkInstance = TypedEventInstance<ActiveJwk> & {
52
52
  data_decoded: ActiveJwk;
53
53
  type_arguments: [];
54
- }
54
+ };
55
55
  interface AuthenticatorState {
56
56
  id: object$.UID;
57
57
  version: bigint;
@@ -78,10 +78,10 @@ export declare namespace authenticator_state {
78
78
  const TYPE_QNAME = "0x2::authenticator_state::JWK";
79
79
  function type(): TypeDescriptor<JWK>;
80
80
  }
81
- interface JWKInstance extends TypedEventInstance<JWK> {
81
+ type JWKInstance = TypedEventInstance<JWK> & {
82
82
  data_decoded: JWK;
83
83
  type_arguments: [];
84
- }
84
+ };
85
85
  interface JwkId {
86
86
  iss: string;
87
87
  kid: string;
@@ -90,10 +90,10 @@ export declare namespace authenticator_state {
90
90
  const TYPE_QNAME = "0x2::authenticator_state::JwkId";
91
91
  function type(): TypeDescriptor<JwkId>;
92
92
  }
93
- interface JwkIdInstance extends TypedEventInstance<JwkId> {
93
+ type JwkIdInstance = TypedEventInstance<JwkId> & {
94
94
  data_decoded: JwkId;
95
95
  type_arguments: [];
96
- }
96
+ };
97
97
  namespace builder { }
98
98
  namespace view { }
99
99
  }
@@ -220,10 +220,10 @@ export declare namespace bcs {
220
220
  const TYPE_QNAME = "0x2::bcs::BCS";
221
221
  function type(): TypeDescriptor<BCS>;
222
222
  }
223
- interface BCSInstance extends TypedEventInstance<BCS> {
223
+ type BCSInstance = TypedEventInstance<BCS> & {
224
224
  data_decoded: BCS;
225
225
  type_arguments: [];
226
- }
226
+ };
227
227
  namespace builder {
228
228
  function intoRemainderBytes(tx: Transaction, args: [bcs.BCS | TransactionArgument]): TransactionArgument & [TransactionArgument];
229
229
  function new$(tx: Transaction, args: [(string | TransactionObjectArgument)[] | TransactionArgument]): TransactionArgument & [TransactionArgument];
@@ -579,10 +579,10 @@ export declare namespace coin {
579
579
  const TYPE_QNAME = "0x2::coin::CurrencyCreated";
580
580
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<CurrencyCreated<T0>>;
581
581
  }
582
- interface CurrencyCreatedInstance extends TypedEventInstance<CurrencyCreated<any>> {
582
+ type CurrencyCreatedInstance = TypedEventInstance<CurrencyCreated<any>> & {
583
583
  data_decoded: CurrencyCreated<any>;
584
584
  type_arguments: [string];
585
- }
585
+ };
586
586
  interface DenyCap<T0> {
587
587
  id: object$.UID;
588
588
  }
@@ -1083,10 +1083,10 @@ export declare namespace deny_list {
1083
1083
  const TYPE_QNAME = "0x2::deny_list::AddressKey";
1084
1084
  function type(): TypeDescriptor<AddressKey>;
1085
1085
  }
1086
- interface AddressKeyInstance extends TypedEventInstance<AddressKey> {
1086
+ type AddressKeyInstance = TypedEventInstance<AddressKey> & {
1087
1087
  data_decoded: AddressKey;
1088
1088
  type_arguments: [];
1089
- }
1089
+ };
1090
1090
  interface ConfigKey {
1091
1091
  per_type_index: bigint;
1092
1092
  per_type_key: number[];
@@ -1095,10 +1095,10 @@ export declare namespace deny_list {
1095
1095
  const TYPE_QNAME = "0x2::deny_list::ConfigKey";
1096
1096
  function type(): TypeDescriptor<ConfigKey>;
1097
1097
  }
1098
- interface ConfigKeyInstance extends TypedEventInstance<ConfigKey> {
1098
+ type ConfigKeyInstance = TypedEventInstance<ConfigKey> & {
1099
1099
  data_decoded: ConfigKey;
1100
1100
  type_arguments: [];
1101
- }
1101
+ };
1102
1102
  interface ConfigWriteCap {
1103
1103
  dummy_field: boolean;
1104
1104
  }
@@ -1121,10 +1121,10 @@ export declare namespace deny_list {
1121
1121
  const TYPE_QNAME = "0x2::deny_list::GlobalPauseKey";
1122
1122
  function type(): TypeDescriptor<GlobalPauseKey>;
1123
1123
  }
1124
- interface GlobalPauseKeyInstance extends TypedEventInstance<GlobalPauseKey> {
1124
+ type GlobalPauseKeyInstance = TypedEventInstance<GlobalPauseKey> & {
1125
1125
  data_decoded: GlobalPauseKey;
1126
1126
  type_arguments: [];
1127
- }
1127
+ };
1128
1128
  interface PerTypeConfigCreated {
1129
1129
  key: deny_list.ConfigKey;
1130
1130
  config_id: object$.ID;
@@ -1133,10 +1133,10 @@ export declare namespace deny_list {
1133
1133
  const TYPE_QNAME = "0x2::deny_list::PerTypeConfigCreated";
1134
1134
  function type(): TypeDescriptor<PerTypeConfigCreated>;
1135
1135
  }
1136
- interface PerTypeConfigCreatedInstance extends TypedEventInstance<PerTypeConfigCreated> {
1136
+ type PerTypeConfigCreatedInstance = TypedEventInstance<PerTypeConfigCreated> & {
1137
1137
  data_decoded: PerTypeConfigCreated;
1138
1138
  type_arguments: [];
1139
- }
1139
+ };
1140
1140
  interface PerTypeList {
1141
1141
  id: object$.UID;
1142
1142
  denied_count: table.Table<string, bigint>;
@@ -1315,10 +1315,10 @@ export declare namespace display {
1315
1315
  const TYPE_QNAME = "0x2::display::DisplayCreated";
1316
1316
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<DisplayCreated<T0>>;
1317
1317
  }
1318
- interface DisplayCreatedInstance extends TypedEventInstance<DisplayCreated<any>> {
1318
+ type DisplayCreatedInstance = TypedEventInstance<DisplayCreated<any>> & {
1319
1319
  data_decoded: DisplayCreated<any>;
1320
1320
  type_arguments: [string];
1321
- }
1321
+ };
1322
1322
  interface VersionUpdated<T0> {
1323
1323
  id: object$.ID;
1324
1324
  version: number;
@@ -1328,10 +1328,10 @@ export declare namespace display {
1328
1328
  const TYPE_QNAME = "0x2::display::VersionUpdated";
1329
1329
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<VersionUpdated<T0>>;
1330
1330
  }
1331
- interface VersionUpdatedInstance extends TypedEventInstance<VersionUpdated<any>> {
1331
+ type VersionUpdatedInstance = TypedEventInstance<VersionUpdated<any>> & {
1332
1332
  data_decoded: VersionUpdated<any>;
1333
1333
  type_arguments: [string];
1334
- }
1334
+ };
1335
1335
  namespace builder {
1336
1336
  function add<T0 = any>(tx: Transaction, args: [
1337
1337
  string | TransactionObjectArgument | TransactionArgument,
@@ -1517,10 +1517,10 @@ export declare namespace dynamic_object_field {
1517
1517
  const TYPE_QNAME = "0x2::dynamic_object_field::Wrapper";
1518
1518
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Wrapper<T0>>;
1519
1519
  }
1520
- interface WrapperInstance extends TypedEventInstance<Wrapper<any>> {
1520
+ type WrapperInstance = TypedEventInstance<Wrapper<any>> & {
1521
1521
  data_decoded: Wrapper<any>;
1522
1522
  type_arguments: [string];
1523
- }
1523
+ };
1524
1524
  namespace builder {
1525
1525
  function add<T0 = any, T1 = any>(tx: Transaction, args: [
1526
1526
  string | TransactionObjectArgument | TransactionArgument,
@@ -1713,10 +1713,10 @@ export declare namespace groth16 {
1713
1713
  const TYPE_QNAME = "0x2::groth16::Curve";
1714
1714
  function type(): TypeDescriptor<Curve>;
1715
1715
  }
1716
- interface CurveInstance extends TypedEventInstance<Curve> {
1716
+ type CurveInstance = TypedEventInstance<Curve> & {
1717
1717
  data_decoded: Curve;
1718
1718
  type_arguments: [];
1719
- }
1719
+ };
1720
1720
  interface PreparedVerifyingKey {
1721
1721
  vk_gamma_abc_g1_bytes: number[];
1722
1722
  alpha_g1_beta_g2_bytes: number[];
@@ -1727,10 +1727,10 @@ export declare namespace groth16 {
1727
1727
  const TYPE_QNAME = "0x2::groth16::PreparedVerifyingKey";
1728
1728
  function type(): TypeDescriptor<PreparedVerifyingKey>;
1729
1729
  }
1730
- interface PreparedVerifyingKeyInstance extends TypedEventInstance<PreparedVerifyingKey> {
1730
+ type PreparedVerifyingKeyInstance = TypedEventInstance<PreparedVerifyingKey> & {
1731
1731
  data_decoded: PreparedVerifyingKey;
1732
1732
  type_arguments: [];
1733
- }
1733
+ };
1734
1734
  interface ProofPoints {
1735
1735
  bytes: number[];
1736
1736
  }
@@ -1738,10 +1738,10 @@ export declare namespace groth16 {
1738
1738
  const TYPE_QNAME = "0x2::groth16::ProofPoints";
1739
1739
  function type(): TypeDescriptor<ProofPoints>;
1740
1740
  }
1741
- interface ProofPointsInstance extends TypedEventInstance<ProofPoints> {
1741
+ type ProofPointsInstance = TypedEventInstance<ProofPoints> & {
1742
1742
  data_decoded: ProofPoints;
1743
1743
  type_arguments: [];
1744
- }
1744
+ };
1745
1745
  interface PublicProofInputs {
1746
1746
  bytes: number[];
1747
1747
  }
@@ -1749,10 +1749,10 @@ export declare namespace groth16 {
1749
1749
  const TYPE_QNAME = "0x2::groth16::PublicProofInputs";
1750
1750
  function type(): TypeDescriptor<PublicProofInputs>;
1751
1751
  }
1752
- interface PublicProofInputsInstance extends TypedEventInstance<PublicProofInputs> {
1752
+ type PublicProofInputsInstance = TypedEventInstance<PublicProofInputs> & {
1753
1753
  data_decoded: PublicProofInputs;
1754
1754
  type_arguments: [];
1755
- }
1755
+ };
1756
1756
  namespace builder {
1757
1757
  function bls12381(tx: Transaction, args: []): TransactionArgument & [];
1758
1758
  function bn254(tx: Transaction, args: []): TransactionArgument & [];
@@ -1811,10 +1811,10 @@ export declare namespace group_ops {
1811
1811
  const TYPE_QNAME = "0x2::group_ops::Element";
1812
1812
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Element<T0>>;
1813
1813
  }
1814
- interface ElementInstance extends TypedEventInstance<Element<any>> {
1814
+ type ElementInstance = TypedEventInstance<Element<any>> & {
1815
1815
  data_decoded: Element<any>;
1816
1816
  type_arguments: [string];
1817
- }
1817
+ };
1818
1818
  namespace builder {
1819
1819
  function add<T0 = any>(tx: Transaction, args: [
1820
1820
  number | TransactionArgument,
@@ -1994,10 +1994,10 @@ export declare namespace kiosk {
1994
1994
  const TYPE_QNAME = "0x2::kiosk::Item";
1995
1995
  function type(): TypeDescriptor<Item>;
1996
1996
  }
1997
- interface ItemInstance extends TypedEventInstance<Item> {
1997
+ type ItemInstance = TypedEventInstance<Item> & {
1998
1998
  data_decoded: Item;
1999
1999
  type_arguments: [];
2000
- }
2000
+ };
2001
2001
  interface ItemDelisted<T0> {
2002
2002
  kiosk: object$.ID;
2003
2003
  id: object$.ID;
@@ -2006,10 +2006,10 @@ export declare namespace kiosk {
2006
2006
  const TYPE_QNAME = "0x2::kiosk::ItemDelisted";
2007
2007
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<ItemDelisted<T0>>;
2008
2008
  }
2009
- interface ItemDelistedInstance extends TypedEventInstance<ItemDelisted<any>> {
2009
+ type ItemDelistedInstance = TypedEventInstance<ItemDelisted<any>> & {
2010
2010
  data_decoded: ItemDelisted<any>;
2011
2011
  type_arguments: [string];
2012
- }
2012
+ };
2013
2013
  interface ItemListed<T0> {
2014
2014
  kiosk: object$.ID;
2015
2015
  id: object$.ID;
@@ -2019,10 +2019,10 @@ export declare namespace kiosk {
2019
2019
  const TYPE_QNAME = "0x2::kiosk::ItemListed";
2020
2020
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<ItemListed<T0>>;
2021
2021
  }
2022
- interface ItemListedInstance extends TypedEventInstance<ItemListed<any>> {
2022
+ type ItemListedInstance = TypedEventInstance<ItemListed<any>> & {
2023
2023
  data_decoded: ItemListed<any>;
2024
2024
  type_arguments: [string];
2025
- }
2025
+ };
2026
2026
  interface ItemPurchased<T0> {
2027
2027
  kiosk: object$.ID;
2028
2028
  id: object$.ID;
@@ -2032,10 +2032,10 @@ export declare namespace kiosk {
2032
2032
  const TYPE_QNAME = "0x2::kiosk::ItemPurchased";
2033
2033
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<ItemPurchased<T0>>;
2034
2034
  }
2035
- interface ItemPurchasedInstance extends TypedEventInstance<ItemPurchased<any>> {
2035
+ type ItemPurchasedInstance = TypedEventInstance<ItemPurchased<any>> & {
2036
2036
  data_decoded: ItemPurchased<any>;
2037
2037
  type_arguments: [string];
2038
- }
2038
+ };
2039
2039
  interface Kiosk {
2040
2040
  id: object$.UID;
2041
2041
  profits: balance.Balance<sui.SUI>;
@@ -2063,10 +2063,10 @@ export declare namespace kiosk {
2063
2063
  const TYPE_QNAME = "0x2::kiosk::Listing";
2064
2064
  function type(): TypeDescriptor<Listing>;
2065
2065
  }
2066
- interface ListingInstance extends TypedEventInstance<Listing> {
2066
+ type ListingInstance = TypedEventInstance<Listing> & {
2067
2067
  data_decoded: Listing;
2068
2068
  type_arguments: [];
2069
- }
2069
+ };
2070
2070
  interface Lock {
2071
2071
  id: object$.ID;
2072
2072
  }
@@ -2074,10 +2074,10 @@ export declare namespace kiosk {
2074
2074
  const TYPE_QNAME = "0x2::kiosk::Lock";
2075
2075
  function type(): TypeDescriptor<Lock>;
2076
2076
  }
2077
- interface LockInstance extends TypedEventInstance<Lock> {
2077
+ type LockInstance = TypedEventInstance<Lock> & {
2078
2078
  data_decoded: Lock;
2079
2079
  type_arguments: [];
2080
- }
2080
+ };
2081
2081
  interface PurchaseCap<T0> {
2082
2082
  id: object$.UID;
2083
2083
  kiosk_id: object$.ID;
@@ -2376,10 +2376,10 @@ export declare namespace kiosk_extension {
2376
2376
  const TYPE_QNAME = "0x2::kiosk_extension::ExtensionKey";
2377
2377
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<ExtensionKey<T0>>;
2378
2378
  }
2379
- interface ExtensionKeyInstance extends TypedEventInstance<ExtensionKey<any>> {
2379
+ type ExtensionKeyInstance = TypedEventInstance<ExtensionKey<any>> & {
2380
2380
  data_decoded: ExtensionKey<any>;
2381
2381
  type_arguments: [string];
2382
- }
2382
+ };
2383
2383
  namespace builder {
2384
2384
  function add<T0 = any>(tx: Transaction, args: [
2385
2385
  T0 | TransactionArgument,
@@ -3281,10 +3281,10 @@ export declare namespace token {
3281
3281
  const TYPE_QNAME = "0x2::token::RuleKey";
3282
3282
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<RuleKey<T0>>;
3283
3283
  }
3284
- interface RuleKeyInstance extends TypedEventInstance<RuleKey<any>> {
3284
+ type RuleKeyInstance = TypedEventInstance<RuleKey<any>> & {
3285
3285
  data_decoded: RuleKey<any>;
3286
3286
  type_arguments: [string];
3287
- }
3287
+ };
3288
3288
  interface Token<T0> {
3289
3289
  id: object$.UID;
3290
3290
  balance: balance.Balance<T0>;
@@ -3318,10 +3318,10 @@ export declare namespace token {
3318
3318
  const TYPE_QNAME = "0x2::token::TokenPolicyCreated";
3319
3319
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<TokenPolicyCreated<T0>>;
3320
3320
  }
3321
- interface TokenPolicyCreatedInstance extends TypedEventInstance<TokenPolicyCreated<any>> {
3321
+ type TokenPolicyCreatedInstance = TypedEventInstance<TokenPolicyCreated<any>> & {
3322
3322
  data_decoded: TokenPolicyCreated<any>;
3323
3323
  type_arguments: [string];
3324
- }
3324
+ };
3325
3325
  namespace builder {
3326
3326
  function action<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
3327
3327
  function addApproval<T0 = any, T1 = any>(tx: Transaction, args: [
@@ -3646,10 +3646,10 @@ export declare namespace transfer_policy {
3646
3646
  const TYPE_QNAME = "0x2::transfer_policy::RuleKey";
3647
3647
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<RuleKey<T0>>;
3648
3648
  }
3649
- interface RuleKeyInstance extends TypedEventInstance<RuleKey<any>> {
3649
+ type RuleKeyInstance = TypedEventInstance<RuleKey<any>> & {
3650
3650
  data_decoded: RuleKey<any>;
3651
3651
  type_arguments: [string];
3652
- }
3652
+ };
3653
3653
  interface TransferPolicy<T0> {
3654
3654
  id: object$.UID;
3655
3655
  balance: balance.Balance<sui.SUI>;
@@ -3674,10 +3674,10 @@ export declare namespace transfer_policy {
3674
3674
  const TYPE_QNAME = "0x2::transfer_policy::TransferPolicyCreated";
3675
3675
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<TransferPolicyCreated<T0>>;
3676
3676
  }
3677
- interface TransferPolicyCreatedInstance extends TypedEventInstance<TransferPolicyCreated<any>> {
3677
+ type TransferPolicyCreatedInstance = TypedEventInstance<TransferPolicyCreated<any>> & {
3678
3678
  data_decoded: TransferPolicyCreated<any>;
3679
3679
  type_arguments: [string];
3680
- }
3680
+ };
3681
3681
  interface TransferPolicyDestroyed<T0> {
3682
3682
  id: object$.ID;
3683
3683
  }
@@ -3685,10 +3685,10 @@ export declare namespace transfer_policy {
3685
3685
  const TYPE_QNAME = "0x2::transfer_policy::TransferPolicyDestroyed";
3686
3686
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<TransferPolicyDestroyed<T0>>;
3687
3687
  }
3688
- interface TransferPolicyDestroyedInstance extends TypedEventInstance<TransferPolicyDestroyed<any>> {
3688
+ type TransferPolicyDestroyedInstance = TypedEventInstance<TransferPolicyDestroyed<any>> & {
3689
3689
  data_decoded: TransferPolicyDestroyed<any>;
3690
3690
  type_arguments: [string];
3691
- }
3691
+ };
3692
3692
  interface TransferRequest<T0> {
3693
3693
  item: object$.ID;
3694
3694
  paid: bigint;
@@ -3874,10 +3874,10 @@ export declare namespace url {
3874
3874
  const TYPE_QNAME = "0x2::url::Url";
3875
3875
  function type(): TypeDescriptor<Url>;
3876
3876
  }
3877
- interface UrlInstance extends TypedEventInstance<Url> {
3877
+ type UrlInstance = TypedEventInstance<Url> & {
3878
3878
  data_decoded: Url;
3879
3879
  type_arguments: [];
3880
- }
3880
+ };
3881
3881
  namespace builder {
3882
3882
  function innerUrl(tx: Transaction, args: [string | TransactionObjectArgument | TransactionArgument]): TransactionArgument & [TransactionArgument];
3883
3883
  function newUnsafe(tx: Transaction, args: [_0x1.ascii.String | TransactionArgument]): TransactionArgument & [TransactionArgument];
@@ -3930,10 +3930,10 @@ export declare namespace vec_map {
3930
3930
  const TYPE_QNAME = "0x2::vec_map::Entry";
3931
3931
  function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<Entry<T0, T1>>;
3932
3932
  }
3933
- interface EntryInstance extends TypedEventInstance<Entry<any, any>> {
3933
+ type EntryInstance = TypedEventInstance<Entry<any, any>> & {
3934
3934
  data_decoded: Entry<any, any>;
3935
3935
  type_arguments: [string, string];
3936
- }
3936
+ };
3937
3937
  interface VecMap<T0, T1> {
3938
3938
  contents: vec_map.Entry<T0, T1>[];
3939
3939
  }
@@ -3941,10 +3941,10 @@ export declare namespace vec_map {
3941
3941
  const TYPE_QNAME = "0x2::vec_map::VecMap";
3942
3942
  function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<VecMap<T0, T1>>;
3943
3943
  }
3944
- interface VecMapInstance extends TypedEventInstance<VecMap<any, any>> {
3944
+ type VecMapInstance = TypedEventInstance<VecMap<any, any>> & {
3945
3945
  data_decoded: VecMap<any, any>;
3946
3946
  type_arguments: [string, string];
3947
- }
3947
+ };
3948
3948
  namespace builder {
3949
3949
  function contains<T0 = any, T1 = any>(tx: Transaction, args: [
3950
3950
  string | TransactionObjectArgument | TransactionArgument,
@@ -4043,10 +4043,10 @@ export declare namespace vec_set {
4043
4043
  const TYPE_QNAME = "0x2::vec_set::VecSet";
4044
4044
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<VecSet<T0>>;
4045
4045
  }
4046
- interface VecSetInstance extends TypedEventInstance<VecSet<any>> {
4046
+ type VecSetInstance = TypedEventInstance<VecSet<any>> & {
4047
4047
  data_decoded: VecSet<any>;
4048
4048
  type_arguments: [string];
4049
- }
4049
+ };
4050
4050
  namespace builder {
4051
4051
  function contains<T0 = any>(tx: Transaction, args: [
4052
4052
  string | TransactionObjectArgument | TransactionArgument,