@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.
@@ -0,0 +1,6 @@
1
+ import * as z from 'zod';
2
+ export declare const StepIdentityZod: z.ZodObject<{
3
+ block: z.ZodNumber;
4
+ step: z.ZodNumber;
5
+ }, z.core.$strip>;
6
+ //# sourceMappingURL=StepIdentity.d.ts.map
@@ -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 './StepContext.ts';
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,kBAAkB,CAAA;AAChC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,eAAe,CAAA"}
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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "http://json.schemastore.org/package.json",
3
3
  "name": "@xyo-network/xl1-rpc",
4
- "version": "1.15.4",
4
+ "version": "1.15.5",
5
5
  "description": "XYO Layer One API",
6
6
  "homepage": "https://xylabs.com",
7
7
  "bugs": {
@@ -75,8 +75,8 @@
75
75
  "@xyo-network/payload-builder": "~5.1.6",
76
76
  "@xyo-network/payload-model": "~5.1.6",
77
77
  "@xyo-network/xl1-protocol": "~1.12.69",
78
- "@xyo-network/xl1-protocol-sdk": "~1.15.4",
79
- "@xyo-network/xl1-wrappers": "~1.15.4",
78
+ "@xyo-network/xl1-protocol-sdk": "~1.15.5",
79
+ "@xyo-network/xl1-wrappers": "~1.15.5",
80
80
  "axios": "~1.12.2",
81
81
  "uuid": "~13.0.0",
82
82
  "zod": "~4.1.12"
@@ -89,7 +89,7 @@
89
89
  "@xylabs/tsconfig": "~7.1.8",
90
90
  "@xylabs/vitest-extended": "~5.0.12",
91
91
  "@xyo-network/account": "~5.1.6",
92
- "@xyo-network/chain-protocol": "~1.15.4",
92
+ "@xyo-network/chain-protocol": "~1.15.5",
93
93
  "@xyo-network/wallet": "~5.1.6",
94
94
  "dotenv": "~17.2.3",
95
95
  "eslint": "^9.37.0",
@@ -13,7 +13,7 @@ import {
13
13
  SignedHydratedBlockZod,
14
14
  SignedHydratedTransactionZod,
15
15
  StakeToJsonZod,
16
- StepContextZod,
16
+ StepIdentityZod,
17
17
  TransferZod,
18
18
  } from './common/index.ts'
19
19
  import type { RpcSchemaMap } from './RpcSchemaMap.ts'
@@ -36,10 +36,10 @@ export const XyoViewerRpcSchemas = {
36
36
  xyoViewer_networkStakeStepRewardAddressReward: {
37
37
  params: {
38
38
  to: z.union([
39
- z.tuple([StepContextZod, AddressZod]),
39
+ z.tuple([StepIdentityZod, AddressZod]),
40
40
  ]),
41
41
  from: z.union([
42
- z.tuple([StepContextZod, AddressZod]),
42
+ z.tuple([StepIdentityZod, AddressZod]),
43
43
  ]),
44
44
  },
45
45
  result: {
@@ -64,10 +64,10 @@ export const XyoViewerRpcSchemas = {
64
64
  xyoViewer_networkStakeStepRewardAddressShare: {
65
65
  params: {
66
66
  to: z.union([
67
- z.tuple([StepContextZod, AddressZod]),
67
+ z.tuple([StepIdentityZod, AddressZod]),
68
68
  ]),
69
69
  from: z.union([
70
- z.tuple([StepContextZod, AddressZod]),
70
+ z.tuple([StepIdentityZod, AddressZod]),
71
71
  ]),
72
72
  },
73
73
  result: {
@@ -78,10 +78,10 @@ export const XyoViewerRpcSchemas = {
78
78
  xyoViewer_networkStakeStepRewardWeightForAddress: {
79
79
  params: {
80
80
  to: z.union([
81
- z.tuple([StepContextZod, AddressZod]),
81
+ z.tuple([StepIdentityZod, AddressZod]),
82
82
  ]),
83
83
  from: z.union([
84
- z.tuple([StepContextZod, AddressZod]),
84
+ z.tuple([StepIdentityZod, AddressZod]),
85
85
  ]),
86
86
  },
87
87
  result: {
@@ -106,10 +106,10 @@ export const XyoViewerRpcSchemas = {
106
106
  xyoViewer_networkStakeStepRewardPoolRewards: {
107
107
  params: {
108
108
  to: z.union([
109
- z.tuple([StepContextZod]),
109
+ z.tuple([StepIdentityZod]),
110
110
  ]),
111
111
  from: z.union([
112
- z.tuple([StepContextZod]),
112
+ z.tuple([StepIdentityZod]),
113
113
  ]),
114
114
  },
115
115
  result: {
@@ -120,10 +120,10 @@ export const XyoViewerRpcSchemas = {
120
120
  xyoViewer_networkStakeStepRewardPositionWeight: {
121
121
  params: {
122
122
  to: z.union([
123
- z.tuple([StepContextZod, z.number()]),
123
+ z.tuple([StepIdentityZod, z.number()]),
124
124
  ]),
125
125
  from: z.union([
126
- z.tuple([StepContextZod, z.number()]),
126
+ z.tuple([StepIdentityZod, z.number()]),
127
127
  ]),
128
128
  },
129
129
  result: {
@@ -134,10 +134,10 @@ export const XyoViewerRpcSchemas = {
134
134
  xyoViewer_networkStakeStepRewardPotentialPositionLoss: {
135
135
  params: {
136
136
  to: z.union([
137
- z.tuple([StepContextZod, z.number()]),
137
+ z.tuple([StepIdentityZod, z.number()]),
138
138
  ]),
139
139
  from: z.union([
140
- z.tuple([StepContextZod, z.number()]),
140
+ z.tuple([StepIdentityZod, z.number()]),
141
141
  ]),
142
142
  },
143
143
  result: {
@@ -148,10 +148,10 @@ export const XyoViewerRpcSchemas = {
148
148
  xyoViewer_networkStakeStepRewardForStep: {
149
149
  params: {
150
150
  to: z.union([
151
- z.tuple([StepContextZod]),
151
+ z.tuple([StepIdentityZod]),
152
152
  ]),
153
153
  from: z.union([
154
- z.tuple([StepContextZod]),
154
+ z.tuple([StepIdentityZod]),
155
155
  ]),
156
156
  },
157
157
  result: {
@@ -162,10 +162,10 @@ export const XyoViewerRpcSchemas = {
162
162
  xyoViewer_networkStakeStepRewardRandomizer: {
163
163
  params: {
164
164
  to: z.union([
165
- z.tuple([StepContextZod]),
165
+ z.tuple([StepIdentityZod]),
166
166
  ]),
167
167
  from: z.union([
168
- z.tuple([StepContextZod]),
168
+ z.tuple([StepIdentityZod]),
169
169
  ]),
170
170
  },
171
171
  result: {
@@ -176,10 +176,10 @@ export const XyoViewerRpcSchemas = {
176
176
  xyoViewer_networkStakeStepRewardStakerCount: {
177
177
  params: {
178
178
  to: z.union([
179
- z.tuple([StepContextZod]),
179
+ z.tuple([StepIdentityZod]),
180
180
  ]),
181
181
  from: z.union([
182
- z.tuple([StepContextZod]),
182
+ z.tuple([StepIdentityZod]),
183
183
  ]),
184
184
  },
185
185
  result: {
@@ -190,10 +190,10 @@ export const XyoViewerRpcSchemas = {
190
190
  xyoViewer_networkStakeStepRewardPoolShares: {
191
191
  params: {
192
192
  to: z.union([
193
- z.tuple([StepContextZod]),
193
+ z.tuple([StepIdentityZod]),
194
194
  ]),
195
195
  from: z.union([
196
- z.tuple([StepContextZod]),
196
+ z.tuple([StepIdentityZod]),
197
197
  ]),
198
198
  },
199
199
  result: {
@@ -204,10 +204,10 @@ export const XyoViewerRpcSchemas = {
204
204
  xyoViewer_networkStakeStepRewardForStepForPosition: {
205
205
  params: {
206
206
  to: z.union([
207
- z.tuple([StepContextZod, z.number()]),
207
+ z.tuple([StepIdentityZod, z.number()]),
208
208
  ]),
209
209
  from: z.union([
210
- z.tuple([StepContextZod, z.number()]),
210
+ z.tuple([StepIdentityZod, z.number()]),
211
211
  ]),
212
212
  },
213
213
  result: {
@@ -1,6 +1,6 @@
1
1
  import * as z from 'zod'
2
2
 
3
- export const StepContextZod = z.object({
3
+ export const StepIdentityZod = z.object({
4
4
  block: z.number(),
5
5
  step: z.number(),
6
6
  })
@@ -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 './StepContext.ts'
12
+ export * from './StepIdentity.ts'
13
13
  export * from './TransactionBoundWitness.ts'
14
14
  export * from './TransactionFees.ts'
15
15
  export * from './Transfer.ts'
@@ -1,6 +0,0 @@
1
- import * as z from 'zod';
2
- export declare const StepContextZod: z.ZodObject<{
3
- block: z.ZodNumber;
4
- step: z.ZodNumber;
5
- }, z.core.$strip>;
6
- //# sourceMappingURL=StepContext.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"StepContext.d.ts","sourceRoot":"","sources":["../../../../../src/types/schema/common/StepContext.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAA;AAExB,eAAO,MAAM,cAAc;;;iBAGzB,CAAA"}
@@ -1,6 +0,0 @@
1
- import * as z from 'zod';
2
- export declare const StepContextZod: z.ZodObject<{
3
- block: z.ZodNumber;
4
- step: z.ZodNumber;
5
- }, z.core.$strip>;
6
- //# sourceMappingURL=StepContext.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"StepContext.d.ts","sourceRoot":"","sources":["../../../../../src/types/schema/common/StepContext.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAA;AAExB,eAAO,MAAM,cAAc;;;iBAGzB,CAAA"}