ox 1.7.1 → 1.7.4
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/CHANGELOG.md +42 -0
- package/dist/core/Hash.js +1 -1
- package/dist/core/Hash.js.map +1 -1
- package/dist/tempo/KeyAuthorization.d.ts +2 -2
- package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.d.ts +151 -83
- package/dist/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.js +164 -86
- package/dist/tempo/MultisigConfig.js.map +1 -1
- package/dist/tempo/MultisigOperation.d.ts +340 -0
- package/dist/tempo/MultisigOperation.d.ts.map +1 -0
- package/dist/tempo/MultisigOperation.js +839 -0
- package/dist/tempo/MultisigOperation.js.map +1 -0
- package/dist/tempo/MultisigSimulation.d.ts +132 -0
- package/dist/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/tempo/MultisigSimulation.js +140 -0
- package/dist/tempo/MultisigSimulation.js.map +1 -0
- package/dist/tempo/RpcSchemaTempo.d.ts +45 -0
- package/dist/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +55 -86
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +93 -158
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/tempo/TransactionRequest.d.ts +9 -17
- package/dist/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/tempo/TransactionRequest.js +7 -7
- package/dist/tempo/TransactionRequest.js.map +1 -1
- package/dist/tempo/TxEnvelopeTempo.d.ts +3 -2
- package/dist/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/tempo/TxEnvelopeTempo.js +3 -2
- package/dist/tempo/TxEnvelopeTempo.js.map +1 -1
- package/dist/tempo/index.d.ts +22 -2
- package/dist/tempo/index.d.ts.map +1 -1
- package/dist/tempo/index.js +22 -2
- package/dist/tempo/index.js.map +1 -1
- package/dist/zod/tempo/AuthorizationTempo.d.ts +60 -180
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +65 -118
- package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigConfig.d.ts +31 -2
- package/dist/zod/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigConfig.js +26 -3
- package/dist/zod/tempo/MultisigConfig.js.map +1 -1
- package/dist/zod/tempo/MultisigOperation.d.ts +158 -0
- package/dist/zod/tempo/MultisigOperation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigOperation.js +62 -0
- package/dist/zod/tempo/MultisigOperation.js.map +1 -0
- package/dist/zod/tempo/MultisigSimulation.d.ts +120 -0
- package/dist/zod/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigSimulation.js +78 -0
- package/dist/zod/tempo/MultisigSimulation.js.map +1 -0
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +528 -144
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.js +47 -0
- package/dist/zod/tempo/RpcSchemaTempo.js.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.d.ts +18 -54
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +5 -22
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +138 -348
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +286 -239
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.js +11 -22
- package/dist/zod/tempo/TransactionRequest.js.map +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts +60 -48
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts +15 -12
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts.map +1 -1
- package/dist/zod/tempo/z.d.ts +2 -0
- package/dist/zod/tempo/z.d.ts.map +1 -1
- package/dist/zod/tempo/z.js +2 -0
- package/dist/zod/tempo/z.js.map +1 -1
- package/package.json +21 -1
- package/src/core/Hash.ts +1 -1
- package/src/core/_test/Hash.test.ts +15 -0
- package/src/tempo/AuthorizationTempo.test.ts +4 -0
- package/src/tempo/KeyAuthorization.test-d.ts +13 -12
- package/src/tempo/KeyAuthorization.test.ts +109 -3
- package/src/tempo/KeyAuthorization.ts +4 -4
- package/src/tempo/MultisigConfig.test-d.ts +52 -0
- package/src/tempo/MultisigConfig.test.ts +288 -227
- package/src/tempo/MultisigConfig.ts +275 -104
- package/src/tempo/MultisigOperation.test-d.ts +79 -0
- package/src/tempo/MultisigOperation.test.ts +1950 -0
- package/src/tempo/MultisigOperation.ts +1293 -0
- package/src/tempo/MultisigSimulation.test-d.ts +33 -0
- package/src/tempo/MultisigSimulation.test.ts +283 -0
- package/src/tempo/MultisigSimulation.ts +266 -0
- package/src/tempo/RpcSchemaTempo.test-d.ts +91 -0
- package/src/tempo/RpcSchemaTempo.ts +46 -0
- package/src/tempo/SignatureEnvelope.test-d.ts +33 -72
- package/src/tempo/SignatureEnvelope.test.ts +533 -500
- package/src/tempo/SignatureEnvelope.ts +171 -258
- package/src/tempo/Transaction.test.ts +61 -0
- package/src/tempo/TransactionRequest.test-d.ts +11 -0
- package/src/tempo/TransactionRequest.test.ts +214 -41
- package/src/tempo/TransactionRequest.ts +19 -20
- package/src/tempo/TxEnvelopeTempo.test-d.ts +7 -0
- package/src/tempo/TxEnvelopeTempo.test.ts +25 -0
- package/src/tempo/TxEnvelopeTempo.ts +5 -3
- package/src/tempo/index.ts +22 -2
- package/src/tempo/multisig.e2e.test.ts +164 -87
- package/src/version.ts +1 -1
- package/src/zod/tempo/MultisigConfig.ts +29 -3
- package/src/zod/tempo/MultisigOperation.ts +66 -0
- package/src/zod/tempo/MultisigSimulation.ts +98 -0
- package/src/zod/tempo/RpcSchemaTempo.ts +53 -0
- package/src/zod/tempo/SignatureEnvelope.ts +12 -54
- package/src/zod/tempo/TransactionRequest.ts +17 -26
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +2 -4
- package/src/zod/tempo/_test/MultisigConfig.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigConfig.test.ts +13 -2
- package/src/zod/tempo/_test/MultisigOperation.test-d.ts +27 -0
- package/src/zod/tempo/_test/MultisigOperation.test.ts +66 -0
- package/src/zod/tempo/_test/MultisigSimulation.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigSimulation.test.ts +78 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test-d.ts +48 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test.ts +83 -0
- package/src/zod/tempo/_test/SignatureEnvelope.test-d.ts +1 -1
- package/src/zod/tempo/_test/SignatureEnvelope.test.ts +57 -120
- package/src/zod/tempo/_test/TransactionRequest.test.ts +43 -16
- package/src/zod/tempo/z.ts +2 -0
|
@@ -44,20 +44,7 @@ export declare const Signed: z.ZodMiniObject<{
|
|
|
44
44
|
type: z.ZodMiniLiteral<"keychain">;
|
|
45
45
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
46
46
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
47
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
48
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
49
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
50
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
51
|
-
init: z.ZodMiniObject<{
|
|
52
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
53
|
-
threshold: z.ZodMiniNumber<number>;
|
|
54
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
55
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
56
|
-
weight: z.ZodMiniNumber<number>;
|
|
57
|
-
}, z.core.$strip>>>;
|
|
58
|
-
}, z.core.$strip>;
|
|
59
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
60
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
47
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
61
48
|
signature: z.ZodMiniObject<{
|
|
62
49
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
63
50
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -99,14 +86,15 @@ export declare const Signed: z.ZodMiniObject<{
|
|
|
99
86
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
100
87
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
101
88
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
102
|
-
|
|
103
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
104
|
-
threshold: z.ZodMiniNumber<number>;
|
|
89
|
+
config: z.ZodMiniObject<{
|
|
105
90
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
106
91
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
107
92
|
weight: z.ZodMiniNumber<number>;
|
|
108
93
|
}, z.core.$strip>>>;
|
|
109
|
-
|
|
94
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
95
|
+
threshold: z.ZodMiniNumber<number>;
|
|
96
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
97
|
+
}, z.core.$strip>;
|
|
110
98
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
111
99
|
type: z.ZodMiniLiteral<"multisig">;
|
|
112
100
|
}, z.core.$strip>]>>;
|
|
@@ -142,20 +130,7 @@ export declare const SignedToRpc: z.ZodMiniObject<{
|
|
|
142
130
|
type: z.ZodMiniLiteral<"keychain">;
|
|
143
131
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
144
132
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
145
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
146
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
147
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
148
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
149
|
-
init: z.ZodMiniObject<{
|
|
150
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
151
|
-
threshold: z.ZodMiniNumber<number>;
|
|
152
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
153
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
154
|
-
weight: z.ZodMiniNumber<number>;
|
|
155
|
-
}, z.core.$strip>>>;
|
|
156
|
-
}, z.core.$strip>;
|
|
157
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
158
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
133
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
159
134
|
signature: z.ZodMiniObject<{
|
|
160
135
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
161
136
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -197,14 +172,15 @@ export declare const SignedToRpc: z.ZodMiniObject<{
|
|
|
197
172
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
198
173
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
199
174
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
200
|
-
|
|
201
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
202
|
-
threshold: z.ZodMiniNumber<number>;
|
|
175
|
+
config: z.ZodMiniObject<{
|
|
203
176
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
204
177
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
205
178
|
weight: z.ZodMiniNumber<number>;
|
|
206
179
|
}, z.core.$strip>>>;
|
|
207
|
-
|
|
180
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
181
|
+
threshold: z.ZodMiniNumber<number>;
|
|
182
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
183
|
+
}, z.core.$strip>;
|
|
208
184
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
209
185
|
type: z.ZodMiniLiteral<"multisig">;
|
|
210
186
|
}, z.core.$strip>]>>;
|
|
@@ -256,14 +232,15 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
256
232
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
257
233
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
258
234
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
259
|
-
|
|
260
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
261
|
-
threshold: z.ZodMiniNumber<number>;
|
|
235
|
+
config: z.ZodMiniObject<{
|
|
262
236
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
263
237
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
264
238
|
weight: z.ZodMiniNumber<number>;
|
|
265
239
|
}, z.core.$strip>>>;
|
|
266
|
-
|
|
240
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
241
|
+
threshold: z.ZodMiniNumber<number>;
|
|
242
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
243
|
+
}, z.core.$strip>;
|
|
267
244
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
268
245
|
type: z.ZodMiniLiteral<"multisig">;
|
|
269
246
|
}, z.core.$strip>]>;
|
|
@@ -315,14 +292,15 @@ export declare const DomainList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObjec
|
|
|
315
292
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
316
293
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
317
294
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
318
|
-
|
|
319
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
320
|
-
threshold: z.ZodMiniNumber<number>;
|
|
295
|
+
config: z.ZodMiniObject<{
|
|
321
296
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
322
297
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
323
298
|
weight: z.ZodMiniNumber<number>;
|
|
324
299
|
}, z.core.$strip>>>;
|
|
325
|
-
|
|
300
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
301
|
+
threshold: z.ZodMiniNumber<number>;
|
|
302
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
303
|
+
}, z.core.$strip>;
|
|
326
304
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
327
305
|
type: z.ZodMiniLiteral<"multisig">;
|
|
328
306
|
}, z.core.$strip>]>;
|
|
@@ -358,20 +336,7 @@ export declare const AuthorizationTempo: z.ZodMiniUnion<readonly [z.ZodMiniObjec
|
|
|
358
336
|
type: z.ZodMiniLiteral<"keychain">;
|
|
359
337
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
360
338
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
361
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
362
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
363
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
364
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
365
|
-
init: z.ZodMiniObject<{
|
|
366
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
367
|
-
threshold: z.ZodMiniNumber<number>;
|
|
368
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
369
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
370
|
-
weight: z.ZodMiniNumber<number>;
|
|
371
|
-
}, z.core.$strip>>>;
|
|
372
|
-
}, z.core.$strip>;
|
|
373
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
374
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
339
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
375
340
|
signature: z.ZodMiniObject<{
|
|
376
341
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
377
342
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -413,14 +378,15 @@ export declare const AuthorizationTempo: z.ZodMiniUnion<readonly [z.ZodMiniObjec
|
|
|
413
378
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
414
379
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
415
380
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
416
|
-
|
|
417
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
418
|
-
threshold: z.ZodMiniNumber<number>;
|
|
381
|
+
config: z.ZodMiniObject<{
|
|
419
382
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
420
383
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
421
384
|
weight: z.ZodMiniNumber<number>;
|
|
422
385
|
}, z.core.$strip>>>;
|
|
423
|
-
|
|
386
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
387
|
+
threshold: z.ZodMiniNumber<number>;
|
|
388
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
389
|
+
}, z.core.$strip>;
|
|
424
390
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
425
391
|
type: z.ZodMiniLiteral<"multisig">;
|
|
426
392
|
}, z.core.$strip>]>>;
|
|
@@ -461,20 +427,7 @@ export declare const AuthorizationTempoToRpc: z.ZodMiniUnion<readonly [z.ZodMini
|
|
|
461
427
|
type: z.ZodMiniLiteral<"keychain">;
|
|
462
428
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
463
429
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
464
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
465
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
466
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
467
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
468
|
-
init: z.ZodMiniObject<{
|
|
469
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
470
|
-
threshold: z.ZodMiniNumber<number>;
|
|
471
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
472
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
473
|
-
weight: z.ZodMiniNumber<number>;
|
|
474
|
-
}, z.core.$strip>>>;
|
|
475
|
-
}, z.core.$strip>;
|
|
476
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
477
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
430
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
478
431
|
signature: z.ZodMiniObject<{
|
|
479
432
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
480
433
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -516,14 +469,15 @@ export declare const AuthorizationTempoToRpc: z.ZodMiniUnion<readonly [z.ZodMini
|
|
|
516
469
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
517
470
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
518
471
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
519
|
-
|
|
520
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
521
|
-
threshold: z.ZodMiniNumber<number>;
|
|
472
|
+
config: z.ZodMiniObject<{
|
|
522
473
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
523
474
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
524
475
|
weight: z.ZodMiniNumber<number>;
|
|
525
476
|
}, z.core.$strip>>>;
|
|
526
|
-
|
|
477
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
478
|
+
threshold: z.ZodMiniNumber<number>;
|
|
479
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
480
|
+
}, z.core.$strip>;
|
|
527
481
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
528
482
|
type: z.ZodMiniLiteral<"multisig">;
|
|
529
483
|
}, z.core.$strip>]>>;
|
|
@@ -564,20 +518,7 @@ export declare const List: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<reado
|
|
|
564
518
|
type: z.ZodMiniLiteral<"keychain">;
|
|
565
519
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
566
520
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
567
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
568
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
569
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
570
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
571
|
-
init: z.ZodMiniObject<{
|
|
572
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
573
|
-
threshold: z.ZodMiniNumber<number>;
|
|
574
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
575
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
576
|
-
weight: z.ZodMiniNumber<number>;
|
|
577
|
-
}, z.core.$strip>>>;
|
|
578
|
-
}, z.core.$strip>;
|
|
579
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
580
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
521
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
581
522
|
signature: z.ZodMiniObject<{
|
|
582
523
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
583
524
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -619,14 +560,15 @@ export declare const List: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<reado
|
|
|
619
560
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
620
561
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
621
562
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
622
|
-
|
|
623
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
624
|
-
threshold: z.ZodMiniNumber<number>;
|
|
563
|
+
config: z.ZodMiniObject<{
|
|
625
564
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
626
565
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
627
566
|
weight: z.ZodMiniNumber<number>;
|
|
628
567
|
}, z.core.$strip>>>;
|
|
629
|
-
|
|
568
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
569
|
+
threshold: z.ZodMiniNumber<number>;
|
|
570
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
571
|
+
}, z.core.$strip>;
|
|
630
572
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
631
573
|
type: z.ZodMiniLiteral<"multisig">;
|
|
632
574
|
}, z.core.$strip>]>>;
|
|
@@ -667,20 +609,7 @@ export declare const ListToRpc: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<
|
|
|
667
609
|
type: z.ZodMiniLiteral<"keychain">;
|
|
668
610
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
669
611
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
670
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
671
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
672
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
673
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
674
|
-
init: z.ZodMiniObject<{
|
|
675
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
676
|
-
threshold: z.ZodMiniNumber<number>;
|
|
677
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
678
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
679
|
-
weight: z.ZodMiniNumber<number>;
|
|
680
|
-
}, z.core.$strip>>>;
|
|
681
|
-
}, z.core.$strip>;
|
|
682
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
683
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
612
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
684
613
|
signature: z.ZodMiniObject<{
|
|
685
614
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
686
615
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -722,14 +651,15 @@ export declare const ListToRpc: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<
|
|
|
722
651
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
723
652
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
724
653
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
725
|
-
|
|
726
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
727
|
-
threshold: z.ZodMiniNumber<number>;
|
|
654
|
+
config: z.ZodMiniObject<{
|
|
728
655
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
729
656
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
730
657
|
weight: z.ZodMiniNumber<number>;
|
|
731
658
|
}, z.core.$strip>>>;
|
|
732
|
-
|
|
659
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
660
|
+
threshold: z.ZodMiniNumber<number>;
|
|
661
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
662
|
+
}, z.core.$strip>;
|
|
733
663
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
734
664
|
type: z.ZodMiniLiteral<"multisig">;
|
|
735
665
|
}, z.core.$strip>]>>;
|
|
@@ -770,20 +700,7 @@ export declare const ListSigned: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObjec
|
|
|
770
700
|
type: z.ZodMiniLiteral<"keychain">;
|
|
771
701
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
772
702
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
773
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
774
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
775
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
776
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
777
|
-
init: z.ZodMiniObject<{
|
|
778
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
779
|
-
threshold: z.ZodMiniNumber<number>;
|
|
780
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
781
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
782
|
-
weight: z.ZodMiniNumber<number>;
|
|
783
|
-
}, z.core.$strip>>>;
|
|
784
|
-
}, z.core.$strip>;
|
|
785
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
786
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
703
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
787
704
|
signature: z.ZodMiniObject<{
|
|
788
705
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
789
706
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -825,14 +742,15 @@ export declare const ListSigned: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObjec
|
|
|
825
742
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
826
743
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
827
744
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
828
|
-
|
|
829
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
830
|
-
threshold: z.ZodMiniNumber<number>;
|
|
745
|
+
config: z.ZodMiniObject<{
|
|
831
746
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
832
747
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
833
748
|
weight: z.ZodMiniNumber<number>;
|
|
834
749
|
}, z.core.$strip>>>;
|
|
835
|
-
|
|
750
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
751
|
+
threshold: z.ZodMiniNumber<number>;
|
|
752
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
753
|
+
}, z.core.$strip>;
|
|
836
754
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
837
755
|
type: z.ZodMiniLiteral<"multisig">;
|
|
838
756
|
}, z.core.$strip>]>>;
|
|
@@ -868,20 +786,7 @@ export declare const ListSignedToRpc: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMini
|
|
|
868
786
|
type: z.ZodMiniLiteral<"keychain">;
|
|
869
787
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
870
788
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
871
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
872
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
873
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
874
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
875
|
-
init: z.ZodMiniObject<{
|
|
876
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
877
|
-
threshold: z.ZodMiniNumber<number>;
|
|
878
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
879
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
880
|
-
weight: z.ZodMiniNumber<number>;
|
|
881
|
-
}, z.core.$strip>>>;
|
|
882
|
-
}, z.core.$strip>;
|
|
883
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
884
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
789
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
885
790
|
signature: z.ZodMiniObject<{
|
|
886
791
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
887
792
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -923,14 +828,15 @@ export declare const ListSignedToRpc: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMini
|
|
|
923
828
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
924
829
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
925
830
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
926
|
-
|
|
927
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
928
|
-
threshold: z.ZodMiniNumber<number>;
|
|
831
|
+
config: z.ZodMiniObject<{
|
|
929
832
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
930
833
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
931
834
|
weight: z.ZodMiniNumber<number>;
|
|
932
835
|
}, z.core.$strip>>>;
|
|
933
|
-
|
|
836
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
837
|
+
threshold: z.ZodMiniNumber<number>;
|
|
838
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
839
|
+
}, z.core.$strip>;
|
|
934
840
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
935
841
|
type: z.ZodMiniLiteral<"multisig">;
|
|
936
842
|
}, z.core.$strip>]>>;
|
|
@@ -966,20 +872,7 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
966
872
|
type: z.ZodMiniLiteral<"keychain">;
|
|
967
873
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
968
874
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
969
|
-
}, z.core.$strip>, z.
|
|
970
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
971
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
972
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
973
|
-
init: z.ZodMiniObject<{
|
|
974
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
975
|
-
threshold: z.ZodMiniNumber<number>;
|
|
976
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
977
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
978
|
-
weight: z.ZodMiniNumber<number>;
|
|
979
|
-
}, z.core.$strip>>>;
|
|
980
|
-
}, z.core.$strip>;
|
|
981
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
982
|
-
}, z.core.$strict>]>]>;
|
|
875
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
983
876
|
}, z.core.$strip>;
|
|
984
877
|
/** RPC AA authorization list schema. */
|
|
985
878
|
export declare const ListRpc: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -1012,20 +905,7 @@ export declare const ListRpc: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
|
1012
905
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1013
906
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1014
907
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1015
|
-
}, z.core.$strip>, z.
|
|
1016
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1017
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1018
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1019
|
-
init: z.ZodMiniObject<{
|
|
1020
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1021
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1022
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1023
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1024
|
-
weight: z.ZodMiniNumber<number>;
|
|
1025
|
-
}, z.core.$strip>>>;
|
|
1026
|
-
}, z.core.$strip>;
|
|
1027
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1028
|
-
}, z.core.$strict>]>]>;
|
|
908
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1029
909
|
}, z.core.$strip>>>;
|
|
1030
910
|
/** Unsigned AA authorization tuple schema. */
|
|
1031
911
|
export declare const TupleUnsigned: z.ZodMiniReadonly<z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniTemplateLiteral<`0x${string}`>], null>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AuthorizationTempo.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/AuthorizationTempo.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAG7B,wCAAwC;AACxC,eAAO,MAAM,QAAQ;;;;;iBAKnB,CAAA;AAEF,uFAAuF;AACvF,eAAO,MAAM,aAAa;;;;;iBAKxB,CAAA;AAEF,sCAAsC;AACtC,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"AuthorizationTempo.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/AuthorizationTempo.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAG7B,wCAAwC;AACxC,eAAO,MAAM,QAAQ;;;;;iBAKnB,CAAA;AAEF,uFAAuF;AACvF,eAAO,MAAM,aAAa;;;;;iBAKxB,CAAA;AAEF,sCAAsC;AACtC,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAKjB,CAAA;AAEF,qFAAqF;AACrF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAKtB,CAAA;AAEF,8CAA8C;AAC9C,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAKjB,CAAA;AAEF,mDAAmD;AACnD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAA8B,CAAA;AAErD,+BAA+B;AAC/B,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAA8B,CAAA;AAE7D,8EAA8E;AAC9E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAAwC,CAAA;AAE5E,oCAAoC;AACpC,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAA0C,CAAA;AAE3D,mFAAmF;AACnF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAA+C,CAAA;AAErE,2CAA2C;AAC3C,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAA8B,CAAA;AAErD,0FAA0F;AAC1F,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAAmC,CAAA;AAE/D,mCAAmC;AACnC,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAKd,CAAA;AAEF,wCAAwC;AACxC,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAA2B,CAAA;AAE/C,8CAA8C;AAC9C,eAAO,MAAM,aAAa,+KAEzB,CAAA;AAED,4CAA4C;AAC5C,eAAO,MAAM,WAAW,wNAEvB,CAAA;AAED,qCAAqC;AACrC,eAAO,MAAM,KAAK,kaAAwC,CAAA;AAE1D,0CAA0C;AAC1C,eAAO,MAAM,SAAS,qcAA6B,CAAA;AAEnD,iDAAiD;AACjD,eAAO,MAAM,eAAe,2PAAmC,CAAA"}
|