@typemove/aptos 1.6.7-rc.4 → 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.
- package/dist/cjs/builtin/0x1.d.ts +133 -133
- package/dist/cjs/builtin/0x3.d.ts +14 -14
- package/dist/cjs/builtin/0x4.d.ts +23 -23
- package/dist/esm/builtin/0x1.d.ts +133 -133
- package/dist/esm/builtin/0x3.d.ts +14 -14
- package/dist/esm/builtin/0x4.d.ts +23 -23
- package/package.json +2 -2
- package/src/builtin/0x1.ts +133 -133
- package/src/builtin/0x3.ts +14 -14
- package/src/builtin/0x4.ts +23 -23
- package/src/tests/types/0x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861af.ts +26 -26
- package/src/tests/types/0xbd35135844473187163ca197ca93b2ab014370587bb0ed3befff9e902d6bb541.ts +20 -20
|
@@ -153,7 +153,7 @@ export declare namespace code {
|
|
|
153
153
|
}
|
|
154
154
|
interface PublishPackage {
|
|
155
155
|
code_address: MoveAddressType;
|
|
156
|
-
is_upgrade:
|
|
156
|
+
is_upgrade: boolean;
|
|
157
157
|
}
|
|
158
158
|
namespace PublishPackage {
|
|
159
159
|
const TYPE_QNAME = "0x1::code::PublishPackage";
|
|
@@ -191,7 +191,7 @@ export declare namespace coin {
|
|
|
191
191
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<AggregatableCoin<T0>>;
|
|
192
192
|
}
|
|
193
193
|
interface BurnCapability<T0> {
|
|
194
|
-
dummy_field:
|
|
194
|
+
dummy_field: boolean;
|
|
195
195
|
}
|
|
196
196
|
namespace BurnCapability {
|
|
197
197
|
const TYPE_QNAME = "0x1::coin::BurnCapability";
|
|
@@ -256,7 +256,7 @@ export declare namespace coin {
|
|
|
256
256
|
}
|
|
257
257
|
interface CoinStore<T0> {
|
|
258
258
|
coin: coin.Coin<T0>;
|
|
259
|
-
frozen:
|
|
259
|
+
frozen: boolean;
|
|
260
260
|
deposit_events: event.EventHandle<coin.DepositEvent>;
|
|
261
261
|
withdraw_events: event.EventHandle<coin.WithdrawEvent>;
|
|
262
262
|
}
|
|
@@ -301,21 +301,21 @@ export declare namespace coin {
|
|
|
301
301
|
type_arguments: [];
|
|
302
302
|
}
|
|
303
303
|
interface FreezeCapability<T0> {
|
|
304
|
-
dummy_field:
|
|
304
|
+
dummy_field: boolean;
|
|
305
305
|
}
|
|
306
306
|
namespace FreezeCapability {
|
|
307
307
|
const TYPE_QNAME = "0x1::coin::FreezeCapability";
|
|
308
308
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<FreezeCapability<T0>>;
|
|
309
309
|
}
|
|
310
310
|
interface MigrationFlag {
|
|
311
|
-
dummy_field:
|
|
311
|
+
dummy_field: boolean;
|
|
312
312
|
}
|
|
313
313
|
namespace MigrationFlag {
|
|
314
314
|
const TYPE_QNAME = "0x1::coin::MigrationFlag";
|
|
315
315
|
function type(): TypeDescriptor<MigrationFlag>;
|
|
316
316
|
}
|
|
317
317
|
interface MintCapability<T0> {
|
|
318
|
-
dummy_field:
|
|
318
|
+
dummy_field: boolean;
|
|
319
319
|
}
|
|
320
320
|
namespace MintCapability {
|
|
321
321
|
const TYPE_QNAME = "0x1::coin::MintCapability";
|
|
@@ -357,7 +357,7 @@ export declare namespace coin {
|
|
|
357
357
|
function type(): TypeDescriptor<PairedFungibleAssetRefs>;
|
|
358
358
|
}
|
|
359
359
|
interface SupplyConfig {
|
|
360
|
-
allow_upgrades:
|
|
360
|
+
allow_upgrades: boolean;
|
|
361
361
|
}
|
|
362
362
|
namespace SupplyConfig {
|
|
363
363
|
const TYPE_QNAME = "0x1::coin::SupplyConfig";
|
|
@@ -437,24 +437,24 @@ export declare namespace coin {
|
|
|
437
437
|
function isAccountRegistered<T0 = any>(client: Aptos, request: {
|
|
438
438
|
typeArguments: [MoveStructId];
|
|
439
439
|
functionArguments: [MoveAddressType];
|
|
440
|
-
}, version?: bigint): Promise<[
|
|
440
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
441
441
|
function isBalanceAtLeast<T0 = any>(client: Aptos, request: {
|
|
442
442
|
typeArguments: [MoveStructId];
|
|
443
443
|
functionArguments: [MoveAddressType, bigint];
|
|
444
|
-
}, version?: bigint): Promise<[
|
|
444
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
445
445
|
function isCoinInitialized<T0 = any>(client: Aptos, request: {
|
|
446
446
|
typeArguments: [MoveStructId];
|
|
447
|
-
}, version?: bigint): Promise<[
|
|
447
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
448
448
|
function isCoinStoreFrozen<T0 = any>(client: Aptos, request: {
|
|
449
449
|
typeArguments: [MoveStructId];
|
|
450
450
|
functionArguments: [MoveAddressType];
|
|
451
|
-
}, version?: bigint): Promise<[
|
|
451
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
452
452
|
function name<T0 = any>(client: Aptos, request: {
|
|
453
453
|
typeArguments: [MoveStructId];
|
|
454
454
|
}, version?: bigint): Promise<[string]>;
|
|
455
455
|
function pairedBurnRefExists<T0 = any>(client: Aptos, request: {
|
|
456
456
|
typeArguments: [MoveStructId];
|
|
457
|
-
}, version?: bigint): Promise<[
|
|
457
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
458
458
|
function pairedCoin(client: Aptos, request: {
|
|
459
459
|
functionArguments: [object_.Object<fungible_asset.Metadata>];
|
|
460
460
|
}, version?: bigint): Promise<[option.Option<type_info.TypeInfo>]>;
|
|
@@ -463,10 +463,10 @@ export declare namespace coin {
|
|
|
463
463
|
}, version?: bigint): Promise<[option.Option<object_.Object<fungible_asset.Metadata>>]>;
|
|
464
464
|
function pairedMintRefExists<T0 = any>(client: Aptos, request: {
|
|
465
465
|
typeArguments: [MoveStructId];
|
|
466
|
-
}, version?: bigint): Promise<[
|
|
466
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
467
467
|
function pairedTransferRefExists<T0 = any>(client: Aptos, request: {
|
|
468
468
|
typeArguments: [MoveStructId];
|
|
469
|
-
}, version?: bigint): Promise<[
|
|
469
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
470
470
|
function supply<T0 = any>(client: Aptos, request: {
|
|
471
471
|
typeArguments: [MoveStructId];
|
|
472
472
|
}, version?: bigint): Promise<[option.Option<bigint>]>;
|
|
@@ -583,7 +583,7 @@ export declare namespace jwks {
|
|
|
583
583
|
type_arguments: [];
|
|
584
584
|
}
|
|
585
585
|
interface PatchRemoveAll {
|
|
586
|
-
dummy_field:
|
|
586
|
+
dummy_field: boolean;
|
|
587
587
|
}
|
|
588
588
|
namespace PatchRemoveAll {
|
|
589
589
|
const TYPE_QNAME = "0x1::jwks::PatchRemoveAll";
|
|
@@ -1308,7 +1308,7 @@ export declare namespace stake {
|
|
|
1308
1308
|
}, version?: bigint): Promise<[bigint]>;
|
|
1309
1309
|
function stakePoolExists(client: Aptos, request: {
|
|
1310
1310
|
functionArguments: [MoveAddressType];
|
|
1311
|
-
}, version?: bigint): Promise<[
|
|
1311
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
1312
1312
|
}
|
|
1313
1313
|
}
|
|
1314
1314
|
export declare namespace table {
|
|
@@ -1340,7 +1340,7 @@ export declare namespace math64 {
|
|
|
1340
1340
|
export declare namespace object_ {
|
|
1341
1341
|
interface ConstructorRef {
|
|
1342
1342
|
self: MoveAddressType;
|
|
1343
|
-
can_delete:
|
|
1343
|
+
can_delete: boolean;
|
|
1344
1344
|
}
|
|
1345
1345
|
namespace ConstructorRef {
|
|
1346
1346
|
const TYPE_QNAME = "0x1::object::ConstructorRef";
|
|
@@ -1401,7 +1401,7 @@ export declare namespace object_ {
|
|
|
1401
1401
|
interface ObjectCore {
|
|
1402
1402
|
guid_creation_num: bigint;
|
|
1403
1403
|
owner: MoveAddressType;
|
|
1404
|
-
allow_ungated_transfer:
|
|
1404
|
+
allow_ungated_transfer: boolean;
|
|
1405
1405
|
transfer_events: event.EventHandle<object_.TransferEvent>;
|
|
1406
1406
|
}
|
|
1407
1407
|
namespace ObjectCore {
|
|
@@ -1409,7 +1409,7 @@ export declare namespace object_ {
|
|
|
1409
1409
|
function type(): TypeDescriptor<ObjectCore>;
|
|
1410
1410
|
}
|
|
1411
1411
|
interface ObjectGroup {
|
|
1412
|
-
dummy_field:
|
|
1412
|
+
dummy_field: boolean;
|
|
1413
1413
|
}
|
|
1414
1414
|
namespace ObjectGroup {
|
|
1415
1415
|
const TYPE_QNAME = "0x1::object::ObjectGroup";
|
|
@@ -1460,7 +1460,7 @@ export declare namespace object_ {
|
|
|
1460
1460
|
type_arguments: [];
|
|
1461
1461
|
}
|
|
1462
1462
|
interface Untransferable {
|
|
1463
|
-
dummy_field:
|
|
1463
|
+
dummy_field: boolean;
|
|
1464
1464
|
}
|
|
1465
1465
|
namespace Untransferable {
|
|
1466
1466
|
const TYPE_QNAME = "0x1::object::Untransferable";
|
|
@@ -1492,11 +1492,11 @@ export declare namespace object_ {
|
|
|
1492
1492
|
function isBurnt<T0 = any>(client: Aptos, request: {
|
|
1493
1493
|
typeArguments: [MoveStructId];
|
|
1494
1494
|
functionArguments: [object_.Object<T0>];
|
|
1495
|
-
}, version?: bigint): Promise<[
|
|
1495
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
1496
1496
|
function isUntransferable<T0 = any>(client: Aptos, request: {
|
|
1497
1497
|
typeArguments: [MoveStructId];
|
|
1498
1498
|
functionArguments: [object_.Object<T0>];
|
|
1499
|
-
}, version?: bigint): Promise<[
|
|
1499
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
1500
1500
|
}
|
|
1501
1501
|
}
|
|
1502
1502
|
export declare namespace option {
|
|
@@ -1581,7 +1581,7 @@ export declare namespace voting {
|
|
|
1581
1581
|
early_resolution_vote_threshold: option.Option<bigint>;
|
|
1582
1582
|
yes_votes: bigint;
|
|
1583
1583
|
no_votes: bigint;
|
|
1584
|
-
is_resolved:
|
|
1584
|
+
is_resolved: boolean;
|
|
1585
1585
|
resolution_time_secs: bigint;
|
|
1586
1586
|
}
|
|
1587
1587
|
namespace Proposal {
|
|
@@ -1616,7 +1616,7 @@ export declare namespace voting {
|
|
|
1616
1616
|
proposal_id: bigint;
|
|
1617
1617
|
yes_votes: bigint;
|
|
1618
1618
|
no_votes: bigint;
|
|
1619
|
-
resolved_early:
|
|
1619
|
+
resolved_early: boolean;
|
|
1620
1620
|
}
|
|
1621
1621
|
namespace ResolveProposal {
|
|
1622
1622
|
const TYPE_QNAME = "0x1::voting::ResolveProposal";
|
|
@@ -1718,15 +1718,15 @@ export declare namespace voting {
|
|
|
1718
1718
|
function isMultiStepProposalInExecution<T0 = any>(client: Aptos, request: {
|
|
1719
1719
|
typeArguments: [MoveStructId];
|
|
1720
1720
|
functionArguments: [MoveAddressType, bigint];
|
|
1721
|
-
}, version?: bigint): Promise<[
|
|
1721
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
1722
1722
|
function isResolved<T0 = any>(client: Aptos, request: {
|
|
1723
1723
|
typeArguments: [MoveStructId];
|
|
1724
1724
|
functionArguments: [MoveAddressType, bigint];
|
|
1725
|
-
}, version?: bigint): Promise<[
|
|
1725
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
1726
1726
|
function isVotingClosed<T0 = any>(client: Aptos, request: {
|
|
1727
1727
|
typeArguments: [MoveStructId];
|
|
1728
1728
|
functionArguments: [MoveAddressType, bigint];
|
|
1729
|
-
}, version?: bigint): Promise<[
|
|
1729
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
1730
1730
|
function nextProposalId<T0 = any>(client: Aptos, request: {
|
|
1731
1731
|
typeArguments: [MoveStructId];
|
|
1732
1732
|
functionArguments: [MoveAddressType];
|
|
@@ -1905,7 +1905,7 @@ export declare namespace account {
|
|
|
1905
1905
|
namespace view {
|
|
1906
1906
|
function existsAt(client: Aptos, request: {
|
|
1907
1907
|
functionArguments: [MoveAddressType];
|
|
1908
|
-
}, version?: bigint): Promise<[
|
|
1908
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
1909
1909
|
function getAuthenticationKey(client: Aptos, request: {
|
|
1910
1910
|
functionArguments: [MoveAddressType];
|
|
1911
1911
|
}, version?: bigint): Promise<[string]>;
|
|
@@ -1923,10 +1923,10 @@ export declare namespace account {
|
|
|
1923
1923
|
}, version?: bigint): Promise<[MoveAddressType]>;
|
|
1924
1924
|
function isRotationCapabilityOffered(client: Aptos, request: {
|
|
1925
1925
|
functionArguments: [MoveAddressType];
|
|
1926
|
-
}, version?: bigint): Promise<[
|
|
1926
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
1927
1927
|
function isSignerCapabilityOffered(client: Aptos, request: {
|
|
1928
1928
|
functionArguments: [MoveAddressType];
|
|
1929
|
-
}, version?: bigint): Promise<[
|
|
1929
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
1930
1930
|
}
|
|
1931
1931
|
}
|
|
1932
1932
|
export declare namespace ed25519 {
|
|
@@ -2011,7 +2011,7 @@ export declare namespace genesis {
|
|
|
2011
2011
|
interface ValidatorConfigurationWithCommission {
|
|
2012
2012
|
validator_config: genesis.ValidatorConfiguration;
|
|
2013
2013
|
commission_percentage: bigint;
|
|
2014
|
-
join_during_genesis:
|
|
2014
|
+
join_during_genesis: boolean;
|
|
2015
2015
|
}
|
|
2016
2016
|
namespace ValidatorConfigurationWithCommission {
|
|
2017
2017
|
const TYPE_QNAME = "0x1::genesis::ValidatorConfigurationWithCommission";
|
|
@@ -2026,7 +2026,7 @@ export declare namespace math128 {
|
|
|
2026
2026
|
}
|
|
2027
2027
|
export declare namespace version {
|
|
2028
2028
|
interface SetVersionCapability {
|
|
2029
|
-
dummy_field:
|
|
2029
|
+
dummy_field: boolean;
|
|
2030
2030
|
}
|
|
2031
2031
|
namespace SetVersionCapability {
|
|
2032
2032
|
const TYPE_QNAME = "0x1::version::SetVersionCapability";
|
|
@@ -2629,7 +2629,7 @@ export declare namespace features {
|
|
|
2629
2629
|
namespace view {
|
|
2630
2630
|
function isEnabled(client: Aptos, request: {
|
|
2631
2631
|
functionArguments: [bigint];
|
|
2632
|
-
}, version?: bigint): Promise<[
|
|
2632
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
2633
2633
|
}
|
|
2634
2634
|
}
|
|
2635
2635
|
export declare namespace from_bcs {
|
|
@@ -2724,7 +2724,7 @@ export declare namespace aggregator {
|
|
|
2724
2724
|
}
|
|
2725
2725
|
export declare namespace aptos_coin {
|
|
2726
2726
|
interface AptosCoin {
|
|
2727
|
-
dummy_field:
|
|
2727
|
+
dummy_field: boolean;
|
|
2728
2728
|
}
|
|
2729
2729
|
namespace AptosCoin {
|
|
2730
2730
|
const TYPE_QNAME = "0x1::aptos_coin::AptosCoin";
|
|
@@ -2787,7 +2787,7 @@ export declare namespace big_vector {
|
|
|
2787
2787
|
export declare namespace bit_vector {
|
|
2788
2788
|
interface BitVector {
|
|
2789
2789
|
length: bigint;
|
|
2790
|
-
bit_field:
|
|
2790
|
+
bit_field: boolean[];
|
|
2791
2791
|
}
|
|
2792
2792
|
namespace BitVector {
|
|
2793
2793
|
const TYPE_QNAME = "0x1::bit_vector::BitVector";
|
|
@@ -2858,7 +2858,7 @@ export declare namespace randomness {
|
|
|
2858
2858
|
function type(): TypeDescriptor<PerBlockRandomness>;
|
|
2859
2859
|
}
|
|
2860
2860
|
interface RandomnessGeneratedEvent {
|
|
2861
|
-
dummy_field:
|
|
2861
|
+
dummy_field: boolean;
|
|
2862
2862
|
}
|
|
2863
2863
|
namespace RandomnessGeneratedEvent {
|
|
2864
2864
|
const TYPE_QNAME = "0x1::randomness::RandomnessGeneratedEvent";
|
|
@@ -2992,7 +2992,7 @@ export declare namespace storage_gas {
|
|
|
2992
2992
|
}
|
|
2993
2993
|
export declare namespace chain_status {
|
|
2994
2994
|
interface GenesisEndMarker {
|
|
2995
|
-
dummy_field:
|
|
2995
|
+
dummy_field: boolean;
|
|
2996
2996
|
}
|
|
2997
2997
|
namespace GenesisEndMarker {
|
|
2998
2998
|
const TYPE_QNAME = "0x1::chain_status::GenesisEndMarker";
|
|
@@ -3000,8 +3000,8 @@ export declare namespace chain_status {
|
|
|
3000
3000
|
}
|
|
3001
3001
|
namespace entry { }
|
|
3002
3002
|
namespace view {
|
|
3003
|
-
function isGenesis(client: Aptos, version?: bigint): Promise<[
|
|
3004
|
-
function isOperating(client: Aptos, version?: bigint): Promise<[
|
|
3003
|
+
function isGenesis(client: Aptos, version?: bigint): Promise<[boolean]>;
|
|
3004
|
+
function isOperating(client: Aptos, version?: bigint): Promise<[boolean]>;
|
|
3005
3005
|
}
|
|
3006
3006
|
}
|
|
3007
3007
|
export declare namespace copyable_any {
|
|
@@ -3076,7 +3076,7 @@ export declare namespace managed_coin {
|
|
|
3076
3076
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
3077
3077
|
function initialize<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
|
3078
3078
|
typeArguments: [MoveStructId];
|
|
3079
|
-
functionArguments: [string, string, number,
|
|
3079
|
+
functionArguments: [string, string, number, boolean];
|
|
3080
3080
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
3081
3081
|
function mint<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
|
3082
3082
|
typeArguments: [MoveStructId];
|
|
@@ -3166,7 +3166,7 @@ export declare namespace string_utils {
|
|
|
3166
3166
|
type_arguments: [string, string];
|
|
3167
3167
|
}
|
|
3168
3168
|
interface NIL {
|
|
3169
|
-
dummy_field:
|
|
3169
|
+
dummy_field: boolean;
|
|
3170
3170
|
}
|
|
3171
3171
|
namespace NIL {
|
|
3172
3172
|
const TYPE_QNAME = "0x1::string_utils::NIL";
|
|
@@ -3221,7 +3221,7 @@ export declare namespace aggregator_v2 {
|
|
|
3221
3221
|
export declare namespace aptos_account {
|
|
3222
3222
|
interface DirectCoinTransferConfigUpdated {
|
|
3223
3223
|
account: MoveAddressType;
|
|
3224
|
-
new_allow_direct_transfers:
|
|
3224
|
+
new_allow_direct_transfers: boolean;
|
|
3225
3225
|
}
|
|
3226
3226
|
namespace DirectCoinTransferConfigUpdated {
|
|
3227
3227
|
const TYPE_QNAME = "0x1::aptos_account::DirectCoinTransferConfigUpdated";
|
|
@@ -3232,7 +3232,7 @@ export declare namespace aptos_account {
|
|
|
3232
3232
|
type_arguments: [];
|
|
3233
3233
|
}
|
|
3234
3234
|
interface DirectCoinTransferConfigUpdatedEvent {
|
|
3235
|
-
new_allow_direct_transfers:
|
|
3235
|
+
new_allow_direct_transfers: boolean;
|
|
3236
3236
|
}
|
|
3237
3237
|
namespace DirectCoinTransferConfigUpdatedEvent {
|
|
3238
3238
|
const TYPE_QNAME = "0x1::aptos_account::DirectCoinTransferConfigUpdatedEvent";
|
|
@@ -3243,7 +3243,7 @@ export declare namespace aptos_account {
|
|
|
3243
3243
|
type_arguments: [];
|
|
3244
3244
|
}
|
|
3245
3245
|
interface DirectTransferConfig {
|
|
3246
|
-
allow_arbitrary_coin_transfers:
|
|
3246
|
+
allow_arbitrary_coin_transfers: boolean;
|
|
3247
3247
|
update_coin_transfer_events: event.EventHandle<aptos_account.DirectCoinTransferConfigUpdatedEvent>;
|
|
3248
3248
|
}
|
|
3249
3249
|
namespace DirectTransferConfig {
|
|
@@ -3269,7 +3269,7 @@ export declare namespace aptos_account {
|
|
|
3269
3269
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
3270
3270
|
function setAllowDirectCoinTransfers(client: Aptos, account: AptosAccount, request: {
|
|
3271
3271
|
typeArguments: [];
|
|
3272
|
-
functionArguments: [
|
|
3272
|
+
functionArguments: [boolean];
|
|
3273
3273
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
3274
3274
|
function transfer(client: Aptos, account: AptosAccount, request: {
|
|
3275
3275
|
typeArguments: [];
|
|
@@ -3283,117 +3283,117 @@ export declare namespace aptos_account {
|
|
|
3283
3283
|
namespace view {
|
|
3284
3284
|
function canReceiveDirectCoinTransfers(client: Aptos, request: {
|
|
3285
3285
|
functionArguments: [MoveAddressType];
|
|
3286
|
-
}, version?: bigint): Promise<[
|
|
3286
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
3287
3287
|
}
|
|
3288
3288
|
}
|
|
3289
3289
|
export declare namespace bn254_algebra {
|
|
3290
3290
|
interface FormatFq12LscLsb {
|
|
3291
|
-
dummy_field:
|
|
3291
|
+
dummy_field: boolean;
|
|
3292
3292
|
}
|
|
3293
3293
|
namespace FormatFq12LscLsb {
|
|
3294
3294
|
const TYPE_QNAME = "0x1::bn254_algebra::FormatFq12LscLsb";
|
|
3295
3295
|
function type(): TypeDescriptor<FormatFq12LscLsb>;
|
|
3296
3296
|
}
|
|
3297
3297
|
interface FormatFqLsb {
|
|
3298
|
-
dummy_field:
|
|
3298
|
+
dummy_field: boolean;
|
|
3299
3299
|
}
|
|
3300
3300
|
namespace FormatFqLsb {
|
|
3301
3301
|
const TYPE_QNAME = "0x1::bn254_algebra::FormatFqLsb";
|
|
3302
3302
|
function type(): TypeDescriptor<FormatFqLsb>;
|
|
3303
3303
|
}
|
|
3304
3304
|
interface FormatFqMsb {
|
|
3305
|
-
dummy_field:
|
|
3305
|
+
dummy_field: boolean;
|
|
3306
3306
|
}
|
|
3307
3307
|
namespace FormatFqMsb {
|
|
3308
3308
|
const TYPE_QNAME = "0x1::bn254_algebra::FormatFqMsb";
|
|
3309
3309
|
function type(): TypeDescriptor<FormatFqMsb>;
|
|
3310
3310
|
}
|
|
3311
3311
|
interface FormatFrLsb {
|
|
3312
|
-
dummy_field:
|
|
3312
|
+
dummy_field: boolean;
|
|
3313
3313
|
}
|
|
3314
3314
|
namespace FormatFrLsb {
|
|
3315
3315
|
const TYPE_QNAME = "0x1::bn254_algebra::FormatFrLsb";
|
|
3316
3316
|
function type(): TypeDescriptor<FormatFrLsb>;
|
|
3317
3317
|
}
|
|
3318
3318
|
interface FormatFrMsb {
|
|
3319
|
-
dummy_field:
|
|
3319
|
+
dummy_field: boolean;
|
|
3320
3320
|
}
|
|
3321
3321
|
namespace FormatFrMsb {
|
|
3322
3322
|
const TYPE_QNAME = "0x1::bn254_algebra::FormatFrMsb";
|
|
3323
3323
|
function type(): TypeDescriptor<FormatFrMsb>;
|
|
3324
3324
|
}
|
|
3325
3325
|
interface FormatG1Compr {
|
|
3326
|
-
dummy_field:
|
|
3326
|
+
dummy_field: boolean;
|
|
3327
3327
|
}
|
|
3328
3328
|
namespace FormatG1Compr {
|
|
3329
3329
|
const TYPE_QNAME = "0x1::bn254_algebra::FormatG1Compr";
|
|
3330
3330
|
function type(): TypeDescriptor<FormatG1Compr>;
|
|
3331
3331
|
}
|
|
3332
3332
|
interface FormatG1Uncompr {
|
|
3333
|
-
dummy_field:
|
|
3333
|
+
dummy_field: boolean;
|
|
3334
3334
|
}
|
|
3335
3335
|
namespace FormatG1Uncompr {
|
|
3336
3336
|
const TYPE_QNAME = "0x1::bn254_algebra::FormatG1Uncompr";
|
|
3337
3337
|
function type(): TypeDescriptor<FormatG1Uncompr>;
|
|
3338
3338
|
}
|
|
3339
3339
|
interface FormatG2Compr {
|
|
3340
|
-
dummy_field:
|
|
3340
|
+
dummy_field: boolean;
|
|
3341
3341
|
}
|
|
3342
3342
|
namespace FormatG2Compr {
|
|
3343
3343
|
const TYPE_QNAME = "0x1::bn254_algebra::FormatG2Compr";
|
|
3344
3344
|
function type(): TypeDescriptor<FormatG2Compr>;
|
|
3345
3345
|
}
|
|
3346
3346
|
interface FormatG2Uncompr {
|
|
3347
|
-
dummy_field:
|
|
3347
|
+
dummy_field: boolean;
|
|
3348
3348
|
}
|
|
3349
3349
|
namespace FormatG2Uncompr {
|
|
3350
3350
|
const TYPE_QNAME = "0x1::bn254_algebra::FormatG2Uncompr";
|
|
3351
3351
|
function type(): TypeDescriptor<FormatG2Uncompr>;
|
|
3352
3352
|
}
|
|
3353
3353
|
interface FormatGt {
|
|
3354
|
-
dummy_field:
|
|
3354
|
+
dummy_field: boolean;
|
|
3355
3355
|
}
|
|
3356
3356
|
namespace FormatGt {
|
|
3357
3357
|
const TYPE_QNAME = "0x1::bn254_algebra::FormatGt";
|
|
3358
3358
|
function type(): TypeDescriptor<FormatGt>;
|
|
3359
3359
|
}
|
|
3360
3360
|
interface Fq {
|
|
3361
|
-
dummy_field:
|
|
3361
|
+
dummy_field: boolean;
|
|
3362
3362
|
}
|
|
3363
3363
|
namespace Fq {
|
|
3364
3364
|
const TYPE_QNAME = "0x1::bn254_algebra::Fq";
|
|
3365
3365
|
function type(): TypeDescriptor<Fq>;
|
|
3366
3366
|
}
|
|
3367
3367
|
interface Fq12 {
|
|
3368
|
-
dummy_field:
|
|
3368
|
+
dummy_field: boolean;
|
|
3369
3369
|
}
|
|
3370
3370
|
namespace Fq12 {
|
|
3371
3371
|
const TYPE_QNAME = "0x1::bn254_algebra::Fq12";
|
|
3372
3372
|
function type(): TypeDescriptor<Fq12>;
|
|
3373
3373
|
}
|
|
3374
3374
|
interface Fr {
|
|
3375
|
-
dummy_field:
|
|
3375
|
+
dummy_field: boolean;
|
|
3376
3376
|
}
|
|
3377
3377
|
namespace Fr {
|
|
3378
3378
|
const TYPE_QNAME = "0x1::bn254_algebra::Fr";
|
|
3379
3379
|
function type(): TypeDescriptor<Fr>;
|
|
3380
3380
|
}
|
|
3381
3381
|
interface G1 {
|
|
3382
|
-
dummy_field:
|
|
3382
|
+
dummy_field: boolean;
|
|
3383
3383
|
}
|
|
3384
3384
|
namespace G1 {
|
|
3385
3385
|
const TYPE_QNAME = "0x1::bn254_algebra::G1";
|
|
3386
3386
|
function type(): TypeDescriptor<G1>;
|
|
3387
3387
|
}
|
|
3388
3388
|
interface G2 {
|
|
3389
|
-
dummy_field:
|
|
3389
|
+
dummy_field: boolean;
|
|
3390
3390
|
}
|
|
3391
3391
|
namespace G2 {
|
|
3392
3392
|
const TYPE_QNAME = "0x1::bn254_algebra::G2";
|
|
3393
3393
|
function type(): TypeDescriptor<G2>;
|
|
3394
3394
|
}
|
|
3395
3395
|
interface Gt {
|
|
3396
|
-
dummy_field:
|
|
3396
|
+
dummy_field: boolean;
|
|
3397
3397
|
}
|
|
3398
3398
|
namespace Gt {
|
|
3399
3399
|
const TYPE_QNAME = "0x1::bn254_algebra::Gt";
|
|
@@ -3647,7 +3647,7 @@ export declare namespace fungible_asset {
|
|
|
3647
3647
|
}
|
|
3648
3648
|
interface Frozen {
|
|
3649
3649
|
store: MoveAddressType;
|
|
3650
|
-
frozen:
|
|
3650
|
+
frozen: boolean;
|
|
3651
3651
|
}
|
|
3652
3652
|
namespace Frozen {
|
|
3653
3653
|
const TYPE_QNAME = "0x1::fungible_asset::Frozen";
|
|
@@ -3658,7 +3658,7 @@ export declare namespace fungible_asset {
|
|
|
3658
3658
|
type_arguments: [];
|
|
3659
3659
|
}
|
|
3660
3660
|
interface FrozenEvent {
|
|
3661
|
-
frozen:
|
|
3661
|
+
frozen: boolean;
|
|
3662
3662
|
}
|
|
3663
3663
|
namespace FrozenEvent {
|
|
3664
3664
|
const TYPE_QNAME = "0x1::fungible_asset::FrozenEvent";
|
|
@@ -3688,7 +3688,7 @@ export declare namespace fungible_asset {
|
|
|
3688
3688
|
interface FungibleStore {
|
|
3689
3689
|
metadata: object_.Object<fungible_asset.Metadata>;
|
|
3690
3690
|
balance: bigint;
|
|
3691
|
-
frozen:
|
|
3691
|
+
frozen: boolean;
|
|
3692
3692
|
}
|
|
3693
3693
|
namespace FungibleStore {
|
|
3694
3694
|
const TYPE_QNAME = "0x1::fungible_asset::FungibleStore";
|
|
@@ -3747,7 +3747,7 @@ export declare namespace fungible_asset {
|
|
|
3747
3747
|
type_arguments: [];
|
|
3748
3748
|
}
|
|
3749
3749
|
interface Untransferable {
|
|
3750
|
-
dummy_field:
|
|
3750
|
+
dummy_field: boolean;
|
|
3751
3751
|
}
|
|
3752
3752
|
namespace Untransferable {
|
|
3753
3753
|
const TYPE_QNAME = "0x1::fungible_asset::Untransferable";
|
|
@@ -3802,19 +3802,19 @@ export declare namespace fungible_asset {
|
|
|
3802
3802
|
function isBalanceAtLeast<T0 = any>(client: Aptos, request: {
|
|
3803
3803
|
typeArguments: [MoveStructId];
|
|
3804
3804
|
functionArguments: [object_.Object<T0>, bigint];
|
|
3805
|
-
}, version?: bigint): Promise<[
|
|
3805
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
3806
3806
|
function isFrozen<T0 = any>(client: Aptos, request: {
|
|
3807
3807
|
typeArguments: [MoveStructId];
|
|
3808
3808
|
functionArguments: [object_.Object<T0>];
|
|
3809
|
-
}, version?: bigint): Promise<[
|
|
3809
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
3810
3810
|
function isStoreDispatchable<T0 = any>(client: Aptos, request: {
|
|
3811
3811
|
typeArguments: [MoveStructId];
|
|
3812
3812
|
functionArguments: [object_.Object<T0>];
|
|
3813
|
-
}, version?: bigint): Promise<[
|
|
3813
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
3814
3814
|
function isUntransferable<T0 = any>(client: Aptos, request: {
|
|
3815
3815
|
typeArguments: [MoveStructId];
|
|
3816
3816
|
functionArguments: [object_.Object<T0>];
|
|
3817
|
-
}, version?: bigint): Promise<[
|
|
3817
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
3818
3818
|
function maximum<T0 = any>(client: Aptos, request: {
|
|
3819
3819
|
typeArguments: [MoveStructId];
|
|
3820
3820
|
functionArguments: [object_.Object<T0>];
|
|
@@ -3833,7 +3833,7 @@ export declare namespace fungible_asset {
|
|
|
3833
3833
|
}, version?: bigint): Promise<[string]>;
|
|
3834
3834
|
function storeExists(client: Aptos, request: {
|
|
3835
3835
|
functionArguments: [MoveAddressType];
|
|
3836
|
-
}, version?: bigint): Promise<[
|
|
3836
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
3837
3837
|
function storeMetadata<T0 = any>(client: Aptos, request: {
|
|
3838
3838
|
typeArguments: [MoveStructId];
|
|
3839
3839
|
functionArguments: [object_.Object<T0>];
|
|
@@ -3853,7 +3853,7 @@ export declare namespace staking_config {
|
|
|
3853
3853
|
minimum_stake: bigint;
|
|
3854
3854
|
maximum_stake: bigint;
|
|
3855
3855
|
recurring_lockup_duration_secs: bigint;
|
|
3856
|
-
allow_validator_set_change:
|
|
3856
|
+
allow_validator_set_change: boolean;
|
|
3857
3857
|
rewards_rate: bigint;
|
|
3858
3858
|
rewards_rate_denominator: bigint;
|
|
3859
3859
|
voting_power_increase_limit: bigint;
|
|
@@ -4024,7 +4024,7 @@ export declare namespace delegation_pool {
|
|
|
4024
4024
|
function type(): TypeDescriptor<DelegationPool>;
|
|
4025
4025
|
}
|
|
4026
4026
|
interface DelegationPoolAllowlisting {
|
|
4027
|
-
allowlist: smart_table.SmartTable<MoveAddressType,
|
|
4027
|
+
allowlist: smart_table.SmartTable<MoveAddressType, boolean>;
|
|
4028
4028
|
}
|
|
4029
4029
|
namespace DelegationPoolAllowlisting {
|
|
4030
4030
|
const TYPE_QNAME = "0x1::delegation_pool::DelegationPoolAllowlisting";
|
|
@@ -4214,7 +4214,7 @@ export declare namespace delegation_pool {
|
|
|
4214
4214
|
proposal_id: bigint;
|
|
4215
4215
|
delegation_pool: MoveAddressType;
|
|
4216
4216
|
num_votes: bigint;
|
|
4217
|
-
should_pass:
|
|
4217
|
+
should_pass: boolean;
|
|
4218
4218
|
}
|
|
4219
4219
|
namespace Vote {
|
|
4220
4220
|
const TYPE_QNAME = "0x1::delegation_pool::Vote";
|
|
@@ -4242,7 +4242,7 @@ export declare namespace delegation_pool {
|
|
|
4242
4242
|
proposal_id: bigint;
|
|
4243
4243
|
delegation_pool: MoveAddressType;
|
|
4244
4244
|
num_votes: bigint;
|
|
4245
|
-
should_pass:
|
|
4245
|
+
should_pass: boolean;
|
|
4246
4246
|
}
|
|
4247
4247
|
namespace VoteEvent {
|
|
4248
4248
|
const TYPE_QNAME = "0x1::delegation_pool::VoteEvent";
|
|
@@ -4301,7 +4301,7 @@ export declare namespace delegation_pool {
|
|
|
4301
4301
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4302
4302
|
function createProposal(client: Aptos, account: AptosAccount, request: {
|
|
4303
4303
|
typeArguments: [];
|
|
4304
|
-
functionArguments: [MoveAddressType, string, string, string,
|
|
4304
|
+
functionArguments: [MoveAddressType, string, string, string, boolean];
|
|
4305
4305
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4306
4306
|
function delegateVotingPower(client: Aptos, account: AptosAccount, request: {
|
|
4307
4307
|
typeArguments: [];
|
|
@@ -4361,7 +4361,7 @@ export declare namespace delegation_pool {
|
|
|
4361
4361
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4362
4362
|
function vote(client: Aptos, account: AptosAccount, request: {
|
|
4363
4363
|
typeArguments: [];
|
|
4364
|
-
functionArguments: [MoveAddressType, bigint, bigint,
|
|
4364
|
+
functionArguments: [MoveAddressType, bigint, bigint, boolean];
|
|
4365
4365
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4366
4366
|
function withdraw(client: Aptos, account: AptosAccount, request: {
|
|
4367
4367
|
typeArguments: [];
|
|
@@ -4371,7 +4371,7 @@ export declare namespace delegation_pool {
|
|
|
4371
4371
|
namespace view {
|
|
4372
4372
|
function allowlistingEnabled(client: Aptos, request: {
|
|
4373
4373
|
functionArguments: [MoveAddressType];
|
|
4374
|
-
}, version?: bigint): Promise<[
|
|
4374
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
4375
4375
|
function beneficiaryForOperator(client: Aptos, request: {
|
|
4376
4376
|
functionArguments: [MoveAddressType];
|
|
4377
4377
|
}, version?: bigint): Promise<[MoveAddressType]>;
|
|
@@ -4389,13 +4389,13 @@ export declare namespace delegation_pool {
|
|
|
4389
4389
|
}, version?: bigint): Promise<[MoveAddressType, MoveAddressType, bigint]>;
|
|
4390
4390
|
function canWithdrawPendingInactive(client: Aptos, request: {
|
|
4391
4391
|
functionArguments: [MoveAddressType];
|
|
4392
|
-
}, version?: bigint): Promise<[
|
|
4392
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
4393
4393
|
function delegationPoolExists(client: Aptos, request: {
|
|
4394
4394
|
functionArguments: [MoveAddressType];
|
|
4395
|
-
}, version?: bigint): Promise<[
|
|
4395
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
4396
4396
|
function delegatorAllowlisted(client: Aptos, request: {
|
|
4397
4397
|
functionArguments: [MoveAddressType, MoveAddressType];
|
|
4398
|
-
}, version?: bigint): Promise<[
|
|
4398
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
4399
4399
|
function getAddStakeFee(client: Aptos, request: {
|
|
4400
4400
|
functionArguments: [MoveAddressType, bigint];
|
|
4401
4401
|
}, version?: bigint): Promise<[bigint]>;
|
|
@@ -4413,13 +4413,13 @@ export declare namespace delegation_pool {
|
|
|
4413
4413
|
}, version?: bigint): Promise<[MoveAddressType]>;
|
|
4414
4414
|
function getPendingWithdrawal(client: Aptos, request: {
|
|
4415
4415
|
functionArguments: [MoveAddressType, MoveAddressType];
|
|
4416
|
-
}, version?: bigint): Promise<[
|
|
4416
|
+
}, version?: bigint): Promise<[boolean, bigint]>;
|
|
4417
4417
|
function getStake(client: Aptos, request: {
|
|
4418
4418
|
functionArguments: [MoveAddressType, MoveAddressType];
|
|
4419
4419
|
}, version?: bigint): Promise<[bigint, bigint, bigint]>;
|
|
4420
4420
|
function isNextCommissionPercentageEffective(client: Aptos, request: {
|
|
4421
4421
|
functionArguments: [MoveAddressType];
|
|
4422
|
-
}, version?: bigint): Promise<[
|
|
4422
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
4423
4423
|
function minRemainingSecsForCommissionChange(client: Aptos, version?: bigint): Promise<[bigint]>;
|
|
4424
4424
|
function observedLockupCycle(client: Aptos, request: {
|
|
4425
4425
|
functionArguments: [MoveAddressType];
|
|
@@ -4432,10 +4432,10 @@ export declare namespace delegation_pool {
|
|
|
4432
4432
|
}, version?: bigint): Promise<[bigint]>;
|
|
4433
4433
|
function ownerCapExists(client: Aptos, request: {
|
|
4434
4434
|
functionArguments: [MoveAddressType];
|
|
4435
|
-
}, version?: bigint): Promise<[
|
|
4435
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
4436
4436
|
function partialGovernanceVotingEnabled(client: Aptos, request: {
|
|
4437
4437
|
functionArguments: [MoveAddressType];
|
|
4438
|
-
}, version?: bigint): Promise<[
|
|
4438
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
4439
4439
|
function shareholdersCountActivePool(client: Aptos, request: {
|
|
4440
4440
|
functionArguments: [MoveAddressType];
|
|
4441
4441
|
}, version?: bigint): Promise<[bigint]>;
|
|
@@ -4476,7 +4476,7 @@ export declare namespace keyless_account {
|
|
|
4476
4476
|
type_arguments: [];
|
|
4477
4477
|
}
|
|
4478
4478
|
interface Group {
|
|
4479
|
-
dummy_field:
|
|
4479
|
+
dummy_field: boolean;
|
|
4480
4480
|
}
|
|
4481
4481
|
namespace Group {
|
|
4482
4482
|
const TYPE_QNAME = "0x1::keyless_account::Group";
|
|
@@ -4496,7 +4496,7 @@ export declare namespace reconfiguration {
|
|
|
4496
4496
|
function type(): TypeDescriptor<Configuration>;
|
|
4497
4497
|
}
|
|
4498
4498
|
interface DisableReconfiguration {
|
|
4499
|
-
dummy_field:
|
|
4499
|
+
dummy_field: boolean;
|
|
4500
4500
|
}
|
|
4501
4501
|
namespace DisableReconfiguration {
|
|
4502
4502
|
const TYPE_QNAME = "0x1::reconfiguration::DisableReconfiguration";
|
|
@@ -4687,7 +4687,7 @@ export declare namespace aptos_governance {
|
|
|
4687
4687
|
voter: MoveAddressType;
|
|
4688
4688
|
stake_pool: MoveAddressType;
|
|
4689
4689
|
num_votes: bigint;
|
|
4690
|
-
should_pass:
|
|
4690
|
+
should_pass: boolean;
|
|
4691
4691
|
}
|
|
4692
4692
|
namespace Vote {
|
|
4693
4693
|
const TYPE_QNAME = "0x1::aptos_governance::Vote";
|
|
@@ -4702,7 +4702,7 @@ export declare namespace aptos_governance {
|
|
|
4702
4702
|
voter: MoveAddressType;
|
|
4703
4703
|
stake_pool: MoveAddressType;
|
|
4704
4704
|
num_votes: bigint;
|
|
4705
|
-
should_pass:
|
|
4705
|
+
should_pass: boolean;
|
|
4706
4706
|
}
|
|
4707
4707
|
namespace VoteEvent {
|
|
4708
4708
|
const TYPE_QNAME = "0x1::aptos_governance::VoteEvent";
|
|
@@ -4713,7 +4713,7 @@ export declare namespace aptos_governance {
|
|
|
4713
4713
|
type_arguments: [];
|
|
4714
4714
|
}
|
|
4715
4715
|
interface VotingRecords {
|
|
4716
|
-
votes: table.Table<aptos_governance.RecordKey,
|
|
4716
|
+
votes: table.Table<aptos_governance.RecordKey, boolean>;
|
|
4717
4717
|
}
|
|
4718
4718
|
namespace VotingRecords {
|
|
4719
4719
|
const TYPE_QNAME = "0x1::aptos_governance::VotingRecords";
|
|
@@ -4733,11 +4733,11 @@ export declare namespace aptos_governance {
|
|
|
4733
4733
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4734
4734
|
function batchPartialVote(client: Aptos, account: AptosAccount, request: {
|
|
4735
4735
|
typeArguments: [];
|
|
4736
|
-
functionArguments: [MoveAddressType[], bigint, bigint,
|
|
4736
|
+
functionArguments: [MoveAddressType[], bigint, bigint, boolean];
|
|
4737
4737
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4738
4738
|
function batchVote(client: Aptos, account: AptosAccount, request: {
|
|
4739
4739
|
typeArguments: [];
|
|
4740
|
-
functionArguments: [MoveAddressType[], bigint,
|
|
4740
|
+
functionArguments: [MoveAddressType[], bigint, boolean];
|
|
4741
4741
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4742
4742
|
function createProposal(client: Aptos, account: AptosAccount, request: {
|
|
4743
4743
|
typeArguments: [];
|
|
@@ -4745,7 +4745,7 @@ export declare namespace aptos_governance {
|
|
|
4745
4745
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4746
4746
|
function createProposalV2(client: Aptos, account: AptosAccount, request: {
|
|
4747
4747
|
typeArguments: [];
|
|
4748
|
-
functionArguments: [MoveAddressType, string, string, string,
|
|
4748
|
+
functionArguments: [MoveAddressType, string, string, string, boolean];
|
|
4749
4749
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4750
4750
|
function forceEndEpoch(client: Aptos, account: AptosAccount, request: {
|
|
4751
4751
|
typeArguments: [];
|
|
@@ -4757,7 +4757,7 @@ export declare namespace aptos_governance {
|
|
|
4757
4757
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4758
4758
|
function partialVote(client: Aptos, account: AptosAccount, request: {
|
|
4759
4759
|
typeArguments: [];
|
|
4760
|
-
functionArguments: [MoveAddressType, bigint, bigint,
|
|
4760
|
+
functionArguments: [MoveAddressType, bigint, bigint, boolean];
|
|
4761
4761
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4762
4762
|
function reconfigure(client: Aptos, account: AptosAccount, request: {
|
|
4763
4763
|
typeArguments: [];
|
|
@@ -4765,7 +4765,7 @@ export declare namespace aptos_governance {
|
|
|
4765
4765
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4766
4766
|
function vote(client: Aptos, account: AptosAccount, request: {
|
|
4767
4767
|
typeArguments: [];
|
|
4768
|
-
functionArguments: [MoveAddressType, bigint,
|
|
4768
|
+
functionArguments: [MoveAddressType, bigint, boolean];
|
|
4769
4769
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
4770
4770
|
}
|
|
4771
4771
|
namespace view {
|
|
@@ -4780,110 +4780,110 @@ export declare namespace aptos_governance {
|
|
|
4780
4780
|
}, version?: bigint): Promise<[bigint]>;
|
|
4781
4781
|
function hasEntirelyVoted(client: Aptos, request: {
|
|
4782
4782
|
functionArguments: [MoveAddressType, bigint];
|
|
4783
|
-
}, version?: bigint): Promise<[
|
|
4783
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
4784
4784
|
}
|
|
4785
4785
|
}
|
|
4786
4786
|
export declare namespace bls12381_algebra {
|
|
4787
4787
|
interface FormatFq12LscLsb {
|
|
4788
|
-
dummy_field:
|
|
4788
|
+
dummy_field: boolean;
|
|
4789
4789
|
}
|
|
4790
4790
|
namespace FormatFq12LscLsb {
|
|
4791
4791
|
const TYPE_QNAME = "0x1::bls12381_algebra::FormatFq12LscLsb";
|
|
4792
4792
|
function type(): TypeDescriptor<FormatFq12LscLsb>;
|
|
4793
4793
|
}
|
|
4794
4794
|
interface FormatFrLsb {
|
|
4795
|
-
dummy_field:
|
|
4795
|
+
dummy_field: boolean;
|
|
4796
4796
|
}
|
|
4797
4797
|
namespace FormatFrLsb {
|
|
4798
4798
|
const TYPE_QNAME = "0x1::bls12381_algebra::FormatFrLsb";
|
|
4799
4799
|
function type(): TypeDescriptor<FormatFrLsb>;
|
|
4800
4800
|
}
|
|
4801
4801
|
interface FormatFrMsb {
|
|
4802
|
-
dummy_field:
|
|
4802
|
+
dummy_field: boolean;
|
|
4803
4803
|
}
|
|
4804
4804
|
namespace FormatFrMsb {
|
|
4805
4805
|
const TYPE_QNAME = "0x1::bls12381_algebra::FormatFrMsb";
|
|
4806
4806
|
function type(): TypeDescriptor<FormatFrMsb>;
|
|
4807
4807
|
}
|
|
4808
4808
|
interface FormatG1Compr {
|
|
4809
|
-
dummy_field:
|
|
4809
|
+
dummy_field: boolean;
|
|
4810
4810
|
}
|
|
4811
4811
|
namespace FormatG1Compr {
|
|
4812
4812
|
const TYPE_QNAME = "0x1::bls12381_algebra::FormatG1Compr";
|
|
4813
4813
|
function type(): TypeDescriptor<FormatG1Compr>;
|
|
4814
4814
|
}
|
|
4815
4815
|
interface FormatG1Uncompr {
|
|
4816
|
-
dummy_field:
|
|
4816
|
+
dummy_field: boolean;
|
|
4817
4817
|
}
|
|
4818
4818
|
namespace FormatG1Uncompr {
|
|
4819
4819
|
const TYPE_QNAME = "0x1::bls12381_algebra::FormatG1Uncompr";
|
|
4820
4820
|
function type(): TypeDescriptor<FormatG1Uncompr>;
|
|
4821
4821
|
}
|
|
4822
4822
|
interface FormatG2Compr {
|
|
4823
|
-
dummy_field:
|
|
4823
|
+
dummy_field: boolean;
|
|
4824
4824
|
}
|
|
4825
4825
|
namespace FormatG2Compr {
|
|
4826
4826
|
const TYPE_QNAME = "0x1::bls12381_algebra::FormatG2Compr";
|
|
4827
4827
|
function type(): TypeDescriptor<FormatG2Compr>;
|
|
4828
4828
|
}
|
|
4829
4829
|
interface FormatG2Uncompr {
|
|
4830
|
-
dummy_field:
|
|
4830
|
+
dummy_field: boolean;
|
|
4831
4831
|
}
|
|
4832
4832
|
namespace FormatG2Uncompr {
|
|
4833
4833
|
const TYPE_QNAME = "0x1::bls12381_algebra::FormatG2Uncompr";
|
|
4834
4834
|
function type(): TypeDescriptor<FormatG2Uncompr>;
|
|
4835
4835
|
}
|
|
4836
4836
|
interface FormatGt {
|
|
4837
|
-
dummy_field:
|
|
4837
|
+
dummy_field: boolean;
|
|
4838
4838
|
}
|
|
4839
4839
|
namespace FormatGt {
|
|
4840
4840
|
const TYPE_QNAME = "0x1::bls12381_algebra::FormatGt";
|
|
4841
4841
|
function type(): TypeDescriptor<FormatGt>;
|
|
4842
4842
|
}
|
|
4843
4843
|
interface Fq12 {
|
|
4844
|
-
dummy_field:
|
|
4844
|
+
dummy_field: boolean;
|
|
4845
4845
|
}
|
|
4846
4846
|
namespace Fq12 {
|
|
4847
4847
|
const TYPE_QNAME = "0x1::bls12381_algebra::Fq12";
|
|
4848
4848
|
function type(): TypeDescriptor<Fq12>;
|
|
4849
4849
|
}
|
|
4850
4850
|
interface Fr {
|
|
4851
|
-
dummy_field:
|
|
4851
|
+
dummy_field: boolean;
|
|
4852
4852
|
}
|
|
4853
4853
|
namespace Fr {
|
|
4854
4854
|
const TYPE_QNAME = "0x1::bls12381_algebra::Fr";
|
|
4855
4855
|
function type(): TypeDescriptor<Fr>;
|
|
4856
4856
|
}
|
|
4857
4857
|
interface G1 {
|
|
4858
|
-
dummy_field:
|
|
4858
|
+
dummy_field: boolean;
|
|
4859
4859
|
}
|
|
4860
4860
|
namespace G1 {
|
|
4861
4861
|
const TYPE_QNAME = "0x1::bls12381_algebra::G1";
|
|
4862
4862
|
function type(): TypeDescriptor<G1>;
|
|
4863
4863
|
}
|
|
4864
4864
|
interface G2 {
|
|
4865
|
-
dummy_field:
|
|
4865
|
+
dummy_field: boolean;
|
|
4866
4866
|
}
|
|
4867
4867
|
namespace G2 {
|
|
4868
4868
|
const TYPE_QNAME = "0x1::bls12381_algebra::G2";
|
|
4869
4869
|
function type(): TypeDescriptor<G2>;
|
|
4870
4870
|
}
|
|
4871
4871
|
interface Gt {
|
|
4872
|
-
dummy_field:
|
|
4872
|
+
dummy_field: boolean;
|
|
4873
4873
|
}
|
|
4874
4874
|
namespace Gt {
|
|
4875
4875
|
const TYPE_QNAME = "0x1::bls12381_algebra::Gt";
|
|
4876
4876
|
function type(): TypeDescriptor<Gt>;
|
|
4877
4877
|
}
|
|
4878
4878
|
interface HashG1XmdSha256SswuRo {
|
|
4879
|
-
dummy_field:
|
|
4879
|
+
dummy_field: boolean;
|
|
4880
4880
|
}
|
|
4881
4881
|
namespace HashG1XmdSha256SswuRo {
|
|
4882
4882
|
const TYPE_QNAME = "0x1::bls12381_algebra::HashG1XmdSha256SswuRo";
|
|
4883
4883
|
function type(): TypeDescriptor<HashG1XmdSha256SswuRo>;
|
|
4884
4884
|
}
|
|
4885
4885
|
interface HashG2XmdSha256SswuRo {
|
|
4886
|
-
dummy_field:
|
|
4886
|
+
dummy_field: boolean;
|
|
4887
4887
|
}
|
|
4888
4888
|
namespace HashG2XmdSha256SswuRo {
|
|
4889
4889
|
const TYPE_QNAME = "0x1::bls12381_algebra::HashG2XmdSha256SswuRo";
|
|
@@ -5085,7 +5085,7 @@ export declare namespace multisig_account {
|
|
|
5085
5085
|
interface MultisigTransaction {
|
|
5086
5086
|
payload: option.Option<string>;
|
|
5087
5087
|
payload_hash: option.Option<string>;
|
|
5088
|
-
votes: simple_map.SimpleMap<MoveAddressType,
|
|
5088
|
+
votes: simple_map.SimpleMap<MoveAddressType, boolean>;
|
|
5089
5089
|
creator: MoveAddressType;
|
|
5090
5090
|
creation_time_secs: bigint;
|
|
5091
5091
|
}
|
|
@@ -5209,7 +5209,7 @@ export declare namespace multisig_account {
|
|
|
5209
5209
|
multisig_account: MoveAddressType;
|
|
5210
5210
|
owner: MoveAddressType;
|
|
5211
5211
|
sequence_number: bigint;
|
|
5212
|
-
approved:
|
|
5212
|
+
approved: boolean;
|
|
5213
5213
|
}
|
|
5214
5214
|
namespace Vote {
|
|
5215
5215
|
const TYPE_QNAME = "0x1::multisig_account::Vote";
|
|
@@ -5222,7 +5222,7 @@ export declare namespace multisig_account {
|
|
|
5222
5222
|
interface VoteEvent {
|
|
5223
5223
|
owner: MoveAddressType;
|
|
5224
5224
|
sequence_number: bigint;
|
|
5225
|
-
approved:
|
|
5225
|
+
approved: boolean;
|
|
5226
5226
|
}
|
|
5227
5227
|
namespace VoteEvent {
|
|
5228
5228
|
const TYPE_QNAME = "0x1::multisig_account::VoteEvent";
|
|
@@ -5345,15 +5345,15 @@ export declare namespace multisig_account {
|
|
|
5345
5345
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
5346
5346
|
function voteTransaction(client: Aptos, account: AptosAccount, request: {
|
|
5347
5347
|
typeArguments: [];
|
|
5348
|
-
functionArguments: [MoveAddressType, bigint,
|
|
5348
|
+
functionArguments: [MoveAddressType, bigint, boolean];
|
|
5349
5349
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
5350
5350
|
function voteTransactions(client: Aptos, account: AptosAccount, request: {
|
|
5351
5351
|
typeArguments: [];
|
|
5352
|
-
functionArguments: [MoveAddressType, bigint, bigint,
|
|
5352
|
+
functionArguments: [MoveAddressType, bigint, bigint, boolean];
|
|
5353
5353
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
5354
5354
|
function voteTransanction(client: Aptos, account: AptosAccount, request: {
|
|
5355
5355
|
typeArguments: [];
|
|
5356
|
-
functionArguments: [MoveAddressType, bigint,
|
|
5356
|
+
functionArguments: [MoveAddressType, bigint, boolean];
|
|
5357
5357
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
5358
5358
|
}
|
|
5359
5359
|
namespace view {
|
|
@@ -5362,16 +5362,16 @@ export declare namespace multisig_account {
|
|
|
5362
5362
|
}, version?: bigint): Promise<[bigint]>;
|
|
5363
5363
|
function canBeExecuted(client: Aptos, request: {
|
|
5364
5364
|
functionArguments: [MoveAddressType, bigint];
|
|
5365
|
-
}, version?: bigint): Promise<[
|
|
5365
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
5366
5366
|
function canBeRejected(client: Aptos, request: {
|
|
5367
5367
|
functionArguments: [MoveAddressType, bigint];
|
|
5368
|
-
}, version?: bigint): Promise<[
|
|
5368
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
5369
5369
|
function canExecute(client: Aptos, request: {
|
|
5370
5370
|
functionArguments: [MoveAddressType, MoveAddressType, bigint];
|
|
5371
|
-
}, version?: bigint): Promise<[
|
|
5371
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
5372
5372
|
function canReject(client: Aptos, request: {
|
|
5373
5373
|
functionArguments: [MoveAddressType, MoveAddressType, bigint];
|
|
5374
|
-
}, version?: bigint): Promise<[
|
|
5374
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
5375
5375
|
function getNextMultisigAccountAddress(client: Aptos, request: {
|
|
5376
5376
|
functionArguments: [MoveAddressType];
|
|
5377
5377
|
}, version?: bigint): Promise<[MoveAddressType]>;
|
|
@@ -5386,7 +5386,7 @@ export declare namespace multisig_account {
|
|
|
5386
5386
|
}, version?: bigint): Promise<[multisig_account.MultisigTransaction]>;
|
|
5387
5387
|
function isOwner(client: Aptos, request: {
|
|
5388
5388
|
functionArguments: [MoveAddressType, MoveAddressType];
|
|
5389
|
-
}, version?: bigint): Promise<[
|
|
5389
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
5390
5390
|
function lastResolvedSequenceNumber(client: Aptos, request: {
|
|
5391
5391
|
functionArguments: [MoveAddressType];
|
|
5392
5392
|
}, version?: bigint): Promise<[bigint]>;
|
|
@@ -5404,7 +5404,7 @@ export declare namespace multisig_account {
|
|
|
5404
5404
|
}, version?: bigint): Promise<[MoveAddressType[]]>;
|
|
5405
5405
|
function vote(client: Aptos, request: {
|
|
5406
5406
|
functionArguments: [MoveAddressType, bigint, MoveAddressType];
|
|
5407
|
-
}, version?: bigint): Promise<[
|
|
5407
|
+
}, version?: bigint): Promise<[boolean, boolean]>;
|
|
5408
5408
|
}
|
|
5409
5409
|
}
|
|
5410
5410
|
export declare namespace pool_u64_unbound {
|
|
@@ -5641,7 +5641,7 @@ export declare namespace staking_contract {
|
|
|
5641
5641
|
function type(): TypeDescriptor<StakingContract>;
|
|
5642
5642
|
}
|
|
5643
5643
|
interface StakingGroupContainer {
|
|
5644
|
-
dummy_field:
|
|
5644
|
+
dummy_field: boolean;
|
|
5645
5645
|
}
|
|
5646
5646
|
namespace StakingGroupContainer {
|
|
5647
5647
|
const TYPE_QNAME = "0x1::staking_contract::StakingGroupContainer";
|
|
@@ -5860,7 +5860,7 @@ export declare namespace staking_contract {
|
|
|
5860
5860
|
}, version?: bigint): Promise<[bigint, bigint, bigint]>;
|
|
5861
5861
|
function stakingContractExists(client: Aptos, request: {
|
|
5862
5862
|
functionArguments: [MoveAddressType, MoveAddressType];
|
|
5863
|
-
}, version?: bigint): Promise<[
|
|
5863
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
5864
5864
|
}
|
|
5865
5865
|
}
|
|
5866
5866
|
export declare namespace system_addresses {
|
|
@@ -5869,7 +5869,7 @@ export declare namespace system_addresses {
|
|
|
5869
5869
|
}
|
|
5870
5870
|
export declare namespace randomness_config {
|
|
5871
5871
|
interface ConfigOff {
|
|
5872
|
-
dummy_field:
|
|
5872
|
+
dummy_field: boolean;
|
|
5873
5873
|
}
|
|
5874
5874
|
namespace ConfigOff {
|
|
5875
5875
|
const TYPE_QNAME = "0x1::randomness_config::ConfigOff";
|
|
@@ -5943,7 +5943,7 @@ export declare namespace aggregator_factory {
|
|
|
5943
5943
|
}
|
|
5944
5944
|
export declare namespace governance_proposal {
|
|
5945
5945
|
interface GovernanceProposal {
|
|
5946
|
-
dummy_field:
|
|
5946
|
+
dummy_field: boolean;
|
|
5947
5947
|
}
|
|
5948
5948
|
namespace GovernanceProposal {
|
|
5949
5949
|
const TYPE_QNAME = "0x1::governance_proposal::GovernanceProposal";
|
|
@@ -6012,7 +6012,7 @@ export declare namespace transaction_context {
|
|
|
6012
6012
|
}
|
|
6013
6013
|
export declare namespace jwk_consensus_config {
|
|
6014
6014
|
interface ConfigOff {
|
|
6015
|
-
dummy_field:
|
|
6015
|
+
dummy_field: boolean;
|
|
6016
6016
|
}
|
|
6017
6017
|
namespace ConfigOff {
|
|
6018
6018
|
const TYPE_QNAME = "0x1::jwk_consensus_config::ConfigOff";
|
|
@@ -6114,7 +6114,7 @@ export declare namespace reconfiguration_state {
|
|
|
6114
6114
|
type_arguments: [];
|
|
6115
6115
|
}
|
|
6116
6116
|
interface StateInactive {
|
|
6117
|
-
dummy_field:
|
|
6117
|
+
dummy_field: boolean;
|
|
6118
6118
|
}
|
|
6119
6119
|
namespace StateInactive {
|
|
6120
6120
|
const TYPE_QNAME = "0x1::reconfiguration_state::StateInactive";
|
|
@@ -6230,11 +6230,11 @@ export declare namespace primary_fungible_store {
|
|
|
6230
6230
|
function isBalanceAtLeast<T0 = any>(client: Aptos, request: {
|
|
6231
6231
|
typeArguments: [MoveStructId];
|
|
6232
6232
|
functionArguments: [MoveAddressType, object_.Object<T0>, bigint];
|
|
6233
|
-
}, version?: bigint): Promise<[
|
|
6233
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
6234
6234
|
function isFrozen<T0 = any>(client: Aptos, request: {
|
|
6235
6235
|
typeArguments: [MoveStructId];
|
|
6236
6236
|
functionArguments: [MoveAddressType, object_.Object<T0>];
|
|
6237
|
-
}, version?: bigint): Promise<[
|
|
6237
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
6238
6238
|
function primaryStore<T0 = any>(client: Aptos, request: {
|
|
6239
6239
|
typeArguments: [MoveStructId];
|
|
6240
6240
|
functionArguments: [MoveAddressType, object_.Object<T0>];
|
|
@@ -6246,7 +6246,7 @@ export declare namespace primary_fungible_store {
|
|
|
6246
6246
|
function primaryStoreExists<T0 = any>(client: Aptos, request: {
|
|
6247
6247
|
typeArguments: [MoveStructId];
|
|
6248
6248
|
functionArguments: [MoveAddressType, object_.Object<T0>];
|
|
6249
|
-
}, version?: bigint): Promise<[
|
|
6249
|
+
}, version?: bigint): Promise<[boolean]>;
|
|
6250
6250
|
}
|
|
6251
6251
|
}
|
|
6252
6252
|
export declare namespace transaction_validation {
|
|
@@ -6267,7 +6267,7 @@ export declare namespace transaction_validation {
|
|
|
6267
6267
|
}
|
|
6268
6268
|
export declare namespace randomness_api_v0_config {
|
|
6269
6269
|
interface AllowCustomMaxGasFlag {
|
|
6270
|
-
value:
|
|
6270
|
+
value: boolean;
|
|
6271
6271
|
}
|
|
6272
6272
|
namespace AllowCustomMaxGasFlag {
|
|
6273
6273
|
const TYPE_QNAME = "0x1::randomness_api_v0_config::AllowCustomMaxGasFlag";
|