ox 1.7.2 → 1.7.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/CHANGELOG.md +43 -0
- package/dist/core/AbiEvent.d.ts.map +1 -1
- package/dist/core/AbiEvent.js +10 -9
- package/dist/core/AbiEvent.js.map +1 -1
- package/dist/core/Blobs.d.ts.map +1 -1
- package/dist/core/Blobs.js +6 -2
- package/dist/core/Blobs.js.map +1 -1
- package/dist/core/Signature.d.ts +6 -5
- package/dist/core/Signature.d.ts.map +1 -1
- package/dist/core/Signature.js +17 -7
- package/dist/core/Signature.js.map +1 -1
- package/dist/core/Siwe.d.ts.map +1 -1
- package/dist/core/Siwe.js +21 -1
- package/dist/core/Siwe.js.map +1 -1
- package/dist/tempo/KeyAuthorization.d.ts +43 -39
- package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/tempo/KeyAuthorization.js +24 -4
- package/dist/tempo/KeyAuthorization.js.map +1 -1
- package/dist/tempo/MultisigConfig.d.ts +18 -15
- package/dist/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.js +49 -20
- package/dist/tempo/MultisigConfig.js.map +1 -1
- package/dist/tempo/MultisigOperation.d.ts +45 -28
- package/dist/tempo/MultisigOperation.d.ts.map +1 -1
- package/dist/tempo/MultisigOperation.js +81 -131
- package/dist/tempo/MultisigOperation.js.map +1 -1
- package/dist/tempo/MultisigSimulation.d.ts +85 -0
- package/dist/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/tempo/MultisigSimulation.js +112 -0
- package/dist/tempo/MultisigSimulation.js.map +1 -0
- package/dist/tempo/RpcSchemaTempo.d.ts +20 -10
- package/dist/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +74 -153
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +130 -187
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/tempo/TransactionRequest.d.ts +9 -7
- package/dist/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/tempo/TransactionRequest.js +12 -7
- package/dist/tempo/TransactionRequest.js.map +1 -1
- package/dist/tempo/index.d.ts +7 -5
- package/dist/tempo/index.d.ts.map +1 -1
- package/dist/tempo/index.js +7 -5
- package/dist/tempo/index.js.map +1 -1
- package/dist/zod/tempo/AuthorizationTempo.d.ts +360 -140
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +247 -487
- package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.js +29 -31
- package/dist/zod/tempo/KeyAuthorization.js.map +1 -1
- package/dist/zod/tempo/MultisigOperation.d.ts +0 -10
- package/dist/zod/tempo/MultisigOperation.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigOperation.js +0 -3
- package/dist/zod/tempo/MultisigOperation.js.map +1 -1
- package/dist/zod/tempo/MultisigSimulation.d.ts +52 -0
- package/dist/zod/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigSimulation.js +44 -0
- package/dist/zod/tempo/MultisigSimulation.js.map +1 -0
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +357 -422
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.js +19 -10
- package/dist/zod/tempo/RpcSchemaTempo.js.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.d.ts +108 -42
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +21 -19
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +678 -666
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +580 -619
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.js +18 -10
- package/dist/zod/tempo/TransactionRequest.js.map +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts +327 -213
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts +105 -3
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts.map +1 -1
- package/dist/zod/tempo/z.d.ts +1 -1
- package/dist/zod/tempo/z.d.ts.map +1 -1
- package/dist/zod/tempo/z.js +1 -1
- package/dist/zod/tempo/z.js.map +1 -1
- package/package.json +9 -9
- package/src/core/AbiEvent.ts +11 -9
- package/src/core/Blobs.ts +6 -2
- package/src/core/Signature.ts +41 -11
- package/src/core/Siwe.ts +20 -1
- package/src/core/_test/AbiEvent.test.ts +45 -0
- package/src/core/_test/Blobs.test.ts +22 -0
- package/src/core/_test/Signature.test.ts +166 -0
- package/src/core/_test/Siwe.test.ts +100 -1
- package/src/tempo/AuthorizationTempo.test.ts +8 -0
- package/src/tempo/KeyAuthorization.test-d.ts +16 -74
- package/src/tempo/KeyAuthorization.test.ts +113 -14
- package/src/tempo/KeyAuthorization.ts +110 -66
- package/src/tempo/MultisigConfig.test.ts +44 -20
- package/src/tempo/MultisigConfig.ts +65 -23
- package/src/tempo/MultisigOperation.test-d.ts +8 -6
- package/src/tempo/MultisigOperation.test.ts +187 -591
- package/src/tempo/MultisigOperation.ts +129 -205
- package/src/tempo/MultisigSimulation.test-d.ts +33 -0
- package/src/tempo/MultisigSimulation.test.ts +194 -0
- package/src/tempo/MultisigSimulation.ts +192 -0
- package/src/tempo/RpcSchemaTempo.test-d.ts +45 -10
- package/src/tempo/RpcSchemaTempo.ts +15 -6
- package/src/tempo/SignatureEnvelope.test-d.ts +27 -101
- package/src/tempo/SignatureEnvelope.test.ts +330 -533
- package/src/tempo/SignatureEnvelope.ts +198 -310
- package/src/tempo/Transaction.test.ts +61 -0
- package/src/tempo/TransactionRequest.test-d.ts +7 -7
- package/src/tempo/TransactionRequest.test.ts +81 -223
- package/src/tempo/TransactionRequest.ts +34 -13
- package/src/tempo/index.ts +7 -5
- package/src/tempo/multisig.e2e.test.ts +329 -818
- package/src/version.ts +1 -1
- package/src/zod/tempo/KeyAuthorization.ts +50 -39
- package/src/zod/tempo/MultisigOperation.ts +0 -3
- package/src/zod/tempo/MultisigSimulation.ts +53 -0
- package/src/zod/tempo/RpcSchemaTempo.ts +20 -10
- package/src/zod/tempo/SignatureEnvelope.ts +46 -59
- package/src/zod/tempo/TransactionRequest.ts +28 -14
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +66 -30
- package/src/zod/tempo/_test/MultisigOperation.test.ts +0 -2
- package/src/zod/tempo/_test/MultisigSimulation.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigSimulation.test.ts +53 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test-d.ts +19 -2
- package/src/zod/tempo/_test/RpcSchemaTempo.test.ts +46 -4
- package/src/zod/tempo/_test/SignatureEnvelope.test.ts +108 -129
- package/src/zod/tempo/_test/TransactionRequest.test.ts +17 -168
- package/src/zod/tempo/z.ts +1 -1
- package/dist/tempo/MultisigWitness.d.ts +0 -106
- package/dist/tempo/MultisigWitness.d.ts.map +0 -1
- package/dist/tempo/MultisigWitness.js +0 -118
- package/dist/tempo/MultisigWitness.js.map +0 -1
- package/dist/zod/tempo/MultisigWitness.d.ts +0 -152
- package/dist/zod/tempo/MultisigWitness.d.ts.map +0 -1
- package/dist/zod/tempo/MultisigWitness.js +0 -76
- package/dist/zod/tempo/MultisigWitness.js.map +0 -1
- package/src/tempo/MultisigWitness.test-d.ts +0 -42
- package/src/tempo/MultisigWitness.test.ts +0 -288
- package/src/tempo/MultisigWitness.ts +0 -210
- package/src/zod/tempo/MultisigWitness.ts +0 -101
- package/src/zod/tempo/_test/MultisigWitness.test-d.ts +0 -13
- package/src/zod/tempo/_test/MultisigWitness.test.ts +0 -149
|
@@ -44,19 +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.ZodMiniObject<{
|
|
48
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
49
|
-
config: z.ZodMiniObject<{
|
|
50
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
51
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
52
|
-
weight: z.ZodMiniNumber<number>;
|
|
53
|
-
}, z.core.$strip>>>;
|
|
54
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
55
|
-
threshold: z.ZodMiniNumber<number>;
|
|
56
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
57
|
-
}, z.core.$strip>;
|
|
58
|
-
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[]>>>;
|
|
59
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
47
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
60
48
|
signature: z.ZodMiniObject<{
|
|
61
49
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
62
50
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -107,7 +95,41 @@ export declare const Signed: z.ZodMiniObject<{
|
|
|
107
95
|
threshold: z.ZodMiniNumber<number>;
|
|
108
96
|
version: z.ZodMiniBigInt<bigint>;
|
|
109
97
|
}, z.core.$strip>;
|
|
110
|
-
signatures: z.
|
|
98
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
99
|
+
signature: z.ZodMiniObject<{
|
|
100
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
101
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
102
|
+
yParity: z.ZodMiniNumber<number>;
|
|
103
|
+
}, z.core.$strip>;
|
|
104
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
105
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
106
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
107
|
+
publicKey: z.ZodMiniObject<{
|
|
108
|
+
prefix: z.ZodMiniNumber<number>;
|
|
109
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
110
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
111
|
+
}, z.core.$strip>;
|
|
112
|
+
signature: z.ZodMiniObject<{
|
|
113
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
114
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
115
|
+
}, z.core.$strip>;
|
|
116
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
117
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
118
|
+
metadata: z.ZodMiniObject<{
|
|
119
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
120
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
121
|
+
}, z.core.$strip>;
|
|
122
|
+
publicKey: z.ZodMiniObject<{
|
|
123
|
+
prefix: z.ZodMiniNumber<number>;
|
|
124
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
125
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
126
|
+
}, z.core.$strip>;
|
|
127
|
+
signature: z.ZodMiniObject<{
|
|
128
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
129
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
130
|
+
}, z.core.$strip>;
|
|
131
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
132
|
+
}, z.core.$strip>]>>>;
|
|
111
133
|
type: z.ZodMiniLiteral<"multisig">;
|
|
112
134
|
}, z.core.$strip>]>>;
|
|
113
135
|
}, z.core.$strip>;
|
|
@@ -142,19 +164,7 @@ export declare const SignedToRpc: z.ZodMiniObject<{
|
|
|
142
164
|
type: z.ZodMiniLiteral<"keychain">;
|
|
143
165
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
144
166
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
145
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
146
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
147
|
-
config: z.ZodMiniObject<{
|
|
148
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
149
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
150
|
-
weight: z.ZodMiniNumber<number>;
|
|
151
|
-
}, z.core.$strip>>>;
|
|
152
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
153
|
-
threshold: z.ZodMiniNumber<number>;
|
|
154
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
155
|
-
}, z.core.$strip>;
|
|
156
|
-
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[]>>>;
|
|
157
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
167
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
158
168
|
signature: z.ZodMiniObject<{
|
|
159
169
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
160
170
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -205,7 +215,41 @@ export declare const SignedToRpc: z.ZodMiniObject<{
|
|
|
205
215
|
threshold: z.ZodMiniNumber<number>;
|
|
206
216
|
version: z.ZodMiniBigInt<bigint>;
|
|
207
217
|
}, z.core.$strip>;
|
|
208
|
-
signatures: z.
|
|
218
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
219
|
+
signature: z.ZodMiniObject<{
|
|
220
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
221
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
222
|
+
yParity: z.ZodMiniNumber<number>;
|
|
223
|
+
}, z.core.$strip>;
|
|
224
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
225
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
226
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
227
|
+
publicKey: z.ZodMiniObject<{
|
|
228
|
+
prefix: z.ZodMiniNumber<number>;
|
|
229
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
230
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
231
|
+
}, z.core.$strip>;
|
|
232
|
+
signature: z.ZodMiniObject<{
|
|
233
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
234
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
235
|
+
}, z.core.$strip>;
|
|
236
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
237
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
238
|
+
metadata: z.ZodMiniObject<{
|
|
239
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
240
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
241
|
+
}, z.core.$strip>;
|
|
242
|
+
publicKey: z.ZodMiniObject<{
|
|
243
|
+
prefix: z.ZodMiniNumber<number>;
|
|
244
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
245
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
246
|
+
}, z.core.$strip>;
|
|
247
|
+
signature: z.ZodMiniObject<{
|
|
248
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
249
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
250
|
+
}, z.core.$strip>;
|
|
251
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
252
|
+
}, z.core.$strip>]>>>;
|
|
209
253
|
type: z.ZodMiniLiteral<"multisig">;
|
|
210
254
|
}, z.core.$strip>]>>;
|
|
211
255
|
}, z.core.$strip>;
|
|
@@ -265,7 +309,41 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
265
309
|
threshold: z.ZodMiniNumber<number>;
|
|
266
310
|
version: z.ZodMiniBigInt<bigint>;
|
|
267
311
|
}, z.core.$strip>;
|
|
268
|
-
signatures: z.
|
|
312
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
313
|
+
signature: z.ZodMiniObject<{
|
|
314
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
315
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
316
|
+
yParity: z.ZodMiniNumber<number>;
|
|
317
|
+
}, z.core.$strip>;
|
|
318
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
319
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
320
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
321
|
+
publicKey: z.ZodMiniObject<{
|
|
322
|
+
prefix: z.ZodMiniNumber<number>;
|
|
323
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
324
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
325
|
+
}, z.core.$strip>;
|
|
326
|
+
signature: z.ZodMiniObject<{
|
|
327
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
328
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
329
|
+
}, z.core.$strip>;
|
|
330
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
331
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
332
|
+
metadata: z.ZodMiniObject<{
|
|
333
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
334
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
335
|
+
}, z.core.$strip>;
|
|
336
|
+
publicKey: z.ZodMiniObject<{
|
|
337
|
+
prefix: z.ZodMiniNumber<number>;
|
|
338
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
339
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
340
|
+
}, z.core.$strip>;
|
|
341
|
+
signature: z.ZodMiniObject<{
|
|
342
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
343
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
344
|
+
}, z.core.$strip>;
|
|
345
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
346
|
+
}, z.core.$strip>]>>>;
|
|
269
347
|
type: z.ZodMiniLiteral<"multisig">;
|
|
270
348
|
}, z.core.$strip>]>;
|
|
271
349
|
}, z.core.$strip>;
|
|
@@ -325,7 +403,41 @@ export declare const DomainList: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObjec
|
|
|
325
403
|
threshold: z.ZodMiniNumber<number>;
|
|
326
404
|
version: z.ZodMiniBigInt<bigint>;
|
|
327
405
|
}, z.core.$strip>;
|
|
328
|
-
signatures: z.
|
|
406
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
407
|
+
signature: z.ZodMiniObject<{
|
|
408
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
409
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
410
|
+
yParity: z.ZodMiniNumber<number>;
|
|
411
|
+
}, z.core.$strip>;
|
|
412
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
413
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
414
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
415
|
+
publicKey: z.ZodMiniObject<{
|
|
416
|
+
prefix: z.ZodMiniNumber<number>;
|
|
417
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
418
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
419
|
+
}, z.core.$strip>;
|
|
420
|
+
signature: z.ZodMiniObject<{
|
|
421
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
422
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
423
|
+
}, z.core.$strip>;
|
|
424
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
425
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
426
|
+
metadata: z.ZodMiniObject<{
|
|
427
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
428
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
429
|
+
}, z.core.$strip>;
|
|
430
|
+
publicKey: z.ZodMiniObject<{
|
|
431
|
+
prefix: z.ZodMiniNumber<number>;
|
|
432
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
433
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
434
|
+
}, z.core.$strip>;
|
|
435
|
+
signature: z.ZodMiniObject<{
|
|
436
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
437
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
438
|
+
}, z.core.$strip>;
|
|
439
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
440
|
+
}, z.core.$strip>]>>>;
|
|
329
441
|
type: z.ZodMiniLiteral<"multisig">;
|
|
330
442
|
}, z.core.$strip>]>;
|
|
331
443
|
}, z.core.$strip>>>;
|
|
@@ -360,19 +472,7 @@ export declare const AuthorizationTempo: z.ZodMiniUnion<readonly [z.ZodMiniObjec
|
|
|
360
472
|
type: z.ZodMiniLiteral<"keychain">;
|
|
361
473
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
362
474
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
363
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
364
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
365
|
-
config: z.ZodMiniObject<{
|
|
366
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
367
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
368
|
-
weight: z.ZodMiniNumber<number>;
|
|
369
|
-
}, z.core.$strip>>>;
|
|
370
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
371
|
-
threshold: z.ZodMiniNumber<number>;
|
|
372
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
373
|
-
}, z.core.$strip>;
|
|
374
|
-
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[]>>>;
|
|
375
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
475
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
376
476
|
signature: z.ZodMiniObject<{
|
|
377
477
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
378
478
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -423,7 +523,41 @@ export declare const AuthorizationTempo: z.ZodMiniUnion<readonly [z.ZodMiniObjec
|
|
|
423
523
|
threshold: z.ZodMiniNumber<number>;
|
|
424
524
|
version: z.ZodMiniBigInt<bigint>;
|
|
425
525
|
}, z.core.$strip>;
|
|
426
|
-
signatures: z.
|
|
526
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
527
|
+
signature: z.ZodMiniObject<{
|
|
528
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
529
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
530
|
+
yParity: z.ZodMiniNumber<number>;
|
|
531
|
+
}, z.core.$strip>;
|
|
532
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
533
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
534
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
535
|
+
publicKey: z.ZodMiniObject<{
|
|
536
|
+
prefix: z.ZodMiniNumber<number>;
|
|
537
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
538
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
539
|
+
}, z.core.$strip>;
|
|
540
|
+
signature: z.ZodMiniObject<{
|
|
541
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
542
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
543
|
+
}, z.core.$strip>;
|
|
544
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
545
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
546
|
+
metadata: z.ZodMiniObject<{
|
|
547
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
548
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
549
|
+
}, z.core.$strip>;
|
|
550
|
+
publicKey: z.ZodMiniObject<{
|
|
551
|
+
prefix: z.ZodMiniNumber<number>;
|
|
552
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
553
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
554
|
+
}, z.core.$strip>;
|
|
555
|
+
signature: z.ZodMiniObject<{
|
|
556
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
557
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
558
|
+
}, z.core.$strip>;
|
|
559
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
560
|
+
}, z.core.$strip>]>>>;
|
|
427
561
|
type: z.ZodMiniLiteral<"multisig">;
|
|
428
562
|
}, z.core.$strip>]>>;
|
|
429
563
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
@@ -463,19 +597,7 @@ export declare const AuthorizationTempoToRpc: z.ZodMiniUnion<readonly [z.ZodMini
|
|
|
463
597
|
type: z.ZodMiniLiteral<"keychain">;
|
|
464
598
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
465
599
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
466
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
467
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
468
|
-
config: z.ZodMiniObject<{
|
|
469
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
470
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
471
|
-
weight: z.ZodMiniNumber<number>;
|
|
472
|
-
}, z.core.$strip>>>;
|
|
473
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
474
|
-
threshold: z.ZodMiniNumber<number>;
|
|
475
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
476
|
-
}, z.core.$strip>;
|
|
477
|
-
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[]>>>;
|
|
478
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
600
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
479
601
|
signature: z.ZodMiniObject<{
|
|
480
602
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
481
603
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -526,7 +648,41 @@ export declare const AuthorizationTempoToRpc: z.ZodMiniUnion<readonly [z.ZodMini
|
|
|
526
648
|
threshold: z.ZodMiniNumber<number>;
|
|
527
649
|
version: z.ZodMiniBigInt<bigint>;
|
|
528
650
|
}, z.core.$strip>;
|
|
529
|
-
signatures: z.
|
|
651
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
652
|
+
signature: z.ZodMiniObject<{
|
|
653
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
654
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
655
|
+
yParity: z.ZodMiniNumber<number>;
|
|
656
|
+
}, z.core.$strip>;
|
|
657
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
658
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
659
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
660
|
+
publicKey: z.ZodMiniObject<{
|
|
661
|
+
prefix: z.ZodMiniNumber<number>;
|
|
662
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
663
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
664
|
+
}, z.core.$strip>;
|
|
665
|
+
signature: z.ZodMiniObject<{
|
|
666
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
667
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
668
|
+
}, z.core.$strip>;
|
|
669
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
670
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
671
|
+
metadata: z.ZodMiniObject<{
|
|
672
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
673
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
674
|
+
}, z.core.$strip>;
|
|
675
|
+
publicKey: z.ZodMiniObject<{
|
|
676
|
+
prefix: z.ZodMiniNumber<number>;
|
|
677
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
678
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
679
|
+
}, z.core.$strip>;
|
|
680
|
+
signature: z.ZodMiniObject<{
|
|
681
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
682
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
683
|
+
}, z.core.$strip>;
|
|
684
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
685
|
+
}, z.core.$strip>]>>>;
|
|
530
686
|
type: z.ZodMiniLiteral<"multisig">;
|
|
531
687
|
}, z.core.$strip>]>>;
|
|
532
688
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
@@ -566,19 +722,7 @@ export declare const List: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<reado
|
|
|
566
722
|
type: z.ZodMiniLiteral<"keychain">;
|
|
567
723
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
568
724
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
569
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
570
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
571
|
-
config: z.ZodMiniObject<{
|
|
572
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
573
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
574
|
-
weight: z.ZodMiniNumber<number>;
|
|
575
|
-
}, z.core.$strip>>>;
|
|
576
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
577
|
-
threshold: z.ZodMiniNumber<number>;
|
|
578
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
579
|
-
}, z.core.$strip>;
|
|
580
|
-
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[]>>>;
|
|
581
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
725
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
582
726
|
signature: z.ZodMiniObject<{
|
|
583
727
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
584
728
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -629,7 +773,41 @@ export declare const List: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<reado
|
|
|
629
773
|
threshold: z.ZodMiniNumber<number>;
|
|
630
774
|
version: z.ZodMiniBigInt<bigint>;
|
|
631
775
|
}, z.core.$strip>;
|
|
632
|
-
signatures: z.
|
|
776
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
777
|
+
signature: z.ZodMiniObject<{
|
|
778
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
779
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
780
|
+
yParity: z.ZodMiniNumber<number>;
|
|
781
|
+
}, z.core.$strip>;
|
|
782
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
783
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
784
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
785
|
+
publicKey: z.ZodMiniObject<{
|
|
786
|
+
prefix: z.ZodMiniNumber<number>;
|
|
787
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
788
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
789
|
+
}, z.core.$strip>;
|
|
790
|
+
signature: z.ZodMiniObject<{
|
|
791
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
792
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
793
|
+
}, z.core.$strip>;
|
|
794
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
795
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
796
|
+
metadata: z.ZodMiniObject<{
|
|
797
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
798
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
799
|
+
}, z.core.$strip>;
|
|
800
|
+
publicKey: z.ZodMiniObject<{
|
|
801
|
+
prefix: z.ZodMiniNumber<number>;
|
|
802
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
803
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
804
|
+
}, z.core.$strip>;
|
|
805
|
+
signature: z.ZodMiniObject<{
|
|
806
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
807
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
808
|
+
}, z.core.$strip>;
|
|
809
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
810
|
+
}, z.core.$strip>]>>>;
|
|
633
811
|
type: z.ZodMiniLiteral<"multisig">;
|
|
634
812
|
}, z.core.$strip>]>>;
|
|
635
813
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
@@ -669,19 +847,7 @@ export declare const ListToRpc: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<
|
|
|
669
847
|
type: z.ZodMiniLiteral<"keychain">;
|
|
670
848
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
671
849
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
672
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
673
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
674
|
-
config: z.ZodMiniObject<{
|
|
675
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
676
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
677
|
-
weight: z.ZodMiniNumber<number>;
|
|
678
|
-
}, z.core.$strip>>>;
|
|
679
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
680
|
-
threshold: z.ZodMiniNumber<number>;
|
|
681
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
682
|
-
}, z.core.$strip>;
|
|
683
|
-
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[]>>>;
|
|
684
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
850
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
685
851
|
signature: z.ZodMiniObject<{
|
|
686
852
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
687
853
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -732,7 +898,41 @@ export declare const ListToRpc: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<
|
|
|
732
898
|
threshold: z.ZodMiniNumber<number>;
|
|
733
899
|
version: z.ZodMiniBigInt<bigint>;
|
|
734
900
|
}, z.core.$strip>;
|
|
735
|
-
signatures: z.
|
|
901
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
902
|
+
signature: z.ZodMiniObject<{
|
|
903
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
904
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
905
|
+
yParity: z.ZodMiniNumber<number>;
|
|
906
|
+
}, z.core.$strip>;
|
|
907
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
908
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
909
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
910
|
+
publicKey: z.ZodMiniObject<{
|
|
911
|
+
prefix: z.ZodMiniNumber<number>;
|
|
912
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
913
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
914
|
+
}, z.core.$strip>;
|
|
915
|
+
signature: z.ZodMiniObject<{
|
|
916
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
917
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
918
|
+
}, z.core.$strip>;
|
|
919
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
920
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
921
|
+
metadata: z.ZodMiniObject<{
|
|
922
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
923
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
924
|
+
}, z.core.$strip>;
|
|
925
|
+
publicKey: z.ZodMiniObject<{
|
|
926
|
+
prefix: z.ZodMiniNumber<number>;
|
|
927
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
928
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
929
|
+
}, z.core.$strip>;
|
|
930
|
+
signature: z.ZodMiniObject<{
|
|
931
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
932
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
933
|
+
}, z.core.$strip>;
|
|
934
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
935
|
+
}, z.core.$strip>]>>>;
|
|
736
936
|
type: z.ZodMiniLiteral<"multisig">;
|
|
737
937
|
}, z.core.$strip>]>>;
|
|
738
938
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
@@ -772,19 +972,7 @@ export declare const ListSigned: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObjec
|
|
|
772
972
|
type: z.ZodMiniLiteral<"keychain">;
|
|
773
973
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
774
974
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
775
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
776
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
777
|
-
config: z.ZodMiniObject<{
|
|
778
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
779
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
780
|
-
weight: z.ZodMiniNumber<number>;
|
|
781
|
-
}, z.core.$strip>>>;
|
|
782
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
783
|
-
threshold: z.ZodMiniNumber<number>;
|
|
784
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
785
|
-
}, z.core.$strip>;
|
|
786
|
-
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[]>>>;
|
|
787
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
975
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
788
976
|
signature: z.ZodMiniObject<{
|
|
789
977
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
790
978
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -835,7 +1023,41 @@ export declare const ListSigned: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObjec
|
|
|
835
1023
|
threshold: z.ZodMiniNumber<number>;
|
|
836
1024
|
version: z.ZodMiniBigInt<bigint>;
|
|
837
1025
|
}, z.core.$strip>;
|
|
838
|
-
signatures: z.
|
|
1026
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1027
|
+
signature: z.ZodMiniObject<{
|
|
1028
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1029
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1030
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1031
|
+
}, z.core.$strip>;
|
|
1032
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1033
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1034
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1035
|
+
publicKey: z.ZodMiniObject<{
|
|
1036
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1037
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1038
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1039
|
+
}, z.core.$strip>;
|
|
1040
|
+
signature: z.ZodMiniObject<{
|
|
1041
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1042
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1043
|
+
}, z.core.$strip>;
|
|
1044
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1045
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1046
|
+
metadata: z.ZodMiniObject<{
|
|
1047
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1048
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1049
|
+
}, z.core.$strip>;
|
|
1050
|
+
publicKey: z.ZodMiniObject<{
|
|
1051
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1052
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1053
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1054
|
+
}, z.core.$strip>;
|
|
1055
|
+
signature: z.ZodMiniObject<{
|
|
1056
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1057
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1058
|
+
}, z.core.$strip>;
|
|
1059
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1060
|
+
}, z.core.$strip>]>>>;
|
|
839
1061
|
type: z.ZodMiniLiteral<"multisig">;
|
|
840
1062
|
}, z.core.$strip>]>>;
|
|
841
1063
|
}, z.core.$strip>>>;
|
|
@@ -870,19 +1092,7 @@ export declare const ListSignedToRpc: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMini
|
|
|
870
1092
|
type: z.ZodMiniLiteral<"keychain">;
|
|
871
1093
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
872
1094
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
873
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
874
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
875
|
-
config: z.ZodMiniObject<{
|
|
876
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
877
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
878
|
-
weight: z.ZodMiniNumber<number>;
|
|
879
|
-
}, z.core.$strip>>>;
|
|
880
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
881
|
-
threshold: z.ZodMiniNumber<number>;
|
|
882
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
883
|
-
}, z.core.$strip>;
|
|
884
|
-
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[]>>>;
|
|
885
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1095
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
886
1096
|
signature: z.ZodMiniObject<{
|
|
887
1097
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
888
1098
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -933,7 +1143,41 @@ export declare const ListSignedToRpc: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMini
|
|
|
933
1143
|
threshold: z.ZodMiniNumber<number>;
|
|
934
1144
|
version: z.ZodMiniBigInt<bigint>;
|
|
935
1145
|
}, z.core.$strip>;
|
|
936
|
-
signatures: z.
|
|
1146
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1147
|
+
signature: z.ZodMiniObject<{
|
|
1148
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1149
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1150
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1151
|
+
}, z.core.$strip>;
|
|
1152
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1153
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1154
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1155
|
+
publicKey: z.ZodMiniObject<{
|
|
1156
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1157
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1158
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1159
|
+
}, z.core.$strip>;
|
|
1160
|
+
signature: z.ZodMiniObject<{
|
|
1161
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1162
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1163
|
+
}, z.core.$strip>;
|
|
1164
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1165
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1166
|
+
metadata: z.ZodMiniObject<{
|
|
1167
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1168
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1169
|
+
}, z.core.$strip>;
|
|
1170
|
+
publicKey: z.ZodMiniObject<{
|
|
1171
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1172
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1173
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1174
|
+
}, z.core.$strip>;
|
|
1175
|
+
signature: z.ZodMiniObject<{
|
|
1176
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1177
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1178
|
+
}, z.core.$strip>;
|
|
1179
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1180
|
+
}, z.core.$strip>]>>>;
|
|
937
1181
|
type: z.ZodMiniLiteral<"multisig">;
|
|
938
1182
|
}, z.core.$strip>]>>;
|
|
939
1183
|
}, z.core.$strip>>>;
|
|
@@ -968,19 +1212,7 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
968
1212
|
type: z.ZodMiniLiteral<"keychain">;
|
|
969
1213
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
970
1214
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
971
|
-
}, z.core.$strip>, z.
|
|
972
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
973
|
-
config: z.ZodMiniObject<{
|
|
974
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
975
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
976
|
-
weight: z.ZodMiniNumber<number>;
|
|
977
|
-
}, z.core.$strip>>>;
|
|
978
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
979
|
-
threshold: z.ZodMiniNumber<number>;
|
|
980
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
981
|
-
}, z.core.$strip>;
|
|
982
|
-
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[]>>>;
|
|
983
|
-
}, z.core.$strict>]>;
|
|
1215
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
984
1216
|
}, z.core.$strip>;
|
|
985
1217
|
/** RPC AA authorization list schema. */
|
|
986
1218
|
export declare const ListRpc: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -1013,19 +1245,7 @@ export declare const ListRpc: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
|
1013
1245
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1014
1246
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1015
1247
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1016
|
-
}, z.core.$strip>, z.
|
|
1017
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1018
|
-
config: z.ZodMiniObject<{
|
|
1019
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1020
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1021
|
-
weight: z.ZodMiniNumber<number>;
|
|
1022
|
-
}, z.core.$strip>>>;
|
|
1023
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1024
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1025
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
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>]>;
|
|
1248
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1029
1249
|
}, z.core.$strip>>>;
|
|
1030
1250
|
/** Unsigned AA authorization tuple schema. */
|
|
1031
1251
|
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"}
|