ox 1.7.1 → 1.7.4
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 +42 -0
- package/dist/core/Hash.js +1 -1
- package/dist/core/Hash.js.map +1 -1
- package/dist/tempo/KeyAuthorization.d.ts +2 -2
- 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 +340 -0
- package/dist/tempo/MultisigOperation.d.ts.map +1 -0
- package/dist/tempo/MultisigOperation.js +839 -0
- package/dist/tempo/MultisigOperation.js.map +1 -0
- package/dist/tempo/MultisigSimulation.d.ts +132 -0
- package/dist/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/tempo/MultisigSimulation.js +140 -0
- package/dist/tempo/MultisigSimulation.js.map +1 -0
- package/dist/tempo/RpcSchemaTempo.d.ts +45 -0
- package/dist/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +55 -86
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +93 -158
- 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 +60 -180
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +65 -118
- 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 +158 -0
- package/dist/zod/tempo/MultisigOperation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigOperation.js +62 -0
- package/dist/zod/tempo/MultisigOperation.js.map +1 -0
- package/dist/zod/tempo/MultisigSimulation.d.ts +120 -0
- package/dist/zod/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigSimulation.js +78 -0
- package/dist/zod/tempo/MultisigSimulation.js.map +1 -0
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +528 -144
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.js +47 -0
- package/dist/zod/tempo/RpcSchemaTempo.js.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.d.ts +18 -54
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +5 -22
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +138 -348
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +286 -239
- 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/AuthorizationTempo.test.ts +4 -0
- package/src/tempo/KeyAuthorization.test-d.ts +13 -12
- package/src/tempo/KeyAuthorization.test.ts +109 -3
- package/src/tempo/KeyAuthorization.ts +4 -4
- 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 +79 -0
- package/src/tempo/MultisigOperation.test.ts +1950 -0
- package/src/tempo/MultisigOperation.ts +1293 -0
- package/src/tempo/MultisigSimulation.test-d.ts +33 -0
- package/src/tempo/MultisigSimulation.test.ts +283 -0
- package/src/tempo/MultisigSimulation.ts +266 -0
- package/src/tempo/RpcSchemaTempo.test-d.ts +91 -0
- package/src/tempo/RpcSchemaTempo.ts +46 -0
- package/src/tempo/SignatureEnvelope.test-d.ts +33 -72
- package/src/tempo/SignatureEnvelope.test.ts +533 -500
- package/src/tempo/SignatureEnvelope.ts +171 -258
- package/src/tempo/Transaction.test.ts +61 -0
- package/src/tempo/TransactionRequest.test-d.ts +11 -0
- package/src/tempo/TransactionRequest.test.ts +214 -41
- package/src/tempo/TransactionRequest.ts +19 -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 +164 -87
- package/src/version.ts +1 -1
- package/src/zod/tempo/MultisigConfig.ts +29 -3
- package/src/zod/tempo/MultisigOperation.ts +66 -0
- package/src/zod/tempo/MultisigSimulation.ts +98 -0
- package/src/zod/tempo/RpcSchemaTempo.ts +53 -0
- package/src/zod/tempo/SignatureEnvelope.ts +12 -54
- package/src/zod/tempo/TransactionRequest.ts +17 -26
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +2 -4
- 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 +66 -0
- package/src/zod/tempo/_test/MultisigSimulation.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigSimulation.test.ts +78 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test-d.ts +48 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test.ts +83 -0
- package/src/zod/tempo/_test/SignatureEnvelope.test-d.ts +1 -1
- package/src/zod/tempo/_test/SignatureEnvelope.test.ts +57 -120
- package/src/zod/tempo/_test/TransactionRequest.test.ts +43 -16
- package/src/zod/tempo/z.ts +2 -0
|
@@ -35,20 +35,7 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
35
35
|
type: z.ZodMiniLiteral<"keychain">;
|
|
36
36
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
37
37
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
38
|
-
}, z.core.$strip>, z.
|
|
39
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
40
|
-
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[]>>>;
|
|
41
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
42
|
-
init: z.ZodMiniObject<{
|
|
43
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
44
|
-
threshold: z.ZodMiniNumber<number>;
|
|
45
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
46
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
47
|
-
weight: z.ZodMiniNumber<number>;
|
|
48
|
-
}, z.core.$strip>>>;
|
|
49
|
-
}, z.core.$strip>;
|
|
50
|
-
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[]>>>;
|
|
51
|
-
}, z.core.$strict>]>]>;
|
|
38
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
52
39
|
}, z.core.$strip>>>>;
|
|
53
40
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
54
41
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -111,20 +98,7 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
111
98
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
112
99
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
113
100
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
114
|
-
}, z.core.$strip>]>, z.
|
|
115
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
116
|
-
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[]>>>;
|
|
117
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
118
|
-
init: z.ZodMiniObject<{
|
|
119
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
120
|
-
threshold: z.ZodMiniNumber<number>;
|
|
121
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
122
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
123
|
-
weight: z.ZodMiniNumber<number>;
|
|
124
|
-
}, z.core.$strip>>>;
|
|
125
|
-
}, z.core.$strip>;
|
|
126
|
-
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[]>>>;
|
|
127
|
-
}, z.core.$strict>]>]>;
|
|
101
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
128
102
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
129
103
|
}, z.core.$strip>>;
|
|
130
104
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -133,15 +107,27 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
133
107
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
134
108
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
135
109
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
110
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
111
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
112
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
113
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
114
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
140
115
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
141
|
-
|
|
142
|
-
}, z.core.$strip
|
|
116
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
117
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
118
|
+
spec: z.ZodMiniObject<{
|
|
119
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
120
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
121
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
122
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
123
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
124
|
+
}, z.core.$strip>>>;
|
|
125
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
126
|
+
}, z.core.$strip>;
|
|
127
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
128
|
+
}, z.core.$strip>]>>>;
|
|
129
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
143
130
|
}, z.core.$strip>>;
|
|
144
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
145
131
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
146
132
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
147
133
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -172,20 +158,7 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
172
158
|
type: z.ZodMiniLiteral<"keychain">;
|
|
173
159
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
174
160
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
175
|
-
}, z.core.$strip>, z.
|
|
176
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
177
|
-
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[]>>>;
|
|
178
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
179
|
-
init: z.ZodMiniObject<{
|
|
180
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
181
|
-
threshold: z.ZodMiniNumber<number>;
|
|
182
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
183
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
184
|
-
weight: z.ZodMiniNumber<number>;
|
|
185
|
-
}, z.core.$strip>>>;
|
|
186
|
-
}, z.core.$strip>;
|
|
187
|
-
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[]>>>;
|
|
188
|
-
}, z.core.$strict>]>]>>;
|
|
161
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
189
162
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
190
163
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
191
164
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -246,14 +219,15 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
246
219
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
247
220
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
248
221
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
249
|
-
|
|
250
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
251
|
-
threshold: z.ZodMiniNumber<number>;
|
|
222
|
+
config: z.ZodMiniObject<{
|
|
252
223
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
253
224
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
254
225
|
weight: z.ZodMiniNumber<number>;
|
|
255
226
|
}, z.core.$strip>>>;
|
|
256
|
-
|
|
227
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
228
|
+
threshold: z.ZodMiniNumber<number>;
|
|
229
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
230
|
+
}, z.core.$strip>;
|
|
257
231
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
258
232
|
type: z.ZodMiniLiteral<"multisig">;
|
|
259
233
|
}, z.core.$strip>]>;
|
|
@@ -332,14 +306,15 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
332
306
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
333
307
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
334
308
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
335
|
-
|
|
336
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
337
|
-
threshold: z.ZodMiniNumber<number>;
|
|
309
|
+
config: z.ZodMiniObject<{
|
|
338
310
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
339
311
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
340
312
|
weight: z.ZodMiniNumber<number>;
|
|
341
313
|
}, z.core.$strip>>>;
|
|
342
|
-
|
|
314
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
315
|
+
threshold: z.ZodMiniNumber<number>;
|
|
316
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
317
|
+
}, z.core.$strip>;
|
|
343
318
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
344
319
|
type: z.ZodMiniLiteral<"multisig">;
|
|
345
320
|
}, z.core.$strip>]>;
|
|
@@ -395,14 +370,15 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
395
370
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
396
371
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
397
372
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
398
|
-
|
|
399
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
400
|
-
threshold: z.ZodMiniNumber<number>;
|
|
373
|
+
config: z.ZodMiniObject<{
|
|
401
374
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
402
375
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
403
376
|
weight: z.ZodMiniNumber<number>;
|
|
404
377
|
}, z.core.$strip>>>;
|
|
405
|
-
|
|
378
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
379
|
+
threshold: z.ZodMiniNumber<number>;
|
|
380
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
381
|
+
}, z.core.$strip>;
|
|
406
382
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
407
383
|
type: z.ZodMiniLiteral<"multisig">;
|
|
408
384
|
}, z.core.$strip>]>;
|
|
@@ -415,15 +391,43 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
415
391
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
416
392
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
417
393
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
394
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
395
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
396
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
397
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
398
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
422
399
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
423
|
-
|
|
424
|
-
}, z.core.$strip
|
|
400
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
401
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
402
|
+
spec: z.ZodMiniObject<{
|
|
403
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
404
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
405
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
406
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
407
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
408
|
+
}, z.core.$strip>>>;
|
|
409
|
+
config: z.ZodMiniObject<{
|
|
410
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
411
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
412
|
+
weight: z.ZodMiniNumber<number>;
|
|
413
|
+
}, z.core.$strip>>>;
|
|
414
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
415
|
+
threshold: z.ZodMiniNumber<number>;
|
|
416
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
417
|
+
}, z.core.$strip>;
|
|
418
|
+
}, z.core.$strip>;
|
|
419
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
420
|
+
}, z.core.$strip>]>>>;
|
|
421
|
+
config: z.ZodMiniObject<{
|
|
422
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
423
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
424
|
+
weight: z.ZodMiniNumber<number>;
|
|
425
|
+
}, z.core.$strip>>>;
|
|
426
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
427
|
+
threshold: z.ZodMiniNumber<number>;
|
|
428
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
429
|
+
}, z.core.$strip>;
|
|
425
430
|
}, z.core.$strip>>;
|
|
426
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
427
431
|
nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
428
432
|
nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBigInt<bigint>, z.ZodMiniLiteral<"random">]>>;
|
|
429
433
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -470,14 +474,15 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
470
474
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
471
475
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
472
476
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
473
|
-
|
|
474
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
475
|
-
threshold: z.ZodMiniNumber<number>;
|
|
477
|
+
config: z.ZodMiniObject<{
|
|
476
478
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
477
479
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
478
480
|
weight: z.ZodMiniNumber<number>;
|
|
479
481
|
}, z.core.$strip>>>;
|
|
480
|
-
|
|
482
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
483
|
+
threshold: z.ZodMiniNumber<number>;
|
|
484
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
485
|
+
}, z.core.$strip>;
|
|
481
486
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
482
487
|
type: z.ZodMiniLiteral<"multisig">;
|
|
483
488
|
}, z.core.$strip>]>>;
|
|
@@ -541,14 +546,15 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
541
546
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
542
547
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
543
548
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
544
|
-
|
|
545
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
546
|
-
threshold: z.ZodMiniNumber<number>;
|
|
549
|
+
config: z.ZodMiniObject<{
|
|
547
550
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
548
551
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
549
552
|
weight: z.ZodMiniNumber<number>;
|
|
550
553
|
}, z.core.$strip>>>;
|
|
551
|
-
|
|
554
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
555
|
+
threshold: z.ZodMiniNumber<number>;
|
|
556
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
557
|
+
}, z.core.$strip>;
|
|
552
558
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
553
559
|
type: z.ZodMiniLiteral<"multisig">;
|
|
554
560
|
}, z.core.$strip>]>;
|
|
@@ -627,14 +633,15 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
627
633
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
628
634
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
629
635
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
630
|
-
|
|
631
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
632
|
-
threshold: z.ZodMiniNumber<number>;
|
|
636
|
+
config: z.ZodMiniObject<{
|
|
633
637
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
634
638
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
635
639
|
weight: z.ZodMiniNumber<number>;
|
|
636
640
|
}, z.core.$strip>>>;
|
|
637
|
-
|
|
641
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
642
|
+
threshold: z.ZodMiniNumber<number>;
|
|
643
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
644
|
+
}, z.core.$strip>;
|
|
638
645
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
639
646
|
type: z.ZodMiniLiteral<"multisig">;
|
|
640
647
|
}, z.core.$strip>]>;
|
|
@@ -690,14 +697,15 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
690
697
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
691
698
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
692
699
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
693
|
-
|
|
694
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
695
|
-
threshold: z.ZodMiniNumber<number>;
|
|
700
|
+
config: z.ZodMiniObject<{
|
|
696
701
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
697
702
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
698
703
|
weight: z.ZodMiniNumber<number>;
|
|
699
704
|
}, z.core.$strip>>>;
|
|
700
|
-
|
|
705
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
706
|
+
threshold: z.ZodMiniNumber<number>;
|
|
707
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
708
|
+
}, z.core.$strip>;
|
|
701
709
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
702
710
|
type: z.ZodMiniLiteral<"multisig">;
|
|
703
711
|
}, z.core.$strip>]>;
|
|
@@ -710,15 +718,43 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
710
718
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
711
719
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
712
720
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
721
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
722
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
723
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
724
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
725
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
717
726
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
718
|
-
|
|
719
|
-
}, z.core.$strip
|
|
727
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
728
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
729
|
+
spec: z.ZodMiniObject<{
|
|
730
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
731
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
732
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
733
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
734
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
735
|
+
}, z.core.$strip>>>;
|
|
736
|
+
config: z.ZodMiniObject<{
|
|
737
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
738
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
739
|
+
weight: z.ZodMiniNumber<number>;
|
|
740
|
+
}, z.core.$strip>>>;
|
|
741
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
742
|
+
threshold: z.ZodMiniNumber<number>;
|
|
743
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
744
|
+
}, z.core.$strip>;
|
|
745
|
+
}, z.core.$strip>;
|
|
746
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
747
|
+
}, z.core.$strip>]>>>;
|
|
748
|
+
config: z.ZodMiniObject<{
|
|
749
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
750
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
751
|
+
weight: z.ZodMiniNumber<number>;
|
|
752
|
+
}, z.core.$strip>>>;
|
|
753
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
754
|
+
threshold: z.ZodMiniNumber<number>;
|
|
755
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
756
|
+
}, z.core.$strip>;
|
|
720
757
|
}, z.core.$strip>>;
|
|
721
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
722
758
|
nonce: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
723
759
|
nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>, z.ZodMiniLiteral<"random">]>>;
|
|
724
760
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -765,14 +801,15 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
765
801
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
766
802
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
767
803
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
768
|
-
|
|
769
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
770
|
-
threshold: z.ZodMiniNumber<number>;
|
|
804
|
+
config: z.ZodMiniObject<{
|
|
771
805
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
772
806
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
773
807
|
weight: z.ZodMiniNumber<number>;
|
|
774
808
|
}, z.core.$strip>>>;
|
|
775
|
-
|
|
809
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
810
|
+
threshold: z.ZodMiniNumber<number>;
|
|
811
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
812
|
+
}, z.core.$strip>;
|
|
776
813
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
777
814
|
type: z.ZodMiniLiteral<"multisig">;
|
|
778
815
|
}, z.core.$strip>]>>;
|
|
@@ -820,20 +857,7 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
820
857
|
type: z.ZodMiniLiteral<"keychain">;
|
|
821
858
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
822
859
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
823
|
-
}, z.core.$strip>, z.
|
|
824
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
825
|
-
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[]>>>;
|
|
826
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
827
|
-
init: z.ZodMiniObject<{
|
|
828
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
829
|
-
threshold: z.ZodMiniNumber<number>;
|
|
830
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
831
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
832
|
-
weight: z.ZodMiniNumber<number>;
|
|
833
|
-
}, z.core.$strip>>>;
|
|
834
|
-
}, z.core.$strip>;
|
|
835
|
-
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[]>>>;
|
|
836
|
-
}, z.core.$strict>]>]>;
|
|
860
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
837
861
|
}, z.core.$strip>>>>;
|
|
838
862
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
839
863
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -896,20 +920,7 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
896
920
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
897
921
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
898
922
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
899
|
-
}, z.core.$strip>]>, z.
|
|
900
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
901
|
-
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[]>>>;
|
|
902
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
903
|
-
init: z.ZodMiniObject<{
|
|
904
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
905
|
-
threshold: z.ZodMiniNumber<number>;
|
|
906
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
907
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
908
|
-
weight: z.ZodMiniNumber<number>;
|
|
909
|
-
}, z.core.$strip>>>;
|
|
910
|
-
}, z.core.$strip>;
|
|
911
|
-
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[]>>>;
|
|
912
|
-
}, z.core.$strict>]>]>;
|
|
923
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
913
924
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
914
925
|
}, z.core.$strip>>;
|
|
915
926
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -918,15 +929,27 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
918
929
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
919
930
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
920
931
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
932
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
933
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
934
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
935
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
936
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
925
937
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
926
|
-
|
|
927
|
-
}, z.core.$strip
|
|
938
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
939
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
940
|
+
spec: z.ZodMiniObject<{
|
|
941
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
942
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
943
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
944
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
945
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
946
|
+
}, z.core.$strip>>>;
|
|
947
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
948
|
+
}, z.core.$strip>;
|
|
949
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
950
|
+
}, z.core.$strip>]>>>;
|
|
951
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
928
952
|
}, z.core.$strip>>;
|
|
929
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
930
953
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
931
954
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
932
955
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -957,20 +980,7 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
957
980
|
type: z.ZodMiniLiteral<"keychain">;
|
|
958
981
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
959
982
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
960
|
-
}, z.core.$strip>, z.
|
|
961
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
962
|
-
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[]>>>;
|
|
963
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
964
|
-
init: z.ZodMiniObject<{
|
|
965
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
966
|
-
threshold: z.ZodMiniNumber<number>;
|
|
967
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
968
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
969
|
-
weight: z.ZodMiniNumber<number>;
|
|
970
|
-
}, z.core.$strip>>>;
|
|
971
|
-
}, z.core.$strip>;
|
|
972
|
-
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[]>>>;
|
|
973
|
-
}, z.core.$strict>]>]>>;
|
|
983
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
974
984
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
975
985
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
976
986
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1029,14 +1039,15 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1029
1039
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1030
1040
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1031
1041
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1032
|
-
|
|
1033
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1034
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1042
|
+
config: z.ZodMiniObject<{
|
|
1035
1043
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1036
1044
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1037
1045
|
weight: z.ZodMiniNumber<number>;
|
|
1038
1046
|
}, z.core.$strip>>>;
|
|
1039
|
-
|
|
1047
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1048
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1049
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1050
|
+
}, z.core.$strip>;
|
|
1040
1051
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1041
1052
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1042
1053
|
}, z.core.$strip>]>;
|
|
@@ -1115,14 +1126,15 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1115
1126
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1116
1127
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1117
1128
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1118
|
-
|
|
1119
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1120
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1129
|
+
config: z.ZodMiniObject<{
|
|
1121
1130
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1122
1131
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1123
1132
|
weight: z.ZodMiniNumber<number>;
|
|
1124
1133
|
}, z.core.$strip>>>;
|
|
1125
|
-
|
|
1134
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1135
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1136
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1137
|
+
}, z.core.$strip>;
|
|
1126
1138
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1127
1139
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1128
1140
|
}, z.core.$strip>]>;
|
|
@@ -1178,14 +1190,15 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1178
1190
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1179
1191
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1180
1192
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1181
|
-
|
|
1182
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1183
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1193
|
+
config: z.ZodMiniObject<{
|
|
1184
1194
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1185
1195
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1186
1196
|
weight: z.ZodMiniNumber<number>;
|
|
1187
1197
|
}, z.core.$strip>>>;
|
|
1188
|
-
|
|
1198
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1199
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1200
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1201
|
+
}, z.core.$strip>;
|
|
1189
1202
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1190
1203
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1191
1204
|
}, z.core.$strip>]>;
|
|
@@ -1198,15 +1211,43 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1198
1211
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1199
1212
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1200
1213
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1214
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1215
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1216
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1217
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1218
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1205
1219
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1206
|
-
|
|
1207
|
-
}, z.core.$strip
|
|
1220
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
1221
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1222
|
+
spec: z.ZodMiniObject<{
|
|
1223
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1224
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1225
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1226
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1227
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1228
|
+
}, z.core.$strip>>>;
|
|
1229
|
+
config: z.ZodMiniObject<{
|
|
1230
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1231
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1232
|
+
weight: z.ZodMiniNumber<number>;
|
|
1233
|
+
}, z.core.$strip>>>;
|
|
1234
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1235
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1236
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1237
|
+
}, z.core.$strip>;
|
|
1238
|
+
}, z.core.$strip>;
|
|
1239
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1240
|
+
}, z.core.$strip>]>>>;
|
|
1241
|
+
config: z.ZodMiniObject<{
|
|
1242
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1243
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1244
|
+
weight: z.ZodMiniNumber<number>;
|
|
1245
|
+
}, z.core.$strip>>>;
|
|
1246
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1247
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1248
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1249
|
+
}, z.core.$strip>;
|
|
1208
1250
|
}, z.core.$strip>>;
|
|
1209
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1210
1251
|
nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1211
1252
|
nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBigInt<bigint>, z.ZodMiniLiteral<"random">]>>;
|
|
1212
1253
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1253,14 +1294,15 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1253
1294
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1254
1295
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1255
1296
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1256
|
-
|
|
1257
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1258
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1297
|
+
config: z.ZodMiniObject<{
|
|
1259
1298
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1260
1299
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1261
1300
|
weight: z.ZodMiniNumber<number>;
|
|
1262
1301
|
}, z.core.$strip>>>;
|
|
1263
|
-
|
|
1302
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1303
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1304
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1305
|
+
}, z.core.$strip>;
|
|
1264
1306
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1265
1307
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1266
1308
|
}, z.core.$strip>]>>;
|
|
@@ -1308,20 +1350,7 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1308
1350
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1309
1351
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1310
1352
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1311
|
-
}, z.core.$strip>, z.
|
|
1312
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1313
|
-
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[]>>>;
|
|
1314
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1315
|
-
init: z.ZodMiniObject<{
|
|
1316
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1317
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1318
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1319
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1320
|
-
weight: z.ZodMiniNumber<number>;
|
|
1321
|
-
}, z.core.$strip>>>;
|
|
1322
|
-
}, z.core.$strip>;
|
|
1323
|
-
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[]>>>;
|
|
1324
|
-
}, z.core.$strict>]>]>;
|
|
1353
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1325
1354
|
}, z.core.$strip>>>>;
|
|
1326
1355
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1327
1356
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -1384,20 +1413,7 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1384
1413
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1385
1414
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1386
1415
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1387
|
-
}, z.core.$strip>]>, z.
|
|
1388
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1389
|
-
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[]>>>;
|
|
1390
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1391
|
-
init: z.ZodMiniObject<{
|
|
1392
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1393
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1394
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1395
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1396
|
-
weight: z.ZodMiniNumber<number>;
|
|
1397
|
-
}, z.core.$strip>>>;
|
|
1398
|
-
}, z.core.$strip>;
|
|
1399
|
-
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[]>>>;
|
|
1400
|
-
}, z.core.$strict>]>]>;
|
|
1416
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1401
1417
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1402
1418
|
}, z.core.$strip>>;
|
|
1403
1419
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1406,15 +1422,27 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1406
1422
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1407
1423
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1408
1424
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1425
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1426
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1427
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1428
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1429
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1413
1430
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1414
|
-
|
|
1415
|
-
}, z.core.$strip
|
|
1431
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
1432
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1433
|
+
spec: z.ZodMiniObject<{
|
|
1434
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1435
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1436
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1437
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1438
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1439
|
+
}, z.core.$strip>>>;
|
|
1440
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1441
|
+
}, z.core.$strip>;
|
|
1442
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1443
|
+
}, z.core.$strip>]>>>;
|
|
1444
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1416
1445
|
}, z.core.$strip>>;
|
|
1417
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1418
1446
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1419
1447
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1420
1448
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1445,20 +1473,7 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1445
1473
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1446
1474
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1447
1475
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1448
|
-
}, z.core.$strip>, z.
|
|
1449
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1450
|
-
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[]>>>;
|
|
1451
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1452
|
-
init: z.ZodMiniObject<{
|
|
1453
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1454
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1455
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1456
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1457
|
-
weight: z.ZodMiniNumber<number>;
|
|
1458
|
-
}, z.core.$strip>>>;
|
|
1459
|
-
}, z.core.$strip>;
|
|
1460
|
-
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[]>>>;
|
|
1461
|
-
}, z.core.$strict>]>]>>;
|
|
1476
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
1462
1477
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1463
1478
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1464
1479
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1517,14 +1532,15 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1517
1532
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1518
1533
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1519
1534
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1520
|
-
|
|
1521
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1522
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1535
|
+
config: z.ZodMiniObject<{
|
|
1523
1536
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1524
1537
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1525
1538
|
weight: z.ZodMiniNumber<number>;
|
|
1526
1539
|
}, z.core.$strip>>>;
|
|
1527
|
-
|
|
1540
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1541
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1542
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1543
|
+
}, z.core.$strip>;
|
|
1528
1544
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1529
1545
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1530
1546
|
}, z.core.$strip>]>;
|
|
@@ -1603,14 +1619,15 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1603
1619
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1604
1620
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1605
1621
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1606
|
-
|
|
1607
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1608
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1622
|
+
config: z.ZodMiniObject<{
|
|
1609
1623
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1610
1624
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1611
1625
|
weight: z.ZodMiniNumber<number>;
|
|
1612
1626
|
}, z.core.$strip>>>;
|
|
1613
|
-
|
|
1627
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1628
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1629
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1630
|
+
}, z.core.$strip>;
|
|
1614
1631
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1615
1632
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1616
1633
|
}, z.core.$strip>]>;
|
|
@@ -1666,14 +1683,15 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1666
1683
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1667
1684
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1668
1685
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1669
|
-
|
|
1670
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1671
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1686
|
+
config: z.ZodMiniObject<{
|
|
1672
1687
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1673
1688
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1674
1689
|
weight: z.ZodMiniNumber<number>;
|
|
1675
1690
|
}, z.core.$strip>>>;
|
|
1676
|
-
|
|
1691
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1692
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1693
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1694
|
+
}, z.core.$strip>;
|
|
1677
1695
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1678
1696
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1679
1697
|
}, z.core.$strip>]>;
|
|
@@ -1686,15 +1704,43 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1686
1704
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1687
1705
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1688
1706
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1707
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1708
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1709
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1710
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1711
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1693
1712
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1694
|
-
|
|
1695
|
-
}, z.core.$strip
|
|
1713
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
1714
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1715
|
+
spec: z.ZodMiniObject<{
|
|
1716
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1717
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1718
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1719
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1720
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1721
|
+
}, z.core.$strip>>>;
|
|
1722
|
+
config: z.ZodMiniObject<{
|
|
1723
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1724
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1725
|
+
weight: z.ZodMiniNumber<number>;
|
|
1726
|
+
}, z.core.$strip>>>;
|
|
1727
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1728
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1729
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1730
|
+
}, z.core.$strip>;
|
|
1731
|
+
}, z.core.$strip>;
|
|
1732
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1733
|
+
}, z.core.$strip>]>>>;
|
|
1734
|
+
config: z.ZodMiniObject<{
|
|
1735
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1736
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1737
|
+
weight: z.ZodMiniNumber<number>;
|
|
1738
|
+
}, z.core.$strip>>>;
|
|
1739
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1740
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1741
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1742
|
+
}, z.core.$strip>;
|
|
1696
1743
|
}, z.core.$strip>>;
|
|
1697
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1698
1744
|
nonce: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1699
1745
|
nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>, z.ZodMiniLiteral<"random">]>>;
|
|
1700
1746
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1741,14 +1787,15 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1741
1787
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1742
1788
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1743
1789
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1744
|
-
|
|
1745
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1746
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1790
|
+
config: z.ZodMiniObject<{
|
|
1747
1791
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1748
1792
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1749
1793
|
weight: z.ZodMiniNumber<number>;
|
|
1750
1794
|
}, z.core.$strip>>>;
|
|
1751
|
-
|
|
1795
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1796
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1797
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1798
|
+
}, z.core.$strip>;
|
|
1752
1799
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1753
1800
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1754
1801
|
}, z.core.$strip>]>>;
|