@sentio/sdk 2.50.2-rc.2 → 2.51.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/api.d.ts +46 -4
- package/lib/aptos/api.d.ts.map +1 -1
- package/lib/aptos/api.js +53 -21
- package/lib/aptos/api.js.map +1 -1
- package/lib/aptos/builtin/0x1.d.ts +1489 -23
- package/lib/aptos/builtin/0x1.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.js +5188 -16
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.d.ts +284 -1
- package/lib/aptos/builtin/0x3.d.ts.map +1 -1
- package/lib/aptos/builtin/0x3.js +384 -2
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/builtin/0x4.d.ts +200 -1
- package/lib/aptos/builtin/0x4.d.ts.map +1 -1
- package/lib/aptos/builtin/0x4.js +603 -2
- package/lib/aptos/builtin/0x4.js.map +1 -1
- package/lib/aptos/codegen/codegen.js +12 -7
- package/lib/aptos/codegen/codegen.js.map +1 -1
- package/lib/aptos/context.d.ts +9 -8
- package/lib/aptos/context.d.ts.map +1 -1
- package/lib/aptos/context.js +26 -25
- package/lib/aptos/context.js.map +1 -1
- package/lib/aptos/ext/coin.test.js.map +1 -1
- package/lib/aptos/ext/token.d.ts.map +1 -1
- package/lib/aptos/ext/token.js +74 -35
- package/lib/aptos/ext/token.js.map +1 -1
- package/lib/aptos/index.d.ts +1 -1
- package/lib/aptos/index.d.ts.map +1 -1
- package/lib/aptos/index.js +1 -1
- package/lib/aptos/index.js.map +1 -1
- package/lib/aptos/move-coder.d.ts +2 -0
- package/lib/aptos/move-coder.d.ts.map +1 -1
- package/lib/aptos/move-coder.js +15 -0
- package/lib/aptos/move-coder.js.map +1 -1
- package/lib/aptos/network.d.ts +2 -1
- package/lib/aptos/network.d.ts.map +1 -1
- package/lib/aptos/network.js +3 -2
- package/lib/aptos/network.js.map +1 -1
- package/lib/sui/builtin/0x1.d.ts +4 -4
- package/lib/sui/builtin/0x1.d.ts.map +1 -1
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +4 -4
- package/lib/sui/builtin/0x2.d.ts.map +1 -1
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/package.json +6 -6
- package/src/aptos/abis/0x1.json +81 -174
- package/src/aptos/abis/0x3.json +283 -3
- package/src/aptos/abis/0x4.json +2 -2
- package/src/aptos/api.ts +88 -23
- package/src/aptos/builtin/0x1.ts +7795 -67
- package/src/aptos/builtin/0x3.ts +750 -2
- package/src/aptos/builtin/0x4.ts +914 -2
- package/src/aptos/codegen/codegen.ts +16 -7
- package/src/aptos/context.ts +28 -26
- package/src/aptos/ext/token.ts +88 -41
- package/src/aptos/index.ts +1 -1
- package/src/aptos/move-coder.ts +17 -0
- package/src/aptos/network.ts +3 -2
- package/src/sui/builtin/0x1.ts +16 -16
- package/src/sui/builtin/0x2.ts +13 -13
@@ -2,7 +2,7 @@ import { CallFilter, MoveFetchConfig } from "@sentio/sdk/move";
|
|
2
2
|
import { AptosBindOptions, AptosBaseProcessor, TypedFunctionPayload, AptosContext } from "@sentio/sdk/aptos";
|
3
3
|
import { TypeDescriptor } from "@typemove/move";
|
4
4
|
import { MoveCoder, TypedEventInstance } from "@typemove/aptos";
|
5
|
-
import { MoveAddressType } from "@aptos-labs/ts-sdk";
|
5
|
+
import { Aptos, Account as AptosAccount, MoveAddressType, PendingTransactionResponse, InputGenerateTransactionOptions, MoveStructId } from "@aptos-labs/ts-sdk";
|
6
6
|
export declare namespace acl {
|
7
7
|
interface ACL {
|
8
8
|
list: MoveAddressType[];
|
@@ -11,6 +11,8 @@ export declare namespace acl {
|
|
11
11
|
const TYPE_QNAME = "0x1::acl::ACL";
|
12
12
|
function type(): TypeDescriptor<ACL>;
|
13
13
|
}
|
14
|
+
namespace entry { }
|
15
|
+
namespace view { }
|
14
16
|
}
|
15
17
|
export declare namespace any$ {
|
16
18
|
interface Any {
|
@@ -21,8 +23,13 @@ export declare namespace any$ {
|
|
21
23
|
const TYPE_QNAME = "0x1::any::Any";
|
22
24
|
function type(): TypeDescriptor<Any>;
|
23
25
|
}
|
26
|
+
namespace entry { }
|
27
|
+
namespace view { }
|
28
|
+
}
|
29
|
+
export declare namespace bcs {
|
30
|
+
namespace entry { }
|
31
|
+
namespace view { }
|
24
32
|
}
|
25
|
-
export declare namespace bcs { }
|
26
33
|
export declare class dkg extends AptosBaseProcessor {
|
27
34
|
constructor(options: AptosBindOptions);
|
28
35
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
@@ -69,6 +76,8 @@ export declare namespace dkg {
|
|
69
76
|
const TYPE_QNAME = "0x1::dkg::DKGState";
|
70
77
|
function type(): TypeDescriptor<DKGState>;
|
71
78
|
}
|
79
|
+
namespace entry { }
|
80
|
+
namespace view { }
|
72
81
|
}
|
73
82
|
export declare class code extends AptosBaseProcessor {
|
74
83
|
constructor(options: AptosBindOptions);
|
@@ -144,6 +153,13 @@ export declare namespace code {
|
|
144
153
|
const TYPE_QNAME = "0x1::code::UpgradePolicy";
|
145
154
|
function type(): TypeDescriptor<UpgradePolicy>;
|
146
155
|
}
|
156
|
+
namespace entry {
|
157
|
+
function publishPackageTxn(client: Aptos, account: AptosAccount, request: {
|
158
|
+
typeArguments: [];
|
159
|
+
functionArguments: [string, string[]];
|
160
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
161
|
+
}
|
162
|
+
namespace view { }
|
147
163
|
interface PublishPackageTxnPayload extends TypedFunctionPayload<[string, string[]]> {
|
148
164
|
arguments_decoded: [string, string[]];
|
149
165
|
type_arguments: [];
|
@@ -370,6 +386,87 @@ export declare namespace coin {
|
|
370
386
|
data_decoded: WithdrawEvent;
|
371
387
|
type_arguments: [];
|
372
388
|
}
|
389
|
+
namespace entry {
|
390
|
+
function createCoinConversionMap(client: Aptos, account: AptosAccount, request: {
|
391
|
+
typeArguments: [];
|
392
|
+
functionArguments: [];
|
393
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
394
|
+
function createPairing<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
395
|
+
typeArguments: [MoveStructId];
|
396
|
+
functionArguments: [];
|
397
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
398
|
+
function freezeCoinStore<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
399
|
+
typeArguments: [MoveStructId];
|
400
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
401
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
402
|
+
function migrateToFungibleStore<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
403
|
+
typeArguments: [MoveStructId];
|
404
|
+
functionArguments: [];
|
405
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
406
|
+
function transfer<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
407
|
+
typeArguments: [MoveStructId];
|
408
|
+
functionArguments: [MoveAddressType, bigint];
|
409
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
410
|
+
function unfreezeCoinStore<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
411
|
+
typeArguments: [MoveStructId];
|
412
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
413
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
414
|
+
function upgradeSupply<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
415
|
+
typeArguments: [MoveStructId];
|
416
|
+
functionArguments: [];
|
417
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
418
|
+
}
|
419
|
+
namespace view {
|
420
|
+
function balance<T0 = any>(client: Aptos, request: {
|
421
|
+
typeArguments: [MoveStructId];
|
422
|
+
functionArguments: [MoveAddressType];
|
423
|
+
}, version?: bigint): Promise<[bigint]>;
|
424
|
+
function coinSupply<T0 = any>(client: Aptos, request: {
|
425
|
+
typeArguments: [MoveStructId];
|
426
|
+
}, version?: bigint): Promise<[option.Option<bigint>]>;
|
427
|
+
function decimals<T0 = any>(client: Aptos, request: {
|
428
|
+
typeArguments: [MoveStructId];
|
429
|
+
}, version?: bigint): Promise<[number]>;
|
430
|
+
function isAccountRegistered<T0 = any>(client: Aptos, request: {
|
431
|
+
typeArguments: [MoveStructId];
|
432
|
+
functionArguments: [MoveAddressType];
|
433
|
+
}, version?: bigint): Promise<[boolean]>;
|
434
|
+
function isBalanceAtLeast<T0 = any>(client: Aptos, request: {
|
435
|
+
typeArguments: [MoveStructId];
|
436
|
+
functionArguments: [MoveAddressType, bigint];
|
437
|
+
}, version?: bigint): Promise<[boolean]>;
|
438
|
+
function isCoinInitialized<T0 = any>(client: Aptos, request: {
|
439
|
+
typeArguments: [MoveStructId];
|
440
|
+
}, version?: bigint): Promise<[boolean]>;
|
441
|
+
function isCoinStoreFrozen<T0 = any>(client: Aptos, request: {
|
442
|
+
typeArguments: [MoveStructId];
|
443
|
+
functionArguments: [MoveAddressType];
|
444
|
+
}, version?: bigint): Promise<[boolean]>;
|
445
|
+
function name<T0 = any>(client: Aptos, request: {
|
446
|
+
typeArguments: [MoveStructId];
|
447
|
+
}, version?: bigint): Promise<[string]>;
|
448
|
+
function pairedBurnRefExists<T0 = any>(client: Aptos, request: {
|
449
|
+
typeArguments: [MoveStructId];
|
450
|
+
}, version?: bigint): Promise<[boolean]>;
|
451
|
+
function pairedCoin(client: Aptos, request: {
|
452
|
+
functionArguments: [object$.Object<fungible_asset.Metadata>];
|
453
|
+
}, version?: bigint): Promise<[option.Option<type_info.TypeInfo>]>;
|
454
|
+
function pairedMetadata<T0 = any>(client: Aptos, request: {
|
455
|
+
typeArguments: [MoveStructId];
|
456
|
+
}, version?: bigint): Promise<[option.Option<object$.Object<fungible_asset.Metadata>>]>;
|
457
|
+
function pairedMintRefExists<T0 = any>(client: Aptos, request: {
|
458
|
+
typeArguments: [MoveStructId];
|
459
|
+
}, version?: bigint): Promise<[boolean]>;
|
460
|
+
function pairedTransferRefExists<T0 = any>(client: Aptos, request: {
|
461
|
+
typeArguments: [MoveStructId];
|
462
|
+
}, version?: bigint): Promise<[boolean]>;
|
463
|
+
function supply<T0 = any>(client: Aptos, request: {
|
464
|
+
typeArguments: [MoveStructId];
|
465
|
+
}, version?: bigint): Promise<[option.Option<bigint>]>;
|
466
|
+
function symbol$<T0 = any>(client: Aptos, request: {
|
467
|
+
typeArguments: [MoveStructId];
|
468
|
+
}, version?: bigint): Promise<[string]>;
|
469
|
+
}
|
373
470
|
interface CreateCoinConversionMapPayload extends TypedFunctionPayload<[]> {
|
374
471
|
arguments_decoded: [];
|
375
472
|
type_arguments: [];
|
@@ -415,8 +512,13 @@ export declare namespace guid {
|
|
415
512
|
const TYPE_QNAME = "0x1::guid::ID";
|
416
513
|
function type(): TypeDescriptor<ID>;
|
417
514
|
}
|
515
|
+
namespace entry { }
|
516
|
+
namespace view { }
|
517
|
+
}
|
518
|
+
export declare namespace hash {
|
519
|
+
namespace entry { }
|
520
|
+
namespace view { }
|
418
521
|
}
|
419
|
-
export declare namespace hash { }
|
420
522
|
export declare class jwks extends AptosBaseProcessor {
|
421
523
|
constructor(options: AptosBindOptions);
|
422
524
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
@@ -559,6 +661,13 @@ export declare namespace jwks {
|
|
559
661
|
const TYPE_QNAME = "0x1::jwks::UnsupportedJWK";
|
560
662
|
function type(): TypeDescriptor<UnsupportedJWK>;
|
561
663
|
}
|
664
|
+
namespace entry {
|
665
|
+
function updateFederatedJwkSet(client: Aptos, account: AptosAccount, request: {
|
666
|
+
typeArguments: [];
|
667
|
+
functionArguments: [string, string[], string[], string[], string[]];
|
668
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
669
|
+
}
|
670
|
+
namespace view { }
|
562
671
|
interface UpdateFederatedJwkSetPayload extends TypedFunctionPayload<[
|
563
672
|
string,
|
564
673
|
string[],
|
@@ -570,7 +679,10 @@ export declare namespace jwks {
|
|
570
679
|
type_arguments: [];
|
571
680
|
}
|
572
681
|
}
|
573
|
-
export declare namespace util {
|
682
|
+
export declare namespace util {
|
683
|
+
namespace entry { }
|
684
|
+
namespace view { }
|
685
|
+
}
|
574
686
|
export declare class block extends AptosBaseProcessor {
|
575
687
|
constructor(options: AptosBindOptions);
|
576
688
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
@@ -660,9 +772,20 @@ export declare namespace block {
|
|
660
772
|
data_decoded: UpdateEpochIntervalEvent;
|
661
773
|
type_arguments: [];
|
662
774
|
}
|
775
|
+
namespace entry { }
|
776
|
+
namespace view {
|
777
|
+
function getCurrentBlockHeight(client: Aptos, version?: bigint): Promise<[bigint]>;
|
778
|
+
function getEpochIntervalSecs(client: Aptos, version?: bigint): Promise<[bigint]>;
|
779
|
+
}
|
780
|
+
}
|
781
|
+
export declare namespace debug {
|
782
|
+
namespace entry { }
|
783
|
+
namespace view { }
|
784
|
+
}
|
785
|
+
export declare namespace error {
|
786
|
+
namespace entry { }
|
787
|
+
namespace view { }
|
663
788
|
}
|
664
|
-
export declare namespace debug { }
|
665
|
-
export declare namespace error { }
|
666
789
|
export declare namespace event {
|
667
790
|
interface EventHandle<T0> {
|
668
791
|
counter: bigint;
|
@@ -672,6 +795,8 @@ export declare namespace event {
|
|
672
795
|
const TYPE_QNAME = "0x1::event::EventHandle";
|
673
796
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<EventHandle<T0>>;
|
674
797
|
}
|
798
|
+
namespace entry { }
|
799
|
+
namespace view { }
|
675
800
|
}
|
676
801
|
export declare class stake extends AptosBaseProcessor {
|
677
802
|
constructor(options: AptosBindOptions);
|
@@ -1109,6 +1234,95 @@ export declare namespace stake {
|
|
1109
1234
|
data_decoded: WithdrawStakeEvent;
|
1110
1235
|
type_arguments: [];
|
1111
1236
|
}
|
1237
|
+
namespace entry {
|
1238
|
+
function addStake(client: Aptos, account: AptosAccount, request: {
|
1239
|
+
typeArguments: [];
|
1240
|
+
functionArguments: [bigint];
|
1241
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1242
|
+
function increaseLockup(client: Aptos, account: AptosAccount, request: {
|
1243
|
+
typeArguments: [];
|
1244
|
+
functionArguments: [];
|
1245
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1246
|
+
function initializeStakeOwner(client: Aptos, account: AptosAccount, request: {
|
1247
|
+
typeArguments: [];
|
1248
|
+
functionArguments: [bigint, MoveAddressType, MoveAddressType];
|
1249
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1250
|
+
function initializeValidator(client: Aptos, account: AptosAccount, request: {
|
1251
|
+
typeArguments: [];
|
1252
|
+
functionArguments: [string, string, string, string];
|
1253
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1254
|
+
function joinValidatorSet(client: Aptos, account: AptosAccount, request: {
|
1255
|
+
typeArguments: [];
|
1256
|
+
functionArguments: [MoveAddressType];
|
1257
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1258
|
+
function leaveValidatorSet(client: Aptos, account: AptosAccount, request: {
|
1259
|
+
typeArguments: [];
|
1260
|
+
functionArguments: [MoveAddressType];
|
1261
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1262
|
+
function reactivateStake(client: Aptos, account: AptosAccount, request: {
|
1263
|
+
typeArguments: [];
|
1264
|
+
functionArguments: [bigint];
|
1265
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1266
|
+
function rotateConsensusKey(client: Aptos, account: AptosAccount, request: {
|
1267
|
+
typeArguments: [];
|
1268
|
+
functionArguments: [MoveAddressType, string, string];
|
1269
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1270
|
+
function setDelegatedVoter(client: Aptos, account: AptosAccount, request: {
|
1271
|
+
typeArguments: [];
|
1272
|
+
functionArguments: [MoveAddressType];
|
1273
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1274
|
+
function setOperator(client: Aptos, account: AptosAccount, request: {
|
1275
|
+
typeArguments: [];
|
1276
|
+
functionArguments: [MoveAddressType];
|
1277
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1278
|
+
function unlock(client: Aptos, account: AptosAccount, request: {
|
1279
|
+
typeArguments: [];
|
1280
|
+
functionArguments: [bigint];
|
1281
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1282
|
+
function updateNetworkAndFullnodeAddresses(client: Aptos, account: AptosAccount, request: {
|
1283
|
+
typeArguments: [];
|
1284
|
+
functionArguments: [MoveAddressType, string, string];
|
1285
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1286
|
+
function withdraw(client: Aptos, account: AptosAccount, request: {
|
1287
|
+
typeArguments: [];
|
1288
|
+
functionArguments: [bigint];
|
1289
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1290
|
+
}
|
1291
|
+
namespace view {
|
1292
|
+
function getCurrentEpochProposalCounts(client: Aptos, request: {
|
1293
|
+
functionArguments: [bigint];
|
1294
|
+
}, version?: bigint): Promise<[bigint, bigint]>;
|
1295
|
+
function getCurrentEpochVotingPower(client: Aptos, request: {
|
1296
|
+
functionArguments: [MoveAddressType];
|
1297
|
+
}, version?: bigint): Promise<[bigint]>;
|
1298
|
+
function getDelegatedVoter(client: Aptos, request: {
|
1299
|
+
functionArguments: [MoveAddressType];
|
1300
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
1301
|
+
function getLockupSecs(client: Aptos, request: {
|
1302
|
+
functionArguments: [MoveAddressType];
|
1303
|
+
}, version?: bigint): Promise<[bigint]>;
|
1304
|
+
function getOperator(client: Aptos, request: {
|
1305
|
+
functionArguments: [MoveAddressType];
|
1306
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
1307
|
+
function getRemainingLockupSecs(client: Aptos, request: {
|
1308
|
+
functionArguments: [MoveAddressType];
|
1309
|
+
}, version?: bigint): Promise<[bigint]>;
|
1310
|
+
function getStake(client: Aptos, request: {
|
1311
|
+
functionArguments: [MoveAddressType];
|
1312
|
+
}, version?: bigint): Promise<[bigint, bigint, bigint, bigint]>;
|
1313
|
+
function getValidatorConfig(client: Aptos, request: {
|
1314
|
+
functionArguments: [MoveAddressType];
|
1315
|
+
}, version?: bigint): Promise<[string, string, string]>;
|
1316
|
+
function getValidatorIndex(client: Aptos, request: {
|
1317
|
+
functionArguments: [MoveAddressType];
|
1318
|
+
}, version?: bigint): Promise<[bigint]>;
|
1319
|
+
function getValidatorState(client: Aptos, request: {
|
1320
|
+
functionArguments: [MoveAddressType];
|
1321
|
+
}, version?: bigint): Promise<[bigint]>;
|
1322
|
+
function stakePoolExists(client: Aptos, request: {
|
1323
|
+
functionArguments: [MoveAddressType];
|
1324
|
+
}, version?: bigint): Promise<[boolean]>;
|
1325
|
+
}
|
1112
1326
|
interface AddStakePayload extends TypedFunctionPayload<[bigint]> {
|
1113
1327
|
arguments_decoded: [bigint];
|
1114
1328
|
type_arguments: [];
|
@@ -1177,8 +1391,13 @@ export declare namespace table {
|
|
1177
1391
|
const TYPE_QNAME = "0x1::table::Table";
|
1178
1392
|
function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<Table<T0, T1>>;
|
1179
1393
|
}
|
1394
|
+
namespace entry { }
|
1395
|
+
namespace view { }
|
1396
|
+
}
|
1397
|
+
export declare namespace math64 {
|
1398
|
+
namespace entry { }
|
1399
|
+
namespace view { }
|
1180
1400
|
}
|
1181
|
-
export declare namespace math64 { }
|
1182
1401
|
export declare class object$ extends AptosBaseProcessor {
|
1183
1402
|
constructor(options: AptosBindOptions);
|
1184
1403
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
@@ -1229,9 +1448,7 @@ export declare namespace object$ {
|
|
1229
1448
|
const TYPE_QNAME = "0x1::object::LinearTransferRef";
|
1230
1449
|
function type(): TypeDescriptor<LinearTransferRef>;
|
1231
1450
|
}
|
1232
|
-
|
1233
|
-
inner: MoveAddressType;
|
1234
|
-
}
|
1451
|
+
type Object<T> = MoveAddressType;
|
1235
1452
|
namespace Object {
|
1236
1453
|
const TYPE_QNAME = "0x1::object::Object";
|
1237
1454
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Object<T0>>;
|
@@ -1300,6 +1517,38 @@ export declare namespace object$ {
|
|
1300
1517
|
const TYPE_QNAME = "0x1::object::Untransferable";
|
1301
1518
|
function type(): TypeDescriptor<Untransferable>;
|
1302
1519
|
}
|
1520
|
+
namespace entry {
|
1521
|
+
function burn<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
1522
|
+
typeArguments: [MoveStructId];
|
1523
|
+
functionArguments: [object$.Object<T0>];
|
1524
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1525
|
+
function transfer<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
1526
|
+
typeArguments: [MoveStructId];
|
1527
|
+
functionArguments: [object$.Object<T0>, MoveAddressType];
|
1528
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1529
|
+
function transferCall(client: Aptos, account: AptosAccount, request: {
|
1530
|
+
typeArguments: [];
|
1531
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
1532
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1533
|
+
function transferToObject<T0 = any, T1 = any>(client: Aptos, account: AptosAccount, request: {
|
1534
|
+
typeArguments: [MoveStructId, MoveStructId];
|
1535
|
+
functionArguments: [object$.Object<T0>, object$.Object<T1>];
|
1536
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1537
|
+
function unburn<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
1538
|
+
typeArguments: [MoveStructId];
|
1539
|
+
functionArguments: [object$.Object<T0>];
|
1540
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1541
|
+
}
|
1542
|
+
namespace view {
|
1543
|
+
function isBurnt<T0 = any>(client: Aptos, request: {
|
1544
|
+
typeArguments: [MoveStructId];
|
1545
|
+
functionArguments: [object$.Object<T0>];
|
1546
|
+
}, version?: bigint): Promise<[boolean]>;
|
1547
|
+
function isUntransferable<T0 = any>(client: Aptos, request: {
|
1548
|
+
typeArguments: [MoveStructId];
|
1549
|
+
functionArguments: [object$.Object<T0>];
|
1550
|
+
}, version?: bigint): Promise<[boolean]>;
|
1551
|
+
}
|
1303
1552
|
interface BurnPayload<T0 = any> extends TypedFunctionPayload<[object$.Object<T0>]> {
|
1304
1553
|
arguments_decoded: [object$.Object<T0>];
|
1305
1554
|
type_arguments: [string];
|
@@ -1323,14 +1572,19 @@ export declare namespace object$ {
|
|
1323
1572
|
}
|
1324
1573
|
export declare namespace option {
|
1325
1574
|
interface Option<T0> {
|
1326
|
-
vec: T0[]
|
1575
|
+
vec: T0[];
|
1327
1576
|
}
|
1328
1577
|
namespace Option {
|
1329
1578
|
const TYPE_QNAME = "0x1::option::Option";
|
1330
1579
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Option<T0>>;
|
1331
1580
|
}
|
1581
|
+
namespace entry { }
|
1582
|
+
namespace view { }
|
1583
|
+
}
|
1584
|
+
export declare namespace signer {
|
1585
|
+
namespace entry { }
|
1586
|
+
namespace view { }
|
1332
1587
|
}
|
1333
|
-
export declare namespace signer { }
|
1334
1588
|
export declare namespace string$ {
|
1335
1589
|
interface String {
|
1336
1590
|
bytes: string;
|
@@ -1339,8 +1593,13 @@ export declare namespace string$ {
|
|
1339
1593
|
const TYPE_QNAME = "0x1::string::String";
|
1340
1594
|
function type(): TypeDescriptor<String>;
|
1341
1595
|
}
|
1596
|
+
namespace entry { }
|
1597
|
+
namespace view { }
|
1598
|
+
}
|
1599
|
+
export declare namespace vector {
|
1600
|
+
namespace entry { }
|
1601
|
+
namespace view { }
|
1342
1602
|
}
|
1343
|
-
export declare namespace vector { }
|
1344
1603
|
export declare class voting extends AptosBaseProcessor {
|
1345
1604
|
constructor(options: AptosBindOptions);
|
1346
1605
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
@@ -1485,6 +1744,69 @@ export declare namespace voting {
|
|
1485
1744
|
const TYPE_QNAME = "0x1::voting::VotingForum";
|
1486
1745
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<VotingForum<T0>>;
|
1487
1746
|
}
|
1747
|
+
namespace entry { }
|
1748
|
+
namespace view {
|
1749
|
+
function getEarlyResolutionVoteThreshold<T0 = any>(client: Aptos, request: {
|
1750
|
+
typeArguments: [MoveStructId];
|
1751
|
+
functionArguments: [MoveAddressType, bigint];
|
1752
|
+
}, version?: bigint): Promise<[option.Option<bigint>]>;
|
1753
|
+
function getExecutionHash<T0 = any>(client: Aptos, request: {
|
1754
|
+
typeArguments: [MoveStructId];
|
1755
|
+
functionArguments: [MoveAddressType, bigint];
|
1756
|
+
}, version?: bigint): Promise<[string]>;
|
1757
|
+
function getMinVoteThreshold<T0 = any>(client: Aptos, request: {
|
1758
|
+
typeArguments: [MoveStructId];
|
1759
|
+
functionArguments: [MoveAddressType, bigint];
|
1760
|
+
}, version?: bigint): Promise<[bigint]>;
|
1761
|
+
function getProposalCreationSecs<T0 = any>(client: Aptos, request: {
|
1762
|
+
typeArguments: [MoveStructId];
|
1763
|
+
functionArguments: [MoveAddressType, bigint];
|
1764
|
+
}, version?: bigint): Promise<[bigint]>;
|
1765
|
+
function getProposalExpirationSecs<T0 = any>(client: Aptos, request: {
|
1766
|
+
typeArguments: [MoveStructId];
|
1767
|
+
functionArguments: [MoveAddressType, bigint];
|
1768
|
+
}, version?: bigint): Promise<[bigint]>;
|
1769
|
+
function getProposalMetadata<T0 = any>(client: Aptos, request: {
|
1770
|
+
typeArguments: [MoveStructId];
|
1771
|
+
functionArguments: [MoveAddressType, bigint];
|
1772
|
+
}, version?: bigint): Promise<[simple_map.SimpleMap<string, string>]>;
|
1773
|
+
function getProposalMetadataValue<T0 = any>(client: Aptos, request: {
|
1774
|
+
typeArguments: [MoveStructId];
|
1775
|
+
functionArguments: [MoveAddressType, bigint, string];
|
1776
|
+
}, version?: bigint): Promise<[string]>;
|
1777
|
+
function getProposalState<T0 = any>(client: Aptos, request: {
|
1778
|
+
typeArguments: [MoveStructId];
|
1779
|
+
functionArguments: [MoveAddressType, bigint];
|
1780
|
+
}, version?: bigint): Promise<[bigint]>;
|
1781
|
+
function getProposer<T0 = any>(client: Aptos, request: {
|
1782
|
+
typeArguments: [MoveStructId];
|
1783
|
+
functionArguments: [MoveAddressType, bigint];
|
1784
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
1785
|
+
function getResolutionTimeSecs<T0 = any>(client: Aptos, request: {
|
1786
|
+
typeArguments: [MoveStructId];
|
1787
|
+
functionArguments: [MoveAddressType, bigint];
|
1788
|
+
}, version?: bigint): Promise<[bigint]>;
|
1789
|
+
function getVotes<T0 = any>(client: Aptos, request: {
|
1790
|
+
typeArguments: [MoveStructId];
|
1791
|
+
functionArguments: [MoveAddressType, bigint];
|
1792
|
+
}, version?: bigint): Promise<[bigint, bigint]>;
|
1793
|
+
function isMultiStepProposalInExecution<T0 = any>(client: Aptos, request: {
|
1794
|
+
typeArguments: [MoveStructId];
|
1795
|
+
functionArguments: [MoveAddressType, bigint];
|
1796
|
+
}, version?: bigint): Promise<[boolean]>;
|
1797
|
+
function isResolved<T0 = any>(client: Aptos, request: {
|
1798
|
+
typeArguments: [MoveStructId];
|
1799
|
+
functionArguments: [MoveAddressType, bigint];
|
1800
|
+
}, version?: bigint): Promise<[boolean]>;
|
1801
|
+
function isVotingClosed<T0 = any>(client: Aptos, request: {
|
1802
|
+
typeArguments: [MoveStructId];
|
1803
|
+
functionArguments: [MoveAddressType, bigint];
|
1804
|
+
}, version?: bigint): Promise<[boolean]>;
|
1805
|
+
function nextProposalId<T0 = any>(client: Aptos, request: {
|
1806
|
+
typeArguments: [MoveStructId];
|
1807
|
+
functionArguments: [MoveAddressType];
|
1808
|
+
}, version?: bigint): Promise<[bigint]>;
|
1809
|
+
}
|
1488
1810
|
}
|
1489
1811
|
export declare class account extends AptosBaseProcessor {
|
1490
1812
|
constructor(options: AptosBindOptions);
|
@@ -1499,6 +1821,7 @@ export declare class account extends AptosBaseProcessor {
|
|
1499
1821
|
onEntryRotateAuthenticationKey(func: (call: account.RotateAuthenticationKeyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
|
1500
1822
|
onEntryRotateAuthenticationKeyCall(func: (call: account.RotateAuthenticationKeyCallPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
|
1501
1823
|
onEntryRotateAuthenticationKeyWithRotationCapability(func: (call: account.RotateAuthenticationKeyWithRotationCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
|
1824
|
+
onEventCoinRegister(func: (event: account.CoinRegisterInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
|
1502
1825
|
onEventKeyRotation(func: (event: account.KeyRotationInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
|
1503
1826
|
onEventCoinRegisterEvent(func: (event: account.CoinRegisterEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
|
1504
1827
|
onEventKeyRotationEvent(func: (event: account.KeyRotationEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
|
@@ -1524,6 +1847,18 @@ export declare namespace account {
|
|
1524
1847
|
const TYPE_QNAME = "0x1::account::CapabilityOffer";
|
1525
1848
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<CapabilityOffer<T0>>;
|
1526
1849
|
}
|
1850
|
+
interface CoinRegister {
|
1851
|
+
account: MoveAddressType;
|
1852
|
+
type_info: type_info.TypeInfo;
|
1853
|
+
}
|
1854
|
+
namespace CoinRegister {
|
1855
|
+
const TYPE_QNAME = "0x1::account::CoinRegister";
|
1856
|
+
function type(): TypeDescriptor<CoinRegister>;
|
1857
|
+
}
|
1858
|
+
interface CoinRegisterInstance extends TypedEventInstance<CoinRegister> {
|
1859
|
+
data_decoded: CoinRegister;
|
1860
|
+
type_arguments: [];
|
1861
|
+
}
|
1527
1862
|
interface CoinRegisterEvent {
|
1528
1863
|
type_info: type_info.TypeInfo;
|
1529
1864
|
}
|
@@ -1626,6 +1961,70 @@ export declare namespace account {
|
|
1626
1961
|
const TYPE_QNAME = "0x1::account::SignerCapabilityOfferProofChallengeV2";
|
1627
1962
|
function type(): TypeDescriptor<SignerCapabilityOfferProofChallengeV2>;
|
1628
1963
|
}
|
1964
|
+
namespace entry {
|
1965
|
+
function offerRotationCapability(client: Aptos, account: AptosAccount, request: {
|
1966
|
+
typeArguments: [];
|
1967
|
+
functionArguments: [string, number, string, MoveAddressType];
|
1968
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1969
|
+
function offerSignerCapability(client: Aptos, account: AptosAccount, request: {
|
1970
|
+
typeArguments: [];
|
1971
|
+
functionArguments: [string, number, string, MoveAddressType];
|
1972
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1973
|
+
function revokeAnyRotationCapability(client: Aptos, account: AptosAccount, request: {
|
1974
|
+
typeArguments: [];
|
1975
|
+
functionArguments: [];
|
1976
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1977
|
+
function revokeAnySignerCapability(client: Aptos, account: AptosAccount, request: {
|
1978
|
+
typeArguments: [];
|
1979
|
+
functionArguments: [];
|
1980
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1981
|
+
function revokeRotationCapability(client: Aptos, account: AptosAccount, request: {
|
1982
|
+
typeArguments: [];
|
1983
|
+
functionArguments: [MoveAddressType];
|
1984
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1985
|
+
function revokeSignerCapability(client: Aptos, account: AptosAccount, request: {
|
1986
|
+
typeArguments: [];
|
1987
|
+
functionArguments: [MoveAddressType];
|
1988
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1989
|
+
function rotateAuthenticationKey(client: Aptos, account: AptosAccount, request: {
|
1990
|
+
typeArguments: [];
|
1991
|
+
functionArguments: [number, string, number, string, string, string];
|
1992
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1993
|
+
function rotateAuthenticationKeyCall(client: Aptos, account: AptosAccount, request: {
|
1994
|
+
typeArguments: [];
|
1995
|
+
functionArguments: [string];
|
1996
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
1997
|
+
function rotateAuthenticationKeyWithRotationCapability(client: Aptos, account: AptosAccount, request: {
|
1998
|
+
typeArguments: [];
|
1999
|
+
functionArguments: [MoveAddressType, number, string, string];
|
2000
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2001
|
+
}
|
2002
|
+
namespace view {
|
2003
|
+
function existsAt(client: Aptos, request: {
|
2004
|
+
functionArguments: [MoveAddressType];
|
2005
|
+
}, version?: bigint): Promise<[boolean]>;
|
2006
|
+
function getAuthenticationKey(client: Aptos, request: {
|
2007
|
+
functionArguments: [MoveAddressType];
|
2008
|
+
}, version?: bigint): Promise<[string]>;
|
2009
|
+
function getGuidNextCreationNum(client: Aptos, request: {
|
2010
|
+
functionArguments: [MoveAddressType];
|
2011
|
+
}, version?: bigint): Promise<[bigint]>;
|
2012
|
+
function getRotationCapabilityOfferFor(client: Aptos, request: {
|
2013
|
+
functionArguments: [MoveAddressType];
|
2014
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
2015
|
+
function getSequenceNumber(client: Aptos, request: {
|
2016
|
+
functionArguments: [MoveAddressType];
|
2017
|
+
}, version?: bigint): Promise<[bigint]>;
|
2018
|
+
function getSignerCapabilityOfferFor(client: Aptos, request: {
|
2019
|
+
functionArguments: [MoveAddressType];
|
2020
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
2021
|
+
function isRotationCapabilityOffered(client: Aptos, request: {
|
2022
|
+
functionArguments: [MoveAddressType];
|
2023
|
+
}, version?: bigint): Promise<[boolean]>;
|
2024
|
+
function isSignerCapabilityOffered(client: Aptos, request: {
|
2025
|
+
functionArguments: [MoveAddressType];
|
2026
|
+
}, version?: bigint): Promise<[boolean]>;
|
2027
|
+
}
|
1629
2028
|
interface OfferRotationCapabilityPayload extends TypedFunctionPayload<[string, number, string, MoveAddressType]> {
|
1630
2029
|
arguments_decoded: [string, number, string, MoveAddressType];
|
1631
2030
|
type_arguments: [];
|
@@ -1700,6 +2099,8 @@ export declare namespace ed25519 {
|
|
1700
2099
|
const TYPE_QNAME = "0x1::ed25519::ValidatedPublicKey";
|
1701
2100
|
function type(): TypeDescriptor<ValidatedPublicKey>;
|
1702
2101
|
}
|
2102
|
+
namespace entry { }
|
2103
|
+
namespace view { }
|
1703
2104
|
}
|
1704
2105
|
export declare namespace genesis {
|
1705
2106
|
interface AccountMap {
|
@@ -1744,8 +2145,13 @@ export declare namespace genesis {
|
|
1744
2145
|
const TYPE_QNAME = "0x1::genesis::ValidatorConfigurationWithCommission";
|
1745
2146
|
function type(): TypeDescriptor<ValidatorConfigurationWithCommission>;
|
1746
2147
|
}
|
2148
|
+
namespace entry { }
|
2149
|
+
namespace view { }
|
2150
|
+
}
|
2151
|
+
export declare namespace math128 {
|
2152
|
+
namespace entry { }
|
2153
|
+
namespace view { }
|
1747
2154
|
}
|
1748
|
-
export declare namespace math128 { }
|
1749
2155
|
export declare class version extends AptosBaseProcessor {
|
1750
2156
|
constructor(options: AptosBindOptions);
|
1751
2157
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
@@ -1768,6 +2174,17 @@ export declare namespace version {
|
|
1768
2174
|
const TYPE_QNAME = "0x1::version::Version";
|
1769
2175
|
function type(): TypeDescriptor<Version>;
|
1770
2176
|
}
|
2177
|
+
namespace entry {
|
2178
|
+
function setForNextEpoch(client: Aptos, account: AptosAccount, request: {
|
2179
|
+
typeArguments: [];
|
2180
|
+
functionArguments: [bigint];
|
2181
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2182
|
+
function setVersion(client: Aptos, account: AptosAccount, request: {
|
2183
|
+
typeArguments: [];
|
2184
|
+
functionArguments: [bigint];
|
2185
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2186
|
+
}
|
2187
|
+
namespace view { }
|
1771
2188
|
interface SetForNextEpochPayload extends TypedFunctionPayload<[bigint]> {
|
1772
2189
|
arguments_decoded: [bigint];
|
1773
2190
|
type_arguments: [];
|
@@ -2169,6 +2586,124 @@ export declare namespace vesting {
|
|
2169
2586
|
const TYPE_QNAME = "0x1::vesting::VestingSchedule";
|
2170
2587
|
function type(): TypeDescriptor<VestingSchedule>;
|
2171
2588
|
}
|
2589
|
+
namespace entry {
|
2590
|
+
function adminWithdraw(client: Aptos, account: AptosAccount, request: {
|
2591
|
+
typeArguments: [];
|
2592
|
+
functionArguments: [MoveAddressType];
|
2593
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2594
|
+
function distribute(client: Aptos, account: AptosAccount, request: {
|
2595
|
+
typeArguments: [];
|
2596
|
+
functionArguments: [MoveAddressType];
|
2597
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2598
|
+
function distributeMany(client: Aptos, account: AptosAccount, request: {
|
2599
|
+
typeArguments: [];
|
2600
|
+
functionArguments: [MoveAddressType[]];
|
2601
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2602
|
+
function resetBeneficiary(client: Aptos, account: AptosAccount, request: {
|
2603
|
+
typeArguments: [];
|
2604
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
2605
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2606
|
+
function resetLockup(client: Aptos, account: AptosAccount, request: {
|
2607
|
+
typeArguments: [];
|
2608
|
+
functionArguments: [MoveAddressType];
|
2609
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2610
|
+
function setBeneficiary(client: Aptos, account: AptosAccount, request: {
|
2611
|
+
typeArguments: [];
|
2612
|
+
functionArguments: [MoveAddressType, MoveAddressType, MoveAddressType];
|
2613
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2614
|
+
function setBeneficiaryForOperator(client: Aptos, account: AptosAccount, request: {
|
2615
|
+
typeArguments: [];
|
2616
|
+
functionArguments: [MoveAddressType];
|
2617
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2618
|
+
function setBeneficiaryResetter(client: Aptos, account: AptosAccount, request: {
|
2619
|
+
typeArguments: [];
|
2620
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
2621
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2622
|
+
function setManagementRole(client: Aptos, account: AptosAccount, request: {
|
2623
|
+
typeArguments: [];
|
2624
|
+
functionArguments: [MoveAddressType, string, MoveAddressType];
|
2625
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2626
|
+
function terminateVestingContract(client: Aptos, account: AptosAccount, request: {
|
2627
|
+
typeArguments: [];
|
2628
|
+
functionArguments: [MoveAddressType];
|
2629
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2630
|
+
function unlockRewards(client: Aptos, account: AptosAccount, request: {
|
2631
|
+
typeArguments: [];
|
2632
|
+
functionArguments: [MoveAddressType];
|
2633
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2634
|
+
function unlockRewardsMany(client: Aptos, account: AptosAccount, request: {
|
2635
|
+
typeArguments: [];
|
2636
|
+
functionArguments: [MoveAddressType[]];
|
2637
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2638
|
+
function updateCommissionPercentage(client: Aptos, account: AptosAccount, request: {
|
2639
|
+
typeArguments: [];
|
2640
|
+
functionArguments: [MoveAddressType, bigint];
|
2641
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2642
|
+
function updateOperator(client: Aptos, account: AptosAccount, request: {
|
2643
|
+
typeArguments: [];
|
2644
|
+
functionArguments: [MoveAddressType, MoveAddressType, bigint];
|
2645
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2646
|
+
function updateOperatorWithSameCommission(client: Aptos, account: AptosAccount, request: {
|
2647
|
+
typeArguments: [];
|
2648
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
2649
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2650
|
+
function updateVoter(client: Aptos, account: AptosAccount, request: {
|
2651
|
+
typeArguments: [];
|
2652
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
2653
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2654
|
+
function vest(client: Aptos, account: AptosAccount, request: {
|
2655
|
+
typeArguments: [];
|
2656
|
+
functionArguments: [MoveAddressType];
|
2657
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2658
|
+
function vestMany(client: Aptos, account: AptosAccount, request: {
|
2659
|
+
typeArguments: [];
|
2660
|
+
functionArguments: [MoveAddressType[]];
|
2661
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2662
|
+
}
|
2663
|
+
namespace view {
|
2664
|
+
function accumulatedRewards(client: Aptos, request: {
|
2665
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
2666
|
+
}, version?: bigint): Promise<[bigint]>;
|
2667
|
+
function beneficiary(client: Aptos, request: {
|
2668
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
2669
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
2670
|
+
function operator(client: Aptos, request: {
|
2671
|
+
functionArguments: [MoveAddressType];
|
2672
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
2673
|
+
function operatorCommissionPercentage(client: Aptos, request: {
|
2674
|
+
functionArguments: [MoveAddressType];
|
2675
|
+
}, version?: bigint): Promise<[bigint]>;
|
2676
|
+
function periodDurationSecs(client: Aptos, request: {
|
2677
|
+
functionArguments: [MoveAddressType];
|
2678
|
+
}, version?: bigint): Promise<[bigint]>;
|
2679
|
+
function remainingGrant(client: Aptos, request: {
|
2680
|
+
functionArguments: [MoveAddressType];
|
2681
|
+
}, version?: bigint): Promise<[bigint]>;
|
2682
|
+
function shareholder(client: Aptos, request: {
|
2683
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
2684
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
2685
|
+
function shareholders(client: Aptos, request: {
|
2686
|
+
functionArguments: [MoveAddressType];
|
2687
|
+
}, version?: bigint): Promise<[MoveAddressType[]]>;
|
2688
|
+
function stakePoolAddress(client: Aptos, request: {
|
2689
|
+
functionArguments: [MoveAddressType];
|
2690
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
2691
|
+
function totalAccumulatedRewards(client: Aptos, request: {
|
2692
|
+
functionArguments: [MoveAddressType];
|
2693
|
+
}, version?: bigint): Promise<[bigint]>;
|
2694
|
+
function vestingContracts(client: Aptos, request: {
|
2695
|
+
functionArguments: [MoveAddressType];
|
2696
|
+
}, version?: bigint): Promise<[MoveAddressType[]]>;
|
2697
|
+
function vestingSchedule(client: Aptos, request: {
|
2698
|
+
functionArguments: [MoveAddressType];
|
2699
|
+
}, version?: bigint): Promise<[vesting.VestingSchedule]>;
|
2700
|
+
function vestingStartSecs(client: Aptos, request: {
|
2701
|
+
functionArguments: [MoveAddressType];
|
2702
|
+
}, version?: bigint): Promise<[bigint]>;
|
2703
|
+
function voter(client: Aptos, request: {
|
2704
|
+
functionArguments: [MoveAddressType];
|
2705
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
2706
|
+
}
|
2172
2707
|
interface AdminWithdrawPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
2173
2708
|
arguments_decoded: [MoveAddressType];
|
2174
2709
|
type_arguments: [];
|
@@ -2289,6 +2824,8 @@ export declare namespace bls12381 {
|
|
2289
2824
|
const TYPE_QNAME = "0x1::bls12381::Signature";
|
2290
2825
|
function type(): TypeDescriptor<Signature>;
|
2291
2826
|
}
|
2827
|
+
namespace entry { }
|
2828
|
+
namespace view { }
|
2292
2829
|
}
|
2293
2830
|
export declare namespace chain_id {
|
2294
2831
|
interface ChainId {
|
@@ -2298,6 +2835,10 @@ export declare namespace chain_id {
|
|
2298
2835
|
const TYPE_QNAME = "0x1::chain_id::ChainId";
|
2299
2836
|
function type(): TypeDescriptor<ChainId>;
|
2300
2837
|
}
|
2838
|
+
namespace entry { }
|
2839
|
+
namespace view {
|
2840
|
+
function get(client: Aptos, version?: bigint): Promise<[number]>;
|
2841
|
+
}
|
2301
2842
|
}
|
2302
2843
|
export declare namespace features {
|
2303
2844
|
interface Features {
|
@@ -2314,8 +2855,17 @@ export declare namespace features {
|
|
2314
2855
|
const TYPE_QNAME = "0x1::features::PendingFeatures";
|
2315
2856
|
function type(): TypeDescriptor<PendingFeatures>;
|
2316
2857
|
}
|
2858
|
+
namespace entry { }
|
2859
|
+
namespace view {
|
2860
|
+
function isEnabled(client: Aptos, request: {
|
2861
|
+
functionArguments: [bigint];
|
2862
|
+
}, version?: bigint): Promise<[boolean]>;
|
2863
|
+
}
|
2864
|
+
}
|
2865
|
+
export declare namespace from_bcs {
|
2866
|
+
namespace entry { }
|
2867
|
+
namespace view { }
|
2317
2868
|
}
|
2318
|
-
export declare namespace from_bcs { }
|
2319
2869
|
export declare namespace pool_u64 {
|
2320
2870
|
interface Pool {
|
2321
2871
|
shareholders_limit: bigint;
|
@@ -2329,6 +2879,8 @@ export declare namespace pool_u64 {
|
|
2329
2879
|
const TYPE_QNAME = "0x1::pool_u64::Pool";
|
2330
2880
|
function type(): TypeDescriptor<Pool>;
|
2331
2881
|
}
|
2882
|
+
namespace entry { }
|
2883
|
+
namespace view { }
|
2332
2884
|
}
|
2333
2885
|
export declare namespace secp256k1 {
|
2334
2886
|
interface ECDSARawPublicKey {
|
@@ -2345,6 +2897,8 @@ export declare namespace secp256k1 {
|
|
2345
2897
|
const TYPE_QNAME = "0x1::secp256k1::ECDSASignature";
|
2346
2898
|
function type(): TypeDescriptor<ECDSASignature>;
|
2347
2899
|
}
|
2900
|
+
namespace entry { }
|
2901
|
+
namespace view { }
|
2348
2902
|
}
|
2349
2903
|
export declare namespace timestamp {
|
2350
2904
|
interface CurrentTimeMicroseconds {
|
@@ -2354,6 +2908,11 @@ export declare namespace timestamp {
|
|
2354
2908
|
const TYPE_QNAME = "0x1::timestamp::CurrentTimeMicroseconds";
|
2355
2909
|
function type(): TypeDescriptor<CurrentTimeMicroseconds>;
|
2356
2910
|
}
|
2911
|
+
namespace entry { }
|
2912
|
+
namespace view {
|
2913
|
+
function nowMicroseconds(client: Aptos, version?: bigint): Promise<[bigint]>;
|
2914
|
+
function nowSeconds(client: Aptos, version?: bigint): Promise<[bigint]>;
|
2915
|
+
}
|
2357
2916
|
}
|
2358
2917
|
export declare namespace type_info {
|
2359
2918
|
interface TypeInfo {
|
@@ -2365,6 +2924,8 @@ export declare namespace type_info {
|
|
2365
2924
|
const TYPE_QNAME = "0x1::type_info::TypeInfo";
|
2366
2925
|
function type(): TypeDescriptor<TypeInfo>;
|
2367
2926
|
}
|
2927
|
+
namespace entry { }
|
2928
|
+
namespace view { }
|
2368
2929
|
}
|
2369
2930
|
export declare namespace aggregator {
|
2370
2931
|
interface Aggregator {
|
@@ -2376,6 +2937,8 @@ export declare namespace aggregator {
|
|
2376
2937
|
const TYPE_QNAME = "0x1::aggregator::Aggregator";
|
2377
2938
|
function type(): TypeDescriptor<Aggregator>;
|
2378
2939
|
}
|
2940
|
+
namespace entry { }
|
2941
|
+
namespace view { }
|
2379
2942
|
}
|
2380
2943
|
export declare class aptos_coin extends AptosBaseProcessor {
|
2381
2944
|
constructor(options: AptosBindOptions);
|
@@ -2414,6 +2977,21 @@ export declare namespace aptos_coin {
|
|
2414
2977
|
const TYPE_QNAME = "0x1::aptos_coin::MintCapStore";
|
2415
2978
|
function type(): TypeDescriptor<MintCapStore>;
|
2416
2979
|
}
|
2980
|
+
namespace entry {
|
2981
|
+
function claimMintCapability(client: Aptos, account: AptosAccount, request: {
|
2982
|
+
typeArguments: [];
|
2983
|
+
functionArguments: [];
|
2984
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2985
|
+
function delegateMintCapability(client: Aptos, account: AptosAccount, request: {
|
2986
|
+
typeArguments: [];
|
2987
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
2988
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2989
|
+
function mint(client: Aptos, account: AptosAccount, request: {
|
2990
|
+
typeArguments: [];
|
2991
|
+
functionArguments: [MoveAddressType, bigint];
|
2992
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
2993
|
+
}
|
2994
|
+
namespace view { }
|
2417
2995
|
interface ClaimMintCapabilityPayload extends TypedFunctionPayload<[]> {
|
2418
2996
|
arguments_decoded: [];
|
2419
2997
|
type_arguments: [];
|
@@ -2427,10 +3005,13 @@ export declare namespace aptos_coin {
|
|
2427
3005
|
type_arguments: [];
|
2428
3006
|
}
|
2429
3007
|
}
|
2430
|
-
export declare namespace aptos_hash {
|
3008
|
+
export declare namespace aptos_hash {
|
3009
|
+
namespace entry { }
|
3010
|
+
namespace view { }
|
3011
|
+
}
|
2431
3012
|
export declare namespace big_vector {
|
2432
3013
|
interface BigVector<T0> {
|
2433
|
-
buckets: table_with_length.TableWithLength<bigint, T0[]
|
3014
|
+
buckets: table_with_length.TableWithLength<bigint, T0[]>;
|
2434
3015
|
end_index: bigint;
|
2435
3016
|
bucket_size: bigint;
|
2436
3017
|
}
|
@@ -2438,6 +3019,8 @@ export declare namespace big_vector {
|
|
2438
3019
|
const TYPE_QNAME = "0x1::big_vector::BigVector";
|
2439
3020
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<BigVector<T0>>;
|
2440
3021
|
}
|
3022
|
+
namespace entry { }
|
3023
|
+
namespace view { }
|
2441
3024
|
}
|
2442
3025
|
export declare namespace bit_vector {
|
2443
3026
|
interface BitVector {
|
@@ -2448,6 +3031,8 @@ export declare namespace bit_vector {
|
|
2448
3031
|
const TYPE_QNAME = "0x1::bit_vector::BitVector";
|
2449
3032
|
function type(): TypeDescriptor<BitVector>;
|
2450
3033
|
}
|
3034
|
+
namespace entry { }
|
3035
|
+
namespace view { }
|
2451
3036
|
}
|
2452
3037
|
export declare namespace capability {
|
2453
3038
|
interface Cap<T0> {
|
@@ -2478,6 +3063,8 @@ export declare namespace capability {
|
|
2478
3063
|
const TYPE_QNAME = "0x1::capability::LinearCap";
|
2479
3064
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<LinearCap<T0>>;
|
2480
3065
|
}
|
3066
|
+
namespace entry { }
|
3067
|
+
namespace view { }
|
2481
3068
|
}
|
2482
3069
|
export declare namespace comparator {
|
2483
3070
|
interface Result {
|
@@ -2487,8 +3074,13 @@ export declare namespace comparator {
|
|
2487
3074
|
const TYPE_QNAME = "0x1::comparator::Result";
|
2488
3075
|
function type(): TypeDescriptor<Result>;
|
2489
3076
|
}
|
3077
|
+
namespace entry { }
|
3078
|
+
namespace view { }
|
3079
|
+
}
|
3080
|
+
export declare namespace math_fixed {
|
3081
|
+
namespace entry { }
|
3082
|
+
namespace view { }
|
2490
3083
|
}
|
2491
|
-
export declare namespace math_fixed { }
|
2492
3084
|
export declare class randomness extends AptosBaseProcessor {
|
2493
3085
|
constructor(options: AptosBindOptions);
|
2494
3086
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
@@ -2516,6 +3108,8 @@ export declare namespace randomness {
|
|
2516
3108
|
data_decoded: RandomnessGeneratedEvent;
|
2517
3109
|
type_arguments: [];
|
2518
3110
|
}
|
3111
|
+
namespace entry { }
|
3112
|
+
namespace view { }
|
2519
3113
|
}
|
2520
3114
|
export declare namespace simple_map {
|
2521
3115
|
interface Element<T0, T1> {
|
@@ -2533,6 +3127,8 @@ export declare namespace simple_map {
|
|
2533
3127
|
const TYPE_QNAME = "0x1::simple_map::SimpleMap";
|
2534
3128
|
function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<SimpleMap<T0, T1>>;
|
2535
3129
|
}
|
3130
|
+
namespace entry { }
|
3131
|
+
namespace view { }
|
2536
3132
|
}
|
2537
3133
|
export declare namespace smart_table {
|
2538
3134
|
interface Entry<T0, T1> {
|
@@ -2556,6 +3152,8 @@ export declare namespace smart_table {
|
|
2556
3152
|
const TYPE_QNAME = "0x1::smart_table::SmartTable";
|
2557
3153
|
function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<SmartTable<T0, T1>>;
|
2558
3154
|
}
|
3155
|
+
namespace entry { }
|
3156
|
+
namespace view { }
|
2559
3157
|
}
|
2560
3158
|
export declare namespace storage_gas {
|
2561
3159
|
interface GasCurve {
|
@@ -2605,6 +3203,8 @@ export declare namespace storage_gas {
|
|
2605
3203
|
const TYPE_QNAME = "0x1::storage_gas::UsageGasConfig";
|
2606
3204
|
function type(): TypeDescriptor<UsageGasConfig>;
|
2607
3205
|
}
|
3206
|
+
namespace entry { }
|
3207
|
+
namespace view { }
|
2608
3208
|
}
|
2609
3209
|
export declare namespace chain_status {
|
2610
3210
|
interface GenesisEndMarker {
|
@@ -2614,6 +3214,11 @@ export declare namespace chain_status {
|
|
2614
3214
|
const TYPE_QNAME = "0x1::chain_status::GenesisEndMarker";
|
2615
3215
|
function type(): TypeDescriptor<GenesisEndMarker>;
|
2616
3216
|
}
|
3217
|
+
namespace entry { }
|
3218
|
+
namespace view {
|
3219
|
+
function isGenesis(client: Aptos, version?: bigint): Promise<[boolean]>;
|
3220
|
+
function isOperating(client: Aptos, version?: bigint): Promise<[boolean]>;
|
3221
|
+
}
|
2617
3222
|
}
|
2618
3223
|
export declare namespace copyable_any {
|
2619
3224
|
interface Any {
|
@@ -2624,6 +3229,8 @@ export declare namespace copyable_any {
|
|
2624
3229
|
const TYPE_QNAME = "0x1::copyable_any::Any";
|
2625
3230
|
function type(): TypeDescriptor<Any>;
|
2626
3231
|
}
|
3232
|
+
namespace entry { }
|
3233
|
+
namespace view { }
|
2627
3234
|
}
|
2628
3235
|
export declare namespace gas_schedule {
|
2629
3236
|
interface GasEntry {
|
@@ -2649,6 +3256,8 @@ export declare namespace gas_schedule {
|
|
2649
3256
|
const TYPE_QNAME = "0x1::gas_schedule::GasScheduleV2";
|
2650
3257
|
function type(): TypeDescriptor<GasScheduleV2>;
|
2651
3258
|
}
|
3259
|
+
namespace entry { }
|
3260
|
+
namespace view { }
|
2652
3261
|
}
|
2653
3262
|
export declare class managed_coin extends AptosBaseProcessor {
|
2654
3263
|
constructor(options: AptosBindOptions);
|
@@ -2670,6 +3279,29 @@ export declare namespace managed_coin {
|
|
2670
3279
|
const TYPE_QNAME = "0x1::managed_coin::Capabilities";
|
2671
3280
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Capabilities<T0>>;
|
2672
3281
|
}
|
3282
|
+
namespace entry {
|
3283
|
+
function burn<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
3284
|
+
typeArguments: [MoveStructId];
|
3285
|
+
functionArguments: [bigint];
|
3286
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3287
|
+
function destroyCaps<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
3288
|
+
typeArguments: [MoveStructId];
|
3289
|
+
functionArguments: [];
|
3290
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3291
|
+
function initialize<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
3292
|
+
typeArguments: [MoveStructId];
|
3293
|
+
functionArguments: [string, string, number, boolean];
|
3294
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3295
|
+
function mint<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
3296
|
+
typeArguments: [MoveStructId];
|
3297
|
+
functionArguments: [MoveAddressType, bigint];
|
3298
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3299
|
+
function register<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
3300
|
+
typeArguments: [MoveStructId];
|
3301
|
+
functionArguments: [];
|
3302
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3303
|
+
}
|
3304
|
+
namespace view { }
|
2673
3305
|
interface BurnPayload<T0 = any> extends TypedFunctionPayload<[bigint]> {
|
2674
3306
|
arguments_decoded: [bigint];
|
2675
3307
|
type_arguments: [string];
|
@@ -2691,7 +3323,10 @@ export declare namespace managed_coin {
|
|
2691
3323
|
type_arguments: [string];
|
2692
3324
|
}
|
2693
3325
|
}
|
2694
|
-
export declare namespace math_fixed64 {
|
3326
|
+
export declare namespace math_fixed64 {
|
3327
|
+
namespace entry { }
|
3328
|
+
namespace view { }
|
3329
|
+
}
|
2695
3330
|
export declare namespace ristretto255 {
|
2696
3331
|
interface CompressedRistretto {
|
2697
3332
|
data: string;
|
@@ -2714,10 +3349,12 @@ export declare namespace ristretto255 {
|
|
2714
3349
|
const TYPE_QNAME = "0x1::ristretto255::Scalar";
|
2715
3350
|
function type(): TypeDescriptor<Scalar>;
|
2716
3351
|
}
|
3352
|
+
namespace entry { }
|
3353
|
+
namespace view { }
|
2717
3354
|
}
|
2718
3355
|
export declare namespace smart_vector {
|
2719
3356
|
interface SmartVector<T0> {
|
2720
|
-
inline_vec: T0[]
|
3357
|
+
inline_vec: T0[];
|
2721
3358
|
big_vec: option.Option<big_vector.BigVector<T0>>;
|
2722
3359
|
inline_capacity: option.Option<bigint>;
|
2723
3360
|
bucket_size: option.Option<bigint>;
|
@@ -2726,6 +3363,8 @@ export declare namespace smart_vector {
|
|
2726
3363
|
const TYPE_QNAME = "0x1::smart_vector::SmartVector";
|
2727
3364
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<SmartVector<T0>>;
|
2728
3365
|
}
|
3366
|
+
namespace entry { }
|
3367
|
+
namespace view { }
|
2729
3368
|
}
|
2730
3369
|
export declare namespace string_utils {
|
2731
3370
|
interface Cons<T0, T1> {
|
@@ -2751,6 +3390,8 @@ export declare namespace string_utils {
|
|
2751
3390
|
const TYPE_QNAME = "0x1::string_utils::NIL";
|
2752
3391
|
function type(): TypeDescriptor<NIL>;
|
2753
3392
|
}
|
3393
|
+
namespace entry { }
|
3394
|
+
namespace view { }
|
2754
3395
|
}
|
2755
3396
|
export declare namespace aggregator_v2 {
|
2756
3397
|
interface Aggregator<T0> {
|
@@ -2776,6 +3417,8 @@ export declare namespace aggregator_v2 {
|
|
2776
3417
|
const TYPE_QNAME = "0x1::aggregator_v2::DerivedStringSnapshot";
|
2777
3418
|
function type(): TypeDescriptor<DerivedStringSnapshot>;
|
2778
3419
|
}
|
3420
|
+
namespace entry { }
|
3421
|
+
namespace view { }
|
2779
3422
|
}
|
2780
3423
|
export declare class aptos_account extends AptosBaseProcessor {
|
2781
3424
|
constructor(options: AptosBindOptions);
|
@@ -2783,11 +3426,13 @@ export declare class aptos_account extends AptosBaseProcessor {
|
|
2783
3426
|
static bind(options?: Partial<AptosBindOptions>): aptos_account;
|
2784
3427
|
onEntryBatchTransfer(func: (call: aptos_account.BatchTransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
2785
3428
|
onEntryBatchTransferCoins(func: (call: aptos_account.BatchTransferCoinsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
3429
|
+
onEntryBatchTransferFungibleAssets(func: (call: aptos_account.BatchTransferFungibleAssetsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
2786
3430
|
onEntryCreateAccount(func: (call: aptos_account.CreateAccountPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
2787
3431
|
onEntryFungibleTransferOnly(func: (call: aptos_account.FungibleTransferOnlyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
2788
3432
|
onEntrySetAllowDirectCoinTransfers(func: (call: aptos_account.SetAllowDirectCoinTransfersPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
2789
3433
|
onEntryTransfer(func: (call: aptos_account.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
2790
3434
|
onEntryTransferCoins(func: (call: aptos_account.TransferCoinsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
3435
|
+
onEntryTransferFungibleAssets(func: (call: aptos_account.TransferFungibleAssetsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
2791
3436
|
onEventDirectCoinTransferConfigUpdated(func: (event: aptos_account.DirectCoinTransferConfigUpdatedInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
2792
3437
|
onEventDirectCoinTransferConfigUpdatedEvent(func: (event: aptos_account.DirectCoinTransferConfigUpdatedEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
2793
3438
|
}
|
@@ -2823,6 +3468,57 @@ export declare namespace aptos_account {
|
|
2823
3468
|
const TYPE_QNAME = "0x1::aptos_account::DirectTransferConfig";
|
2824
3469
|
function type(): TypeDescriptor<DirectTransferConfig>;
|
2825
3470
|
}
|
3471
|
+
namespace entry {
|
3472
|
+
function batchTransfer(client: Aptos, account: AptosAccount, request: {
|
3473
|
+
typeArguments: [];
|
3474
|
+
functionArguments: [MoveAddressType[], bigint[]];
|
3475
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3476
|
+
function batchTransferCoins<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
3477
|
+
typeArguments: [MoveStructId];
|
3478
|
+
functionArguments: [MoveAddressType[], bigint[]];
|
3479
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3480
|
+
function batchTransferFungibleAssets(client: Aptos, account: AptosAccount, request: {
|
3481
|
+
typeArguments: [];
|
3482
|
+
functionArguments: [
|
3483
|
+
object$.Object<fungible_asset.Metadata>,
|
3484
|
+
MoveAddressType[],
|
3485
|
+
bigint[]
|
3486
|
+
];
|
3487
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3488
|
+
function createAccount(client: Aptos, account: AptosAccount, request: {
|
3489
|
+
typeArguments: [];
|
3490
|
+
functionArguments: [MoveAddressType];
|
3491
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3492
|
+
function fungibleTransferOnly(client: Aptos, account: AptosAccount, request: {
|
3493
|
+
typeArguments: [];
|
3494
|
+
functionArguments: [MoveAddressType, bigint];
|
3495
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3496
|
+
function setAllowDirectCoinTransfers(client: Aptos, account: AptosAccount, request: {
|
3497
|
+
typeArguments: [];
|
3498
|
+
functionArguments: [boolean];
|
3499
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3500
|
+
function transfer(client: Aptos, account: AptosAccount, request: {
|
3501
|
+
typeArguments: [];
|
3502
|
+
functionArguments: [MoveAddressType, bigint];
|
3503
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3504
|
+
function transferCoins<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
3505
|
+
typeArguments: [MoveStructId];
|
3506
|
+
functionArguments: [MoveAddressType, bigint];
|
3507
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3508
|
+
function transferFungibleAssets(client: Aptos, account: AptosAccount, request: {
|
3509
|
+
typeArguments: [];
|
3510
|
+
functionArguments: [
|
3511
|
+
object$.Object<fungible_asset.Metadata>,
|
3512
|
+
MoveAddressType,
|
3513
|
+
bigint
|
3514
|
+
];
|
3515
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3516
|
+
}
|
3517
|
+
namespace view {
|
3518
|
+
function canReceiveDirectCoinTransfers(client: Aptos, request: {
|
3519
|
+
functionArguments: [MoveAddressType];
|
3520
|
+
}, version?: bigint): Promise<[boolean]>;
|
3521
|
+
}
|
2826
3522
|
interface BatchTransferPayload extends TypedFunctionPayload<[MoveAddressType[], bigint[]]> {
|
2827
3523
|
arguments_decoded: [MoveAddressType[], bigint[]];
|
2828
3524
|
type_arguments: [];
|
@@ -2831,6 +3527,18 @@ export declare namespace aptos_account {
|
|
2831
3527
|
arguments_decoded: [MoveAddressType[], bigint[]];
|
2832
3528
|
type_arguments: [string];
|
2833
3529
|
}
|
3530
|
+
interface BatchTransferFungibleAssetsPayload extends TypedFunctionPayload<[
|
3531
|
+
object$.Object<fungible_asset.Metadata>,
|
3532
|
+
MoveAddressType[],
|
3533
|
+
bigint[]
|
3534
|
+
]> {
|
3535
|
+
arguments_decoded: [
|
3536
|
+
object$.Object<fungible_asset.Metadata>,
|
3537
|
+
MoveAddressType[],
|
3538
|
+
bigint[]
|
3539
|
+
];
|
3540
|
+
type_arguments: [];
|
3541
|
+
}
|
2834
3542
|
interface CreateAccountPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
2835
3543
|
arguments_decoded: [MoveAddressType];
|
2836
3544
|
type_arguments: [];
|
@@ -2851,6 +3559,18 @@ export declare namespace aptos_account {
|
|
2851
3559
|
arguments_decoded: [MoveAddressType, bigint];
|
2852
3560
|
type_arguments: [string];
|
2853
3561
|
}
|
3562
|
+
interface TransferFungibleAssetsPayload extends TypedFunctionPayload<[
|
3563
|
+
object$.Object<fungible_asset.Metadata>,
|
3564
|
+
MoveAddressType,
|
3565
|
+
bigint
|
3566
|
+
]> {
|
3567
|
+
arguments_decoded: [
|
3568
|
+
object$.Object<fungible_asset.Metadata>,
|
3569
|
+
MoveAddressType,
|
3570
|
+
bigint
|
3571
|
+
];
|
3572
|
+
type_arguments: [];
|
3573
|
+
}
|
2854
3574
|
}
|
2855
3575
|
export declare namespace bn254_algebra {
|
2856
3576
|
interface FormatFq12LscLsb {
|
@@ -2965,6 +3685,8 @@ export declare namespace bn254_algebra {
|
|
2965
3685
|
const TYPE_QNAME = "0x1::bn254_algebra::Gt";
|
2966
3686
|
function type(): TypeDescriptor<Gt>;
|
2967
3687
|
}
|
3688
|
+
namespace entry { }
|
3689
|
+
namespace view { }
|
2968
3690
|
}
|
2969
3691
|
export declare namespace config_buffer {
|
2970
3692
|
interface PendingConfigs {
|
@@ -2974,8 +3696,13 @@ export declare namespace config_buffer {
|
|
2974
3696
|
const TYPE_QNAME = "0x1::config_buffer::PendingConfigs";
|
2975
3697
|
function type(): TypeDescriptor<PendingConfigs>;
|
2976
3698
|
}
|
3699
|
+
namespace entry { }
|
3700
|
+
namespace view { }
|
3701
|
+
}
|
3702
|
+
export declare namespace create_signer {
|
3703
|
+
namespace entry { }
|
3704
|
+
namespace view { }
|
2977
3705
|
}
|
2978
|
-
export declare namespace create_signer { }
|
2979
3706
|
export declare namespace fixed_point32 {
|
2980
3707
|
interface FixedPoint32 {
|
2981
3708
|
value: bigint;
|
@@ -2984,6 +3711,8 @@ export declare namespace fixed_point32 {
|
|
2984
3711
|
const TYPE_QNAME = "0x1::fixed_point32::FixedPoint32";
|
2985
3712
|
function type(): TypeDescriptor<FixedPoint32>;
|
2986
3713
|
}
|
3714
|
+
namespace entry { }
|
3715
|
+
namespace view { }
|
2987
3716
|
}
|
2988
3717
|
export declare namespace fixed_point64 {
|
2989
3718
|
interface FixedPoint64 {
|
@@ -2993,6 +3722,8 @@ export declare namespace fixed_point64 {
|
|
2993
3722
|
const TYPE_QNAME = "0x1::fixed_point64::FixedPoint64";
|
2994
3723
|
function type(): TypeDescriptor<FixedPoint64>;
|
2995
3724
|
}
|
3725
|
+
namespace entry { }
|
3726
|
+
namespace view { }
|
2996
3727
|
}
|
2997
3728
|
export declare namespace function_info {
|
2998
3729
|
interface FunctionInfo {
|
@@ -3004,6 +3735,8 @@ export declare namespace function_info {
|
|
3004
3735
|
const TYPE_QNAME = "0x1::function_info::FunctionInfo";
|
3005
3736
|
function type(): TypeDescriptor<FunctionInfo>;
|
3006
3737
|
}
|
3738
|
+
namespace entry { }
|
3739
|
+
namespace view { }
|
3007
3740
|
}
|
3008
3741
|
export declare namespace multi_ed25519 {
|
3009
3742
|
interface Signature {
|
@@ -3027,6 +3760,8 @@ export declare namespace multi_ed25519 {
|
|
3027
3760
|
const TYPE_QNAME = "0x1::multi_ed25519::ValidatedPublicKey";
|
3028
3761
|
function type(): TypeDescriptor<ValidatedPublicKey>;
|
3029
3762
|
}
|
3763
|
+
namespace entry { }
|
3764
|
+
namespace view { }
|
3030
3765
|
}
|
3031
3766
|
export declare class staking_proxy extends AptosBaseProcessor {
|
3032
3767
|
constructor(options: AptosBindOptions);
|
@@ -3042,6 +3777,41 @@ export declare class staking_proxy extends AptosBaseProcessor {
|
|
3042
3777
|
onEntrySetVoter(func: (call: staking_proxy.SetVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_proxy;
|
3043
3778
|
}
|
3044
3779
|
export declare namespace staking_proxy {
|
3780
|
+
namespace entry {
|
3781
|
+
function setOperator(client: Aptos, account: AptosAccount, request: {
|
3782
|
+
typeArguments: [];
|
3783
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
3784
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3785
|
+
function setStakePoolOperator(client: Aptos, account: AptosAccount, request: {
|
3786
|
+
typeArguments: [];
|
3787
|
+
functionArguments: [MoveAddressType];
|
3788
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3789
|
+
function setStakePoolVoter(client: Aptos, account: AptosAccount, request: {
|
3790
|
+
typeArguments: [];
|
3791
|
+
functionArguments: [MoveAddressType];
|
3792
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3793
|
+
function setStakingContractOperator(client: Aptos, account: AptosAccount, request: {
|
3794
|
+
typeArguments: [];
|
3795
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
3796
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3797
|
+
function setStakingContractVoter(client: Aptos, account: AptosAccount, request: {
|
3798
|
+
typeArguments: [];
|
3799
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
3800
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3801
|
+
function setVestingContractOperator(client: Aptos, account: AptosAccount, request: {
|
3802
|
+
typeArguments: [];
|
3803
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
3804
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3805
|
+
function setVestingContractVoter(client: Aptos, account: AptosAccount, request: {
|
3806
|
+
typeArguments: [];
|
3807
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
3808
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3809
|
+
function setVoter(client: Aptos, account: AptosAccount, request: {
|
3810
|
+
typeArguments: [];
|
3811
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
3812
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
3813
|
+
}
|
3814
|
+
namespace view { }
|
3045
3815
|
interface SetOperatorPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
3046
3816
|
arguments_decoded: [MoveAddressType, MoveAddressType];
|
3047
3817
|
type_arguments: [];
|
@@ -3099,6 +3869,8 @@ export declare namespace state_storage {
|
|
3099
3869
|
const TYPE_QNAME = "0x1::state_storage::Usage";
|
3100
3870
|
function type(): TypeDescriptor<Usage>;
|
3101
3871
|
}
|
3872
|
+
namespace entry { }
|
3873
|
+
namespace view { }
|
3102
3874
|
}
|
3103
3875
|
export declare namespace crypto_algebra {
|
3104
3876
|
interface Element<T0> {
|
@@ -3108,6 +3880,8 @@ export declare namespace crypto_algebra {
|
|
3108
3880
|
const TYPE_QNAME = "0x1::crypto_algebra::Element";
|
3109
3881
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Element<T0>>;
|
3110
3882
|
}
|
3883
|
+
namespace entry { }
|
3884
|
+
namespace view { }
|
3111
3885
|
}
|
3112
3886
|
export declare class fungible_asset extends AptosBaseProcessor {
|
3113
3887
|
constructor(options: AptosBindOptions);
|
@@ -3302,6 +4076,77 @@ export declare namespace fungible_asset {
|
|
3302
4076
|
data_decoded: WithdrawEvent;
|
3303
4077
|
type_arguments: [];
|
3304
4078
|
}
|
4079
|
+
namespace entry {
|
4080
|
+
function transfer<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
4081
|
+
typeArguments: [MoveStructId];
|
4082
|
+
functionArguments: [object$.Object<T0>, object$.Object<T0>, bigint];
|
4083
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4084
|
+
function upgradeStoreToConcurrent<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
4085
|
+
typeArguments: [MoveStructId];
|
4086
|
+
functionArguments: [object$.Object<T0>];
|
4087
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4088
|
+
}
|
4089
|
+
namespace view {
|
4090
|
+
function balance<T0 = any>(client: Aptos, request: {
|
4091
|
+
typeArguments: [MoveStructId];
|
4092
|
+
functionArguments: [object$.Object<T0>];
|
4093
|
+
}, version?: bigint): Promise<[bigint]>;
|
4094
|
+
function decimals<T0 = any>(client: Aptos, request: {
|
4095
|
+
typeArguments: [MoveStructId];
|
4096
|
+
functionArguments: [object$.Object<T0>];
|
4097
|
+
}, version?: bigint): Promise<[number]>;
|
4098
|
+
function iconUri<T0 = any>(client: Aptos, request: {
|
4099
|
+
typeArguments: [MoveStructId];
|
4100
|
+
functionArguments: [object$.Object<T0>];
|
4101
|
+
}, version?: bigint): Promise<[string]>;
|
4102
|
+
function isBalanceAtLeast<T0 = any>(client: Aptos, request: {
|
4103
|
+
typeArguments: [MoveStructId];
|
4104
|
+
functionArguments: [object$.Object<T0>, bigint];
|
4105
|
+
}, version?: bigint): Promise<[boolean]>;
|
4106
|
+
function isFrozen<T0 = any>(client: Aptos, request: {
|
4107
|
+
typeArguments: [MoveStructId];
|
4108
|
+
functionArguments: [object$.Object<T0>];
|
4109
|
+
}, version?: bigint): Promise<[boolean]>;
|
4110
|
+
function isStoreDispatchable<T0 = any>(client: Aptos, request: {
|
4111
|
+
typeArguments: [MoveStructId];
|
4112
|
+
functionArguments: [object$.Object<T0>];
|
4113
|
+
}, version?: bigint): Promise<[boolean]>;
|
4114
|
+
function isUntransferable<T0 = any>(client: Aptos, request: {
|
4115
|
+
typeArguments: [MoveStructId];
|
4116
|
+
functionArguments: [object$.Object<T0>];
|
4117
|
+
}, version?: bigint): Promise<[boolean]>;
|
4118
|
+
function maximum<T0 = any>(client: Aptos, request: {
|
4119
|
+
typeArguments: [MoveStructId];
|
4120
|
+
functionArguments: [object$.Object<T0>];
|
4121
|
+
}, version?: bigint): Promise<[option.Option<bigint>]>;
|
4122
|
+
function metadata<T0 = any>(client: Aptos, request: {
|
4123
|
+
typeArguments: [MoveStructId];
|
4124
|
+
functionArguments: [object$.Object<T0>];
|
4125
|
+
}, version?: bigint): Promise<[fungible_asset.Metadata]>;
|
4126
|
+
function name<T0 = any>(client: Aptos, request: {
|
4127
|
+
typeArguments: [MoveStructId];
|
4128
|
+
functionArguments: [object$.Object<T0>];
|
4129
|
+
}, version?: bigint): Promise<[string]>;
|
4130
|
+
function projectUri<T0 = any>(client: Aptos, request: {
|
4131
|
+
typeArguments: [MoveStructId];
|
4132
|
+
functionArguments: [object$.Object<T0>];
|
4133
|
+
}, version?: bigint): Promise<[string]>;
|
4134
|
+
function storeExists(client: Aptos, request: {
|
4135
|
+
functionArguments: [MoveAddressType];
|
4136
|
+
}, version?: bigint): Promise<[boolean]>;
|
4137
|
+
function storeMetadata<T0 = any>(client: Aptos, request: {
|
4138
|
+
typeArguments: [MoveStructId];
|
4139
|
+
functionArguments: [object$.Object<T0>];
|
4140
|
+
}, version?: bigint): Promise<[object$.Object<fungible_asset.Metadata>]>;
|
4141
|
+
function supply<T0 = any>(client: Aptos, request: {
|
4142
|
+
typeArguments: [MoveStructId];
|
4143
|
+
functionArguments: [object$.Object<T0>];
|
4144
|
+
}, version?: bigint): Promise<[option.Option<bigint>]>;
|
4145
|
+
function symbol$<T0 = any>(client: Aptos, request: {
|
4146
|
+
typeArguments: [MoveStructId];
|
4147
|
+
functionArguments: [object$.Object<T0>];
|
4148
|
+
}, version?: bigint): Promise<[string]>;
|
4149
|
+
}
|
3305
4150
|
interface TransferPayload<T0 = any> extends TypedFunctionPayload<[
|
3306
4151
|
object$.Object<T0>,
|
3307
4152
|
object$.Object<T0>,
|
@@ -3340,6 +4185,10 @@ export declare namespace staking_config {
|
|
3340
4185
|
const TYPE_QNAME = "0x1::staking_config::StakingRewardsConfig";
|
3341
4186
|
function type(): TypeDescriptor<StakingRewardsConfig>;
|
3342
4187
|
}
|
4188
|
+
namespace entry { }
|
4189
|
+
namespace view {
|
4190
|
+
function rewardRate(client: Aptos, version?: bigint): Promise<[bigint, bigint]>;
|
4191
|
+
}
|
3343
4192
|
}
|
3344
4193
|
export declare class delegation_pool extends AptosBaseProcessor {
|
3345
4194
|
constructor(options: AptosBindOptions);
|
@@ -3784,6 +4633,156 @@ export declare namespace delegation_pool {
|
|
3784
4633
|
data_decoded: WithdrawStakeEvent;
|
3785
4634
|
type_arguments: [];
|
3786
4635
|
}
|
4636
|
+
namespace entry {
|
4637
|
+
function addStake(client: Aptos, account: AptosAccount, request: {
|
4638
|
+
typeArguments: [];
|
4639
|
+
functionArguments: [MoveAddressType, bigint];
|
4640
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4641
|
+
function allowlistDelegator(client: Aptos, account: AptosAccount, request: {
|
4642
|
+
typeArguments: [];
|
4643
|
+
functionArguments: [MoveAddressType];
|
4644
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4645
|
+
function createProposal(client: Aptos, account: AptosAccount, request: {
|
4646
|
+
typeArguments: [];
|
4647
|
+
functionArguments: [MoveAddressType, string, string, string, boolean];
|
4648
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4649
|
+
function delegateVotingPower(client: Aptos, account: AptosAccount, request: {
|
4650
|
+
typeArguments: [];
|
4651
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
4652
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4653
|
+
function disableDelegatorsAllowlisting(client: Aptos, account: AptosAccount, request: {
|
4654
|
+
typeArguments: [];
|
4655
|
+
functionArguments: [];
|
4656
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4657
|
+
function enableDelegatorsAllowlisting(client: Aptos, account: AptosAccount, request: {
|
4658
|
+
typeArguments: [];
|
4659
|
+
functionArguments: [];
|
4660
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4661
|
+
function enablePartialGovernanceVoting(client: Aptos, account: AptosAccount, request: {
|
4662
|
+
typeArguments: [];
|
4663
|
+
functionArguments: [MoveAddressType];
|
4664
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4665
|
+
function evictDelegator(client: Aptos, account: AptosAccount, request: {
|
4666
|
+
typeArguments: [];
|
4667
|
+
functionArguments: [MoveAddressType];
|
4668
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4669
|
+
function initializeDelegationPool(client: Aptos, account: AptosAccount, request: {
|
4670
|
+
typeArguments: [];
|
4671
|
+
functionArguments: [bigint, string];
|
4672
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4673
|
+
function reactivateStake(client: Aptos, account: AptosAccount, request: {
|
4674
|
+
typeArguments: [];
|
4675
|
+
functionArguments: [MoveAddressType, bigint];
|
4676
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4677
|
+
function removeDelegatorFromAllowlist(client: Aptos, account: AptosAccount, request: {
|
4678
|
+
typeArguments: [];
|
4679
|
+
functionArguments: [MoveAddressType];
|
4680
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4681
|
+
function setBeneficiaryForOperator(client: Aptos, account: AptosAccount, request: {
|
4682
|
+
typeArguments: [];
|
4683
|
+
functionArguments: [MoveAddressType];
|
4684
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4685
|
+
function setDelegatedVoter(client: Aptos, account: AptosAccount, request: {
|
4686
|
+
typeArguments: [];
|
4687
|
+
functionArguments: [MoveAddressType];
|
4688
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4689
|
+
function setOperator(client: Aptos, account: AptosAccount, request: {
|
4690
|
+
typeArguments: [];
|
4691
|
+
functionArguments: [MoveAddressType];
|
4692
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4693
|
+
function synchronizeDelegationPool(client: Aptos, account: AptosAccount, request: {
|
4694
|
+
typeArguments: [];
|
4695
|
+
functionArguments: [MoveAddressType];
|
4696
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4697
|
+
function unlock(client: Aptos, account: AptosAccount, request: {
|
4698
|
+
typeArguments: [];
|
4699
|
+
functionArguments: [MoveAddressType, bigint];
|
4700
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4701
|
+
function updateCommissionPercentage(client: Aptos, account: AptosAccount, request: {
|
4702
|
+
typeArguments: [];
|
4703
|
+
functionArguments: [bigint];
|
4704
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4705
|
+
function vote(client: Aptos, account: AptosAccount, request: {
|
4706
|
+
typeArguments: [];
|
4707
|
+
functionArguments: [MoveAddressType, bigint, bigint, boolean];
|
4708
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4709
|
+
function withdraw(client: Aptos, account: AptosAccount, request: {
|
4710
|
+
typeArguments: [];
|
4711
|
+
functionArguments: [MoveAddressType, bigint];
|
4712
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
4713
|
+
}
|
4714
|
+
namespace view {
|
4715
|
+
function allowlistingEnabled(client: Aptos, request: {
|
4716
|
+
functionArguments: [MoveAddressType];
|
4717
|
+
}, version?: bigint): Promise<[boolean]>;
|
4718
|
+
function beneficiaryForOperator(client: Aptos, request: {
|
4719
|
+
functionArguments: [MoveAddressType];
|
4720
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
4721
|
+
function calculateAndUpdateDelegatorVoter(client: Aptos, request: {
|
4722
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
4723
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
4724
|
+
function calculateAndUpdateRemainingVotingPower(client: Aptos, request: {
|
4725
|
+
functionArguments: [MoveAddressType, MoveAddressType, bigint];
|
4726
|
+
}, version?: bigint): Promise<[bigint]>;
|
4727
|
+
function calculateAndUpdateVoterTotalVotingPower(client: Aptos, request: {
|
4728
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
4729
|
+
}, version?: bigint): Promise<[bigint]>;
|
4730
|
+
function calculateAndUpdateVotingDelegation(client: Aptos, request: {
|
4731
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
4732
|
+
}, version?: bigint): Promise<[MoveAddressType, MoveAddressType, bigint]>;
|
4733
|
+
function canWithdrawPendingInactive(client: Aptos, request: {
|
4734
|
+
functionArguments: [MoveAddressType];
|
4735
|
+
}, version?: bigint): Promise<[boolean]>;
|
4736
|
+
function delegationPoolExists(client: Aptos, request: {
|
4737
|
+
functionArguments: [MoveAddressType];
|
4738
|
+
}, version?: bigint): Promise<[boolean]>;
|
4739
|
+
function delegatorAllowlisted(client: Aptos, request: {
|
4740
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
4741
|
+
}, version?: bigint): Promise<[boolean]>;
|
4742
|
+
function getAddStakeFee(client: Aptos, request: {
|
4743
|
+
functionArguments: [MoveAddressType, bigint];
|
4744
|
+
}, version?: bigint): Promise<[bigint]>;
|
4745
|
+
function getDelegationPoolStake(client: Aptos, request: {
|
4746
|
+
functionArguments: [MoveAddressType];
|
4747
|
+
}, version?: bigint): Promise<[bigint, bigint, bigint, bigint]>;
|
4748
|
+
function getDelegatorsAllowlist(client: Aptos, request: {
|
4749
|
+
functionArguments: [MoveAddressType];
|
4750
|
+
}, version?: bigint): Promise<[MoveAddressType[]]>;
|
4751
|
+
function getExpectedStakePoolAddress(client: Aptos, request: {
|
4752
|
+
functionArguments: [MoveAddressType, string];
|
4753
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
4754
|
+
function getOwnedPoolAddress(client: Aptos, request: {
|
4755
|
+
functionArguments: [MoveAddressType];
|
4756
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
4757
|
+
function getPendingWithdrawal(client: Aptos, request: {
|
4758
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
4759
|
+
}, version?: bigint): Promise<[boolean, bigint]>;
|
4760
|
+
function getStake(client: Aptos, request: {
|
4761
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
4762
|
+
}, version?: bigint): Promise<[bigint, bigint, bigint]>;
|
4763
|
+
function isNextCommissionPercentageEffective(client: Aptos, request: {
|
4764
|
+
functionArguments: [MoveAddressType];
|
4765
|
+
}, version?: bigint): Promise<[boolean]>;
|
4766
|
+
function minRemainingSecsForCommissionChange(client: Aptos, version?: bigint): Promise<[bigint]>;
|
4767
|
+
function observedLockupCycle(client: Aptos, request: {
|
4768
|
+
functionArguments: [MoveAddressType];
|
4769
|
+
}, version?: bigint): Promise<[bigint]>;
|
4770
|
+
function operatorCommissionPercentage(client: Aptos, request: {
|
4771
|
+
functionArguments: [MoveAddressType];
|
4772
|
+
}, version?: bigint): Promise<[bigint]>;
|
4773
|
+
function operatorCommissionPercentageNextLockupCycle(client: Aptos, request: {
|
4774
|
+
functionArguments: [MoveAddressType];
|
4775
|
+
}, version?: bigint): Promise<[bigint]>;
|
4776
|
+
function ownerCapExists(client: Aptos, request: {
|
4777
|
+
functionArguments: [MoveAddressType];
|
4778
|
+
}, version?: bigint): Promise<[boolean]>;
|
4779
|
+
function partialGovernanceVotingEnabled(client: Aptos, request: {
|
4780
|
+
functionArguments: [MoveAddressType];
|
4781
|
+
}, version?: bigint): Promise<[boolean]>;
|
4782
|
+
function shareholdersCountActivePool(client: Aptos, request: {
|
4783
|
+
functionArguments: [MoveAddressType];
|
4784
|
+
}, version?: bigint): Promise<[bigint]>;
|
4785
|
+
}
|
3787
4786
|
interface AddStakePayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
3788
4787
|
arguments_decoded: [MoveAddressType, bigint];
|
3789
4788
|
type_arguments: [];
|
@@ -3900,6 +4899,8 @@ export declare namespace keyless_account {
|
|
3900
4899
|
const TYPE_QNAME = "0x1::keyless_account::Group";
|
3901
4900
|
function type(): TypeDescriptor<Group>;
|
3902
4901
|
}
|
4902
|
+
namespace entry { }
|
4903
|
+
namespace view { }
|
3903
4904
|
}
|
3904
4905
|
export declare class reconfiguration extends AptosBaseProcessor {
|
3905
4906
|
constructor(options: AptosBindOptions);
|
@@ -3947,6 +4948,8 @@ export declare namespace reconfiguration {
|
|
3947
4948
|
data_decoded: NewEpochEvent;
|
3948
4949
|
type_arguments: [];
|
3949
4950
|
}
|
4951
|
+
namespace entry { }
|
4952
|
+
namespace view { }
|
3950
4953
|
}
|
3951
4954
|
export declare class transaction_fee extends AptosBaseProcessor {
|
3952
4955
|
constructor(options: AptosBindOptions);
|
@@ -4001,6 +5004,13 @@ export declare namespace transaction_fee {
|
|
4001
5004
|
data_decoded: FeeStatement;
|
4002
5005
|
type_arguments: [];
|
4003
5006
|
}
|
5007
|
+
namespace entry {
|
5008
|
+
function convertToAptosFaBurnRef(client: Aptos, account: AptosAccount, request: {
|
5009
|
+
typeArguments: [];
|
5010
|
+
functionArguments: [];
|
5011
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5012
|
+
}
|
5013
|
+
namespace view { }
|
4004
5014
|
interface ConvertToAptosFaBurnRefPayload extends TypedFunctionPayload<[]> {
|
4005
5015
|
arguments_decoded: [];
|
4006
5016
|
type_arguments: [];
|
@@ -4168,6 +5178,62 @@ export declare namespace aptos_governance {
|
|
4168
5178
|
const TYPE_QNAME = "0x1::aptos_governance::VotingRecordsV2";
|
4169
5179
|
function type(): TypeDescriptor<VotingRecordsV2>;
|
4170
5180
|
}
|
5181
|
+
namespace entry {
|
5182
|
+
function addApprovedScriptHashScript(client: Aptos, account: AptosAccount, request: {
|
5183
|
+
typeArguments: [];
|
5184
|
+
functionArguments: [bigint];
|
5185
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5186
|
+
function batchPartialVote(client: Aptos, account: AptosAccount, request: {
|
5187
|
+
typeArguments: [];
|
5188
|
+
functionArguments: [MoveAddressType[], bigint, bigint, boolean];
|
5189
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5190
|
+
function batchVote(client: Aptos, account: AptosAccount, request: {
|
5191
|
+
typeArguments: [];
|
5192
|
+
functionArguments: [MoveAddressType[], bigint, boolean];
|
5193
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5194
|
+
function createProposal(client: Aptos, account: AptosAccount, request: {
|
5195
|
+
typeArguments: [];
|
5196
|
+
functionArguments: [MoveAddressType, string, string, string];
|
5197
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5198
|
+
function createProposalV2(client: Aptos, account: AptosAccount, request: {
|
5199
|
+
typeArguments: [];
|
5200
|
+
functionArguments: [MoveAddressType, string, string, string, boolean];
|
5201
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5202
|
+
function forceEndEpoch(client: Aptos, account: AptosAccount, request: {
|
5203
|
+
typeArguments: [];
|
5204
|
+
functionArguments: [];
|
5205
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5206
|
+
function forceEndEpochTestOnly(client: Aptos, account: AptosAccount, request: {
|
5207
|
+
typeArguments: [];
|
5208
|
+
functionArguments: [];
|
5209
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5210
|
+
function partialVote(client: Aptos, account: AptosAccount, request: {
|
5211
|
+
typeArguments: [];
|
5212
|
+
functionArguments: [MoveAddressType, bigint, bigint, boolean];
|
5213
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5214
|
+
function reconfigure(client: Aptos, account: AptosAccount, request: {
|
5215
|
+
typeArguments: [];
|
5216
|
+
functionArguments: [];
|
5217
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5218
|
+
function vote(client: Aptos, account: AptosAccount, request: {
|
5219
|
+
typeArguments: [];
|
5220
|
+
functionArguments: [MoveAddressType, bigint, boolean];
|
5221
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5222
|
+
}
|
5223
|
+
namespace view {
|
5224
|
+
function getMinVotingThreshold(client: Aptos, version?: bigint): Promise<[bigint]>;
|
5225
|
+
function getRemainingVotingPower(client: Aptos, request: {
|
5226
|
+
functionArguments: [MoveAddressType, bigint];
|
5227
|
+
}, version?: bigint): Promise<[bigint]>;
|
5228
|
+
function getRequiredProposerStake(client: Aptos, version?: bigint): Promise<[bigint]>;
|
5229
|
+
function getVotingDurationSecs(client: Aptos, version?: bigint): Promise<[bigint]>;
|
5230
|
+
function getVotingPower(client: Aptos, request: {
|
5231
|
+
functionArguments: [MoveAddressType];
|
5232
|
+
}, version?: bigint): Promise<[bigint]>;
|
5233
|
+
function hasEntirelyVoted(client: Aptos, request: {
|
5234
|
+
functionArguments: [MoveAddressType, bigint];
|
5235
|
+
}, version?: bigint): Promise<[boolean]>;
|
5236
|
+
}
|
4171
5237
|
interface AddApprovedScriptHashScriptPayload extends TypedFunctionPayload<[bigint]> {
|
4172
5238
|
arguments_decoded: [bigint];
|
4173
5239
|
type_arguments: [];
|
@@ -4321,6 +5387,8 @@ export declare namespace bls12381_algebra {
|
|
4321
5387
|
const TYPE_QNAME = "0x1::bls12381_algebra::HashG2XmdSha256SswuRo";
|
4322
5388
|
function type(): TypeDescriptor<HashG2XmdSha256SswuRo>;
|
4323
5389
|
}
|
5390
|
+
namespace entry { }
|
5391
|
+
namespace view { }
|
4324
5392
|
}
|
4325
5393
|
export declare namespace consensus_config {
|
4326
5394
|
interface ConsensusConfig {
|
@@ -4330,6 +5398,8 @@ export declare namespace consensus_config {
|
|
4330
5398
|
const TYPE_QNAME = "0x1::consensus_config::ConsensusConfig";
|
4331
5399
|
function type(): TypeDescriptor<ConsensusConfig>;
|
4332
5400
|
}
|
5401
|
+
namespace entry { }
|
5402
|
+
namespace view { }
|
4333
5403
|
}
|
4334
5404
|
export declare namespace execution_config {
|
4335
5405
|
interface ExecutionConfig {
|
@@ -4339,6 +5409,8 @@ export declare namespace execution_config {
|
|
4339
5409
|
const TYPE_QNAME = "0x1::execution_config::ExecutionConfig";
|
4340
5410
|
function type(): TypeDescriptor<ExecutionConfig>;
|
4341
5411
|
}
|
5412
|
+
namespace entry { }
|
5413
|
+
namespace view { }
|
4342
5414
|
}
|
4343
5415
|
export declare class multisig_account extends AptosBaseProcessor {
|
4344
5416
|
constructor(options: AptosBindOptions);
|
@@ -4691,6 +5763,180 @@ export declare namespace multisig_account {
|
|
4691
5763
|
data_decoded: VoteEvent;
|
4692
5764
|
type_arguments: [];
|
4693
5765
|
}
|
5766
|
+
namespace entry {
|
5767
|
+
function addOwner(client: Aptos, account: AptosAccount, request: {
|
5768
|
+
typeArguments: [];
|
5769
|
+
functionArguments: [MoveAddressType];
|
5770
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5771
|
+
function addOwners(client: Aptos, account: AptosAccount, request: {
|
5772
|
+
typeArguments: [];
|
5773
|
+
functionArguments: [MoveAddressType[]];
|
5774
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5775
|
+
function addOwnersAndUpdateSignaturesRequired(client: Aptos, account: AptosAccount, request: {
|
5776
|
+
typeArguments: [];
|
5777
|
+
functionArguments: [MoveAddressType[], bigint];
|
5778
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5779
|
+
function approveTransaction(client: Aptos, account: AptosAccount, request: {
|
5780
|
+
typeArguments: [];
|
5781
|
+
functionArguments: [MoveAddressType, bigint];
|
5782
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5783
|
+
function create(client: Aptos, account: AptosAccount, request: {
|
5784
|
+
typeArguments: [];
|
5785
|
+
functionArguments: [bigint, string[], string[]];
|
5786
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5787
|
+
function createTransaction(client: Aptos, account: AptosAccount, request: {
|
5788
|
+
typeArguments: [];
|
5789
|
+
functionArguments: [MoveAddressType, string];
|
5790
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5791
|
+
function createTransactionWithHash(client: Aptos, account: AptosAccount, request: {
|
5792
|
+
typeArguments: [];
|
5793
|
+
functionArguments: [MoveAddressType, string];
|
5794
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5795
|
+
function createWithExistingAccount(client: Aptos, account: AptosAccount, request: {
|
5796
|
+
typeArguments: [];
|
5797
|
+
functionArguments: [
|
5798
|
+
MoveAddressType,
|
5799
|
+
MoveAddressType[],
|
5800
|
+
bigint,
|
5801
|
+
number,
|
5802
|
+
string,
|
5803
|
+
string,
|
5804
|
+
string[],
|
5805
|
+
string[]
|
5806
|
+
];
|
5807
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5808
|
+
function createWithExistingAccountAndRevokeAuthKey(client: Aptos, account: AptosAccount, request: {
|
5809
|
+
typeArguments: [];
|
5810
|
+
functionArguments: [
|
5811
|
+
MoveAddressType,
|
5812
|
+
MoveAddressType[],
|
5813
|
+
bigint,
|
5814
|
+
number,
|
5815
|
+
string,
|
5816
|
+
string,
|
5817
|
+
string[],
|
5818
|
+
string[]
|
5819
|
+
];
|
5820
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5821
|
+
function createWithExistingAccountAndRevokeAuthKeyCall(client: Aptos, account: AptosAccount, request: {
|
5822
|
+
typeArguments: [];
|
5823
|
+
functionArguments: [MoveAddressType[], bigint, string[], string[]];
|
5824
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5825
|
+
function createWithExistingAccountCall(client: Aptos, account: AptosAccount, request: {
|
5826
|
+
typeArguments: [];
|
5827
|
+
functionArguments: [MoveAddressType[], bigint, string[], string[]];
|
5828
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5829
|
+
function createWithOwners(client: Aptos, account: AptosAccount, request: {
|
5830
|
+
typeArguments: [];
|
5831
|
+
functionArguments: [MoveAddressType[], bigint, string[], string[]];
|
5832
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5833
|
+
function createWithOwnersThenRemoveBootstrapper(client: Aptos, account: AptosAccount, request: {
|
5834
|
+
typeArguments: [];
|
5835
|
+
functionArguments: [MoveAddressType[], bigint, string[], string[]];
|
5836
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5837
|
+
function executeRejectedTransaction(client: Aptos, account: AptosAccount, request: {
|
5838
|
+
typeArguments: [];
|
5839
|
+
functionArguments: [MoveAddressType];
|
5840
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5841
|
+
function executeRejectedTransactions(client: Aptos, account: AptosAccount, request: {
|
5842
|
+
typeArguments: [];
|
5843
|
+
functionArguments: [MoveAddressType, bigint];
|
5844
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5845
|
+
function rejectTransaction(client: Aptos, account: AptosAccount, request: {
|
5846
|
+
typeArguments: [];
|
5847
|
+
functionArguments: [MoveAddressType, bigint];
|
5848
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5849
|
+
function removeOwner(client: Aptos, account: AptosAccount, request: {
|
5850
|
+
typeArguments: [];
|
5851
|
+
functionArguments: [MoveAddressType];
|
5852
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5853
|
+
function removeOwners(client: Aptos, account: AptosAccount, request: {
|
5854
|
+
typeArguments: [];
|
5855
|
+
functionArguments: [MoveAddressType[]];
|
5856
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5857
|
+
function swapOwner(client: Aptos, account: AptosAccount, request: {
|
5858
|
+
typeArguments: [];
|
5859
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
5860
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5861
|
+
function swapOwners(client: Aptos, account: AptosAccount, request: {
|
5862
|
+
typeArguments: [];
|
5863
|
+
functionArguments: [MoveAddressType[], MoveAddressType[]];
|
5864
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5865
|
+
function swapOwnersAndUpdateSignaturesRequired(client: Aptos, account: AptosAccount, request: {
|
5866
|
+
typeArguments: [];
|
5867
|
+
functionArguments: [MoveAddressType[], MoveAddressType[], bigint];
|
5868
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5869
|
+
function updateMetadata(client: Aptos, account: AptosAccount, request: {
|
5870
|
+
typeArguments: [];
|
5871
|
+
functionArguments: [string[], string[]];
|
5872
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5873
|
+
function updateSignaturesRequired(client: Aptos, account: AptosAccount, request: {
|
5874
|
+
typeArguments: [];
|
5875
|
+
functionArguments: [bigint];
|
5876
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5877
|
+
function voteTransaction(client: Aptos, account: AptosAccount, request: {
|
5878
|
+
typeArguments: [];
|
5879
|
+
functionArguments: [MoveAddressType, bigint, boolean];
|
5880
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5881
|
+
function voteTransactions(client: Aptos, account: AptosAccount, request: {
|
5882
|
+
typeArguments: [];
|
5883
|
+
functionArguments: [MoveAddressType, bigint, bigint, boolean];
|
5884
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5885
|
+
function voteTransanction(client: Aptos, account: AptosAccount, request: {
|
5886
|
+
typeArguments: [];
|
5887
|
+
functionArguments: [MoveAddressType, bigint, boolean];
|
5888
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
5889
|
+
}
|
5890
|
+
namespace view {
|
5891
|
+
function availableTransactionQueueCapacity(client: Aptos, request: {
|
5892
|
+
functionArguments: [MoveAddressType];
|
5893
|
+
}, version?: bigint): Promise<[bigint]>;
|
5894
|
+
function canBeExecuted(client: Aptos, request: {
|
5895
|
+
functionArguments: [MoveAddressType, bigint];
|
5896
|
+
}, version?: bigint): Promise<[boolean]>;
|
5897
|
+
function canBeRejected(client: Aptos, request: {
|
5898
|
+
functionArguments: [MoveAddressType, bigint];
|
5899
|
+
}, version?: bigint): Promise<[boolean]>;
|
5900
|
+
function canExecute(client: Aptos, request: {
|
5901
|
+
functionArguments: [MoveAddressType, MoveAddressType, bigint];
|
5902
|
+
}, version?: bigint): Promise<[boolean]>;
|
5903
|
+
function canReject(client: Aptos, request: {
|
5904
|
+
functionArguments: [MoveAddressType, MoveAddressType, bigint];
|
5905
|
+
}, version?: bigint): Promise<[boolean]>;
|
5906
|
+
function getNextMultisigAccountAddress(client: Aptos, request: {
|
5907
|
+
functionArguments: [MoveAddressType];
|
5908
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
5909
|
+
function getNextTransactionPayload(client: Aptos, request: {
|
5910
|
+
functionArguments: [MoveAddressType, string];
|
5911
|
+
}, version?: bigint): Promise<[string]>;
|
5912
|
+
function getPendingTransactions(client: Aptos, request: {
|
5913
|
+
functionArguments: [MoveAddressType];
|
5914
|
+
}, version?: bigint): Promise<[multisig_account.MultisigTransaction[]]>;
|
5915
|
+
function getTransaction(client: Aptos, request: {
|
5916
|
+
functionArguments: [MoveAddressType, bigint];
|
5917
|
+
}, version?: bigint): Promise<[multisig_account.MultisigTransaction]>;
|
5918
|
+
function isOwner(client: Aptos, request: {
|
5919
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
5920
|
+
}, version?: bigint): Promise<[boolean]>;
|
5921
|
+
function lastResolvedSequenceNumber(client: Aptos, request: {
|
5922
|
+
functionArguments: [MoveAddressType];
|
5923
|
+
}, version?: bigint): Promise<[bigint]>;
|
5924
|
+
function metadata(client: Aptos, request: {
|
5925
|
+
functionArguments: [MoveAddressType];
|
5926
|
+
}, version?: bigint): Promise<[simple_map.SimpleMap<string, string>]>;
|
5927
|
+
function nextSequenceNumber(client: Aptos, request: {
|
5928
|
+
functionArguments: [MoveAddressType];
|
5929
|
+
}, version?: bigint): Promise<[bigint]>;
|
5930
|
+
function numSignaturesRequired(client: Aptos, request: {
|
5931
|
+
functionArguments: [MoveAddressType];
|
5932
|
+
}, version?: bigint): Promise<[bigint]>;
|
5933
|
+
function owners(client: Aptos, request: {
|
5934
|
+
functionArguments: [MoveAddressType];
|
5935
|
+
}, version?: bigint): Promise<[MoveAddressType[]]>;
|
5936
|
+
function vote(client: Aptos, request: {
|
5937
|
+
functionArguments: [MoveAddressType, bigint, MoveAddressType];
|
5938
|
+
}, version?: bigint): Promise<[boolean, boolean]>;
|
5939
|
+
}
|
4694
5940
|
interface AddOwnerPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
4695
5941
|
arguments_decoded: [MoveAddressType];
|
4696
5942
|
type_arguments: [];
|
@@ -4867,6 +6113,8 @@ export declare namespace pool_u64_unbound {
|
|
4867
6113
|
const TYPE_QNAME = "0x1::pool_u64_unbound::Pool";
|
4868
6114
|
function type(): TypeDescriptor<Pool>;
|
4869
6115
|
}
|
6116
|
+
namespace entry { }
|
6117
|
+
namespace view { }
|
4870
6118
|
}
|
4871
6119
|
export declare class resource_account extends AptosBaseProcessor {
|
4872
6120
|
constructor(options: AptosBindOptions);
|
@@ -4884,6 +6132,21 @@ export declare namespace resource_account {
|
|
4884
6132
|
const TYPE_QNAME = "0x1::resource_account::Container";
|
4885
6133
|
function type(): TypeDescriptor<Container>;
|
4886
6134
|
}
|
6135
|
+
namespace entry {
|
6136
|
+
function createResourceAccount(client: Aptos, account: AptosAccount, request: {
|
6137
|
+
typeArguments: [];
|
6138
|
+
functionArguments: [string, string];
|
6139
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6140
|
+
function createResourceAccountAndFund(client: Aptos, account: AptosAccount, request: {
|
6141
|
+
typeArguments: [];
|
6142
|
+
functionArguments: [string, string, bigint];
|
6143
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6144
|
+
function createResourceAccountAndPublishPackage(client: Aptos, account: AptosAccount, request: {
|
6145
|
+
typeArguments: [];
|
6146
|
+
functionArguments: [string, string, string[]];
|
6147
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6148
|
+
}
|
6149
|
+
namespace view { }
|
4887
6150
|
interface CreateResourceAccountPayload extends TypedFunctionPayload<[string, string]> {
|
4888
6151
|
arguments_decoded: [string, string];
|
4889
6152
|
type_arguments: [];
|
@@ -5270,6 +6533,88 @@ export declare namespace staking_contract {
|
|
5270
6533
|
data_decoded: UpdateVoterEvent;
|
5271
6534
|
type_arguments: [];
|
5272
6535
|
}
|
6536
|
+
namespace entry {
|
6537
|
+
function addStake(client: Aptos, account: AptosAccount, request: {
|
6538
|
+
typeArguments: [];
|
6539
|
+
functionArguments: [MoveAddressType, bigint];
|
6540
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6541
|
+
function createStakingContract(client: Aptos, account: AptosAccount, request: {
|
6542
|
+
typeArguments: [];
|
6543
|
+
functionArguments: [
|
6544
|
+
MoveAddressType,
|
6545
|
+
MoveAddressType,
|
6546
|
+
bigint,
|
6547
|
+
bigint,
|
6548
|
+
string
|
6549
|
+
];
|
6550
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6551
|
+
function distribute(client: Aptos, account: AptosAccount, request: {
|
6552
|
+
typeArguments: [];
|
6553
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
6554
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6555
|
+
function requestCommission(client: Aptos, account: AptosAccount, request: {
|
6556
|
+
typeArguments: [];
|
6557
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
6558
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6559
|
+
function resetLockup(client: Aptos, account: AptosAccount, request: {
|
6560
|
+
typeArguments: [];
|
6561
|
+
functionArguments: [MoveAddressType];
|
6562
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6563
|
+
function setBeneficiaryForOperator(client: Aptos, account: AptosAccount, request: {
|
6564
|
+
typeArguments: [];
|
6565
|
+
functionArguments: [MoveAddressType];
|
6566
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6567
|
+
function switchOperator(client: Aptos, account: AptosAccount, request: {
|
6568
|
+
typeArguments: [];
|
6569
|
+
functionArguments: [MoveAddressType, MoveAddressType, bigint];
|
6570
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6571
|
+
function switchOperatorWithSameCommission(client: Aptos, account: AptosAccount, request: {
|
6572
|
+
typeArguments: [];
|
6573
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
6574
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6575
|
+
function unlockRewards(client: Aptos, account: AptosAccount, request: {
|
6576
|
+
typeArguments: [];
|
6577
|
+
functionArguments: [MoveAddressType];
|
6578
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6579
|
+
function unlockStake(client: Aptos, account: AptosAccount, request: {
|
6580
|
+
typeArguments: [];
|
6581
|
+
functionArguments: [MoveAddressType, bigint];
|
6582
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6583
|
+
function updateCommision(client: Aptos, account: AptosAccount, request: {
|
6584
|
+
typeArguments: [];
|
6585
|
+
functionArguments: [MoveAddressType, bigint];
|
6586
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6587
|
+
function updateVoter(client: Aptos, account: AptosAccount, request: {
|
6588
|
+
typeArguments: [];
|
6589
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
6590
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6591
|
+
}
|
6592
|
+
namespace view {
|
6593
|
+
function beneficiaryForOperator(client: Aptos, request: {
|
6594
|
+
functionArguments: [MoveAddressType];
|
6595
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
6596
|
+
function commissionPercentage(client: Aptos, request: {
|
6597
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
6598
|
+
}, version?: bigint): Promise<[bigint]>;
|
6599
|
+
function getExpectedStakePoolAddress(client: Aptos, request: {
|
6600
|
+
functionArguments: [MoveAddressType, MoveAddressType, string];
|
6601
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
6602
|
+
function lastRecordedPrincipal(client: Aptos, request: {
|
6603
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
6604
|
+
}, version?: bigint): Promise<[bigint]>;
|
6605
|
+
function pendingDistributionCounts(client: Aptos, request: {
|
6606
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
6607
|
+
}, version?: bigint): Promise<[bigint]>;
|
6608
|
+
function stakePoolAddress(client: Aptos, request: {
|
6609
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
6610
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
6611
|
+
function stakingContractAmounts(client: Aptos, request: {
|
6612
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
6613
|
+
}, version?: bigint): Promise<[bigint, bigint, bigint]>;
|
6614
|
+
function stakingContractExists(client: Aptos, request: {
|
6615
|
+
functionArguments: [MoveAddressType, MoveAddressType];
|
6616
|
+
}, version?: bigint): Promise<[boolean]>;
|
6617
|
+
}
|
5273
6618
|
interface AddStakePayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
5274
6619
|
arguments_decoded: [MoveAddressType, bigint];
|
5275
6620
|
type_arguments: [];
|
@@ -5331,7 +6676,10 @@ export declare namespace staking_contract {
|
|
5331
6676
|
type_arguments: [];
|
5332
6677
|
}
|
5333
6678
|
}
|
5334
|
-
export declare namespace system_addresses {
|
6679
|
+
export declare namespace system_addresses {
|
6680
|
+
namespace entry { }
|
6681
|
+
namespace view { }
|
6682
|
+
}
|
5335
6683
|
export declare namespace randomness_config {
|
5336
6684
|
interface ConfigOff {
|
5337
6685
|
dummy_field: boolean;
|
@@ -5364,6 +6712,8 @@ export declare namespace randomness_config {
|
|
5364
6712
|
const TYPE_QNAME = "0x1::randomness_config::RandomnessConfig";
|
5365
6713
|
function type(): TypeDescriptor<RandomnessConfig>;
|
5366
6714
|
}
|
6715
|
+
namespace entry { }
|
6716
|
+
namespace view { }
|
5367
6717
|
}
|
5368
6718
|
export declare namespace table_with_length {
|
5369
6719
|
interface TableWithLength<T0, T1> {
|
@@ -5374,6 +6724,8 @@ export declare namespace table_with_length {
|
|
5374
6724
|
const TYPE_QNAME = "0x1::table_with_length::TableWithLength";
|
5375
6725
|
function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<TableWithLength<T0, T1>>;
|
5376
6726
|
}
|
6727
|
+
namespace entry { }
|
6728
|
+
namespace view { }
|
5377
6729
|
}
|
5378
6730
|
export declare namespace aggregator_factory {
|
5379
6731
|
interface AggregatorFactory {
|
@@ -5383,6 +6735,8 @@ export declare namespace aggregator_factory {
|
|
5383
6735
|
const TYPE_QNAME = "0x1::aggregator_factory::AggregatorFactory";
|
5384
6736
|
function type(): TypeDescriptor<AggregatorFactory>;
|
5385
6737
|
}
|
6738
|
+
namespace entry { }
|
6739
|
+
namespace view { }
|
5386
6740
|
}
|
5387
6741
|
export declare namespace governance_proposal {
|
5388
6742
|
interface GovernanceProposal {
|
@@ -5392,6 +6746,8 @@ export declare namespace governance_proposal {
|
|
5392
6746
|
const TYPE_QNAME = "0x1::governance_proposal::GovernanceProposal";
|
5393
6747
|
function type(): TypeDescriptor<GovernanceProposal>;
|
5394
6748
|
}
|
6749
|
+
namespace entry { }
|
6750
|
+
namespace view { }
|
5395
6751
|
}
|
5396
6752
|
export declare namespace optional_aggregator {
|
5397
6753
|
interface Integer {
|
@@ -5410,6 +6766,8 @@ export declare namespace optional_aggregator {
|
|
5410
6766
|
const TYPE_QNAME = "0x1::optional_aggregator::OptionalAggregator";
|
5411
6767
|
function type(): TypeDescriptor<OptionalAggregator>;
|
5412
6768
|
}
|
6769
|
+
namespace entry { }
|
6770
|
+
namespace view { }
|
5413
6771
|
}
|
5414
6772
|
export declare namespace transaction_context {
|
5415
6773
|
interface AUID {
|
@@ -5438,6 +6796,8 @@ export declare namespace transaction_context {
|
|
5438
6796
|
const TYPE_QNAME = "0x1::transaction_context::MultisigPayload";
|
5439
6797
|
function type(): TypeDescriptor<MultisigPayload>;
|
5440
6798
|
}
|
6799
|
+
namespace entry { }
|
6800
|
+
namespace view { }
|
5441
6801
|
}
|
5442
6802
|
export declare namespace jwk_consensus_config {
|
5443
6803
|
interface ConfigOff {
|
@@ -5469,6 +6829,8 @@ export declare namespace jwk_consensus_config {
|
|
5469
6829
|
const TYPE_QNAME = "0x1::jwk_consensus_config::OIDCProvider";
|
5470
6830
|
function type(): TypeDescriptor<OIDCProvider>;
|
5471
6831
|
}
|
6832
|
+
namespace entry { }
|
6833
|
+
namespace view { }
|
5472
6834
|
}
|
5473
6835
|
export declare namespace ristretto255_elgamal {
|
5474
6836
|
interface Ciphertext {
|
@@ -5494,6 +6856,8 @@ export declare namespace ristretto255_elgamal {
|
|
5494
6856
|
const TYPE_QNAME = "0x1::ristretto255_elgamal::CompressedPubkey";
|
5495
6857
|
function type(): TypeDescriptor<CompressedPubkey>;
|
5496
6858
|
}
|
6859
|
+
namespace entry { }
|
6860
|
+
namespace view { }
|
5497
6861
|
}
|
5498
6862
|
export declare namespace reconfiguration_state {
|
5499
6863
|
interface State {
|
@@ -5517,6 +6881,8 @@ export declare namespace reconfiguration_state {
|
|
5517
6881
|
const TYPE_QNAME = "0x1::reconfiguration_state::StateInactive";
|
5518
6882
|
function type(): TypeDescriptor<StateInactive>;
|
5519
6883
|
}
|
6884
|
+
namespace entry { }
|
6885
|
+
namespace view { }
|
5520
6886
|
}
|
5521
6887
|
export declare namespace ristretto255_pedersen {
|
5522
6888
|
interface Commitment {
|
@@ -5526,6 +6892,8 @@ export declare namespace ristretto255_pedersen {
|
|
5526
6892
|
const TYPE_QNAME = "0x1::ristretto255_pedersen::Commitment";
|
5527
6893
|
function type(): TypeDescriptor<Commitment>;
|
5528
6894
|
}
|
6895
|
+
namespace entry { }
|
6896
|
+
namespace view { }
|
5529
6897
|
}
|
5530
6898
|
export declare class object_code_deployment extends AptosBaseProcessor {
|
5531
6899
|
constructor(options: AptosBindOptions);
|
@@ -5579,6 +6947,25 @@ export declare namespace object_code_deployment {
|
|
5579
6947
|
data_decoded: Upgrade;
|
5580
6948
|
type_arguments: [];
|
5581
6949
|
}
|
6950
|
+
namespace entry {
|
6951
|
+
function freezeCodeObject(client: Aptos, account: AptosAccount, request: {
|
6952
|
+
typeArguments: [];
|
6953
|
+
functionArguments: [object$.Object<code.PackageRegistry>];
|
6954
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6955
|
+
function publish(client: Aptos, account: AptosAccount, request: {
|
6956
|
+
typeArguments: [];
|
6957
|
+
functionArguments: [string, string[]];
|
6958
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6959
|
+
function upgrade(client: Aptos, account: AptosAccount, request: {
|
6960
|
+
typeArguments: [];
|
6961
|
+
functionArguments: [
|
6962
|
+
string,
|
6963
|
+
string[],
|
6964
|
+
object$.Object<code.PackageRegistry>
|
6965
|
+
];
|
6966
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
6967
|
+
}
|
6968
|
+
namespace view { }
|
5582
6969
|
interface FreezeCodeObjectPayload extends TypedFunctionPayload<[object$.Object<code.PackageRegistry>]> {
|
5583
6970
|
arguments_decoded: [object$.Object<code.PackageRegistry>];
|
5584
6971
|
type_arguments: [];
|
@@ -5611,6 +6998,47 @@ export declare namespace primary_fungible_store {
|
|
5611
6998
|
const TYPE_QNAME = "0x1::primary_fungible_store::DeriveRefPod";
|
5612
6999
|
function type(): TypeDescriptor<DeriveRefPod>;
|
5613
7000
|
}
|
7001
|
+
namespace entry {
|
7002
|
+
function transfer<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
7003
|
+
typeArguments: [MoveStructId];
|
7004
|
+
functionArguments: [object$.Object<T0>, MoveAddressType, bigint];
|
7005
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
7006
|
+
function transferAssertMinimumDeposit<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
7007
|
+
typeArguments: [MoveStructId];
|
7008
|
+
functionArguments: [
|
7009
|
+
object$.Object<T0>,
|
7010
|
+
MoveAddressType,
|
7011
|
+
bigint,
|
7012
|
+
bigint
|
7013
|
+
];
|
7014
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
7015
|
+
}
|
7016
|
+
namespace view {
|
7017
|
+
function balance<T0 = any>(client: Aptos, request: {
|
7018
|
+
typeArguments: [MoveStructId];
|
7019
|
+
functionArguments: [MoveAddressType, object$.Object<T0>];
|
7020
|
+
}, version?: bigint): Promise<[bigint]>;
|
7021
|
+
function isBalanceAtLeast<T0 = any>(client: Aptos, request: {
|
7022
|
+
typeArguments: [MoveStructId];
|
7023
|
+
functionArguments: [MoveAddressType, object$.Object<T0>, bigint];
|
7024
|
+
}, version?: bigint): Promise<[boolean]>;
|
7025
|
+
function isFrozen<T0 = any>(client: Aptos, request: {
|
7026
|
+
typeArguments: [MoveStructId];
|
7027
|
+
functionArguments: [MoveAddressType, object$.Object<T0>];
|
7028
|
+
}, version?: bigint): Promise<[boolean]>;
|
7029
|
+
function primaryStore<T0 = any>(client: Aptos, request: {
|
7030
|
+
typeArguments: [MoveStructId];
|
7031
|
+
functionArguments: [MoveAddressType, object$.Object<T0>];
|
7032
|
+
}, version?: bigint): Promise<[object$.Object<fungible_asset.FungibleStore>]>;
|
7033
|
+
function primaryStoreAddress<T0 = any>(client: Aptos, request: {
|
7034
|
+
typeArguments: [MoveStructId];
|
7035
|
+
functionArguments: [MoveAddressType, object$.Object<T0>];
|
7036
|
+
}, version?: bigint): Promise<[MoveAddressType]>;
|
7037
|
+
function primaryStoreExists<T0 = any>(client: Aptos, request: {
|
7038
|
+
typeArguments: [MoveStructId];
|
7039
|
+
functionArguments: [MoveAddressType, object$.Object<T0>];
|
7040
|
+
}, version?: bigint): Promise<[boolean]>;
|
7041
|
+
}
|
5614
7042
|
interface TransferPayload<T0 = any> extends TypedFunctionPayload<[
|
5615
7043
|
object$.Object<T0>,
|
5616
7044
|
MoveAddressType,
|
@@ -5642,6 +7070,8 @@ export declare namespace transaction_validation {
|
|
5642
7070
|
const TYPE_QNAME = "0x1::transaction_validation::TransactionValidation";
|
5643
7071
|
function type(): TypeDescriptor<TransactionValidation>;
|
5644
7072
|
}
|
7073
|
+
namespace entry { }
|
7074
|
+
namespace view { }
|
5645
7075
|
}
|
5646
7076
|
export declare namespace randomness_api_v0_config {
|
5647
7077
|
interface AllowCustomMaxGasFlag {
|
@@ -5658,6 +7088,8 @@ export declare namespace randomness_api_v0_config {
|
|
5658
7088
|
const TYPE_QNAME = "0x1::randomness_api_v0_config::RequiredGasDeposit";
|
5659
7089
|
function type(): TypeDescriptor<RequiredGasDeposit>;
|
5660
7090
|
}
|
7091
|
+
namespace entry { }
|
7092
|
+
namespace view { }
|
5661
7093
|
}
|
5662
7094
|
export declare namespace randomness_config_seqnum {
|
5663
7095
|
interface RandomnessConfigSeqNum {
|
@@ -5667,8 +7099,13 @@ export declare namespace randomness_config_seqnum {
|
|
5667
7099
|
const TYPE_QNAME = "0x1::randomness_config_seqnum::RandomnessConfigSeqNum";
|
5668
7100
|
function type(): TypeDescriptor<RandomnessConfigSeqNum>;
|
5669
7101
|
}
|
7102
|
+
namespace entry { }
|
7103
|
+
namespace view { }
|
7104
|
+
}
|
7105
|
+
export declare namespace reconfiguration_with_dkg {
|
7106
|
+
namespace entry { }
|
7107
|
+
namespace view { }
|
5670
7108
|
}
|
5671
|
-
export declare namespace reconfiguration_with_dkg { }
|
5672
7109
|
export declare namespace validator_consensus_info {
|
5673
7110
|
interface ValidatorConsensusInfo {
|
5674
7111
|
addr: MoveAddressType;
|
@@ -5679,6 +7116,8 @@ export declare namespace validator_consensus_info {
|
|
5679
7116
|
const TYPE_QNAME = "0x1::validator_consensus_info::ValidatorConsensusInfo";
|
5680
7117
|
function type(): TypeDescriptor<ValidatorConsensusInfo>;
|
5681
7118
|
}
|
7119
|
+
namespace entry { }
|
7120
|
+
namespace view { }
|
5682
7121
|
}
|
5683
7122
|
export declare namespace ristretto255_bulletproofs {
|
5684
7123
|
interface RangeProof {
|
@@ -5688,6 +7127,8 @@ export declare namespace ristretto255_bulletproofs {
|
|
5688
7127
|
const TYPE_QNAME = "0x1::ristretto255_bulletproofs::RangeProof";
|
5689
7128
|
function type(): TypeDescriptor<RangeProof>;
|
5690
7129
|
}
|
7130
|
+
namespace entry { }
|
7131
|
+
namespace view { }
|
5691
7132
|
}
|
5692
7133
|
export declare class dispatchable_fungible_asset extends AptosBaseProcessor {
|
5693
7134
|
constructor(options: AptosBindOptions);
|
@@ -5704,6 +7145,31 @@ export declare namespace dispatchable_fungible_asset {
|
|
5704
7145
|
const TYPE_QNAME = "0x1::dispatchable_fungible_asset::TransferRefStore";
|
5705
7146
|
function type(): TypeDescriptor<TransferRefStore>;
|
5706
7147
|
}
|
7148
|
+
namespace entry {
|
7149
|
+
function transfer<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
7150
|
+
typeArguments: [MoveStructId];
|
7151
|
+
functionArguments: [object$.Object<T0>, object$.Object<T0>, bigint];
|
7152
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
7153
|
+
function transferAssertMinimumDeposit<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
7154
|
+
typeArguments: [MoveStructId];
|
7155
|
+
functionArguments: [
|
7156
|
+
object$.Object<T0>,
|
7157
|
+
object$.Object<T0>,
|
7158
|
+
bigint,
|
7159
|
+
bigint
|
7160
|
+
];
|
7161
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
7162
|
+
}
|
7163
|
+
namespace view {
|
7164
|
+
function derivedBalance<T0 = any>(client: Aptos, request: {
|
7165
|
+
typeArguments: [MoveStructId];
|
7166
|
+
functionArguments: [object$.Object<T0>];
|
7167
|
+
}, version?: bigint): Promise<[bigint]>;
|
7168
|
+
function derivedSupply<T0 = any>(client: Aptos, request: {
|
7169
|
+
typeArguments: [MoveStructId];
|
7170
|
+
functionArguments: [object$.Object<T0>];
|
7171
|
+
}, version?: bigint): Promise<[option.Option<bigint>]>;
|
7172
|
+
}
|
5707
7173
|
interface TransferPayload<T0 = any> extends TypedFunctionPayload<[
|
5708
7174
|
object$.Object<T0>,
|
5709
7175
|
object$.Object<T0>,
|