@xyo-network/xl1-rpc 1.15.4 → 1.15.5
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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StepIdentity.d.ts","sourceRoot":"","sources":["../../../../../src/types/schema/common/StepIdentity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAA;AAExB,eAAO,MAAM,eAAe;;;iBAG1B,CAAA"}
|
|
@@ -9,7 +9,7 @@ export * from './Payload.ts';
|
|
|
9
9
|
export * from './Permission.ts';
|
|
10
10
|
export * from './Sequence.ts';
|
|
11
11
|
export * from './Stake.ts';
|
|
12
|
-
export * from './
|
|
12
|
+
export * from './StepIdentity.ts';
|
|
13
13
|
export * from './TransactionBoundWitness.ts';
|
|
14
14
|
export * from './TransactionFees.ts';
|
|
15
15
|
export * from './Transfer.ts';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/types/schema/common/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,wBAAwB,CAAA;AACtC,cAAc,mBAAmB,CAAA;AACjC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,0BAA0B,CAAA;AACxC,cAAc,WAAW,CAAA;AACzB,cAAc,cAAc,CAAA;AAC5B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/types/schema/common/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,wBAAwB,CAAA;AACtC,cAAc,mBAAmB,CAAA;AACjC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,0BAA0B,CAAA;AACxC,cAAc,WAAW,CAAA;AACzB,cAAc,cAAc,CAAA;AAC5B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,eAAe,CAAA"}
|
package/dist/node/index-node.mjs
CHANGED
|
@@ -424,9 +424,9 @@ var JsonToStakeZod = StakeZod.extend({
|
|
|
424
424
|
withdrawBlock: val.withdrawBlock
|
|
425
425
|
}));
|
|
426
426
|
|
|
427
|
-
// src/types/schema/common/
|
|
427
|
+
// src/types/schema/common/StepIdentity.ts
|
|
428
428
|
import * as z14 from "zod";
|
|
429
|
-
var
|
|
429
|
+
var StepIdentityZod = z14.object({
|
|
430
430
|
block: z14.number(),
|
|
431
431
|
step: z14.number()
|
|
432
432
|
});
|
|
@@ -621,13 +621,13 @@ var XyoViewerRpcSchemas = {
|
|
|
621
621
|
params: {
|
|
622
622
|
to: z20.union([
|
|
623
623
|
z20.tuple([
|
|
624
|
-
|
|
624
|
+
StepIdentityZod,
|
|
625
625
|
AddressZod
|
|
626
626
|
])
|
|
627
627
|
]),
|
|
628
628
|
from: z20.union([
|
|
629
629
|
z20.tuple([
|
|
630
|
-
|
|
630
|
+
StepIdentityZod,
|
|
631
631
|
AddressZod
|
|
632
632
|
])
|
|
633
633
|
])
|
|
@@ -659,13 +659,13 @@ var XyoViewerRpcSchemas = {
|
|
|
659
659
|
params: {
|
|
660
660
|
to: z20.union([
|
|
661
661
|
z20.tuple([
|
|
662
|
-
|
|
662
|
+
StepIdentityZod,
|
|
663
663
|
AddressZod
|
|
664
664
|
])
|
|
665
665
|
]),
|
|
666
666
|
from: z20.union([
|
|
667
667
|
z20.tuple([
|
|
668
|
-
|
|
668
|
+
StepIdentityZod,
|
|
669
669
|
AddressZod
|
|
670
670
|
])
|
|
671
671
|
])
|
|
@@ -685,13 +685,13 @@ var XyoViewerRpcSchemas = {
|
|
|
685
685
|
params: {
|
|
686
686
|
to: z20.union([
|
|
687
687
|
z20.tuple([
|
|
688
|
-
|
|
688
|
+
StepIdentityZod,
|
|
689
689
|
AddressZod
|
|
690
690
|
])
|
|
691
691
|
]),
|
|
692
692
|
from: z20.union([
|
|
693
693
|
z20.tuple([
|
|
694
|
-
|
|
694
|
+
StepIdentityZod,
|
|
695
695
|
AddressZod
|
|
696
696
|
])
|
|
697
697
|
])
|
|
@@ -723,12 +723,12 @@ var XyoViewerRpcSchemas = {
|
|
|
723
723
|
params: {
|
|
724
724
|
to: z20.union([
|
|
725
725
|
z20.tuple([
|
|
726
|
-
|
|
726
|
+
StepIdentityZod
|
|
727
727
|
])
|
|
728
728
|
]),
|
|
729
729
|
from: z20.union([
|
|
730
730
|
z20.tuple([
|
|
731
|
-
|
|
731
|
+
StepIdentityZod
|
|
732
732
|
])
|
|
733
733
|
])
|
|
734
734
|
},
|
|
@@ -741,13 +741,13 @@ var XyoViewerRpcSchemas = {
|
|
|
741
741
|
params: {
|
|
742
742
|
to: z20.union([
|
|
743
743
|
z20.tuple([
|
|
744
|
-
|
|
744
|
+
StepIdentityZod,
|
|
745
745
|
z20.number()
|
|
746
746
|
])
|
|
747
747
|
]),
|
|
748
748
|
from: z20.union([
|
|
749
749
|
z20.tuple([
|
|
750
|
-
|
|
750
|
+
StepIdentityZod,
|
|
751
751
|
z20.number()
|
|
752
752
|
])
|
|
753
753
|
])
|
|
@@ -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,12 +781,12 @@ var XyoViewerRpcSchemas = {
|
|
|
781
781
|
params: {
|
|
782
782
|
to: z20.union([
|
|
783
783
|
z20.tuple([
|
|
784
|
-
|
|
784
|
+
StepIdentityZod
|
|
785
785
|
])
|
|
786
786
|
]),
|
|
787
787
|
from: z20.union([
|
|
788
788
|
z20.tuple([
|
|
789
|
-
|
|
789
|
+
StepIdentityZod
|
|
790
790
|
])
|
|
791
791
|
])
|
|
792
792
|
},
|
|
@@ -799,12 +799,12 @@ var XyoViewerRpcSchemas = {
|
|
|
799
799
|
params: {
|
|
800
800
|
to: z20.union([
|
|
801
801
|
z20.tuple([
|
|
802
|
-
|
|
802
|
+
StepIdentityZod
|
|
803
803
|
])
|
|
804
804
|
]),
|
|
805
805
|
from: z20.union([
|
|
806
806
|
z20.tuple([
|
|
807
|
-
|
|
807
|
+
StepIdentityZod
|
|
808
808
|
])
|
|
809
809
|
])
|
|
810
810
|
},
|
|
@@ -817,12 +817,12 @@ var XyoViewerRpcSchemas = {
|
|
|
817
817
|
params: {
|
|
818
818
|
to: z20.union([
|
|
819
819
|
z20.tuple([
|
|
820
|
-
|
|
820
|
+
StepIdentityZod
|
|
821
821
|
])
|
|
822
822
|
]),
|
|
823
823
|
from: z20.union([
|
|
824
824
|
z20.tuple([
|
|
825
|
-
|
|
825
|
+
StepIdentityZod
|
|
826
826
|
])
|
|
827
827
|
])
|
|
828
828
|
},
|
|
@@ -835,12 +835,12 @@ var XyoViewerRpcSchemas = {
|
|
|
835
835
|
params: {
|
|
836
836
|
to: z20.union([
|
|
837
837
|
z20.tuple([
|
|
838
|
-
|
|
838
|
+
StepIdentityZod
|
|
839
839
|
])
|
|
840
840
|
]),
|
|
841
841
|
from: z20.union([
|
|
842
842
|
z20.tuple([
|
|
843
|
-
|
|
843
|
+
StepIdentityZod
|
|
844
844
|
])
|
|
845
845
|
])
|
|
846
846
|
},
|
|
@@ -853,13 +853,13 @@ var XyoViewerRpcSchemas = {
|
|
|
853
853
|
params: {
|
|
854
854
|
to: z20.union([
|
|
855
855
|
z20.tuple([
|
|
856
|
-
|
|
856
|
+
StepIdentityZod,
|
|
857
857
|
z20.number()
|
|
858
858
|
])
|
|
859
859
|
]),
|
|
860
860
|
from: z20.union([
|
|
861
861
|
z20.tuple([
|
|
862
|
-
|
|
862
|
+
StepIdentityZod,
|
|
863
863
|
z20.number()
|
|
864
864
|
])
|
|
865
865
|
])
|
|
@@ -2428,7 +2428,7 @@ export {
|
|
|
2428
2428
|
SignedTransactionBoundWitnessZod,
|
|
2429
2429
|
StakeToJsonZod,
|
|
2430
2430
|
StakeZod,
|
|
2431
|
-
|
|
2431
|
+
StepIdentityZod,
|
|
2432
2432
|
StorageMetaZod,
|
|
2433
2433
|
TransactionBoundWitnessZod,
|
|
2434
2434
|
TransactionFeesBigIntToJsonZod,
|