ox 1.7.0 → 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 +21 -0
- package/dist/core/Hash.js +1 -1
- package/dist/core/Hash.js.map +1 -1
- package/dist/core/Siwe.d.ts.map +1 -1
- package/dist/core/Siwe.js +45 -6
- package/dist/core/Siwe.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/Siwe.ts +45 -5
- package/src/core/_test/Hash.test.ts +15 -0
- package/src/core/_test/Siwe.test.ts +98 -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
|
@@ -35,20 +35,19 @@ 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.
|
|
38
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
39
39
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
40
|
-
|
|
41
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
42
|
-
init: z.ZodMiniObject<{
|
|
43
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
44
|
-
threshold: z.ZodMiniNumber<number>;
|
|
40
|
+
config: z.ZodMiniObject<{
|
|
45
41
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
46
42
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
47
43
|
weight: z.ZodMiniNumber<number>;
|
|
48
44
|
}, z.core.$strip>>>;
|
|
45
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
46
|
+
threshold: z.ZodMiniNumber<number>;
|
|
47
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
49
48
|
}, z.core.$strip>;
|
|
50
49
|
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>]
|
|
50
|
+
}, z.core.$strict>]>;
|
|
52
51
|
}, z.core.$strip>>>>;
|
|
53
52
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
54
53
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -111,20 +110,19 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
111
110
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
112
111
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
113
112
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
114
|
-
}, z.core.$strip>]>, z.
|
|
113
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
115
114
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
116
|
-
|
|
117
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
118
|
-
init: z.ZodMiniObject<{
|
|
119
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
120
|
-
threshold: z.ZodMiniNumber<number>;
|
|
115
|
+
config: z.ZodMiniObject<{
|
|
121
116
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
122
117
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
123
118
|
weight: z.ZodMiniNumber<number>;
|
|
124
119
|
}, z.core.$strip>>>;
|
|
120
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
121
|
+
threshold: z.ZodMiniNumber<number>;
|
|
122
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
125
123
|
}, z.core.$strip>;
|
|
126
124
|
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>]
|
|
125
|
+
}, z.core.$strict>]>;
|
|
128
126
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
129
127
|
}, z.core.$strip>>;
|
|
130
128
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -133,15 +131,43 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
133
131
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
134
132
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
135
133
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
134
|
+
multisigWitness: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
135
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
136
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
137
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
138
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
140
139
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
141
|
-
|
|
142
|
-
}, z.core.$strip
|
|
140
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
141
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
142
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
143
|
+
witness: z.ZodMiniObject<{
|
|
144
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
145
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
146
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
147
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
148
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
149
|
+
}, z.core.$strip>>>;
|
|
150
|
+
config: z.ZodMiniObject<{
|
|
151
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
152
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
153
|
+
weight: z.ZodMiniNumber<number>;
|
|
154
|
+
}, z.core.$strip>>>;
|
|
155
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
156
|
+
threshold: z.ZodMiniNumber<number>;
|
|
157
|
+
version: z.ZodMiniNumber<number>;
|
|
158
|
+
}, z.core.$strip>;
|
|
159
|
+
}, z.core.$strip>;
|
|
160
|
+
}, z.core.$strip>]>>>;
|
|
161
|
+
config: z.ZodMiniObject<{
|
|
162
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
163
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
164
|
+
weight: z.ZodMiniNumber<number>;
|
|
165
|
+
}, z.core.$strip>>>;
|
|
166
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
167
|
+
threshold: z.ZodMiniNumber<number>;
|
|
168
|
+
version: z.ZodMiniNumber<number>;
|
|
169
|
+
}, z.core.$strip>;
|
|
143
170
|
}, z.core.$strip>>;
|
|
144
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
145
171
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
146
172
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
147
173
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -172,20 +198,19 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
172
198
|
type: z.ZodMiniLiteral<"keychain">;
|
|
173
199
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
174
200
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
175
|
-
}, z.core.$strip>, z.
|
|
201
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
176
202
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
177
|
-
|
|
178
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
179
|
-
init: z.ZodMiniObject<{
|
|
180
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
181
|
-
threshold: z.ZodMiniNumber<number>;
|
|
203
|
+
config: z.ZodMiniObject<{
|
|
182
204
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
183
205
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
184
206
|
weight: z.ZodMiniNumber<number>;
|
|
185
207
|
}, z.core.$strip>>>;
|
|
208
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
209
|
+
threshold: z.ZodMiniNumber<number>;
|
|
210
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
186
211
|
}, z.core.$strip>;
|
|
187
212
|
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>]
|
|
213
|
+
}, z.core.$strict>]>>;
|
|
189
214
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
190
215
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
191
216
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -246,14 +271,15 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
246
271
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
247
272
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
248
273
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
249
|
-
|
|
250
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
251
|
-
threshold: z.ZodMiniNumber<number>;
|
|
274
|
+
config: z.ZodMiniObject<{
|
|
252
275
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
253
276
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
254
277
|
weight: z.ZodMiniNumber<number>;
|
|
255
278
|
}, z.core.$strip>>>;
|
|
256
|
-
|
|
279
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
280
|
+
threshold: z.ZodMiniNumber<number>;
|
|
281
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
282
|
+
}, z.core.$strip>;
|
|
257
283
|
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
284
|
type: z.ZodMiniLiteral<"multisig">;
|
|
259
285
|
}, z.core.$strip>]>;
|
|
@@ -332,14 +358,15 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
332
358
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
333
359
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
334
360
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
335
|
-
|
|
336
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
337
|
-
threshold: z.ZodMiniNumber<number>;
|
|
361
|
+
config: z.ZodMiniObject<{
|
|
338
362
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
339
363
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
340
364
|
weight: z.ZodMiniNumber<number>;
|
|
341
365
|
}, z.core.$strip>>>;
|
|
342
|
-
|
|
366
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
367
|
+
threshold: z.ZodMiniNumber<number>;
|
|
368
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
369
|
+
}, z.core.$strip>;
|
|
343
370
|
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
371
|
type: z.ZodMiniLiteral<"multisig">;
|
|
345
372
|
}, z.core.$strip>]>;
|
|
@@ -395,14 +422,15 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
395
422
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
396
423
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
397
424
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
398
|
-
|
|
399
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
400
|
-
threshold: z.ZodMiniNumber<number>;
|
|
425
|
+
config: z.ZodMiniObject<{
|
|
401
426
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
402
427
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
403
428
|
weight: z.ZodMiniNumber<number>;
|
|
404
429
|
}, z.core.$strip>>>;
|
|
405
|
-
|
|
430
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
431
|
+
threshold: z.ZodMiniNumber<number>;
|
|
432
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
433
|
+
}, z.core.$strip>;
|
|
406
434
|
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
435
|
type: z.ZodMiniLiteral<"multisig">;
|
|
408
436
|
}, z.core.$strip>]>;
|
|
@@ -415,15 +443,43 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
415
443
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
416
444
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
417
445
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
446
|
+
multisigWitness: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
447
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
448
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
449
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
450
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
422
451
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
423
|
-
|
|
424
|
-
}, z.core.$strip
|
|
452
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
453
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
454
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
455
|
+
witness: z.ZodMiniObject<{
|
|
456
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
457
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
458
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
459
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
460
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
461
|
+
}, z.core.$strip>>>;
|
|
462
|
+
config: z.ZodMiniObject<{
|
|
463
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
464
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
465
|
+
weight: z.ZodMiniNumber<number>;
|
|
466
|
+
}, z.core.$strip>>>;
|
|
467
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
468
|
+
threshold: z.ZodMiniNumber<number>;
|
|
469
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
470
|
+
}, z.core.$strip>;
|
|
471
|
+
}, z.core.$strip>;
|
|
472
|
+
}, z.core.$strip>]>>>;
|
|
473
|
+
config: z.ZodMiniObject<{
|
|
474
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
475
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
476
|
+
weight: z.ZodMiniNumber<number>;
|
|
477
|
+
}, z.core.$strip>>>;
|
|
478
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
479
|
+
threshold: z.ZodMiniNumber<number>;
|
|
480
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
481
|
+
}, z.core.$strip>;
|
|
425
482
|
}, z.core.$strip>>;
|
|
426
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
427
483
|
nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
428
484
|
nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBigInt<bigint>, z.ZodMiniLiteral<"random">]>>;
|
|
429
485
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -470,14 +526,15 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
470
526
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
471
527
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
472
528
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
473
|
-
|
|
474
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
475
|
-
threshold: z.ZodMiniNumber<number>;
|
|
529
|
+
config: z.ZodMiniObject<{
|
|
476
530
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
477
531
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
478
532
|
weight: z.ZodMiniNumber<number>;
|
|
479
533
|
}, z.core.$strip>>>;
|
|
480
|
-
|
|
534
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
535
|
+
threshold: z.ZodMiniNumber<number>;
|
|
536
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
537
|
+
}, z.core.$strip>;
|
|
481
538
|
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
539
|
type: z.ZodMiniLiteral<"multisig">;
|
|
483
540
|
}, z.core.$strip>]>>;
|
|
@@ -541,14 +598,15 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
541
598
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
542
599
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
543
600
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
544
|
-
|
|
545
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
546
|
-
threshold: z.ZodMiniNumber<number>;
|
|
601
|
+
config: z.ZodMiniObject<{
|
|
547
602
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
548
603
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
549
604
|
weight: z.ZodMiniNumber<number>;
|
|
550
605
|
}, z.core.$strip>>>;
|
|
551
|
-
|
|
606
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
607
|
+
threshold: z.ZodMiniNumber<number>;
|
|
608
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
609
|
+
}, z.core.$strip>;
|
|
552
610
|
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
611
|
type: z.ZodMiniLiteral<"multisig">;
|
|
554
612
|
}, z.core.$strip>]>;
|
|
@@ -627,14 +685,15 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
627
685
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
628
686
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
629
687
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
630
|
-
|
|
631
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
632
|
-
threshold: z.ZodMiniNumber<number>;
|
|
688
|
+
config: z.ZodMiniObject<{
|
|
633
689
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
634
690
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
635
691
|
weight: z.ZodMiniNumber<number>;
|
|
636
692
|
}, z.core.$strip>>>;
|
|
637
|
-
|
|
693
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
694
|
+
threshold: z.ZodMiniNumber<number>;
|
|
695
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
696
|
+
}, z.core.$strip>;
|
|
638
697
|
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
698
|
type: z.ZodMiniLiteral<"multisig">;
|
|
640
699
|
}, z.core.$strip>]>;
|
|
@@ -690,14 +749,15 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
690
749
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
691
750
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
692
751
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
693
|
-
|
|
694
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
695
|
-
threshold: z.ZodMiniNumber<number>;
|
|
752
|
+
config: z.ZodMiniObject<{
|
|
696
753
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
697
754
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
698
755
|
weight: z.ZodMiniNumber<number>;
|
|
699
756
|
}, z.core.$strip>>>;
|
|
700
|
-
|
|
757
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
758
|
+
threshold: z.ZodMiniNumber<number>;
|
|
759
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
760
|
+
}, z.core.$strip>;
|
|
701
761
|
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
762
|
type: z.ZodMiniLiteral<"multisig">;
|
|
703
763
|
}, z.core.$strip>]>;
|
|
@@ -710,15 +770,43 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
710
770
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
711
771
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
712
772
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
773
|
+
multisigWitness: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
774
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
775
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
776
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
777
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
717
778
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
718
|
-
|
|
719
|
-
}, z.core.$strip
|
|
779
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
780
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
781
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
782
|
+
witness: z.ZodMiniObject<{
|
|
783
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
784
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
785
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
786
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
787
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
788
|
+
}, z.core.$strip>>>;
|
|
789
|
+
config: z.ZodMiniObject<{
|
|
790
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
791
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
792
|
+
weight: z.ZodMiniNumber<number>;
|
|
793
|
+
}, z.core.$strip>>>;
|
|
794
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
795
|
+
threshold: z.ZodMiniNumber<number>;
|
|
796
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
797
|
+
}, z.core.$strip>;
|
|
798
|
+
}, z.core.$strip>;
|
|
799
|
+
}, z.core.$strip>]>>>;
|
|
800
|
+
config: z.ZodMiniObject<{
|
|
801
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
802
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
803
|
+
weight: z.ZodMiniNumber<number>;
|
|
804
|
+
}, z.core.$strip>>>;
|
|
805
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
806
|
+
threshold: z.ZodMiniNumber<number>;
|
|
807
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
808
|
+
}, z.core.$strip>;
|
|
720
809
|
}, z.core.$strip>>;
|
|
721
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
722
810
|
nonce: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
723
811
|
nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>, z.ZodMiniLiteral<"random">]>>;
|
|
724
812
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -765,14 +853,15 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
765
853
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
766
854
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
767
855
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
768
|
-
|
|
769
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
770
|
-
threshold: z.ZodMiniNumber<number>;
|
|
856
|
+
config: z.ZodMiniObject<{
|
|
771
857
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
772
858
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
773
859
|
weight: z.ZodMiniNumber<number>;
|
|
774
860
|
}, z.core.$strip>>>;
|
|
775
|
-
|
|
861
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
862
|
+
threshold: z.ZodMiniNumber<number>;
|
|
863
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
864
|
+
}, z.core.$strip>;
|
|
776
865
|
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
866
|
type: z.ZodMiniLiteral<"multisig">;
|
|
778
867
|
}, z.core.$strip>]>>;
|
|
@@ -820,20 +909,19 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
820
909
|
type: z.ZodMiniLiteral<"keychain">;
|
|
821
910
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
822
911
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
823
|
-
}, z.core.$strip>, z.
|
|
912
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
824
913
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
825
|
-
|
|
826
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
827
|
-
init: z.ZodMiniObject<{
|
|
828
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
829
|
-
threshold: z.ZodMiniNumber<number>;
|
|
914
|
+
config: z.ZodMiniObject<{
|
|
830
915
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
831
916
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
832
917
|
weight: z.ZodMiniNumber<number>;
|
|
833
918
|
}, z.core.$strip>>>;
|
|
919
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
920
|
+
threshold: z.ZodMiniNumber<number>;
|
|
921
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
834
922
|
}, z.core.$strip>;
|
|
835
923
|
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>]
|
|
924
|
+
}, z.core.$strict>]>;
|
|
837
925
|
}, z.core.$strip>>>>;
|
|
838
926
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
839
927
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -896,20 +984,19 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
896
984
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
897
985
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
898
986
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
899
|
-
}, z.core.$strip>]>, z.
|
|
987
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
900
988
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
901
|
-
|
|
902
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
903
|
-
init: z.ZodMiniObject<{
|
|
904
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
905
|
-
threshold: z.ZodMiniNumber<number>;
|
|
989
|
+
config: z.ZodMiniObject<{
|
|
906
990
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
907
991
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
908
992
|
weight: z.ZodMiniNumber<number>;
|
|
909
993
|
}, z.core.$strip>>>;
|
|
994
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
995
|
+
threshold: z.ZodMiniNumber<number>;
|
|
996
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
910
997
|
}, z.core.$strip>;
|
|
911
998
|
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>]
|
|
999
|
+
}, z.core.$strict>]>;
|
|
913
1000
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
914
1001
|
}, z.core.$strip>>;
|
|
915
1002
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -918,15 +1005,43 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
918
1005
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
919
1006
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
920
1007
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
1008
|
+
multisigWitness: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1009
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1010
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1011
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1012
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
925
1013
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
926
|
-
|
|
927
|
-
}, z.core.$strip
|
|
1014
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
1015
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1016
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1017
|
+
witness: z.ZodMiniObject<{
|
|
1018
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1019
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1020
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1021
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1022
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1023
|
+
}, z.core.$strip>>>;
|
|
1024
|
+
config: z.ZodMiniObject<{
|
|
1025
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1026
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1027
|
+
weight: z.ZodMiniNumber<number>;
|
|
1028
|
+
}, z.core.$strip>>>;
|
|
1029
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1030
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1031
|
+
version: z.ZodMiniNumber<number>;
|
|
1032
|
+
}, z.core.$strip>;
|
|
1033
|
+
}, z.core.$strip>;
|
|
1034
|
+
}, z.core.$strip>]>>>;
|
|
1035
|
+
config: z.ZodMiniObject<{
|
|
1036
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1037
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1038
|
+
weight: z.ZodMiniNumber<number>;
|
|
1039
|
+
}, z.core.$strip>>>;
|
|
1040
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1041
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1042
|
+
version: z.ZodMiniNumber<number>;
|
|
1043
|
+
}, z.core.$strip>;
|
|
928
1044
|
}, z.core.$strip>>;
|
|
929
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
930
1045
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
931
1046
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
932
1047
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -957,20 +1072,19 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
957
1072
|
type: z.ZodMiniLiteral<"keychain">;
|
|
958
1073
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
959
1074
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
960
|
-
}, z.core.$strip>, z.
|
|
1075
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
961
1076
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
962
|
-
|
|
963
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
964
|
-
init: z.ZodMiniObject<{
|
|
965
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
966
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1077
|
+
config: z.ZodMiniObject<{
|
|
967
1078
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
968
1079
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
969
1080
|
weight: z.ZodMiniNumber<number>;
|
|
970
1081
|
}, z.core.$strip>>>;
|
|
1082
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1083
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1084
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
971
1085
|
}, z.core.$strip>;
|
|
972
1086
|
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>]
|
|
1087
|
+
}, z.core.$strict>]>>;
|
|
974
1088
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
975
1089
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
976
1090
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1029,14 +1143,15 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1029
1143
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1030
1144
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1031
1145
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1032
|
-
|
|
1033
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1034
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1146
|
+
config: z.ZodMiniObject<{
|
|
1035
1147
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1036
1148
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1037
1149
|
weight: z.ZodMiniNumber<number>;
|
|
1038
1150
|
}, z.core.$strip>>>;
|
|
1039
|
-
|
|
1151
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1152
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1153
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1154
|
+
}, z.core.$strip>;
|
|
1040
1155
|
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
1156
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1042
1157
|
}, z.core.$strip>]>;
|
|
@@ -1115,14 +1230,15 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1115
1230
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1116
1231
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1117
1232
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1118
|
-
|
|
1119
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1120
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1233
|
+
config: z.ZodMiniObject<{
|
|
1121
1234
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1122
1235
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1123
1236
|
weight: z.ZodMiniNumber<number>;
|
|
1124
1237
|
}, z.core.$strip>>>;
|
|
1125
|
-
|
|
1238
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1239
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1240
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1241
|
+
}, z.core.$strip>;
|
|
1126
1242
|
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
1243
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1128
1244
|
}, z.core.$strip>]>;
|
|
@@ -1178,14 +1294,15 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1178
1294
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1179
1295
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1180
1296
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1181
|
-
|
|
1182
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1183
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1297
|
+
config: z.ZodMiniObject<{
|
|
1184
1298
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1185
1299
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1186
1300
|
weight: z.ZodMiniNumber<number>;
|
|
1187
1301
|
}, z.core.$strip>>>;
|
|
1188
|
-
|
|
1302
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1303
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1304
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1305
|
+
}, z.core.$strip>;
|
|
1189
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>>>;
|
|
1190
1307
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1191
1308
|
}, z.core.$strip>]>;
|
|
@@ -1198,15 +1315,43 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1198
1315
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1199
1316
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1200
1317
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1318
|
+
multisigWitness: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1319
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1320
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1321
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1322
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1205
1323
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1206
|
-
|
|
1207
|
-
}, z.core.$strip
|
|
1324
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
1325
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1326
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1327
|
+
witness: z.ZodMiniObject<{
|
|
1328
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1329
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1330
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1331
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1332
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1333
|
+
}, z.core.$strip>>>;
|
|
1334
|
+
config: z.ZodMiniObject<{
|
|
1335
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1336
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1337
|
+
weight: z.ZodMiniNumber<number>;
|
|
1338
|
+
}, z.core.$strip>>>;
|
|
1339
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1340
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1341
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1342
|
+
}, z.core.$strip>;
|
|
1343
|
+
}, z.core.$strip>;
|
|
1344
|
+
}, z.core.$strip>]>>>;
|
|
1345
|
+
config: z.ZodMiniObject<{
|
|
1346
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1347
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1348
|
+
weight: z.ZodMiniNumber<number>;
|
|
1349
|
+
}, z.core.$strip>>>;
|
|
1350
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1351
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1352
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1353
|
+
}, z.core.$strip>;
|
|
1208
1354
|
}, z.core.$strip>>;
|
|
1209
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1210
1355
|
nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1211
1356
|
nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBigInt<bigint>, z.ZodMiniLiteral<"random">]>>;
|
|
1212
1357
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1253,14 +1398,15 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1253
1398
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1254
1399
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1255
1400
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1256
|
-
|
|
1257
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1258
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1401
|
+
config: z.ZodMiniObject<{
|
|
1259
1402
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1260
1403
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1261
1404
|
weight: z.ZodMiniNumber<number>;
|
|
1262
1405
|
}, z.core.$strip>>>;
|
|
1263
|
-
|
|
1406
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1407
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1408
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1409
|
+
}, z.core.$strip>;
|
|
1264
1410
|
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
1411
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1266
1412
|
}, z.core.$strip>]>>;
|
|
@@ -1308,20 +1454,19 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1308
1454
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1309
1455
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1310
1456
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1311
|
-
}, z.core.$strip>, z.
|
|
1457
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1312
1458
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1313
|
-
|
|
1314
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1315
|
-
init: z.ZodMiniObject<{
|
|
1316
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1317
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1459
|
+
config: z.ZodMiniObject<{
|
|
1318
1460
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1319
1461
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1320
1462
|
weight: z.ZodMiniNumber<number>;
|
|
1321
1463
|
}, z.core.$strip>>>;
|
|
1464
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1465
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1466
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1322
1467
|
}, z.core.$strip>;
|
|
1323
1468
|
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>]
|
|
1469
|
+
}, z.core.$strict>]>;
|
|
1325
1470
|
}, z.core.$strip>>>>;
|
|
1326
1471
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1327
1472
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -1384,20 +1529,19 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1384
1529
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1385
1530
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1386
1531
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1387
|
-
}, z.core.$strip>]>, z.
|
|
1532
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1388
1533
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1389
|
-
|
|
1390
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1391
|
-
init: z.ZodMiniObject<{
|
|
1392
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1393
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1534
|
+
config: z.ZodMiniObject<{
|
|
1394
1535
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1395
1536
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1396
1537
|
weight: z.ZodMiniNumber<number>;
|
|
1397
1538
|
}, z.core.$strip>>>;
|
|
1539
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1540
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1541
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1398
1542
|
}, z.core.$strip>;
|
|
1399
1543
|
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>]
|
|
1544
|
+
}, z.core.$strict>]>;
|
|
1401
1545
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1402
1546
|
}, z.core.$strip>>;
|
|
1403
1547
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1406,15 +1550,43 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1406
1550
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1407
1551
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1408
1552
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1553
|
+
multisigWitness: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1554
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1555
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1556
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1557
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1413
1558
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1414
|
-
|
|
1415
|
-
}, z.core.$strip
|
|
1559
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
1560
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1561
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1562
|
+
witness: z.ZodMiniObject<{
|
|
1563
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1564
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1565
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1566
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1567
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1568
|
+
}, z.core.$strip>>>;
|
|
1569
|
+
config: z.ZodMiniObject<{
|
|
1570
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1571
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1572
|
+
weight: z.ZodMiniNumber<number>;
|
|
1573
|
+
}, z.core.$strip>>>;
|
|
1574
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1575
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1576
|
+
version: z.ZodMiniNumber<number>;
|
|
1577
|
+
}, z.core.$strip>;
|
|
1578
|
+
}, z.core.$strip>;
|
|
1579
|
+
}, z.core.$strip>]>>>;
|
|
1580
|
+
config: z.ZodMiniObject<{
|
|
1581
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1582
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1583
|
+
weight: z.ZodMiniNumber<number>;
|
|
1584
|
+
}, z.core.$strip>>>;
|
|
1585
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1586
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1587
|
+
version: z.ZodMiniNumber<number>;
|
|
1588
|
+
}, z.core.$strip>;
|
|
1416
1589
|
}, z.core.$strip>>;
|
|
1417
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1418
1590
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1419
1591
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1420
1592
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1445,20 +1617,19 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1445
1617
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1446
1618
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1447
1619
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1448
|
-
}, z.core.$strip>, z.
|
|
1620
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1449
1621
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1450
|
-
|
|
1451
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1452
|
-
init: z.ZodMiniObject<{
|
|
1453
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1454
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1622
|
+
config: z.ZodMiniObject<{
|
|
1455
1623
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1456
1624
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1457
1625
|
weight: z.ZodMiniNumber<number>;
|
|
1458
1626
|
}, z.core.$strip>>>;
|
|
1627
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1628
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1629
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1459
1630
|
}, z.core.$strip>;
|
|
1460
1631
|
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>]
|
|
1632
|
+
}, z.core.$strict>]>>;
|
|
1462
1633
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1463
1634
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1464
1635
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1517,14 +1688,15 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1517
1688
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1518
1689
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1519
1690
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1520
|
-
|
|
1521
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1522
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1691
|
+
config: z.ZodMiniObject<{
|
|
1523
1692
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1524
1693
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1525
1694
|
weight: z.ZodMiniNumber<number>;
|
|
1526
1695
|
}, z.core.$strip>>>;
|
|
1527
|
-
|
|
1696
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1697
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1698
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1699
|
+
}, z.core.$strip>;
|
|
1528
1700
|
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
1701
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1530
1702
|
}, z.core.$strip>]>;
|
|
@@ -1603,14 +1775,15 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1603
1775
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1604
1776
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1605
1777
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1606
|
-
|
|
1607
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1608
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1778
|
+
config: z.ZodMiniObject<{
|
|
1609
1779
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1610
1780
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1611
1781
|
weight: z.ZodMiniNumber<number>;
|
|
1612
1782
|
}, z.core.$strip>>>;
|
|
1613
|
-
|
|
1783
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1784
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1785
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1786
|
+
}, z.core.$strip>;
|
|
1614
1787
|
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
1788
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1616
1789
|
}, z.core.$strip>]>;
|
|
@@ -1666,14 +1839,15 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1666
1839
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1667
1840
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1668
1841
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1669
|
-
|
|
1670
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1671
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1842
|
+
config: z.ZodMiniObject<{
|
|
1672
1843
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1673
1844
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1674
1845
|
weight: z.ZodMiniNumber<number>;
|
|
1675
1846
|
}, z.core.$strip>>>;
|
|
1676
|
-
|
|
1847
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1848
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1849
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1850
|
+
}, z.core.$strip>;
|
|
1677
1851
|
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
1852
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1679
1853
|
}, z.core.$strip>]>;
|
|
@@ -1686,15 +1860,43 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1686
1860
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1687
1861
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1688
1862
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1863
|
+
multisigWitness: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1864
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1865
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1866
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1867
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1693
1868
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1694
|
-
|
|
1695
|
-
}, z.core.$strip
|
|
1869
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
1870
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1871
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1872
|
+
witness: z.ZodMiniObject<{
|
|
1873
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1874
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1875
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1876
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1877
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1878
|
+
}, z.core.$strip>>>;
|
|
1879
|
+
config: z.ZodMiniObject<{
|
|
1880
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1881
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1882
|
+
weight: z.ZodMiniNumber<number>;
|
|
1883
|
+
}, z.core.$strip>>>;
|
|
1884
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1885
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1886
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1887
|
+
}, z.core.$strip>;
|
|
1888
|
+
}, z.core.$strip>;
|
|
1889
|
+
}, z.core.$strip>]>>>;
|
|
1890
|
+
config: z.ZodMiniObject<{
|
|
1891
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1892
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1893
|
+
weight: z.ZodMiniNumber<number>;
|
|
1894
|
+
}, z.core.$strip>>>;
|
|
1895
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1896
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1897
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1898
|
+
}, z.core.$strip>;
|
|
1696
1899
|
}, z.core.$strip>>;
|
|
1697
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1698
1900
|
nonce: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1699
1901
|
nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>, z.ZodMiniLiteral<"random">]>>;
|
|
1700
1902
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1741,14 +1943,15 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1741
1943
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1742
1944
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1743
1945
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1744
|
-
|
|
1745
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1746
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1946
|
+
config: z.ZodMiniObject<{
|
|
1747
1947
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1748
1948
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1749
1949
|
weight: z.ZodMiniNumber<number>;
|
|
1750
1950
|
}, z.core.$strip>>>;
|
|
1751
|
-
|
|
1951
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1952
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1953
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1954
|
+
}, z.core.$strip>;
|
|
1752
1955
|
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
1956
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1754
1957
|
}, z.core.$strip>]>>;
|