ox 1.7.1 → 1.7.2
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 +15 -0
- package/dist/core/Hash.js +1 -1
- package/dist/core/Hash.js.map +1 -1
- package/dist/tempo/KeyAuthorization.d.ts +1 -1
- package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.d.ts +151 -83
- package/dist/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.js +164 -86
- package/dist/tempo/MultisigConfig.js.map +1 -1
- package/dist/tempo/MultisigOperation.d.ts +324 -0
- package/dist/tempo/MultisigOperation.d.ts.map +1 -0
- package/dist/tempo/MultisigOperation.js +809 -0
- package/dist/tempo/MultisigOperation.js.map +1 -0
- package/dist/tempo/MultisigWitness.d.ts +106 -0
- package/dist/tempo/MultisigWitness.d.ts.map +1 -0
- package/dist/tempo/MultisigWitness.js +118 -0
- package/dist/tempo/MultisigWitness.js.map +1 -0
- package/dist/tempo/RpcSchemaTempo.d.ts +35 -0
- package/dist/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +60 -80
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +87 -146
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/tempo/TransactionRequest.d.ts +9 -17
- package/dist/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/tempo/TransactionRequest.js +7 -7
- package/dist/tempo/TransactionRequest.js.map +1 -1
- package/dist/tempo/TxEnvelopeTempo.d.ts +3 -2
- package/dist/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/tempo/TxEnvelopeTempo.js +3 -2
- package/dist/tempo/TxEnvelopeTempo.js.map +1 -1
- package/dist/tempo/index.d.ts +22 -2
- package/dist/tempo/index.d.ts.map +1 -1
- package/dist/tempo/index.js +22 -2
- package/dist/tempo/index.js.map +1 -1
- package/dist/zod/tempo/AuthorizationTempo.d.ts +110 -110
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +90 -83
- package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigConfig.d.ts +31 -2
- package/dist/zod/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigConfig.js +26 -3
- package/dist/zod/tempo/MultisigConfig.js.map +1 -1
- package/dist/zod/tempo/MultisigOperation.d.ts +168 -0
- package/dist/zod/tempo/MultisigOperation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigOperation.js +65 -0
- package/dist/zod/tempo/MultisigOperation.js.map +1 -0
- package/dist/zod/tempo/MultisigWitness.d.ts +152 -0
- package/dist/zod/tempo/MultisigWitness.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigWitness.js +76 -0
- package/dist/zod/tempo/MultisigWitness.js.map +1 -0
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +607 -102
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.js +38 -0
- package/dist/zod/tempo/RpcSchemaTempo.js.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.d.ts +33 -33
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +9 -16
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +228 -222
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +379 -176
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.js +11 -22
- package/dist/zod/tempo/TransactionRequest.js.map +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts +60 -48
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts +15 -12
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts.map +1 -1
- package/dist/zod/tempo/z.d.ts +2 -0
- package/dist/zod/tempo/z.d.ts.map +1 -1
- package/dist/zod/tempo/z.js +2 -0
- package/dist/zod/tempo/z.js.map +1 -1
- package/package.json +21 -1
- package/src/core/Hash.ts +1 -1
- package/src/core/_test/Hash.test.ts +15 -0
- package/src/tempo/KeyAuthorization.test-d.ts +13 -1
- package/src/tempo/KeyAuthorization.test.ts +65 -0
- package/src/tempo/KeyAuthorization.ts +1 -1
- package/src/tempo/MultisigConfig.test-d.ts +52 -0
- package/src/tempo/MultisigConfig.test.ts +288 -227
- package/src/tempo/MultisigConfig.ts +275 -104
- package/src/tempo/MultisigOperation.test-d.ts +77 -0
- package/src/tempo/MultisigOperation.test.ts +1883 -0
- package/src/tempo/MultisigOperation.ts +1254 -0
- package/src/tempo/MultisigWitness.test-d.ts +42 -0
- package/src/tempo/MultisigWitness.test.ts +288 -0
- package/src/tempo/MultisigWitness.ts +210 -0
- package/src/tempo/RpcSchemaTempo.test-d.ts +56 -0
- package/src/tempo/RpcSchemaTempo.ts +37 -0
- package/src/tempo/SignatureEnvelope.test-d.ts +63 -46
- package/src/tempo/SignatureEnvelope.test.ts +523 -500
- package/src/tempo/SignatureEnvelope.ts +172 -242
- package/src/tempo/TransactionRequest.test-d.ts +11 -0
- package/src/tempo/TransactionRequest.test.ts +285 -33
- package/src/tempo/TransactionRequest.ts +15 -20
- package/src/tempo/TxEnvelopeTempo.test-d.ts +7 -0
- package/src/tempo/TxEnvelopeTempo.test.ts +25 -0
- package/src/tempo/TxEnvelopeTempo.ts +5 -3
- package/src/tempo/index.ts +22 -2
- package/src/tempo/multisig.e2e.test.ts +113 -86
- package/src/version.ts +1 -1
- package/src/zod/tempo/MultisigConfig.ts +29 -3
- package/src/zod/tempo/MultisigOperation.ts +69 -0
- package/src/zod/tempo/MultisigWitness.ts +101 -0
- package/src/zod/tempo/RpcSchemaTempo.ts +43 -0
- package/src/zod/tempo/SignatureEnvelope.ts +20 -38
- package/src/zod/tempo/TransactionRequest.ts +17 -26
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +11 -0
- package/src/zod/tempo/_test/MultisigConfig.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigConfig.test.ts +13 -2
- package/src/zod/tempo/_test/MultisigOperation.test-d.ts +27 -0
- package/src/zod/tempo/_test/MultisigOperation.test.ts +68 -0
- package/src/zod/tempo/_test/MultisigWitness.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigWitness.test.ts +149 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test-d.ts +31 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test.ts +41 -0
- package/src/zod/tempo/_test/SignatureEnvelope.test-d.ts +1 -1
- package/src/zod/tempo/_test/SignatureEnvelope.test.ts +25 -34
- package/src/zod/tempo/_test/TransactionRequest.test.ts +176 -8
- package/src/zod/tempo/z.ts +2 -0
|
@@ -37,20 +37,19 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
37
37
|
type: z.ZodMiniLiteral<"keychain">;
|
|
38
38
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
39
39
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
40
|
-
}, z.core.$strip>, z.
|
|
40
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
41
41
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
42
|
-
|
|
43
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
44
|
-
init: z.ZodMiniObject<{
|
|
45
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
46
|
-
threshold: z.ZodMiniNumber<number>;
|
|
42
|
+
config: z.ZodMiniObject<{
|
|
47
43
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
48
44
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
49
45
|
weight: z.ZodMiniNumber<number>;
|
|
50
46
|
}, z.core.$strip>>>;
|
|
47
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
48
|
+
threshold: z.ZodMiniNumber<number>;
|
|
49
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
51
50
|
}, z.core.$strip>;
|
|
52
51
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
53
|
-
}, z.core.$strict>]
|
|
52
|
+
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
54
53
|
signature: z.ZodMiniObject<{
|
|
55
54
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
56
55
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -92,14 +91,15 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
92
91
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
93
92
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
94
93
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
95
|
-
|
|
96
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
97
|
-
threshold: z.ZodMiniNumber<number>;
|
|
94
|
+
config: z.ZodMiniObject<{
|
|
98
95
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
99
96
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
100
97
|
weight: z.ZodMiniNumber<number>;
|
|
101
98
|
}, z.core.$strip>>>;
|
|
102
|
-
|
|
99
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
100
|
+
threshold: z.ZodMiniNumber<number>;
|
|
101
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
102
|
+
}, z.core.$strip>;
|
|
103
103
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
104
104
|
type: z.ZodMiniLiteral<"multisig">;
|
|
105
105
|
}, z.core.$strip>]>>;
|
|
@@ -169,20 +169,19 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
169
169
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
170
170
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
171
171
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
172
|
-
}, z.core.$strip>]>, z.
|
|
172
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
173
173
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
174
|
-
|
|
175
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
176
|
-
init: z.ZodMiniObject<{
|
|
177
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
178
|
-
threshold: z.ZodMiniNumber<number>;
|
|
174
|
+
config: z.ZodMiniObject<{
|
|
179
175
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
180
176
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
181
177
|
weight: z.ZodMiniNumber<number>;
|
|
182
178
|
}, z.core.$strip>>>;
|
|
179
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
180
|
+
threshold: z.ZodMiniNumber<number>;
|
|
181
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
183
182
|
}, z.core.$strip>;
|
|
184
183
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
185
|
-
}, z.core.$strict>]
|
|
184
|
+
}, z.core.$strict>]>;
|
|
186
185
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
187
186
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
188
187
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -236,14 +235,15 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
236
235
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
237
236
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
238
237
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
239
|
-
|
|
240
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
241
|
-
threshold: z.ZodMiniNumber<number>;
|
|
238
|
+
config: z.ZodMiniObject<{
|
|
242
239
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
243
240
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
244
241
|
weight: z.ZodMiniNumber<number>;
|
|
245
242
|
}, z.core.$strip>>>;
|
|
246
|
-
|
|
243
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
244
|
+
threshold: z.ZodMiniNumber<number>;
|
|
245
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
246
|
+
}, z.core.$strip>;
|
|
247
247
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
248
248
|
type: z.ZodMiniLiteral<"multisig">;
|
|
249
249
|
}, z.core.$strip>]>;
|
|
@@ -299,14 +299,15 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
299
299
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
300
300
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
301
301
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
302
|
-
|
|
303
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
304
|
-
threshold: z.ZodMiniNumber<number>;
|
|
302
|
+
config: z.ZodMiniObject<{
|
|
305
303
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
306
304
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
307
305
|
weight: z.ZodMiniNumber<number>;
|
|
308
306
|
}, z.core.$strip>>>;
|
|
309
|
-
|
|
307
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
308
|
+
threshold: z.ZodMiniNumber<number>;
|
|
309
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
310
|
+
}, z.core.$strip>;
|
|
310
311
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
311
312
|
type: z.ZodMiniLiteral<"multisig">;
|
|
312
313
|
}, z.core.$strip>]>;
|
|
@@ -343,20 +344,19 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
343
344
|
type: z.ZodMiniLiteral<"keychain">;
|
|
344
345
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
345
346
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
346
|
-
}, z.core.$strip>, z.
|
|
347
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
347
348
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
348
|
-
|
|
349
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
350
|
-
init: z.ZodMiniObject<{
|
|
351
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
352
|
-
threshold: z.ZodMiniNumber<number>;
|
|
349
|
+
config: z.ZodMiniObject<{
|
|
353
350
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
354
351
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
355
352
|
weight: z.ZodMiniNumber<number>;
|
|
356
353
|
}, z.core.$strip>>>;
|
|
354
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
355
|
+
threshold: z.ZodMiniNumber<number>;
|
|
356
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
357
357
|
}, z.core.$strip>;
|
|
358
358
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
359
|
-
}, z.core.$strict>]
|
|
359
|
+
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
360
360
|
signature: z.ZodMiniObject<{
|
|
361
361
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
362
362
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -398,14 +398,15 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
398
398
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
399
399
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
400
400
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
401
|
-
|
|
402
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
403
|
-
threshold: z.ZodMiniNumber<number>;
|
|
401
|
+
config: z.ZodMiniObject<{
|
|
404
402
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
405
403
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
406
404
|
weight: z.ZodMiniNumber<number>;
|
|
407
405
|
}, z.core.$strip>>>;
|
|
408
|
-
|
|
406
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
407
|
+
threshold: z.ZodMiniNumber<number>;
|
|
408
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
409
|
+
}, z.core.$strip>;
|
|
409
410
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
410
411
|
type: z.ZodMiniLiteral<"multisig">;
|
|
411
412
|
}, z.core.$strip>]>>;
|
|
@@ -452,20 +453,19 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
452
453
|
type: z.ZodMiniLiteral<"keychain">;
|
|
453
454
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
454
455
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
455
|
-
}, z.core.$strip>, z.
|
|
456
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
456
457
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
457
|
-
|
|
458
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
459
|
-
init: z.ZodMiniObject<{
|
|
460
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
461
|
-
threshold: z.ZodMiniNumber<number>;
|
|
458
|
+
config: z.ZodMiniObject<{
|
|
462
459
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
463
460
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
464
461
|
weight: z.ZodMiniNumber<number>;
|
|
465
462
|
}, z.core.$strip>>>;
|
|
463
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
464
|
+
threshold: z.ZodMiniNumber<number>;
|
|
465
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
466
466
|
}, z.core.$strip>;
|
|
467
467
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
468
|
-
}, z.core.$strict>]
|
|
468
|
+
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
469
469
|
signature: z.ZodMiniObject<{
|
|
470
470
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
471
471
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -507,14 +507,15 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
507
507
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
508
508
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
509
509
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
510
|
-
|
|
511
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
512
|
-
threshold: z.ZodMiniNumber<number>;
|
|
510
|
+
config: z.ZodMiniObject<{
|
|
513
511
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
514
512
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
515
513
|
weight: z.ZodMiniNumber<number>;
|
|
516
514
|
}, z.core.$strip>>>;
|
|
517
|
-
|
|
515
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
516
|
+
threshold: z.ZodMiniNumber<number>;
|
|
517
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
518
|
+
}, z.core.$strip>;
|
|
518
519
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
519
520
|
type: z.ZodMiniLiteral<"multisig">;
|
|
520
521
|
}, z.core.$strip>]>>;
|
|
@@ -584,20 +585,19 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
584
585
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
585
586
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
586
587
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
587
|
-
}, z.core.$strip>]>, z.
|
|
588
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
588
589
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
589
|
-
|
|
590
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
591
|
-
init: z.ZodMiniObject<{
|
|
592
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
593
|
-
threshold: z.ZodMiniNumber<number>;
|
|
590
|
+
config: z.ZodMiniObject<{
|
|
594
591
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
595
592
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
596
593
|
weight: z.ZodMiniNumber<number>;
|
|
597
594
|
}, z.core.$strip>>>;
|
|
595
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
596
|
+
threshold: z.ZodMiniNumber<number>;
|
|
597
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
598
598
|
}, z.core.$strip>;
|
|
599
599
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
600
|
-
}, z.core.$strict>]
|
|
600
|
+
}, z.core.$strict>]>;
|
|
601
601
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
602
602
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
603
603
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -651,14 +651,15 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
651
651
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
652
652
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
653
653
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
654
|
-
|
|
655
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
656
|
-
threshold: z.ZodMiniNumber<number>;
|
|
654
|
+
config: z.ZodMiniObject<{
|
|
657
655
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
658
656
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
659
657
|
weight: z.ZodMiniNumber<number>;
|
|
660
658
|
}, z.core.$strip>>>;
|
|
661
|
-
|
|
659
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
660
|
+
threshold: z.ZodMiniNumber<number>;
|
|
661
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
662
|
+
}, z.core.$strip>;
|
|
662
663
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
663
664
|
type: z.ZodMiniLiteral<"multisig">;
|
|
664
665
|
}, z.core.$strip>]>;
|
|
@@ -714,14 +715,15 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
714
715
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
715
716
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
716
717
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
717
|
-
|
|
718
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
719
|
-
threshold: z.ZodMiniNumber<number>;
|
|
718
|
+
config: z.ZodMiniObject<{
|
|
720
719
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
721
720
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
722
721
|
weight: z.ZodMiniNumber<number>;
|
|
723
722
|
}, z.core.$strip>>>;
|
|
724
|
-
|
|
723
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
724
|
+
threshold: z.ZodMiniNumber<number>;
|
|
725
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
726
|
+
}, z.core.$strip>;
|
|
725
727
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
726
728
|
type: z.ZodMiniLiteral<"multisig">;
|
|
727
729
|
}, z.core.$strip>]>;
|
|
@@ -758,20 +760,19 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
758
760
|
type: z.ZodMiniLiteral<"keychain">;
|
|
759
761
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
760
762
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
761
|
-
}, z.core.$strip>, z.
|
|
763
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
762
764
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
763
|
-
|
|
764
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
765
|
-
init: z.ZodMiniObject<{
|
|
766
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
767
|
-
threshold: z.ZodMiniNumber<number>;
|
|
765
|
+
config: z.ZodMiniObject<{
|
|
768
766
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
769
767
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
770
768
|
weight: z.ZodMiniNumber<number>;
|
|
771
769
|
}, z.core.$strip>>>;
|
|
770
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
771
|
+
threshold: z.ZodMiniNumber<number>;
|
|
772
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
772
773
|
}, z.core.$strip>;
|
|
773
774
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
774
|
-
}, z.core.$strict>]
|
|
775
|
+
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
775
776
|
signature: z.ZodMiniObject<{
|
|
776
777
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
777
778
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -813,14 +814,15 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
813
814
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
814
815
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
815
816
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
816
|
-
|
|
817
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
818
|
-
threshold: z.ZodMiniNumber<number>;
|
|
817
|
+
config: z.ZodMiniObject<{
|
|
819
818
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
820
819
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
821
820
|
weight: z.ZodMiniNumber<number>;
|
|
822
821
|
}, z.core.$strip>>>;
|
|
823
|
-
|
|
822
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
823
|
+
threshold: z.ZodMiniNumber<number>;
|
|
824
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
825
|
+
}, z.core.$strip>;
|
|
824
826
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
825
827
|
type: z.ZodMiniLiteral<"multisig">;
|
|
826
828
|
}, z.core.$strip>]>>;
|
|
@@ -871,20 +873,19 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
871
873
|
type: z.ZodMiniLiteral<"keychain">;
|
|
872
874
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
873
875
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
874
|
-
}, z.core.$strip>, z.
|
|
876
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
875
877
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
876
|
-
|
|
877
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
878
|
-
init: z.ZodMiniObject<{
|
|
879
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
880
|
-
threshold: z.ZodMiniNumber<number>;
|
|
878
|
+
config: z.ZodMiniObject<{
|
|
881
879
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
882
880
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
883
881
|
weight: z.ZodMiniNumber<number>;
|
|
884
882
|
}, z.core.$strip>>>;
|
|
883
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
884
|
+
threshold: z.ZodMiniNumber<number>;
|
|
885
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
885
886
|
}, z.core.$strip>;
|
|
886
887
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
887
|
-
}, z.core.$strict>]
|
|
888
|
+
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
888
889
|
signature: z.ZodMiniObject<{
|
|
889
890
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
890
891
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -926,14 +927,15 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
926
927
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
927
928
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
928
929
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
929
|
-
|
|
930
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
931
|
-
threshold: z.ZodMiniNumber<number>;
|
|
930
|
+
config: z.ZodMiniObject<{
|
|
932
931
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
933
932
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
934
933
|
weight: z.ZodMiniNumber<number>;
|
|
935
934
|
}, z.core.$strip>>>;
|
|
936
|
-
|
|
935
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
936
|
+
threshold: z.ZodMiniNumber<number>;
|
|
937
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
938
|
+
}, z.core.$strip>;
|
|
937
939
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
938
940
|
type: z.ZodMiniLiteral<"multisig">;
|
|
939
941
|
}, z.core.$strip>]>>;
|
|
@@ -1000,20 +1002,19 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1000
1002
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1001
1003
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1002
1004
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1003
|
-
}, z.core.$strip>]>, z.
|
|
1005
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1004
1006
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1005
|
-
|
|
1006
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1007
|
-
init: z.ZodMiniObject<{
|
|
1008
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1009
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1007
|
+
config: z.ZodMiniObject<{
|
|
1010
1008
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1011
1009
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1012
1010
|
weight: z.ZodMiniNumber<number>;
|
|
1013
1011
|
}, z.core.$strip>>>;
|
|
1012
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1013
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1014
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1014
1015
|
}, z.core.$strip>;
|
|
1015
1016
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1016
|
-
}, z.core.$strict>]
|
|
1017
|
+
}, z.core.$strict>]>;
|
|
1017
1018
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1018
1019
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1019
1020
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1067,14 +1068,15 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1067
1068
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1068
1069
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1069
1070
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1070
|
-
|
|
1071
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1072
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1071
|
+
config: z.ZodMiniObject<{
|
|
1073
1072
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1074
1073
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1075
1074
|
weight: z.ZodMiniNumber<number>;
|
|
1076
1075
|
}, z.core.$strip>>>;
|
|
1077
|
-
|
|
1076
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1077
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1078
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1079
|
+
}, z.core.$strip>;
|
|
1078
1080
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1079
1081
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1080
1082
|
}, z.core.$strip>]>;
|
|
@@ -1130,14 +1132,15 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1130
1132
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1131
1133
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1132
1134
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1133
|
-
|
|
1134
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1135
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1135
|
+
config: z.ZodMiniObject<{
|
|
1136
1136
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1137
1137
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1138
1138
|
weight: z.ZodMiniNumber<number>;
|
|
1139
1139
|
}, z.core.$strip>>>;
|
|
1140
|
-
|
|
1140
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1141
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1142
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1143
|
+
}, z.core.$strip>;
|
|
1141
1144
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1142
1145
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1143
1146
|
}, z.core.$strip>]>;
|
|
@@ -1174,20 +1177,19 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1174
1177
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1175
1178
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1176
1179
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1177
|
-
}, z.core.$strip>, z.
|
|
1180
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1178
1181
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1179
|
-
|
|
1180
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1181
|
-
init: z.ZodMiniObject<{
|
|
1182
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1183
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1182
|
+
config: z.ZodMiniObject<{
|
|
1184
1183
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1185
1184
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1186
1185
|
weight: z.ZodMiniNumber<number>;
|
|
1187
1186
|
}, z.core.$strip>>>;
|
|
1187
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1188
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1189
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1188
1190
|
}, z.core.$strip>;
|
|
1189
1191
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1190
|
-
}, z.core.$strict>]
|
|
1192
|
+
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1191
1193
|
signature: z.ZodMiniObject<{
|
|
1192
1194
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1193
1195
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1229,14 +1231,15 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1229
1231
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1230
1232
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1231
1233
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1232
|
-
|
|
1233
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1234
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1234
|
+
config: z.ZodMiniObject<{
|
|
1235
1235
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1236
1236
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1237
1237
|
weight: z.ZodMiniNumber<number>;
|
|
1238
1238
|
}, z.core.$strip>>>;
|
|
1239
|
-
|
|
1239
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1240
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1241
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1242
|
+
}, z.core.$strip>;
|
|
1240
1243
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1241
1244
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1242
1245
|
}, z.core.$strip>]>>;
|
|
@@ -1282,20 +1285,19 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1282
1285
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1283
1286
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1284
1287
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1285
|
-
}, z.core.$strip>, z.
|
|
1288
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1286
1289
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1287
|
-
|
|
1288
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1289
|
-
init: z.ZodMiniObject<{
|
|
1290
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1291
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1290
|
+
config: z.ZodMiniObject<{
|
|
1292
1291
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1293
1292
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1294
1293
|
weight: z.ZodMiniNumber<number>;
|
|
1295
1294
|
}, z.core.$strip>>>;
|
|
1295
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1296
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1297
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1296
1298
|
}, z.core.$strip>;
|
|
1297
1299
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1298
|
-
}, z.core.$strict>]
|
|
1300
|
+
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1299
1301
|
signature: z.ZodMiniObject<{
|
|
1300
1302
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1301
1303
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1337,14 +1339,15 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1337
1339
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1338
1340
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1339
1341
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1340
|
-
|
|
1341
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1342
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1342
|
+
config: z.ZodMiniObject<{
|
|
1343
1343
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1344
1344
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1345
1345
|
weight: z.ZodMiniNumber<number>;
|
|
1346
1346
|
}, z.core.$strip>>>;
|
|
1347
|
-
|
|
1347
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1348
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1349
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1350
|
+
}, z.core.$strip>;
|
|
1348
1351
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1349
1352
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1350
1353
|
}, z.core.$strip>]>>;
|
|
@@ -1414,20 +1417,19 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1414
1417
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1415
1418
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1416
1419
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1417
|
-
}, z.core.$strip>]>, z.
|
|
1420
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1418
1421
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1419
|
-
|
|
1420
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1421
|
-
init: z.ZodMiniObject<{
|
|
1422
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1423
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1422
|
+
config: z.ZodMiniObject<{
|
|
1424
1423
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1425
1424
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1426
1425
|
weight: z.ZodMiniNumber<number>;
|
|
1427
1426
|
}, z.core.$strip>>>;
|
|
1427
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1428
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1429
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1428
1430
|
}, z.core.$strip>;
|
|
1429
1431
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1430
|
-
}, z.core.$strict>]
|
|
1432
|
+
}, z.core.$strict>]>;
|
|
1431
1433
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1432
1434
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1433
1435
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1481,14 +1483,15 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1481
1483
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1482
1484
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1483
1485
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1484
|
-
|
|
1485
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1486
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1486
|
+
config: z.ZodMiniObject<{
|
|
1487
1487
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1488
1488
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1489
1489
|
weight: z.ZodMiniNumber<number>;
|
|
1490
1490
|
}, z.core.$strip>>>;
|
|
1491
|
-
|
|
1491
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1492
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1493
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1494
|
+
}, z.core.$strip>;
|
|
1492
1495
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1493
1496
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1494
1497
|
}, z.core.$strip>]>;
|
|
@@ -1544,14 +1547,15 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1544
1547
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1545
1548
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1546
1549
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1547
|
-
|
|
1548
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1549
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1550
|
+
config: z.ZodMiniObject<{
|
|
1550
1551
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1551
1552
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1552
1553
|
weight: z.ZodMiniNumber<number>;
|
|
1553
1554
|
}, z.core.$strip>>>;
|
|
1554
|
-
|
|
1555
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1556
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1557
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1558
|
+
}, z.core.$strip>;
|
|
1555
1559
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1556
1560
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1557
1561
|
}, z.core.$strip>]>;
|
|
@@ -1588,20 +1592,19 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1588
1592
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1589
1593
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1590
1594
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1591
|
-
}, z.core.$strip>, z.
|
|
1595
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1592
1596
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1593
|
-
|
|
1594
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1595
|
-
init: z.ZodMiniObject<{
|
|
1596
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1597
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1597
|
+
config: z.ZodMiniObject<{
|
|
1598
1598
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1599
1599
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1600
1600
|
weight: z.ZodMiniNumber<number>;
|
|
1601
1601
|
}, z.core.$strip>>>;
|
|
1602
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1603
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1604
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1602
1605
|
}, z.core.$strip>;
|
|
1603
1606
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1604
|
-
}, z.core.$strict>]
|
|
1607
|
+
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1605
1608
|
signature: z.ZodMiniObject<{
|
|
1606
1609
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1607
1610
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1643,14 +1646,15 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1643
1646
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1644
1647
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1645
1648
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1646
|
-
|
|
1647
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1648
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1649
|
+
config: z.ZodMiniObject<{
|
|
1649
1650
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1650
1651
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1651
1652
|
weight: z.ZodMiniNumber<number>;
|
|
1652
1653
|
}, z.core.$strip>>>;
|
|
1653
|
-
|
|
1654
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1655
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1656
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1657
|
+
}, z.core.$strip>;
|
|
1654
1658
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1655
1659
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1656
1660
|
}, z.core.$strip>]>>;
|
|
@@ -1846,20 +1850,19 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1846
1850
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1847
1851
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1848
1852
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1849
|
-
}, z.core.$strip>, z.
|
|
1853
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1850
1854
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1851
|
-
|
|
1852
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1853
|
-
init: z.ZodMiniObject<{
|
|
1854
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1855
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1855
|
+
config: z.ZodMiniObject<{
|
|
1856
1856
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1857
1857
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1858
1858
|
weight: z.ZodMiniNumber<number>;
|
|
1859
1859
|
}, z.core.$strip>>>;
|
|
1860
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1861
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1862
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1860
1863
|
}, z.core.$strip>;
|
|
1861
1864
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1862
|
-
}, z.core.$strict>]
|
|
1865
|
+
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1863
1866
|
signature: z.ZodMiniObject<{
|
|
1864
1867
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1865
1868
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1901,14 +1904,15 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1901
1904
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1902
1905
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1903
1906
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1904
|
-
|
|
1905
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1906
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1907
|
+
config: z.ZodMiniObject<{
|
|
1907
1908
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1908
1909
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1909
1910
|
weight: z.ZodMiniNumber<number>;
|
|
1910
1911
|
}, z.core.$strip>>>;
|
|
1911
|
-
|
|
1912
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1913
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1914
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1915
|
+
}, z.core.$strip>;
|
|
1912
1916
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1913
1917
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1914
1918
|
}, z.core.$strip>]>>;
|
|
@@ -1978,20 +1982,19 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1978
1982
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1979
1983
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1980
1984
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1981
|
-
}, z.core.$strip>]>, z.
|
|
1985
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1982
1986
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1983
|
-
|
|
1984
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1985
|
-
init: z.ZodMiniObject<{
|
|
1986
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1987
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1987
|
+
config: z.ZodMiniObject<{
|
|
1988
1988
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1989
1989
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1990
1990
|
weight: z.ZodMiniNumber<number>;
|
|
1991
1991
|
}, z.core.$strip>>>;
|
|
1992
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1993
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1994
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1992
1995
|
}, z.core.$strip>;
|
|
1993
1996
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1994
|
-
}, z.core.$strict>]
|
|
1997
|
+
}, z.core.$strict>]>;
|
|
1995
1998
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1996
1999
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1997
2000
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2045,14 +2048,15 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2045
2048
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2046
2049
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2047
2050
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2048
|
-
|
|
2049
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2050
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2051
|
+
config: z.ZodMiniObject<{
|
|
2051
2052
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2052
2053
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2053
2054
|
weight: z.ZodMiniNumber<number>;
|
|
2054
2055
|
}, z.core.$strip>>>;
|
|
2055
|
-
|
|
2056
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2057
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2058
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2059
|
+
}, z.core.$strip>;
|
|
2056
2060
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2057
2061
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2058
2062
|
}, z.core.$strip>]>;
|
|
@@ -2108,14 +2112,15 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2108
2112
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2109
2113
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2110
2114
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2111
|
-
|
|
2112
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2113
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2115
|
+
config: z.ZodMiniObject<{
|
|
2114
2116
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2115
2117
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2116
2118
|
weight: z.ZodMiniNumber<number>;
|
|
2117
2119
|
}, z.core.$strip>>>;
|
|
2118
|
-
|
|
2120
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2121
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2122
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2123
|
+
}, z.core.$strip>;
|
|
2119
2124
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2120
2125
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2121
2126
|
}, z.core.$strip>]>;
|
|
@@ -2152,20 +2157,19 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2152
2157
|
type: z.ZodMiniLiteral<"keychain">;
|
|
2153
2158
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2154
2159
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2155
|
-
}, z.core.$strip>, z.
|
|
2160
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2156
2161
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2157
|
-
|
|
2158
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
2159
|
-
init: z.ZodMiniObject<{
|
|
2160
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2161
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2162
|
+
config: z.ZodMiniObject<{
|
|
2162
2163
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2163
2164
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2164
2165
|
weight: z.ZodMiniNumber<number>;
|
|
2165
2166
|
}, z.core.$strip>>>;
|
|
2167
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2168
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2169
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2166
2170
|
}, z.core.$strip>;
|
|
2167
2171
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2168
|
-
}, z.core.$strict>]
|
|
2172
|
+
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2169
2173
|
signature: z.ZodMiniObject<{
|
|
2170
2174
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2171
2175
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2207,14 +2211,15 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2207
2211
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2208
2212
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2209
2213
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2210
|
-
|
|
2211
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2212
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2214
|
+
config: z.ZodMiniObject<{
|
|
2213
2215
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2214
2216
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2215
2217
|
weight: z.ZodMiniNumber<number>;
|
|
2216
2218
|
}, z.core.$strip>>>;
|
|
2217
|
-
|
|
2219
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2220
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2221
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2222
|
+
}, z.core.$strip>;
|
|
2218
2223
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2219
2224
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2220
2225
|
}, z.core.$strip>]>>;
|
|
@@ -2414,20 +2419,19 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2414
2419
|
type: z.ZodMiniLiteral<"keychain">;
|
|
2415
2420
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2416
2421
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2417
|
-
}, z.core.$strip>, z.
|
|
2422
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2418
2423
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2419
|
-
|
|
2420
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
2421
|
-
init: z.ZodMiniObject<{
|
|
2422
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2423
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2424
|
+
config: z.ZodMiniObject<{
|
|
2424
2425
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2425
2426
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2426
2427
|
weight: z.ZodMiniNumber<number>;
|
|
2427
2428
|
}, z.core.$strip>>>;
|
|
2429
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2430
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2431
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2428
2432
|
}, z.core.$strip>;
|
|
2429
2433
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2430
|
-
}, z.core.$strict>]
|
|
2434
|
+
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2431
2435
|
signature: z.ZodMiniObject<{
|
|
2432
2436
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2433
2437
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2469,14 +2473,15 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2469
2473
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2470
2474
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2471
2475
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2472
|
-
|
|
2473
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2474
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2476
|
+
config: z.ZodMiniObject<{
|
|
2475
2477
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2476
2478
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2477
2479
|
weight: z.ZodMiniNumber<number>;
|
|
2478
2480
|
}, z.core.$strip>>>;
|
|
2479
|
-
|
|
2481
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2482
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2483
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2484
|
+
}, z.core.$strip>;
|
|
2480
2485
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2481
2486
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2482
2487
|
}, z.core.$strip>]>>;
|
|
@@ -2543,20 +2548,19 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2543
2548
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2544
2549
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2545
2550
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2546
|
-
}, z.core.$strip>]>, z.
|
|
2551
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2547
2552
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2548
|
-
|
|
2549
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
2550
|
-
init: z.ZodMiniObject<{
|
|
2551
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2552
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2553
|
+
config: z.ZodMiniObject<{
|
|
2553
2554
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2554
2555
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2555
2556
|
weight: z.ZodMiniNumber<number>;
|
|
2556
2557
|
}, z.core.$strip>>>;
|
|
2558
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2559
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2560
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2557
2561
|
}, z.core.$strip>;
|
|
2558
2562
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2559
|
-
}, z.core.$strict>]
|
|
2563
|
+
}, z.core.$strict>]>;
|
|
2560
2564
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2561
2565
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2562
2566
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2610,14 +2614,15 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2610
2614
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2611
2615
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2612
2616
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2613
|
-
|
|
2614
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2615
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2617
|
+
config: z.ZodMiniObject<{
|
|
2616
2618
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2617
2619
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2618
2620
|
weight: z.ZodMiniNumber<number>;
|
|
2619
2621
|
}, z.core.$strip>>>;
|
|
2620
|
-
|
|
2622
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2623
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2624
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2625
|
+
}, z.core.$strip>;
|
|
2621
2626
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2622
2627
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2623
2628
|
}, z.core.$strip>]>;
|
|
@@ -2673,14 +2678,15 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2673
2678
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2674
2679
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2675
2680
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2676
|
-
|
|
2677
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2678
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2681
|
+
config: z.ZodMiniObject<{
|
|
2679
2682
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2680
2683
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2681
2684
|
weight: z.ZodMiniNumber<number>;
|
|
2682
2685
|
}, z.core.$strip>>>;
|
|
2683
|
-
|
|
2686
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2687
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2688
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2689
|
+
}, z.core.$strip>;
|
|
2684
2690
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2685
2691
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2686
2692
|
}, z.core.$strip>]>;
|
|
@@ -2717,20 +2723,19 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2717
2723
|
type: z.ZodMiniLiteral<"keychain">;
|
|
2718
2724
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2719
2725
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2720
|
-
}, z.core.$strip>, z.
|
|
2726
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2721
2727
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2722
|
-
|
|
2723
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
2724
|
-
init: z.ZodMiniObject<{
|
|
2725
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2726
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2728
|
+
config: z.ZodMiniObject<{
|
|
2727
2729
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2728
2730
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2729
2731
|
weight: z.ZodMiniNumber<number>;
|
|
2730
2732
|
}, z.core.$strip>>>;
|
|
2733
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2734
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2735
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2731
2736
|
}, z.core.$strip>;
|
|
2732
2737
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2733
|
-
}, z.core.$strict>]
|
|
2738
|
+
}, z.core.$strict>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2734
2739
|
signature: z.ZodMiniObject<{
|
|
2735
2740
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2736
2741
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2772,14 +2777,15 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2772
2777
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2773
2778
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2774
2779
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2775
|
-
|
|
2776
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2777
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2780
|
+
config: z.ZodMiniObject<{
|
|
2778
2781
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2779
2782
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2780
2783
|
weight: z.ZodMiniNumber<number>;
|
|
2781
2784
|
}, z.core.$strip>>>;
|
|
2782
|
-
|
|
2785
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2786
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2787
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2788
|
+
}, z.core.$strip>;
|
|
2783
2789
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2784
2790
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2785
2791
|
}, z.core.$strip>]>>;
|