@xyo-network/xl1-rpc 1.15.4 → 1.15.6
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/neutral/index.mjs +25 -25
- package/dist/neutral/index.mjs.map +1 -1
- package/dist/neutral/types/schema/common/StepIdentity.d.ts +6 -0
- package/dist/neutral/types/schema/common/StepIdentity.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/index.d.ts +1 -1
- package/dist/neutral/types/schema/common/index.d.ts.map +1 -1
- package/dist/node/index-node.mjs +25 -25
- package/dist/node/index-node.mjs.map +1 -1
- package/dist/node/types/schema/common/StepIdentity.d.ts +6 -0
- package/dist/node/types/schema/common/StepIdentity.d.ts.map +1 -0
- package/dist/node/types/schema/common/index.d.ts +1 -1
- package/dist/node/types/schema/common/index.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/types/schema/XyoViewerRpcSchemas.ts +23 -23
- package/src/types/schema/common/{StepContext.ts → StepIdentity.ts} +1 -1
- package/src/types/schema/common/index.ts +1 -1
- package/dist/neutral/types/schema/common/StepContext.d.ts +0 -6
- package/dist/neutral/types/schema/common/StepContext.d.ts.map +0 -1
- package/dist/node/types/schema/common/StepContext.d.ts +0 -6
- package/dist/node/types/schema/common/StepContext.d.ts.map +0 -1
package/dist/neutral/index.mjs
CHANGED
|
@@ -444,9 +444,9 @@ var JsonToStakeZod = StakeZod.extend({
|
|
|
444
444
|
withdrawBlock: val.withdrawBlock
|
|
445
445
|
}));
|
|
446
446
|
|
|
447
|
-
// src/types/schema/common/
|
|
447
|
+
// src/types/schema/common/StepIdentity.ts
|
|
448
448
|
import * as z14 from "zod";
|
|
449
|
-
var
|
|
449
|
+
var StepIdentityZod = z14.object({
|
|
450
450
|
block: z14.number(),
|
|
451
451
|
step: z14.number()
|
|
452
452
|
});
|
|
@@ -641,13 +641,13 @@ var XyoViewerRpcSchemas = {
|
|
|
641
641
|
params: {
|
|
642
642
|
to: z20.union([
|
|
643
643
|
z20.tuple([
|
|
644
|
-
|
|
644
|
+
StepIdentityZod,
|
|
645
645
|
AddressZod
|
|
646
646
|
])
|
|
647
647
|
]),
|
|
648
648
|
from: z20.union([
|
|
649
649
|
z20.tuple([
|
|
650
|
-
|
|
650
|
+
StepIdentityZod,
|
|
651
651
|
AddressZod
|
|
652
652
|
])
|
|
653
653
|
])
|
|
@@ -679,13 +679,13 @@ var XyoViewerRpcSchemas = {
|
|
|
679
679
|
params: {
|
|
680
680
|
to: z20.union([
|
|
681
681
|
z20.tuple([
|
|
682
|
-
|
|
682
|
+
StepIdentityZod,
|
|
683
683
|
AddressZod
|
|
684
684
|
])
|
|
685
685
|
]),
|
|
686
686
|
from: z20.union([
|
|
687
687
|
z20.tuple([
|
|
688
|
-
|
|
688
|
+
StepIdentityZod,
|
|
689
689
|
AddressZod
|
|
690
690
|
])
|
|
691
691
|
])
|
|
@@ -705,13 +705,13 @@ var XyoViewerRpcSchemas = {
|
|
|
705
705
|
params: {
|
|
706
706
|
to: z20.union([
|
|
707
707
|
z20.tuple([
|
|
708
|
-
|
|
708
|
+
StepIdentityZod,
|
|
709
709
|
AddressZod
|
|
710
710
|
])
|
|
711
711
|
]),
|
|
712
712
|
from: z20.union([
|
|
713
713
|
z20.tuple([
|
|
714
|
-
|
|
714
|
+
StepIdentityZod,
|
|
715
715
|
AddressZod
|
|
716
716
|
])
|
|
717
717
|
])
|
|
@@ -743,12 +743,12 @@ var XyoViewerRpcSchemas = {
|
|
|
743
743
|
params: {
|
|
744
744
|
to: z20.union([
|
|
745
745
|
z20.tuple([
|
|
746
|
-
|
|
746
|
+
StepIdentityZod
|
|
747
747
|
])
|
|
748
748
|
]),
|
|
749
749
|
from: z20.union([
|
|
750
750
|
z20.tuple([
|
|
751
|
-
|
|
751
|
+
StepIdentityZod
|
|
752
752
|
])
|
|
753
753
|
])
|
|
754
754
|
},
|
|
@@ -761,13 +761,13 @@ var XyoViewerRpcSchemas = {
|
|
|
761
761
|
params: {
|
|
762
762
|
to: z20.union([
|
|
763
763
|
z20.tuple([
|
|
764
|
-
|
|
764
|
+
StepIdentityZod,
|
|
765
765
|
z20.number()
|
|
766
766
|
])
|
|
767
767
|
]),
|
|
768
768
|
from: z20.union([
|
|
769
769
|
z20.tuple([
|
|
770
|
-
|
|
770
|
+
StepIdentityZod,
|
|
771
771
|
z20.number()
|
|
772
772
|
])
|
|
773
773
|
])
|
|
@@ -781,13 +781,13 @@ var XyoViewerRpcSchemas = {
|
|
|
781
781
|
params: {
|
|
782
782
|
to: z20.union([
|
|
783
783
|
z20.tuple([
|
|
784
|
-
|
|
784
|
+
StepIdentityZod,
|
|
785
785
|
z20.number()
|
|
786
786
|
])
|
|
787
787
|
]),
|
|
788
788
|
from: z20.union([
|
|
789
789
|
z20.tuple([
|
|
790
|
-
|
|
790
|
+
StepIdentityZod,
|
|
791
791
|
z20.number()
|
|
792
792
|
])
|
|
793
793
|
])
|
|
@@ -801,12 +801,12 @@ var XyoViewerRpcSchemas = {
|
|
|
801
801
|
params: {
|
|
802
802
|
to: z20.union([
|
|
803
803
|
z20.tuple([
|
|
804
|
-
|
|
804
|
+
StepIdentityZod
|
|
805
805
|
])
|
|
806
806
|
]),
|
|
807
807
|
from: z20.union([
|
|
808
808
|
z20.tuple([
|
|
809
|
-
|
|
809
|
+
StepIdentityZod
|
|
810
810
|
])
|
|
811
811
|
])
|
|
812
812
|
},
|
|
@@ -819,12 +819,12 @@ var XyoViewerRpcSchemas = {
|
|
|
819
819
|
params: {
|
|
820
820
|
to: z20.union([
|
|
821
821
|
z20.tuple([
|
|
822
|
-
|
|
822
|
+
StepIdentityZod
|
|
823
823
|
])
|
|
824
824
|
]),
|
|
825
825
|
from: z20.union([
|
|
826
826
|
z20.tuple([
|
|
827
|
-
|
|
827
|
+
StepIdentityZod
|
|
828
828
|
])
|
|
829
829
|
])
|
|
830
830
|
},
|
|
@@ -837,12 +837,12 @@ var XyoViewerRpcSchemas = {
|
|
|
837
837
|
params: {
|
|
838
838
|
to: z20.union([
|
|
839
839
|
z20.tuple([
|
|
840
|
-
|
|
840
|
+
StepIdentityZod
|
|
841
841
|
])
|
|
842
842
|
]),
|
|
843
843
|
from: z20.union([
|
|
844
844
|
z20.tuple([
|
|
845
|
-
|
|
845
|
+
StepIdentityZod
|
|
846
846
|
])
|
|
847
847
|
])
|
|
848
848
|
},
|
|
@@ -855,12 +855,12 @@ var XyoViewerRpcSchemas = {
|
|
|
855
855
|
params: {
|
|
856
856
|
to: z20.union([
|
|
857
857
|
z20.tuple([
|
|
858
|
-
|
|
858
|
+
StepIdentityZod
|
|
859
859
|
])
|
|
860
860
|
]),
|
|
861
861
|
from: z20.union([
|
|
862
862
|
z20.tuple([
|
|
863
|
-
|
|
863
|
+
StepIdentityZod
|
|
864
864
|
])
|
|
865
865
|
])
|
|
866
866
|
},
|
|
@@ -873,13 +873,13 @@ var XyoViewerRpcSchemas = {
|
|
|
873
873
|
params: {
|
|
874
874
|
to: z20.union([
|
|
875
875
|
z20.tuple([
|
|
876
|
-
|
|
876
|
+
StepIdentityZod,
|
|
877
877
|
z20.number()
|
|
878
878
|
])
|
|
879
879
|
]),
|
|
880
880
|
from: z20.union([
|
|
881
881
|
z20.tuple([
|
|
882
|
-
|
|
882
|
+
StepIdentityZod,
|
|
883
883
|
z20.number()
|
|
884
884
|
])
|
|
885
885
|
])
|
|
@@ -2393,7 +2393,7 @@ export {
|
|
|
2393
2393
|
SignedTransactionBoundWitnessZod,
|
|
2394
2394
|
StakeToJsonZod,
|
|
2395
2395
|
StakeZod,
|
|
2396
|
-
|
|
2396
|
+
StepIdentityZod,
|
|
2397
2397
|
StorageMetaZod,
|
|
2398
2398
|
TransactionBoundWitnessZod,
|
|
2399
2399
|
TransactionFeesBigIntToJsonZod,
|