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
|
@@ -89,7 +89,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
89
89
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
90
90
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
91
91
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
92
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
92
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
93
93
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
94
94
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
95
95
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -120,29 +120,24 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
120
120
|
}, z.core.$strip>>;
|
|
121
121
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
122
122
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
123
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
123
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
124
124
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
125
125
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
126
126
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
127
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
128
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
129
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
130
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
131
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
132
|
+
}, z.core.$strict>>>;
|
|
133
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
134
|
+
}, z.core.$strip>>;
|
|
127
135
|
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
128
|
-
|
|
129
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
136
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
130
137
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
131
138
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
132
139
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
133
|
-
|
|
134
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
135
|
-
spec: z.ZodMiniObject<{
|
|
136
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
137
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
138
|
-
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
139
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
140
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
141
|
-
}, z.core.$strip>>>;
|
|
142
|
-
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
143
|
-
}, z.core.$strip>;
|
|
144
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
145
|
-
}, z.core.$strip>]>>>;
|
|
140
|
+
}, z.core.$strict>>>;
|
|
146
141
|
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
147
142
|
}, z.core.$strip>>;
|
|
148
143
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -243,7 +238,41 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
243
238
|
threshold: z.ZodMiniNumber<number>;
|
|
244
239
|
version: z.ZodMiniBigInt<bigint>;
|
|
245
240
|
}, z.core.$strip>;
|
|
246
|
-
signatures: z.
|
|
241
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
242
|
+
signature: z.ZodMiniObject<{
|
|
243
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
244
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
245
|
+
yParity: z.ZodMiniNumber<number>;
|
|
246
|
+
}, z.core.$strip>;
|
|
247
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
248
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
249
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
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<"p256">;
|
|
260
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
261
|
+
metadata: z.ZodMiniObject<{
|
|
262
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
263
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
264
|
+
}, z.core.$strip>;
|
|
265
|
+
publicKey: z.ZodMiniObject<{
|
|
266
|
+
prefix: z.ZodMiniNumber<number>;
|
|
267
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
268
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
269
|
+
}, z.core.$strip>;
|
|
270
|
+
signature: z.ZodMiniObject<{
|
|
271
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
272
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
273
|
+
}, z.core.$strip>;
|
|
274
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
275
|
+
}, z.core.$strip>]>>>;
|
|
247
276
|
type: z.ZodMiniLiteral<"multisig">;
|
|
248
277
|
}, z.core.$strip>]>;
|
|
249
278
|
}, z.core.$strip>>>>;
|
|
@@ -269,73 +298,9 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
269
298
|
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
270
299
|
gasPrice: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
271
300
|
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
272
|
-
keyAuthorization: z.ZodMiniOptional<z.
|
|
273
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}
|
|
274
|
-
isAdmin: z.ZodMiniBoolean<boolean
|
|
275
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
276
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
277
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
278
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
279
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
280
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
281
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
282
|
-
}, z.core.$strip>>>>;
|
|
283
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
284
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
285
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
286
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
287
|
-
}, z.core.$strip>>>>;
|
|
288
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
289
|
-
signature: z.ZodMiniObject<{
|
|
290
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
291
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
292
|
-
yParity: z.ZodMiniNumber<number>;
|
|
293
|
-
}, z.core.$strip>;
|
|
294
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
295
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
296
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
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<"p256">;
|
|
307
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
308
|
-
metadata: z.ZodMiniObject<{
|
|
309
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
310
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
311
|
-
}, z.core.$strip>;
|
|
312
|
-
publicKey: z.ZodMiniObject<{
|
|
313
|
-
prefix: z.ZodMiniNumber<number>;
|
|
314
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
315
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
316
|
-
}, z.core.$strip>;
|
|
317
|
-
signature: z.ZodMiniObject<{
|
|
318
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
319
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
320
|
-
}, z.core.$strip>;
|
|
321
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
322
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
323
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
324
|
-
config: z.ZodMiniObject<{
|
|
325
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
326
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
327
|
-
weight: z.ZodMiniNumber<number>;
|
|
328
|
-
}, z.core.$strip>>>;
|
|
329
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
330
|
-
threshold: z.ZodMiniNumber<number>;
|
|
331
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
332
|
-
}, z.core.$strip>;
|
|
333
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
334
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
335
|
-
}, z.core.$strip>]>;
|
|
336
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
337
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
338
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
301
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
302
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
303
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
339
304
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
340
305
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
341
306
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -394,45 +359,74 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
394
359
|
threshold: z.ZodMiniNumber<number>;
|
|
395
360
|
version: z.ZodMiniBigInt<bigint>;
|
|
396
361
|
}, z.core.$strip>;
|
|
397
|
-
signatures: z.
|
|
362
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
363
|
+
signature: z.ZodMiniObject<{
|
|
364
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
365
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
366
|
+
yParity: z.ZodMiniNumber<number>;
|
|
367
|
+
}, z.core.$strip>;
|
|
368
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
369
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
370
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
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<"p256">;
|
|
381
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
382
|
+
metadata: z.ZodMiniObject<{
|
|
383
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
384
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
385
|
+
}, z.core.$strip>;
|
|
386
|
+
publicKey: z.ZodMiniObject<{
|
|
387
|
+
prefix: z.ZodMiniNumber<number>;
|
|
388
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
389
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
390
|
+
}, z.core.$strip>;
|
|
391
|
+
signature: z.ZodMiniObject<{
|
|
392
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
393
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
394
|
+
}, z.core.$strip>;
|
|
395
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
396
|
+
}, z.core.$strip>]>>>;
|
|
398
397
|
type: z.ZodMiniLiteral<"multisig">;
|
|
399
398
|
}, z.core.$strip>]>;
|
|
400
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
399
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
401
400
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
402
|
-
}, z.core.$strip
|
|
401
|
+
}, z.core.$strip>>;
|
|
403
402
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
404
403
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
405
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
404
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
406
405
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
407
406
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
408
407
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
408
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
409
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
410
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
411
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
412
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
413
|
+
}, z.core.$strict>>>;
|
|
414
|
+
config: z.ZodMiniObject<{
|
|
415
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
416
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
417
|
+
weight: z.ZodMiniNumber<number>;
|
|
418
|
+
}, z.core.$strip>>>;
|
|
419
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
420
|
+
threshold: z.ZodMiniNumber<number>;
|
|
421
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
422
|
+
}, z.core.$strip>;
|
|
423
|
+
}, z.core.$strip>>;
|
|
409
424
|
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
410
|
-
|
|
411
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
425
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
412
426
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
413
427
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
414
428
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
415
|
-
|
|
416
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
417
|
-
spec: z.ZodMiniObject<{
|
|
418
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
419
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
420
|
-
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
421
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
422
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
423
|
-
}, z.core.$strip>>>;
|
|
424
|
-
config: z.ZodMiniObject<{
|
|
425
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
426
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
427
|
-
weight: z.ZodMiniNumber<number>;
|
|
428
|
-
}, z.core.$strip>>>;
|
|
429
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
430
|
-
threshold: z.ZodMiniNumber<number>;
|
|
431
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
432
|
-
}, z.core.$strip>;
|
|
433
|
-
}, z.core.$strip>;
|
|
434
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
435
|
-
}, z.core.$strip>]>>>;
|
|
429
|
+
}, z.core.$strict>>>;
|
|
436
430
|
config: z.ZodMiniObject<{
|
|
437
431
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
438
432
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -498,7 +492,41 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
498
492
|
threshold: z.ZodMiniNumber<number>;
|
|
499
493
|
version: z.ZodMiniBigInt<bigint>;
|
|
500
494
|
}, z.core.$strip>;
|
|
501
|
-
signatures: z.
|
|
495
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
496
|
+
signature: z.ZodMiniObject<{
|
|
497
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
498
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
499
|
+
yParity: z.ZodMiniNumber<number>;
|
|
500
|
+
}, z.core.$strip>;
|
|
501
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
502
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
503
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
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<"p256">;
|
|
514
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
515
|
+
metadata: z.ZodMiniObject<{
|
|
516
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
517
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
518
|
+
}, z.core.$strip>;
|
|
519
|
+
publicKey: z.ZodMiniObject<{
|
|
520
|
+
prefix: z.ZodMiniNumber<number>;
|
|
521
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
522
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
523
|
+
}, z.core.$strip>;
|
|
524
|
+
signature: z.ZodMiniObject<{
|
|
525
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
526
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
527
|
+
}, z.core.$strip>;
|
|
528
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
529
|
+
}, z.core.$strip>]>>>;
|
|
502
530
|
type: z.ZodMiniLiteral<"multisig">;
|
|
503
531
|
}, z.core.$strip>]>>;
|
|
504
532
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
@@ -1088,7 +1116,7 @@ export declare const Tempo: {
|
|
|
1088
1116
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1089
1117
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
1090
1118
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1091
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1119
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1092
1120
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1093
1121
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1094
1122
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -1119,29 +1147,24 @@ export declare const Tempo: {
|
|
|
1119
1147
|
}, z.core.$strip>>;
|
|
1120
1148
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1121
1149
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1122
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1150
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
1123
1151
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1124
1152
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1125
1153
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1154
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1155
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1156
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1157
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1158
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1159
|
+
}, z.core.$strict>>>;
|
|
1160
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1161
|
+
}, z.core.$strip>>;
|
|
1126
1162
|
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1127
|
-
|
|
1128
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1163
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1129
1164
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1130
1165
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1131
1166
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1132
|
-
|
|
1133
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1134
|
-
spec: z.ZodMiniObject<{
|
|
1135
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1136
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1137
|
-
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1138
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1139
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1140
|
-
}, z.core.$strip>>>;
|
|
1141
|
-
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1142
|
-
}, z.core.$strip>;
|
|
1143
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1144
|
-
}, z.core.$strip>]>>>;
|
|
1167
|
+
}, z.core.$strict>>>;
|
|
1145
1168
|
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1146
1169
|
}, z.core.$strip>>;
|
|
1147
1170
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1242,7 +1265,41 @@ export declare const Tempo: {
|
|
|
1242
1265
|
threshold: z.ZodMiniNumber<number>;
|
|
1243
1266
|
version: z.ZodMiniBigInt<bigint>;
|
|
1244
1267
|
}, z.core.$strip>;
|
|
1245
|
-
signatures: z.
|
|
1268
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1269
|
+
signature: z.ZodMiniObject<{
|
|
1270
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1271
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1272
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1273
|
+
}, z.core.$strip>;
|
|
1274
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1275
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1276
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1277
|
+
publicKey: z.ZodMiniObject<{
|
|
1278
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1279
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1280
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1281
|
+
}, z.core.$strip>;
|
|
1282
|
+
signature: z.ZodMiniObject<{
|
|
1283
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1284
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1285
|
+
}, z.core.$strip>;
|
|
1286
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1287
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1288
|
+
metadata: z.ZodMiniObject<{
|
|
1289
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1290
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1291
|
+
}, z.core.$strip>;
|
|
1292
|
+
publicKey: z.ZodMiniObject<{
|
|
1293
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1294
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1295
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1296
|
+
}, z.core.$strip>;
|
|
1297
|
+
signature: z.ZodMiniObject<{
|
|
1298
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1299
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1300
|
+
}, z.core.$strip>;
|
|
1301
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1302
|
+
}, z.core.$strip>]>>>;
|
|
1246
1303
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1247
1304
|
}, z.core.$strip>]>;
|
|
1248
1305
|
}, z.core.$strip>>>>;
|
|
@@ -1268,73 +1325,9 @@ export declare const Tempo: {
|
|
|
1268
1325
|
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1269
1326
|
gasPrice: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1270
1327
|
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1271
|
-
keyAuthorization: z.ZodMiniOptional<z.
|
|
1272
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}
|
|
1273
|
-
isAdmin: z.ZodMiniBoolean<boolean
|
|
1274
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1275
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
1276
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1277
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1278
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
1279
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1280
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1281
|
-
}, z.core.$strip>>>>;
|
|
1282
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1283
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1284
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1285
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1286
|
-
}, z.core.$strip>>>>;
|
|
1287
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1288
|
-
signature: z.ZodMiniObject<{
|
|
1289
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1290
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1291
|
-
yParity: z.ZodMiniNumber<number>;
|
|
1292
|
-
}, z.core.$strip>;
|
|
1293
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1294
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1295
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
1296
|
-
publicKey: z.ZodMiniObject<{
|
|
1297
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1298
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1299
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1300
|
-
}, z.core.$strip>;
|
|
1301
|
-
signature: z.ZodMiniObject<{
|
|
1302
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1303
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1304
|
-
}, z.core.$strip>;
|
|
1305
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
1306
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1307
|
-
metadata: z.ZodMiniObject<{
|
|
1308
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1309
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
1310
|
-
}, z.core.$strip>;
|
|
1311
|
-
publicKey: z.ZodMiniObject<{
|
|
1312
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1313
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1314
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1315
|
-
}, z.core.$strip>;
|
|
1316
|
-
signature: z.ZodMiniObject<{
|
|
1317
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1318
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1319
|
-
}, z.core.$strip>;
|
|
1320
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1321
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1322
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1323
|
-
config: z.ZodMiniObject<{
|
|
1324
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1325
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1326
|
-
weight: z.ZodMiniNumber<number>;
|
|
1327
|
-
}, z.core.$strip>>>;
|
|
1328
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1329
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1330
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1331
|
-
}, z.core.$strip>;
|
|
1332
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1333
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1334
|
-
}, z.core.$strip>]>;
|
|
1335
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1336
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1337
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1328
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1329
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1330
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1338
1331
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1339
1332
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
1340
1333
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -1393,45 +1386,74 @@ export declare const Tempo: {
|
|
|
1393
1386
|
threshold: z.ZodMiniNumber<number>;
|
|
1394
1387
|
version: z.ZodMiniBigInt<bigint>;
|
|
1395
1388
|
}, z.core.$strip>;
|
|
1396
|
-
signatures: z.
|
|
1389
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1390
|
+
signature: z.ZodMiniObject<{
|
|
1391
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1392
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1393
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1394
|
+
}, z.core.$strip>;
|
|
1395
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1396
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1397
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1398
|
+
publicKey: z.ZodMiniObject<{
|
|
1399
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1400
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1401
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1402
|
+
}, z.core.$strip>;
|
|
1403
|
+
signature: z.ZodMiniObject<{
|
|
1404
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1405
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1406
|
+
}, z.core.$strip>;
|
|
1407
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1408
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1409
|
+
metadata: z.ZodMiniObject<{
|
|
1410
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1411
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1412
|
+
}, z.core.$strip>;
|
|
1413
|
+
publicKey: z.ZodMiniObject<{
|
|
1414
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1415
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1416
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1417
|
+
}, z.core.$strip>;
|
|
1418
|
+
signature: z.ZodMiniObject<{
|
|
1419
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1420
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1421
|
+
}, z.core.$strip>;
|
|
1422
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1423
|
+
}, z.core.$strip>]>>>;
|
|
1397
1424
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1398
1425
|
}, z.core.$strip>]>;
|
|
1399
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1426
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1400
1427
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1401
|
-
}, z.core.$strip
|
|
1428
|
+
}, z.core.$strip>>;
|
|
1402
1429
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1403
1430
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1404
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1431
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
1405
1432
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1406
1433
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1407
1434
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1435
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1436
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1437
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1438
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1439
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1440
|
+
}, z.core.$strict>>>;
|
|
1441
|
+
config: z.ZodMiniObject<{
|
|
1442
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1443
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1444
|
+
weight: z.ZodMiniNumber<number>;
|
|
1445
|
+
}, z.core.$strip>>>;
|
|
1446
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1447
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1448
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1449
|
+
}, z.core.$strip>;
|
|
1450
|
+
}, z.core.$strip>>;
|
|
1408
1451
|
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1409
|
-
|
|
1410
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1452
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1411
1453
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1412
1454
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1413
1455
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1414
|
-
|
|
1415
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1416
|
-
spec: z.ZodMiniObject<{
|
|
1417
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1418
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1419
|
-
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1420
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1421
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1422
|
-
}, z.core.$strip>>>;
|
|
1423
|
-
config: z.ZodMiniObject<{
|
|
1424
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1425
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1426
|
-
weight: z.ZodMiniNumber<number>;
|
|
1427
|
-
}, z.core.$strip>>>;
|
|
1428
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1429
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1430
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1431
|
-
}, z.core.$strip>;
|
|
1432
|
-
}, z.core.$strip>;
|
|
1433
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1434
|
-
}, z.core.$strip>]>>>;
|
|
1456
|
+
}, z.core.$strict>>>;
|
|
1435
1457
|
config: z.ZodMiniObject<{
|
|
1436
1458
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1437
1459
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1497,7 +1519,41 @@ export declare const Tempo: {
|
|
|
1497
1519
|
threshold: z.ZodMiniNumber<number>;
|
|
1498
1520
|
version: z.ZodMiniBigInt<bigint>;
|
|
1499
1521
|
}, z.core.$strip>;
|
|
1500
|
-
signatures: z.
|
|
1522
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1523
|
+
signature: z.ZodMiniObject<{
|
|
1524
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1525
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1526
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1527
|
+
}, z.core.$strip>;
|
|
1528
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1529
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1530
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1531
|
+
publicKey: z.ZodMiniObject<{
|
|
1532
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1533
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1534
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1535
|
+
}, z.core.$strip>;
|
|
1536
|
+
signature: z.ZodMiniObject<{
|
|
1537
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1538
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1539
|
+
}, z.core.$strip>;
|
|
1540
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1541
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1542
|
+
metadata: z.ZodMiniObject<{
|
|
1543
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1544
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1545
|
+
}, z.core.$strip>;
|
|
1546
|
+
publicKey: z.ZodMiniObject<{
|
|
1547
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1548
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1549
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1550
|
+
}, z.core.$strip>;
|
|
1551
|
+
signature: z.ZodMiniObject<{
|
|
1552
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1553
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1554
|
+
}, z.core.$strip>;
|
|
1555
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1556
|
+
}, z.core.$strip>]>>>;
|
|
1501
1557
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1502
1558
|
}, z.core.$strip>]>>;
|
|
1503
1559
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
@@ -2012,7 +2068,7 @@ export declare const multisig_approveKeyAuthorization: import("../internal/rpcSc
|
|
|
2012
2068
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2013
2069
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
2014
2070
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2015
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2071
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
2016
2072
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2017
2073
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2018
2074
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -2201,7 +2257,7 @@ export declare const Multisig: {
|
|
|
2201
2257
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2202
2258
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
2203
2259
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2204
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2260
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
2205
2261
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2206
2262
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2207
2263
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|