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
|
@@ -52,20 +52,19 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
52
52
|
type: z.ZodMiniLiteral<"keychain">;
|
|
53
53
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
54
54
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
55
|
-
}, z.core.$strip>, z.
|
|
55
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
56
56
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
57
|
-
|
|
58
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
59
|
-
init: z.ZodMiniObject<{
|
|
60
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
61
|
-
threshold: z.ZodMiniNumber<number>;
|
|
57
|
+
config: z.ZodMiniObject<{
|
|
62
58
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
63
59
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
64
60
|
weight: z.ZodMiniNumber<number>;
|
|
65
61
|
}, z.core.$strip>>>;
|
|
62
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
63
|
+
threshold: z.ZodMiniNumber<number>;
|
|
64
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
66
65
|
}, z.core.$strip>;
|
|
67
66
|
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[]>>>;
|
|
68
|
-
}, z.core.$strict>]
|
|
67
|
+
}, z.core.$strict>]>;
|
|
69
68
|
}, z.core.$strip>>>>;
|
|
70
69
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
71
70
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -128,20 +127,19 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
128
127
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
129
128
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
130
129
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
131
|
-
}, z.core.$strip>]>, z.
|
|
130
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
132
131
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
133
|
-
|
|
134
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
135
|
-
init: z.ZodMiniObject<{
|
|
136
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
137
|
-
threshold: z.ZodMiniNumber<number>;
|
|
132
|
+
config: z.ZodMiniObject<{
|
|
138
133
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
139
134
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
140
135
|
weight: z.ZodMiniNumber<number>;
|
|
141
136
|
}, z.core.$strip>>>;
|
|
137
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
138
|
+
threshold: z.ZodMiniNumber<number>;
|
|
139
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
142
140
|
}, z.core.$strip>;
|
|
143
141
|
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[]>>>;
|
|
144
|
-
}, z.core.$strict>]
|
|
142
|
+
}, z.core.$strict>]>;
|
|
145
143
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
146
144
|
}, z.core.$strip>>;
|
|
147
145
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -150,15 +148,43 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
150
148
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
151
149
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
152
150
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
151
|
+
multisigWitness: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
152
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
153
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
154
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
155
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
157
156
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
158
|
-
|
|
159
|
-
}, z.core.$strip
|
|
157
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
158
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
159
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
160
|
+
witness: z.ZodMiniObject<{
|
|
161
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
162
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
163
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
164
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
165
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
166
|
+
}, z.core.$strip>>>;
|
|
167
|
+
config: z.ZodMiniObject<{
|
|
168
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
169
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
170
|
+
weight: z.ZodMiniNumber<number>;
|
|
171
|
+
}, z.core.$strip>>>;
|
|
172
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
173
|
+
threshold: z.ZodMiniNumber<number>;
|
|
174
|
+
version: z.ZodMiniNumber<number>;
|
|
175
|
+
}, z.core.$strip>;
|
|
176
|
+
}, z.core.$strip>;
|
|
177
|
+
}, z.core.$strip>]>>>;
|
|
178
|
+
config: z.ZodMiniObject<{
|
|
179
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
180
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
181
|
+
weight: z.ZodMiniNumber<number>;
|
|
182
|
+
}, z.core.$strip>>>;
|
|
183
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
184
|
+
threshold: z.ZodMiniNumber<number>;
|
|
185
|
+
version: z.ZodMiniNumber<number>;
|
|
186
|
+
}, z.core.$strip>;
|
|
160
187
|
}, z.core.$strip>>;
|
|
161
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
162
188
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
163
189
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
164
190
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -189,20 +215,19 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
189
215
|
type: z.ZodMiniLiteral<"keychain">;
|
|
190
216
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
191
217
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
192
|
-
}, z.core.$strip>, z.
|
|
218
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
193
219
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
194
|
-
|
|
195
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
196
|
-
init: z.ZodMiniObject<{
|
|
197
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
198
|
-
threshold: z.ZodMiniNumber<number>;
|
|
220
|
+
config: z.ZodMiniObject<{
|
|
199
221
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
200
222
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
201
223
|
weight: z.ZodMiniNumber<number>;
|
|
202
224
|
}, z.core.$strip>>>;
|
|
225
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
226
|
+
threshold: z.ZodMiniNumber<number>;
|
|
227
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
203
228
|
}, z.core.$strip>;
|
|
204
229
|
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[]>>>;
|
|
205
|
-
}, z.core.$strict>]
|
|
230
|
+
}, z.core.$strict>]>>;
|
|
206
231
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
207
232
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
208
233
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -261,14 +286,15 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
261
286
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
262
287
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
263
288
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
264
|
-
|
|
265
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
266
|
-
threshold: z.ZodMiniNumber<number>;
|
|
289
|
+
config: z.ZodMiniObject<{
|
|
267
290
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
268
291
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
269
292
|
weight: z.ZodMiniNumber<number>;
|
|
270
293
|
}, z.core.$strip>>>;
|
|
271
|
-
|
|
294
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
295
|
+
threshold: z.ZodMiniNumber<number>;
|
|
296
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
297
|
+
}, z.core.$strip>;
|
|
272
298
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
273
299
|
type: z.ZodMiniLiteral<"multisig">;
|
|
274
300
|
}, z.core.$strip>]>;
|
|
@@ -347,14 +373,15 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
347
373
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
348
374
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
349
375
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
350
|
-
|
|
351
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
352
|
-
threshold: z.ZodMiniNumber<number>;
|
|
376
|
+
config: z.ZodMiniObject<{
|
|
353
377
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
354
378
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
355
379
|
weight: z.ZodMiniNumber<number>;
|
|
356
380
|
}, z.core.$strip>>>;
|
|
357
|
-
|
|
381
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
382
|
+
threshold: z.ZodMiniNumber<number>;
|
|
383
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
384
|
+
}, z.core.$strip>;
|
|
358
385
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
359
386
|
type: z.ZodMiniLiteral<"multisig">;
|
|
360
387
|
}, z.core.$strip>]>;
|
|
@@ -410,14 +437,15 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
410
437
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
411
438
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
412
439
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
413
|
-
|
|
414
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
415
|
-
threshold: z.ZodMiniNumber<number>;
|
|
440
|
+
config: z.ZodMiniObject<{
|
|
416
441
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
417
442
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
418
443
|
weight: z.ZodMiniNumber<number>;
|
|
419
444
|
}, z.core.$strip>>>;
|
|
420
|
-
|
|
445
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
446
|
+
threshold: z.ZodMiniNumber<number>;
|
|
447
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
448
|
+
}, z.core.$strip>;
|
|
421
449
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
422
450
|
type: z.ZodMiniLiteral<"multisig">;
|
|
423
451
|
}, z.core.$strip>]>;
|
|
@@ -430,15 +458,43 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
430
458
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
431
459
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
432
460
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
461
|
+
multisigWitness: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
462
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
463
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
464
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
465
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
437
466
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
438
|
-
|
|
439
|
-
}, z.core.$strip
|
|
467
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
468
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
469
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
470
|
+
witness: z.ZodMiniObject<{
|
|
471
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
472
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
473
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
474
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
475
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
476
|
+
}, z.core.$strip>>>;
|
|
477
|
+
config: z.ZodMiniObject<{
|
|
478
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
479
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
480
|
+
weight: z.ZodMiniNumber<number>;
|
|
481
|
+
}, z.core.$strip>>>;
|
|
482
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
483
|
+
threshold: z.ZodMiniNumber<number>;
|
|
484
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
485
|
+
}, z.core.$strip>;
|
|
486
|
+
}, z.core.$strip>;
|
|
487
|
+
}, z.core.$strip>]>>>;
|
|
488
|
+
config: z.ZodMiniObject<{
|
|
489
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
490
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
491
|
+
weight: z.ZodMiniNumber<number>;
|
|
492
|
+
}, z.core.$strip>>>;
|
|
493
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
494
|
+
threshold: z.ZodMiniNumber<number>;
|
|
495
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
496
|
+
}, z.core.$strip>;
|
|
440
497
|
}, z.core.$strip>>;
|
|
441
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
442
498
|
nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
443
499
|
nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBigInt<bigint>, z.ZodMiniLiteral<"random">]>>;
|
|
444
500
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -485,14 +541,15 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
485
541
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
486
542
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
487
543
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
488
|
-
|
|
489
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
490
|
-
threshold: z.ZodMiniNumber<number>;
|
|
544
|
+
config: z.ZodMiniObject<{
|
|
491
545
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
492
546
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
493
547
|
weight: z.ZodMiniNumber<number>;
|
|
494
548
|
}, z.core.$strip>>>;
|
|
495
|
-
|
|
549
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
550
|
+
threshold: z.ZodMiniNumber<number>;
|
|
551
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
552
|
+
}, z.core.$strip>;
|
|
496
553
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
497
554
|
type: z.ZodMiniLiteral<"multisig">;
|
|
498
555
|
}, z.core.$strip>]>>;
|
|
@@ -1046,20 +1103,19 @@ export declare const Tempo: {
|
|
|
1046
1103
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1047
1104
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1048
1105
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1049
|
-
}, z.core.$strip>, z.
|
|
1106
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1050
1107
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1051
|
-
|
|
1052
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1053
|
-
init: z.ZodMiniObject<{
|
|
1054
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1055
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1108
|
+
config: z.ZodMiniObject<{
|
|
1056
1109
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1057
1110
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1058
1111
|
weight: z.ZodMiniNumber<number>;
|
|
1059
1112
|
}, z.core.$strip>>>;
|
|
1113
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1114
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1115
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1060
1116
|
}, z.core.$strip>;
|
|
1061
1117
|
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[]>>>;
|
|
1062
|
-
}, z.core.$strict>]
|
|
1118
|
+
}, z.core.$strict>]>;
|
|
1063
1119
|
}, z.core.$strip>>>>;
|
|
1064
1120
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1065
1121
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -1122,20 +1178,19 @@ export declare const Tempo: {
|
|
|
1122
1178
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1123
1179
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1124
1180
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1125
|
-
}, z.core.$strip>]>, z.
|
|
1181
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1126
1182
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1127
|
-
|
|
1128
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1129
|
-
init: z.ZodMiniObject<{
|
|
1130
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1131
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1183
|
+
config: z.ZodMiniObject<{
|
|
1132
1184
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1133
1185
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1134
1186
|
weight: z.ZodMiniNumber<number>;
|
|
1135
1187
|
}, z.core.$strip>>>;
|
|
1188
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1189
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1190
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1136
1191
|
}, z.core.$strip>;
|
|
1137
1192
|
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[]>>>;
|
|
1138
|
-
}, z.core.$strict>]
|
|
1193
|
+
}, z.core.$strict>]>;
|
|
1139
1194
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1140
1195
|
}, z.core.$strip>>;
|
|
1141
1196
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1144,15 +1199,43 @@ export declare const Tempo: {
|
|
|
1144
1199
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1145
1200
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1146
1201
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1202
|
+
multisigWitness: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1203
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1204
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1205
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1206
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1151
1207
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1152
|
-
|
|
1153
|
-
}, z.core.$strip
|
|
1208
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
1209
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1210
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1211
|
+
witness: z.ZodMiniObject<{
|
|
1212
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1213
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1214
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1215
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1216
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1217
|
+
}, z.core.$strip>>>;
|
|
1218
|
+
config: z.ZodMiniObject<{
|
|
1219
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1220
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1221
|
+
weight: z.ZodMiniNumber<number>;
|
|
1222
|
+
}, z.core.$strip>>>;
|
|
1223
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1224
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1225
|
+
version: z.ZodMiniNumber<number>;
|
|
1226
|
+
}, z.core.$strip>;
|
|
1227
|
+
}, z.core.$strip>;
|
|
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.ZodMiniNumber<number>;
|
|
1237
|
+
}, z.core.$strip>;
|
|
1154
1238
|
}, z.core.$strip>>;
|
|
1155
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1156
1239
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1157
1240
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1158
1241
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1183,20 +1266,19 @@ export declare const Tempo: {
|
|
|
1183
1266
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1184
1267
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1185
1268
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1186
|
-
}, z.core.$strip>, z.
|
|
1269
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1187
1270
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1188
|
-
|
|
1189
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1190
|
-
init: z.ZodMiniObject<{
|
|
1191
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1192
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1271
|
+
config: z.ZodMiniObject<{
|
|
1193
1272
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1194
1273
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1195
1274
|
weight: z.ZodMiniNumber<number>;
|
|
1196
1275
|
}, z.core.$strip>>>;
|
|
1276
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1277
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1278
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1197
1279
|
}, z.core.$strip>;
|
|
1198
1280
|
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[]>>>;
|
|
1199
|
-
}, z.core.$strict>]
|
|
1281
|
+
}, z.core.$strict>]>>;
|
|
1200
1282
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1201
1283
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1202
1284
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1255,14 +1337,15 @@ export declare const Tempo: {
|
|
|
1255
1337
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1256
1338
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1257
1339
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1258
|
-
|
|
1259
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1260
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1340
|
+
config: z.ZodMiniObject<{
|
|
1261
1341
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1262
1342
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1263
1343
|
weight: z.ZodMiniNumber<number>;
|
|
1264
1344
|
}, z.core.$strip>>>;
|
|
1265
|
-
|
|
1345
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1346
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1347
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1348
|
+
}, z.core.$strip>;
|
|
1266
1349
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1267
1350
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1268
1351
|
}, z.core.$strip>]>;
|
|
@@ -1341,14 +1424,15 @@ export declare const Tempo: {
|
|
|
1341
1424
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1342
1425
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1343
1426
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1344
|
-
|
|
1345
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1346
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1427
|
+
config: z.ZodMiniObject<{
|
|
1347
1428
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1348
1429
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1349
1430
|
weight: z.ZodMiniNumber<number>;
|
|
1350
1431
|
}, z.core.$strip>>>;
|
|
1351
|
-
|
|
1432
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1433
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1434
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1435
|
+
}, z.core.$strip>;
|
|
1352
1436
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1353
1437
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1354
1438
|
}, z.core.$strip>]>;
|
|
@@ -1404,14 +1488,15 @@ export declare const Tempo: {
|
|
|
1404
1488
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1405
1489
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1406
1490
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1407
|
-
|
|
1408
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1409
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1491
|
+
config: z.ZodMiniObject<{
|
|
1410
1492
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1411
1493
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1412
1494
|
weight: z.ZodMiniNumber<number>;
|
|
1413
1495
|
}, z.core.$strip>>>;
|
|
1414
|
-
|
|
1496
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1497
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1498
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1499
|
+
}, z.core.$strip>;
|
|
1415
1500
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1416
1501
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1417
1502
|
}, z.core.$strip>]>;
|
|
@@ -1424,15 +1509,43 @@ export declare const Tempo: {
|
|
|
1424
1509
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1425
1510
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1426
1511
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1512
|
+
multisigWitness: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1513
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1514
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1515
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1516
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1431
1517
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1432
|
-
|
|
1433
|
-
}, z.core.$strip
|
|
1518
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
1519
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1520
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1521
|
+
witness: z.ZodMiniObject<{
|
|
1522
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1523
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1524
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1525
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1526
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1527
|
+
}, z.core.$strip>>>;
|
|
1528
|
+
config: z.ZodMiniObject<{
|
|
1529
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1530
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1531
|
+
weight: z.ZodMiniNumber<number>;
|
|
1532
|
+
}, z.core.$strip>>>;
|
|
1533
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1534
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1535
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1536
|
+
}, z.core.$strip>;
|
|
1537
|
+
}, z.core.$strip>;
|
|
1538
|
+
}, z.core.$strip>]>>>;
|
|
1539
|
+
config: z.ZodMiniObject<{
|
|
1540
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1541
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1542
|
+
weight: z.ZodMiniNumber<number>;
|
|
1543
|
+
}, z.core.$strip>>>;
|
|
1544
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1545
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1546
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1547
|
+
}, z.core.$strip>;
|
|
1434
1548
|
}, z.core.$strip>>;
|
|
1435
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1436
1549
|
nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1437
1550
|
nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBigInt<bigint>, z.ZodMiniLiteral<"random">]>>;
|
|
1438
1551
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1479,14 +1592,15 @@ export declare const Tempo: {
|
|
|
1479
1592
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1480
1593
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1481
1594
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1482
|
-
|
|
1483
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1484
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1595
|
+
config: z.ZodMiniObject<{
|
|
1485
1596
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1486
1597
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1487
1598
|
weight: z.ZodMiniNumber<number>;
|
|
1488
1599
|
}, z.core.$strip>>>;
|
|
1489
|
-
|
|
1600
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1601
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1602
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1603
|
+
}, z.core.$strip>;
|
|
1490
1604
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1491
1605
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1492
1606
|
}, z.core.$strip>]>>;
|
|
@@ -1987,4 +2101,395 @@ export declare const Tempo: {
|
|
|
1987
2101
|
}, z.core.$strip>>;
|
|
1988
2102
|
}, z.core.$strip>>;
|
|
1989
2103
|
};
|
|
2104
|
+
/** Schema for the `multisig_approveRawTransaction` JSON-RPC method. */
|
|
2105
|
+
export declare const multisig_approveRawTransaction: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransaction", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2106
|
+
/** Schema for the `multisig_approveRawTransactionSync` JSON-RPC method. */
|
|
2107
|
+
export declare const multisig_approveRawTransactionSync: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransactionSync", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniOptional<z.ZodMiniNumber<number>>], null>, z.ZodMiniObject<{
|
|
2108
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2109
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
2110
|
+
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2111
|
+
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2112
|
+
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2113
|
+
type: z.ZodMiniLiteral<"transaction">;
|
|
2114
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2115
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2116
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2117
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2118
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2119
|
+
weight: z.ZodMiniNumber<number>;
|
|
2120
|
+
}, z.core.$strip>>>;
|
|
2121
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2122
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2123
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2124
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2125
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2126
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2127
|
+
weight: z.ZodMiniNumber<number>;
|
|
2128
|
+
}, z.core.$strip>>>;
|
|
2129
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2130
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2131
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2132
|
+
}, z.core.$strip>>;
|
|
2133
|
+
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2134
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2135
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2136
|
+
init: z.ZodMiniBoolean<boolean>;
|
|
2137
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2138
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2139
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2140
|
+
weight: z.ZodMiniNumber<number>;
|
|
2141
|
+
}, z.core.$strip>>;
|
|
2142
|
+
/** Schema for the `multisig_approveKeyAuthorization` JSON-RPC method. */
|
|
2143
|
+
export declare const multisig_approveKeyAuthorization: import("../internal/rpcSchemas/from.js").Item<"multisig_approveKeyAuthorization", z.ZodMiniTuple<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2144
|
+
keyAuthorization: z.ZodMiniObject<{
|
|
2145
|
+
account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2146
|
+
allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2147
|
+
selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2148
|
+
recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
|
|
2149
|
+
selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2150
|
+
}, z.core.$strip>>>>>;
|
|
2151
|
+
target: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2152
|
+
}, z.core.$strip>>>>>;
|
|
2153
|
+
chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2154
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2155
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
2156
|
+
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2157
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2158
|
+
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2159
|
+
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2160
|
+
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2161
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2162
|
+
}, z.core.$strip>>>>>;
|
|
2163
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2164
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2165
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2166
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2167
|
+
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2168
|
+
yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2169
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2170
|
+
preHash: z.ZodMiniBoolean<boolean>;
|
|
2171
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2172
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2173
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2174
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2175
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2176
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2177
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2178
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2179
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2180
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2181
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2182
|
+
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2183
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2184
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2185
|
+
config: z.ZodMiniObject<{
|
|
2186
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2187
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2188
|
+
weight: z.ZodMiniNumber<number>;
|
|
2189
|
+
}, z.core.$strip>>>;
|
|
2190
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2191
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2192
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2193
|
+
}, z.core.$strip>;
|
|
2194
|
+
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[]>>>;
|
|
2195
|
+
}, z.core.$strict>]>;
|
|
2196
|
+
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2197
|
+
}, z.core.$strip>;
|
|
2198
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2199
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2200
|
+
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2201
|
+
}, z.core.$strip>]>], null>, z.ZodMiniObject<{
|
|
2202
|
+
keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2203
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
|
|
2204
|
+
type: z.ZodMiniLiteral<"keyAuthorization">;
|
|
2205
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2206
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2207
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2208
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2209
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2210
|
+
weight: z.ZodMiniNumber<number>;
|
|
2211
|
+
}, z.core.$strip>>>;
|
|
2212
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2213
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2214
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2215
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2216
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2217
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2218
|
+
weight: z.ZodMiniNumber<number>;
|
|
2219
|
+
}, z.core.$strip>>>;
|
|
2220
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2221
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2222
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2223
|
+
}, z.core.$strip>>;
|
|
2224
|
+
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2225
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2226
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2227
|
+
init: z.ZodMiniBoolean<boolean>;
|
|
2228
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2229
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2230
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2231
|
+
weight: z.ZodMiniNumber<number>;
|
|
2232
|
+
}, z.core.$strip>>;
|
|
2233
|
+
/** Schema for the `multisig_getOperation` JSON-RPC method. */
|
|
2234
|
+
export declare const multisig_getOperation: import("../internal/rpcSchemas/from.js").Item<"multisig_getOperation", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniNullable<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2235
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2236
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
2237
|
+
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2238
|
+
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2239
|
+
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2240
|
+
type: z.ZodMiniLiteral<"transaction">;
|
|
2241
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2242
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2243
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2244
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2245
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2246
|
+
weight: z.ZodMiniNumber<number>;
|
|
2247
|
+
}, z.core.$strip>>>;
|
|
2248
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2249
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2250
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2251
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2252
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2253
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2254
|
+
weight: z.ZodMiniNumber<number>;
|
|
2255
|
+
}, z.core.$strip>>>;
|
|
2256
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2257
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2258
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2259
|
+
}, z.core.$strip>>;
|
|
2260
|
+
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2261
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2262
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2263
|
+
init: z.ZodMiniBoolean<boolean>;
|
|
2264
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2265
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2266
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2267
|
+
weight: z.ZodMiniNumber<number>;
|
|
2268
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2269
|
+
keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2270
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
|
|
2271
|
+
type: z.ZodMiniLiteral<"keyAuthorization">;
|
|
2272
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2273
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2274
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2275
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2276
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2277
|
+
weight: z.ZodMiniNumber<number>;
|
|
2278
|
+
}, z.core.$strip>>>;
|
|
2279
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2280
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2281
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2282
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2283
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2284
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2285
|
+
weight: z.ZodMiniNumber<number>;
|
|
2286
|
+
}, z.core.$strip>>>;
|
|
2287
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2288
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2289
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2290
|
+
}, z.core.$strip>>;
|
|
2291
|
+
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2292
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2293
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2294
|
+
init: z.ZodMiniBoolean<boolean>;
|
|
2295
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2296
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2297
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2298
|
+
weight: z.ZodMiniNumber<number>;
|
|
2299
|
+
}, z.core.$strip>]>>>;
|
|
2300
|
+
/** JSON-RPC method schemas for the `multisig_` namespace. */
|
|
2301
|
+
export declare const Multisig: {
|
|
2302
|
+
multisig_approveKeyAuthorization: import("../internal/rpcSchemas/from.js").Item<"multisig_approveKeyAuthorization", z.ZodMiniTuple<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2303
|
+
keyAuthorization: z.ZodMiniObject<{
|
|
2304
|
+
account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2305
|
+
allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2306
|
+
selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2307
|
+
recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
|
|
2308
|
+
selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2309
|
+
}, z.core.$strip>>>>>;
|
|
2310
|
+
target: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2311
|
+
}, z.core.$strip>>>>>;
|
|
2312
|
+
chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2313
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2314
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
2315
|
+
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2316
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2317
|
+
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2318
|
+
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2319
|
+
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2320
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2321
|
+
}, z.core.$strip>>>>>;
|
|
2322
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2323
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2324
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2325
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2326
|
+
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2327
|
+
yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2328
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2329
|
+
preHash: z.ZodMiniBoolean<boolean>;
|
|
2330
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2331
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2332
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2333
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2334
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2335
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2336
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2337
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2338
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2339
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2340
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2341
|
+
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2342
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2343
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2344
|
+
config: z.ZodMiniObject<{
|
|
2345
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2346
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2347
|
+
weight: z.ZodMiniNumber<number>;
|
|
2348
|
+
}, z.core.$strip>>>;
|
|
2349
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2350
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2351
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2352
|
+
}, z.core.$strip>;
|
|
2353
|
+
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[]>>>;
|
|
2354
|
+
}, z.core.$strict>]>;
|
|
2355
|
+
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2356
|
+
}, z.core.$strip>;
|
|
2357
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2358
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2359
|
+
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2360
|
+
}, z.core.$strip>]>], null>, z.ZodMiniObject<{
|
|
2361
|
+
keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2362
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
|
|
2363
|
+
type: z.ZodMiniLiteral<"keyAuthorization">;
|
|
2364
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2365
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2366
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2367
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2368
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2369
|
+
weight: z.ZodMiniNumber<number>;
|
|
2370
|
+
}, z.core.$strip>>>;
|
|
2371
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2372
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2373
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2374
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2375
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2376
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2377
|
+
weight: z.ZodMiniNumber<number>;
|
|
2378
|
+
}, z.core.$strip>>>;
|
|
2379
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2380
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2381
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2382
|
+
}, z.core.$strip>>;
|
|
2383
|
+
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2384
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2385
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2386
|
+
init: z.ZodMiniBoolean<boolean>;
|
|
2387
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2388
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2389
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2390
|
+
weight: z.ZodMiniNumber<number>;
|
|
2391
|
+
}, z.core.$strip>>;
|
|
2392
|
+
multisig_approveRawTransaction: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransaction", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2393
|
+
multisig_approveRawTransactionSync: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransactionSync", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniOptional<z.ZodMiniNumber<number>>], null>, z.ZodMiniObject<{
|
|
2394
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2395
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
2396
|
+
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2397
|
+
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2398
|
+
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2399
|
+
type: z.ZodMiniLiteral<"transaction">;
|
|
2400
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2401
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2402
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2403
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2404
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2405
|
+
weight: z.ZodMiniNumber<number>;
|
|
2406
|
+
}, z.core.$strip>>>;
|
|
2407
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2408
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2409
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2410
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2411
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2412
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2413
|
+
weight: z.ZodMiniNumber<number>;
|
|
2414
|
+
}, z.core.$strip>>>;
|
|
2415
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2416
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2417
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2418
|
+
}, z.core.$strip>>;
|
|
2419
|
+
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2420
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2421
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2422
|
+
init: z.ZodMiniBoolean<boolean>;
|
|
2423
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2424
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2425
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2426
|
+
weight: z.ZodMiniNumber<number>;
|
|
2427
|
+
}, z.core.$strip>>;
|
|
2428
|
+
multisig_getOperation: import("../internal/rpcSchemas/from.js").Item<"multisig_getOperation", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniNullable<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2429
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2430
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
2431
|
+
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2432
|
+
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2433
|
+
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2434
|
+
type: z.ZodMiniLiteral<"transaction">;
|
|
2435
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2436
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2437
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2438
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2439
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2440
|
+
weight: z.ZodMiniNumber<number>;
|
|
2441
|
+
}, z.core.$strip>>>;
|
|
2442
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2443
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2444
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2445
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2446
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2447
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2448
|
+
weight: z.ZodMiniNumber<number>;
|
|
2449
|
+
}, z.core.$strip>>>;
|
|
2450
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2451
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2452
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2453
|
+
}, z.core.$strip>>;
|
|
2454
|
+
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2455
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2456
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2457
|
+
init: z.ZodMiniBoolean<boolean>;
|
|
2458
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2459
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2460
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2461
|
+
weight: z.ZodMiniNumber<number>;
|
|
2462
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2463
|
+
keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2464
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
|
|
2465
|
+
type: z.ZodMiniLiteral<"keyAuthorization">;
|
|
2466
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2467
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2468
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2469
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2470
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2471
|
+
weight: z.ZodMiniNumber<number>;
|
|
2472
|
+
}, z.core.$strip>>>;
|
|
2473
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2474
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2475
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2476
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2477
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2478
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2479
|
+
weight: z.ZodMiniNumber<number>;
|
|
2480
|
+
}, z.core.$strip>>>;
|
|
2481
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2482
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2483
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2484
|
+
}, z.core.$strip>>;
|
|
2485
|
+
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2486
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2487
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2488
|
+
init: z.ZodMiniBoolean<boolean>;
|
|
2489
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2490
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2491
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2492
|
+
weight: z.ZodMiniNumber<number>;
|
|
2493
|
+
}, z.core.$strip>]>>>;
|
|
2494
|
+
};
|
|
1990
2495
|
//# sourceMappingURL=RpcSchemaTempo.d.ts.map
|