@sentio/sdk 2.11.6 → 2.11.7-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/sui/builtin/0x1.d.ts +6 -6
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +19 -19
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +9 -9
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/lib/sui/codegen/codegen.js +2 -2
- package/lib/sui/codegen/codegen.js.map +1 -1
- package/lib/sui/move-coder.js +2 -1
- package/lib/sui/move-coder.js.map +1 -1
- package/package.json +4 -4
- package/src/sui/builtin/0x1.ts +6 -6
- package/src/sui/builtin/0x2.ts +19 -19
- package/src/sui/builtin/0x3.ts +9 -9
- package/src/sui/codegen/codegen.ts +3 -3
- package/src/sui/move-coder.ts +2 -1
package/lib/sui/builtin/0x3.d.ts
CHANGED
@@ -28,7 +28,7 @@ export declare namespace genesis {
|
|
28
28
|
validator_low_stake_grace_period: bigint;
|
29
29
|
}
|
30
30
|
interface GenesisChainParametersInstance extends TypedEventInstance<GenesisChainParameters> {
|
31
|
-
|
31
|
+
data_decoded: GenesisChainParameters;
|
32
32
|
type_arguments: [];
|
33
33
|
}
|
34
34
|
class GenesisValidatorMetadata {
|
@@ -50,7 +50,7 @@ export declare namespace genesis {
|
|
50
50
|
worker_address: number[];
|
51
51
|
}
|
52
52
|
interface GenesisValidatorMetadataInstance extends TypedEventInstance<GenesisValidatorMetadata> {
|
53
|
-
|
53
|
+
data_decoded: GenesisValidatorMetadata;
|
54
54
|
type_arguments: [];
|
55
55
|
}
|
56
56
|
class TokenAllocation {
|
@@ -91,7 +91,7 @@ export declare namespace staking_pool {
|
|
91
91
|
pool_token_amount: bigint;
|
92
92
|
}
|
93
93
|
interface PoolTokenExchangeRateInstance extends TypedEventInstance<PoolTokenExchangeRate> {
|
94
|
-
|
94
|
+
data_decoded: PoolTokenExchangeRate;
|
95
95
|
type_arguments: [];
|
96
96
|
}
|
97
97
|
class StakedSui {
|
@@ -477,7 +477,7 @@ export declare namespace sui_system_state_inner {
|
|
477
477
|
leftover_storage_fund_inflow: bigint;
|
478
478
|
}
|
479
479
|
interface SystemEpochInfoEventInstance extends TypedEventInstance<SystemEpochInfoEvent> {
|
480
|
-
|
480
|
+
data_decoded: SystemEpochInfoEvent;
|
481
481
|
type_arguments: [];
|
482
482
|
}
|
483
483
|
class SystemParameters {
|
@@ -509,7 +509,7 @@ export declare namespace validator {
|
|
509
509
|
amount: bigint;
|
510
510
|
}
|
511
511
|
interface StakingRequestEventInstance extends TypedEventInstance<StakingRequestEvent> {
|
512
|
-
|
512
|
+
data_decoded: StakingRequestEvent;
|
513
513
|
type_arguments: [];
|
514
514
|
}
|
515
515
|
class UnstakingRequestEvent {
|
@@ -523,7 +523,7 @@ export declare namespace validator {
|
|
523
523
|
reward_amount: bigint;
|
524
524
|
}
|
525
525
|
interface UnstakingRequestEventInstance extends TypedEventInstance<UnstakingRequestEvent> {
|
526
|
-
|
526
|
+
data_decoded: UnstakingRequestEvent;
|
527
527
|
type_arguments: [];
|
528
528
|
}
|
529
529
|
class Validator {
|
@@ -599,7 +599,7 @@ export declare namespace validator_set {
|
|
599
599
|
tallying_rule_global_score: bigint;
|
600
600
|
}
|
601
601
|
interface ValidatorEpochInfoEventInstance extends TypedEventInstance<ValidatorEpochInfoEvent> {
|
602
|
-
|
602
|
+
data_decoded: ValidatorEpochInfoEvent;
|
603
603
|
type_arguments: [];
|
604
604
|
}
|
605
605
|
class ValidatorJoinEvent {
|
@@ -609,7 +609,7 @@ export declare namespace validator_set {
|
|
609
609
|
staking_pool_id: _0x2.object_.ID;
|
610
610
|
}
|
611
611
|
interface ValidatorJoinEventInstance extends TypedEventInstance<ValidatorJoinEvent> {
|
612
|
-
|
612
|
+
data_decoded: ValidatorJoinEvent;
|
613
613
|
type_arguments: [];
|
614
614
|
}
|
615
615
|
class ValidatorLeaveEvent {
|
@@ -620,7 +620,7 @@ export declare namespace validator_set {
|
|
620
620
|
is_voluntary: Boolean;
|
621
621
|
}
|
622
622
|
interface ValidatorLeaveEventInstance extends TypedEventInstance<ValidatorLeaveEvent> {
|
623
|
-
|
623
|
+
data_decoded: ValidatorLeaveEvent;
|
624
624
|
type_arguments: [];
|
625
625
|
}
|
626
626
|
class ValidatorSet {
|