@sentio/sdk 2.5.4-rc.1 → 2.5.5-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/builtin/0x1.d.ts +70 -76
- package/lib/aptos/builtin/0x1.js +4 -4
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.d.ts +14 -32
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/codegen/codegen.js +1 -0
- package/lib/aptos/codegen/codegen.js.map +1 -1
- package/lib/aptos/codegen/types.test.js.map +1 -1
- package/lib/aptos/index.d.ts +2 -1
- package/lib/aptos/index.js +1 -0
- package/lib/aptos/index.js.map +1 -1
- package/lib/aptos/models.d.ts +1 -1
- package/lib/aptos/models.js.map +1 -1
- package/lib/aptos/module-client.d.ts +6 -0
- package/lib/aptos/module-client.js +25 -0
- package/lib/aptos/module-client.js.map +1 -0
- package/lib/aptos/module-client.test.d.ts +1 -0
- package/lib/aptos/module-client.test.js.map +1 -0
- package/lib/aptos/move-coder.d.ts +2 -0
- package/lib/aptos/move-coder.js +7 -15
- package/lib/aptos/move-coder.js.map +1 -1
- package/lib/aptos/network.d.ts +2 -0
- package/lib/aptos/network.js +1 -0
- package/lib/aptos/network.js.map +1 -1
- package/lib/move/abstract-codegen.d.ts +2 -0
- package/lib/move/abstract-codegen.js +44 -7
- package/lib/move/abstract-codegen.js.map +1 -1
- package/lib/move/abstract-move-coder.d.ts +12 -5
- package/lib/move/abstract-move-coder.js +100 -6
- package/lib/move/abstract-move-coder.js.map +1 -1
- package/lib/move/ts-type.js +1 -1
- package/lib/move/ts-type.js.map +1 -1
- package/lib/move/utils.js +1 -1
- package/lib/move/utils.js.map +1 -1
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +49 -49
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/codegen/codegen.js +2 -4
- package/lib/sui/codegen/codegen.js.map +1 -1
- package/lib/sui/index.d.ts +1 -0
- package/lib/sui/index.js +1 -0
- package/lib/sui/index.js.map +1 -1
- package/lib/sui/models.d.ts +1 -1
- package/lib/sui/models.js.map +1 -1
- package/lib/sui/module-client.d.ts +3 -0
- package/lib/sui/module-client.js +7 -0
- package/lib/sui/module-client.js.map +1 -0
- package/lib/sui/move-coder.d.ts +2 -0
- package/lib/sui/move-coder.js +8 -17
- package/lib/sui/move-coder.js.map +1 -1
- package/lib/sui/utils.d.ts +2 -0
- package/lib/sui/utils.js +6 -0
- package/lib/sui/utils.js.map +1 -1
- package/package.json +4 -4
- package/src/aptos/builtin/0x1.ts +71 -81
- package/src/aptos/builtin/0x3.ts +15 -21
- package/src/aptos/codegen/codegen.ts +1 -0
- package/src/aptos/index.ts +2 -1
- package/src/aptos/models.ts +1 -1
- package/src/aptos/module-client.ts +30 -0
- package/src/aptos/move-coder.ts +11 -17
- package/src/aptos/network.ts +2 -0
- package/src/move/abstract-codegen.ts +55 -9
- package/src/move/abstract-move-coder.ts +116 -10
- package/src/move/ts-type.ts +1 -1
- package/src/move/utils.ts +1 -1
- package/src/sui/builtin/0x1.ts +2 -2
- package/src/sui/builtin/0x2.ts +50 -51
- package/src/sui/codegen/codegen.ts +2 -4
- package/src/sui/index.ts +2 -0
- package/src/sui/models.ts +1 -1
- package/src/sui/module-client.ts +7 -0
- package/src/sui/move-coder.ts +11 -21
- package/src/sui/utils.ts +8 -0
package/lib/sui/builtin/0x2.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CallFilter } from "@sentio/sdk/move";
|
|
2
|
-
import { MoveCoder, SuiBindOptions, SuiBaseProcessor, TypedEventInstance,
|
|
2
|
+
import { MoveCoder, SuiBindOptions, SuiBaseProcessor, TypedEventInstance, TypedFunctionPayload, SuiContext } from "@sentio/sdk/sui";
|
|
3
3
|
import { MoveFetchConfig } from "@sentio/protos";
|
|
4
4
|
import { SuiAddress } from "@sentio/sdk/sui";
|
|
5
5
|
import * as _0x1 from "./0x1.js";
|
|
@@ -80,31 +80,31 @@ export declare namespace coin {
|
|
|
80
80
|
id: object_.UID;
|
|
81
81
|
total_supply: balance.Supply<T0>;
|
|
82
82
|
}
|
|
83
|
-
interface BurnPayload<T0 = any> extends
|
|
83
|
+
interface BurnPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress]> {
|
|
84
84
|
arguments_decoded: [SuiAddress];
|
|
85
85
|
type_arguments: [string];
|
|
86
86
|
}
|
|
87
|
-
interface JoinPayload<T0 = any> extends
|
|
87
|
+
interface JoinPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress]> {
|
|
88
88
|
arguments_decoded: [SuiAddress];
|
|
89
89
|
type_arguments: [string];
|
|
90
90
|
}
|
|
91
|
-
interface MintAndTransferPayload<T0 = any> extends
|
|
91
|
+
interface MintAndTransferPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress, bigint, SuiAddress]> {
|
|
92
92
|
arguments_decoded: [SuiAddress, bigint, SuiAddress];
|
|
93
93
|
type_arguments: [string];
|
|
94
94
|
}
|
|
95
|
-
interface UpdateDescriptionPayload<T0 = any> extends
|
|
95
|
+
interface UpdateDescriptionPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress, SuiAddress]> {
|
|
96
96
|
arguments_decoded: [SuiAddress, SuiAddress];
|
|
97
97
|
type_arguments: [string];
|
|
98
98
|
}
|
|
99
|
-
interface UpdateIconUrlPayload<T0 = any> extends
|
|
99
|
+
interface UpdateIconUrlPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress, SuiAddress]> {
|
|
100
100
|
arguments_decoded: [SuiAddress, SuiAddress];
|
|
101
101
|
type_arguments: [string];
|
|
102
102
|
}
|
|
103
|
-
interface UpdateNamePayload<T0 = any> extends
|
|
103
|
+
interface UpdateNamePayload<T0 = any> extends TypedFunctionPayload<[SuiAddress, SuiAddress]> {
|
|
104
104
|
arguments_decoded: [SuiAddress, SuiAddress];
|
|
105
105
|
type_arguments: [string];
|
|
106
106
|
}
|
|
107
|
-
interface UpdateSymbolPayload<T0 = any> extends
|
|
107
|
+
interface UpdateSymbolPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress, SuiAddress]> {
|
|
108
108
|
arguments_decoded: [SuiAddress, SuiAddress];
|
|
109
109
|
type_arguments: [string];
|
|
110
110
|
}
|
|
@@ -136,15 +136,15 @@ export declare namespace devnet_nft {
|
|
|
136
136
|
fields_decoded: MintNFTEvent;
|
|
137
137
|
type_arguments: [];
|
|
138
138
|
}
|
|
139
|
-
interface BurnPayload extends
|
|
139
|
+
interface BurnPayload extends TypedFunctionPayload<[]> {
|
|
140
140
|
arguments_decoded: [];
|
|
141
141
|
type_arguments: [];
|
|
142
142
|
}
|
|
143
|
-
interface MintPayload extends
|
|
143
|
+
interface MintPayload extends TypedFunctionPayload<[string, string, string]> {
|
|
144
144
|
arguments_decoded: [string, string, string];
|
|
145
145
|
type_arguments: [];
|
|
146
146
|
}
|
|
147
|
-
interface UpdateDescriptionPayload extends
|
|
147
|
+
interface UpdateDescriptionPayload extends TypedFunctionPayload<[SuiAddress]> {
|
|
148
148
|
arguments_decoded: [SuiAddress];
|
|
149
149
|
type_arguments: [];
|
|
150
150
|
}
|
|
@@ -321,11 +321,11 @@ export declare namespace locked_coin {
|
|
|
321
321
|
balance: balance.Balance<T0>;
|
|
322
322
|
locked_until_epoch: epoch_time_lock.EpochTimeLock;
|
|
323
323
|
}
|
|
324
|
-
interface LockCoinPayload<T0 = any> extends
|
|
324
|
+
interface LockCoinPayload<T0 = any> extends TypedFunctionPayload<[string, SuiAddress, bigint]> {
|
|
325
325
|
arguments_decoded: [string, SuiAddress, bigint];
|
|
326
326
|
type_arguments: [string];
|
|
327
327
|
}
|
|
328
|
-
interface UnlockCoinPayload<T0 = any> extends
|
|
328
|
+
interface UnlockCoinPayload<T0 = any> extends TypedFunctionPayload<[locked_coin.LockedCoin<T0>]> {
|
|
329
329
|
arguments_decoded: [locked_coin.LockedCoin<T0>];
|
|
330
330
|
type_arguments: [string];
|
|
331
331
|
}
|
|
@@ -378,31 +378,31 @@ export declare class pay extends SuiBaseProcessor {
|
|
|
378
378
|
onEntrySplitVec(func: (call: pay.SplitVecPayload, ctx: SuiContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): pay;
|
|
379
379
|
}
|
|
380
380
|
export declare namespace pay {
|
|
381
|
-
interface DivideAndKeepPayload<T0 = any> extends
|
|
381
|
+
interface DivideAndKeepPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress, bigint]> {
|
|
382
382
|
arguments_decoded: [SuiAddress, bigint];
|
|
383
383
|
type_arguments: [string];
|
|
384
384
|
}
|
|
385
|
-
interface JoinPayload<T0 = any> extends
|
|
385
|
+
interface JoinPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress]> {
|
|
386
386
|
arguments_decoded: [SuiAddress];
|
|
387
387
|
type_arguments: [string];
|
|
388
388
|
}
|
|
389
|
-
interface JoinVecPayload<T0 = any> extends
|
|
389
|
+
interface JoinVecPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress]> {
|
|
390
390
|
arguments_decoded: [SuiAddress];
|
|
391
391
|
type_arguments: [string];
|
|
392
392
|
}
|
|
393
|
-
interface JoinVecAndTransferPayload<T0 = any> extends
|
|
393
|
+
interface JoinVecAndTransferPayload<T0 = any> extends TypedFunctionPayload<[string[]]> {
|
|
394
394
|
arguments_decoded: [string[]];
|
|
395
395
|
type_arguments: [string];
|
|
396
396
|
}
|
|
397
|
-
interface SplitPayload<T0 = any> extends
|
|
397
|
+
interface SplitPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress, bigint]> {
|
|
398
398
|
arguments_decoded: [SuiAddress, bigint];
|
|
399
399
|
type_arguments: [string];
|
|
400
400
|
}
|
|
401
|
-
interface SplitAndTransferPayload<T0 = any> extends
|
|
401
|
+
interface SplitAndTransferPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress, bigint, SuiAddress]> {
|
|
402
402
|
arguments_decoded: [SuiAddress, bigint, SuiAddress];
|
|
403
403
|
type_arguments: [string];
|
|
404
404
|
}
|
|
405
|
-
interface SplitVecPayload<T0 = any> extends
|
|
405
|
+
interface SplitVecPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress, bigint[]]> {
|
|
406
406
|
arguments_decoded: [SuiAddress, bigint[]];
|
|
407
407
|
type_arguments: [string];
|
|
408
408
|
}
|
|
@@ -455,27 +455,27 @@ export declare namespace safe {
|
|
|
455
455
|
safe_id: string;
|
|
456
456
|
amount: bigint;
|
|
457
457
|
}
|
|
458
|
-
interface CreatePayload<T0 = any> extends
|
|
458
|
+
interface CreatePayload<T0 = any> extends TypedFunctionPayload<[string]> {
|
|
459
459
|
arguments_decoded: [string];
|
|
460
460
|
type_arguments: [string];
|
|
461
461
|
}
|
|
462
|
-
interface CreateEmptyPayload<T0 = any> extends
|
|
462
|
+
interface CreateEmptyPayload<T0 = any> extends TypedFunctionPayload<[]> {
|
|
463
463
|
arguments_decoded: [];
|
|
464
464
|
type_arguments: [string];
|
|
465
465
|
}
|
|
466
|
-
interface DepositPayload<T0 = any> extends
|
|
466
|
+
interface DepositPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress]> {
|
|
467
467
|
arguments_decoded: [SuiAddress];
|
|
468
468
|
type_arguments: [string];
|
|
469
469
|
}
|
|
470
|
-
interface RevokeTransferCapabilityPayload<T0 = any> extends
|
|
470
|
+
interface RevokeTransferCapabilityPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress, SuiAddress]> {
|
|
471
471
|
arguments_decoded: [SuiAddress, SuiAddress];
|
|
472
472
|
type_arguments: [string];
|
|
473
473
|
}
|
|
474
|
-
interface SelfRevokeTransferCapabilityPayload<T0 = any> extends
|
|
474
|
+
interface SelfRevokeTransferCapabilityPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress]> {
|
|
475
475
|
arguments_decoded: [SuiAddress];
|
|
476
476
|
type_arguments: [string];
|
|
477
477
|
}
|
|
478
|
-
interface WithdrawPayload<T0 = any> extends
|
|
478
|
+
interface WithdrawPayload<T0 = any> extends TypedFunctionPayload<[SuiAddress, SuiAddress, bigint]> {
|
|
479
479
|
arguments_decoded: [SuiAddress, SuiAddress, bigint];
|
|
480
480
|
type_arguments: [string];
|
|
481
481
|
}
|
|
@@ -493,7 +493,7 @@ export declare namespace stake {
|
|
|
493
493
|
balance: balance.Balance<sui.SUI>;
|
|
494
494
|
locked_until_epoch: _0x1.option.Option<epoch_time_lock.EpochTimeLock>;
|
|
495
495
|
}
|
|
496
|
-
interface BurnPayload extends
|
|
496
|
+
interface BurnPayload extends TypedFunctionPayload<[stake.Stake]> {
|
|
497
497
|
arguments_decoded: [stake.Stake];
|
|
498
498
|
type_arguments: [];
|
|
499
499
|
}
|
|
@@ -571,15 +571,15 @@ export declare namespace staking_pool {
|
|
|
571
571
|
pending_delegations: linked_table.LinkedTable<string, staking_pool.PendingDelegationEntry>;
|
|
572
572
|
pending_withdraws: table_vec.TableVec<staking_pool.PendingWithdrawEntry>;
|
|
573
573
|
}
|
|
574
|
-
interface DestroyEmptyDelegationPayload extends
|
|
574
|
+
interface DestroyEmptyDelegationPayload extends TypedFunctionPayload<[]> {
|
|
575
575
|
arguments_decoded: [];
|
|
576
576
|
type_arguments: [];
|
|
577
577
|
}
|
|
578
|
-
interface DestroyEmptyStakedSuiPayload extends
|
|
578
|
+
interface DestroyEmptyStakedSuiPayload extends TypedFunctionPayload<[]> {
|
|
579
579
|
arguments_decoded: [];
|
|
580
580
|
type_arguments: [];
|
|
581
581
|
}
|
|
582
|
-
interface WithdrawFromInactivePoolPayload extends
|
|
582
|
+
interface WithdrawFromInactivePoolPayload extends TypedFunctionPayload<[
|
|
583
583
|
SuiAddress,
|
|
584
584
|
staking_pool.StakedSui,
|
|
585
585
|
staking_pool.Delegation
|
|
@@ -603,7 +603,7 @@ export declare namespace sui {
|
|
|
603
603
|
static TYPE_QNAME: string;
|
|
604
604
|
dummy_field: Boolean;
|
|
605
605
|
}
|
|
606
|
-
interface TransferPayload extends
|
|
606
|
+
interface TransferPayload extends TypedFunctionPayload<[string]> {
|
|
607
607
|
arguments_decoded: [string];
|
|
608
608
|
type_arguments: [];
|
|
609
609
|
}
|
|
@@ -668,7 +668,7 @@ export declare namespace sui_system {
|
|
|
668
668
|
max_validator_candidate_count: bigint;
|
|
669
669
|
storage_gas_price: bigint;
|
|
670
670
|
}
|
|
671
|
-
interface AdvanceEpochPayload extends
|
|
671
|
+
interface AdvanceEpochPayload extends TypedFunctionPayload<[
|
|
672
672
|
SuiAddress,
|
|
673
673
|
bigint,
|
|
674
674
|
bigint,
|
|
@@ -690,23 +690,23 @@ export declare namespace sui_system {
|
|
|
690
690
|
];
|
|
691
691
|
type_arguments: [];
|
|
692
692
|
}
|
|
693
|
-
interface AdvanceEpochSafeModePayload extends
|
|
693
|
+
interface AdvanceEpochSafeModePayload extends TypedFunctionPayload<[SuiAddress, bigint]> {
|
|
694
694
|
arguments_decoded: [SuiAddress, bigint];
|
|
695
695
|
type_arguments: [];
|
|
696
696
|
}
|
|
697
|
-
interface CancelDelegationRequestPayload extends
|
|
697
|
+
interface CancelDelegationRequestPayload extends TypedFunctionPayload<[SuiAddress, staking_pool.StakedSui]> {
|
|
698
698
|
arguments_decoded: [SuiAddress, staking_pool.StakedSui];
|
|
699
699
|
type_arguments: [];
|
|
700
700
|
}
|
|
701
|
-
interface ReportValidatorPayload extends
|
|
701
|
+
interface ReportValidatorPayload extends TypedFunctionPayload<[SuiAddress, SuiAddress]> {
|
|
702
702
|
arguments_decoded: [SuiAddress, SuiAddress];
|
|
703
703
|
type_arguments: [];
|
|
704
704
|
}
|
|
705
|
-
interface RequestAddDelegationPayload extends
|
|
705
|
+
interface RequestAddDelegationPayload extends TypedFunctionPayload<[SuiAddress, string, SuiAddress]> {
|
|
706
706
|
arguments_decoded: [SuiAddress, string, SuiAddress];
|
|
707
707
|
type_arguments: [];
|
|
708
708
|
}
|
|
709
|
-
interface RequestAddDelegationMulCoinPayload extends
|
|
709
|
+
interface RequestAddDelegationMulCoinPayload extends TypedFunctionPayload<[
|
|
710
710
|
SuiAddress,
|
|
711
711
|
string[],
|
|
712
712
|
_0x1.option.Option<bigint>,
|
|
@@ -720,7 +720,7 @@ export declare namespace sui_system {
|
|
|
720
720
|
];
|
|
721
721
|
type_arguments: [];
|
|
722
722
|
}
|
|
723
|
-
interface RequestAddDelegationMulLockedCoinPayload extends
|
|
723
|
+
interface RequestAddDelegationMulLockedCoinPayload extends TypedFunctionPayload<[
|
|
724
724
|
SuiAddress,
|
|
725
725
|
locked_coin.LockedCoin<sui.SUI>[],
|
|
726
726
|
_0x1.option.Option<bigint>,
|
|
@@ -734,7 +734,7 @@ export declare namespace sui_system {
|
|
|
734
734
|
];
|
|
735
735
|
type_arguments: [];
|
|
736
736
|
}
|
|
737
|
-
interface RequestAddDelegationWithLockedCoinPayload extends
|
|
737
|
+
interface RequestAddDelegationWithLockedCoinPayload extends TypedFunctionPayload<[
|
|
738
738
|
SuiAddress,
|
|
739
739
|
locked_coin.LockedCoin<sui.SUI>,
|
|
740
740
|
SuiAddress
|
|
@@ -746,18 +746,18 @@ export declare namespace sui_system {
|
|
|
746
746
|
];
|
|
747
747
|
type_arguments: [];
|
|
748
748
|
}
|
|
749
|
-
interface RequestAddStakePayload extends
|
|
749
|
+
interface RequestAddStakePayload extends TypedFunctionPayload<[SuiAddress, string]> {
|
|
750
750
|
arguments_decoded: [SuiAddress, string];
|
|
751
751
|
type_arguments: [];
|
|
752
752
|
}
|
|
753
|
-
interface RequestAddStakeWithLockedCoinPayload extends
|
|
753
|
+
interface RequestAddStakeWithLockedCoinPayload extends TypedFunctionPayload<[
|
|
754
754
|
SuiAddress,
|
|
755
755
|
locked_coin.LockedCoin<sui.SUI>
|
|
756
756
|
]> {
|
|
757
757
|
arguments_decoded: [SuiAddress, locked_coin.LockedCoin<sui.SUI>];
|
|
758
758
|
type_arguments: [];
|
|
759
759
|
}
|
|
760
|
-
interface RequestAddValidatorPayload extends
|
|
760
|
+
interface RequestAddValidatorPayload extends TypedFunctionPayload<[
|
|
761
761
|
SuiAddress,
|
|
762
762
|
string,
|
|
763
763
|
string,
|
|
@@ -793,19 +793,19 @@ export declare namespace sui_system {
|
|
|
793
793
|
];
|
|
794
794
|
type_arguments: [];
|
|
795
795
|
}
|
|
796
|
-
interface RequestRemoveValidatorPayload extends
|
|
796
|
+
interface RequestRemoveValidatorPayload extends TypedFunctionPayload<[SuiAddress]> {
|
|
797
797
|
arguments_decoded: [SuiAddress];
|
|
798
798
|
type_arguments: [];
|
|
799
799
|
}
|
|
800
|
-
interface RequestSetCommissionRatePayload extends
|
|
800
|
+
interface RequestSetCommissionRatePayload extends TypedFunctionPayload<[SuiAddress, bigint]> {
|
|
801
801
|
arguments_decoded: [SuiAddress, bigint];
|
|
802
802
|
type_arguments: [];
|
|
803
803
|
}
|
|
804
|
-
interface RequestSetGasPricePayload extends
|
|
804
|
+
interface RequestSetGasPricePayload extends TypedFunctionPayload<[SuiAddress, bigint]> {
|
|
805
805
|
arguments_decoded: [SuiAddress, bigint];
|
|
806
806
|
type_arguments: [];
|
|
807
807
|
}
|
|
808
|
-
interface RequestSwitchDelegationPayload extends
|
|
808
|
+
interface RequestSwitchDelegationPayload extends TypedFunctionPayload<[
|
|
809
809
|
SuiAddress,
|
|
810
810
|
staking_pool.Delegation,
|
|
811
811
|
staking_pool.StakedSui,
|
|
@@ -819,7 +819,7 @@ export declare namespace sui_system {
|
|
|
819
819
|
];
|
|
820
820
|
type_arguments: [];
|
|
821
821
|
}
|
|
822
|
-
interface RequestWithdrawDelegationPayload extends
|
|
822
|
+
interface RequestWithdrawDelegationPayload extends TypedFunctionPayload<[
|
|
823
823
|
SuiAddress,
|
|
824
824
|
staking_pool.Delegation,
|
|
825
825
|
staking_pool.StakedSui
|
|
@@ -831,11 +831,11 @@ export declare namespace sui_system {
|
|
|
831
831
|
];
|
|
832
832
|
type_arguments: [];
|
|
833
833
|
}
|
|
834
|
-
interface RequestWithdrawStakePayload extends
|
|
834
|
+
interface RequestWithdrawStakePayload extends TypedFunctionPayload<[SuiAddress, SuiAddress, bigint]> {
|
|
835
835
|
arguments_decoded: [SuiAddress, SuiAddress, bigint];
|
|
836
836
|
type_arguments: [];
|
|
837
837
|
}
|
|
838
|
-
interface UndoReportValidatorPayload extends
|
|
838
|
+
interface UndoReportValidatorPayload extends TypedFunctionPayload<[SuiAddress, SuiAddress]> {
|
|
839
839
|
arguments_decoded: [SuiAddress, SuiAddress];
|
|
840
840
|
type_arguments: [];
|
|
841
841
|
}
|