ox 1.7.4 → 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 +16 -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 +42 -38
- 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 +3 -2
- package/dist/tempo/MultisigOperation.d.ts.map +1 -1
- package/dist/tempo/MultisigOperation.js +20 -100
- package/dist/tempo/MultisigOperation.js.map +1 -1
- package/dist/tempo/MultisigSimulation.d.ts +2 -49
- package/dist/tempo/MultisigSimulation.d.ts.map +1 -1
- package/dist/tempo/MultisigSimulation.js +18 -46
- package/dist/tempo/MultisigSimulation.js.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +72 -140
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +130 -181
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/tempo/TransactionRequest.d.ts +4 -2
- package/dist/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/tempo/TransactionRequest.js +6 -1
- package/dist/tempo/TransactionRequest.js.map +1 -1
- package/dist/tempo/index.d.ts +3 -1
- package/dist/tempo/index.d.ts.map +1 -1
- package/dist/tempo/index.js +3 -1
- package/dist/tempo/index.js.map +1 -1
- package/dist/zod/tempo/AuthorizationTempo.d.ts +350 -10
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +242 -422
- 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/MultisigSimulation.d.ts +8 -76
- package/dist/zod/tempo/MultisigSimulation.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigSimulation.js +3 -37
- package/dist/zod/tempo/MultisigSimulation.js.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +284 -228
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.d.ts +105 -3
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +21 -9
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +676 -448
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +590 -473
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.js +8 -0
- 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/package.json +1 -1
- 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 -4
- package/src/tempo/KeyAuthorization.test-d.ts +16 -63
- package/src/tempo/KeyAuthorization.test.ts +69 -11
- package/src/tempo/KeyAuthorization.ts +107 -63
- package/src/tempo/MultisigConfig.test.ts +44 -20
- package/src/tempo/MultisigConfig.ts +65 -23
- package/src/tempo/MultisigOperation.test.ts +79 -550
- package/src/tempo/MultisigOperation.ts +31 -146
- package/src/tempo/MultisigSimulation.test-d.ts +2 -2
- package/src/tempo/MultisigSimulation.test.ts +21 -110
- package/src/tempo/MultisigSimulation.ts +25 -99
- package/src/tempo/SignatureEnvelope.test-d.ts +29 -47
- package/src/tempo/SignatureEnvelope.test.ts +328 -541
- package/src/tempo/SignatureEnvelope.ts +196 -291
- package/src/tempo/Transaction.test.ts +4 -4
- package/src/tempo/TransactionRequest.test.ts +17 -80
- package/src/tempo/TransactionRequest.ts +19 -2
- package/src/tempo/index.ts +3 -1
- package/src/tempo/multisig.e2e.test.ts +321 -860
- package/src/version.ts +1 -1
- package/src/zod/tempo/KeyAuthorization.ts +50 -39
- package/src/zod/tempo/MultisigSimulation.ts +3 -48
- package/src/zod/tempo/SignatureEnvelope.ts +46 -35
- package/src/zod/tempo/TransactionRequest.ts +14 -0
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +69 -20
- package/src/zod/tempo/_test/MultisigSimulation.test.ts +6 -31
- package/src/zod/tempo/_test/SignatureEnvelope.test.ts +118 -85
- package/src/zod/tempo/_test/TransactionRequest.test.ts +9 -19
|
@@ -72,7 +72,7 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
72
72
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
73
73
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
74
74
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
75
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
75
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
76
76
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
77
77
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
78
78
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -103,29 +103,24 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
103
103
|
}, z.core.$strip>>;
|
|
104
104
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
105
105
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
106
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
106
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
107
107
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
108
108
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
109
109
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
110
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
111
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
112
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
113
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
114
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
115
|
+
}, z.core.$strict>>>;
|
|
116
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
117
|
+
}, z.core.$strip>>;
|
|
110
118
|
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
111
|
-
|
|
112
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
119
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
113
120
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
114
121
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
115
122
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
116
|
-
|
|
117
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
118
|
-
spec: z.ZodMiniObject<{
|
|
119
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
120
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
121
|
-
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
122
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
123
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
124
|
-
}, z.core.$strip>>>;
|
|
125
|
-
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
126
|
-
}, z.core.$strip>;
|
|
127
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
128
|
-
}, z.core.$strip>]>>>;
|
|
123
|
+
}, z.core.$strict>>>;
|
|
129
124
|
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
130
125
|
}, z.core.$strip>>;
|
|
131
126
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -228,7 +223,41 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
228
223
|
threshold: z.ZodMiniNumber<number>;
|
|
229
224
|
version: z.ZodMiniBigInt<bigint>;
|
|
230
225
|
}, z.core.$strip>;
|
|
231
|
-
signatures: z.
|
|
226
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
227
|
+
signature: z.ZodMiniObject<{
|
|
228
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
229
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
230
|
+
yParity: z.ZodMiniNumber<number>;
|
|
231
|
+
}, z.core.$strip>;
|
|
232
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
233
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
234
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
235
|
+
publicKey: z.ZodMiniObject<{
|
|
236
|
+
prefix: z.ZodMiniNumber<number>;
|
|
237
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
238
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
239
|
+
}, z.core.$strip>;
|
|
240
|
+
signature: z.ZodMiniObject<{
|
|
241
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
242
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
243
|
+
}, z.core.$strip>;
|
|
244
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
245
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
246
|
+
metadata: z.ZodMiniObject<{
|
|
247
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
248
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
249
|
+
}, z.core.$strip>;
|
|
250
|
+
publicKey: z.ZodMiniObject<{
|
|
251
|
+
prefix: z.ZodMiniNumber<number>;
|
|
252
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
253
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
254
|
+
}, z.core.$strip>;
|
|
255
|
+
signature: z.ZodMiniObject<{
|
|
256
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
257
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
258
|
+
}, z.core.$strip>;
|
|
259
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
260
|
+
}, z.core.$strip>]>>>;
|
|
232
261
|
type: z.ZodMiniLiteral<"multisig">;
|
|
233
262
|
}, z.core.$strip>]>;
|
|
234
263
|
}, z.core.$strip>>>>;
|
|
@@ -254,73 +283,9 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
254
283
|
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
255
284
|
gasPrice: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
256
285
|
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
257
|
-
keyAuthorization: z.ZodMiniOptional<z.
|
|
258
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}
|
|
259
|
-
isAdmin: z.ZodMiniBoolean<boolean
|
|
260
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
261
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
262
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
263
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
264
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
265
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
266
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
267
|
-
}, z.core.$strip>>>>;
|
|
268
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
269
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
270
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
271
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
272
|
-
}, z.core.$strip>>>>;
|
|
273
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
274
|
-
signature: z.ZodMiniObject<{
|
|
275
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
276
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
277
|
-
yParity: z.ZodMiniNumber<number>;
|
|
278
|
-
}, z.core.$strip>;
|
|
279
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
280
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
281
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
282
|
-
publicKey: z.ZodMiniObject<{
|
|
283
|
-
prefix: z.ZodMiniNumber<number>;
|
|
284
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
285
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
286
|
-
}, z.core.$strip>;
|
|
287
|
-
signature: z.ZodMiniObject<{
|
|
288
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
289
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
290
|
-
}, z.core.$strip>;
|
|
291
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
292
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
293
|
-
metadata: z.ZodMiniObject<{
|
|
294
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
295
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
296
|
-
}, z.core.$strip>;
|
|
297
|
-
publicKey: z.ZodMiniObject<{
|
|
298
|
-
prefix: z.ZodMiniNumber<number>;
|
|
299
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
300
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
301
|
-
}, z.core.$strip>;
|
|
302
|
-
signature: z.ZodMiniObject<{
|
|
303
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
304
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
305
|
-
}, z.core.$strip>;
|
|
306
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
307
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
308
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
309
|
-
config: z.ZodMiniObject<{
|
|
310
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
311
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
312
|
-
weight: z.ZodMiniNumber<number>;
|
|
313
|
-
}, z.core.$strip>>>;
|
|
314
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
315
|
-
threshold: z.ZodMiniNumber<number>;
|
|
316
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
317
|
-
}, z.core.$strip>;
|
|
318
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
319
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
320
|
-
}, z.core.$strip>]>;
|
|
321
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
322
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
323
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
286
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
287
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
288
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
324
289
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
325
290
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
326
291
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -379,45 +344,74 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
379
344
|
threshold: z.ZodMiniNumber<number>;
|
|
380
345
|
version: z.ZodMiniBigInt<bigint>;
|
|
381
346
|
}, z.core.$strip>;
|
|
382
|
-
signatures: z.
|
|
347
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
348
|
+
signature: z.ZodMiniObject<{
|
|
349
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
350
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
351
|
+
yParity: z.ZodMiniNumber<number>;
|
|
352
|
+
}, z.core.$strip>;
|
|
353
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
354
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
355
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
356
|
+
publicKey: z.ZodMiniObject<{
|
|
357
|
+
prefix: z.ZodMiniNumber<number>;
|
|
358
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
359
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
360
|
+
}, z.core.$strip>;
|
|
361
|
+
signature: z.ZodMiniObject<{
|
|
362
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
363
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
364
|
+
}, z.core.$strip>;
|
|
365
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
366
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
367
|
+
metadata: z.ZodMiniObject<{
|
|
368
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
369
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
370
|
+
}, z.core.$strip>;
|
|
371
|
+
publicKey: z.ZodMiniObject<{
|
|
372
|
+
prefix: z.ZodMiniNumber<number>;
|
|
373
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
374
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
375
|
+
}, z.core.$strip>;
|
|
376
|
+
signature: z.ZodMiniObject<{
|
|
377
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
378
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
379
|
+
}, z.core.$strip>;
|
|
380
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
381
|
+
}, z.core.$strip>]>>>;
|
|
383
382
|
type: z.ZodMiniLiteral<"multisig">;
|
|
384
383
|
}, z.core.$strip>]>;
|
|
385
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
384
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
386
385
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
387
|
-
}, z.core.$strip
|
|
386
|
+
}, z.core.$strip>>;
|
|
388
387
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
389
388
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
390
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
389
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
391
390
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
392
391
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
393
392
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
393
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
394
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
395
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
396
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
397
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
398
|
+
}, z.core.$strict>>>;
|
|
399
|
+
config: z.ZodMiniObject<{
|
|
400
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
401
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
402
|
+
weight: z.ZodMiniNumber<number>;
|
|
403
|
+
}, z.core.$strip>>>;
|
|
404
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
405
|
+
threshold: z.ZodMiniNumber<number>;
|
|
406
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
407
|
+
}, z.core.$strip>;
|
|
408
|
+
}, z.core.$strip>>;
|
|
394
409
|
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
395
|
-
|
|
396
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
410
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
397
411
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
398
412
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
399
413
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
400
|
-
|
|
401
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
402
|
-
spec: z.ZodMiniObject<{
|
|
403
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
404
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
405
|
-
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
406
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
407
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
408
|
-
}, z.core.$strip>>>;
|
|
409
|
-
config: z.ZodMiniObject<{
|
|
410
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
411
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
412
|
-
weight: z.ZodMiniNumber<number>;
|
|
413
|
-
}, z.core.$strip>>>;
|
|
414
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
415
|
-
threshold: z.ZodMiniNumber<number>;
|
|
416
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
417
|
-
}, z.core.$strip>;
|
|
418
|
-
}, z.core.$strip>;
|
|
419
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
420
|
-
}, z.core.$strip>]>>>;
|
|
414
|
+
}, z.core.$strict>>>;
|
|
421
415
|
config: z.ZodMiniObject<{
|
|
422
416
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
423
417
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -483,7 +477,41 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
483
477
|
threshold: z.ZodMiniNumber<number>;
|
|
484
478
|
version: z.ZodMiniBigInt<bigint>;
|
|
485
479
|
}, z.core.$strip>;
|
|
486
|
-
signatures: z.
|
|
480
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
481
|
+
signature: z.ZodMiniObject<{
|
|
482
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
483
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
484
|
+
yParity: z.ZodMiniNumber<number>;
|
|
485
|
+
}, z.core.$strip>;
|
|
486
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
487
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
488
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
489
|
+
publicKey: z.ZodMiniObject<{
|
|
490
|
+
prefix: z.ZodMiniNumber<number>;
|
|
491
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
492
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
493
|
+
}, z.core.$strip>;
|
|
494
|
+
signature: z.ZodMiniObject<{
|
|
495
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
496
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
497
|
+
}, z.core.$strip>;
|
|
498
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
499
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
500
|
+
metadata: z.ZodMiniObject<{
|
|
501
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
502
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
503
|
+
}, z.core.$strip>;
|
|
504
|
+
publicKey: z.ZodMiniObject<{
|
|
505
|
+
prefix: z.ZodMiniNumber<number>;
|
|
506
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
507
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
508
|
+
}, z.core.$strip>;
|
|
509
|
+
signature: z.ZodMiniObject<{
|
|
510
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
511
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
512
|
+
}, z.core.$strip>;
|
|
513
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
514
|
+
}, z.core.$strip>]>>>;
|
|
487
515
|
type: z.ZodMiniLiteral<"multisig">;
|
|
488
516
|
}, z.core.$strip>]>>;
|
|
489
517
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
@@ -555,7 +583,41 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
555
583
|
threshold: z.ZodMiniNumber<number>;
|
|
556
584
|
version: z.ZodMiniBigInt<bigint>;
|
|
557
585
|
}, z.core.$strip>;
|
|
558
|
-
signatures: z.
|
|
586
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
587
|
+
signature: z.ZodMiniObject<{
|
|
588
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
589
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
590
|
+
yParity: z.ZodMiniNumber<number>;
|
|
591
|
+
}, z.core.$strip>;
|
|
592
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
593
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
594
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
595
|
+
publicKey: z.ZodMiniObject<{
|
|
596
|
+
prefix: z.ZodMiniNumber<number>;
|
|
597
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
598
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
599
|
+
}, z.core.$strip>;
|
|
600
|
+
signature: z.ZodMiniObject<{
|
|
601
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
602
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
603
|
+
}, z.core.$strip>;
|
|
604
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
605
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
606
|
+
metadata: z.ZodMiniObject<{
|
|
607
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
608
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
609
|
+
}, z.core.$strip>;
|
|
610
|
+
publicKey: z.ZodMiniObject<{
|
|
611
|
+
prefix: z.ZodMiniNumber<number>;
|
|
612
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
613
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
614
|
+
}, z.core.$strip>;
|
|
615
|
+
signature: z.ZodMiniObject<{
|
|
616
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
617
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
618
|
+
}, z.core.$strip>;
|
|
619
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
620
|
+
}, z.core.$strip>]>>>;
|
|
559
621
|
type: z.ZodMiniLiteral<"multisig">;
|
|
560
622
|
}, z.core.$strip>]>;
|
|
561
623
|
}, z.core.$strip>>>>;
|
|
@@ -581,73 +643,9 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
581
643
|
gas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
582
644
|
gasPrice: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
583
645
|
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
584
|
-
keyAuthorization: z.ZodMiniOptional<z.
|
|
585
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}
|
|
586
|
-
isAdmin: z.ZodMiniBoolean<boolean
|
|
587
|
-
chainId: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
|
|
588
|
-
expiry: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
589
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
590
|
-
limit: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
|
|
591
|
-
period: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
592
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
593
|
-
}, z.core.$strip>>>>;
|
|
594
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
595
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
596
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
597
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
598
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
599
|
-
}, z.core.$strip>>>>;
|
|
600
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
601
|
-
signature: z.ZodMiniObject<{
|
|
602
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
603
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
604
|
-
yParity: z.ZodMiniNumber<number>;
|
|
605
|
-
}, z.core.$strip>;
|
|
606
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
607
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
608
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
609
|
-
publicKey: z.ZodMiniObject<{
|
|
610
|
-
prefix: z.ZodMiniNumber<number>;
|
|
611
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
612
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
613
|
-
}, z.core.$strip>;
|
|
614
|
-
signature: z.ZodMiniObject<{
|
|
615
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
616
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
617
|
-
}, z.core.$strip>;
|
|
618
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
619
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
620
|
-
metadata: z.ZodMiniObject<{
|
|
621
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
622
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
623
|
-
}, z.core.$strip>;
|
|
624
|
-
publicKey: z.ZodMiniObject<{
|
|
625
|
-
prefix: z.ZodMiniNumber<number>;
|
|
626
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
627
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
628
|
-
}, z.core.$strip>;
|
|
629
|
-
signature: z.ZodMiniObject<{
|
|
630
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
631
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
632
|
-
}, z.core.$strip>;
|
|
633
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
634
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
635
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
636
|
-
config: z.ZodMiniObject<{
|
|
637
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
638
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
639
|
-
weight: z.ZodMiniNumber<number>;
|
|
640
|
-
}, z.core.$strip>>>;
|
|
641
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
642
|
-
threshold: z.ZodMiniNumber<number>;
|
|
643
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
644
|
-
}, z.core.$strip>;
|
|
645
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
646
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
647
|
-
}, z.core.$strip>]>;
|
|
648
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
649
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
650
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
646
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
647
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
648
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
651
649
|
chainId: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
|
|
652
650
|
expiry: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
653
651
|
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -706,45 +704,74 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
706
704
|
threshold: z.ZodMiniNumber<number>;
|
|
707
705
|
version: z.ZodMiniBigInt<bigint>;
|
|
708
706
|
}, z.core.$strip>;
|
|
709
|
-
signatures: z.
|
|
707
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
708
|
+
signature: z.ZodMiniObject<{
|
|
709
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
710
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
711
|
+
yParity: z.ZodMiniNumber<number>;
|
|
712
|
+
}, z.core.$strip>;
|
|
713
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
714
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
715
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
716
|
+
publicKey: z.ZodMiniObject<{
|
|
717
|
+
prefix: z.ZodMiniNumber<number>;
|
|
718
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
719
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
720
|
+
}, z.core.$strip>;
|
|
721
|
+
signature: z.ZodMiniObject<{
|
|
722
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
723
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
724
|
+
}, z.core.$strip>;
|
|
725
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
726
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
727
|
+
metadata: z.ZodMiniObject<{
|
|
728
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
729
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
730
|
+
}, z.core.$strip>;
|
|
731
|
+
publicKey: z.ZodMiniObject<{
|
|
732
|
+
prefix: z.ZodMiniNumber<number>;
|
|
733
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
734
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
735
|
+
}, z.core.$strip>;
|
|
736
|
+
signature: z.ZodMiniObject<{
|
|
737
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
738
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
739
|
+
}, z.core.$strip>;
|
|
740
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
741
|
+
}, z.core.$strip>]>>>;
|
|
710
742
|
type: z.ZodMiniLiteral<"multisig">;
|
|
711
743
|
}, z.core.$strip>]>;
|
|
712
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
744
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
713
745
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
714
|
-
}, z.core.$strip
|
|
746
|
+
}, z.core.$strip>>;
|
|
715
747
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
716
748
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
717
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
749
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
718
750
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
719
751
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
720
752
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
753
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
754
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
755
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
756
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
757
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
758
|
+
}, z.core.$strict>>>;
|
|
759
|
+
config: z.ZodMiniObject<{
|
|
760
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
761
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
762
|
+
weight: z.ZodMiniNumber<number>;
|
|
763
|
+
}, z.core.$strip>>>;
|
|
764
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
765
|
+
threshold: z.ZodMiniNumber<number>;
|
|
766
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
767
|
+
}, z.core.$strip>;
|
|
768
|
+
}, z.core.$strip>>;
|
|
721
769
|
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
722
|
-
|
|
723
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
770
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
724
771
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
725
772
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
726
773
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
727
|
-
|
|
728
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
729
|
-
spec: z.ZodMiniObject<{
|
|
730
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
731
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
732
|
-
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
733
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
734
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
735
|
-
}, z.core.$strip>>>;
|
|
736
|
-
config: z.ZodMiniObject<{
|
|
737
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
738
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
739
|
-
weight: z.ZodMiniNumber<number>;
|
|
740
|
-
}, z.core.$strip>>>;
|
|
741
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
742
|
-
threshold: z.ZodMiniNumber<number>;
|
|
743
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
744
|
-
}, z.core.$strip>;
|
|
745
|
-
}, z.core.$strip>;
|
|
746
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
747
|
-
}, z.core.$strip>]>>>;
|
|
774
|
+
}, z.core.$strict>>>;
|
|
748
775
|
config: z.ZodMiniObject<{
|
|
749
776
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
750
777
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -810,7 +837,41 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
810
837
|
threshold: z.ZodMiniNumber<number>;
|
|
811
838
|
version: z.ZodMiniBigInt<bigint>;
|
|
812
839
|
}, z.core.$strip>;
|
|
813
|
-
signatures: z.
|
|
840
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
841
|
+
signature: z.ZodMiniObject<{
|
|
842
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
843
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
844
|
+
yParity: z.ZodMiniNumber<number>;
|
|
845
|
+
}, z.core.$strip>;
|
|
846
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
847
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
848
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
849
|
+
publicKey: z.ZodMiniObject<{
|
|
850
|
+
prefix: z.ZodMiniNumber<number>;
|
|
851
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
852
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
853
|
+
}, z.core.$strip>;
|
|
854
|
+
signature: z.ZodMiniObject<{
|
|
855
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
856
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
857
|
+
}, z.core.$strip>;
|
|
858
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
859
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
860
|
+
metadata: z.ZodMiniObject<{
|
|
861
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
862
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
863
|
+
}, z.core.$strip>;
|
|
864
|
+
publicKey: z.ZodMiniObject<{
|
|
865
|
+
prefix: z.ZodMiniNumber<number>;
|
|
866
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
867
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
868
|
+
}, z.core.$strip>;
|
|
869
|
+
signature: z.ZodMiniObject<{
|
|
870
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
871
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
872
|
+
}, z.core.$strip>;
|
|
873
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
874
|
+
}, z.core.$strip>]>>>;
|
|
814
875
|
type: z.ZodMiniLiteral<"multisig">;
|
|
815
876
|
}, z.core.$strip>]>>;
|
|
816
877
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
@@ -894,7 +955,7 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
894
955
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
895
956
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
896
957
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
897
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
958
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
898
959
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
899
960
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
900
961
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -925,29 +986,24 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
925
986
|
}, z.core.$strip>>;
|
|
926
987
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
927
988
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
928
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
989
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
929
990
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
930
991
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
931
992
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
993
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
994
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
995
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
996
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
997
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
998
|
+
}, z.core.$strict>>>;
|
|
999
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1000
|
+
}, z.core.$strip>>;
|
|
932
1001
|
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
933
|
-
|
|
934
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1002
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
935
1003
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
936
1004
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
937
1005
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
938
|
-
|
|
939
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
940
|
-
spec: z.ZodMiniObject<{
|
|
941
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
942
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
943
|
-
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
944
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
945
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
946
|
-
}, z.core.$strip>>>;
|
|
947
|
-
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
948
|
-
}, z.core.$strip>;
|
|
949
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
950
|
-
}, z.core.$strip>]>>>;
|
|
1006
|
+
}, z.core.$strict>>>;
|
|
951
1007
|
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
952
1008
|
}, z.core.$strip>>;
|
|
953
1009
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -990,107 +1046,14 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
990
1046
|
yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
991
1047
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
992
1048
|
accessList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
993
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
994
|
-
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
995
|
-
}, z.core.$strip>>>>;
|
|
996
|
-
authorizationList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
997
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
998
|
-
chainId: z.ZodMiniNumber<number>;
|
|
999
|
-
nonce: z.ZodMiniBigInt<bigint>;
|
|
1000
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1001
|
-
signature: z.ZodMiniObject<{
|
|
1002
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1003
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1004
|
-
yParity: z.ZodMiniNumber<number>;
|
|
1005
|
-
}, z.core.$strip>;
|
|
1006
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1007
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1008
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
1009
|
-
publicKey: z.ZodMiniObject<{
|
|
1010
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1011
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1012
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1013
|
-
}, z.core.$strip>;
|
|
1014
|
-
signature: z.ZodMiniObject<{
|
|
1015
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1016
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1017
|
-
}, z.core.$strip>;
|
|
1018
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
1019
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1020
|
-
metadata: z.ZodMiniObject<{
|
|
1021
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1022
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
1023
|
-
}, z.core.$strip>;
|
|
1024
|
-
publicKey: z.ZodMiniObject<{
|
|
1025
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1026
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1027
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1028
|
-
}, z.core.$strip>;
|
|
1029
|
-
signature: z.ZodMiniObject<{
|
|
1030
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1031
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1032
|
-
}, z.core.$strip>;
|
|
1033
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1034
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1035
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
1036
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1037
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
1038
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1039
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1040
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1041
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1042
|
-
config: z.ZodMiniObject<{
|
|
1043
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1044
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1045
|
-
weight: z.ZodMiniNumber<number>;
|
|
1046
|
-
}, z.core.$strip>>>;
|
|
1047
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1048
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1049
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1050
|
-
}, z.core.$strip>;
|
|
1051
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1052
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1053
|
-
}, z.core.$strip>]>;
|
|
1054
|
-
}, z.core.$strip>>>>;
|
|
1055
|
-
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1056
|
-
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1057
|
-
calls: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1058
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1059
|
-
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1060
|
-
value: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1061
|
-
}, z.core.$strip>>>>;
|
|
1062
|
-
capabilities: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
|
|
1063
|
-
chainId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1064
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1065
|
-
feePayer: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1066
|
-
feePayerSignature: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1067
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1068
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1069
|
-
v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1070
|
-
yParity: z.ZodMiniNumber<number>;
|
|
1071
|
-
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
1072
|
-
feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1073
|
-
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1074
|
-
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1075
|
-
gasPrice: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1076
|
-
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1077
|
-
keyAuthorization: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1078
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1079
|
-
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
1080
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1081
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
1082
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1083
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1084
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
1085
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1086
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1087
|
-
}, z.core.$strip>>>>;
|
|
1088
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1089
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1090
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1091
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1092
|
-
}, z.core.$strip>>>>;
|
|
1093
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1049
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1050
|
+
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1051
|
+
}, z.core.$strip>>>>;
|
|
1052
|
+
authorizationList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1053
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1054
|
+
chainId: z.ZodMiniNumber<number>;
|
|
1055
|
+
nonce: z.ZodMiniBigInt<bigint>;
|
|
1056
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1094
1057
|
signature: z.ZodMiniObject<{
|
|
1095
1058
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1096
1059
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1124,7 +1087,13 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1124
1087
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1125
1088
|
}, z.core.$strip>;
|
|
1126
1089
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1127
|
-
}, z.core.$strip
|
|
1090
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1091
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
1092
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1093
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
1094
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1095
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1096
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1128
1097
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1129
1098
|
config: z.ZodMiniObject<{
|
|
1130
1099
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -1135,12 +1104,69 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1135
1104
|
threshold: z.ZodMiniNumber<number>;
|
|
1136
1105
|
version: z.ZodMiniBigInt<bigint>;
|
|
1137
1106
|
}, z.core.$strip>;
|
|
1138
|
-
signatures: z.
|
|
1107
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1108
|
+
signature: z.ZodMiniObject<{
|
|
1109
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1110
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1111
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1112
|
+
}, z.core.$strip>;
|
|
1113
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1114
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1115
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1116
|
+
publicKey: z.ZodMiniObject<{
|
|
1117
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1118
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1119
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1120
|
+
}, z.core.$strip>;
|
|
1121
|
+
signature: z.ZodMiniObject<{
|
|
1122
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1123
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1124
|
+
}, z.core.$strip>;
|
|
1125
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1126
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1127
|
+
metadata: z.ZodMiniObject<{
|
|
1128
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1129
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1130
|
+
}, z.core.$strip>;
|
|
1131
|
+
publicKey: z.ZodMiniObject<{
|
|
1132
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1133
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1134
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1135
|
+
}, z.core.$strip>;
|
|
1136
|
+
signature: z.ZodMiniObject<{
|
|
1137
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1138
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1139
|
+
}, z.core.$strip>;
|
|
1140
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1141
|
+
}, z.core.$strip>]>>>;
|
|
1139
1142
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1140
1143
|
}, z.core.$strip>]>;
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
+
}, z.core.$strip>>>>;
|
|
1145
|
+
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1146
|
+
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1147
|
+
calls: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1148
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1149
|
+
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1150
|
+
value: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1151
|
+
}, z.core.$strip>>>>;
|
|
1152
|
+
capabilities: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
|
|
1153
|
+
chainId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1154
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1155
|
+
feePayer: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1156
|
+
feePayerSignature: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1157
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1158
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1159
|
+
v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1160
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1161
|
+
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
1162
|
+
feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1163
|
+
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1164
|
+
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1165
|
+
gasPrice: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1166
|
+
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1167
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1168
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1169
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1144
1170
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1145
1171
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
1146
1172
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -1199,45 +1225,74 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1199
1225
|
threshold: z.ZodMiniNumber<number>;
|
|
1200
1226
|
version: z.ZodMiniBigInt<bigint>;
|
|
1201
1227
|
}, z.core.$strip>;
|
|
1202
|
-
signatures: z.
|
|
1228
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1229
|
+
signature: z.ZodMiniObject<{
|
|
1230
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1231
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1232
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1233
|
+
}, z.core.$strip>;
|
|
1234
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1235
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1236
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1237
|
+
publicKey: z.ZodMiniObject<{
|
|
1238
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1239
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1240
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1241
|
+
}, z.core.$strip>;
|
|
1242
|
+
signature: z.ZodMiniObject<{
|
|
1243
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1244
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1245
|
+
}, z.core.$strip>;
|
|
1246
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1247
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1248
|
+
metadata: z.ZodMiniObject<{
|
|
1249
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1250
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1251
|
+
}, z.core.$strip>;
|
|
1252
|
+
publicKey: z.ZodMiniObject<{
|
|
1253
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1254
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1255
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1256
|
+
}, z.core.$strip>;
|
|
1257
|
+
signature: z.ZodMiniObject<{
|
|
1258
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1259
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1260
|
+
}, z.core.$strip>;
|
|
1261
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1262
|
+
}, z.core.$strip>]>>>;
|
|
1203
1263
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1204
1264
|
}, z.core.$strip>]>;
|
|
1205
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1265
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1206
1266
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1207
|
-
}, z.core.$strip
|
|
1267
|
+
}, z.core.$strip>>;
|
|
1208
1268
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1209
1269
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1210
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1270
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
1211
1271
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1212
1272
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1213
1273
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1274
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1275
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1276
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1277
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1278
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1279
|
+
}, z.core.$strict>>>;
|
|
1280
|
+
config: z.ZodMiniObject<{
|
|
1281
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1282
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1283
|
+
weight: z.ZodMiniNumber<number>;
|
|
1284
|
+
}, z.core.$strip>>>;
|
|
1285
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1286
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1287
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1288
|
+
}, z.core.$strip>;
|
|
1289
|
+
}, z.core.$strip>>;
|
|
1214
1290
|
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1215
|
-
|
|
1216
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1291
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1217
1292
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1218
1293
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1219
1294
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1220
|
-
|
|
1221
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1222
|
-
spec: z.ZodMiniObject<{
|
|
1223
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1224
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1225
|
-
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1226
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1227
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1228
|
-
}, z.core.$strip>>>;
|
|
1229
|
-
config: z.ZodMiniObject<{
|
|
1230
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1231
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1232
|
-
weight: z.ZodMiniNumber<number>;
|
|
1233
|
-
}, z.core.$strip>>>;
|
|
1234
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1235
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1236
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1237
|
-
}, z.core.$strip>;
|
|
1238
|
-
}, z.core.$strip>;
|
|
1239
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1240
|
-
}, z.core.$strip>]>>>;
|
|
1295
|
+
}, z.core.$strict>>>;
|
|
1241
1296
|
config: z.ZodMiniObject<{
|
|
1242
1297
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1243
1298
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1303,7 +1358,41 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1303
1358
|
threshold: z.ZodMiniNumber<number>;
|
|
1304
1359
|
version: z.ZodMiniBigInt<bigint>;
|
|
1305
1360
|
}, z.core.$strip>;
|
|
1306
|
-
signatures: z.
|
|
1361
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1362
|
+
signature: z.ZodMiniObject<{
|
|
1363
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1364
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1365
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1366
|
+
}, z.core.$strip>;
|
|
1367
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1368
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1369
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1370
|
+
publicKey: z.ZodMiniObject<{
|
|
1371
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1372
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1373
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1374
|
+
}, z.core.$strip>;
|
|
1375
|
+
signature: z.ZodMiniObject<{
|
|
1376
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1377
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1378
|
+
}, z.core.$strip>;
|
|
1379
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1380
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1381
|
+
metadata: z.ZodMiniObject<{
|
|
1382
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1383
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1384
|
+
}, z.core.$strip>;
|
|
1385
|
+
publicKey: z.ZodMiniObject<{
|
|
1386
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1387
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1388
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1389
|
+
}, z.core.$strip>;
|
|
1390
|
+
signature: z.ZodMiniObject<{
|
|
1391
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1392
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1393
|
+
}, z.core.$strip>;
|
|
1394
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1395
|
+
}, z.core.$strip>]>>>;
|
|
1307
1396
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1308
1397
|
}, z.core.$strip>]>>;
|
|
1309
1398
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
@@ -1387,7 +1476,7 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1387
1476
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1388
1477
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
1389
1478
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1390
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1479
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1391
1480
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1392
1481
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1393
1482
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -1418,29 +1507,24 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1418
1507
|
}, z.core.$strip>>;
|
|
1419
1508
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1420
1509
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1421
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1510
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
1422
1511
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1423
1512
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1424
1513
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1514
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1515
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1516
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1517
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1518
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1519
|
+
}, z.core.$strict>>>;
|
|
1520
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1521
|
+
}, z.core.$strip>>;
|
|
1425
1522
|
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1426
|
-
|
|
1427
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1523
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1428
1524
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1429
1525
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1430
1526
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1431
|
-
|
|
1432
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1433
|
-
spec: z.ZodMiniObject<{
|
|
1434
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1435
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1436
|
-
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1437
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1438
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1439
|
-
}, z.core.$strip>>>;
|
|
1440
|
-
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1441
|
-
}, z.core.$strip>;
|
|
1442
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1443
|
-
}, z.core.$strip>]>>>;
|
|
1527
|
+
}, z.core.$strict>>>;
|
|
1444
1528
|
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1445
1529
|
}, z.core.$strip>>;
|
|
1446
1530
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1541,7 +1625,41 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1541
1625
|
threshold: z.ZodMiniNumber<number>;
|
|
1542
1626
|
version: z.ZodMiniBigInt<bigint>;
|
|
1543
1627
|
}, z.core.$strip>;
|
|
1544
|
-
signatures: z.
|
|
1628
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1629
|
+
signature: z.ZodMiniObject<{
|
|
1630
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1631
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1632
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1633
|
+
}, z.core.$strip>;
|
|
1634
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1635
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1636
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1637
|
+
publicKey: z.ZodMiniObject<{
|
|
1638
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1639
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1640
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1641
|
+
}, z.core.$strip>;
|
|
1642
|
+
signature: z.ZodMiniObject<{
|
|
1643
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1644
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1645
|
+
}, z.core.$strip>;
|
|
1646
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1647
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1648
|
+
metadata: z.ZodMiniObject<{
|
|
1649
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1650
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1651
|
+
}, z.core.$strip>;
|
|
1652
|
+
publicKey: z.ZodMiniObject<{
|
|
1653
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1654
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1655
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1656
|
+
}, z.core.$strip>;
|
|
1657
|
+
signature: z.ZodMiniObject<{
|
|
1658
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1659
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1660
|
+
}, z.core.$strip>;
|
|
1661
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1662
|
+
}, z.core.$strip>]>>>;
|
|
1545
1663
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1546
1664
|
}, z.core.$strip>]>;
|
|
1547
1665
|
}, z.core.$strip>>>>;
|
|
@@ -1567,73 +1685,9 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1567
1685
|
gas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1568
1686
|
gasPrice: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1569
1687
|
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1570
|
-
keyAuthorization: z.ZodMiniOptional<z.
|
|
1571
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}
|
|
1572
|
-
isAdmin: z.ZodMiniBoolean<boolean
|
|
1573
|
-
chainId: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
|
|
1574
|
-
expiry: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1575
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1576
|
-
limit: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
|
|
1577
|
-
period: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1578
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1579
|
-
}, z.core.$strip>>>>;
|
|
1580
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1581
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1582
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1583
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1584
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1585
|
-
}, z.core.$strip>>>>;
|
|
1586
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1587
|
-
signature: z.ZodMiniObject<{
|
|
1588
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1589
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1590
|
-
yParity: z.ZodMiniNumber<number>;
|
|
1591
|
-
}, z.core.$strip>;
|
|
1592
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1593
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1594
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
1595
|
-
publicKey: z.ZodMiniObject<{
|
|
1596
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1597
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1598
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1599
|
-
}, z.core.$strip>;
|
|
1600
|
-
signature: z.ZodMiniObject<{
|
|
1601
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1602
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1603
|
-
}, z.core.$strip>;
|
|
1604
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
1605
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1606
|
-
metadata: z.ZodMiniObject<{
|
|
1607
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1608
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
1609
|
-
}, z.core.$strip>;
|
|
1610
|
-
publicKey: z.ZodMiniObject<{
|
|
1611
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1612
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1613
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1614
|
-
}, z.core.$strip>;
|
|
1615
|
-
signature: z.ZodMiniObject<{
|
|
1616
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1617
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1618
|
-
}, z.core.$strip>;
|
|
1619
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1620
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1621
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1622
|
-
config: z.ZodMiniObject<{
|
|
1623
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1624
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1625
|
-
weight: z.ZodMiniNumber<number>;
|
|
1626
|
-
}, z.core.$strip>>>;
|
|
1627
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1628
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1629
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1630
|
-
}, z.core.$strip>;
|
|
1631
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1632
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1633
|
-
}, z.core.$strip>]>;
|
|
1634
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1635
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1636
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1688
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1689
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1690
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1637
1691
|
chainId: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
|
|
1638
1692
|
expiry: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1639
1693
|
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -1692,45 +1746,74 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1692
1746
|
threshold: z.ZodMiniNumber<number>;
|
|
1693
1747
|
version: z.ZodMiniBigInt<bigint>;
|
|
1694
1748
|
}, z.core.$strip>;
|
|
1695
|
-
signatures: z.
|
|
1749
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1750
|
+
signature: z.ZodMiniObject<{
|
|
1751
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1752
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1753
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1754
|
+
}, z.core.$strip>;
|
|
1755
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1756
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1757
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1758
|
+
publicKey: z.ZodMiniObject<{
|
|
1759
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1760
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1761
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1762
|
+
}, z.core.$strip>;
|
|
1763
|
+
signature: z.ZodMiniObject<{
|
|
1764
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1765
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1766
|
+
}, z.core.$strip>;
|
|
1767
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1768
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1769
|
+
metadata: z.ZodMiniObject<{
|
|
1770
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1771
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1772
|
+
}, z.core.$strip>;
|
|
1773
|
+
publicKey: z.ZodMiniObject<{
|
|
1774
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1775
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1776
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1777
|
+
}, z.core.$strip>;
|
|
1778
|
+
signature: z.ZodMiniObject<{
|
|
1779
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1780
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1781
|
+
}, z.core.$strip>;
|
|
1782
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1783
|
+
}, z.core.$strip>]>>>;
|
|
1696
1784
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1697
1785
|
}, z.core.$strip>]>;
|
|
1698
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1786
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1699
1787
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1700
|
-
}, z.core.$strip
|
|
1788
|
+
}, z.core.$strip>>;
|
|
1701
1789
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1702
1790
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1703
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1791
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
1704
1792
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1705
1793
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1706
1794
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1795
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1796
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1797
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1798
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1799
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1800
|
+
}, z.core.$strict>>>;
|
|
1801
|
+
config: z.ZodMiniObject<{
|
|
1802
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1803
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1804
|
+
weight: z.ZodMiniNumber<number>;
|
|
1805
|
+
}, z.core.$strip>>>;
|
|
1806
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1807
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1808
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1809
|
+
}, z.core.$strip>;
|
|
1810
|
+
}, z.core.$strip>>;
|
|
1707
1811
|
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1708
|
-
|
|
1709
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1812
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1710
1813
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1711
1814
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1712
1815
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1713
|
-
|
|
1714
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1715
|
-
spec: z.ZodMiniObject<{
|
|
1716
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1717
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1718
|
-
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1719
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1720
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1721
|
-
}, z.core.$strip>>>;
|
|
1722
|
-
config: z.ZodMiniObject<{
|
|
1723
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1724
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1725
|
-
weight: z.ZodMiniNumber<number>;
|
|
1726
|
-
}, z.core.$strip>>>;
|
|
1727
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1728
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1729
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1730
|
-
}, z.core.$strip>;
|
|
1731
|
-
}, z.core.$strip>;
|
|
1732
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1733
|
-
}, z.core.$strip>]>>>;
|
|
1816
|
+
}, z.core.$strict>>>;
|
|
1734
1817
|
config: z.ZodMiniObject<{
|
|
1735
1818
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1736
1819
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1796,7 +1879,41 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1796
1879
|
threshold: z.ZodMiniNumber<number>;
|
|
1797
1880
|
version: z.ZodMiniBigInt<bigint>;
|
|
1798
1881
|
}, z.core.$strip>;
|
|
1799
|
-
signatures: z.
|
|
1882
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1883
|
+
signature: z.ZodMiniObject<{
|
|
1884
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1885
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1886
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1887
|
+
}, z.core.$strip>;
|
|
1888
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1889
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1890
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1891
|
+
publicKey: z.ZodMiniObject<{
|
|
1892
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1893
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1894
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1895
|
+
}, z.core.$strip>;
|
|
1896
|
+
signature: z.ZodMiniObject<{
|
|
1897
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1898
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1899
|
+
}, z.core.$strip>;
|
|
1900
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1901
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1902
|
+
metadata: z.ZodMiniObject<{
|
|
1903
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1904
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1905
|
+
}, z.core.$strip>;
|
|
1906
|
+
publicKey: z.ZodMiniObject<{
|
|
1907
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1908
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1909
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1910
|
+
}, z.core.$strip>;
|
|
1911
|
+
signature: z.ZodMiniObject<{
|
|
1912
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1913
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1914
|
+
}, z.core.$strip>;
|
|
1915
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1916
|
+
}, z.core.$strip>]>>>;
|
|
1800
1917
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1801
1918
|
}, z.core.$strip>]>>;
|
|
1802
1919
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|