@typemove/aptos 1.3.1 → 1.3.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/dist/cjs/builtin/0x1.js +127 -127
- package/dist/cjs/builtin/0x1.js.map +1 -1
- package/dist/cjs/builtin/0x3.js +14 -14
- package/dist/cjs/builtin/0x3.js.map +1 -1
- package/dist/cjs/builtin/0x4.js +17 -17
- package/dist/cjs/builtin/0x4.js.map +1 -1
- package/dist/cjs/codegen/codegen.js +1 -1
- package/dist/esm/builtin/0x1.js +127 -127
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x3.js +14 -14
- package/dist/esm/builtin/0x3.js.map +1 -1
- package/dist/esm/builtin/0x4.js +17 -17
- package/dist/esm/builtin/0x4.js.map +1 -1
- package/dist/esm/codegen/codegen.js +1 -1
- package/package.json +3 -3
- package/src/builtin/0x1.ts +127 -127
- package/src/builtin/0x3.ts +14 -14
- package/src/builtin/0x4.ts +17 -17
- package/src/codegen/codegen.ts +1 -1
- package/src/tests/types/0x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861af.ts +23 -23
- package/src/tests/types/0xbd35135844473187163ca197ca93b2ab014370587bb0ed3befff9e902d6bb541.ts +39 -39
package/src/builtin/0x1.ts
CHANGED
|
@@ -214,7 +214,7 @@ export namespace code {
|
|
|
214
214
|
options?: InputGenerateTransactionOptions,
|
|
215
215
|
): Promise<PendingTransactionResponse> {
|
|
216
216
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
217
|
-
const transaction = await client.build.simple({
|
|
217
|
+
const transaction = await client.transaction.build.simple({
|
|
218
218
|
sender: account.accountAddress,
|
|
219
219
|
data: {
|
|
220
220
|
function: "0x1::code::publish_package_txn",
|
|
@@ -424,7 +424,7 @@ export namespace coin {
|
|
|
424
424
|
options?: InputGenerateTransactionOptions,
|
|
425
425
|
): Promise<PendingTransactionResponse> {
|
|
426
426
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
427
|
-
const transaction = await client.build.simple({
|
|
427
|
+
const transaction = await client.transaction.build.simple({
|
|
428
428
|
sender: account.accountAddress,
|
|
429
429
|
data: {
|
|
430
430
|
function: "0x1::coin::freeze_coin_store",
|
|
@@ -449,7 +449,7 @@ export namespace coin {
|
|
|
449
449
|
options?: InputGenerateTransactionOptions,
|
|
450
450
|
): Promise<PendingTransactionResponse> {
|
|
451
451
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
452
|
-
const transaction = await client.build.simple({
|
|
452
|
+
const transaction = await client.transaction.build.simple({
|
|
453
453
|
sender: account.accountAddress,
|
|
454
454
|
data: {
|
|
455
455
|
function: "0x1::coin::transfer",
|
|
@@ -473,7 +473,7 @@ export namespace coin {
|
|
|
473
473
|
options?: InputGenerateTransactionOptions,
|
|
474
474
|
): Promise<PendingTransactionResponse> {
|
|
475
475
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
476
|
-
const transaction = await client.build.simple({
|
|
476
|
+
const transaction = await client.transaction.build.simple({
|
|
477
477
|
sender: account.accountAddress,
|
|
478
478
|
data: {
|
|
479
479
|
function: "0x1::coin::unfreeze_coin_store",
|
|
@@ -497,7 +497,7 @@ export namespace coin {
|
|
|
497
497
|
options?: InputGenerateTransactionOptions,
|
|
498
498
|
): Promise<PendingTransactionResponse> {
|
|
499
499
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
500
|
-
const transaction = await client.build.simple({
|
|
500
|
+
const transaction = await client.transaction.build.simple({
|
|
501
501
|
sender: account.accountAddress,
|
|
502
502
|
data: {
|
|
503
503
|
function: "0x1::coin::upgrade_supply",
|
|
@@ -1378,7 +1378,7 @@ export namespace stake {
|
|
|
1378
1378
|
options?: InputGenerateTransactionOptions,
|
|
1379
1379
|
): Promise<PendingTransactionResponse> {
|
|
1380
1380
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1381
|
-
const transaction = await client.build.simple({
|
|
1381
|
+
const transaction = await client.transaction.build.simple({
|
|
1382
1382
|
sender: account.accountAddress,
|
|
1383
1383
|
data: {
|
|
1384
1384
|
function: "0x1::stake::add_stake",
|
|
@@ -1403,7 +1403,7 @@ export namespace stake {
|
|
|
1403
1403
|
options?: InputGenerateTransactionOptions,
|
|
1404
1404
|
): Promise<PendingTransactionResponse> {
|
|
1405
1405
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1406
|
-
const transaction = await client.build.simple({
|
|
1406
|
+
const transaction = await client.transaction.build.simple({
|
|
1407
1407
|
sender: account.accountAddress,
|
|
1408
1408
|
data: {
|
|
1409
1409
|
function: "0x1::stake::increase_lockup",
|
|
@@ -1428,7 +1428,7 @@ export namespace stake {
|
|
|
1428
1428
|
options?: InputGenerateTransactionOptions,
|
|
1429
1429
|
): Promise<PendingTransactionResponse> {
|
|
1430
1430
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1431
|
-
const transaction = await client.build.simple({
|
|
1431
|
+
const transaction = await client.transaction.build.simple({
|
|
1432
1432
|
sender: account.accountAddress,
|
|
1433
1433
|
data: {
|
|
1434
1434
|
function: "0x1::stake::initialize_stake_owner",
|
|
@@ -1452,7 +1452,7 @@ export namespace stake {
|
|
|
1452
1452
|
options?: InputGenerateTransactionOptions,
|
|
1453
1453
|
): Promise<PendingTransactionResponse> {
|
|
1454
1454
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1455
|
-
const transaction = await client.build.simple({
|
|
1455
|
+
const transaction = await client.transaction.build.simple({
|
|
1456
1456
|
sender: account.accountAddress,
|
|
1457
1457
|
data: {
|
|
1458
1458
|
function: "0x1::stake::initialize_validator",
|
|
@@ -1477,7 +1477,7 @@ export namespace stake {
|
|
|
1477
1477
|
options?: InputGenerateTransactionOptions,
|
|
1478
1478
|
): Promise<PendingTransactionResponse> {
|
|
1479
1479
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1480
|
-
const transaction = await client.build.simple({
|
|
1480
|
+
const transaction = await client.transaction.build.simple({
|
|
1481
1481
|
sender: account.accountAddress,
|
|
1482
1482
|
data: {
|
|
1483
1483
|
function: "0x1::stake::join_validator_set",
|
|
@@ -1502,7 +1502,7 @@ export namespace stake {
|
|
|
1502
1502
|
options?: InputGenerateTransactionOptions,
|
|
1503
1503
|
): Promise<PendingTransactionResponse> {
|
|
1504
1504
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1505
|
-
const transaction = await client.build.simple({
|
|
1505
|
+
const transaction = await client.transaction.build.simple({
|
|
1506
1506
|
sender: account.accountAddress,
|
|
1507
1507
|
data: {
|
|
1508
1508
|
function: "0x1::stake::leave_validator_set",
|
|
@@ -1527,7 +1527,7 @@ export namespace stake {
|
|
|
1527
1527
|
options?: InputGenerateTransactionOptions,
|
|
1528
1528
|
): Promise<PendingTransactionResponse> {
|
|
1529
1529
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1530
|
-
const transaction = await client.build.simple({
|
|
1530
|
+
const transaction = await client.transaction.build.simple({
|
|
1531
1531
|
sender: account.accountAddress,
|
|
1532
1532
|
data: {
|
|
1533
1533
|
function: "0x1::stake::reactivate_stake",
|
|
@@ -1552,7 +1552,7 @@ export namespace stake {
|
|
|
1552
1552
|
options?: InputGenerateTransactionOptions,
|
|
1553
1553
|
): Promise<PendingTransactionResponse> {
|
|
1554
1554
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1555
|
-
const transaction = await client.build.simple({
|
|
1555
|
+
const transaction = await client.transaction.build.simple({
|
|
1556
1556
|
sender: account.accountAddress,
|
|
1557
1557
|
data: {
|
|
1558
1558
|
function: "0x1::stake::rotate_consensus_key",
|
|
@@ -1576,7 +1576,7 @@ export namespace stake {
|
|
|
1576
1576
|
options?: InputGenerateTransactionOptions,
|
|
1577
1577
|
): Promise<PendingTransactionResponse> {
|
|
1578
1578
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1579
|
-
const transaction = await client.build.simple({
|
|
1579
|
+
const transaction = await client.transaction.build.simple({
|
|
1580
1580
|
sender: account.accountAddress,
|
|
1581
1581
|
data: {
|
|
1582
1582
|
function: "0x1::stake::set_delegated_voter",
|
|
@@ -1601,7 +1601,7 @@ export namespace stake {
|
|
|
1601
1601
|
options?: InputGenerateTransactionOptions,
|
|
1602
1602
|
): Promise<PendingTransactionResponse> {
|
|
1603
1603
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1604
|
-
const transaction = await client.build.simple({
|
|
1604
|
+
const transaction = await client.transaction.build.simple({
|
|
1605
1605
|
sender: account.accountAddress,
|
|
1606
1606
|
data: {
|
|
1607
1607
|
function: "0x1::stake::set_operator",
|
|
@@ -1626,7 +1626,7 @@ export namespace stake {
|
|
|
1626
1626
|
options?: InputGenerateTransactionOptions,
|
|
1627
1627
|
): Promise<PendingTransactionResponse> {
|
|
1628
1628
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1629
|
-
const transaction = await client.build.simple({
|
|
1629
|
+
const transaction = await client.transaction.build.simple({
|
|
1630
1630
|
sender: account.accountAddress,
|
|
1631
1631
|
data: {
|
|
1632
1632
|
function: "0x1::stake::unlock",
|
|
@@ -1651,7 +1651,7 @@ export namespace stake {
|
|
|
1651
1651
|
options?: InputGenerateTransactionOptions,
|
|
1652
1652
|
): Promise<PendingTransactionResponse> {
|
|
1653
1653
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1654
|
-
const transaction = await client.build.simple({
|
|
1654
|
+
const transaction = await client.transaction.build.simple({
|
|
1655
1655
|
sender: account.accountAddress,
|
|
1656
1656
|
data: {
|
|
1657
1657
|
function: "0x1::stake::update_network_and_fullnode_addresses",
|
|
@@ -1676,7 +1676,7 @@ export namespace stake {
|
|
|
1676
1676
|
options?: InputGenerateTransactionOptions,
|
|
1677
1677
|
): Promise<PendingTransactionResponse> {
|
|
1678
1678
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
1679
|
-
const transaction = await client.build.simple({
|
|
1679
|
+
const transaction = await client.transaction.build.simple({
|
|
1680
1680
|
sender: account.accountAddress,
|
|
1681
1681
|
data: {
|
|
1682
1682
|
function: "0x1::stake::withdraw",
|
|
@@ -2187,7 +2187,7 @@ export namespace object_ {
|
|
|
2187
2187
|
options?: InputGenerateTransactionOptions,
|
|
2188
2188
|
): Promise<PendingTransactionResponse> {
|
|
2189
2189
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
2190
|
-
const transaction = await client.build.simple({
|
|
2190
|
+
const transaction = await client.transaction.build.simple({
|
|
2191
2191
|
sender: account.accountAddress,
|
|
2192
2192
|
data: {
|
|
2193
2193
|
function: "0x1::object::burn",
|
|
@@ -2212,7 +2212,7 @@ export namespace object_ {
|
|
|
2212
2212
|
options?: InputGenerateTransactionOptions,
|
|
2213
2213
|
): Promise<PendingTransactionResponse> {
|
|
2214
2214
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
2215
|
-
const transaction = await client.build.simple({
|
|
2215
|
+
const transaction = await client.transaction.build.simple({
|
|
2216
2216
|
sender: account.accountAddress,
|
|
2217
2217
|
data: {
|
|
2218
2218
|
function: "0x1::object::transfer",
|
|
@@ -2236,7 +2236,7 @@ export namespace object_ {
|
|
|
2236
2236
|
options?: InputGenerateTransactionOptions,
|
|
2237
2237
|
): Promise<PendingTransactionResponse> {
|
|
2238
2238
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
2239
|
-
const transaction = await client.build.simple({
|
|
2239
|
+
const transaction = await client.transaction.build.simple({
|
|
2240
2240
|
sender: account.accountAddress,
|
|
2241
2241
|
data: {
|
|
2242
2242
|
function: "0x1::object::transfer_call",
|
|
@@ -2261,7 +2261,7 @@ export namespace object_ {
|
|
|
2261
2261
|
options?: InputGenerateTransactionOptions,
|
|
2262
2262
|
): Promise<PendingTransactionResponse> {
|
|
2263
2263
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
2264
|
-
const transaction = await client.build.simple({
|
|
2264
|
+
const transaction = await client.transaction.build.simple({
|
|
2265
2265
|
sender: account.accountAddress,
|
|
2266
2266
|
data: {
|
|
2267
2267
|
function: "0x1::object::transfer_to_object",
|
|
@@ -2286,7 +2286,7 @@ export namespace object_ {
|
|
|
2286
2286
|
options?: InputGenerateTransactionOptions,
|
|
2287
2287
|
): Promise<PendingTransactionResponse> {
|
|
2288
2288
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
2289
|
-
const transaction = await client.build.simple({
|
|
2289
|
+
const transaction = await client.transaction.build.simple({
|
|
2290
2290
|
sender: account.accountAddress,
|
|
2291
2291
|
data: {
|
|
2292
2292
|
function: "0x1::object::unburn",
|
|
@@ -3043,7 +3043,7 @@ export namespace account {
|
|
|
3043
3043
|
options?: InputGenerateTransactionOptions,
|
|
3044
3044
|
): Promise<PendingTransactionResponse> {
|
|
3045
3045
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
3046
|
-
const transaction = await client.build.simple({
|
|
3046
|
+
const transaction = await client.transaction.build.simple({
|
|
3047
3047
|
sender: account.accountAddress,
|
|
3048
3048
|
data: {
|
|
3049
3049
|
function: "0x1::account::offer_rotation_capability",
|
|
@@ -3067,7 +3067,7 @@ export namespace account {
|
|
|
3067
3067
|
options?: InputGenerateTransactionOptions,
|
|
3068
3068
|
): Promise<PendingTransactionResponse> {
|
|
3069
3069
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
3070
|
-
const transaction = await client.build.simple({
|
|
3070
|
+
const transaction = await client.transaction.build.simple({
|
|
3071
3071
|
sender: account.accountAddress,
|
|
3072
3072
|
data: {
|
|
3073
3073
|
function: "0x1::account::offer_signer_capability",
|
|
@@ -3092,7 +3092,7 @@ export namespace account {
|
|
|
3092
3092
|
options?: InputGenerateTransactionOptions,
|
|
3093
3093
|
): Promise<PendingTransactionResponse> {
|
|
3094
3094
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
3095
|
-
const transaction = await client.build.simple({
|
|
3095
|
+
const transaction = await client.transaction.build.simple({
|
|
3096
3096
|
sender: account.accountAddress,
|
|
3097
3097
|
data: {
|
|
3098
3098
|
function: "0x1::account::revoke_any_rotation_capability",
|
|
@@ -3116,7 +3116,7 @@ export namespace account {
|
|
|
3116
3116
|
options?: InputGenerateTransactionOptions,
|
|
3117
3117
|
): Promise<PendingTransactionResponse> {
|
|
3118
3118
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
3119
|
-
const transaction = await client.build.simple({
|
|
3119
|
+
const transaction = await client.transaction.build.simple({
|
|
3120
3120
|
sender: account.accountAddress,
|
|
3121
3121
|
data: {
|
|
3122
3122
|
function: "0x1::account::revoke_any_signer_capability",
|
|
@@ -3140,7 +3140,7 @@ export namespace account {
|
|
|
3140
3140
|
options?: InputGenerateTransactionOptions,
|
|
3141
3141
|
): Promise<PendingTransactionResponse> {
|
|
3142
3142
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
3143
|
-
const transaction = await client.build.simple({
|
|
3143
|
+
const transaction = await client.transaction.build.simple({
|
|
3144
3144
|
sender: account.accountAddress,
|
|
3145
3145
|
data: {
|
|
3146
3146
|
function: "0x1::account::revoke_rotation_capability",
|
|
@@ -3164,7 +3164,7 @@ export namespace account {
|
|
|
3164
3164
|
options?: InputGenerateTransactionOptions,
|
|
3165
3165
|
): Promise<PendingTransactionResponse> {
|
|
3166
3166
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
3167
|
-
const transaction = await client.build.simple({
|
|
3167
|
+
const transaction = await client.transaction.build.simple({
|
|
3168
3168
|
sender: account.accountAddress,
|
|
3169
3169
|
data: {
|
|
3170
3170
|
function: "0x1::account::revoke_signer_capability",
|
|
@@ -3188,7 +3188,7 @@ export namespace account {
|
|
|
3188
3188
|
options?: InputGenerateTransactionOptions,
|
|
3189
3189
|
): Promise<PendingTransactionResponse> {
|
|
3190
3190
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
3191
|
-
const transaction = await client.build.simple({
|
|
3191
|
+
const transaction = await client.transaction.build.simple({
|
|
3192
3192
|
sender: account.accountAddress,
|
|
3193
3193
|
data: {
|
|
3194
3194
|
function: "0x1::account::rotate_authentication_key",
|
|
@@ -3213,7 +3213,7 @@ export namespace account {
|
|
|
3213
3213
|
options?: InputGenerateTransactionOptions,
|
|
3214
3214
|
): Promise<PendingTransactionResponse> {
|
|
3215
3215
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
3216
|
-
const transaction = await client.build.simple({
|
|
3216
|
+
const transaction = await client.transaction.build.simple({
|
|
3217
3217
|
sender: account.accountAddress,
|
|
3218
3218
|
data: {
|
|
3219
3219
|
function:
|
|
@@ -3625,7 +3625,7 @@ export namespace version {
|
|
|
3625
3625
|
options?: InputGenerateTransactionOptions,
|
|
3626
3626
|
): Promise<PendingTransactionResponse> {
|
|
3627
3627
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
3628
|
-
const transaction = await client.build.simple({
|
|
3628
|
+
const transaction = await client.transaction.build.simple({
|
|
3629
3629
|
sender: account.accountAddress,
|
|
3630
3630
|
data: {
|
|
3631
3631
|
function: "0x1::version::set_version",
|
|
@@ -4011,7 +4011,7 @@ export namespace vesting {
|
|
|
4011
4011
|
options?: InputGenerateTransactionOptions,
|
|
4012
4012
|
): Promise<PendingTransactionResponse> {
|
|
4013
4013
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4014
|
-
const transaction = await client.build.simple({
|
|
4014
|
+
const transaction = await client.transaction.build.simple({
|
|
4015
4015
|
sender: account.accountAddress,
|
|
4016
4016
|
data: {
|
|
4017
4017
|
function: "0x1::vesting::admin_withdraw",
|
|
@@ -4036,7 +4036,7 @@ export namespace vesting {
|
|
|
4036
4036
|
options?: InputGenerateTransactionOptions,
|
|
4037
4037
|
): Promise<PendingTransactionResponse> {
|
|
4038
4038
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4039
|
-
const transaction = await client.build.simple({
|
|
4039
|
+
const transaction = await client.transaction.build.simple({
|
|
4040
4040
|
sender: account.accountAddress,
|
|
4041
4041
|
data: {
|
|
4042
4042
|
function: "0x1::vesting::distribute",
|
|
@@ -4060,7 +4060,7 @@ export namespace vesting {
|
|
|
4060
4060
|
options?: InputGenerateTransactionOptions,
|
|
4061
4061
|
): Promise<PendingTransactionResponse> {
|
|
4062
4062
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4063
|
-
const transaction = await client.build.simple({
|
|
4063
|
+
const transaction = await client.transaction.build.simple({
|
|
4064
4064
|
sender: account.accountAddress,
|
|
4065
4065
|
data: {
|
|
4066
4066
|
function: "0x1::vesting::distribute_many",
|
|
@@ -4085,7 +4085,7 @@ export namespace vesting {
|
|
|
4085
4085
|
options?: InputGenerateTransactionOptions,
|
|
4086
4086
|
): Promise<PendingTransactionResponse> {
|
|
4087
4087
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4088
|
-
const transaction = await client.build.simple({
|
|
4088
|
+
const transaction = await client.transaction.build.simple({
|
|
4089
4089
|
sender: account.accountAddress,
|
|
4090
4090
|
data: {
|
|
4091
4091
|
function: "0x1::vesting::reset_beneficiary",
|
|
@@ -4109,7 +4109,7 @@ export namespace vesting {
|
|
|
4109
4109
|
options?: InputGenerateTransactionOptions,
|
|
4110
4110
|
): Promise<PendingTransactionResponse> {
|
|
4111
4111
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4112
|
-
const transaction = await client.build.simple({
|
|
4112
|
+
const transaction = await client.transaction.build.simple({
|
|
4113
4113
|
sender: account.accountAddress,
|
|
4114
4114
|
data: {
|
|
4115
4115
|
function: "0x1::vesting::reset_lockup",
|
|
@@ -4133,7 +4133,7 @@ export namespace vesting {
|
|
|
4133
4133
|
options?: InputGenerateTransactionOptions,
|
|
4134
4134
|
): Promise<PendingTransactionResponse> {
|
|
4135
4135
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4136
|
-
const transaction = await client.build.simple({
|
|
4136
|
+
const transaction = await client.transaction.build.simple({
|
|
4137
4137
|
sender: account.accountAddress,
|
|
4138
4138
|
data: {
|
|
4139
4139
|
function: "0x1::vesting::set_beneficiary",
|
|
@@ -4157,7 +4157,7 @@ export namespace vesting {
|
|
|
4157
4157
|
options?: InputGenerateTransactionOptions,
|
|
4158
4158
|
): Promise<PendingTransactionResponse> {
|
|
4159
4159
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4160
|
-
const transaction = await client.build.simple({
|
|
4160
|
+
const transaction = await client.transaction.build.simple({
|
|
4161
4161
|
sender: account.accountAddress,
|
|
4162
4162
|
data: {
|
|
4163
4163
|
function: "0x1::vesting::set_beneficiary_for_operator",
|
|
@@ -4181,7 +4181,7 @@ export namespace vesting {
|
|
|
4181
4181
|
options?: InputGenerateTransactionOptions,
|
|
4182
4182
|
): Promise<PendingTransactionResponse> {
|
|
4183
4183
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4184
|
-
const transaction = await client.build.simple({
|
|
4184
|
+
const transaction = await client.transaction.build.simple({
|
|
4185
4185
|
sender: account.accountAddress,
|
|
4186
4186
|
data: {
|
|
4187
4187
|
function: "0x1::vesting::set_beneficiary_resetter",
|
|
@@ -4205,7 +4205,7 @@ export namespace vesting {
|
|
|
4205
4205
|
options?: InputGenerateTransactionOptions,
|
|
4206
4206
|
): Promise<PendingTransactionResponse> {
|
|
4207
4207
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4208
|
-
const transaction = await client.build.simple({
|
|
4208
|
+
const transaction = await client.transaction.build.simple({
|
|
4209
4209
|
sender: account.accountAddress,
|
|
4210
4210
|
data: {
|
|
4211
4211
|
function: "0x1::vesting::set_management_role",
|
|
@@ -4230,7 +4230,7 @@ export namespace vesting {
|
|
|
4230
4230
|
options?: InputGenerateTransactionOptions,
|
|
4231
4231
|
): Promise<PendingTransactionResponse> {
|
|
4232
4232
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4233
|
-
const transaction = await client.build.simple({
|
|
4233
|
+
const transaction = await client.transaction.build.simple({
|
|
4234
4234
|
sender: account.accountAddress,
|
|
4235
4235
|
data: {
|
|
4236
4236
|
function: "0x1::vesting::terminate_vesting_contract",
|
|
@@ -4255,7 +4255,7 @@ export namespace vesting {
|
|
|
4255
4255
|
options?: InputGenerateTransactionOptions,
|
|
4256
4256
|
): Promise<PendingTransactionResponse> {
|
|
4257
4257
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4258
|
-
const transaction = await client.build.simple({
|
|
4258
|
+
const transaction = await client.transaction.build.simple({
|
|
4259
4259
|
sender: account.accountAddress,
|
|
4260
4260
|
data: {
|
|
4261
4261
|
function: "0x1::vesting::unlock_rewards",
|
|
@@ -4279,7 +4279,7 @@ export namespace vesting {
|
|
|
4279
4279
|
options?: InputGenerateTransactionOptions,
|
|
4280
4280
|
): Promise<PendingTransactionResponse> {
|
|
4281
4281
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4282
|
-
const transaction = await client.build.simple({
|
|
4282
|
+
const transaction = await client.transaction.build.simple({
|
|
4283
4283
|
sender: account.accountAddress,
|
|
4284
4284
|
data: {
|
|
4285
4285
|
function: "0x1::vesting::unlock_rewards_many",
|
|
@@ -4303,7 +4303,7 @@ export namespace vesting {
|
|
|
4303
4303
|
options?: InputGenerateTransactionOptions,
|
|
4304
4304
|
): Promise<PendingTransactionResponse> {
|
|
4305
4305
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4306
|
-
const transaction = await client.build.simple({
|
|
4306
|
+
const transaction = await client.transaction.build.simple({
|
|
4307
4307
|
sender: account.accountAddress,
|
|
4308
4308
|
data: {
|
|
4309
4309
|
function: "0x1::vesting::update_commission_percentage",
|
|
@@ -4327,7 +4327,7 @@ export namespace vesting {
|
|
|
4327
4327
|
options?: InputGenerateTransactionOptions,
|
|
4328
4328
|
): Promise<PendingTransactionResponse> {
|
|
4329
4329
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4330
|
-
const transaction = await client.build.simple({
|
|
4330
|
+
const transaction = await client.transaction.build.simple({
|
|
4331
4331
|
sender: account.accountAddress,
|
|
4332
4332
|
data: {
|
|
4333
4333
|
function: "0x1::vesting::update_operator",
|
|
@@ -4351,7 +4351,7 @@ export namespace vesting {
|
|
|
4351
4351
|
options?: InputGenerateTransactionOptions,
|
|
4352
4352
|
): Promise<PendingTransactionResponse> {
|
|
4353
4353
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4354
|
-
const transaction = await client.build.simple({
|
|
4354
|
+
const transaction = await client.transaction.build.simple({
|
|
4355
4355
|
sender: account.accountAddress,
|
|
4356
4356
|
data: {
|
|
4357
4357
|
function: "0x1::vesting::update_operator_with_same_commission",
|
|
@@ -4375,7 +4375,7 @@ export namespace vesting {
|
|
|
4375
4375
|
options?: InputGenerateTransactionOptions,
|
|
4376
4376
|
): Promise<PendingTransactionResponse> {
|
|
4377
4377
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4378
|
-
const transaction = await client.build.simple({
|
|
4378
|
+
const transaction = await client.transaction.build.simple({
|
|
4379
4379
|
sender: account.accountAddress,
|
|
4380
4380
|
data: {
|
|
4381
4381
|
function: "0x1::vesting::update_voter",
|
|
@@ -4399,7 +4399,7 @@ export namespace vesting {
|
|
|
4399
4399
|
options?: InputGenerateTransactionOptions,
|
|
4400
4400
|
): Promise<PendingTransactionResponse> {
|
|
4401
4401
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4402
|
-
const transaction = await client.build.simple({
|
|
4402
|
+
const transaction = await client.transaction.build.simple({
|
|
4403
4403
|
sender: account.accountAddress,
|
|
4404
4404
|
data: {
|
|
4405
4405
|
function: "0x1::vesting::vest",
|
|
@@ -4423,7 +4423,7 @@ export namespace vesting {
|
|
|
4423
4423
|
options?: InputGenerateTransactionOptions,
|
|
4424
4424
|
): Promise<PendingTransactionResponse> {
|
|
4425
4425
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
4426
|
-
const transaction = await client.build.simple({
|
|
4426
|
+
const transaction = await client.transaction.build.simple({
|
|
4427
4427
|
sender: account.accountAddress,
|
|
4428
4428
|
data: {
|
|
4429
4429
|
function: "0x1::vesting::vest_many",
|
|
@@ -5184,7 +5184,7 @@ export namespace aptos_coin {
|
|
|
5184
5184
|
options?: InputGenerateTransactionOptions,
|
|
5185
5185
|
): Promise<PendingTransactionResponse> {
|
|
5186
5186
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
5187
|
-
const transaction = await client.build.simple({
|
|
5187
|
+
const transaction = await client.transaction.build.simple({
|
|
5188
5188
|
sender: account.accountAddress,
|
|
5189
5189
|
data: {
|
|
5190
5190
|
function: "0x1::aptos_coin::claim_mint_capability",
|
|
@@ -5209,7 +5209,7 @@ export namespace aptos_coin {
|
|
|
5209
5209
|
options?: InputGenerateTransactionOptions,
|
|
5210
5210
|
): Promise<PendingTransactionResponse> {
|
|
5211
5211
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
5212
|
-
const transaction = await client.build.simple({
|
|
5212
|
+
const transaction = await client.transaction.build.simple({
|
|
5213
5213
|
sender: account.accountAddress,
|
|
5214
5214
|
data: {
|
|
5215
5215
|
function: "0x1::aptos_coin::delegate_mint_capability",
|
|
@@ -5234,7 +5234,7 @@ export namespace aptos_coin {
|
|
|
5234
5234
|
options?: InputGenerateTransactionOptions,
|
|
5235
5235
|
): Promise<PendingTransactionResponse> {
|
|
5236
5236
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
5237
|
-
const transaction = await client.build.simple({
|
|
5237
|
+
const transaction = await client.transaction.build.simple({
|
|
5238
5238
|
sender: account.accountAddress,
|
|
5239
5239
|
data: {
|
|
5240
5240
|
function: "0x1::aptos_coin::mint",
|
|
@@ -5782,7 +5782,7 @@ export namespace managed_coin {
|
|
|
5782
5782
|
options?: InputGenerateTransactionOptions,
|
|
5783
5783
|
): Promise<PendingTransactionResponse> {
|
|
5784
5784
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
5785
|
-
const transaction = await client.build.simple({
|
|
5785
|
+
const transaction = await client.transaction.build.simple({
|
|
5786
5786
|
sender: account.accountAddress,
|
|
5787
5787
|
data: {
|
|
5788
5788
|
function: "0x1::managed_coin::burn",
|
|
@@ -5806,7 +5806,7 @@ export namespace managed_coin {
|
|
|
5806
5806
|
options?: InputGenerateTransactionOptions,
|
|
5807
5807
|
): Promise<PendingTransactionResponse> {
|
|
5808
5808
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
5809
|
-
const transaction = await client.build.simple({
|
|
5809
|
+
const transaction = await client.transaction.build.simple({
|
|
5810
5810
|
sender: account.accountAddress,
|
|
5811
5811
|
data: {
|
|
5812
5812
|
function: "0x1::managed_coin::initialize",
|
|
@@ -5830,7 +5830,7 @@ export namespace managed_coin {
|
|
|
5830
5830
|
options?: InputGenerateTransactionOptions,
|
|
5831
5831
|
): Promise<PendingTransactionResponse> {
|
|
5832
5832
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
5833
|
-
const transaction = await client.build.simple({
|
|
5833
|
+
const transaction = await client.transaction.build.simple({
|
|
5834
5834
|
sender: account.accountAddress,
|
|
5835
5835
|
data: {
|
|
5836
5836
|
function: "0x1::managed_coin::mint",
|
|
@@ -5854,7 +5854,7 @@ export namespace managed_coin {
|
|
|
5854
5854
|
options?: InputGenerateTransactionOptions,
|
|
5855
5855
|
): Promise<PendingTransactionResponse> {
|
|
5856
5856
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
5857
|
-
const transaction = await client.build.simple({
|
|
5857
|
+
const transaction = await client.transaction.build.simple({
|
|
5858
5858
|
sender: account.accountAddress,
|
|
5859
5859
|
data: {
|
|
5860
5860
|
function: "0x1::managed_coin::register",
|
|
@@ -6113,7 +6113,7 @@ export namespace aptos_account {
|
|
|
6113
6113
|
options?: InputGenerateTransactionOptions,
|
|
6114
6114
|
): Promise<PendingTransactionResponse> {
|
|
6115
6115
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6116
|
-
const transaction = await client.build.simple({
|
|
6116
|
+
const transaction = await client.transaction.build.simple({
|
|
6117
6117
|
sender: account.accountAddress,
|
|
6118
6118
|
data: {
|
|
6119
6119
|
function: "0x1::aptos_account::batch_transfer",
|
|
@@ -6137,7 +6137,7 @@ export namespace aptos_account {
|
|
|
6137
6137
|
options?: InputGenerateTransactionOptions,
|
|
6138
6138
|
): Promise<PendingTransactionResponse> {
|
|
6139
6139
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6140
|
-
const transaction = await client.build.simple({
|
|
6140
|
+
const transaction = await client.transaction.build.simple({
|
|
6141
6141
|
sender: account.accountAddress,
|
|
6142
6142
|
data: {
|
|
6143
6143
|
function: "0x1::aptos_account::batch_transfer_coins",
|
|
@@ -6162,7 +6162,7 @@ export namespace aptos_account {
|
|
|
6162
6162
|
options?: InputGenerateTransactionOptions,
|
|
6163
6163
|
): Promise<PendingTransactionResponse> {
|
|
6164
6164
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6165
|
-
const transaction = await client.build.simple({
|
|
6165
|
+
const transaction = await client.transaction.build.simple({
|
|
6166
6166
|
sender: account.accountAddress,
|
|
6167
6167
|
data: {
|
|
6168
6168
|
function: "0x1::aptos_account::create_account",
|
|
@@ -6187,7 +6187,7 @@ export namespace aptos_account {
|
|
|
6187
6187
|
options?: InputGenerateTransactionOptions,
|
|
6188
6188
|
): Promise<PendingTransactionResponse> {
|
|
6189
6189
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6190
|
-
const transaction = await client.build.simple({
|
|
6190
|
+
const transaction = await client.transaction.build.simple({
|
|
6191
6191
|
sender: account.accountAddress,
|
|
6192
6192
|
data: {
|
|
6193
6193
|
function: "0x1::aptos_account::set_allow_direct_coin_transfers",
|
|
@@ -6211,7 +6211,7 @@ export namespace aptos_account {
|
|
|
6211
6211
|
options?: InputGenerateTransactionOptions,
|
|
6212
6212
|
): Promise<PendingTransactionResponse> {
|
|
6213
6213
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6214
|
-
const transaction = await client.build.simple({
|
|
6214
|
+
const transaction = await client.transaction.build.simple({
|
|
6215
6215
|
sender: account.accountAddress,
|
|
6216
6216
|
data: {
|
|
6217
6217
|
function: "0x1::aptos_account::transfer",
|
|
@@ -6235,7 +6235,7 @@ export namespace aptos_account {
|
|
|
6235
6235
|
options?: InputGenerateTransactionOptions,
|
|
6236
6236
|
): Promise<PendingTransactionResponse> {
|
|
6237
6237
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6238
|
-
const transaction = await client.build.simple({
|
|
6238
|
+
const transaction = await client.transaction.build.simple({
|
|
6239
6239
|
sender: account.accountAddress,
|
|
6240
6240
|
data: {
|
|
6241
6241
|
function: "0x1::aptos_account::transfer_coins",
|
|
@@ -6411,7 +6411,7 @@ export namespace staking_proxy {
|
|
|
6411
6411
|
options?: InputGenerateTransactionOptions,
|
|
6412
6412
|
): Promise<PendingTransactionResponse> {
|
|
6413
6413
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6414
|
-
const transaction = await client.build.simple({
|
|
6414
|
+
const transaction = await client.transaction.build.simple({
|
|
6415
6415
|
sender: account.accountAddress,
|
|
6416
6416
|
data: {
|
|
6417
6417
|
function: "0x1::staking_proxy::set_operator",
|
|
@@ -6435,7 +6435,7 @@ export namespace staking_proxy {
|
|
|
6435
6435
|
options?: InputGenerateTransactionOptions,
|
|
6436
6436
|
): Promise<PendingTransactionResponse> {
|
|
6437
6437
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6438
|
-
const transaction = await client.build.simple({
|
|
6438
|
+
const transaction = await client.transaction.build.simple({
|
|
6439
6439
|
sender: account.accountAddress,
|
|
6440
6440
|
data: {
|
|
6441
6441
|
function: "0x1::staking_proxy::set_stake_pool_operator",
|
|
@@ -6459,7 +6459,7 @@ export namespace staking_proxy {
|
|
|
6459
6459
|
options?: InputGenerateTransactionOptions,
|
|
6460
6460
|
): Promise<PendingTransactionResponse> {
|
|
6461
6461
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6462
|
-
const transaction = await client.build.simple({
|
|
6462
|
+
const transaction = await client.transaction.build.simple({
|
|
6463
6463
|
sender: account.accountAddress,
|
|
6464
6464
|
data: {
|
|
6465
6465
|
function: "0x1::staking_proxy::set_stake_pool_voter",
|
|
@@ -6483,7 +6483,7 @@ export namespace staking_proxy {
|
|
|
6483
6483
|
options?: InputGenerateTransactionOptions,
|
|
6484
6484
|
): Promise<PendingTransactionResponse> {
|
|
6485
6485
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6486
|
-
const transaction = await client.build.simple({
|
|
6486
|
+
const transaction = await client.transaction.build.simple({
|
|
6487
6487
|
sender: account.accountAddress,
|
|
6488
6488
|
data: {
|
|
6489
6489
|
function: "0x1::staking_proxy::set_staking_contract_operator",
|
|
@@ -6507,7 +6507,7 @@ export namespace staking_proxy {
|
|
|
6507
6507
|
options?: InputGenerateTransactionOptions,
|
|
6508
6508
|
): Promise<PendingTransactionResponse> {
|
|
6509
6509
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6510
|
-
const transaction = await client.build.simple({
|
|
6510
|
+
const transaction = await client.transaction.build.simple({
|
|
6511
6511
|
sender: account.accountAddress,
|
|
6512
6512
|
data: {
|
|
6513
6513
|
function: "0x1::staking_proxy::set_staking_contract_voter",
|
|
@@ -6531,7 +6531,7 @@ export namespace staking_proxy {
|
|
|
6531
6531
|
options?: InputGenerateTransactionOptions,
|
|
6532
6532
|
): Promise<PendingTransactionResponse> {
|
|
6533
6533
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6534
|
-
const transaction = await client.build.simple({
|
|
6534
|
+
const transaction = await client.transaction.build.simple({
|
|
6535
6535
|
sender: account.accountAddress,
|
|
6536
6536
|
data: {
|
|
6537
6537
|
function: "0x1::staking_proxy::set_vesting_contract_operator",
|
|
@@ -6555,7 +6555,7 @@ export namespace staking_proxy {
|
|
|
6555
6555
|
options?: InputGenerateTransactionOptions,
|
|
6556
6556
|
): Promise<PendingTransactionResponse> {
|
|
6557
6557
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6558
|
-
const transaction = await client.build.simple({
|
|
6558
|
+
const transaction = await client.transaction.build.simple({
|
|
6559
6559
|
sender: account.accountAddress,
|
|
6560
6560
|
data: {
|
|
6561
6561
|
function: "0x1::staking_proxy::set_vesting_contract_voter",
|
|
@@ -6579,7 +6579,7 @@ export namespace staking_proxy {
|
|
|
6579
6579
|
options?: InputGenerateTransactionOptions,
|
|
6580
6580
|
): Promise<PendingTransactionResponse> {
|
|
6581
6581
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6582
|
-
const transaction = await client.build.simple({
|
|
6582
|
+
const transaction = await client.transaction.build.simple({
|
|
6583
6583
|
sender: account.accountAddress,
|
|
6584
6584
|
data: {
|
|
6585
6585
|
function: "0x1::staking_proxy::set_voter",
|
|
@@ -6884,7 +6884,7 @@ export namespace fungible_asset {
|
|
|
6884
6884
|
options?: InputGenerateTransactionOptions,
|
|
6885
6885
|
): Promise<PendingTransactionResponse> {
|
|
6886
6886
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
6887
|
-
const transaction = await client.build.simple({
|
|
6887
|
+
const transaction = await client.transaction.build.simple({
|
|
6888
6888
|
sender: account.accountAddress,
|
|
6889
6889
|
data: {
|
|
6890
6890
|
function: "0x1::fungible_asset::transfer",
|
|
@@ -7580,7 +7580,7 @@ export namespace delegation_pool {
|
|
|
7580
7580
|
options?: InputGenerateTransactionOptions,
|
|
7581
7581
|
): Promise<PendingTransactionResponse> {
|
|
7582
7582
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7583
|
-
const transaction = await client.build.simple({
|
|
7583
|
+
const transaction = await client.transaction.build.simple({
|
|
7584
7584
|
sender: account.accountAddress,
|
|
7585
7585
|
data: {
|
|
7586
7586
|
function: "0x1::delegation_pool::add_stake",
|
|
@@ -7605,7 +7605,7 @@ export namespace delegation_pool {
|
|
|
7605
7605
|
options?: InputGenerateTransactionOptions,
|
|
7606
7606
|
): Promise<PendingTransactionResponse> {
|
|
7607
7607
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7608
|
-
const transaction = await client.build.simple({
|
|
7608
|
+
const transaction = await client.transaction.build.simple({
|
|
7609
7609
|
sender: account.accountAddress,
|
|
7610
7610
|
data: {
|
|
7611
7611
|
function: "0x1::delegation_pool::create_proposal",
|
|
@@ -7629,7 +7629,7 @@ export namespace delegation_pool {
|
|
|
7629
7629
|
options?: InputGenerateTransactionOptions,
|
|
7630
7630
|
): Promise<PendingTransactionResponse> {
|
|
7631
7631
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7632
|
-
const transaction = await client.build.simple({
|
|
7632
|
+
const transaction = await client.transaction.build.simple({
|
|
7633
7633
|
sender: account.accountAddress,
|
|
7634
7634
|
data: {
|
|
7635
7635
|
function: "0x1::delegation_pool::delegate_voting_power",
|
|
@@ -7654,7 +7654,7 @@ export namespace delegation_pool {
|
|
|
7654
7654
|
options?: InputGenerateTransactionOptions,
|
|
7655
7655
|
): Promise<PendingTransactionResponse> {
|
|
7656
7656
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7657
|
-
const transaction = await client.build.simple({
|
|
7657
|
+
const transaction = await client.transaction.build.simple({
|
|
7658
7658
|
sender: account.accountAddress,
|
|
7659
7659
|
data: {
|
|
7660
7660
|
function: "0x1::delegation_pool::enable_partial_governance_voting",
|
|
@@ -7679,7 +7679,7 @@ export namespace delegation_pool {
|
|
|
7679
7679
|
options?: InputGenerateTransactionOptions,
|
|
7680
7680
|
): Promise<PendingTransactionResponse> {
|
|
7681
7681
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7682
|
-
const transaction = await client.build.simple({
|
|
7682
|
+
const transaction = await client.transaction.build.simple({
|
|
7683
7683
|
sender: account.accountAddress,
|
|
7684
7684
|
data: {
|
|
7685
7685
|
function: "0x1::delegation_pool::initialize_delegation_pool",
|
|
@@ -7704,7 +7704,7 @@ export namespace delegation_pool {
|
|
|
7704
7704
|
options?: InputGenerateTransactionOptions,
|
|
7705
7705
|
): Promise<PendingTransactionResponse> {
|
|
7706
7706
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7707
|
-
const transaction = await client.build.simple({
|
|
7707
|
+
const transaction = await client.transaction.build.simple({
|
|
7708
7708
|
sender: account.accountAddress,
|
|
7709
7709
|
data: {
|
|
7710
7710
|
function: "0x1::delegation_pool::reactivate_stake",
|
|
@@ -7728,7 +7728,7 @@ export namespace delegation_pool {
|
|
|
7728
7728
|
options?: InputGenerateTransactionOptions,
|
|
7729
7729
|
): Promise<PendingTransactionResponse> {
|
|
7730
7730
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7731
|
-
const transaction = await client.build.simple({
|
|
7731
|
+
const transaction = await client.transaction.build.simple({
|
|
7732
7732
|
sender: account.accountAddress,
|
|
7733
7733
|
data: {
|
|
7734
7734
|
function: "0x1::delegation_pool::set_beneficiary_for_operator",
|
|
@@ -7752,7 +7752,7 @@ export namespace delegation_pool {
|
|
|
7752
7752
|
options?: InputGenerateTransactionOptions,
|
|
7753
7753
|
): Promise<PendingTransactionResponse> {
|
|
7754
7754
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7755
|
-
const transaction = await client.build.simple({
|
|
7755
|
+
const transaction = await client.transaction.build.simple({
|
|
7756
7756
|
sender: account.accountAddress,
|
|
7757
7757
|
data: {
|
|
7758
7758
|
function: "0x1::delegation_pool::set_delegated_voter",
|
|
@@ -7776,7 +7776,7 @@ export namespace delegation_pool {
|
|
|
7776
7776
|
options?: InputGenerateTransactionOptions,
|
|
7777
7777
|
): Promise<PendingTransactionResponse> {
|
|
7778
7778
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7779
|
-
const transaction = await client.build.simple({
|
|
7779
|
+
const transaction = await client.transaction.build.simple({
|
|
7780
7780
|
sender: account.accountAddress,
|
|
7781
7781
|
data: {
|
|
7782
7782
|
function: "0x1::delegation_pool::set_operator",
|
|
@@ -7801,7 +7801,7 @@ export namespace delegation_pool {
|
|
|
7801
7801
|
options?: InputGenerateTransactionOptions,
|
|
7802
7802
|
): Promise<PendingTransactionResponse> {
|
|
7803
7803
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7804
|
-
const transaction = await client.build.simple({
|
|
7804
|
+
const transaction = await client.transaction.build.simple({
|
|
7805
7805
|
sender: account.accountAddress,
|
|
7806
7806
|
data: {
|
|
7807
7807
|
function: "0x1::delegation_pool::synchronize_delegation_pool",
|
|
@@ -7825,7 +7825,7 @@ export namespace delegation_pool {
|
|
|
7825
7825
|
options?: InputGenerateTransactionOptions,
|
|
7826
7826
|
): Promise<PendingTransactionResponse> {
|
|
7827
7827
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7828
|
-
const transaction = await client.build.simple({
|
|
7828
|
+
const transaction = await client.transaction.build.simple({
|
|
7829
7829
|
sender: account.accountAddress,
|
|
7830
7830
|
data: {
|
|
7831
7831
|
function: "0x1::delegation_pool::unlock",
|
|
@@ -7849,7 +7849,7 @@ export namespace delegation_pool {
|
|
|
7849
7849
|
options?: InputGenerateTransactionOptions,
|
|
7850
7850
|
): Promise<PendingTransactionResponse> {
|
|
7851
7851
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7852
|
-
const transaction = await client.build.simple({
|
|
7852
|
+
const transaction = await client.transaction.build.simple({
|
|
7853
7853
|
sender: account.accountAddress,
|
|
7854
7854
|
data: {
|
|
7855
7855
|
function: "0x1::delegation_pool::vote",
|
|
@@ -7873,7 +7873,7 @@ export namespace delegation_pool {
|
|
|
7873
7873
|
options?: InputGenerateTransactionOptions,
|
|
7874
7874
|
): Promise<PendingTransactionResponse> {
|
|
7875
7875
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
7876
|
-
const transaction = await client.build.simple({
|
|
7876
|
+
const transaction = await client.transaction.build.simple({
|
|
7877
7877
|
sender: account.accountAddress,
|
|
7878
7878
|
data: {
|
|
7879
7879
|
function: "0x1::delegation_pool::withdraw",
|
|
@@ -8614,7 +8614,7 @@ export namespace aptos_governance {
|
|
|
8614
8614
|
options?: InputGenerateTransactionOptions,
|
|
8615
8615
|
): Promise<PendingTransactionResponse> {
|
|
8616
8616
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
8617
|
-
const transaction = await client.build.simple({
|
|
8617
|
+
const transaction = await client.transaction.build.simple({
|
|
8618
8618
|
sender: account.accountAddress,
|
|
8619
8619
|
data: {
|
|
8620
8620
|
function: "0x1::aptos_governance::add_approved_script_hash_script",
|
|
@@ -8638,7 +8638,7 @@ export namespace aptos_governance {
|
|
|
8638
8638
|
options?: InputGenerateTransactionOptions,
|
|
8639
8639
|
): Promise<PendingTransactionResponse> {
|
|
8640
8640
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
8641
|
-
const transaction = await client.build.simple({
|
|
8641
|
+
const transaction = await client.transaction.build.simple({
|
|
8642
8642
|
sender: account.accountAddress,
|
|
8643
8643
|
data: {
|
|
8644
8644
|
function: "0x1::aptos_governance::create_proposal",
|
|
@@ -8662,7 +8662,7 @@ export namespace aptos_governance {
|
|
|
8662
8662
|
options?: InputGenerateTransactionOptions,
|
|
8663
8663
|
): Promise<PendingTransactionResponse> {
|
|
8664
8664
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
8665
|
-
const transaction = await client.build.simple({
|
|
8665
|
+
const transaction = await client.transaction.build.simple({
|
|
8666
8666
|
sender: account.accountAddress,
|
|
8667
8667
|
data: {
|
|
8668
8668
|
function: "0x1::aptos_governance::create_proposal_v2",
|
|
@@ -8687,7 +8687,7 @@ export namespace aptos_governance {
|
|
|
8687
8687
|
options?: InputGenerateTransactionOptions,
|
|
8688
8688
|
): Promise<PendingTransactionResponse> {
|
|
8689
8689
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
8690
|
-
const transaction = await client.build.simple({
|
|
8690
|
+
const transaction = await client.transaction.build.simple({
|
|
8691
8691
|
sender: account.accountAddress,
|
|
8692
8692
|
data: {
|
|
8693
8693
|
function: "0x1::aptos_governance::partial_vote",
|
|
@@ -8712,7 +8712,7 @@ export namespace aptos_governance {
|
|
|
8712
8712
|
options?: InputGenerateTransactionOptions,
|
|
8713
8713
|
): Promise<PendingTransactionResponse> {
|
|
8714
8714
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
8715
|
-
const transaction = await client.build.simple({
|
|
8715
|
+
const transaction = await client.transaction.build.simple({
|
|
8716
8716
|
sender: account.accountAddress,
|
|
8717
8717
|
data: {
|
|
8718
8718
|
function: "0x1::aptos_governance::vote",
|
|
@@ -9471,7 +9471,7 @@ export namespace multisig_account {
|
|
|
9471
9471
|
options?: InputGenerateTransactionOptions,
|
|
9472
9472
|
): Promise<PendingTransactionResponse> {
|
|
9473
9473
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9474
|
-
const transaction = await client.build.simple({
|
|
9474
|
+
const transaction = await client.transaction.build.simple({
|
|
9475
9475
|
sender: account.accountAddress,
|
|
9476
9476
|
data: {
|
|
9477
9477
|
function: "0x1::multisig_account::add_owner",
|
|
@@ -9495,7 +9495,7 @@ export namespace multisig_account {
|
|
|
9495
9495
|
options?: InputGenerateTransactionOptions,
|
|
9496
9496
|
): Promise<PendingTransactionResponse> {
|
|
9497
9497
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9498
|
-
const transaction = await client.build.simple({
|
|
9498
|
+
const transaction = await client.transaction.build.simple({
|
|
9499
9499
|
sender: account.accountAddress,
|
|
9500
9500
|
data: {
|
|
9501
9501
|
function: "0x1::multisig_account::add_owners",
|
|
@@ -9519,7 +9519,7 @@ export namespace multisig_account {
|
|
|
9519
9519
|
options?: InputGenerateTransactionOptions,
|
|
9520
9520
|
): Promise<PendingTransactionResponse> {
|
|
9521
9521
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9522
|
-
const transaction = await client.build.simple({
|
|
9522
|
+
const transaction = await client.transaction.build.simple({
|
|
9523
9523
|
sender: account.accountAddress,
|
|
9524
9524
|
data: {
|
|
9525
9525
|
function:
|
|
@@ -9544,7 +9544,7 @@ export namespace multisig_account {
|
|
|
9544
9544
|
options?: InputGenerateTransactionOptions,
|
|
9545
9545
|
): Promise<PendingTransactionResponse> {
|
|
9546
9546
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9547
|
-
const transaction = await client.build.simple({
|
|
9547
|
+
const transaction = await client.transaction.build.simple({
|
|
9548
9548
|
sender: account.accountAddress,
|
|
9549
9549
|
data: {
|
|
9550
9550
|
function: "0x1::multisig_account::approve_transaction",
|
|
@@ -9569,7 +9569,7 @@ export namespace multisig_account {
|
|
|
9569
9569
|
options?: InputGenerateTransactionOptions,
|
|
9570
9570
|
): Promise<PendingTransactionResponse> {
|
|
9571
9571
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9572
|
-
const transaction = await client.build.simple({
|
|
9572
|
+
const transaction = await client.transaction.build.simple({
|
|
9573
9573
|
sender: account.accountAddress,
|
|
9574
9574
|
data: {
|
|
9575
9575
|
function: "0x1::multisig_account::create",
|
|
@@ -9593,7 +9593,7 @@ export namespace multisig_account {
|
|
|
9593
9593
|
options?: InputGenerateTransactionOptions,
|
|
9594
9594
|
): Promise<PendingTransactionResponse> {
|
|
9595
9595
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9596
|
-
const transaction = await client.build.simple({
|
|
9596
|
+
const transaction = await client.transaction.build.simple({
|
|
9597
9597
|
sender: account.accountAddress,
|
|
9598
9598
|
data: {
|
|
9599
9599
|
function: "0x1::multisig_account::create_transaction",
|
|
@@ -9617,7 +9617,7 @@ export namespace multisig_account {
|
|
|
9617
9617
|
options?: InputGenerateTransactionOptions,
|
|
9618
9618
|
): Promise<PendingTransactionResponse> {
|
|
9619
9619
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9620
|
-
const transaction = await client.build.simple({
|
|
9620
|
+
const transaction = await client.transaction.build.simple({
|
|
9621
9621
|
sender: account.accountAddress,
|
|
9622
9622
|
data: {
|
|
9623
9623
|
function: "0x1::multisig_account::create_transaction_with_hash",
|
|
@@ -9650,7 +9650,7 @@ export namespace multisig_account {
|
|
|
9650
9650
|
options?: InputGenerateTransactionOptions,
|
|
9651
9651
|
): Promise<PendingTransactionResponse> {
|
|
9652
9652
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9653
|
-
const transaction = await client.build.simple({
|
|
9653
|
+
const transaction = await client.transaction.build.simple({
|
|
9654
9654
|
sender: account.accountAddress,
|
|
9655
9655
|
data: {
|
|
9656
9656
|
function: "0x1::multisig_account::create_with_existing_account",
|
|
@@ -9683,7 +9683,7 @@ export namespace multisig_account {
|
|
|
9683
9683
|
options?: InputGenerateTransactionOptions,
|
|
9684
9684
|
): Promise<PendingTransactionResponse> {
|
|
9685
9685
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9686
|
-
const transaction = await client.build.simple({
|
|
9686
|
+
const transaction = await client.transaction.build.simple({
|
|
9687
9687
|
sender: account.accountAddress,
|
|
9688
9688
|
data: {
|
|
9689
9689
|
function:
|
|
@@ -9708,7 +9708,7 @@ export namespace multisig_account {
|
|
|
9708
9708
|
options?: InputGenerateTransactionOptions,
|
|
9709
9709
|
): Promise<PendingTransactionResponse> {
|
|
9710
9710
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9711
|
-
const transaction = await client.build.simple({
|
|
9711
|
+
const transaction = await client.transaction.build.simple({
|
|
9712
9712
|
sender: account.accountAddress,
|
|
9713
9713
|
data: {
|
|
9714
9714
|
function: "0x1::multisig_account::create_with_owners",
|
|
@@ -9732,7 +9732,7 @@ export namespace multisig_account {
|
|
|
9732
9732
|
options?: InputGenerateTransactionOptions,
|
|
9733
9733
|
): Promise<PendingTransactionResponse> {
|
|
9734
9734
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9735
|
-
const transaction = await client.build.simple({
|
|
9735
|
+
const transaction = await client.transaction.build.simple({
|
|
9736
9736
|
sender: account.accountAddress,
|
|
9737
9737
|
data: {
|
|
9738
9738
|
function:
|
|
@@ -9757,7 +9757,7 @@ export namespace multisig_account {
|
|
|
9757
9757
|
options?: InputGenerateTransactionOptions,
|
|
9758
9758
|
): Promise<PendingTransactionResponse> {
|
|
9759
9759
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9760
|
-
const transaction = await client.build.simple({
|
|
9760
|
+
const transaction = await client.transaction.build.simple({
|
|
9761
9761
|
sender: account.accountAddress,
|
|
9762
9762
|
data: {
|
|
9763
9763
|
function: "0x1::multisig_account::execute_rejected_transaction",
|
|
@@ -9782,7 +9782,7 @@ export namespace multisig_account {
|
|
|
9782
9782
|
options?: InputGenerateTransactionOptions,
|
|
9783
9783
|
): Promise<PendingTransactionResponse> {
|
|
9784
9784
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9785
|
-
const transaction = await client.build.simple({
|
|
9785
|
+
const transaction = await client.transaction.build.simple({
|
|
9786
9786
|
sender: account.accountAddress,
|
|
9787
9787
|
data: {
|
|
9788
9788
|
function: "0x1::multisig_account::reject_transaction",
|
|
@@ -9806,7 +9806,7 @@ export namespace multisig_account {
|
|
|
9806
9806
|
options?: InputGenerateTransactionOptions,
|
|
9807
9807
|
): Promise<PendingTransactionResponse> {
|
|
9808
9808
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9809
|
-
const transaction = await client.build.simple({
|
|
9809
|
+
const transaction = await client.transaction.build.simple({
|
|
9810
9810
|
sender: account.accountAddress,
|
|
9811
9811
|
data: {
|
|
9812
9812
|
function: "0x1::multisig_account::remove_owner",
|
|
@@ -9830,7 +9830,7 @@ export namespace multisig_account {
|
|
|
9830
9830
|
options?: InputGenerateTransactionOptions,
|
|
9831
9831
|
): Promise<PendingTransactionResponse> {
|
|
9832
9832
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9833
|
-
const transaction = await client.build.simple({
|
|
9833
|
+
const transaction = await client.transaction.build.simple({
|
|
9834
9834
|
sender: account.accountAddress,
|
|
9835
9835
|
data: {
|
|
9836
9836
|
function: "0x1::multisig_account::remove_owners",
|
|
@@ -9854,7 +9854,7 @@ export namespace multisig_account {
|
|
|
9854
9854
|
options?: InputGenerateTransactionOptions,
|
|
9855
9855
|
): Promise<PendingTransactionResponse> {
|
|
9856
9856
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9857
|
-
const transaction = await client.build.simple({
|
|
9857
|
+
const transaction = await client.transaction.build.simple({
|
|
9858
9858
|
sender: account.accountAddress,
|
|
9859
9859
|
data: {
|
|
9860
9860
|
function: "0x1::multisig_account::swap_owner",
|
|
@@ -9878,7 +9878,7 @@ export namespace multisig_account {
|
|
|
9878
9878
|
options?: InputGenerateTransactionOptions,
|
|
9879
9879
|
): Promise<PendingTransactionResponse> {
|
|
9880
9880
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9881
|
-
const transaction = await client.build.simple({
|
|
9881
|
+
const transaction = await client.transaction.build.simple({
|
|
9882
9882
|
sender: account.accountAddress,
|
|
9883
9883
|
data: {
|
|
9884
9884
|
function: "0x1::multisig_account::swap_owners",
|
|
@@ -9902,7 +9902,7 @@ export namespace multisig_account {
|
|
|
9902
9902
|
options?: InputGenerateTransactionOptions,
|
|
9903
9903
|
): Promise<PendingTransactionResponse> {
|
|
9904
9904
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9905
|
-
const transaction = await client.build.simple({
|
|
9905
|
+
const transaction = await client.transaction.build.simple({
|
|
9906
9906
|
sender: account.accountAddress,
|
|
9907
9907
|
data: {
|
|
9908
9908
|
function:
|
|
@@ -9927,7 +9927,7 @@ export namespace multisig_account {
|
|
|
9927
9927
|
options?: InputGenerateTransactionOptions,
|
|
9928
9928
|
): Promise<PendingTransactionResponse> {
|
|
9929
9929
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9930
|
-
const transaction = await client.build.simple({
|
|
9930
|
+
const transaction = await client.transaction.build.simple({
|
|
9931
9931
|
sender: account.accountAddress,
|
|
9932
9932
|
data: {
|
|
9933
9933
|
function: "0x1::multisig_account::update_metadata",
|
|
@@ -9951,7 +9951,7 @@ export namespace multisig_account {
|
|
|
9951
9951
|
options?: InputGenerateTransactionOptions,
|
|
9952
9952
|
): Promise<PendingTransactionResponse> {
|
|
9953
9953
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9954
|
-
const transaction = await client.build.simple({
|
|
9954
|
+
const transaction = await client.transaction.build.simple({
|
|
9955
9955
|
sender: account.accountAddress,
|
|
9956
9956
|
data: {
|
|
9957
9957
|
function: "0x1::multisig_account::update_signatures_required",
|
|
@@ -9976,7 +9976,7 @@ export namespace multisig_account {
|
|
|
9976
9976
|
options?: InputGenerateTransactionOptions,
|
|
9977
9977
|
): Promise<PendingTransactionResponse> {
|
|
9978
9978
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
9979
|
-
const transaction = await client.build.simple({
|
|
9979
|
+
const transaction = await client.transaction.build.simple({
|
|
9980
9980
|
sender: account.accountAddress,
|
|
9981
9981
|
data: {
|
|
9982
9982
|
function: "0x1::multisig_account::vote_transanction",
|
|
@@ -10305,7 +10305,7 @@ export namespace resource_account {
|
|
|
10305
10305
|
options?: InputGenerateTransactionOptions,
|
|
10306
10306
|
): Promise<PendingTransactionResponse> {
|
|
10307
10307
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10308
|
-
const transaction = await client.build.simple({
|
|
10308
|
+
const transaction = await client.transaction.build.simple({
|
|
10309
10309
|
sender: account.accountAddress,
|
|
10310
10310
|
data: {
|
|
10311
10311
|
function: "0x1::resource_account::create_resource_account",
|
|
@@ -10329,7 +10329,7 @@ export namespace resource_account {
|
|
|
10329
10329
|
options?: InputGenerateTransactionOptions,
|
|
10330
10330
|
): Promise<PendingTransactionResponse> {
|
|
10331
10331
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10332
|
-
const transaction = await client.build.simple({
|
|
10332
|
+
const transaction = await client.transaction.build.simple({
|
|
10333
10333
|
sender: account.accountAddress,
|
|
10334
10334
|
data: {
|
|
10335
10335
|
function: "0x1::resource_account::create_resource_account_and_fund",
|
|
@@ -10353,7 +10353,7 @@ export namespace resource_account {
|
|
|
10353
10353
|
options?: InputGenerateTransactionOptions,
|
|
10354
10354
|
): Promise<PendingTransactionResponse> {
|
|
10355
10355
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10356
|
-
const transaction = await client.build.simple({
|
|
10356
|
+
const transaction = await client.transaction.build.simple({
|
|
10357
10357
|
sender: account.accountAddress,
|
|
10358
10358
|
data: {
|
|
10359
10359
|
function:
|
|
@@ -10750,7 +10750,7 @@ export namespace staking_contract {
|
|
|
10750
10750
|
options?: InputGenerateTransactionOptions,
|
|
10751
10751
|
): Promise<PendingTransactionResponse> {
|
|
10752
10752
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10753
|
-
const transaction = await client.build.simple({
|
|
10753
|
+
const transaction = await client.transaction.build.simple({
|
|
10754
10754
|
sender: account.accountAddress,
|
|
10755
10755
|
data: {
|
|
10756
10756
|
function: "0x1::staking_contract::add_stake",
|
|
@@ -10781,7 +10781,7 @@ export namespace staking_contract {
|
|
|
10781
10781
|
options?: InputGenerateTransactionOptions,
|
|
10782
10782
|
): Promise<PendingTransactionResponse> {
|
|
10783
10783
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10784
|
-
const transaction = await client.build.simple({
|
|
10784
|
+
const transaction = await client.transaction.build.simple({
|
|
10785
10785
|
sender: account.accountAddress,
|
|
10786
10786
|
data: {
|
|
10787
10787
|
function: "0x1::staking_contract::create_staking_contract",
|
|
@@ -10806,7 +10806,7 @@ export namespace staking_contract {
|
|
|
10806
10806
|
options?: InputGenerateTransactionOptions,
|
|
10807
10807
|
): Promise<PendingTransactionResponse> {
|
|
10808
10808
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10809
|
-
const transaction = await client.build.simple({
|
|
10809
|
+
const transaction = await client.transaction.build.simple({
|
|
10810
10810
|
sender: account.accountAddress,
|
|
10811
10811
|
data: {
|
|
10812
10812
|
function: "0x1::staking_contract::distribute",
|
|
@@ -10831,7 +10831,7 @@ export namespace staking_contract {
|
|
|
10831
10831
|
options?: InputGenerateTransactionOptions,
|
|
10832
10832
|
): Promise<PendingTransactionResponse> {
|
|
10833
10833
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10834
|
-
const transaction = await client.build.simple({
|
|
10834
|
+
const transaction = await client.transaction.build.simple({
|
|
10835
10835
|
sender: account.accountAddress,
|
|
10836
10836
|
data: {
|
|
10837
10837
|
function: "0x1::staking_contract::request_commission",
|
|
@@ -10855,7 +10855,7 @@ export namespace staking_contract {
|
|
|
10855
10855
|
options?: InputGenerateTransactionOptions,
|
|
10856
10856
|
): Promise<PendingTransactionResponse> {
|
|
10857
10857
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10858
|
-
const transaction = await client.build.simple({
|
|
10858
|
+
const transaction = await client.transaction.build.simple({
|
|
10859
10859
|
sender: account.accountAddress,
|
|
10860
10860
|
data: {
|
|
10861
10861
|
function: "0x1::staking_contract::reset_lockup",
|
|
@@ -10879,7 +10879,7 @@ export namespace staking_contract {
|
|
|
10879
10879
|
options?: InputGenerateTransactionOptions,
|
|
10880
10880
|
): Promise<PendingTransactionResponse> {
|
|
10881
10881
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10882
|
-
const transaction = await client.build.simple({
|
|
10882
|
+
const transaction = await client.transaction.build.simple({
|
|
10883
10883
|
sender: account.accountAddress,
|
|
10884
10884
|
data: {
|
|
10885
10885
|
function: "0x1::staking_contract::set_beneficiary_for_operator",
|
|
@@ -10904,7 +10904,7 @@ export namespace staking_contract {
|
|
|
10904
10904
|
options?: InputGenerateTransactionOptions,
|
|
10905
10905
|
): Promise<PendingTransactionResponse> {
|
|
10906
10906
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10907
|
-
const transaction = await client.build.simple({
|
|
10907
|
+
const transaction = await client.transaction.build.simple({
|
|
10908
10908
|
sender: account.accountAddress,
|
|
10909
10909
|
data: {
|
|
10910
10910
|
function: "0x1::staking_contract::switch_operator",
|
|
@@ -10928,7 +10928,7 @@ export namespace staking_contract {
|
|
|
10928
10928
|
options?: InputGenerateTransactionOptions,
|
|
10929
10929
|
): Promise<PendingTransactionResponse> {
|
|
10930
10930
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10931
|
-
const transaction = await client.build.simple({
|
|
10931
|
+
const transaction = await client.transaction.build.simple({
|
|
10932
10932
|
sender: account.accountAddress,
|
|
10933
10933
|
data: {
|
|
10934
10934
|
function:
|
|
@@ -10953,7 +10953,7 @@ export namespace staking_contract {
|
|
|
10953
10953
|
options?: InputGenerateTransactionOptions,
|
|
10954
10954
|
): Promise<PendingTransactionResponse> {
|
|
10955
10955
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10956
|
-
const transaction = await client.build.simple({
|
|
10956
|
+
const transaction = await client.transaction.build.simple({
|
|
10957
10957
|
sender: account.accountAddress,
|
|
10958
10958
|
data: {
|
|
10959
10959
|
function: "0x1::staking_contract::unlock_rewards",
|
|
@@ -10977,7 +10977,7 @@ export namespace staking_contract {
|
|
|
10977
10977
|
options?: InputGenerateTransactionOptions,
|
|
10978
10978
|
): Promise<PendingTransactionResponse> {
|
|
10979
10979
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
10980
|
-
const transaction = await client.build.simple({
|
|
10980
|
+
const transaction = await client.transaction.build.simple({
|
|
10981
10981
|
sender: account.accountAddress,
|
|
10982
10982
|
data: {
|
|
10983
10983
|
function: "0x1::staking_contract::unlock_stake",
|
|
@@ -11001,7 +11001,7 @@ export namespace staking_contract {
|
|
|
11001
11001
|
options?: InputGenerateTransactionOptions,
|
|
11002
11002
|
): Promise<PendingTransactionResponse> {
|
|
11003
11003
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
11004
|
-
const transaction = await client.build.simple({
|
|
11004
|
+
const transaction = await client.transaction.build.simple({
|
|
11005
11005
|
sender: account.accountAddress,
|
|
11006
11006
|
data: {
|
|
11007
11007
|
function: "0x1::staking_contract::update_commision",
|
|
@@ -11025,7 +11025,7 @@ export namespace staking_contract {
|
|
|
11025
11025
|
options?: InputGenerateTransactionOptions,
|
|
11026
11026
|
): Promise<PendingTransactionResponse> {
|
|
11027
11027
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
11028
|
-
const transaction = await client.build.simple({
|
|
11028
|
+
const transaction = await client.transaction.build.simple({
|
|
11029
11029
|
sender: account.accountAddress,
|
|
11030
11030
|
data: {
|
|
11031
11031
|
function: "0x1::staking_contract::update_voter",
|
|
@@ -11471,7 +11471,7 @@ export namespace primary_fungible_store {
|
|
|
11471
11471
|
options?: InputGenerateTransactionOptions,
|
|
11472
11472
|
): Promise<PendingTransactionResponse> {
|
|
11473
11473
|
const coder = defaultMoveCoder(client.config.fullnode);
|
|
11474
|
-
const transaction = await client.build.simple({
|
|
11474
|
+
const transaction = await client.transaction.build.simple({
|
|
11475
11475
|
sender: account.accountAddress,
|
|
11476
11476
|
data: {
|
|
11477
11477
|
function: "0x1::primary_fungible_store::transfer",
|