@typemove/aptos 1.6.7 → 1.6.8-rc.1

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.
@@ -275,7 +275,7 @@ export namespace code {
275
275
 
276
276
  export interface PublishPackage {
277
277
  code_address: MoveAddressType;
278
- is_upgrade: Boolean;
278
+ is_upgrade: boolean;
279
279
  }
280
280
 
281
281
  export namespace PublishPackage {
@@ -363,7 +363,7 @@ export namespace coin {
363
363
  }
364
364
 
365
365
  export interface BurnCapability<T0> {
366
- dummy_field: Boolean;
366
+ dummy_field: boolean;
367
367
  }
368
368
 
369
369
  export namespace BurnCapability {
@@ -495,7 +495,7 @@ export namespace coin {
495
495
 
496
496
  export interface CoinStore<T0> {
497
497
  coin: coin.Coin<T0>;
498
- frozen: Boolean;
498
+ frozen: boolean;
499
499
  deposit_events: event.EventHandle<coin.DepositEvent>;
500
500
  withdraw_events: event.EventHandle<coin.WithdrawEvent>;
501
501
  }
@@ -577,7 +577,7 @@ export namespace coin {
577
577
  }
578
578
 
579
579
  export interface FreezeCapability<T0> {
580
- dummy_field: Boolean;
580
+ dummy_field: boolean;
581
581
  }
582
582
 
583
583
  export namespace FreezeCapability {
@@ -595,7 +595,7 @@ export namespace coin {
595
595
  }
596
596
 
597
597
  export interface MigrationFlag {
598
- dummy_field: Boolean;
598
+ dummy_field: boolean;
599
599
  }
600
600
 
601
601
  export namespace MigrationFlag {
@@ -609,7 +609,7 @@ export namespace coin {
609
609
  }
610
610
 
611
611
  export interface MintCapability<T0> {
612
- dummy_field: Boolean;
612
+ dummy_field: boolean;
613
613
  }
614
614
 
615
615
  export namespace MintCapability {
@@ -694,7 +694,7 @@ export namespace coin {
694
694
  }
695
695
 
696
696
  export interface SupplyConfig {
697
- allow_upgrades: Boolean;
697
+ allow_upgrades: boolean;
698
698
  }
699
699
 
700
700
  export namespace SupplyConfig {
@@ -1010,7 +1010,7 @@ export namespace coin {
1010
1010
  functionArguments: [MoveAddressType];
1011
1011
  },
1012
1012
  version?: bigint,
1013
- ): Promise<[Boolean]> {
1013
+ ): Promise<[boolean]> {
1014
1014
  const coder = defaultMoveCoder(client.config.fullnode);
1015
1015
  const data: InputViewFunctionData = {
1016
1016
  function: "0x1::coin::is_account_registered",
@@ -1034,7 +1034,7 @@ export namespace coin {
1034
1034
  functionArguments: [MoveAddressType, bigint];
1035
1035
  },
1036
1036
  version?: bigint,
1037
- ): Promise<[Boolean]> {
1037
+ ): Promise<[boolean]> {
1038
1038
  const coder = defaultMoveCoder(client.config.fullnode);
1039
1039
  const data: InputViewFunctionData = {
1040
1040
  function: "0x1::coin::is_balance_at_least",
@@ -1056,7 +1056,7 @@ export namespace coin {
1056
1056
  typeArguments: [MoveStructId];
1057
1057
  },
1058
1058
  version?: bigint,
1059
- ): Promise<[Boolean]> {
1059
+ ): Promise<[boolean]> {
1060
1060
  const coder = defaultMoveCoder(client.config.fullnode);
1061
1061
  const data: InputViewFunctionData = {
1062
1062
  function: "0x1::coin::is_coin_initialized",
@@ -1079,7 +1079,7 @@ export namespace coin {
1079
1079
  functionArguments: [MoveAddressType];
1080
1080
  },
1081
1081
  version?: bigint,
1082
- ): Promise<[Boolean]> {
1082
+ ): Promise<[boolean]> {
1083
1083
  const coder = defaultMoveCoder(client.config.fullnode);
1084
1084
  const data: InputViewFunctionData = {
1085
1085
  function: "0x1::coin::is_coin_store_frozen",
@@ -1122,7 +1122,7 @@ export namespace coin {
1122
1122
  typeArguments: [MoveStructId];
1123
1123
  },
1124
1124
  version?: bigint,
1125
- ): Promise<[Boolean]> {
1125
+ ): Promise<[boolean]> {
1126
1126
  const coder = defaultMoveCoder(client.config.fullnode);
1127
1127
  const data: InputViewFunctionData = {
1128
1128
  function: "0x1::coin::paired_burn_ref_exists",
@@ -1184,7 +1184,7 @@ export namespace coin {
1184
1184
  typeArguments: [MoveStructId];
1185
1185
  },
1186
1186
  version?: bigint,
1187
- ): Promise<[Boolean]> {
1187
+ ): Promise<[boolean]> {
1188
1188
  const coder = defaultMoveCoder(client.config.fullnode);
1189
1189
  const data: InputViewFunctionData = {
1190
1190
  function: "0x1::coin::paired_mint_ref_exists",
@@ -1206,7 +1206,7 @@ export namespace coin {
1206
1206
  typeArguments: [MoveStructId];
1207
1207
  },
1208
1208
  version?: bigint,
1209
- ): Promise<[Boolean]> {
1209
+ ): Promise<[boolean]> {
1210
1210
  const coder = defaultMoveCoder(client.config.fullnode);
1211
1211
  const data: InputViewFunctionData = {
1212
1212
  function: "0x1::coin::paired_transfer_ref_exists",
@@ -1455,7 +1455,7 @@ export namespace jwks {
1455
1455
  }
1456
1456
 
1457
1457
  export interface PatchRemoveAll {
1458
- dummy_field: Boolean;
1458
+ dummy_field: boolean;
1459
1459
  }
1460
1460
 
1461
1461
  export namespace PatchRemoveAll {
@@ -3195,7 +3195,7 @@ export namespace stake {
3195
3195
  functionArguments: [MoveAddressType];
3196
3196
  },
3197
3197
  version?: bigint,
3198
- ): Promise<[Boolean]> {
3198
+ ): Promise<[boolean]> {
3199
3199
  const coder = defaultMoveCoder(client.config.fullnode);
3200
3200
  const data: InputViewFunctionData = {
3201
3201
  function: "0x1::stake::stake_pool_exists",
@@ -3263,7 +3263,7 @@ export namespace math64 {
3263
3263
  export namespace object_ {
3264
3264
  export interface ConstructorRef {
3265
3265
  self: MoveAddressType;
3266
- can_delete: Boolean;
3266
+ can_delete: boolean;
3267
3267
  }
3268
3268
 
3269
3269
  export namespace ConstructorRef {
@@ -3374,7 +3374,7 @@ export namespace object_ {
3374
3374
  export interface ObjectCore {
3375
3375
  guid_creation_num: bigint;
3376
3376
  owner: MoveAddressType;
3377
- allow_ungated_transfer: Boolean;
3377
+ allow_ungated_transfer: boolean;
3378
3378
  transfer_events: event.EventHandle<object_.TransferEvent>;
3379
3379
  }
3380
3380
 
@@ -3389,7 +3389,7 @@ export namespace object_ {
3389
3389
  }
3390
3390
 
3391
3391
  export interface ObjectGroup {
3392
- dummy_field: Boolean;
3392
+ dummy_field: boolean;
3393
3393
  }
3394
3394
 
3395
3395
  export namespace ObjectGroup {
@@ -3479,7 +3479,7 @@ export namespace object_ {
3479
3479
  }
3480
3480
 
3481
3481
  export interface Untransferable {
3482
- dummy_field: Boolean;
3482
+ dummy_field: boolean;
3483
3483
  }
3484
3484
 
3485
3485
  export namespace Untransferable {
@@ -3625,7 +3625,7 @@ export namespace object_ {
3625
3625
  functionArguments: [object_.Object<T0>];
3626
3626
  },
3627
3627
  version?: bigint,
3628
- ): Promise<[Boolean]> {
3628
+ ): Promise<[boolean]> {
3629
3629
  const coder = defaultMoveCoder(client.config.fullnode);
3630
3630
  const data: InputViewFunctionData = {
3631
3631
  function: "0x1::object::is_burnt",
@@ -3647,7 +3647,7 @@ export namespace object_ {
3647
3647
  functionArguments: [object_.Object<T0>];
3648
3648
  },
3649
3649
  version?: bigint,
3650
- ): Promise<[Boolean]> {
3650
+ ): Promise<[boolean]> {
3651
3651
  const coder = defaultMoveCoder(client.config.fullnode);
3652
3652
  const data: InputViewFunctionData = {
3653
3653
  function: "0x1::object::is_untransferable",
@@ -3790,7 +3790,7 @@ export namespace voting {
3790
3790
  early_resolution_vote_threshold: option.Option<bigint>;
3791
3791
  yes_votes: bigint;
3792
3792
  no_votes: bigint;
3793
- is_resolved: Boolean;
3793
+ is_resolved: boolean;
3794
3794
  resolution_time_secs: bigint;
3795
3795
  }
3796
3796
 
@@ -3854,7 +3854,7 @@ export namespace voting {
3854
3854
  proposal_id: bigint;
3855
3855
  yes_votes: bigint;
3856
3856
  no_votes: bigint;
3857
- resolved_early: Boolean;
3857
+ resolved_early: boolean;
3858
3858
  }
3859
3859
 
3860
3860
  export namespace ResolveProposal {
@@ -4208,7 +4208,7 @@ export namespace voting {
4208
4208
  functionArguments: [MoveAddressType, bigint];
4209
4209
  },
4210
4210
  version?: bigint,
4211
- ): Promise<[Boolean]> {
4211
+ ): Promise<[boolean]> {
4212
4212
  const coder = defaultMoveCoder(client.config.fullnode);
4213
4213
  const data: InputViewFunctionData = {
4214
4214
  function: "0x1::voting::is_multi_step_proposal_in_execution",
@@ -4231,7 +4231,7 @@ export namespace voting {
4231
4231
  functionArguments: [MoveAddressType, bigint];
4232
4232
  },
4233
4233
  version?: bigint,
4234
- ): Promise<[Boolean]> {
4234
+ ): Promise<[boolean]> {
4235
4235
  const coder = defaultMoveCoder(client.config.fullnode);
4236
4236
  const data: InputViewFunctionData = {
4237
4237
  function: "0x1::voting::is_resolved",
@@ -4252,7 +4252,7 @@ export namespace voting {
4252
4252
  functionArguments: [MoveAddressType, bigint];
4253
4253
  },
4254
4254
  version?: bigint,
4255
- ): Promise<[Boolean]> {
4255
+ ): Promise<[boolean]> {
4256
4256
  const coder = defaultMoveCoder(client.config.fullnode);
4257
4257
  const data: InputViewFunctionData = {
4258
4258
  function: "0x1::voting::is_voting_closed",
@@ -4777,7 +4777,7 @@ export namespace account {
4777
4777
  functionArguments: [MoveAddressType];
4778
4778
  },
4779
4779
  version?: bigint,
4780
- ): Promise<[Boolean]> {
4780
+ ): Promise<[boolean]> {
4781
4781
  const coder = defaultMoveCoder(client.config.fullnode);
4782
4782
  const data: InputViewFunctionData = {
4783
4783
  function: "0x1::account::exists_at",
@@ -4909,7 +4909,7 @@ export namespace account {
4909
4909
  functionArguments: [MoveAddressType];
4910
4910
  },
4911
4911
  version?: bigint,
4912
- ): Promise<[Boolean]> {
4912
+ ): Promise<[boolean]> {
4913
4913
  const coder = defaultMoveCoder(client.config.fullnode);
4914
4914
  const data: InputViewFunctionData = {
4915
4915
  function: "0x1::account::is_rotation_capability_offered",
@@ -4931,7 +4931,7 @@ export namespace account {
4931
4931
  functionArguments: [MoveAddressType];
4932
4932
  },
4933
4933
  version?: bigint,
4934
- ): Promise<[Boolean]> {
4934
+ ): Promise<[boolean]> {
4935
4935
  const coder = defaultMoveCoder(client.config.fullnode);
4936
4936
  const data: InputViewFunctionData = {
4937
4937
  function: "0x1::account::is_signer_capability_offered",
@@ -5099,7 +5099,7 @@ export namespace genesis {
5099
5099
  export interface ValidatorConfigurationWithCommission {
5100
5100
  validator_config: genesis.ValidatorConfiguration;
5101
5101
  commission_percentage: bigint;
5102
- join_during_genesis: Boolean;
5102
+ join_during_genesis: boolean;
5103
5103
  }
5104
5104
 
5105
5105
  export namespace ValidatorConfigurationWithCommission {
@@ -5126,7 +5126,7 @@ export namespace math128 {
5126
5126
 
5127
5127
  export namespace version {
5128
5128
  export interface SetVersionCapability {
5129
- dummy_field: Boolean;
5129
+ dummy_field: boolean;
5130
5130
  }
5131
5131
 
5132
5132
  export namespace SetVersionCapability {
@@ -6752,7 +6752,7 @@ export namespace features {
6752
6752
  functionArguments: [bigint];
6753
6753
  },
6754
6754
  version?: bigint,
6755
- ): Promise<[Boolean]> {
6755
+ ): Promise<[boolean]> {
6756
6756
  const coder = defaultMoveCoder(client.config.fullnode);
6757
6757
  const data: InputViewFunctionData = {
6758
6758
  function: "0x1::features::is_enabled",
@@ -6954,7 +6954,7 @@ export namespace aggregator {
6954
6954
 
6955
6955
  export namespace aptos_coin {
6956
6956
  export interface AptosCoin {
6957
- dummy_field: Boolean;
6957
+ dummy_field: boolean;
6958
6958
  }
6959
6959
 
6960
6960
  export namespace AptosCoin {
@@ -7121,7 +7121,7 @@ export namespace big_vector {
7121
7121
  export namespace bit_vector {
7122
7122
  export interface BitVector {
7123
7123
  length: bigint;
7124
- bit_field: Boolean[];
7124
+ bit_field: boolean[];
7125
7125
  }
7126
7126
 
7127
7127
  export namespace BitVector {
@@ -7258,7 +7258,7 @@ export namespace randomness {
7258
7258
  }
7259
7259
 
7260
7260
  export interface RandomnessGeneratedEvent {
7261
- dummy_field: Boolean;
7261
+ dummy_field: boolean;
7262
7262
  }
7263
7263
 
7264
7264
  export namespace RandomnessGeneratedEvent {
@@ -7498,7 +7498,7 @@ export namespace storage_gas {
7498
7498
 
7499
7499
  export namespace chain_status {
7500
7500
  export interface GenesisEndMarker {
7501
- dummy_field: Boolean;
7501
+ dummy_field: boolean;
7502
7502
  }
7503
7503
 
7504
7504
  export namespace GenesisEndMarker {
@@ -7519,7 +7519,7 @@ export namespace chain_status {
7519
7519
  client: Aptos,
7520
7520
 
7521
7521
  version?: bigint,
7522
- ): Promise<[Boolean]> {
7522
+ ): Promise<[boolean]> {
7523
7523
  const coder = defaultMoveCoder(client.config.fullnode);
7524
7524
  const data: InputViewFunctionData = {
7525
7525
  function: "0x1::chain_status::is_genesis",
@@ -7537,7 +7537,7 @@ export namespace chain_status {
7537
7537
  client: Aptos,
7538
7538
 
7539
7539
  version?: bigint,
7540
- ): Promise<[Boolean]> {
7540
+ ): Promise<[boolean]> {
7541
7541
  const coder = defaultMoveCoder(client.config.fullnode);
7542
7542
  const data: InputViewFunctionData = {
7543
7543
  function: "0x1::chain_status::is_operating",
@@ -7714,7 +7714,7 @@ export namespace managed_coin {
7714
7714
  account: AptosAccount,
7715
7715
  request: {
7716
7716
  typeArguments: [MoveStructId];
7717
- functionArguments: [string, string, number, Boolean];
7717
+ functionArguments: [string, string, number, boolean];
7718
7718
  },
7719
7719
  options?: InputGenerateTransactionOptions,
7720
7720
  ): Promise<PendingTransactionResponse> {
@@ -7923,7 +7923,7 @@ export namespace string_utils {
7923
7923
  }
7924
7924
 
7925
7925
  export interface NIL {
7926
- dummy_field: Boolean;
7926
+ dummy_field: boolean;
7927
7927
  }
7928
7928
 
7929
7929
  export namespace NIL {
@@ -8023,7 +8023,7 @@ export namespace aggregator_v2 {
8023
8023
  export namespace aptos_account {
8024
8024
  export interface DirectCoinTransferConfigUpdated {
8025
8025
  account: MoveAddressType;
8026
- new_allow_direct_transfers: Boolean;
8026
+ new_allow_direct_transfers: boolean;
8027
8027
  }
8028
8028
 
8029
8029
  export namespace DirectCoinTransferConfigUpdated {
@@ -8046,7 +8046,7 @@ export namespace aptos_account {
8046
8046
  }
8047
8047
 
8048
8048
  export interface DirectCoinTransferConfigUpdatedEvent {
8049
- new_allow_direct_transfers: Boolean;
8049
+ new_allow_direct_transfers: boolean;
8050
8050
  }
8051
8051
 
8052
8052
  export namespace DirectCoinTransferConfigUpdatedEvent {
@@ -8069,7 +8069,7 @@ export namespace aptos_account {
8069
8069
  }
8070
8070
 
8071
8071
  export interface DirectTransferConfig {
8072
- allow_arbitrary_coin_transfers: Boolean;
8072
+ allow_arbitrary_coin_transfers: boolean;
8073
8073
  update_coin_transfer_events: event.EventHandle<aptos_account.DirectCoinTransferConfigUpdatedEvent>;
8074
8074
  }
8075
8075
 
@@ -8190,7 +8190,7 @@ export namespace aptos_account {
8190
8190
  account: AptosAccount,
8191
8191
  request: {
8192
8192
  typeArguments: [];
8193
- functionArguments: [Boolean];
8193
+ functionArguments: [boolean];
8194
8194
  },
8195
8195
  options?: InputGenerateTransactionOptions,
8196
8196
  ): Promise<PendingTransactionResponse> {
@@ -8265,7 +8265,7 @@ export namespace aptos_account {
8265
8265
  functionArguments: [MoveAddressType];
8266
8266
  },
8267
8267
  version?: bigint,
8268
- ): Promise<[Boolean]> {
8268
+ ): Promise<[boolean]> {
8269
8269
  const coder = defaultMoveCoder(client.config.fullnode);
8270
8270
  const data: InputViewFunctionData = {
8271
8271
  function: "0x1::aptos_account::can_receive_direct_coin_transfers",
@@ -8286,7 +8286,7 @@ export namespace aptos_account {
8286
8286
 
8287
8287
  export namespace bn254_algebra {
8288
8288
  export interface FormatFq12LscLsb {
8289
- dummy_field: Boolean;
8289
+ dummy_field: boolean;
8290
8290
  }
8291
8291
 
8292
8292
  export namespace FormatFq12LscLsb {
@@ -8302,7 +8302,7 @@ export namespace bn254_algebra {
8302
8302
  }
8303
8303
 
8304
8304
  export interface FormatFqLsb {
8305
- dummy_field: Boolean;
8305
+ dummy_field: boolean;
8306
8306
  }
8307
8307
 
8308
8308
  export namespace FormatFqLsb {
@@ -8316,7 +8316,7 @@ export namespace bn254_algebra {
8316
8316
  }
8317
8317
 
8318
8318
  export interface FormatFqMsb {
8319
- dummy_field: Boolean;
8319
+ dummy_field: boolean;
8320
8320
  }
8321
8321
 
8322
8322
  export namespace FormatFqMsb {
@@ -8330,7 +8330,7 @@ export namespace bn254_algebra {
8330
8330
  }
8331
8331
 
8332
8332
  export interface FormatFrLsb {
8333
- dummy_field: Boolean;
8333
+ dummy_field: boolean;
8334
8334
  }
8335
8335
 
8336
8336
  export namespace FormatFrLsb {
@@ -8344,7 +8344,7 @@ export namespace bn254_algebra {
8344
8344
  }
8345
8345
 
8346
8346
  export interface FormatFrMsb {
8347
- dummy_field: Boolean;
8347
+ dummy_field: boolean;
8348
8348
  }
8349
8349
 
8350
8350
  export namespace FormatFrMsb {
@@ -8358,7 +8358,7 @@ export namespace bn254_algebra {
8358
8358
  }
8359
8359
 
8360
8360
  export interface FormatG1Compr {
8361
- dummy_field: Boolean;
8361
+ dummy_field: boolean;
8362
8362
  }
8363
8363
 
8364
8364
  export namespace FormatG1Compr {
@@ -8372,7 +8372,7 @@ export namespace bn254_algebra {
8372
8372
  }
8373
8373
 
8374
8374
  export interface FormatG1Uncompr {
8375
- dummy_field: Boolean;
8375
+ dummy_field: boolean;
8376
8376
  }
8377
8377
 
8378
8378
  export namespace FormatG1Uncompr {
@@ -8388,7 +8388,7 @@ export namespace bn254_algebra {
8388
8388
  }
8389
8389
 
8390
8390
  export interface FormatG2Compr {
8391
- dummy_field: Boolean;
8391
+ dummy_field: boolean;
8392
8392
  }
8393
8393
 
8394
8394
  export namespace FormatG2Compr {
@@ -8402,7 +8402,7 @@ export namespace bn254_algebra {
8402
8402
  }
8403
8403
 
8404
8404
  export interface FormatG2Uncompr {
8405
- dummy_field: Boolean;
8405
+ dummy_field: boolean;
8406
8406
  }
8407
8407
 
8408
8408
  export namespace FormatG2Uncompr {
@@ -8418,7 +8418,7 @@ export namespace bn254_algebra {
8418
8418
  }
8419
8419
 
8420
8420
  export interface FormatGt {
8421
- dummy_field: Boolean;
8421
+ dummy_field: boolean;
8422
8422
  }
8423
8423
 
8424
8424
  export namespace FormatGt {
@@ -8432,7 +8432,7 @@ export namespace bn254_algebra {
8432
8432
  }
8433
8433
 
8434
8434
  export interface Fq {
8435
- dummy_field: Boolean;
8435
+ dummy_field: boolean;
8436
8436
  }
8437
8437
 
8438
8438
  export namespace Fq {
@@ -8446,7 +8446,7 @@ export namespace bn254_algebra {
8446
8446
  }
8447
8447
 
8448
8448
  export interface Fq12 {
8449
- dummy_field: Boolean;
8449
+ dummy_field: boolean;
8450
8450
  }
8451
8451
 
8452
8452
  export namespace Fq12 {
@@ -8460,7 +8460,7 @@ export namespace bn254_algebra {
8460
8460
  }
8461
8461
 
8462
8462
  export interface Fr {
8463
- dummy_field: Boolean;
8463
+ dummy_field: boolean;
8464
8464
  }
8465
8465
 
8466
8466
  export namespace Fr {
@@ -8474,7 +8474,7 @@ export namespace bn254_algebra {
8474
8474
  }
8475
8475
 
8476
8476
  export interface G1 {
8477
- dummy_field: Boolean;
8477
+ dummy_field: boolean;
8478
8478
  }
8479
8479
 
8480
8480
  export namespace G1 {
@@ -8488,7 +8488,7 @@ export namespace bn254_algebra {
8488
8488
  }
8489
8489
 
8490
8490
  export interface G2 {
8491
- dummy_field: Boolean;
8491
+ dummy_field: boolean;
8492
8492
  }
8493
8493
 
8494
8494
  export namespace G2 {
@@ -8502,7 +8502,7 @@ export namespace bn254_algebra {
8502
8502
  }
8503
8503
 
8504
8504
  export interface Gt {
8505
- dummy_field: Boolean;
8505
+ dummy_field: boolean;
8506
8506
  }
8507
8507
 
8508
8508
  export namespace Gt {
@@ -9089,7 +9089,7 @@ export namespace fungible_asset {
9089
9089
 
9090
9090
  export interface Frozen {
9091
9091
  store: MoveAddressType;
9092
- frozen: Boolean;
9092
+ frozen: boolean;
9093
9093
  }
9094
9094
 
9095
9095
  export namespace Frozen {
@@ -9108,7 +9108,7 @@ export namespace fungible_asset {
9108
9108
  }
9109
9109
 
9110
9110
  export interface FrozenEvent {
9111
- frozen: Boolean;
9111
+ frozen: boolean;
9112
9112
  }
9113
9113
 
9114
9114
  export namespace FrozenEvent {
@@ -9162,7 +9162,7 @@ export namespace fungible_asset {
9162
9162
  export interface FungibleStore {
9163
9163
  metadata: object_.Object<fungible_asset.Metadata>;
9164
9164
  balance: bigint;
9165
- frozen: Boolean;
9165
+ frozen: boolean;
9166
9166
  }
9167
9167
 
9168
9168
  export namespace FungibleStore {
@@ -9269,7 +9269,7 @@ export namespace fungible_asset {
9269
9269
  }
9270
9270
 
9271
9271
  export interface Untransferable {
9272
- dummy_field: Boolean;
9272
+ dummy_field: boolean;
9273
9273
  }
9274
9274
 
9275
9275
  export namespace Untransferable {
@@ -9447,7 +9447,7 @@ export namespace fungible_asset {
9447
9447
  functionArguments: [object_.Object<T0>, bigint];
9448
9448
  },
9449
9449
  version?: bigint,
9450
- ): Promise<[Boolean]> {
9450
+ ): Promise<[boolean]> {
9451
9451
  const coder = defaultMoveCoder(client.config.fullnode);
9452
9452
  const data: InputViewFunctionData = {
9453
9453
  function: "0x1::fungible_asset::is_balance_at_least",
@@ -9470,7 +9470,7 @@ export namespace fungible_asset {
9470
9470
  functionArguments: [object_.Object<T0>];
9471
9471
  },
9472
9472
  version?: bigint,
9473
- ): Promise<[Boolean]> {
9473
+ ): Promise<[boolean]> {
9474
9474
  const coder = defaultMoveCoder(client.config.fullnode);
9475
9475
  const data: InputViewFunctionData = {
9476
9476
  function: "0x1::fungible_asset::is_frozen",
@@ -9493,7 +9493,7 @@ export namespace fungible_asset {
9493
9493
  functionArguments: [object_.Object<T0>];
9494
9494
  },
9495
9495
  version?: bigint,
9496
- ): Promise<[Boolean]> {
9496
+ ): Promise<[boolean]> {
9497
9497
  const coder = defaultMoveCoder(client.config.fullnode);
9498
9498
  const data: InputViewFunctionData = {
9499
9499
  function: "0x1::fungible_asset::is_store_dispatchable",
@@ -9516,7 +9516,7 @@ export namespace fungible_asset {
9516
9516
  functionArguments: [object_.Object<T0>];
9517
9517
  },
9518
9518
  version?: bigint,
9519
- ): Promise<[Boolean]> {
9519
+ ): Promise<[boolean]> {
9520
9520
  const coder = defaultMoveCoder(client.config.fullnode);
9521
9521
  const data: InputViewFunctionData = {
9522
9522
  function: "0x1::fungible_asset::is_untransferable",
@@ -9628,7 +9628,7 @@ export namespace fungible_asset {
9628
9628
  functionArguments: [MoveAddressType];
9629
9629
  },
9630
9630
  version?: bigint,
9631
- ): Promise<[Boolean]> {
9631
+ ): Promise<[boolean]> {
9632
9632
  const coder = defaultMoveCoder(client.config.fullnode);
9633
9633
  const data: InputViewFunctionData = {
9634
9634
  function: "0x1::fungible_asset::store_exists",
@@ -9717,7 +9717,7 @@ export namespace staking_config {
9717
9717
  minimum_stake: bigint;
9718
9718
  maximum_stake: bigint;
9719
9719
  recurring_lockup_duration_secs: bigint;
9720
- allow_validator_set_change: Boolean;
9720
+ allow_validator_set_change: boolean;
9721
9721
  rewards_rate: bigint;
9722
9722
  rewards_rate_denominator: bigint;
9723
9723
  voting_power_increase_limit: bigint;
@@ -10037,7 +10037,7 @@ export namespace delegation_pool {
10037
10037
  }
10038
10038
 
10039
10039
  export interface DelegationPoolAllowlisting {
10040
- allowlist: smart_table.SmartTable<MoveAddressType, Boolean>;
10040
+ allowlist: smart_table.SmartTable<MoveAddressType, boolean>;
10041
10041
  }
10042
10042
 
10043
10043
  export namespace DelegationPoolAllowlisting {
@@ -10400,7 +10400,7 @@ export namespace delegation_pool {
10400
10400
  proposal_id: bigint;
10401
10401
  delegation_pool: MoveAddressType;
10402
10402
  num_votes: bigint;
10403
- should_pass: Boolean;
10403
+ should_pass: boolean;
10404
10404
  }
10405
10405
 
10406
10406
  export namespace Vote {
@@ -10445,7 +10445,7 @@ export namespace delegation_pool {
10445
10445
  proposal_id: bigint;
10446
10446
  delegation_pool: MoveAddressType;
10447
10447
  num_votes: bigint;
10448
- should_pass: Boolean;
10448
+ should_pass: boolean;
10449
10449
  }
10450
10450
 
10451
10451
  export namespace VoteEvent {
@@ -10587,7 +10587,7 @@ export namespace delegation_pool {
10587
10587
  account: AptosAccount,
10588
10588
  request: {
10589
10589
  typeArguments: [];
10590
- functionArguments: [MoveAddressType, string, string, string, Boolean];
10590
+ functionArguments: [MoveAddressType, string, string, string, boolean];
10591
10591
  },
10592
10592
  options?: InputGenerateTransactionOptions,
10593
10593
  ): Promise<PendingTransactionResponse> {
@@ -10951,7 +10951,7 @@ export namespace delegation_pool {
10951
10951
  account: AptosAccount,
10952
10952
  request: {
10953
10953
  typeArguments: [];
10954
- functionArguments: [MoveAddressType, bigint, bigint, Boolean];
10954
+ functionArguments: [MoveAddressType, bigint, bigint, boolean];
10955
10955
  },
10956
10956
  options?: InputGenerateTransactionOptions,
10957
10957
  ): Promise<PendingTransactionResponse> {
@@ -11002,7 +11002,7 @@ export namespace delegation_pool {
11002
11002
  functionArguments: [MoveAddressType];
11003
11003
  },
11004
11004
  version?: bigint,
11005
- ): Promise<[Boolean]> {
11005
+ ): Promise<[boolean]> {
11006
11006
  const coder = defaultMoveCoder(client.config.fullnode);
11007
11007
  const data: InputViewFunctionData = {
11008
11008
  function: "0x1::delegation_pool::allowlisting_enabled",
@@ -11137,7 +11137,7 @@ export namespace delegation_pool {
11137
11137
  functionArguments: [MoveAddressType];
11138
11138
  },
11139
11139
  version?: bigint,
11140
- ): Promise<[Boolean]> {
11140
+ ): Promise<[boolean]> {
11141
11141
  const coder = defaultMoveCoder(client.config.fullnode);
11142
11142
  const data: InputViewFunctionData = {
11143
11143
  function: "0x1::delegation_pool::can_withdraw_pending_inactive",
@@ -11160,7 +11160,7 @@ export namespace delegation_pool {
11160
11160
  functionArguments: [MoveAddressType];
11161
11161
  },
11162
11162
  version?: bigint,
11163
- ): Promise<[Boolean]> {
11163
+ ): Promise<[boolean]> {
11164
11164
  const coder = defaultMoveCoder(client.config.fullnode);
11165
11165
  const data: InputViewFunctionData = {
11166
11166
  function: "0x1::delegation_pool::delegation_pool_exists",
@@ -11182,7 +11182,7 @@ export namespace delegation_pool {
11182
11182
  functionArguments: [MoveAddressType, MoveAddressType];
11183
11183
  },
11184
11184
  version?: bigint,
11185
- ): Promise<[Boolean]> {
11185
+ ): Promise<[boolean]> {
11186
11186
  const coder = defaultMoveCoder(client.config.fullnode);
11187
11187
  const data: InputViewFunctionData = {
11188
11188
  function: "0x1::delegation_pool::delegator_allowlisted",
@@ -11315,7 +11315,7 @@ export namespace delegation_pool {
11315
11315
  functionArguments: [MoveAddressType, MoveAddressType];
11316
11316
  },
11317
11317
  version?: bigint,
11318
- ): Promise<[Boolean, bigint]> {
11318
+ ): Promise<[boolean, bigint]> {
11319
11319
  const coder = defaultMoveCoder(client.config.fullnode);
11320
11320
  const data: InputViewFunctionData = {
11321
11321
  function: "0x1::delegation_pool::get_pending_withdrawal",
@@ -11360,7 +11360,7 @@ export namespace delegation_pool {
11360
11360
  functionArguments: [MoveAddressType];
11361
11361
  },
11362
11362
  version?: bigint,
11363
- ): Promise<[Boolean]> {
11363
+ ): Promise<[boolean]> {
11364
11364
  const coder = defaultMoveCoder(client.config.fullnode);
11365
11365
  const data: InputViewFunctionData = {
11366
11366
  function:
@@ -11472,7 +11472,7 @@ export namespace delegation_pool {
11472
11472
  functionArguments: [MoveAddressType];
11473
11473
  },
11474
11474
  version?: bigint,
11475
- ): Promise<[Boolean]> {
11475
+ ): Promise<[boolean]> {
11476
11476
  const coder = defaultMoveCoder(client.config.fullnode);
11477
11477
  const data: InputViewFunctionData = {
11478
11478
  function: "0x1::delegation_pool::owner_cap_exists",
@@ -11494,7 +11494,7 @@ export namespace delegation_pool {
11494
11494
  functionArguments: [MoveAddressType];
11495
11495
  },
11496
11496
  version?: bigint,
11497
- ): Promise<[Boolean]> {
11497
+ ): Promise<[boolean]> {
11498
11498
  const coder = defaultMoveCoder(client.config.fullnode);
11499
11499
  const data: InputViewFunctionData = {
11500
11500
  function: "0x1::delegation_pool::partial_governance_voting_enabled",
@@ -11591,7 +11591,7 @@ export namespace keyless_account {
11591
11591
  }
11592
11592
 
11593
11593
  export interface Group {
11594
- dummy_field: Boolean;
11594
+ dummy_field: boolean;
11595
11595
  }
11596
11596
 
11597
11597
  export namespace Group {
@@ -11626,7 +11626,7 @@ export namespace reconfiguration {
11626
11626
  }
11627
11627
 
11628
11628
  export interface DisableReconfiguration {
11629
- dummy_field: Boolean;
11629
+ dummy_field: boolean;
11630
11630
  }
11631
11631
 
11632
11632
  export namespace DisableReconfiguration {
@@ -11997,7 +11997,7 @@ export namespace aptos_governance {
11997
11997
  voter: MoveAddressType;
11998
11998
  stake_pool: MoveAddressType;
11999
11999
  num_votes: bigint;
12000
- should_pass: Boolean;
12000
+ should_pass: boolean;
12001
12001
  }
12002
12002
 
12003
12003
  export namespace Vote {
@@ -12020,7 +12020,7 @@ export namespace aptos_governance {
12020
12020
  voter: MoveAddressType;
12021
12021
  stake_pool: MoveAddressType;
12022
12022
  num_votes: bigint;
12023
- should_pass: Boolean;
12023
+ should_pass: boolean;
12024
12024
  }
12025
12025
 
12026
12026
  export namespace VoteEvent {
@@ -12039,7 +12039,7 @@ export namespace aptos_governance {
12039
12039
  }
12040
12040
 
12041
12041
  export interface VotingRecords {
12042
- votes: table.Table<aptos_governance.RecordKey, Boolean>;
12042
+ votes: table.Table<aptos_governance.RecordKey, boolean>;
12043
12043
  }
12044
12044
 
12045
12045
  export namespace VotingRecords {
@@ -12098,7 +12098,7 @@ export namespace aptos_governance {
12098
12098
  account: AptosAccount,
12099
12099
  request: {
12100
12100
  typeArguments: [];
12101
- functionArguments: [MoveAddressType[], bigint, bigint, Boolean];
12101
+ functionArguments: [MoveAddressType[], bigint, bigint, boolean];
12102
12102
  },
12103
12103
  options?: InputGenerateTransactionOptions,
12104
12104
  ): Promise<PendingTransactionResponse> {
@@ -12122,7 +12122,7 @@ export namespace aptos_governance {
12122
12122
  account: AptosAccount,
12123
12123
  request: {
12124
12124
  typeArguments: [];
12125
- functionArguments: [MoveAddressType[], bigint, Boolean];
12125
+ functionArguments: [MoveAddressType[], bigint, boolean];
12126
12126
  },
12127
12127
  options?: InputGenerateTransactionOptions,
12128
12128
  ): Promise<PendingTransactionResponse> {
@@ -12170,7 +12170,7 @@ export namespace aptos_governance {
12170
12170
  account: AptosAccount,
12171
12171
  request: {
12172
12172
  typeArguments: [];
12173
- functionArguments: [MoveAddressType, string, string, string, Boolean];
12173
+ functionArguments: [MoveAddressType, string, string, string, boolean];
12174
12174
  },
12175
12175
  options?: InputGenerateTransactionOptions,
12176
12176
  ): Promise<PendingTransactionResponse> {
@@ -12244,7 +12244,7 @@ export namespace aptos_governance {
12244
12244
  account: AptosAccount,
12245
12245
  request: {
12246
12246
  typeArguments: [];
12247
- functionArguments: [MoveAddressType, bigint, bigint, Boolean];
12247
+ functionArguments: [MoveAddressType, bigint, bigint, boolean];
12248
12248
  },
12249
12249
  options?: InputGenerateTransactionOptions,
12250
12250
  ): Promise<PendingTransactionResponse> {
@@ -12293,7 +12293,7 @@ export namespace aptos_governance {
12293
12293
  account: AptosAccount,
12294
12294
  request: {
12295
12295
  typeArguments: [];
12296
- functionArguments: [MoveAddressType, bigint, Boolean];
12296
+ functionArguments: [MoveAddressType, bigint, boolean];
12297
12297
  },
12298
12298
  options?: InputGenerateTransactionOptions,
12299
12299
  ): Promise<PendingTransactionResponse> {
@@ -12425,7 +12425,7 @@ export namespace aptos_governance {
12425
12425
  functionArguments: [MoveAddressType, bigint];
12426
12426
  },
12427
12427
  version?: bigint,
12428
- ): Promise<[Boolean]> {
12428
+ ): Promise<[boolean]> {
12429
12429
  const coder = defaultMoveCoder(client.config.fullnode);
12430
12430
  const data: InputViewFunctionData = {
12431
12431
  function: "0x1::aptos_governance::has_entirely_voted",
@@ -12446,7 +12446,7 @@ export namespace aptos_governance {
12446
12446
 
12447
12447
  export namespace bls12381_algebra {
12448
12448
  export interface FormatFq12LscLsb {
12449
- dummy_field: Boolean;
12449
+ dummy_field: boolean;
12450
12450
  }
12451
12451
 
12452
12452
  export namespace FormatFq12LscLsb {
@@ -12462,7 +12462,7 @@ export namespace bls12381_algebra {
12462
12462
  }
12463
12463
 
12464
12464
  export interface FormatFrLsb {
12465
- dummy_field: Boolean;
12465
+ dummy_field: boolean;
12466
12466
  }
12467
12467
 
12468
12468
  export namespace FormatFrLsb {
@@ -12476,7 +12476,7 @@ export namespace bls12381_algebra {
12476
12476
  }
12477
12477
 
12478
12478
  export interface FormatFrMsb {
12479
- dummy_field: Boolean;
12479
+ dummy_field: boolean;
12480
12480
  }
12481
12481
 
12482
12482
  export namespace FormatFrMsb {
@@ -12490,7 +12490,7 @@ export namespace bls12381_algebra {
12490
12490
  }
12491
12491
 
12492
12492
  export interface FormatG1Compr {
12493
- dummy_field: Boolean;
12493
+ dummy_field: boolean;
12494
12494
  }
12495
12495
 
12496
12496
  export namespace FormatG1Compr {
@@ -12504,7 +12504,7 @@ export namespace bls12381_algebra {
12504
12504
  }
12505
12505
 
12506
12506
  export interface FormatG1Uncompr {
12507
- dummy_field: Boolean;
12507
+ dummy_field: boolean;
12508
12508
  }
12509
12509
 
12510
12510
  export namespace FormatG1Uncompr {
@@ -12520,7 +12520,7 @@ export namespace bls12381_algebra {
12520
12520
  }
12521
12521
 
12522
12522
  export interface FormatG2Compr {
12523
- dummy_field: Boolean;
12523
+ dummy_field: boolean;
12524
12524
  }
12525
12525
 
12526
12526
  export namespace FormatG2Compr {
@@ -12534,7 +12534,7 @@ export namespace bls12381_algebra {
12534
12534
  }
12535
12535
 
12536
12536
  export interface FormatG2Uncompr {
12537
- dummy_field: Boolean;
12537
+ dummy_field: boolean;
12538
12538
  }
12539
12539
 
12540
12540
  export namespace FormatG2Uncompr {
@@ -12550,7 +12550,7 @@ export namespace bls12381_algebra {
12550
12550
  }
12551
12551
 
12552
12552
  export interface FormatGt {
12553
- dummy_field: Boolean;
12553
+ dummy_field: boolean;
12554
12554
  }
12555
12555
 
12556
12556
  export namespace FormatGt {
@@ -12564,7 +12564,7 @@ export namespace bls12381_algebra {
12564
12564
  }
12565
12565
 
12566
12566
  export interface Fq12 {
12567
- dummy_field: Boolean;
12567
+ dummy_field: boolean;
12568
12568
  }
12569
12569
 
12570
12570
  export namespace Fq12 {
@@ -12578,7 +12578,7 @@ export namespace bls12381_algebra {
12578
12578
  }
12579
12579
 
12580
12580
  export interface Fr {
12581
- dummy_field: Boolean;
12581
+ dummy_field: boolean;
12582
12582
  }
12583
12583
 
12584
12584
  export namespace Fr {
@@ -12592,7 +12592,7 @@ export namespace bls12381_algebra {
12592
12592
  }
12593
12593
 
12594
12594
  export interface G1 {
12595
- dummy_field: Boolean;
12595
+ dummy_field: boolean;
12596
12596
  }
12597
12597
 
12598
12598
  export namespace G1 {
@@ -12606,7 +12606,7 @@ export namespace bls12381_algebra {
12606
12606
  }
12607
12607
 
12608
12608
  export interface G2 {
12609
- dummy_field: Boolean;
12609
+ dummy_field: boolean;
12610
12610
  }
12611
12611
 
12612
12612
  export namespace G2 {
@@ -12620,7 +12620,7 @@ export namespace bls12381_algebra {
12620
12620
  }
12621
12621
 
12622
12622
  export interface Gt {
12623
- dummy_field: Boolean;
12623
+ dummy_field: boolean;
12624
12624
  }
12625
12625
 
12626
12626
  export namespace Gt {
@@ -12634,7 +12634,7 @@ export namespace bls12381_algebra {
12634
12634
  }
12635
12635
 
12636
12636
  export interface HashG1XmdSha256SswuRo {
12637
- dummy_field: Boolean;
12637
+ dummy_field: boolean;
12638
12638
  }
12639
12639
 
12640
12640
  export namespace HashG1XmdSha256SswuRo {
@@ -12650,7 +12650,7 @@ export namespace bls12381_algebra {
12650
12650
  }
12651
12651
 
12652
12652
  export interface HashG2XmdSha256SswuRo {
12653
- dummy_field: Boolean;
12653
+ dummy_field: boolean;
12654
12654
  }
12655
12655
 
12656
12656
  export namespace HashG2XmdSha256SswuRo {
@@ -13010,7 +13010,7 @@ export namespace multisig_account {
13010
13010
  export interface MultisigTransaction {
13011
13011
  payload: option.Option<string>;
13012
13012
  payload_hash: option.Option<string>;
13013
- votes: simple_map.SimpleMap<MoveAddressType, Boolean>;
13013
+ votes: simple_map.SimpleMap<MoveAddressType, boolean>;
13014
13014
  creator: MoveAddressType;
13015
13015
  creation_time_secs: bigint;
13016
13016
  }
@@ -13236,7 +13236,7 @@ export namespace multisig_account {
13236
13236
  multisig_account: MoveAddressType;
13237
13237
  owner: MoveAddressType;
13238
13238
  sequence_number: bigint;
13239
- approved: Boolean;
13239
+ approved: boolean;
13240
13240
  }
13241
13241
 
13242
13242
  export namespace Vote {
@@ -13257,7 +13257,7 @@ export namespace multisig_account {
13257
13257
  export interface VoteEvent {
13258
13258
  owner: MoveAddressType;
13259
13259
  sequence_number: bigint;
13260
- approved: Boolean;
13260
+ approved: boolean;
13261
13261
  }
13262
13262
 
13263
13263
  export namespace VoteEvent {
@@ -13859,7 +13859,7 @@ export namespace multisig_account {
13859
13859
  account: AptosAccount,
13860
13860
  request: {
13861
13861
  typeArguments: [];
13862
- functionArguments: [MoveAddressType, bigint, Boolean];
13862
+ functionArguments: [MoveAddressType, bigint, boolean];
13863
13863
  },
13864
13864
  options?: InputGenerateTransactionOptions,
13865
13865
  ): Promise<PendingTransactionResponse> {
@@ -13883,7 +13883,7 @@ export namespace multisig_account {
13883
13883
  account: AptosAccount,
13884
13884
  request: {
13885
13885
  typeArguments: [];
13886
- functionArguments: [MoveAddressType, bigint, bigint, Boolean];
13886
+ functionArguments: [MoveAddressType, bigint, bigint, boolean];
13887
13887
  },
13888
13888
  options?: InputGenerateTransactionOptions,
13889
13889
  ): Promise<PendingTransactionResponse> {
@@ -13907,7 +13907,7 @@ export namespace multisig_account {
13907
13907
  account: AptosAccount,
13908
13908
  request: {
13909
13909
  typeArguments: [];
13910
- functionArguments: [MoveAddressType, bigint, Boolean];
13910
+ functionArguments: [MoveAddressType, bigint, boolean];
13911
13911
  },
13912
13912
  options?: InputGenerateTransactionOptions,
13913
13913
  ): Promise<PendingTransactionResponse> {
@@ -13956,7 +13956,7 @@ export namespace multisig_account {
13956
13956
  functionArguments: [MoveAddressType, bigint];
13957
13957
  },
13958
13958
  version?: bigint,
13959
- ): Promise<[Boolean]> {
13959
+ ): Promise<[boolean]> {
13960
13960
  const coder = defaultMoveCoder(client.config.fullnode);
13961
13961
  const data: InputViewFunctionData = {
13962
13962
  function: "0x1::multisig_account::can_be_executed",
@@ -13978,7 +13978,7 @@ export namespace multisig_account {
13978
13978
  functionArguments: [MoveAddressType, bigint];
13979
13979
  },
13980
13980
  version?: bigint,
13981
- ): Promise<[Boolean]> {
13981
+ ): Promise<[boolean]> {
13982
13982
  const coder = defaultMoveCoder(client.config.fullnode);
13983
13983
  const data: InputViewFunctionData = {
13984
13984
  function: "0x1::multisig_account::can_be_rejected",
@@ -14000,7 +14000,7 @@ export namespace multisig_account {
14000
14000
  functionArguments: [MoveAddressType, MoveAddressType, bigint];
14001
14001
  },
14002
14002
  version?: bigint,
14003
- ): Promise<[Boolean]> {
14003
+ ): Promise<[boolean]> {
14004
14004
  const coder = defaultMoveCoder(client.config.fullnode);
14005
14005
  const data: InputViewFunctionData = {
14006
14006
  function: "0x1::multisig_account::can_execute",
@@ -14022,7 +14022,7 @@ export namespace multisig_account {
14022
14022
  functionArguments: [MoveAddressType, MoveAddressType, bigint];
14023
14023
  },
14024
14024
  version?: bigint,
14025
- ): Promise<[Boolean]> {
14025
+ ): Promise<[boolean]> {
14026
14026
  const coder = defaultMoveCoder(client.config.fullnode);
14027
14027
  const data: InputViewFunctionData = {
14028
14028
  function: "0x1::multisig_account::can_reject",
@@ -14133,7 +14133,7 @@ export namespace multisig_account {
14133
14133
  functionArguments: [MoveAddressType, MoveAddressType];
14134
14134
  },
14135
14135
  version?: bigint,
14136
- ): Promise<[Boolean]> {
14136
+ ): Promise<[boolean]> {
14137
14137
  const coder = defaultMoveCoder(client.config.fullnode);
14138
14138
  const data: InputViewFunctionData = {
14139
14139
  function: "0x1::multisig_account::is_owner",
@@ -14264,7 +14264,7 @@ export namespace multisig_account {
14264
14264
  functionArguments: [MoveAddressType, bigint, MoveAddressType];
14265
14265
  },
14266
14266
  version?: bigint,
14267
- ): Promise<[Boolean, Boolean]> {
14267
+ ): Promise<[boolean, boolean]> {
14268
14268
  const coder = defaultMoveCoder(client.config.fullnode);
14269
14269
  const data: InputViewFunctionData = {
14270
14270
  function: "0x1::multisig_account::vote",
@@ -14744,7 +14744,7 @@ export namespace staking_contract {
14744
14744
  }
14745
14745
 
14746
14746
  export interface StakingGroupContainer {
14747
- dummy_field: Boolean;
14747
+ dummy_field: boolean;
14748
14748
  }
14749
14749
 
14750
14750
  export namespace StakingGroupContainer {
@@ -15456,7 +15456,7 @@ export namespace staking_contract {
15456
15456
  functionArguments: [MoveAddressType, MoveAddressType];
15457
15457
  },
15458
15458
  version?: bigint,
15459
- ): Promise<[Boolean]> {
15459
+ ): Promise<[boolean]> {
15460
15460
  const coder = defaultMoveCoder(client.config.fullnode);
15461
15461
  const data: InputViewFunctionData = {
15462
15462
  function: "0x1::staking_contract::staking_contract_exists",
@@ -15482,7 +15482,7 @@ export namespace system_addresses {
15482
15482
 
15483
15483
  export namespace randomness_config {
15484
15484
  export interface ConfigOff {
15485
- dummy_field: Boolean;
15485
+ dummy_field: boolean;
15486
15486
  }
15487
15487
 
15488
15488
  export namespace ConfigOff {
@@ -15615,7 +15615,7 @@ export namespace aggregator_factory {
15615
15615
 
15616
15616
  export namespace governance_proposal {
15617
15617
  export interface GovernanceProposal {
15618
- dummy_field: Boolean;
15618
+ dummy_field: boolean;
15619
15619
  }
15620
15620
 
15621
15621
  export namespace GovernanceProposal {
@@ -15740,7 +15740,7 @@ export namespace transaction_context {
15740
15740
 
15741
15741
  export namespace jwk_consensus_config {
15742
15742
  export interface ConfigOff {
15743
- dummy_field: Boolean;
15743
+ dummy_field: boolean;
15744
15744
  }
15745
15745
 
15746
15746
  export namespace ConfigOff {
@@ -15924,7 +15924,7 @@ export namespace reconfiguration_state {
15924
15924
  }
15925
15925
 
15926
15926
  export interface StateInactive {
15927
- dummy_field: Boolean;
15927
+ dummy_field: boolean;
15928
15928
  }
15929
15929
 
15930
15930
  export namespace StateInactive {
@@ -16222,7 +16222,7 @@ export namespace primary_fungible_store {
16222
16222
  functionArguments: [MoveAddressType, object_.Object<T0>, bigint];
16223
16223
  },
16224
16224
  version?: bigint,
16225
- ): Promise<[Boolean]> {
16225
+ ): Promise<[boolean]> {
16226
16226
  const coder = defaultMoveCoder(client.config.fullnode);
16227
16227
  const data: InputViewFunctionData = {
16228
16228
  function: "0x1::primary_fungible_store::is_balance_at_least",
@@ -16245,7 +16245,7 @@ export namespace primary_fungible_store {
16245
16245
  functionArguments: [MoveAddressType, object_.Object<T0>];
16246
16246
  },
16247
16247
  version?: bigint,
16248
- ): Promise<[Boolean]> {
16248
+ ): Promise<[boolean]> {
16249
16249
  const coder = defaultMoveCoder(client.config.fullnode);
16250
16250
  const data: InputViewFunctionData = {
16251
16251
  function: "0x1::primary_fungible_store::is_frozen",
@@ -16315,7 +16315,7 @@ export namespace primary_fungible_store {
16315
16315
  functionArguments: [MoveAddressType, object_.Object<T0>];
16316
16316
  },
16317
16317
  version?: bigint,
16318
- ): Promise<[Boolean]> {
16318
+ ): Promise<[boolean]> {
16319
16319
  const coder = defaultMoveCoder(client.config.fullnode);
16320
16320
  const data: InputViewFunctionData = {
16321
16321
  function: "0x1::primary_fungible_store::primary_store_exists",
@@ -16363,7 +16363,7 @@ export namespace transaction_validation {
16363
16363
 
16364
16364
  export namespace randomness_api_v0_config {
16365
16365
  export interface AllowCustomMaxGasFlag {
16366
- value: Boolean;
16366
+ value: boolean;
16367
16367
  }
16368
16368
 
16369
16369
  export namespace AllowCustomMaxGasFlag {