@typemove/aptos 1.6.11 → 1.6.12-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.
@@ -43,7 +43,7 @@ export namespace acl {
43
43
  export namespace view {}
44
44
  }
45
45
 
46
- export namespace any_ {
46
+ export namespace any$ {
47
47
  export interface Any {
48
48
  type_name: string;
49
49
  data: string;
@@ -381,7 +381,7 @@ export namespace coin {
381
381
  }
382
382
 
383
383
  export interface BurnRefReceipt {
384
- metadata: object_.Object<fungible_asset.Metadata>;
384
+ metadata: object$.Object<fungible_asset.Metadata>;
385
385
  }
386
386
 
387
387
  export namespace BurnRefReceipt {
@@ -413,7 +413,7 @@ export namespace coin {
413
413
  export interface CoinConversionMap {
414
414
  coin_to_fungible_asset_map: table.Table<
415
415
  type_info.TypeInfo,
416
- object_.Object<fungible_asset.Metadata>
416
+ object$.Object<fungible_asset.Metadata>
417
417
  >;
418
418
  }
419
419
 
@@ -627,7 +627,7 @@ export namespace coin {
627
627
  }
628
628
 
629
629
  export interface MintRefReceipt {
630
- metadata: object_.Object<fungible_asset.Metadata>;
630
+ metadata: object$.Object<fungible_asset.Metadata>;
631
631
  }
632
632
 
633
633
  export namespace MintRefReceipt {
@@ -708,7 +708,7 @@ export namespace coin {
708
708
  }
709
709
 
710
710
  export interface TransferRefReceipt {
711
- metadata: object_.Object<fungible_asset.Metadata>;
711
+ metadata: object$.Object<fungible_asset.Metadata>;
712
712
  }
713
713
 
714
714
  export namespace TransferRefReceipt {
@@ -1141,7 +1141,7 @@ export namespace coin {
1141
1141
  export async function pairedCoin(
1142
1142
  client: Aptos,
1143
1143
  request: {
1144
- functionArguments: [object_.Object<fungible_asset.Metadata>];
1144
+ functionArguments: [object$.Object<fungible_asset.Metadata>];
1145
1145
  },
1146
1146
  version?: bigint,
1147
1147
  ): Promise<[option.Option<type_info.TypeInfo>]> {
@@ -1164,7 +1164,7 @@ export namespace coin {
1164
1164
  typeArguments: [MoveStructId];
1165
1165
  },
1166
1166
  version?: bigint,
1167
- ): Promise<[option.Option<object_.Object<fungible_asset.Metadata>>]> {
1167
+ ): Promise<[option.Option<object$.Object<fungible_asset.Metadata>>]> {
1168
1168
  const coder = defaultMoveCoder(client.config.fullnode);
1169
1169
  const data: InputViewFunctionData = {
1170
1170
  function: "0x1::coin::paired_metadata",
@@ -1243,7 +1243,7 @@ export namespace coin {
1243
1243
  const type = await coder.getMoveFunction("0x1::coin::supply");
1244
1244
  return (await coder.decodeArray(res, type.return)) as any;
1245
1245
  }
1246
- export async function symbol<T0 = any>(
1246
+ export async function symbol$<T0 = any>(
1247
1247
  client: Aptos,
1248
1248
  request: {
1249
1249
  typeArguments: [MoveStructId];
@@ -3260,7 +3260,7 @@ export namespace math64 {
3260
3260
  export namespace view {}
3261
3261
  }
3262
3262
 
3263
- export namespace object_ {
3263
+ export namespace object$ {
3264
3264
  export interface ConstructorRef {
3265
3265
  self: MoveAddressType;
3266
3266
  can_delete: boolean;
@@ -3375,7 +3375,7 @@ export namespace object_ {
3375
3375
  guid_creation_num: bigint;
3376
3376
  owner: MoveAddressType;
3377
3377
  allow_ungated_transfer: boolean;
3378
- transfer_events: event.EventHandle<object_.TransferEvent>;
3378
+ transfer_events: event.EventHandle<object$.TransferEvent>;
3379
3379
  }
3380
3380
 
3381
3381
  export namespace ObjectCore {
@@ -3498,7 +3498,7 @@ export namespace object_ {
3498
3498
  account: AptosAccount,
3499
3499
  request: {
3500
3500
  typeArguments: [MoveStructId];
3501
- functionArguments: [object_.Object<T0>];
3501
+ functionArguments: [object$.Object<T0>];
3502
3502
  },
3503
3503
  options?: InputGenerateTransactionOptions,
3504
3504
  ): Promise<PendingTransactionResponse> {
@@ -3523,7 +3523,7 @@ export namespace object_ {
3523
3523
  account: AptosAccount,
3524
3524
  request: {
3525
3525
  typeArguments: [MoveStructId];
3526
- functionArguments: [object_.Object<T0>, MoveAddressType];
3526
+ functionArguments: [object$.Object<T0>, MoveAddressType];
3527
3527
  },
3528
3528
  options?: InputGenerateTransactionOptions,
3529
3529
  ): Promise<PendingTransactionResponse> {
@@ -3572,7 +3572,7 @@ export namespace object_ {
3572
3572
  account: AptosAccount,
3573
3573
  request: {
3574
3574
  typeArguments: [MoveStructId, MoveStructId];
3575
- functionArguments: [object_.Object<T0>, object_.Object<T1>];
3575
+ functionArguments: [object$.Object<T0>, object$.Object<T1>];
3576
3576
  },
3577
3577
  options?: InputGenerateTransactionOptions,
3578
3578
  ): Promise<PendingTransactionResponse> {
@@ -3597,7 +3597,7 @@ export namespace object_ {
3597
3597
  account: AptosAccount,
3598
3598
  request: {
3599
3599
  typeArguments: [MoveStructId];
3600
- functionArguments: [object_.Object<T0>];
3600
+ functionArguments: [object$.Object<T0>];
3601
3601
  },
3602
3602
  options?: InputGenerateTransactionOptions,
3603
3603
  ): Promise<PendingTransactionResponse> {
@@ -3622,7 +3622,7 @@ export namespace object_ {
3622
3622
  client: Aptos,
3623
3623
  request: {
3624
3624
  typeArguments: [MoveStructId];
3625
- functionArguments: [object_.Object<T0>];
3625
+ functionArguments: [object$.Object<T0>];
3626
3626
  },
3627
3627
  version?: bigint,
3628
3628
  ): Promise<[boolean]> {
@@ -3644,7 +3644,7 @@ export namespace object_ {
3644
3644
  client: Aptos,
3645
3645
  request: {
3646
3646
  typeArguments: [MoveStructId];
3647
- functionArguments: [object_.Object<T0>];
3647
+ functionArguments: [object$.Object<T0>];
3648
3648
  },
3649
3649
  version?: bigint,
3650
3650
  ): Promise<[boolean]> {
@@ -3697,7 +3697,7 @@ export namespace signer {
3697
3697
  export namespace view {}
3698
3698
  }
3699
3699
 
3700
- export namespace string_ {
3700
+ export namespace string$ {
3701
3701
  export interface String {
3702
3702
  bytes: string;
3703
3703
  }
@@ -8521,7 +8521,7 @@ export namespace bn254_algebra {
8521
8521
 
8522
8522
  export namespace config_buffer {
8523
8523
  export interface PendingConfigs {
8524
- configs: simple_map.SimpleMap<string, any_.Any>;
8524
+ configs: simple_map.SimpleMap<string, any$.Any>;
8525
8525
  }
8526
8526
 
8527
8527
  export namespace PendingConfigs {
@@ -8965,7 +8965,7 @@ export namespace crypto_algebra {
8965
8965
 
8966
8966
  export namespace fungible_asset {
8967
8967
  export interface BurnRef {
8968
- metadata: object_.Object<fungible_asset.Metadata>;
8968
+ metadata: object$.Object<fungible_asset.Metadata>;
8969
8969
  }
8970
8970
 
8971
8971
  export namespace BurnRef {
@@ -9127,7 +9127,7 @@ export namespace fungible_asset {
9127
9127
  }
9128
9128
 
9129
9129
  export interface FungibleAsset {
9130
- metadata: object_.Object<fungible_asset.Metadata>;
9130
+ metadata: object$.Object<fungible_asset.Metadata>;
9131
9131
  amount: bigint;
9132
9132
  }
9133
9133
 
@@ -9160,7 +9160,7 @@ export namespace fungible_asset {
9160
9160
  }
9161
9161
 
9162
9162
  export interface FungibleStore {
9163
- metadata: object_.Object<fungible_asset.Metadata>;
9163
+ metadata: object$.Object<fungible_asset.Metadata>;
9164
9164
  balance: bigint;
9165
9165
  frozen: boolean;
9166
9166
  }
@@ -9194,7 +9194,7 @@ export namespace fungible_asset {
9194
9194
  }
9195
9195
 
9196
9196
  export interface MintRef {
9197
- metadata: object_.Object<fungible_asset.Metadata>;
9197
+ metadata: object$.Object<fungible_asset.Metadata>;
9198
9198
  }
9199
9199
 
9200
9200
  export namespace MintRef {
@@ -9213,7 +9213,7 @@ export namespace fungible_asset {
9213
9213
  }
9214
9214
 
9215
9215
  export interface MutateMetadataRef {
9216
- metadata: object_.Object<fungible_asset.Metadata>;
9216
+ metadata: object$.Object<fungible_asset.Metadata>;
9217
9217
  }
9218
9218
 
9219
9219
  export namespace MutateMetadataRef {
@@ -9250,7 +9250,7 @@ export namespace fungible_asset {
9250
9250
  }
9251
9251
 
9252
9252
  export interface TransferRef {
9253
- metadata: object_.Object<fungible_asset.Metadata>;
9253
+ metadata: object$.Object<fungible_asset.Metadata>;
9254
9254
  }
9255
9255
 
9256
9256
  export namespace TransferRef {
@@ -9328,7 +9328,7 @@ export namespace fungible_asset {
9328
9328
  account: AptosAccount,
9329
9329
  request: {
9330
9330
  typeArguments: [MoveStructId];
9331
- functionArguments: [object_.Object<T0>, object_.Object<T0>, bigint];
9331
+ functionArguments: [object$.Object<T0>, object$.Object<T0>, bigint];
9332
9332
  },
9333
9333
  options?: InputGenerateTransactionOptions,
9334
9334
  ): Promise<PendingTransactionResponse> {
@@ -9353,7 +9353,7 @@ export namespace fungible_asset {
9353
9353
  account: AptosAccount,
9354
9354
  request: {
9355
9355
  typeArguments: [MoveStructId];
9356
- functionArguments: [object_.Object<T0>];
9356
+ functionArguments: [object$.Object<T0>];
9357
9357
  },
9358
9358
  options?: InputGenerateTransactionOptions,
9359
9359
  ): Promise<PendingTransactionResponse> {
@@ -9378,7 +9378,7 @@ export namespace fungible_asset {
9378
9378
  client: Aptos,
9379
9379
  request: {
9380
9380
  typeArguments: [MoveStructId];
9381
- functionArguments: [object_.Object<T0>];
9381
+ functionArguments: [object$.Object<T0>];
9382
9382
  },
9383
9383
  version?: bigint,
9384
9384
  ): Promise<[bigint]> {
@@ -9400,7 +9400,7 @@ export namespace fungible_asset {
9400
9400
  client: Aptos,
9401
9401
  request: {
9402
9402
  typeArguments: [MoveStructId];
9403
- functionArguments: [object_.Object<T0>];
9403
+ functionArguments: [object$.Object<T0>];
9404
9404
  },
9405
9405
  version?: bigint,
9406
9406
  ): Promise<[number]> {
@@ -9422,7 +9422,7 @@ export namespace fungible_asset {
9422
9422
  client: Aptos,
9423
9423
  request: {
9424
9424
  typeArguments: [MoveStructId];
9425
- functionArguments: [object_.Object<T0>];
9425
+ functionArguments: [object$.Object<T0>];
9426
9426
  },
9427
9427
  version?: bigint,
9428
9428
  ): Promise<[string]> {
@@ -9444,7 +9444,7 @@ export namespace fungible_asset {
9444
9444
  client: Aptos,
9445
9445
  request: {
9446
9446
  typeArguments: [MoveStructId];
9447
- functionArguments: [object_.Object<T0>, bigint];
9447
+ functionArguments: [object$.Object<T0>, bigint];
9448
9448
  },
9449
9449
  version?: bigint,
9450
9450
  ): Promise<[boolean]> {
@@ -9467,7 +9467,7 @@ export namespace fungible_asset {
9467
9467
  client: Aptos,
9468
9468
  request: {
9469
9469
  typeArguments: [MoveStructId];
9470
- functionArguments: [object_.Object<T0>];
9470
+ functionArguments: [object$.Object<T0>];
9471
9471
  },
9472
9472
  version?: bigint,
9473
9473
  ): Promise<[boolean]> {
@@ -9490,7 +9490,7 @@ export namespace fungible_asset {
9490
9490
  client: Aptos,
9491
9491
  request: {
9492
9492
  typeArguments: [MoveStructId];
9493
- functionArguments: [object_.Object<T0>];
9493
+ functionArguments: [object$.Object<T0>];
9494
9494
  },
9495
9495
  version?: bigint,
9496
9496
  ): Promise<[boolean]> {
@@ -9513,7 +9513,7 @@ export namespace fungible_asset {
9513
9513
  client: Aptos,
9514
9514
  request: {
9515
9515
  typeArguments: [MoveStructId];
9516
- functionArguments: [object_.Object<T0>];
9516
+ functionArguments: [object$.Object<T0>];
9517
9517
  },
9518
9518
  version?: bigint,
9519
9519
  ): Promise<[boolean]> {
@@ -9536,7 +9536,7 @@ export namespace fungible_asset {
9536
9536
  client: Aptos,
9537
9537
  request: {
9538
9538
  typeArguments: [MoveStructId];
9539
- functionArguments: [object_.Object<T0>];
9539
+ functionArguments: [object$.Object<T0>];
9540
9540
  },
9541
9541
  version?: bigint,
9542
9542
  ): Promise<[option.Option<bigint>]> {
@@ -9558,7 +9558,7 @@ export namespace fungible_asset {
9558
9558
  client: Aptos,
9559
9559
  request: {
9560
9560
  typeArguments: [MoveStructId];
9561
- functionArguments: [object_.Object<T0>];
9561
+ functionArguments: [object$.Object<T0>];
9562
9562
  },
9563
9563
  version?: bigint,
9564
9564
  ): Promise<[fungible_asset.Metadata]> {
@@ -9580,7 +9580,7 @@ export namespace fungible_asset {
9580
9580
  client: Aptos,
9581
9581
  request: {
9582
9582
  typeArguments: [MoveStructId];
9583
- functionArguments: [object_.Object<T0>];
9583
+ functionArguments: [object$.Object<T0>];
9584
9584
  },
9585
9585
  version?: bigint,
9586
9586
  ): Promise<[string]> {
@@ -9602,7 +9602,7 @@ export namespace fungible_asset {
9602
9602
  client: Aptos,
9603
9603
  request: {
9604
9604
  typeArguments: [MoveStructId];
9605
- functionArguments: [object_.Object<T0>];
9605
+ functionArguments: [object$.Object<T0>];
9606
9606
  },
9607
9607
  version?: bigint,
9608
9608
  ): Promise<[string]> {
@@ -9648,10 +9648,10 @@ export namespace fungible_asset {
9648
9648
  client: Aptos,
9649
9649
  request: {
9650
9650
  typeArguments: [MoveStructId];
9651
- functionArguments: [object_.Object<T0>];
9651
+ functionArguments: [object$.Object<T0>];
9652
9652
  },
9653
9653
  version?: bigint,
9654
- ): Promise<[object_.Object<fungible_asset.Metadata>]> {
9654
+ ): Promise<[object$.Object<fungible_asset.Metadata>]> {
9655
9655
  const coder = defaultMoveCoder(client.config.fullnode);
9656
9656
  const data: InputViewFunctionData = {
9657
9657
  function: "0x1::fungible_asset::store_metadata",
@@ -9671,7 +9671,7 @@ export namespace fungible_asset {
9671
9671
  client: Aptos,
9672
9672
  request: {
9673
9673
  typeArguments: [MoveStructId];
9674
- functionArguments: [object_.Object<T0>];
9674
+ functionArguments: [object$.Object<T0>];
9675
9675
  },
9676
9676
  version?: bigint,
9677
9677
  ): Promise<[option.Option<bigint>]> {
@@ -9688,11 +9688,11 @@ export namespace fungible_asset {
9688
9688
  const type = await coder.getMoveFunction("0x1::fungible_asset::supply");
9689
9689
  return (await coder.decodeArray(res, type.return)) as any;
9690
9690
  }
9691
- export async function symbol<T0 = any>(
9691
+ export async function symbol$<T0 = any>(
9692
9692
  client: Aptos,
9693
9693
  request: {
9694
9694
  typeArguments: [MoveStructId];
9695
- functionArguments: [object_.Object<T0>];
9695
+ functionArguments: [object$.Object<T0>];
9696
9696
  },
9697
9697
  version?: bigint,
9698
9698
  ): Promise<[string]> {
@@ -15987,7 +15987,7 @@ export namespace object_code_deployment {
15987
15987
  }
15988
15988
 
15989
15989
  export interface ManagingRefs {
15990
- extend_ref: object_.ExtendRef;
15990
+ extend_ref: object$.ExtendRef;
15991
15991
  }
15992
15992
 
15993
15993
  export namespace ManagingRefs {
@@ -16044,7 +16044,7 @@ export namespace object_code_deployment {
16044
16044
  account: AptosAccount,
16045
16045
  request: {
16046
16046
  typeArguments: [];
16047
- functionArguments: [object_.Object<code.PackageRegistry>];
16047
+ functionArguments: [object$.Object<code.PackageRegistry>];
16048
16048
  },
16049
16049
  options?: InputGenerateTransactionOptions,
16050
16050
  ): Promise<PendingTransactionResponse> {
@@ -16095,7 +16095,7 @@ export namespace object_code_deployment {
16095
16095
  functionArguments: [
16096
16096
  string,
16097
16097
  string[],
16098
- object_.Object<code.PackageRegistry>,
16098
+ object$.Object<code.PackageRegistry>,
16099
16099
  ];
16100
16100
  },
16101
16101
  options?: InputGenerateTransactionOptions,
@@ -16121,7 +16121,7 @@ export namespace object_code_deployment {
16121
16121
 
16122
16122
  export namespace primary_fungible_store {
16123
16123
  export interface DeriveRefPod {
16124
- metadata_derive_ref: object_.DeriveRef;
16124
+ metadata_derive_ref: object$.DeriveRef;
16125
16125
  }
16126
16126
 
16127
16127
  export namespace DeriveRefPod {
@@ -16140,7 +16140,7 @@ export namespace primary_fungible_store {
16140
16140
  account: AptosAccount,
16141
16141
  request: {
16142
16142
  typeArguments: [MoveStructId];
16143
- functionArguments: [object_.Object<T0>, MoveAddressType, bigint];
16143
+ functionArguments: [object$.Object<T0>, MoveAddressType, bigint];
16144
16144
  },
16145
16145
  options?: InputGenerateTransactionOptions,
16146
16146
  ): Promise<PendingTransactionResponse> {
@@ -16165,7 +16165,7 @@ export namespace primary_fungible_store {
16165
16165
  request: {
16166
16166
  typeArguments: [MoveStructId];
16167
16167
  functionArguments: [
16168
- object_.Object<T0>,
16168
+ object$.Object<T0>,
16169
16169
  MoveAddressType,
16170
16170
  bigint,
16171
16171
  bigint,
@@ -16195,7 +16195,7 @@ export namespace primary_fungible_store {
16195
16195
  client: Aptos,
16196
16196
  request: {
16197
16197
  typeArguments: [MoveStructId];
16198
- functionArguments: [MoveAddressType, object_.Object<T0>];
16198
+ functionArguments: [MoveAddressType, object$.Object<T0>];
16199
16199
  },
16200
16200
  version?: bigint,
16201
16201
  ): Promise<[bigint]> {
@@ -16219,7 +16219,7 @@ export namespace primary_fungible_store {
16219
16219
  client: Aptos,
16220
16220
  request: {
16221
16221
  typeArguments: [MoveStructId];
16222
- functionArguments: [MoveAddressType, object_.Object<T0>, bigint];
16222
+ functionArguments: [MoveAddressType, object$.Object<T0>, bigint];
16223
16223
  },
16224
16224
  version?: bigint,
16225
16225
  ): Promise<[boolean]> {
@@ -16242,7 +16242,7 @@ export namespace primary_fungible_store {
16242
16242
  client: Aptos,
16243
16243
  request: {
16244
16244
  typeArguments: [MoveStructId];
16245
- functionArguments: [MoveAddressType, object_.Object<T0>];
16245
+ functionArguments: [MoveAddressType, object$.Object<T0>];
16246
16246
  },
16247
16247
  version?: bigint,
16248
16248
  ): Promise<[boolean]> {
@@ -16266,10 +16266,10 @@ export namespace primary_fungible_store {
16266
16266
  client: Aptos,
16267
16267
  request: {
16268
16268
  typeArguments: [MoveStructId];
16269
- functionArguments: [MoveAddressType, object_.Object<T0>];
16269
+ functionArguments: [MoveAddressType, object$.Object<T0>];
16270
16270
  },
16271
16271
  version?: bigint,
16272
- ): Promise<[object_.Object<fungible_asset.FungibleStore>]> {
16272
+ ): Promise<[object$.Object<fungible_asset.FungibleStore>]> {
16273
16273
  const coder = defaultMoveCoder(client.config.fullnode);
16274
16274
  const data: InputViewFunctionData = {
16275
16275
  function: "0x1::primary_fungible_store::primary_store",
@@ -16289,7 +16289,7 @@ export namespace primary_fungible_store {
16289
16289
  client: Aptos,
16290
16290
  request: {
16291
16291
  typeArguments: [MoveStructId];
16292
- functionArguments: [MoveAddressType, object_.Object<T0>];
16292
+ functionArguments: [MoveAddressType, object$.Object<T0>];
16293
16293
  },
16294
16294
  version?: bigint,
16295
16295
  ): Promise<[MoveAddressType]> {
@@ -16312,7 +16312,7 @@ export namespace primary_fungible_store {
16312
16312
  client: Aptos,
16313
16313
  request: {
16314
16314
  typeArguments: [MoveStructId];
16315
- functionArguments: [MoveAddressType, object_.Object<T0>];
16315
+ functionArguments: [MoveAddressType, object$.Object<T0>];
16316
16316
  },
16317
16317
  version?: bigint,
16318
16318
  ): Promise<[boolean]> {
@@ -16523,7 +16523,7 @@ export namespace dispatchable_fungible_asset {
16523
16523
  account: AptosAccount,
16524
16524
  request: {
16525
16525
  typeArguments: [MoveStructId];
16526
- functionArguments: [object_.Object<T0>, object_.Object<T0>, bigint];
16526
+ functionArguments: [object$.Object<T0>, object$.Object<T0>, bigint];
16527
16527
  },
16528
16528
  options?: InputGenerateTransactionOptions,
16529
16529
  ): Promise<PendingTransactionResponse> {
@@ -16548,8 +16548,8 @@ export namespace dispatchable_fungible_asset {
16548
16548
  request: {
16549
16549
  typeArguments: [MoveStructId];
16550
16550
  functionArguments: [
16551
- object_.Object<T0>,
16552
- object_.Object<T0>,
16551
+ object$.Object<T0>,
16552
+ object$.Object<T0>,
16553
16553
  bigint,
16554
16554
  bigint,
16555
16555
  ];
@@ -16578,7 +16578,7 @@ export namespace dispatchable_fungible_asset {
16578
16578
  client: Aptos,
16579
16579
  request: {
16580
16580
  typeArguments: [MoveStructId];
16581
- functionArguments: [object_.Object<T0>];
16581
+ functionArguments: [object$.Object<T0>];
16582
16582
  },
16583
16583
  version?: bigint,
16584
16584
  ): Promise<[bigint]> {
@@ -16601,7 +16601,7 @@ export namespace dispatchable_fungible_asset {
16601
16601
  client: Aptos,
16602
16602
  request: {
16603
16603
  typeArguments: [MoveStructId];
16604
- functionArguments: [object_.Object<T0>];
16604
+ functionArguments: [object$.Object<T0>];
16605
16605
  },
16606
16606
  version?: bigint,
16607
16607
  ): Promise<[option.Option<bigint>]> {
@@ -1814,7 +1814,7 @@ export namespace token_event_store {
1814
1814
  description_mutate_events: _0x1.event.EventHandle<token_event_store.DescriptionMutateEvent>;
1815
1815
  royalty_mutate_events: _0x1.event.EventHandle<token_event_store.RoyaltyMutateEvent>;
1816
1816
  maximum_mutate_events: _0x1.event.EventHandle<token_event_store.MaxiumMutateEvent>;
1817
- extension: _0x1.option.Option<_0x1.any_.Any>;
1817
+ extension: _0x1.option.Option<_0x1.any$.Any>;
1818
1818
  }
1819
1819
 
1820
1820
  export namespace TokenEventStoreV1 {