@sentio/sdk 2.56.0 → 2.57.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/builtin/0x1.d.ts +308 -308
- package/lib/aptos/builtin/0x1.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.d.ts +102 -102
- package/lib/aptos/builtin/0x3.d.ts.map +1 -1
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/builtin/0x4.d.ts +22 -22
- package/lib/aptos/builtin/0x4.d.ts.map +1 -1
- package/lib/aptos/builtin/0x4.js.map +1 -1
- package/lib/fuel/asset-processor.d.ts +2 -2
- package/lib/fuel/asset-processor.d.ts.map +1 -1
- package/lib/fuel/asset-processor.js.map +1 -1
- package/lib/fuel/fuel-plugin.d.ts +2 -2
- package/lib/fuel/fuel-plugin.d.ts.map +1 -1
- package/lib/fuel/fuel-plugin.js +19 -18
- package/lib/fuel/fuel-plugin.js.map +1 -1
- package/lib/fuel/fuel-processor.d.ts +5 -4
- package/lib/fuel/fuel-processor.d.ts.map +1 -1
- package/lib/fuel/fuel-processor.js +38 -4
- package/lib/fuel/fuel-processor.js.map +1 -1
- package/lib/fuel/types.d.ts +10 -7
- package/lib/fuel/types.d.ts.map +1 -1
- package/lib/fuel/types.js.map +1 -1
- package/lib/sui/builtin/0x1.d.ts +12 -12
- package/lib/sui/builtin/0x1.d.ts.map +1 -1
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +66 -66
- package/lib/sui/builtin/0x2.d.ts.map +1 -1
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +26 -26
- package/lib/sui/builtin/0x3.d.ts.map +1 -1
- package/lib/testing/fuel-facet.js +3 -3
- package/lib/testing/fuel-facet.js.map +1 -1
- package/package.json +8 -8
- package/src/aptos/builtin/0x1.ts +539 -579
- package/src/aptos/builtin/0x3.ts +177 -191
- package/src/aptos/builtin/0x4.ts +28 -31
- package/src/fuel/asset-processor.ts +5 -2
- package/src/fuel/fuel-plugin.ts +22 -19
- package/src/fuel/fuel-processor.ts +54 -7
- package/src/fuel/types.ts +11 -6
- package/src/sui/builtin/0x1.ts +12 -13
- package/src/sui/builtin/0x2.ts +87 -86
- package/src/sui/builtin/0x3.ts +65 -65
- package/src/testing/fuel-facet.ts +3 -3
package/src/sui/builtin/0x2.ts
CHANGED
@@ -365,10 +365,10 @@ export namespace authenticator_state {
|
|
365
365
|
}
|
366
366
|
}
|
367
367
|
|
368
|
-
export
|
368
|
+
export type ActiveJwkInstance = TypedEventInstance<ActiveJwk> & {
|
369
369
|
data_decoded: ActiveJwk;
|
370
370
|
type_arguments: [];
|
371
|
-
}
|
371
|
+
};
|
372
372
|
|
373
373
|
export interface AuthenticatorState {
|
374
374
|
id: object$.UID;
|
@@ -422,10 +422,10 @@ export namespace authenticator_state {
|
|
422
422
|
}
|
423
423
|
}
|
424
424
|
|
425
|
-
export
|
425
|
+
export type JWKInstance = TypedEventInstance<JWK> & {
|
426
426
|
data_decoded: JWK;
|
427
427
|
type_arguments: [];
|
428
|
-
}
|
428
|
+
};
|
429
429
|
|
430
430
|
export interface JwkId {
|
431
431
|
iss: string;
|
@@ -442,10 +442,10 @@ export namespace authenticator_state {
|
|
442
442
|
}
|
443
443
|
}
|
444
444
|
|
445
|
-
export
|
445
|
+
export type JwkIdInstance = TypedEventInstance<JwkId> & {
|
446
446
|
data_decoded: JwkId;
|
447
447
|
type_arguments: [];
|
448
|
-
}
|
448
|
+
};
|
449
449
|
|
450
450
|
export namespace builder {}
|
451
451
|
export namespace view {}
|
@@ -1306,10 +1306,10 @@ export namespace bcs {
|
|
1306
1306
|
}
|
1307
1307
|
}
|
1308
1308
|
|
1309
|
-
export
|
1309
|
+
export type BCSInstance = TypedEventInstance<BCS> & {
|
1310
1310
|
data_decoded: BCS;
|
1311
1311
|
type_arguments: [];
|
1312
|
-
}
|
1312
|
+
};
|
1313
1313
|
|
1314
1314
|
export namespace builder {
|
1315
1315
|
export function intoRemainderBytes(
|
@@ -3926,11 +3926,12 @@ export namespace coin {
|
|
3926
3926
|
}
|
3927
3927
|
}
|
3928
3928
|
|
3929
|
-
export
|
3930
|
-
|
3929
|
+
export type CurrencyCreatedInstance = TypedEventInstance<
|
3930
|
+
CurrencyCreated<any>
|
3931
|
+
> & {
|
3931
3932
|
data_decoded: CurrencyCreated<any>;
|
3932
3933
|
type_arguments: [string];
|
3933
|
-
}
|
3934
|
+
};
|
3934
3935
|
|
3935
3936
|
export interface DenyCap<T0> {
|
3936
3937
|
id: object$.UID;
|
@@ -6456,10 +6457,10 @@ export namespace deny_list {
|
|
6456
6457
|
}
|
6457
6458
|
}
|
6458
6459
|
|
6459
|
-
export
|
6460
|
+
export type AddressKeyInstance = TypedEventInstance<AddressKey> & {
|
6460
6461
|
data_decoded: AddressKey;
|
6461
6462
|
type_arguments: [];
|
6462
|
-
}
|
6463
|
+
};
|
6463
6464
|
|
6464
6465
|
export interface ConfigKey {
|
6465
6466
|
per_type_index: bigint;
|
@@ -6476,10 +6477,10 @@ export namespace deny_list {
|
|
6476
6477
|
}
|
6477
6478
|
}
|
6478
6479
|
|
6479
|
-
export
|
6480
|
+
export type ConfigKeyInstance = TypedEventInstance<ConfigKey> & {
|
6480
6481
|
data_decoded: ConfigKey;
|
6481
6482
|
type_arguments: [];
|
6482
|
-
}
|
6483
|
+
};
|
6483
6484
|
|
6484
6485
|
export interface ConfigWriteCap {
|
6485
6486
|
dummy_field: boolean;
|
@@ -6524,11 +6525,10 @@ export namespace deny_list {
|
|
6524
6525
|
}
|
6525
6526
|
}
|
6526
6527
|
|
6527
|
-
export
|
6528
|
-
extends TypedEventInstance<GlobalPauseKey> {
|
6528
|
+
export type GlobalPauseKeyInstance = TypedEventInstance<GlobalPauseKey> & {
|
6529
6529
|
data_decoded: GlobalPauseKey;
|
6530
6530
|
type_arguments: [];
|
6531
|
-
}
|
6531
|
+
};
|
6532
6532
|
|
6533
6533
|
export interface PerTypeConfigCreated {
|
6534
6534
|
key: deny_list.ConfigKey;
|
@@ -6547,11 +6547,11 @@ export namespace deny_list {
|
|
6547
6547
|
}
|
6548
6548
|
}
|
6549
6549
|
|
6550
|
-
export
|
6551
|
-
|
6552
|
-
|
6553
|
-
|
6554
|
-
|
6550
|
+
export type PerTypeConfigCreatedInstance =
|
6551
|
+
TypedEventInstance<PerTypeConfigCreated> & {
|
6552
|
+
data_decoded: PerTypeConfigCreated;
|
6553
|
+
type_arguments: [];
|
6554
|
+
};
|
6555
6555
|
|
6556
6556
|
export interface PerTypeList {
|
6557
6557
|
id: object$.UID;
|
@@ -7207,11 +7207,12 @@ export namespace display {
|
|
7207
7207
|
}
|
7208
7208
|
}
|
7209
7209
|
|
7210
|
-
export
|
7211
|
-
|
7210
|
+
export type DisplayCreatedInstance = TypedEventInstance<
|
7211
|
+
DisplayCreated<any>
|
7212
|
+
> & {
|
7212
7213
|
data_decoded: DisplayCreated<any>;
|
7213
7214
|
type_arguments: [string];
|
7214
|
-
}
|
7215
|
+
};
|
7215
7216
|
|
7216
7217
|
export interface VersionUpdated<T0> {
|
7217
7218
|
id: object$.ID;
|
@@ -7233,11 +7234,12 @@ export namespace display {
|
|
7233
7234
|
}
|
7234
7235
|
}
|
7235
7236
|
|
7236
|
-
export
|
7237
|
-
|
7237
|
+
export type VersionUpdatedInstance = TypedEventInstance<
|
7238
|
+
VersionUpdated<any>
|
7239
|
+
> & {
|
7238
7240
|
data_decoded: VersionUpdated<any>;
|
7239
7241
|
type_arguments: [string];
|
7240
|
-
}
|
7242
|
+
};
|
7241
7243
|
|
7242
7244
|
export namespace builder {
|
7243
7245
|
export function add<T0 = any>(
|
@@ -8396,10 +8398,10 @@ export namespace dynamic_object_field {
|
|
8396
8398
|
}
|
8397
8399
|
}
|
8398
8400
|
|
8399
|
-
export
|
8401
|
+
export type WrapperInstance = TypedEventInstance<Wrapper<any>> & {
|
8400
8402
|
data_decoded: Wrapper<any>;
|
8401
8403
|
type_arguments: [string];
|
8402
|
-
}
|
8404
|
+
};
|
8403
8405
|
|
8404
8406
|
export namespace builder {
|
8405
8407
|
export function add<T0 = any, T1 = any>(
|
@@ -9308,10 +9310,10 @@ export namespace groth16 {
|
|
9308
9310
|
}
|
9309
9311
|
}
|
9310
9312
|
|
9311
|
-
export
|
9313
|
+
export type CurveInstance = TypedEventInstance<Curve> & {
|
9312
9314
|
data_decoded: Curve;
|
9313
9315
|
type_arguments: [];
|
9314
|
-
}
|
9316
|
+
};
|
9315
9317
|
|
9316
9318
|
export interface PreparedVerifyingKey {
|
9317
9319
|
vk_gamma_abc_g1_bytes: number[];
|
@@ -9332,11 +9334,11 @@ export namespace groth16 {
|
|
9332
9334
|
}
|
9333
9335
|
}
|
9334
9336
|
|
9335
|
-
export
|
9336
|
-
|
9337
|
-
|
9338
|
-
|
9339
|
-
|
9337
|
+
export type PreparedVerifyingKeyInstance =
|
9338
|
+
TypedEventInstance<PreparedVerifyingKey> & {
|
9339
|
+
data_decoded: PreparedVerifyingKey;
|
9340
|
+
type_arguments: [];
|
9341
|
+
};
|
9340
9342
|
|
9341
9343
|
export interface ProofPoints {
|
9342
9344
|
bytes: number[];
|
@@ -9352,10 +9354,10 @@ export namespace groth16 {
|
|
9352
9354
|
}
|
9353
9355
|
}
|
9354
9356
|
|
9355
|
-
export
|
9357
|
+
export type ProofPointsInstance = TypedEventInstance<ProofPoints> & {
|
9356
9358
|
data_decoded: ProofPoints;
|
9357
9359
|
type_arguments: [];
|
9358
|
-
}
|
9360
|
+
};
|
9359
9361
|
|
9360
9362
|
export interface PublicProofInputs {
|
9361
9363
|
bytes: number[];
|
@@ -9373,11 +9375,11 @@ export namespace groth16 {
|
|
9373
9375
|
}
|
9374
9376
|
}
|
9375
9377
|
|
9376
|
-
export
|
9377
|
-
|
9378
|
-
|
9379
|
-
|
9380
|
-
|
9378
|
+
export type PublicProofInputsInstance =
|
9379
|
+
TypedEventInstance<PublicProofInputs> & {
|
9380
|
+
data_decoded: PublicProofInputs;
|
9381
|
+
type_arguments: [];
|
9382
|
+
};
|
9381
9383
|
|
9382
9384
|
export namespace builder {
|
9383
9385
|
export function bls12381(
|
@@ -9675,10 +9677,10 @@ export namespace group_ops {
|
|
9675
9677
|
}
|
9676
9678
|
}
|
9677
9679
|
|
9678
|
-
export
|
9680
|
+
export type ElementInstance = TypedEventInstance<Element<any>> & {
|
9679
9681
|
data_decoded: Element<any>;
|
9680
9682
|
type_arguments: [string];
|
9681
|
-
}
|
9683
|
+
};
|
9682
9684
|
|
9683
9685
|
export namespace builder {
|
9684
9686
|
export function add<T0 = any>(
|
@@ -10508,10 +10510,10 @@ export namespace kiosk {
|
|
10508
10510
|
}
|
10509
10511
|
}
|
10510
10512
|
|
10511
|
-
export
|
10513
|
+
export type ItemInstance = TypedEventInstance<Item> & {
|
10512
10514
|
data_decoded: Item;
|
10513
10515
|
type_arguments: [];
|
10514
|
-
}
|
10516
|
+
};
|
10515
10517
|
|
10516
10518
|
export interface ItemDelisted<T0> {
|
10517
10519
|
kiosk: object$.ID;
|
@@ -10530,11 +10532,10 @@ export namespace kiosk {
|
|
10530
10532
|
}
|
10531
10533
|
}
|
10532
10534
|
|
10533
|
-
export
|
10534
|
-
extends TypedEventInstance<ItemDelisted<any>> {
|
10535
|
+
export type ItemDelistedInstance = TypedEventInstance<ItemDelisted<any>> & {
|
10535
10536
|
data_decoded: ItemDelisted<any>;
|
10536
10537
|
type_arguments: [string];
|
10537
|
-
}
|
10538
|
+
};
|
10538
10539
|
|
10539
10540
|
export interface ItemListed<T0> {
|
10540
10541
|
kiosk: object$.ID;
|
@@ -10554,11 +10555,10 @@ export namespace kiosk {
|
|
10554
10555
|
}
|
10555
10556
|
}
|
10556
10557
|
|
10557
|
-
export
|
10558
|
-
extends TypedEventInstance<ItemListed<any>> {
|
10558
|
+
export type ItemListedInstance = TypedEventInstance<ItemListed<any>> & {
|
10559
10559
|
data_decoded: ItemListed<any>;
|
10560
10560
|
type_arguments: [string];
|
10561
|
-
}
|
10561
|
+
};
|
10562
10562
|
|
10563
10563
|
export interface ItemPurchased<T0> {
|
10564
10564
|
kiosk: object$.ID;
|
@@ -10580,11 +10580,10 @@ export namespace kiosk {
|
|
10580
10580
|
}
|
10581
10581
|
}
|
10582
10582
|
|
10583
|
-
export
|
10584
|
-
extends TypedEventInstance<ItemPurchased<any>> {
|
10583
|
+
export type ItemPurchasedInstance = TypedEventInstance<ItemPurchased<any>> & {
|
10585
10584
|
data_decoded: ItemPurchased<any>;
|
10586
10585
|
type_arguments: [string];
|
10587
|
-
}
|
10586
|
+
};
|
10588
10587
|
|
10589
10588
|
export interface Kiosk {
|
10590
10589
|
id: object$.UID;
|
@@ -10634,10 +10633,10 @@ export namespace kiosk {
|
|
10634
10633
|
}
|
10635
10634
|
}
|
10636
10635
|
|
10637
|
-
export
|
10636
|
+
export type ListingInstance = TypedEventInstance<Listing> & {
|
10638
10637
|
data_decoded: Listing;
|
10639
10638
|
type_arguments: [];
|
10640
|
-
}
|
10639
|
+
};
|
10641
10640
|
|
10642
10641
|
export interface Lock {
|
10643
10642
|
id: object$.ID;
|
@@ -10653,10 +10652,10 @@ export namespace kiosk {
|
|
10653
10652
|
}
|
10654
10653
|
}
|
10655
10654
|
|
10656
|
-
export
|
10655
|
+
export type LockInstance = TypedEventInstance<Lock> & {
|
10657
10656
|
data_decoded: Lock;
|
10658
10657
|
type_arguments: [];
|
10659
|
-
}
|
10658
|
+
};
|
10660
10659
|
|
10661
10660
|
export interface PurchaseCap<T0> {
|
10662
10661
|
id: object$.UID;
|
@@ -12218,11 +12217,10 @@ export namespace kiosk_extension {
|
|
12218
12217
|
}
|
12219
12218
|
}
|
12220
12219
|
|
12221
|
-
export
|
12222
|
-
extends TypedEventInstance<ExtensionKey<any>> {
|
12220
|
+
export type ExtensionKeyInstance = TypedEventInstance<ExtensionKey<any>> & {
|
12223
12221
|
data_decoded: ExtensionKey<any>;
|
12224
12222
|
type_arguments: [string];
|
12225
|
-
}
|
12223
|
+
};
|
12226
12224
|
|
12227
12225
|
export namespace builder {
|
12228
12226
|
export function add<T0 = any>(
|
@@ -18292,10 +18290,10 @@ export namespace token {
|
|
18292
18290
|
}
|
18293
18291
|
}
|
18294
18292
|
|
18295
|
-
export
|
18293
|
+
export type RuleKeyInstance = TypedEventInstance<RuleKey<any>> & {
|
18296
18294
|
data_decoded: RuleKey<any>;
|
18297
18295
|
type_arguments: [string];
|
18298
|
-
}
|
18296
|
+
};
|
18299
18297
|
|
18300
18298
|
export interface Token<T0> {
|
18301
18299
|
id: object$.UID;
|
@@ -18370,11 +18368,12 @@ export namespace token {
|
|
18370
18368
|
}
|
18371
18369
|
}
|
18372
18370
|
|
18373
|
-
export
|
18374
|
-
|
18371
|
+
export type TokenPolicyCreatedInstance = TypedEventInstance<
|
18372
|
+
TokenPolicyCreated<any>
|
18373
|
+
> & {
|
18375
18374
|
data_decoded: TokenPolicyCreated<any>;
|
18376
18375
|
type_arguments: [string];
|
18377
|
-
}
|
18376
|
+
};
|
18378
18377
|
|
18379
18378
|
export namespace builder {
|
18380
18379
|
export function action<T0 = any>(
|
@@ -20668,10 +20667,10 @@ export namespace transfer_policy {
|
|
20668
20667
|
}
|
20669
20668
|
}
|
20670
20669
|
|
20671
|
-
export
|
20670
|
+
export type RuleKeyInstance = TypedEventInstance<RuleKey<any>> & {
|
20672
20671
|
data_decoded: RuleKey<any>;
|
20673
20672
|
type_arguments: [string];
|
20674
|
-
}
|
20673
|
+
};
|
20675
20674
|
|
20676
20675
|
export interface TransferPolicy<T0> {
|
20677
20676
|
id: object$.UID;
|
@@ -20730,11 +20729,12 @@ export namespace transfer_policy {
|
|
20730
20729
|
}
|
20731
20730
|
}
|
20732
20731
|
|
20733
|
-
export
|
20734
|
-
|
20732
|
+
export type TransferPolicyCreatedInstance = TypedEventInstance<
|
20733
|
+
TransferPolicyCreated<any>
|
20734
|
+
> & {
|
20735
20735
|
data_decoded: TransferPolicyCreated<any>;
|
20736
20736
|
type_arguments: [string];
|
20737
|
-
}
|
20737
|
+
};
|
20738
20738
|
|
20739
20739
|
export interface TransferPolicyDestroyed<T0> {
|
20740
20740
|
id: object$.ID;
|
@@ -20754,11 +20754,12 @@ export namespace transfer_policy {
|
|
20754
20754
|
}
|
20755
20755
|
}
|
20756
20756
|
|
20757
|
-
export
|
20758
|
-
|
20757
|
+
export type TransferPolicyDestroyedInstance = TypedEventInstance<
|
20758
|
+
TransferPolicyDestroyed<any>
|
20759
|
+
> & {
|
20759
20760
|
data_decoded: TransferPolicyDestroyed<any>;
|
20760
20761
|
type_arguments: [string];
|
20761
|
-
}
|
20762
|
+
};
|
20762
20763
|
|
20763
20764
|
export interface TransferRequest<T0> {
|
20764
20765
|
item: object$.ID;
|
@@ -21767,10 +21768,10 @@ export namespace url {
|
|
21767
21768
|
}
|
21768
21769
|
}
|
21769
21770
|
|
21770
|
-
export
|
21771
|
+
export type UrlInstance = TypedEventInstance<Url> & {
|
21771
21772
|
data_decoded: Url;
|
21772
21773
|
type_arguments: [];
|
21773
|
-
}
|
21774
|
+
};
|
21774
21775
|
|
21775
21776
|
export namespace builder {
|
21776
21777
|
export function innerUrl(
|
@@ -22020,10 +22021,10 @@ export namespace vec_map {
|
|
22020
22021
|
}
|
22021
22022
|
}
|
22022
22023
|
|
22023
|
-
export
|
22024
|
+
export type EntryInstance = TypedEventInstance<Entry<any, any>> & {
|
22024
22025
|
data_decoded: Entry<any, any>;
|
22025
22026
|
type_arguments: [string, string];
|
22026
|
-
}
|
22027
|
+
};
|
22027
22028
|
|
22028
22029
|
export interface VecMap<T0, T1> {
|
22029
22030
|
contents: vec_map.Entry<T0, T1>[];
|
@@ -22042,10 +22043,10 @@ export namespace vec_map {
|
|
22042
22043
|
}
|
22043
22044
|
}
|
22044
22045
|
|
22045
|
-
export
|
22046
|
+
export type VecMapInstance = TypedEventInstance<VecMap<any, any>> & {
|
22046
22047
|
data_decoded: VecMap<any, any>;
|
22047
22048
|
type_arguments: [string, string];
|
22048
|
-
}
|
22049
|
+
};
|
22049
22050
|
|
22050
22051
|
export namespace builder {
|
22051
22052
|
export function contains<T0 = any, T1 = any>(
|
@@ -22864,10 +22865,10 @@ export namespace vec_set {
|
|
22864
22865
|
}
|
22865
22866
|
}
|
22866
22867
|
|
22867
|
-
export
|
22868
|
+
export type VecSetInstance = TypedEventInstance<VecSet<any>> & {
|
22868
22869
|
data_decoded: VecSet<any>;
|
22869
22870
|
type_arguments: [string];
|
22870
|
-
}
|
22871
|
+
};
|
22871
22872
|
|
22872
22873
|
export namespace builder {
|
22873
22874
|
export function contains<T0 = any>(
|
package/src/sui/builtin/0x3.ts
CHANGED
@@ -119,11 +119,11 @@ export namespace genesis {
|
|
119
119
|
}
|
120
120
|
}
|
121
121
|
|
122
|
-
export
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
122
|
+
export type GenesisChainParametersInstance =
|
123
|
+
TypedEventInstance<GenesisChainParameters> & {
|
124
|
+
data_decoded: GenesisChainParameters;
|
125
|
+
type_arguments: [];
|
126
|
+
};
|
127
127
|
|
128
128
|
export interface GenesisValidatorMetadata {
|
129
129
|
name: number[];
|
@@ -155,11 +155,11 @@ export namespace genesis {
|
|
155
155
|
}
|
156
156
|
}
|
157
157
|
|
158
|
-
export
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
158
|
+
export type GenesisValidatorMetadataInstance =
|
159
|
+
TypedEventInstance<GenesisValidatorMetadata> & {
|
160
|
+
data_decoded: GenesisValidatorMetadata;
|
161
|
+
type_arguments: [];
|
162
|
+
};
|
163
163
|
|
164
164
|
export interface TokenAllocation {
|
165
165
|
recipient_address: string;
|
@@ -481,11 +481,11 @@ export namespace staking_pool {
|
|
481
481
|
}
|
482
482
|
}
|
483
483
|
|
484
|
-
export
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
484
|
+
export type FungibleStakedSuiDataKeyInstance =
|
485
|
+
TypedEventInstance<FungibleStakedSuiDataKey> & {
|
486
|
+
data_decoded: FungibleStakedSuiDataKey;
|
487
|
+
type_arguments: [];
|
488
|
+
};
|
489
489
|
|
490
490
|
export interface PoolTokenExchangeRate {
|
491
491
|
sui_amount: bigint;
|
@@ -504,11 +504,11 @@ export namespace staking_pool {
|
|
504
504
|
}
|
505
505
|
}
|
506
506
|
|
507
|
-
export
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
507
|
+
export type PoolTokenExchangeRateInstance =
|
508
|
+
TypedEventInstance<PoolTokenExchangeRate> & {
|
509
|
+
data_decoded: PoolTokenExchangeRate;
|
510
|
+
type_arguments: [];
|
511
|
+
};
|
512
512
|
|
513
513
|
export interface StakedSui {
|
514
514
|
id: _0x2.object$.UID;
|
@@ -4049,11 +4049,11 @@ export namespace sui_system_state_inner {
|
|
4049
4049
|
}
|
4050
4050
|
}
|
4051
4051
|
|
4052
|
-
export
|
4053
|
-
|
4054
|
-
|
4055
|
-
|
4056
|
-
|
4052
|
+
export type SystemEpochInfoEventInstance =
|
4053
|
+
TypedEventInstance<SystemEpochInfoEvent> & {
|
4054
|
+
data_decoded: SystemEpochInfoEvent;
|
4055
|
+
type_arguments: [];
|
4056
|
+
};
|
4057
4057
|
|
4058
4058
|
export interface SystemParameters {
|
4059
4059
|
epoch_duration_ms: bigint;
|
@@ -6032,11 +6032,11 @@ export namespace validator {
|
|
6032
6032
|
}
|
6033
6033
|
}
|
6034
6034
|
|
6035
|
-
export
|
6036
|
-
|
6037
|
-
|
6038
|
-
|
6039
|
-
|
6035
|
+
export type ConvertingToFungibleStakedSuiEventInstance =
|
6036
|
+
TypedEventInstance<ConvertingToFungibleStakedSuiEvent> & {
|
6037
|
+
data_decoded: ConvertingToFungibleStakedSuiEvent;
|
6038
|
+
type_arguments: [];
|
6039
|
+
};
|
6040
6040
|
|
6041
6041
|
export interface RedeemingFungibleStakedSuiEvent {
|
6042
6042
|
pool_id: _0x2.object$.ID;
|
@@ -6056,11 +6056,11 @@ export namespace validator {
|
|
6056
6056
|
}
|
6057
6057
|
}
|
6058
6058
|
|
6059
|
-
export
|
6060
|
-
|
6061
|
-
|
6062
|
-
|
6063
|
-
|
6059
|
+
export type RedeemingFungibleStakedSuiEventInstance =
|
6060
|
+
TypedEventInstance<RedeemingFungibleStakedSuiEvent> & {
|
6061
|
+
data_decoded: RedeemingFungibleStakedSuiEvent;
|
6062
|
+
type_arguments: [];
|
6063
|
+
};
|
6064
6064
|
|
6065
6065
|
export interface StakingRequestEvent {
|
6066
6066
|
pool_id: _0x2.object$.ID;
|
@@ -6082,11 +6082,11 @@ export namespace validator {
|
|
6082
6082
|
}
|
6083
6083
|
}
|
6084
6084
|
|
6085
|
-
export
|
6086
|
-
|
6087
|
-
|
6088
|
-
|
6089
|
-
|
6085
|
+
export type StakingRequestEventInstance =
|
6086
|
+
TypedEventInstance<StakingRequestEvent> & {
|
6087
|
+
data_decoded: StakingRequestEvent;
|
6088
|
+
type_arguments: [];
|
6089
|
+
};
|
6090
6090
|
|
6091
6091
|
export interface UnstakingRequestEvent {
|
6092
6092
|
pool_id: _0x2.object$.ID;
|
@@ -6110,11 +6110,11 @@ export namespace validator {
|
|
6110
6110
|
}
|
6111
6111
|
}
|
6112
6112
|
|
6113
|
-
export
|
6114
|
-
|
6115
|
-
|
6116
|
-
|
6117
|
-
|
6113
|
+
export type UnstakingRequestEventInstance =
|
6114
|
+
TypedEventInstance<UnstakingRequestEvent> & {
|
6115
|
+
data_decoded: UnstakingRequestEvent;
|
6116
|
+
type_arguments: [];
|
6117
|
+
};
|
6118
6118
|
|
6119
6119
|
export interface Validator {
|
6120
6120
|
metadata: validator.ValidatorMetadata;
|
@@ -8837,11 +8837,11 @@ export namespace validator_set {
|
|
8837
8837
|
}
|
8838
8838
|
}
|
8839
8839
|
|
8840
|
-
export
|
8841
|
-
|
8842
|
-
|
8843
|
-
|
8844
|
-
|
8840
|
+
export type ValidatorEpochInfoEventInstance =
|
8841
|
+
TypedEventInstance<ValidatorEpochInfoEvent> & {
|
8842
|
+
data_decoded: ValidatorEpochInfoEvent;
|
8843
|
+
type_arguments: [];
|
8844
|
+
};
|
8845
8845
|
|
8846
8846
|
export interface ValidatorEpochInfoEventV2 {
|
8847
8847
|
epoch: bigint;
|
@@ -8869,11 +8869,11 @@ export namespace validator_set {
|
|
8869
8869
|
}
|
8870
8870
|
}
|
8871
8871
|
|
8872
|
-
export
|
8873
|
-
|
8874
|
-
|
8875
|
-
|
8876
|
-
|
8872
|
+
export type ValidatorEpochInfoEventV2Instance =
|
8873
|
+
TypedEventInstance<ValidatorEpochInfoEventV2> & {
|
8874
|
+
data_decoded: ValidatorEpochInfoEventV2;
|
8875
|
+
type_arguments: [];
|
8876
|
+
};
|
8877
8877
|
|
8878
8878
|
export interface ValidatorJoinEvent {
|
8879
8879
|
epoch: bigint;
|
@@ -8893,11 +8893,11 @@ export namespace validator_set {
|
|
8893
8893
|
}
|
8894
8894
|
}
|
8895
8895
|
|
8896
|
-
export
|
8897
|
-
|
8898
|
-
|
8899
|
-
|
8900
|
-
|
8896
|
+
export type ValidatorJoinEventInstance =
|
8897
|
+
TypedEventInstance<ValidatorJoinEvent> & {
|
8898
|
+
data_decoded: ValidatorJoinEvent;
|
8899
|
+
type_arguments: [];
|
8900
|
+
};
|
8901
8901
|
|
8902
8902
|
export interface ValidatorLeaveEvent {
|
8903
8903
|
epoch: bigint;
|
@@ -8918,11 +8918,11 @@ export namespace validator_set {
|
|
8918
8918
|
}
|
8919
8919
|
}
|
8920
8920
|
|
8921
|
-
export
|
8922
|
-
|
8923
|
-
|
8924
|
-
|
8925
|
-
|
8921
|
+
export type ValidatorLeaveEventInstance =
|
8922
|
+
TypedEventInstance<ValidatorLeaveEvent> & {
|
8923
|
+
data_decoded: ValidatorLeaveEvent;
|
8924
|
+
type_arguments: [];
|
8925
|
+
};
|
8926
8926
|
|
8927
8927
|
export interface ValidatorSet {
|
8928
8928
|
total_stake: bigint;
|