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
|
@@ -37,19 +37,7 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
37
37
|
type: z.ZodMiniLiteral<"keychain">;
|
|
38
38
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
39
39
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
40
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
41
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
42
|
-
config: z.ZodMiniObject<{
|
|
43
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
44
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
45
|
-
weight: z.ZodMiniNumber<number>;
|
|
46
|
-
}, z.core.$strip>>>;
|
|
47
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
48
|
-
threshold: z.ZodMiniNumber<number>;
|
|
49
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
50
|
-
}, z.core.$strip>;
|
|
51
|
-
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[]>>>;
|
|
52
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
40
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
53
41
|
signature: z.ZodMiniObject<{
|
|
54
42
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
55
43
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -100,7 +88,41 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
100
88
|
threshold: z.ZodMiniNumber<number>;
|
|
101
89
|
version: z.ZodMiniBigInt<bigint>;
|
|
102
90
|
}, z.core.$strip>;
|
|
103
|
-
signatures: z.
|
|
91
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
92
|
+
signature: z.ZodMiniObject<{
|
|
93
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
94
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
95
|
+
yParity: z.ZodMiniNumber<number>;
|
|
96
|
+
}, z.core.$strip>;
|
|
97
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
98
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
99
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
100
|
+
publicKey: z.ZodMiniObject<{
|
|
101
|
+
prefix: z.ZodMiniNumber<number>;
|
|
102
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
103
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
104
|
+
}, z.core.$strip>;
|
|
105
|
+
signature: z.ZodMiniObject<{
|
|
106
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
107
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
108
|
+
}, z.core.$strip>;
|
|
109
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
110
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
111
|
+
metadata: z.ZodMiniObject<{
|
|
112
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
113
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
114
|
+
}, z.core.$strip>;
|
|
115
|
+
publicKey: z.ZodMiniObject<{
|
|
116
|
+
prefix: z.ZodMiniNumber<number>;
|
|
117
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
118
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
119
|
+
}, z.core.$strip>;
|
|
120
|
+
signature: z.ZodMiniObject<{
|
|
121
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
122
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
123
|
+
}, z.core.$strip>;
|
|
124
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
125
|
+
}, z.core.$strip>]>>>;
|
|
104
126
|
type: z.ZodMiniLiteral<"multisig">;
|
|
105
127
|
}, z.core.$strip>]>>;
|
|
106
128
|
}, z.core.$strip>>>>;
|
|
@@ -143,7 +165,7 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
143
165
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
144
166
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
145
167
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
146
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
168
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
147
169
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
148
170
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
149
171
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -169,87 +191,11 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
169
191
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
170
192
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
171
193
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
172
|
-
}, z.core.$strip>]>, z.
|
|
173
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
174
|
-
config: z.ZodMiniObject<{
|
|
175
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
176
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
177
|
-
weight: z.ZodMiniNumber<number>;
|
|
178
|
-
}, z.core.$strip>>>;
|
|
179
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
180
|
-
threshold: z.ZodMiniNumber<number>;
|
|
181
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
182
|
-
}, z.core.$strip>;
|
|
183
|
-
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[]>>>;
|
|
184
|
-
}, z.core.$strict>]>;
|
|
194
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
185
195
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
186
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
187
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
188
|
-
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
189
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
190
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
191
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
192
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
193
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
194
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
195
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
196
|
-
}, z.core.$strip>>>>;
|
|
197
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
198
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
199
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
200
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
201
|
-
}, z.core.$strip>>>>;
|
|
202
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
203
|
-
signature: z.ZodMiniObject<{
|
|
204
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
205
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
206
|
-
yParity: z.ZodMiniNumber<number>;
|
|
207
|
-
}, z.core.$strip>;
|
|
208
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
209
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
210
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
211
|
-
publicKey: z.ZodMiniObject<{
|
|
212
|
-
prefix: z.ZodMiniNumber<number>;
|
|
213
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
214
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
215
|
-
}, z.core.$strip>;
|
|
216
|
-
signature: z.ZodMiniObject<{
|
|
217
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
218
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
219
|
-
}, z.core.$strip>;
|
|
220
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
221
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
222
|
-
metadata: z.ZodMiniObject<{
|
|
223
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
224
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
225
|
-
}, z.core.$strip>;
|
|
226
|
-
publicKey: z.ZodMiniObject<{
|
|
227
|
-
prefix: z.ZodMiniNumber<number>;
|
|
228
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
229
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
230
|
-
}, z.core.$strip>;
|
|
231
|
-
signature: z.ZodMiniObject<{
|
|
232
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
233
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
234
|
-
}, z.core.$strip>;
|
|
235
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
236
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
237
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
238
|
-
config: z.ZodMiniObject<{
|
|
239
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
240
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
241
|
-
weight: z.ZodMiniNumber<number>;
|
|
242
|
-
}, z.core.$strip>>>;
|
|
243
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
244
|
-
threshold: z.ZodMiniNumber<number>;
|
|
245
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
246
|
-
}, z.core.$strip>;
|
|
247
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
248
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
249
|
-
}, z.core.$strip>]>;
|
|
250
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
251
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
252
196
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
197
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
198
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
253
199
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
254
200
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
255
201
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -308,12 +254,46 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
308
254
|
threshold: z.ZodMiniNumber<number>;
|
|
309
255
|
version: z.ZodMiniBigInt<bigint>;
|
|
310
256
|
}, z.core.$strip>;
|
|
311
|
-
signatures: z.
|
|
257
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
258
|
+
signature: z.ZodMiniObject<{
|
|
259
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
260
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
261
|
+
yParity: z.ZodMiniNumber<number>;
|
|
262
|
+
}, z.core.$strip>;
|
|
263
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
264
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
265
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
266
|
+
publicKey: z.ZodMiniObject<{
|
|
267
|
+
prefix: z.ZodMiniNumber<number>;
|
|
268
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
269
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
270
|
+
}, z.core.$strip>;
|
|
271
|
+
signature: z.ZodMiniObject<{
|
|
272
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
273
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
274
|
+
}, z.core.$strip>;
|
|
275
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
276
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
277
|
+
metadata: z.ZodMiniObject<{
|
|
278
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
279
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
280
|
+
}, z.core.$strip>;
|
|
281
|
+
publicKey: z.ZodMiniObject<{
|
|
282
|
+
prefix: z.ZodMiniNumber<number>;
|
|
283
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
284
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
285
|
+
}, z.core.$strip>;
|
|
286
|
+
signature: z.ZodMiniObject<{
|
|
287
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
288
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
289
|
+
}, z.core.$strip>;
|
|
290
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
291
|
+
}, z.core.$strip>]>>>;
|
|
312
292
|
type: z.ZodMiniLiteral<"multisig">;
|
|
313
293
|
}, z.core.$strip>]>;
|
|
314
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
294
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
315
295
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
316
|
-
}, z.core.$strip
|
|
296
|
+
}, z.core.$strip>>>;
|
|
317
297
|
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
318
298
|
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
319
299
|
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
@@ -344,19 +324,7 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
344
324
|
type: z.ZodMiniLiteral<"keychain">;
|
|
345
325
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
346
326
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
347
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
348
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
349
|
-
config: z.ZodMiniObject<{
|
|
350
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
351
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
352
|
-
weight: z.ZodMiniNumber<number>;
|
|
353
|
-
}, z.core.$strip>>>;
|
|
354
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
355
|
-
threshold: z.ZodMiniNumber<number>;
|
|
356
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
357
|
-
}, z.core.$strip>;
|
|
358
|
-
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[]>>>;
|
|
359
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
327
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
360
328
|
signature: z.ZodMiniObject<{
|
|
361
329
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
362
330
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -407,7 +375,41 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
407
375
|
threshold: z.ZodMiniNumber<number>;
|
|
408
376
|
version: z.ZodMiniBigInt<bigint>;
|
|
409
377
|
}, z.core.$strip>;
|
|
410
|
-
signatures: z.
|
|
378
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
379
|
+
signature: z.ZodMiniObject<{
|
|
380
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
381
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
382
|
+
yParity: z.ZodMiniNumber<number>;
|
|
383
|
+
}, z.core.$strip>;
|
|
384
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
385
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
386
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
387
|
+
publicKey: z.ZodMiniObject<{
|
|
388
|
+
prefix: z.ZodMiniNumber<number>;
|
|
389
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
390
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
391
|
+
}, z.core.$strip>;
|
|
392
|
+
signature: z.ZodMiniObject<{
|
|
393
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
394
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
395
|
+
}, z.core.$strip>;
|
|
396
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
397
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
398
|
+
metadata: z.ZodMiniObject<{
|
|
399
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
400
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
401
|
+
}, z.core.$strip>;
|
|
402
|
+
publicKey: z.ZodMiniObject<{
|
|
403
|
+
prefix: z.ZodMiniNumber<number>;
|
|
404
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
405
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
406
|
+
}, z.core.$strip>;
|
|
407
|
+
signature: z.ZodMiniObject<{
|
|
408
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
409
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
410
|
+
}, z.core.$strip>;
|
|
411
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
412
|
+
}, z.core.$strip>]>>>;
|
|
411
413
|
type: z.ZodMiniLiteral<"multisig">;
|
|
412
414
|
}, z.core.$strip>]>>;
|
|
413
415
|
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
@@ -453,19 +455,7 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
453
455
|
type: z.ZodMiniLiteral<"keychain">;
|
|
454
456
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
455
457
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
456
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
457
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
458
|
-
config: z.ZodMiniObject<{
|
|
459
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
460
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
461
|
-
weight: z.ZodMiniNumber<number>;
|
|
462
|
-
}, z.core.$strip>>>;
|
|
463
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
464
|
-
threshold: z.ZodMiniNumber<number>;
|
|
465
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
466
|
-
}, z.core.$strip>;
|
|
467
|
-
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[]>>>;
|
|
468
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
458
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
469
459
|
signature: z.ZodMiniObject<{
|
|
470
460
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
471
461
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -516,7 +506,41 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
516
506
|
threshold: z.ZodMiniNumber<number>;
|
|
517
507
|
version: z.ZodMiniBigInt<bigint>;
|
|
518
508
|
}, z.core.$strip>;
|
|
519
|
-
signatures: z.
|
|
509
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
510
|
+
signature: z.ZodMiniObject<{
|
|
511
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
512
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
513
|
+
yParity: z.ZodMiniNumber<number>;
|
|
514
|
+
}, z.core.$strip>;
|
|
515
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
516
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
517
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
518
|
+
publicKey: z.ZodMiniObject<{
|
|
519
|
+
prefix: z.ZodMiniNumber<number>;
|
|
520
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
521
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
522
|
+
}, z.core.$strip>;
|
|
523
|
+
signature: z.ZodMiniObject<{
|
|
524
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
525
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
526
|
+
}, z.core.$strip>;
|
|
527
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
528
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
529
|
+
metadata: z.ZodMiniObject<{
|
|
530
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
531
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
532
|
+
}, z.core.$strip>;
|
|
533
|
+
publicKey: z.ZodMiniObject<{
|
|
534
|
+
prefix: z.ZodMiniNumber<number>;
|
|
535
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
536
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
537
|
+
}, z.core.$strip>;
|
|
538
|
+
signature: z.ZodMiniObject<{
|
|
539
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
540
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
541
|
+
}, z.core.$strip>;
|
|
542
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
543
|
+
}, z.core.$strip>]>>>;
|
|
520
544
|
type: z.ZodMiniLiteral<"multisig">;
|
|
521
545
|
}, z.core.$strip>]>>;
|
|
522
546
|
}, z.core.$strip>>>>;
|
|
@@ -559,7 +583,7 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
559
583
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
560
584
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
561
585
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
562
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
586
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
563
587
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
564
588
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
565
589
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -585,87 +609,11 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
585
609
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
586
610
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
587
611
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
588
|
-
}, z.core.$strip>]>, z.
|
|
589
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
590
|
-
config: z.ZodMiniObject<{
|
|
591
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
592
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
593
|
-
weight: z.ZodMiniNumber<number>;
|
|
594
|
-
}, z.core.$strip>>>;
|
|
595
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
596
|
-
threshold: z.ZodMiniNumber<number>;
|
|
597
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
598
|
-
}, z.core.$strip>;
|
|
599
|
-
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[]>>>;
|
|
600
|
-
}, z.core.$strict>]>;
|
|
612
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
601
613
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
602
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
603
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
604
|
-
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
605
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
606
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
607
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
608
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
609
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
610
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
611
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
612
|
-
}, z.core.$strip>>>>;
|
|
613
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
614
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
615
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
616
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
617
|
-
}, z.core.$strip>>>>;
|
|
618
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
619
|
-
signature: z.ZodMiniObject<{
|
|
620
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
621
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
622
|
-
yParity: z.ZodMiniNumber<number>;
|
|
623
|
-
}, z.core.$strip>;
|
|
624
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
625
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
626
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
627
|
-
publicKey: z.ZodMiniObject<{
|
|
628
|
-
prefix: z.ZodMiniNumber<number>;
|
|
629
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
630
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
631
|
-
}, z.core.$strip>;
|
|
632
|
-
signature: z.ZodMiniObject<{
|
|
633
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
634
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
635
|
-
}, z.core.$strip>;
|
|
636
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
637
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
638
|
-
metadata: z.ZodMiniObject<{
|
|
639
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
640
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
641
|
-
}, z.core.$strip>;
|
|
642
|
-
publicKey: z.ZodMiniObject<{
|
|
643
|
-
prefix: z.ZodMiniNumber<number>;
|
|
644
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
645
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
646
|
-
}, z.core.$strip>;
|
|
647
|
-
signature: z.ZodMiniObject<{
|
|
648
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
649
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
650
|
-
}, z.core.$strip>;
|
|
651
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
652
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
653
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
654
|
-
config: z.ZodMiniObject<{
|
|
655
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
656
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
657
|
-
weight: z.ZodMiniNumber<number>;
|
|
658
|
-
}, z.core.$strip>>>;
|
|
659
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
660
|
-
threshold: z.ZodMiniNumber<number>;
|
|
661
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
662
|
-
}, z.core.$strip>;
|
|
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>>>;
|
|
664
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
665
|
-
}, z.core.$strip>]>;
|
|
666
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
667
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
668
614
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
615
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
616
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
669
617
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
670
618
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
671
619
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -724,12 +672,46 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
724
672
|
threshold: z.ZodMiniNumber<number>;
|
|
725
673
|
version: z.ZodMiniBigInt<bigint>;
|
|
726
674
|
}, z.core.$strip>;
|
|
727
|
-
signatures: z.
|
|
675
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
676
|
+
signature: z.ZodMiniObject<{
|
|
677
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
678
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
679
|
+
yParity: z.ZodMiniNumber<number>;
|
|
680
|
+
}, z.core.$strip>;
|
|
681
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
682
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
683
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
684
|
+
publicKey: z.ZodMiniObject<{
|
|
685
|
+
prefix: z.ZodMiniNumber<number>;
|
|
686
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
687
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
688
|
+
}, z.core.$strip>;
|
|
689
|
+
signature: z.ZodMiniObject<{
|
|
690
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
691
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
692
|
+
}, z.core.$strip>;
|
|
693
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
694
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
695
|
+
metadata: z.ZodMiniObject<{
|
|
696
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
697
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
698
|
+
}, z.core.$strip>;
|
|
699
|
+
publicKey: z.ZodMiniObject<{
|
|
700
|
+
prefix: z.ZodMiniNumber<number>;
|
|
701
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
702
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
703
|
+
}, z.core.$strip>;
|
|
704
|
+
signature: z.ZodMiniObject<{
|
|
705
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
706
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
707
|
+
}, z.core.$strip>;
|
|
708
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
709
|
+
}, z.core.$strip>]>>>;
|
|
728
710
|
type: z.ZodMiniLiteral<"multisig">;
|
|
729
711
|
}, z.core.$strip>]>;
|
|
730
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
712
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
731
713
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
732
|
-
}, z.core.$strip
|
|
714
|
+
}, z.core.$strip>>>;
|
|
733
715
|
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
734
716
|
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
735
717
|
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
@@ -760,19 +742,7 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
760
742
|
type: z.ZodMiniLiteral<"keychain">;
|
|
761
743
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
762
744
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
763
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
764
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
765
|
-
config: z.ZodMiniObject<{
|
|
766
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
767
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
768
|
-
weight: z.ZodMiniNumber<number>;
|
|
769
|
-
}, z.core.$strip>>>;
|
|
770
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
771
|
-
threshold: z.ZodMiniNumber<number>;
|
|
772
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
773
|
-
}, z.core.$strip>;
|
|
774
|
-
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[]>>>;
|
|
775
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
745
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
776
746
|
signature: z.ZodMiniObject<{
|
|
777
747
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
778
748
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -823,7 +793,41 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
823
793
|
threshold: z.ZodMiniNumber<number>;
|
|
824
794
|
version: z.ZodMiniBigInt<bigint>;
|
|
825
795
|
}, z.core.$strip>;
|
|
826
|
-
signatures: z.
|
|
796
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
797
|
+
signature: z.ZodMiniObject<{
|
|
798
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
799
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
800
|
+
yParity: z.ZodMiniNumber<number>;
|
|
801
|
+
}, z.core.$strip>;
|
|
802
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
803
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
804
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
805
|
+
publicKey: z.ZodMiniObject<{
|
|
806
|
+
prefix: z.ZodMiniNumber<number>;
|
|
807
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
808
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
809
|
+
}, z.core.$strip>;
|
|
810
|
+
signature: z.ZodMiniObject<{
|
|
811
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
812
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
813
|
+
}, z.core.$strip>;
|
|
814
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
815
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
816
|
+
metadata: z.ZodMiniObject<{
|
|
817
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
818
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
819
|
+
}, z.core.$strip>;
|
|
820
|
+
publicKey: z.ZodMiniObject<{
|
|
821
|
+
prefix: z.ZodMiniNumber<number>;
|
|
822
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
823
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
824
|
+
}, z.core.$strip>;
|
|
825
|
+
signature: z.ZodMiniObject<{
|
|
826
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
827
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
828
|
+
}, z.core.$strip>;
|
|
829
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
830
|
+
}, z.core.$strip>]>>>;
|
|
827
831
|
type: z.ZodMiniLiteral<"multisig">;
|
|
828
832
|
}, z.core.$strip>]>>;
|
|
829
833
|
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
@@ -873,19 +877,7 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
873
877
|
type: z.ZodMiniLiteral<"keychain">;
|
|
874
878
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
875
879
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
876
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
877
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
878
|
-
config: z.ZodMiniObject<{
|
|
879
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
880
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
881
|
-
weight: z.ZodMiniNumber<number>;
|
|
882
|
-
}, z.core.$strip>>>;
|
|
883
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
884
|
-
threshold: z.ZodMiniNumber<number>;
|
|
885
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
886
|
-
}, z.core.$strip>;
|
|
887
|
-
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[]>>>;
|
|
888
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
880
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
889
881
|
signature: z.ZodMiniObject<{
|
|
890
882
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
891
883
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -936,7 +928,41 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
936
928
|
threshold: z.ZodMiniNumber<number>;
|
|
937
929
|
version: z.ZodMiniBigInt<bigint>;
|
|
938
930
|
}, z.core.$strip>;
|
|
939
|
-
signatures: z.
|
|
931
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
932
|
+
signature: z.ZodMiniObject<{
|
|
933
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
934
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
935
|
+
yParity: z.ZodMiniNumber<number>;
|
|
936
|
+
}, z.core.$strip>;
|
|
937
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
938
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
939
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
940
|
+
publicKey: z.ZodMiniObject<{
|
|
941
|
+
prefix: z.ZodMiniNumber<number>;
|
|
942
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
943
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
944
|
+
}, z.core.$strip>;
|
|
945
|
+
signature: z.ZodMiniObject<{
|
|
946
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
947
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
948
|
+
}, z.core.$strip>;
|
|
949
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
950
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
951
|
+
metadata: z.ZodMiniObject<{
|
|
952
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
953
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
954
|
+
}, z.core.$strip>;
|
|
955
|
+
publicKey: z.ZodMiniObject<{
|
|
956
|
+
prefix: z.ZodMiniNumber<number>;
|
|
957
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
958
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
959
|
+
}, z.core.$strip>;
|
|
960
|
+
signature: z.ZodMiniObject<{
|
|
961
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
962
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
963
|
+
}, z.core.$strip>;
|
|
964
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
965
|
+
}, z.core.$strip>]>>>;
|
|
940
966
|
type: z.ZodMiniLiteral<"multisig">;
|
|
941
967
|
}, z.core.$strip>]>>;
|
|
942
968
|
}, z.core.$strip>>>>;
|
|
@@ -976,7 +1002,7 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
976
1002
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
977
1003
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
978
1004
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
979
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1005
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
980
1006
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
981
1007
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
982
1008
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -1002,87 +1028,11 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1002
1028
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1003
1029
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1004
1030
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1005
|
-
}, z.core.$strip>]>, z.
|
|
1006
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1007
|
-
config: z.ZodMiniObject<{
|
|
1008
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1009
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1010
|
-
weight: z.ZodMiniNumber<number>;
|
|
1011
|
-
}, z.core.$strip>>>;
|
|
1012
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1013
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1014
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1015
|
-
}, z.core.$strip>;
|
|
1016
|
-
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[]>>>;
|
|
1017
|
-
}, z.core.$strict>]>;
|
|
1031
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1018
1032
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1019
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1020
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1021
|
-
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
1022
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1023
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
1024
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1025
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1026
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
1027
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1028
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1029
|
-
}, z.core.$strip>>>>;
|
|
1030
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1031
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1032
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1033
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1034
|
-
}, z.core.$strip>>>>;
|
|
1035
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1036
|
-
signature: z.ZodMiniObject<{
|
|
1037
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1038
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1039
|
-
yParity: z.ZodMiniNumber<number>;
|
|
1040
|
-
}, z.core.$strip>;
|
|
1041
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1042
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1043
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
1044
|
-
publicKey: z.ZodMiniObject<{
|
|
1045
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1046
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1047
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1048
|
-
}, z.core.$strip>;
|
|
1049
|
-
signature: z.ZodMiniObject<{
|
|
1050
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1051
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1052
|
-
}, z.core.$strip>;
|
|
1053
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
1054
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1055
|
-
metadata: z.ZodMiniObject<{
|
|
1056
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1057
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
1058
|
-
}, z.core.$strip>;
|
|
1059
|
-
publicKey: z.ZodMiniObject<{
|
|
1060
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1061
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1062
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1063
|
-
}, z.core.$strip>;
|
|
1064
|
-
signature: z.ZodMiniObject<{
|
|
1065
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1066
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1067
|
-
}, z.core.$strip>;
|
|
1068
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1069
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1070
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1071
|
-
config: z.ZodMiniObject<{
|
|
1072
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1073
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1074
|
-
weight: z.ZodMiniNumber<number>;
|
|
1075
|
-
}, z.core.$strip>>>;
|
|
1076
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1077
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1078
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1079
|
-
}, z.core.$strip>;
|
|
1080
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1081
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1082
|
-
}, z.core.$strip>]>;
|
|
1083
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1084
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1085
1033
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1034
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1035
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1086
1036
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1087
1037
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
1088
1038
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -1141,12 +1091,46 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1141
1091
|
threshold: z.ZodMiniNumber<number>;
|
|
1142
1092
|
version: z.ZodMiniBigInt<bigint>;
|
|
1143
1093
|
}, z.core.$strip>;
|
|
1144
|
-
signatures: z.
|
|
1094
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1095
|
+
signature: z.ZodMiniObject<{
|
|
1096
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1097
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1098
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1099
|
+
}, z.core.$strip>;
|
|
1100
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1101
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1102
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1103
|
+
publicKey: z.ZodMiniObject<{
|
|
1104
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1105
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1106
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1107
|
+
}, z.core.$strip>;
|
|
1108
|
+
signature: z.ZodMiniObject<{
|
|
1109
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1110
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1111
|
+
}, z.core.$strip>;
|
|
1112
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1113
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1114
|
+
metadata: z.ZodMiniObject<{
|
|
1115
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1116
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1117
|
+
}, z.core.$strip>;
|
|
1118
|
+
publicKey: z.ZodMiniObject<{
|
|
1119
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1120
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1121
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1122
|
+
}, z.core.$strip>;
|
|
1123
|
+
signature: z.ZodMiniObject<{
|
|
1124
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1125
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1126
|
+
}, z.core.$strip>;
|
|
1127
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1128
|
+
}, z.core.$strip>]>>>;
|
|
1145
1129
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1146
1130
|
}, z.core.$strip>]>;
|
|
1147
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1131
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1148
1132
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1149
|
-
}, z.core.$strip
|
|
1133
|
+
}, z.core.$strip>>>;
|
|
1150
1134
|
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1151
1135
|
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1152
1136
|
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
@@ -1177,19 +1161,7 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1177
1161
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1178
1162
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1179
1163
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1180
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1181
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1182
|
-
config: z.ZodMiniObject<{
|
|
1183
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1184
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1185
|
-
weight: z.ZodMiniNumber<number>;
|
|
1186
|
-
}, z.core.$strip>>>;
|
|
1187
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1188
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1189
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1190
|
-
}, z.core.$strip>;
|
|
1191
|
-
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[]>>>;
|
|
1192
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1164
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1193
1165
|
signature: z.ZodMiniObject<{
|
|
1194
1166
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1195
1167
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1240,7 +1212,41 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1240
1212
|
threshold: z.ZodMiniNumber<number>;
|
|
1241
1213
|
version: z.ZodMiniBigInt<bigint>;
|
|
1242
1214
|
}, z.core.$strip>;
|
|
1243
|
-
signatures: z.
|
|
1215
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1216
|
+
signature: z.ZodMiniObject<{
|
|
1217
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1218
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1219
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1220
|
+
}, z.core.$strip>;
|
|
1221
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1222
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1223
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1224
|
+
publicKey: z.ZodMiniObject<{
|
|
1225
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1226
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1227
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1228
|
+
}, z.core.$strip>;
|
|
1229
|
+
signature: z.ZodMiniObject<{
|
|
1230
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1231
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1232
|
+
}, z.core.$strip>;
|
|
1233
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1234
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1235
|
+
metadata: z.ZodMiniObject<{
|
|
1236
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1237
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1238
|
+
}, z.core.$strip>;
|
|
1239
|
+
publicKey: z.ZodMiniObject<{
|
|
1240
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1241
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1242
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1243
|
+
}, z.core.$strip>;
|
|
1244
|
+
signature: z.ZodMiniObject<{
|
|
1245
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1246
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1247
|
+
}, z.core.$strip>;
|
|
1248
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1249
|
+
}, z.core.$strip>]>>>;
|
|
1244
1250
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1245
1251
|
}, z.core.$strip>]>>;
|
|
1246
1252
|
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x76">, z.ZodMiniLiteral<"tempo">>;
|
|
@@ -1285,19 +1291,7 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1285
1291
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1286
1292
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1287
1293
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1288
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1289
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1290
|
-
config: z.ZodMiniObject<{
|
|
1291
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1292
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1293
|
-
weight: z.ZodMiniNumber<number>;
|
|
1294
|
-
}, z.core.$strip>>>;
|
|
1295
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1296
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1297
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1298
|
-
}, z.core.$strip>;
|
|
1299
|
-
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[]>>>;
|
|
1300
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1294
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1301
1295
|
signature: z.ZodMiniObject<{
|
|
1302
1296
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1303
1297
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1348,7 +1342,41 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1348
1342
|
threshold: z.ZodMiniNumber<number>;
|
|
1349
1343
|
version: z.ZodMiniBigInt<bigint>;
|
|
1350
1344
|
}, z.core.$strip>;
|
|
1351
|
-
signatures: z.
|
|
1345
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1346
|
+
signature: z.ZodMiniObject<{
|
|
1347
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1348
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1349
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1350
|
+
}, z.core.$strip>;
|
|
1351
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1352
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1353
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1354
|
+
publicKey: z.ZodMiniObject<{
|
|
1355
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1356
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1357
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1358
|
+
}, z.core.$strip>;
|
|
1359
|
+
signature: z.ZodMiniObject<{
|
|
1360
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1361
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1362
|
+
}, z.core.$strip>;
|
|
1363
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1364
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1365
|
+
metadata: z.ZodMiniObject<{
|
|
1366
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1367
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1368
|
+
}, z.core.$strip>;
|
|
1369
|
+
publicKey: z.ZodMiniObject<{
|
|
1370
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1371
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1372
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1373
|
+
}, z.core.$strip>;
|
|
1374
|
+
signature: z.ZodMiniObject<{
|
|
1375
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1376
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1377
|
+
}, z.core.$strip>;
|
|
1378
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1379
|
+
}, z.core.$strip>]>>>;
|
|
1352
1380
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1353
1381
|
}, z.core.$strip>]>>;
|
|
1354
1382
|
}, z.core.$strip>>>>;
|
|
@@ -1391,7 +1419,7 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1391
1419
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1392
1420
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
1393
1421
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1394
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1422
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1395
1423
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1396
1424
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1397
1425
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -1417,87 +1445,11 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1417
1445
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1418
1446
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1419
1447
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1420
|
-
}, z.core.$strip>]>, z.
|
|
1421
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1422
|
-
config: z.ZodMiniObject<{
|
|
1423
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1424
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1425
|
-
weight: z.ZodMiniNumber<number>;
|
|
1426
|
-
}, z.core.$strip>>>;
|
|
1427
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1428
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1429
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1430
|
-
}, z.core.$strip>;
|
|
1431
|
-
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[]>>>;
|
|
1432
|
-
}, z.core.$strict>]>;
|
|
1448
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1433
1449
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1434
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1435
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1436
|
-
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
1437
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1438
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
1439
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1440
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1441
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
1442
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1443
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1444
|
-
}, z.core.$strip>>>>;
|
|
1445
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1446
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1447
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1448
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1449
|
-
}, z.core.$strip>>>>;
|
|
1450
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1451
|
-
signature: z.ZodMiniObject<{
|
|
1452
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1453
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1454
|
-
yParity: z.ZodMiniNumber<number>;
|
|
1455
|
-
}, z.core.$strip>;
|
|
1456
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1457
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1458
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
1459
|
-
publicKey: z.ZodMiniObject<{
|
|
1460
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1461
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1462
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1463
|
-
}, z.core.$strip>;
|
|
1464
|
-
signature: z.ZodMiniObject<{
|
|
1465
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1466
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1467
|
-
}, z.core.$strip>;
|
|
1468
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
1469
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1470
|
-
metadata: z.ZodMiniObject<{
|
|
1471
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1472
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
1473
|
-
}, z.core.$strip>;
|
|
1474
|
-
publicKey: z.ZodMiniObject<{
|
|
1475
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1476
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1477
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1478
|
-
}, z.core.$strip>;
|
|
1479
|
-
signature: z.ZodMiniObject<{
|
|
1480
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1481
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1482
|
-
}, z.core.$strip>;
|
|
1483
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1484
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1485
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1486
|
-
config: z.ZodMiniObject<{
|
|
1487
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1488
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1489
|
-
weight: z.ZodMiniNumber<number>;
|
|
1490
|
-
}, z.core.$strip>>>;
|
|
1491
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1492
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1493
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1494
|
-
}, z.core.$strip>;
|
|
1495
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1496
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1497
|
-
}, z.core.$strip>]>;
|
|
1498
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1499
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1500
1450
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1451
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1452
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1501
1453
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1502
1454
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
1503
1455
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -1556,12 +1508,46 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1556
1508
|
threshold: z.ZodMiniNumber<number>;
|
|
1557
1509
|
version: z.ZodMiniBigInt<bigint>;
|
|
1558
1510
|
}, z.core.$strip>;
|
|
1559
|
-
signatures: z.
|
|
1511
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1512
|
+
signature: z.ZodMiniObject<{
|
|
1513
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1514
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1515
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1516
|
+
}, z.core.$strip>;
|
|
1517
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1518
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1519
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1520
|
+
publicKey: z.ZodMiniObject<{
|
|
1521
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1522
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1523
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1524
|
+
}, z.core.$strip>;
|
|
1525
|
+
signature: z.ZodMiniObject<{
|
|
1526
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1527
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1528
|
+
}, z.core.$strip>;
|
|
1529
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1530
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1531
|
+
metadata: z.ZodMiniObject<{
|
|
1532
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1533
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1534
|
+
}, z.core.$strip>;
|
|
1535
|
+
publicKey: z.ZodMiniObject<{
|
|
1536
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1537
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1538
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1539
|
+
}, z.core.$strip>;
|
|
1540
|
+
signature: z.ZodMiniObject<{
|
|
1541
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1542
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1543
|
+
}, z.core.$strip>;
|
|
1544
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1545
|
+
}, z.core.$strip>]>>>;
|
|
1560
1546
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1561
1547
|
}, z.core.$strip>]>;
|
|
1562
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1548
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1563
1549
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1564
|
-
}, z.core.$strip
|
|
1550
|
+
}, z.core.$strip>>>;
|
|
1565
1551
|
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1566
1552
|
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
1567
1553
|
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
@@ -1592,19 +1578,7 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1592
1578
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1593
1579
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1594
1580
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1595
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1596
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1597
|
-
config: z.ZodMiniObject<{
|
|
1598
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1599
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1600
|
-
weight: z.ZodMiniNumber<number>;
|
|
1601
|
-
}, z.core.$strip>>>;
|
|
1602
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1603
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1604
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1605
|
-
}, z.core.$strip>;
|
|
1606
|
-
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[]>>>;
|
|
1607
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1581
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1608
1582
|
signature: z.ZodMiniObject<{
|
|
1609
1583
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1610
1584
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1655,7 +1629,41 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1655
1629
|
threshold: z.ZodMiniNumber<number>;
|
|
1656
1630
|
version: z.ZodMiniBigInt<bigint>;
|
|
1657
1631
|
}, z.core.$strip>;
|
|
1658
|
-
signatures: z.
|
|
1632
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1633
|
+
signature: z.ZodMiniObject<{
|
|
1634
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1635
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1636
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1637
|
+
}, z.core.$strip>;
|
|
1638
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1639
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1640
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1641
|
+
publicKey: z.ZodMiniObject<{
|
|
1642
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1643
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1644
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1645
|
+
}, z.core.$strip>;
|
|
1646
|
+
signature: z.ZodMiniObject<{
|
|
1647
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1648
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1649
|
+
}, z.core.$strip>;
|
|
1650
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1651
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1652
|
+
metadata: z.ZodMiniObject<{
|
|
1653
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1654
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1655
|
+
}, z.core.$strip>;
|
|
1656
|
+
publicKey: z.ZodMiniObject<{
|
|
1657
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1658
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1659
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1660
|
+
}, z.core.$strip>;
|
|
1661
|
+
signature: z.ZodMiniObject<{
|
|
1662
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1663
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1664
|
+
}, z.core.$strip>;
|
|
1665
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1666
|
+
}, z.core.$strip>]>>>;
|
|
1659
1667
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1660
1668
|
}, z.core.$strip>]>>;
|
|
1661
1669
|
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
|
|
@@ -1850,19 +1858,7 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1850
1858
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1851
1859
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1852
1860
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1853
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1854
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1855
|
-
config: z.ZodMiniObject<{
|
|
1856
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1857
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1858
|
-
weight: z.ZodMiniNumber<number>;
|
|
1859
|
-
}, z.core.$strip>>>;
|
|
1860
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1861
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1862
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1863
|
-
}, z.core.$strip>;
|
|
1864
|
-
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[]>>>;
|
|
1865
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1861
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1866
1862
|
signature: z.ZodMiniObject<{
|
|
1867
1863
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1868
1864
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1913,7 +1909,41 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1913
1909
|
threshold: z.ZodMiniNumber<number>;
|
|
1914
1910
|
version: z.ZodMiniBigInt<bigint>;
|
|
1915
1911
|
}, z.core.$strip>;
|
|
1916
|
-
signatures: z.
|
|
1912
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1913
|
+
signature: z.ZodMiniObject<{
|
|
1914
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1915
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1916
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1917
|
+
}, z.core.$strip>;
|
|
1918
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1919
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1920
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1921
|
+
publicKey: z.ZodMiniObject<{
|
|
1922
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1923
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1924
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1925
|
+
}, z.core.$strip>;
|
|
1926
|
+
signature: z.ZodMiniObject<{
|
|
1927
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1928
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1929
|
+
}, z.core.$strip>;
|
|
1930
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1931
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1932
|
+
metadata: z.ZodMiniObject<{
|
|
1933
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1934
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1935
|
+
}, z.core.$strip>;
|
|
1936
|
+
publicKey: z.ZodMiniObject<{
|
|
1937
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1938
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1939
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1940
|
+
}, z.core.$strip>;
|
|
1941
|
+
signature: z.ZodMiniObject<{
|
|
1942
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1943
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1944
|
+
}, z.core.$strip>;
|
|
1945
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1946
|
+
}, z.core.$strip>]>>>;
|
|
1917
1947
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1918
1948
|
}, z.core.$strip>]>>;
|
|
1919
1949
|
}, z.core.$strip>>>>;
|
|
@@ -1956,7 +1986,7 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1956
1986
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1957
1987
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
1958
1988
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1959
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1989
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1960
1990
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1961
1991
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1962
1992
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -1982,87 +2012,11 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1982
2012
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1983
2013
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1984
2014
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1985
|
-
}, z.core.$strip>]>, z.
|
|
1986
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1987
|
-
config: z.ZodMiniObject<{
|
|
1988
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1989
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1990
|
-
weight: z.ZodMiniNumber<number>;
|
|
1991
|
-
}, z.core.$strip>>>;
|
|
1992
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1993
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1994
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1995
|
-
}, z.core.$strip>;
|
|
1996
|
-
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[]>>>;
|
|
1997
|
-
}, z.core.$strict>]>;
|
|
2015
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1998
2016
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1999
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2000
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2001
|
-
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
2002
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2003
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
2004
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2005
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2006
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
2007
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2008
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2009
|
-
}, z.core.$strip>>>>;
|
|
2010
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2011
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2012
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
2013
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
2014
|
-
}, z.core.$strip>>>>;
|
|
2015
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2016
|
-
signature: z.ZodMiniObject<{
|
|
2017
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2018
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2019
|
-
yParity: z.ZodMiniNumber<number>;
|
|
2020
|
-
}, z.core.$strip>;
|
|
2021
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2022
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2023
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
2024
|
-
publicKey: z.ZodMiniObject<{
|
|
2025
|
-
prefix: z.ZodMiniNumber<number>;
|
|
2026
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2027
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2028
|
-
}, z.core.$strip>;
|
|
2029
|
-
signature: z.ZodMiniObject<{
|
|
2030
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2031
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2032
|
-
}, z.core.$strip>;
|
|
2033
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
2034
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2035
|
-
metadata: z.ZodMiniObject<{
|
|
2036
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2037
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
2038
|
-
}, z.core.$strip>;
|
|
2039
|
-
publicKey: z.ZodMiniObject<{
|
|
2040
|
-
prefix: z.ZodMiniNumber<number>;
|
|
2041
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2042
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2043
|
-
}, z.core.$strip>;
|
|
2044
|
-
signature: z.ZodMiniObject<{
|
|
2045
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2046
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2047
|
-
}, z.core.$strip>;
|
|
2048
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2049
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2050
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2051
|
-
config: z.ZodMiniObject<{
|
|
2052
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2053
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2054
|
-
weight: z.ZodMiniNumber<number>;
|
|
2055
|
-
}, z.core.$strip>>>;
|
|
2056
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2057
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2058
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
2059
|
-
}, z.core.$strip>;
|
|
2060
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2061
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
2062
|
-
}, z.core.$strip>]>;
|
|
2063
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2064
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2065
2017
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2018
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2019
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
2066
2020
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2067
2021
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
2068
2022
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -2121,12 +2075,46 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2121
2075
|
threshold: z.ZodMiniNumber<number>;
|
|
2122
2076
|
version: z.ZodMiniBigInt<bigint>;
|
|
2123
2077
|
}, z.core.$strip>;
|
|
2124
|
-
signatures: z.
|
|
2078
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2079
|
+
signature: z.ZodMiniObject<{
|
|
2080
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2081
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2082
|
+
yParity: z.ZodMiniNumber<number>;
|
|
2083
|
+
}, z.core.$strip>;
|
|
2084
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2085
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2086
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
2087
|
+
publicKey: z.ZodMiniObject<{
|
|
2088
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2089
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2090
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2091
|
+
}, z.core.$strip>;
|
|
2092
|
+
signature: z.ZodMiniObject<{
|
|
2093
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2094
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2095
|
+
}, z.core.$strip>;
|
|
2096
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2097
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2098
|
+
metadata: z.ZodMiniObject<{
|
|
2099
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2100
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
2101
|
+
}, z.core.$strip>;
|
|
2102
|
+
publicKey: z.ZodMiniObject<{
|
|
2103
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2104
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2105
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2106
|
+
}, z.core.$strip>;
|
|
2107
|
+
signature: z.ZodMiniObject<{
|
|
2108
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2109
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2110
|
+
}, z.core.$strip>;
|
|
2111
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2112
|
+
}, z.core.$strip>]>>>;
|
|
2125
2113
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2126
2114
|
}, z.core.$strip>]>;
|
|
2127
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2115
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
2128
2116
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2129
|
-
}, z.core.$strip
|
|
2117
|
+
}, z.core.$strip>>>;
|
|
2130
2118
|
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2131
2119
|
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
2132
2120
|
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
@@ -2157,19 +2145,7 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2157
2145
|
type: z.ZodMiniLiteral<"keychain">;
|
|
2158
2146
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2159
2147
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2160
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2161
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2162
|
-
config: z.ZodMiniObject<{
|
|
2163
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2164
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2165
|
-
weight: z.ZodMiniNumber<number>;
|
|
2166
|
-
}, z.core.$strip>>>;
|
|
2167
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2168
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2169
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2170
|
-
}, z.core.$strip>;
|
|
2171
|
-
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[]>>>;
|
|
2172
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2148
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2173
2149
|
signature: z.ZodMiniObject<{
|
|
2174
2150
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2175
2151
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2220,7 +2196,41 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2220
2196
|
threshold: z.ZodMiniNumber<number>;
|
|
2221
2197
|
version: z.ZodMiniBigInt<bigint>;
|
|
2222
2198
|
}, z.core.$strip>;
|
|
2223
|
-
signatures: z.
|
|
2199
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2200
|
+
signature: z.ZodMiniObject<{
|
|
2201
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2202
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2203
|
+
yParity: z.ZodMiniNumber<number>;
|
|
2204
|
+
}, z.core.$strip>;
|
|
2205
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2206
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2207
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
2208
|
+
publicKey: z.ZodMiniObject<{
|
|
2209
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2210
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2211
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2212
|
+
}, z.core.$strip>;
|
|
2213
|
+
signature: z.ZodMiniObject<{
|
|
2214
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2215
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2216
|
+
}, z.core.$strip>;
|
|
2217
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2218
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2219
|
+
metadata: z.ZodMiniObject<{
|
|
2220
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2221
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
2222
|
+
}, z.core.$strip>;
|
|
2223
|
+
publicKey: z.ZodMiniObject<{
|
|
2224
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2225
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2226
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2227
|
+
}, z.core.$strip>;
|
|
2228
|
+
signature: z.ZodMiniObject<{
|
|
2229
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2230
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2231
|
+
}, z.core.$strip>;
|
|
2232
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2233
|
+
}, z.core.$strip>]>>>;
|
|
2224
2234
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2225
2235
|
}, z.core.$strip>]>>;
|
|
2226
2236
|
transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
@@ -2419,19 +2429,7 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2419
2429
|
type: z.ZodMiniLiteral<"keychain">;
|
|
2420
2430
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2421
2431
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2422
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2423
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2424
|
-
config: z.ZodMiniObject<{
|
|
2425
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2426
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2427
|
-
weight: z.ZodMiniNumber<number>;
|
|
2428
|
-
}, z.core.$strip>>>;
|
|
2429
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2430
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2431
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2432
|
-
}, z.core.$strip>;
|
|
2433
|
-
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[]>>>;
|
|
2434
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2432
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2435
2433
|
signature: z.ZodMiniObject<{
|
|
2436
2434
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2437
2435
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2482,7 +2480,41 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2482
2480
|
threshold: z.ZodMiniNumber<number>;
|
|
2483
2481
|
version: z.ZodMiniBigInt<bigint>;
|
|
2484
2482
|
}, z.core.$strip>;
|
|
2485
|
-
signatures: z.
|
|
2483
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2484
|
+
signature: z.ZodMiniObject<{
|
|
2485
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2486
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2487
|
+
yParity: z.ZodMiniNumber<number>;
|
|
2488
|
+
}, z.core.$strip>;
|
|
2489
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2490
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2491
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
2492
|
+
publicKey: z.ZodMiniObject<{
|
|
2493
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2494
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2495
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2496
|
+
}, z.core.$strip>;
|
|
2497
|
+
signature: z.ZodMiniObject<{
|
|
2498
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2499
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2500
|
+
}, z.core.$strip>;
|
|
2501
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2502
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2503
|
+
metadata: z.ZodMiniObject<{
|
|
2504
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2505
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
2506
|
+
}, z.core.$strip>;
|
|
2507
|
+
publicKey: z.ZodMiniObject<{
|
|
2508
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2509
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2510
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2511
|
+
}, z.core.$strip>;
|
|
2512
|
+
signature: z.ZodMiniObject<{
|
|
2513
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2514
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2515
|
+
}, z.core.$strip>;
|
|
2516
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2517
|
+
}, z.core.$strip>]>>>;
|
|
2486
2518
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2487
2519
|
}, z.core.$strip>]>>;
|
|
2488
2520
|
}, z.core.$strip>>>>;
|
|
@@ -2522,7 +2554,7 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2522
2554
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2523
2555
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
2524
2556
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2525
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2557
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
2526
2558
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2527
2559
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2528
2560
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -2548,87 +2580,11 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2548
2580
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2549
2581
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2550
2582
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2551
|
-
}, z.core.$strip>]>, z.
|
|
2552
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2553
|
-
config: z.ZodMiniObject<{
|
|
2554
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2555
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2556
|
-
weight: z.ZodMiniNumber<number>;
|
|
2557
|
-
}, z.core.$strip>>>;
|
|
2558
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2559
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2560
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2561
|
-
}, z.core.$strip>;
|
|
2562
|
-
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[]>>>;
|
|
2563
|
-
}, z.core.$strict>]>;
|
|
2583
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
2564
2584
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2565
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2566
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2567
|
-
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
2568
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2569
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
2570
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2571
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2572
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
2573
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2574
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2575
|
-
}, z.core.$strip>>>>;
|
|
2576
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2577
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2578
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
2579
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
2580
|
-
}, z.core.$strip>>>>;
|
|
2581
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2582
|
-
signature: z.ZodMiniObject<{
|
|
2583
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2584
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2585
|
-
yParity: z.ZodMiniNumber<number>;
|
|
2586
|
-
}, z.core.$strip>;
|
|
2587
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2588
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2589
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
2590
|
-
publicKey: z.ZodMiniObject<{
|
|
2591
|
-
prefix: z.ZodMiniNumber<number>;
|
|
2592
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2593
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2594
|
-
}, z.core.$strip>;
|
|
2595
|
-
signature: z.ZodMiniObject<{
|
|
2596
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2597
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2598
|
-
}, z.core.$strip>;
|
|
2599
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
2600
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2601
|
-
metadata: z.ZodMiniObject<{
|
|
2602
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2603
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
2604
|
-
}, z.core.$strip>;
|
|
2605
|
-
publicKey: z.ZodMiniObject<{
|
|
2606
|
-
prefix: z.ZodMiniNumber<number>;
|
|
2607
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2608
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2609
|
-
}, z.core.$strip>;
|
|
2610
|
-
signature: z.ZodMiniObject<{
|
|
2611
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2612
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2613
|
-
}, z.core.$strip>;
|
|
2614
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2615
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2616
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2617
|
-
config: z.ZodMiniObject<{
|
|
2618
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2619
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2620
|
-
weight: z.ZodMiniNumber<number>;
|
|
2621
|
-
}, z.core.$strip>>>;
|
|
2622
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2623
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2624
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
2625
|
-
}, z.core.$strip>;
|
|
2626
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2627
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
2628
|
-
}, z.core.$strip>]>;
|
|
2629
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2630
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2631
2585
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2586
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2587
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
2632
2588
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2633
2589
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
2634
2590
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -2687,12 +2643,46 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2687
2643
|
threshold: z.ZodMiniNumber<number>;
|
|
2688
2644
|
version: z.ZodMiniBigInt<bigint>;
|
|
2689
2645
|
}, z.core.$strip>;
|
|
2690
|
-
signatures: z.
|
|
2646
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2647
|
+
signature: z.ZodMiniObject<{
|
|
2648
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2649
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2650
|
+
yParity: z.ZodMiniNumber<number>;
|
|
2651
|
+
}, z.core.$strip>;
|
|
2652
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2653
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2654
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
2655
|
+
publicKey: z.ZodMiniObject<{
|
|
2656
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2657
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2658
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2659
|
+
}, z.core.$strip>;
|
|
2660
|
+
signature: z.ZodMiniObject<{
|
|
2661
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2662
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2663
|
+
}, z.core.$strip>;
|
|
2664
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2665
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2666
|
+
metadata: z.ZodMiniObject<{
|
|
2667
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2668
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
2669
|
+
}, z.core.$strip>;
|
|
2670
|
+
publicKey: z.ZodMiniObject<{
|
|
2671
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2672
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2673
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2674
|
+
}, z.core.$strip>;
|
|
2675
|
+
signature: z.ZodMiniObject<{
|
|
2676
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2677
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2678
|
+
}, z.core.$strip>;
|
|
2679
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2680
|
+
}, z.core.$strip>]>>>;
|
|
2691
2681
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2692
2682
|
}, z.core.$strip>]>;
|
|
2693
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2683
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
2694
2684
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2695
|
-
}, z.core.$strip
|
|
2685
|
+
}, z.core.$strip>>>;
|
|
2696
2686
|
maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2697
2687
|
maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2698
2688
|
nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
@@ -2723,19 +2713,7 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2723
2713
|
type: z.ZodMiniLiteral<"keychain">;
|
|
2724
2714
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2725
2715
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2726
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2727
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2728
|
-
config: z.ZodMiniObject<{
|
|
2729
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2730
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2731
|
-
weight: z.ZodMiniNumber<number>;
|
|
2732
|
-
}, z.core.$strip>>>;
|
|
2733
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2734
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2735
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2736
|
-
}, z.core.$strip>;
|
|
2737
|
-
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[]>>>;
|
|
2738
|
-
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2716
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2739
2717
|
signature: z.ZodMiniObject<{
|
|
2740
2718
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2741
2719
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2786,7 +2764,41 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2786
2764
|
threshold: z.ZodMiniNumber<number>;
|
|
2787
2765
|
version: z.ZodMiniBigInt<bigint>;
|
|
2788
2766
|
}, z.core.$strip>;
|
|
2789
|
-
signatures: z.
|
|
2767
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2768
|
+
signature: z.ZodMiniObject<{
|
|
2769
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2770
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2771
|
+
yParity: z.ZodMiniNumber<number>;
|
|
2772
|
+
}, z.core.$strip>;
|
|
2773
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2774
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2775
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
2776
|
+
publicKey: z.ZodMiniObject<{
|
|
2777
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2778
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2779
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2780
|
+
}, z.core.$strip>;
|
|
2781
|
+
signature: z.ZodMiniObject<{
|
|
2782
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2783
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2784
|
+
}, z.core.$strip>;
|
|
2785
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2786
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2787
|
+
metadata: z.ZodMiniObject<{
|
|
2788
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2789
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
2790
|
+
}, z.core.$strip>;
|
|
2791
|
+
publicKey: z.ZodMiniObject<{
|
|
2792
|
+
prefix: z.ZodMiniNumber<number>;
|
|
2793
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2794
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2795
|
+
}, z.core.$strip>;
|
|
2796
|
+
signature: z.ZodMiniObject<{
|
|
2797
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2798
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2799
|
+
}, z.core.$strip>;
|
|
2800
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2801
|
+
}, z.core.$strip>]>>>;
|
|
2790
2802
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2791
2803
|
}, z.core.$strip>]>>;
|
|
2792
2804
|
type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x76">, z.ZodMiniLiteral<"tempo">>;
|