@sentio/sdk 2.0.0-rc.16 → 2.0.0-rc.18
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 +0 -226
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.d.ts +0 -82
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/codegen/codegen.js +0 -4
- package/lib/aptos/codegen/codegen.js.map +1 -1
- package/lib/aptos/models.d.ts +0 -10
- package/lib/aptos/models.js.map +1 -1
- package/lib/aptos/move-coder.js +0 -2
- package/lib/aptos/move-coder.js.map +1 -1
- package/lib/aptos/tests/types/reserved.d.ts +0 -100
- package/lib/aptos/tests/types/reserved.js.map +1 -1
- package/lib/aptos/tests/types/soffl3.d.ts +0 -253
- package/lib/aptos/tests/types/soffl3.js.map +1 -1
- package/lib/aptos/tests/types/souffle.d.ts +0 -100
- package/lib/aptos/tests/types/souffle.js.map +1 -1
- package/lib/eth/provider.js +12 -2
- package/lib/eth/provider.js.map +1 -1
- package/package.json +5 -5
- package/src/aptos/builtin/0x1.ts +0 -226
- package/src/aptos/builtin/0x3.ts +0 -82
- package/src/aptos/codegen/codegen.ts +0 -4
- package/src/aptos/models.ts +0 -12
- package/src/aptos/move-coder.ts +0 -2
- package/src/aptos/tests/types/reserved.ts +0 -100
- package/src/aptos/tests/types/soffl3.ts +0 -253
- package/src/aptos/tests/types/souffle.ts +0 -100
- package/src/eth/provider.ts +13 -3
|
@@ -67,8 +67,6 @@ export declare namespace code {
|
|
|
67
67
|
policy: number;
|
|
68
68
|
}
|
|
69
69
|
interface PublishPackageTxnPayload extends TypedEntryFunctionPayload<[string, string[]]> {
|
|
70
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
71
|
-
arguments_typed: [string, string[]];
|
|
72
70
|
arguments_decoded: [string, string[]];
|
|
73
71
|
type_arguments: [];
|
|
74
72
|
}
|
|
@@ -115,8 +113,6 @@ export declare namespace coin {
|
|
|
115
113
|
amount: bigint;
|
|
116
114
|
}
|
|
117
115
|
interface DepositEventInstance extends TypedEventInstance<DepositEvent> {
|
|
118
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
119
|
-
data_typed: DepositEvent;
|
|
120
116
|
data_decoded: DepositEvent;
|
|
121
117
|
type_arguments: [];
|
|
122
118
|
}
|
|
@@ -137,32 +133,22 @@ export declare namespace coin {
|
|
|
137
133
|
amount: bigint;
|
|
138
134
|
}
|
|
139
135
|
interface WithdrawEventInstance extends TypedEventInstance<WithdrawEvent> {
|
|
140
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
141
|
-
data_typed: WithdrawEvent;
|
|
142
136
|
data_decoded: WithdrawEvent;
|
|
143
137
|
type_arguments: [];
|
|
144
138
|
}
|
|
145
139
|
interface FreezeCoinStorePayload<T0 = any> extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
146
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
147
|
-
arguments_typed: [Address, Address];
|
|
148
140
|
arguments_decoded: [Address, Address];
|
|
149
141
|
type_arguments: [string];
|
|
150
142
|
}
|
|
151
143
|
interface TransferPayload<T0 = any> extends TypedEntryFunctionPayload<[Address, bigint]> {
|
|
152
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
153
|
-
arguments_typed: [Address, bigint];
|
|
154
144
|
arguments_decoded: [Address, bigint];
|
|
155
145
|
type_arguments: [string];
|
|
156
146
|
}
|
|
157
147
|
interface UnfreezeCoinStorePayload<T0 = any> extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
158
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
159
|
-
arguments_typed: [Address, Address];
|
|
160
148
|
arguments_decoded: [Address, Address];
|
|
161
149
|
type_arguments: [string];
|
|
162
150
|
}
|
|
163
151
|
interface UpgradeSupplyPayload<T0 = any> extends TypedEntryFunctionPayload<[]> {
|
|
164
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
165
|
-
arguments_typed: [];
|
|
166
152
|
arguments_decoded: [];
|
|
167
153
|
type_arguments: [string];
|
|
168
154
|
}
|
|
@@ -218,8 +204,6 @@ export declare namespace block {
|
|
|
218
204
|
time_microseconds: bigint;
|
|
219
205
|
}
|
|
220
206
|
interface NewBlockEventInstance extends TypedEventInstance<NewBlockEvent> {
|
|
221
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
222
|
-
data_typed: NewBlockEvent;
|
|
223
207
|
data_decoded: NewBlockEvent;
|
|
224
208
|
type_arguments: [];
|
|
225
209
|
}
|
|
@@ -229,8 +213,6 @@ export declare namespace block {
|
|
|
229
213
|
new_epoch_interval: bigint;
|
|
230
214
|
}
|
|
231
215
|
interface UpdateEpochIntervalEventInstance extends TypedEventInstance<UpdateEpochIntervalEvent> {
|
|
232
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
233
|
-
data_typed: UpdateEpochIntervalEvent;
|
|
234
216
|
data_decoded: UpdateEpochIntervalEvent;
|
|
235
217
|
type_arguments: [];
|
|
236
218
|
}
|
|
@@ -292,8 +274,6 @@ export declare namespace stake {
|
|
|
292
274
|
amount_added: bigint;
|
|
293
275
|
}
|
|
294
276
|
interface AddStakeEventInstance extends TypedEventInstance<AddStakeEvent> {
|
|
295
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
296
|
-
data_typed: AddStakeEvent;
|
|
297
277
|
data_decoded: AddStakeEvent;
|
|
298
278
|
type_arguments: [];
|
|
299
279
|
}
|
|
@@ -311,8 +291,6 @@ export declare namespace stake {
|
|
|
311
291
|
rewards_amount: bigint;
|
|
312
292
|
}
|
|
313
293
|
interface DistributeRewardsEventInstance extends TypedEventInstance<DistributeRewardsEvent> {
|
|
314
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
315
|
-
data_typed: DistributeRewardsEvent;
|
|
316
294
|
data_decoded: DistributeRewardsEvent;
|
|
317
295
|
type_arguments: [];
|
|
318
296
|
}
|
|
@@ -323,8 +301,6 @@ export declare namespace stake {
|
|
|
323
301
|
new_locked_until_secs: bigint;
|
|
324
302
|
}
|
|
325
303
|
interface IncreaseLockupEventInstance extends TypedEventInstance<IncreaseLockupEvent> {
|
|
326
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
327
|
-
data_typed: IncreaseLockupEvent;
|
|
328
304
|
data_decoded: IncreaseLockupEvent;
|
|
329
305
|
type_arguments: [];
|
|
330
306
|
}
|
|
@@ -338,8 +314,6 @@ export declare namespace stake {
|
|
|
338
314
|
pool_address: Address;
|
|
339
315
|
}
|
|
340
316
|
interface JoinValidatorSetEventInstance extends TypedEventInstance<JoinValidatorSetEvent> {
|
|
341
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
342
|
-
data_typed: JoinValidatorSetEvent;
|
|
343
317
|
data_decoded: JoinValidatorSetEvent;
|
|
344
318
|
type_arguments: [];
|
|
345
319
|
}
|
|
@@ -348,8 +322,6 @@ export declare namespace stake {
|
|
|
348
322
|
pool_address: Address;
|
|
349
323
|
}
|
|
350
324
|
interface LeaveValidatorSetEventInstance extends TypedEventInstance<LeaveValidatorSetEvent> {
|
|
351
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
352
|
-
data_typed: LeaveValidatorSetEvent;
|
|
353
325
|
data_decoded: LeaveValidatorSetEvent;
|
|
354
326
|
type_arguments: [];
|
|
355
327
|
}
|
|
@@ -363,8 +335,6 @@ export declare namespace stake {
|
|
|
363
335
|
amount: bigint;
|
|
364
336
|
}
|
|
365
337
|
interface ReactivateStakeEventInstance extends TypedEventInstance<ReactivateStakeEvent> {
|
|
366
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
367
|
-
data_typed: ReactivateStakeEvent;
|
|
368
338
|
data_decoded: ReactivateStakeEvent;
|
|
369
339
|
type_arguments: [];
|
|
370
340
|
}
|
|
@@ -373,8 +343,6 @@ export declare namespace stake {
|
|
|
373
343
|
pool_address: Address;
|
|
374
344
|
}
|
|
375
345
|
interface RegisterValidatorCandidateEventInstance extends TypedEventInstance<RegisterValidatorCandidateEvent> {
|
|
376
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
377
|
-
data_typed: RegisterValidatorCandidateEvent;
|
|
378
346
|
data_decoded: RegisterValidatorCandidateEvent;
|
|
379
347
|
type_arguments: [];
|
|
380
348
|
}
|
|
@@ -385,8 +353,6 @@ export declare namespace stake {
|
|
|
385
353
|
new_consensus_pubkey: string;
|
|
386
354
|
}
|
|
387
355
|
interface RotateConsensusKeyEventInstance extends TypedEventInstance<RotateConsensusKeyEvent> {
|
|
388
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
389
|
-
data_typed: RotateConsensusKeyEvent;
|
|
390
356
|
data_decoded: RotateConsensusKeyEvent;
|
|
391
357
|
type_arguments: [];
|
|
392
358
|
}
|
|
@@ -397,8 +363,6 @@ export declare namespace stake {
|
|
|
397
363
|
new_operator: Address;
|
|
398
364
|
}
|
|
399
365
|
interface SetOperatorEventInstance extends TypedEventInstance<SetOperatorEvent> {
|
|
400
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
401
|
-
data_typed: SetOperatorEvent;
|
|
402
366
|
data_decoded: SetOperatorEvent;
|
|
403
367
|
type_arguments: [];
|
|
404
368
|
}
|
|
@@ -430,8 +394,6 @@ export declare namespace stake {
|
|
|
430
394
|
amount_unlocked: bigint;
|
|
431
395
|
}
|
|
432
396
|
interface UnlockStakeEventInstance extends TypedEventInstance<UnlockStakeEvent> {
|
|
433
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
434
|
-
data_typed: UnlockStakeEvent;
|
|
435
397
|
data_decoded: UnlockStakeEvent;
|
|
436
398
|
type_arguments: [];
|
|
437
399
|
}
|
|
@@ -444,8 +406,6 @@ export declare namespace stake {
|
|
|
444
406
|
new_fullnode_addresses: string;
|
|
445
407
|
}
|
|
446
408
|
interface UpdateNetworkAndFullnodeAddressesEventInstance extends TypedEventInstance<UpdateNetworkAndFullnodeAddressesEvent> {
|
|
447
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
448
|
-
data_typed: UpdateNetworkAndFullnodeAddressesEvent;
|
|
449
409
|
data_decoded: UpdateNetworkAndFullnodeAddressesEvent;
|
|
450
410
|
type_arguments: [];
|
|
451
411
|
}
|
|
@@ -481,86 +441,58 @@ export declare namespace stake {
|
|
|
481
441
|
amount_withdrawn: bigint;
|
|
482
442
|
}
|
|
483
443
|
interface WithdrawStakeEventInstance extends TypedEventInstance<WithdrawStakeEvent> {
|
|
484
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
485
|
-
data_typed: WithdrawStakeEvent;
|
|
486
444
|
data_decoded: WithdrawStakeEvent;
|
|
487
445
|
type_arguments: [];
|
|
488
446
|
}
|
|
489
447
|
interface AddStakePayload extends TypedEntryFunctionPayload<[bigint]> {
|
|
490
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
491
|
-
arguments_typed: [bigint];
|
|
492
448
|
arguments_decoded: [bigint];
|
|
493
449
|
type_arguments: [];
|
|
494
450
|
}
|
|
495
451
|
interface IncreaseLockupPayload extends TypedEntryFunctionPayload<[]> {
|
|
496
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
497
|
-
arguments_typed: [];
|
|
498
452
|
arguments_decoded: [];
|
|
499
453
|
type_arguments: [];
|
|
500
454
|
}
|
|
501
455
|
interface InitializeStakeOwnerPayload extends TypedEntryFunctionPayload<[bigint, Address, Address]> {
|
|
502
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
503
|
-
arguments_typed: [bigint, Address, Address];
|
|
504
456
|
arguments_decoded: [bigint, Address, Address];
|
|
505
457
|
type_arguments: [];
|
|
506
458
|
}
|
|
507
459
|
interface InitializeValidatorPayload extends TypedEntryFunctionPayload<[string, string, string, string]> {
|
|
508
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
509
|
-
arguments_typed: [string, string, string, string];
|
|
510
460
|
arguments_decoded: [string, string, string, string];
|
|
511
461
|
type_arguments: [];
|
|
512
462
|
}
|
|
513
463
|
interface JoinValidatorSetPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
514
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
515
|
-
arguments_typed: [Address];
|
|
516
464
|
arguments_decoded: [Address];
|
|
517
465
|
type_arguments: [];
|
|
518
466
|
}
|
|
519
467
|
interface LeaveValidatorSetPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
520
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
521
|
-
arguments_typed: [Address];
|
|
522
468
|
arguments_decoded: [Address];
|
|
523
469
|
type_arguments: [];
|
|
524
470
|
}
|
|
525
471
|
interface ReactivateStakePayload extends TypedEntryFunctionPayload<[bigint]> {
|
|
526
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
527
|
-
arguments_typed: [bigint];
|
|
528
472
|
arguments_decoded: [bigint];
|
|
529
473
|
type_arguments: [];
|
|
530
474
|
}
|
|
531
475
|
interface RotateConsensusKeyPayload extends TypedEntryFunctionPayload<[Address, string, string]> {
|
|
532
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
533
|
-
arguments_typed: [Address, string, string];
|
|
534
476
|
arguments_decoded: [Address, string, string];
|
|
535
477
|
type_arguments: [];
|
|
536
478
|
}
|
|
537
479
|
interface SetDelegatedVoterPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
538
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
539
|
-
arguments_typed: [Address];
|
|
540
480
|
arguments_decoded: [Address];
|
|
541
481
|
type_arguments: [];
|
|
542
482
|
}
|
|
543
483
|
interface SetOperatorPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
544
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
545
|
-
arguments_typed: [Address];
|
|
546
484
|
arguments_decoded: [Address];
|
|
547
485
|
type_arguments: [];
|
|
548
486
|
}
|
|
549
487
|
interface UnlockPayload extends TypedEntryFunctionPayload<[bigint]> {
|
|
550
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
551
|
-
arguments_typed: [bigint];
|
|
552
488
|
arguments_decoded: [bigint];
|
|
553
489
|
type_arguments: [];
|
|
554
490
|
}
|
|
555
491
|
interface UpdateNetworkAndFullnodeAddressesPayload extends TypedEntryFunctionPayload<[Address, string, string]> {
|
|
556
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
557
|
-
arguments_typed: [Address, string, string];
|
|
558
492
|
arguments_decoded: [Address, string, string];
|
|
559
493
|
type_arguments: [];
|
|
560
494
|
}
|
|
561
495
|
interface WithdrawPayload extends TypedEntryFunctionPayload<[bigint]> {
|
|
562
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
563
|
-
arguments_typed: [bigint];
|
|
564
496
|
arguments_decoded: [bigint];
|
|
565
497
|
type_arguments: [];
|
|
566
498
|
}
|
|
@@ -628,8 +560,6 @@ export declare namespace voting {
|
|
|
628
560
|
min_vote_threshold: bigint;
|
|
629
561
|
}
|
|
630
562
|
interface CreateProposalEventInstance extends TypedEventInstance<CreateProposalEvent> {
|
|
631
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
632
|
-
data_typed: CreateProposalEvent;
|
|
633
563
|
data_decoded: CreateProposalEvent;
|
|
634
564
|
type_arguments: [];
|
|
635
565
|
}
|
|
@@ -654,8 +584,6 @@ export declare namespace voting {
|
|
|
654
584
|
proposal_type_info: type_info.TypeInfo;
|
|
655
585
|
}
|
|
656
586
|
interface RegisterForumEventInstance extends TypedEventInstance<RegisterForumEvent> {
|
|
657
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
658
|
-
data_typed: RegisterForumEvent;
|
|
659
587
|
data_decoded: RegisterForumEvent;
|
|
660
588
|
type_arguments: [];
|
|
661
589
|
}
|
|
@@ -667,8 +595,6 @@ export declare namespace voting {
|
|
|
667
595
|
resolved_early: Boolean;
|
|
668
596
|
}
|
|
669
597
|
interface ResolveProposalInstance extends TypedEventInstance<ResolveProposal> {
|
|
670
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
671
|
-
data_typed: ResolveProposal;
|
|
672
598
|
data_decoded: ResolveProposal;
|
|
673
599
|
type_arguments: [];
|
|
674
600
|
}
|
|
@@ -678,8 +604,6 @@ export declare namespace voting {
|
|
|
678
604
|
num_votes: bigint;
|
|
679
605
|
}
|
|
680
606
|
interface VoteEventInstance extends TypedEventInstance<VoteEvent> {
|
|
681
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
682
|
-
data_typed: VoteEvent;
|
|
683
607
|
data_decoded: VoteEvent;
|
|
684
608
|
type_arguments: [];
|
|
685
609
|
}
|
|
@@ -730,8 +654,6 @@ export declare namespace account {
|
|
|
730
654
|
type_info: type_info.TypeInfo;
|
|
731
655
|
}
|
|
732
656
|
interface CoinRegisterEventInstance extends TypedEventInstance<CoinRegisterEvent> {
|
|
733
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
734
|
-
data_typed: CoinRegisterEvent;
|
|
735
657
|
data_decoded: CoinRegisterEvent;
|
|
736
658
|
type_arguments: [];
|
|
737
659
|
}
|
|
@@ -741,8 +663,6 @@ export declare namespace account {
|
|
|
741
663
|
new_authentication_key: string;
|
|
742
664
|
}
|
|
743
665
|
interface KeyRotationEventInstance extends TypedEventInstance<KeyRotationEvent> {
|
|
744
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
745
|
-
data_typed: KeyRotationEvent;
|
|
746
666
|
data_decoded: KeyRotationEvent;
|
|
747
667
|
type_arguments: [];
|
|
748
668
|
}
|
|
@@ -782,14 +702,10 @@ export declare namespace account {
|
|
|
782
702
|
recipient_address: Address;
|
|
783
703
|
}
|
|
784
704
|
interface OfferSignerCapabilityPayload extends TypedEntryFunctionPayload<[string, number, string, Address]> {
|
|
785
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
786
|
-
arguments_typed: [string, number, string, Address];
|
|
787
705
|
arguments_decoded: [string, number, string, Address];
|
|
788
706
|
type_arguments: [];
|
|
789
707
|
}
|
|
790
708
|
interface RevokeSignerCapabilityPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
791
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
792
|
-
arguments_typed: [Address];
|
|
793
709
|
arguments_decoded: [Address];
|
|
794
710
|
type_arguments: [];
|
|
795
711
|
}
|
|
@@ -801,8 +717,6 @@ export declare namespace account {
|
|
|
801
717
|
string,
|
|
802
718
|
string
|
|
803
719
|
]> {
|
|
804
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
805
|
-
arguments_typed: [number, string, number, string, string, string];
|
|
806
720
|
arguments_decoded: [number, string, number, string, string, string];
|
|
807
721
|
type_arguments: [];
|
|
808
722
|
}
|
|
@@ -885,8 +799,6 @@ export declare namespace version {
|
|
|
885
799
|
major: bigint;
|
|
886
800
|
}
|
|
887
801
|
interface SetVersionPayload extends TypedEntryFunctionPayload<[bigint]> {
|
|
888
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
889
|
-
arguments_typed: [bigint];
|
|
890
802
|
arguments_decoded: [bigint];
|
|
891
803
|
type_arguments: [];
|
|
892
804
|
}
|
|
@@ -936,8 +848,6 @@ export declare namespace vesting {
|
|
|
936
848
|
amount: bigint;
|
|
937
849
|
}
|
|
938
850
|
interface AdminWithdrawEventInstance extends TypedEventInstance<AdminWithdrawEvent> {
|
|
939
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
940
|
-
data_typed: AdminWithdrawEvent;
|
|
941
851
|
data_decoded: AdminWithdrawEvent;
|
|
942
852
|
type_arguments: [];
|
|
943
853
|
}
|
|
@@ -952,8 +862,6 @@ export declare namespace vesting {
|
|
|
952
862
|
commission_percentage: bigint;
|
|
953
863
|
}
|
|
954
864
|
interface CreateVestingContractEventInstance extends TypedEventInstance<CreateVestingContractEvent> {
|
|
955
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
956
|
-
data_typed: CreateVestingContractEvent;
|
|
957
865
|
data_decoded: CreateVestingContractEvent;
|
|
958
866
|
type_arguments: [];
|
|
959
867
|
}
|
|
@@ -964,8 +872,6 @@ export declare namespace vesting {
|
|
|
964
872
|
amount: bigint;
|
|
965
873
|
}
|
|
966
874
|
interface DistributeEventInstance extends TypedEventInstance<DistributeEvent> {
|
|
967
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
968
|
-
data_typed: DistributeEvent;
|
|
969
875
|
data_decoded: DistributeEvent;
|
|
970
876
|
type_arguments: [];
|
|
971
877
|
}
|
|
@@ -977,8 +883,6 @@ export declare namespace vesting {
|
|
|
977
883
|
new_lockup_expiration_secs: bigint;
|
|
978
884
|
}
|
|
979
885
|
interface ResetLockupEventInstance extends TypedEventInstance<ResetLockupEvent> {
|
|
980
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
981
|
-
data_typed: ResetLockupEvent;
|
|
982
886
|
data_decoded: ResetLockupEvent;
|
|
983
887
|
type_arguments: [];
|
|
984
888
|
}
|
|
@@ -991,8 +895,6 @@ export declare namespace vesting {
|
|
|
991
895
|
new_beneficiary: Address;
|
|
992
896
|
}
|
|
993
897
|
interface SetBeneficiaryEventInstance extends TypedEventInstance<SetBeneficiaryEvent> {
|
|
994
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
995
|
-
data_typed: SetBeneficiaryEvent;
|
|
996
898
|
data_decoded: SetBeneficiaryEvent;
|
|
997
899
|
type_arguments: [];
|
|
998
900
|
}
|
|
@@ -1009,8 +911,6 @@ export declare namespace vesting {
|
|
|
1009
911
|
vesting_contract_address: Address;
|
|
1010
912
|
}
|
|
1011
913
|
interface TerminateEventInstance extends TypedEventInstance<TerminateEvent> {
|
|
1012
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1013
|
-
data_typed: TerminateEvent;
|
|
1014
914
|
data_decoded: TerminateEvent;
|
|
1015
915
|
type_arguments: [];
|
|
1016
916
|
}
|
|
@@ -1022,8 +922,6 @@ export declare namespace vesting {
|
|
|
1022
922
|
amount: bigint;
|
|
1023
923
|
}
|
|
1024
924
|
interface UnlockRewardsEventInstance extends TypedEventInstance<UnlockRewardsEvent> {
|
|
1025
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1026
|
-
data_typed: UnlockRewardsEvent;
|
|
1027
925
|
data_decoded: UnlockRewardsEvent;
|
|
1028
926
|
type_arguments: [];
|
|
1029
927
|
}
|
|
@@ -1037,8 +935,6 @@ export declare namespace vesting {
|
|
|
1037
935
|
commission_percentage: bigint;
|
|
1038
936
|
}
|
|
1039
937
|
interface UpdateOperatorEventInstance extends TypedEventInstance<UpdateOperatorEvent> {
|
|
1040
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1041
|
-
data_typed: UpdateOperatorEvent;
|
|
1042
938
|
data_decoded: UpdateOperatorEvent;
|
|
1043
939
|
type_arguments: [];
|
|
1044
940
|
}
|
|
@@ -1051,8 +947,6 @@ export declare namespace vesting {
|
|
|
1051
947
|
new_voter: Address;
|
|
1052
948
|
}
|
|
1053
949
|
interface UpdateVoterEventInstance extends TypedEventInstance<UpdateVoterEvent> {
|
|
1054
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1055
|
-
data_typed: UpdateVoterEvent;
|
|
1056
950
|
data_decoded: UpdateVoterEvent;
|
|
1057
951
|
type_arguments: [];
|
|
1058
952
|
}
|
|
@@ -1065,8 +959,6 @@ export declare namespace vesting {
|
|
|
1065
959
|
amount: bigint;
|
|
1066
960
|
}
|
|
1067
961
|
interface VestEventInstance extends TypedEventInstance<VestEvent> {
|
|
1068
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1069
|
-
data_typed: VestEvent;
|
|
1070
962
|
data_decoded: VestEvent;
|
|
1071
963
|
type_arguments: [];
|
|
1072
964
|
}
|
|
@@ -1103,80 +995,54 @@ export declare namespace vesting {
|
|
|
1103
995
|
last_vested_period: bigint;
|
|
1104
996
|
}
|
|
1105
997
|
interface AdminWithdrawPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
1106
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1107
|
-
arguments_typed: [Address];
|
|
1108
998
|
arguments_decoded: [Address];
|
|
1109
999
|
type_arguments: [];
|
|
1110
1000
|
}
|
|
1111
1001
|
interface DistributePayload extends TypedEntryFunctionPayload<[Address]> {
|
|
1112
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1113
|
-
arguments_typed: [Address];
|
|
1114
1002
|
arguments_decoded: [Address];
|
|
1115
1003
|
type_arguments: [];
|
|
1116
1004
|
}
|
|
1117
1005
|
interface ResetBeneficiaryPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
1118
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1119
|
-
arguments_typed: [Address, Address];
|
|
1120
1006
|
arguments_decoded: [Address, Address];
|
|
1121
1007
|
type_arguments: [];
|
|
1122
1008
|
}
|
|
1123
1009
|
interface ResetLockupPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
1124
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1125
|
-
arguments_typed: [Address];
|
|
1126
1010
|
arguments_decoded: [Address];
|
|
1127
1011
|
type_arguments: [];
|
|
1128
1012
|
}
|
|
1129
1013
|
interface SetBeneficiaryPayload extends TypedEntryFunctionPayload<[Address, Address, Address]> {
|
|
1130
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1131
|
-
arguments_typed: [Address, Address, Address];
|
|
1132
1014
|
arguments_decoded: [Address, Address, Address];
|
|
1133
1015
|
type_arguments: [];
|
|
1134
1016
|
}
|
|
1135
1017
|
interface SetBeneficiaryResetterPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
1136
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1137
|
-
arguments_typed: [Address, Address];
|
|
1138
1018
|
arguments_decoded: [Address, Address];
|
|
1139
1019
|
type_arguments: [];
|
|
1140
1020
|
}
|
|
1141
1021
|
interface SetManagementRolePayload extends TypedEntryFunctionPayload<[Address, string, Address]> {
|
|
1142
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1143
|
-
arguments_typed: [Address, string, Address];
|
|
1144
1022
|
arguments_decoded: [Address, string, Address];
|
|
1145
1023
|
type_arguments: [];
|
|
1146
1024
|
}
|
|
1147
1025
|
interface TerminateVestingContractPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
1148
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1149
|
-
arguments_typed: [Address];
|
|
1150
1026
|
arguments_decoded: [Address];
|
|
1151
1027
|
type_arguments: [];
|
|
1152
1028
|
}
|
|
1153
1029
|
interface UnlockRewardsPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
1154
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1155
|
-
arguments_typed: [Address];
|
|
1156
1030
|
arguments_decoded: [Address];
|
|
1157
1031
|
type_arguments: [];
|
|
1158
1032
|
}
|
|
1159
1033
|
interface UpdateOperatorPayload extends TypedEntryFunctionPayload<[Address, Address, bigint]> {
|
|
1160
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1161
|
-
arguments_typed: [Address, Address, bigint];
|
|
1162
1034
|
arguments_decoded: [Address, Address, bigint];
|
|
1163
1035
|
type_arguments: [];
|
|
1164
1036
|
}
|
|
1165
1037
|
interface UpdateOperatorWithSameCommissionPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
1166
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1167
|
-
arguments_typed: [Address, Address];
|
|
1168
1038
|
arguments_decoded: [Address, Address];
|
|
1169
1039
|
type_arguments: [];
|
|
1170
1040
|
}
|
|
1171
1041
|
interface UpdateVoterPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
1172
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1173
|
-
arguments_typed: [Address, Address];
|
|
1174
1042
|
arguments_decoded: [Address, Address];
|
|
1175
1043
|
type_arguments: [];
|
|
1176
1044
|
}
|
|
1177
1045
|
interface VestPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
1178
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1179
|
-
arguments_typed: [Address];
|
|
1180
1046
|
arguments_decoded: [Address];
|
|
1181
1047
|
type_arguments: [];
|
|
1182
1048
|
}
|
|
@@ -1311,20 +1177,14 @@ export declare namespace aptos_coin {
|
|
|
1311
1177
|
mint_cap: coin.MintCapability<aptos_coin.AptosCoin>;
|
|
1312
1178
|
}
|
|
1313
1179
|
interface ClaimMintCapabilityPayload extends TypedEntryFunctionPayload<[]> {
|
|
1314
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1315
|
-
arguments_typed: [];
|
|
1316
1180
|
arguments_decoded: [];
|
|
1317
1181
|
type_arguments: [];
|
|
1318
1182
|
}
|
|
1319
1183
|
interface DelegateMintCapabilityPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
1320
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1321
|
-
arguments_typed: [Address, Address];
|
|
1322
1184
|
arguments_decoded: [Address, Address];
|
|
1323
1185
|
type_arguments: [];
|
|
1324
1186
|
}
|
|
1325
1187
|
interface MintPayload extends TypedEntryFunctionPayload<[Address, bigint]> {
|
|
1326
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1327
|
-
arguments_typed: [Address, bigint];
|
|
1328
1188
|
arguments_decoded: [Address, bigint];
|
|
1329
1189
|
type_arguments: [];
|
|
1330
1190
|
}
|
|
@@ -1474,26 +1334,18 @@ export declare namespace managed_coin {
|
|
|
1474
1334
|
mint_cap: coin.MintCapability<T0>;
|
|
1475
1335
|
}
|
|
1476
1336
|
interface BurnPayload<T0 = any> extends TypedEntryFunctionPayload<[bigint]> {
|
|
1477
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1478
|
-
arguments_typed: [bigint];
|
|
1479
1337
|
arguments_decoded: [bigint];
|
|
1480
1338
|
type_arguments: [string];
|
|
1481
1339
|
}
|
|
1482
1340
|
interface InitializePayload<T0 = any> extends TypedEntryFunctionPayload<[string, string, number, Boolean]> {
|
|
1483
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1484
|
-
arguments_typed: [string, string, number, Boolean];
|
|
1485
1341
|
arguments_decoded: [string, string, number, Boolean];
|
|
1486
1342
|
type_arguments: [string];
|
|
1487
1343
|
}
|
|
1488
1344
|
interface MintPayload<T0 = any> extends TypedEntryFunctionPayload<[Address, bigint]> {
|
|
1489
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1490
|
-
arguments_typed: [Address, bigint];
|
|
1491
1345
|
arguments_decoded: [Address, bigint];
|
|
1492
1346
|
type_arguments: [string];
|
|
1493
1347
|
}
|
|
1494
1348
|
interface RegisterPayload<T0 = any> extends TypedEntryFunctionPayload<[]> {
|
|
1495
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1496
|
-
arguments_typed: [];
|
|
1497
1349
|
arguments_decoded: [];
|
|
1498
1350
|
type_arguments: [string];
|
|
1499
1351
|
}
|
|
@@ -1526,14 +1378,10 @@ export declare class aptos_account extends AptosBaseProcessor {
|
|
|
1526
1378
|
}
|
|
1527
1379
|
export declare namespace aptos_account {
|
|
1528
1380
|
interface CreateAccountPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
1529
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1530
|
-
arguments_typed: [Address];
|
|
1531
1381
|
arguments_decoded: [Address];
|
|
1532
1382
|
type_arguments: [];
|
|
1533
1383
|
}
|
|
1534
1384
|
interface TransferPayload extends TypedEntryFunctionPayload<[Address, bigint]> {
|
|
1535
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1536
|
-
arguments_typed: [Address, bigint];
|
|
1537
1385
|
arguments_decoded: [Address, bigint];
|
|
1538
1386
|
type_arguments: [];
|
|
1539
1387
|
}
|
|
@@ -1580,50 +1428,34 @@ export declare class staking_proxy extends AptosBaseProcessor {
|
|
|
1580
1428
|
}
|
|
1581
1429
|
export declare namespace staking_proxy {
|
|
1582
1430
|
interface SetOperatorPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
1583
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1584
|
-
arguments_typed: [Address, Address];
|
|
1585
1431
|
arguments_decoded: [Address, Address];
|
|
1586
1432
|
type_arguments: [];
|
|
1587
1433
|
}
|
|
1588
1434
|
interface SetStakePoolOperatorPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
1589
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1590
|
-
arguments_typed: [Address];
|
|
1591
1435
|
arguments_decoded: [Address];
|
|
1592
1436
|
type_arguments: [];
|
|
1593
1437
|
}
|
|
1594
1438
|
interface SetStakePoolVoterPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
1595
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1596
|
-
arguments_typed: [Address];
|
|
1597
1439
|
arguments_decoded: [Address];
|
|
1598
1440
|
type_arguments: [];
|
|
1599
1441
|
}
|
|
1600
1442
|
interface SetStakingContractOperatorPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
1601
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1602
|
-
arguments_typed: [Address, Address];
|
|
1603
1443
|
arguments_decoded: [Address, Address];
|
|
1604
1444
|
type_arguments: [];
|
|
1605
1445
|
}
|
|
1606
1446
|
interface SetStakingContractVoterPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
1607
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1608
|
-
arguments_typed: [Address, Address];
|
|
1609
1447
|
arguments_decoded: [Address, Address];
|
|
1610
1448
|
type_arguments: [];
|
|
1611
1449
|
}
|
|
1612
1450
|
interface SetVestingContractOperatorPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
1613
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1614
|
-
arguments_typed: [Address, Address];
|
|
1615
1451
|
arguments_decoded: [Address, Address];
|
|
1616
1452
|
type_arguments: [];
|
|
1617
1453
|
}
|
|
1618
1454
|
interface SetVestingContractVoterPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
1619
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1620
|
-
arguments_typed: [Address, Address];
|
|
1621
1455
|
arguments_decoded: [Address, Address];
|
|
1622
1456
|
type_arguments: [];
|
|
1623
1457
|
}
|
|
1624
1458
|
interface SetVoterPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
1625
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1626
|
-
arguments_typed: [Address, Address];
|
|
1627
1459
|
arguments_decoded: [Address, Address];
|
|
1628
1460
|
type_arguments: [];
|
|
1629
1461
|
}
|
|
@@ -1685,8 +1517,6 @@ export declare namespace reconfiguration {
|
|
|
1685
1517
|
epoch: bigint;
|
|
1686
1518
|
}
|
|
1687
1519
|
interface NewEpochEventInstance extends TypedEventInstance<NewEpochEvent> {
|
|
1688
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1689
|
-
data_typed: NewEpochEvent;
|
|
1690
1520
|
data_decoded: NewEpochEvent;
|
|
1691
1521
|
type_arguments: [];
|
|
1692
1522
|
}
|
|
@@ -1727,8 +1557,6 @@ export declare namespace aptos_governance {
|
|
|
1727
1557
|
proposal_metadata: simple_map.SimpleMap<string, string>;
|
|
1728
1558
|
}
|
|
1729
1559
|
interface CreateProposalEventInstance extends TypedEventInstance<CreateProposalEvent> {
|
|
1730
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1731
|
-
data_typed: CreateProposalEvent;
|
|
1732
1560
|
data_decoded: CreateProposalEvent;
|
|
1733
1561
|
type_arguments: [];
|
|
1734
1562
|
}
|
|
@@ -1760,8 +1588,6 @@ export declare namespace aptos_governance {
|
|
|
1760
1588
|
voting_duration_secs: bigint;
|
|
1761
1589
|
}
|
|
1762
1590
|
interface UpdateConfigEventInstance extends TypedEventInstance<UpdateConfigEvent> {
|
|
1763
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1764
|
-
data_typed: UpdateConfigEvent;
|
|
1765
1591
|
data_decoded: UpdateConfigEvent;
|
|
1766
1592
|
type_arguments: [];
|
|
1767
1593
|
}
|
|
@@ -1774,8 +1600,6 @@ export declare namespace aptos_governance {
|
|
|
1774
1600
|
should_pass: Boolean;
|
|
1775
1601
|
}
|
|
1776
1602
|
interface VoteEventInstance extends TypedEventInstance<VoteEvent> {
|
|
1777
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1778
|
-
data_typed: VoteEvent;
|
|
1779
1603
|
data_decoded: VoteEvent;
|
|
1780
1604
|
type_arguments: [];
|
|
1781
1605
|
}
|
|
@@ -1784,20 +1608,14 @@ export declare namespace aptos_governance {
|
|
|
1784
1608
|
votes: table.Table<aptos_governance.RecordKey, Boolean>;
|
|
1785
1609
|
}
|
|
1786
1610
|
interface AddApprovedScriptHashScriptPayload extends TypedEntryFunctionPayload<[bigint]> {
|
|
1787
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1788
|
-
arguments_typed: [bigint];
|
|
1789
1611
|
arguments_decoded: [bigint];
|
|
1790
1612
|
type_arguments: [];
|
|
1791
1613
|
}
|
|
1792
1614
|
interface CreateProposalPayload extends TypedEntryFunctionPayload<[Address, string, string, string]> {
|
|
1793
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1794
|
-
arguments_typed: [Address, string, string, string];
|
|
1795
1615
|
arguments_decoded: [Address, string, string, string];
|
|
1796
1616
|
type_arguments: [];
|
|
1797
1617
|
}
|
|
1798
1618
|
interface VotePayload extends TypedEntryFunctionPayload<[Address, bigint, Boolean]> {
|
|
1799
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1800
|
-
arguments_typed: [Address, bigint, Boolean];
|
|
1801
1619
|
arguments_decoded: [Address, bigint, Boolean];
|
|
1802
1620
|
type_arguments: [];
|
|
1803
1621
|
}
|
|
@@ -1827,20 +1645,14 @@ export declare namespace resource_account {
|
|
|
1827
1645
|
store: simple_map.SimpleMap<Address, account.SignerCapability>;
|
|
1828
1646
|
}
|
|
1829
1647
|
interface CreateResourceAccountPayload extends TypedEntryFunctionPayload<[string, string]> {
|
|
1830
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1831
|
-
arguments_typed: [string, string];
|
|
1832
1648
|
arguments_decoded: [string, string];
|
|
1833
1649
|
type_arguments: [];
|
|
1834
1650
|
}
|
|
1835
1651
|
interface CreateResourceAccountAndFundPayload extends TypedEntryFunctionPayload<[string, string, bigint]> {
|
|
1836
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1837
|
-
arguments_typed: [string, string, bigint];
|
|
1838
1652
|
arguments_decoded: [string, string, bigint];
|
|
1839
1653
|
type_arguments: [];
|
|
1840
1654
|
}
|
|
1841
1655
|
interface CreateResourceAccountAndPublishPackagePayload extends TypedEntryFunctionPayload<[string, string, string[]]> {
|
|
1842
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1843
|
-
arguments_typed: [string, string, string[]];
|
|
1844
1656
|
arguments_decoded: [string, string, string[]];
|
|
1845
1657
|
type_arguments: [];
|
|
1846
1658
|
}
|
|
@@ -1880,8 +1692,6 @@ export declare namespace staking_contract {
|
|
|
1880
1692
|
amount: bigint;
|
|
1881
1693
|
}
|
|
1882
1694
|
interface AddDistributionEventInstance extends TypedEventInstance<AddDistributionEvent> {
|
|
1883
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1884
|
-
data_typed: AddDistributionEvent;
|
|
1885
1695
|
data_decoded: AddDistributionEvent;
|
|
1886
1696
|
type_arguments: [];
|
|
1887
1697
|
}
|
|
@@ -1892,8 +1702,6 @@ export declare namespace staking_contract {
|
|
|
1892
1702
|
amount: bigint;
|
|
1893
1703
|
}
|
|
1894
1704
|
interface AddStakeEventInstance extends TypedEventInstance<AddStakeEvent> {
|
|
1895
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1896
|
-
data_typed: AddStakeEvent;
|
|
1897
1705
|
data_decoded: AddStakeEvent;
|
|
1898
1706
|
type_arguments: [];
|
|
1899
1707
|
}
|
|
@@ -1906,8 +1714,6 @@ export declare namespace staking_contract {
|
|
|
1906
1714
|
commission_percentage: bigint;
|
|
1907
1715
|
}
|
|
1908
1716
|
interface CreateStakingContractEventInstance extends TypedEventInstance<CreateStakingContractEvent> {
|
|
1909
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1910
|
-
data_typed: CreateStakingContractEvent;
|
|
1911
1717
|
data_decoded: CreateStakingContractEvent;
|
|
1912
1718
|
type_arguments: [];
|
|
1913
1719
|
}
|
|
@@ -1919,8 +1725,6 @@ export declare namespace staking_contract {
|
|
|
1919
1725
|
amount: bigint;
|
|
1920
1726
|
}
|
|
1921
1727
|
interface DistributeEventInstance extends TypedEventInstance<DistributeEvent> {
|
|
1922
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1923
|
-
data_typed: DistributeEvent;
|
|
1924
1728
|
data_decoded: DistributeEvent;
|
|
1925
1729
|
type_arguments: [];
|
|
1926
1730
|
}
|
|
@@ -1932,8 +1736,6 @@ export declare namespace staking_contract {
|
|
|
1932
1736
|
commission_amount: bigint;
|
|
1933
1737
|
}
|
|
1934
1738
|
interface RequestCommissionEventInstance extends TypedEventInstance<RequestCommissionEvent> {
|
|
1935
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1936
|
-
data_typed: RequestCommissionEvent;
|
|
1937
1739
|
data_decoded: RequestCommissionEvent;
|
|
1938
1740
|
type_arguments: [];
|
|
1939
1741
|
}
|
|
@@ -1943,8 +1745,6 @@ export declare namespace staking_contract {
|
|
|
1943
1745
|
pool_address: Address;
|
|
1944
1746
|
}
|
|
1945
1747
|
interface ResetLockupEventInstance extends TypedEventInstance<ResetLockupEvent> {
|
|
1946
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1947
|
-
data_typed: ResetLockupEvent;
|
|
1948
1748
|
data_decoded: ResetLockupEvent;
|
|
1949
1749
|
type_arguments: [];
|
|
1950
1750
|
}
|
|
@@ -1977,8 +1777,6 @@ export declare namespace staking_contract {
|
|
|
1977
1777
|
pool_address: Address;
|
|
1978
1778
|
}
|
|
1979
1779
|
interface SwitchOperatorEventInstance extends TypedEventInstance<SwitchOperatorEvent> {
|
|
1980
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1981
|
-
data_typed: SwitchOperatorEvent;
|
|
1982
1780
|
data_decoded: SwitchOperatorEvent;
|
|
1983
1781
|
type_arguments: [];
|
|
1984
1782
|
}
|
|
@@ -1990,8 +1788,6 @@ export declare namespace staking_contract {
|
|
|
1990
1788
|
commission_paid: bigint;
|
|
1991
1789
|
}
|
|
1992
1790
|
interface UnlockStakeEventInstance extends TypedEventInstance<UnlockStakeEvent> {
|
|
1993
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1994
|
-
data_typed: UnlockStakeEvent;
|
|
1995
1791
|
data_decoded: UnlockStakeEvent;
|
|
1996
1792
|
type_arguments: [];
|
|
1997
1793
|
}
|
|
@@ -2003,14 +1799,10 @@ export declare namespace staking_contract {
|
|
|
2003
1799
|
new_voter: Address;
|
|
2004
1800
|
}
|
|
2005
1801
|
interface UpdateVoterEventInstance extends TypedEventInstance<UpdateVoterEvent> {
|
|
2006
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
2007
|
-
data_typed: UpdateVoterEvent;
|
|
2008
1802
|
data_decoded: UpdateVoterEvent;
|
|
2009
1803
|
type_arguments: [];
|
|
2010
1804
|
}
|
|
2011
1805
|
interface AddStakePayload extends TypedEntryFunctionPayload<[Address, bigint]> {
|
|
2012
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2013
|
-
arguments_typed: [Address, bigint];
|
|
2014
1806
|
arguments_decoded: [Address, bigint];
|
|
2015
1807
|
type_arguments: [];
|
|
2016
1808
|
}
|
|
@@ -2021,56 +1813,38 @@ export declare namespace staking_contract {
|
|
|
2021
1813
|
bigint,
|
|
2022
1814
|
string
|
|
2023
1815
|
]> {
|
|
2024
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2025
|
-
arguments_typed: [Address, Address, bigint, bigint, string];
|
|
2026
1816
|
arguments_decoded: [Address, Address, bigint, bigint, string];
|
|
2027
1817
|
type_arguments: [];
|
|
2028
1818
|
}
|
|
2029
1819
|
interface DistributePayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
2030
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2031
|
-
arguments_typed: [Address, Address];
|
|
2032
1820
|
arguments_decoded: [Address, Address];
|
|
2033
1821
|
type_arguments: [];
|
|
2034
1822
|
}
|
|
2035
1823
|
interface RequestCommissionPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
2036
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2037
|
-
arguments_typed: [Address, Address];
|
|
2038
1824
|
arguments_decoded: [Address, Address];
|
|
2039
1825
|
type_arguments: [];
|
|
2040
1826
|
}
|
|
2041
1827
|
interface ResetLockupPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
2042
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2043
|
-
arguments_typed: [Address];
|
|
2044
1828
|
arguments_decoded: [Address];
|
|
2045
1829
|
type_arguments: [];
|
|
2046
1830
|
}
|
|
2047
1831
|
interface SwitchOperatorPayload extends TypedEntryFunctionPayload<[Address, Address, bigint]> {
|
|
2048
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2049
|
-
arguments_typed: [Address, Address, bigint];
|
|
2050
1832
|
arguments_decoded: [Address, Address, bigint];
|
|
2051
1833
|
type_arguments: [];
|
|
2052
1834
|
}
|
|
2053
1835
|
interface SwitchOperatorWithSameCommissionPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
2054
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2055
|
-
arguments_typed: [Address, Address];
|
|
2056
1836
|
arguments_decoded: [Address, Address];
|
|
2057
1837
|
type_arguments: [];
|
|
2058
1838
|
}
|
|
2059
1839
|
interface UnlockRewardsPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
2060
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2061
|
-
arguments_typed: [Address];
|
|
2062
1840
|
arguments_decoded: [Address];
|
|
2063
1841
|
type_arguments: [];
|
|
2064
1842
|
}
|
|
2065
1843
|
interface UnlockStakePayload extends TypedEntryFunctionPayload<[Address, bigint]> {
|
|
2066
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2067
|
-
arguments_typed: [Address, bigint];
|
|
2068
1844
|
arguments_decoded: [Address, bigint];
|
|
2069
1845
|
type_arguments: [];
|
|
2070
1846
|
}
|
|
2071
1847
|
interface UpdateVoterPayload extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
2072
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2073
|
-
arguments_typed: [Address, Address];
|
|
2074
1848
|
arguments_decoded: [Address, Address];
|
|
2075
1849
|
type_arguments: [];
|
|
2076
1850
|
}
|