ox 1.7.1 → 1.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +42 -0
- package/dist/core/Hash.js +1 -1
- package/dist/core/Hash.js.map +1 -1
- package/dist/tempo/KeyAuthorization.d.ts +2 -2
- package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.d.ts +151 -83
- package/dist/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.js +164 -86
- package/dist/tempo/MultisigConfig.js.map +1 -1
- package/dist/tempo/MultisigOperation.d.ts +340 -0
- package/dist/tempo/MultisigOperation.d.ts.map +1 -0
- package/dist/tempo/MultisigOperation.js +839 -0
- package/dist/tempo/MultisigOperation.js.map +1 -0
- package/dist/tempo/MultisigSimulation.d.ts +132 -0
- package/dist/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/tempo/MultisigSimulation.js +140 -0
- package/dist/tempo/MultisigSimulation.js.map +1 -0
- package/dist/tempo/RpcSchemaTempo.d.ts +45 -0
- package/dist/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +55 -86
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +93 -158
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/tempo/TransactionRequest.d.ts +9 -17
- package/dist/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/tempo/TransactionRequest.js +7 -7
- package/dist/tempo/TransactionRequest.js.map +1 -1
- package/dist/tempo/TxEnvelopeTempo.d.ts +3 -2
- package/dist/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/tempo/TxEnvelopeTempo.js +3 -2
- package/dist/tempo/TxEnvelopeTempo.js.map +1 -1
- package/dist/tempo/index.d.ts +22 -2
- package/dist/tempo/index.d.ts.map +1 -1
- package/dist/tempo/index.js +22 -2
- package/dist/tempo/index.js.map +1 -1
- package/dist/zod/tempo/AuthorizationTempo.d.ts +60 -180
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +65 -118
- package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigConfig.d.ts +31 -2
- package/dist/zod/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigConfig.js +26 -3
- package/dist/zod/tempo/MultisigConfig.js.map +1 -1
- package/dist/zod/tempo/MultisigOperation.d.ts +158 -0
- package/dist/zod/tempo/MultisigOperation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigOperation.js +62 -0
- package/dist/zod/tempo/MultisigOperation.js.map +1 -0
- package/dist/zod/tempo/MultisigSimulation.d.ts +120 -0
- package/dist/zod/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigSimulation.js +78 -0
- package/dist/zod/tempo/MultisigSimulation.js.map +1 -0
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +528 -144
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.js +47 -0
- package/dist/zod/tempo/RpcSchemaTempo.js.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.d.ts +18 -54
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +5 -22
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +138 -348
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +286 -239
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.js +11 -22
- package/dist/zod/tempo/TransactionRequest.js.map +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts +60 -48
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts +15 -12
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts.map +1 -1
- package/dist/zod/tempo/z.d.ts +2 -0
- package/dist/zod/tempo/z.d.ts.map +1 -1
- package/dist/zod/tempo/z.js +2 -0
- package/dist/zod/tempo/z.js.map +1 -1
- package/package.json +21 -1
- package/src/core/Hash.ts +1 -1
- package/src/core/_test/Hash.test.ts +15 -0
- package/src/tempo/AuthorizationTempo.test.ts +4 -0
- package/src/tempo/KeyAuthorization.test-d.ts +13 -12
- package/src/tempo/KeyAuthorization.test.ts +109 -3
- package/src/tempo/KeyAuthorization.ts +4 -4
- package/src/tempo/MultisigConfig.test-d.ts +52 -0
- package/src/tempo/MultisigConfig.test.ts +288 -227
- package/src/tempo/MultisigConfig.ts +275 -104
- package/src/tempo/MultisigOperation.test-d.ts +79 -0
- package/src/tempo/MultisigOperation.test.ts +1950 -0
- package/src/tempo/MultisigOperation.ts +1293 -0
- package/src/tempo/MultisigSimulation.test-d.ts +33 -0
- package/src/tempo/MultisigSimulation.test.ts +283 -0
- package/src/tempo/MultisigSimulation.ts +266 -0
- package/src/tempo/RpcSchemaTempo.test-d.ts +91 -0
- package/src/tempo/RpcSchemaTempo.ts +46 -0
- package/src/tempo/SignatureEnvelope.test-d.ts +33 -72
- package/src/tempo/SignatureEnvelope.test.ts +533 -500
- package/src/tempo/SignatureEnvelope.ts +171 -258
- package/src/tempo/Transaction.test.ts +61 -0
- package/src/tempo/TransactionRequest.test-d.ts +11 -0
- package/src/tempo/TransactionRequest.test.ts +214 -41
- package/src/tempo/TransactionRequest.ts +19 -20
- package/src/tempo/TxEnvelopeTempo.test-d.ts +7 -0
- package/src/tempo/TxEnvelopeTempo.test.ts +25 -0
- package/src/tempo/TxEnvelopeTempo.ts +5 -3
- package/src/tempo/index.ts +22 -2
- package/src/tempo/multisig.e2e.test.ts +164 -87
- package/src/version.ts +1 -1
- package/src/zod/tempo/MultisigConfig.ts +29 -3
- package/src/zod/tempo/MultisigOperation.ts +66 -0
- package/src/zod/tempo/MultisigSimulation.ts +98 -0
- package/src/zod/tempo/RpcSchemaTempo.ts +53 -0
- package/src/zod/tempo/SignatureEnvelope.ts +12 -54
- package/src/zod/tempo/TransactionRequest.ts +17 -26
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +2 -4
- package/src/zod/tempo/_test/MultisigConfig.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigConfig.test.ts +13 -2
- package/src/zod/tempo/_test/MultisigOperation.test-d.ts +27 -0
- package/src/zod/tempo/_test/MultisigOperation.test.ts +66 -0
- package/src/zod/tempo/_test/MultisigSimulation.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigSimulation.test.ts +78 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test-d.ts +48 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test.ts +83 -0
- package/src/zod/tempo/_test/SignatureEnvelope.test-d.ts +1 -1
- package/src/zod/tempo/_test/SignatureEnvelope.test.ts +57 -120
- package/src/zod/tempo/_test/TransactionRequest.test.ts +43 -16
- package/src/zod/tempo/z.ts +2 -0
|
@@ -52,20 +52,7 @@ 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.
|
|
56
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
57
|
-
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[]>>>;
|
|
58
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
59
|
-
init: z.ZodMiniObject<{
|
|
60
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
61
|
-
threshold: z.ZodMiniNumber<number>;
|
|
62
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
63
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
64
|
-
weight: z.ZodMiniNumber<number>;
|
|
65
|
-
}, z.core.$strip>>>;
|
|
66
|
-
}, z.core.$strip>;
|
|
67
|
-
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>]>]>;
|
|
55
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
69
56
|
}, z.core.$strip>>>>;
|
|
70
57
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
71
58
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -128,20 +115,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
128
115
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
129
116
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
130
117
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
131
|
-
}, z.core.$strip>]>, z.
|
|
132
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
133
|
-
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[]>>>;
|
|
134
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
135
|
-
init: z.ZodMiniObject<{
|
|
136
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
137
|
-
threshold: z.ZodMiniNumber<number>;
|
|
138
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
139
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
140
|
-
weight: z.ZodMiniNumber<number>;
|
|
141
|
-
}, z.core.$strip>>>;
|
|
142
|
-
}, z.core.$strip>;
|
|
143
|
-
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>]>]>;
|
|
118
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
145
119
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
146
120
|
}, z.core.$strip>>;
|
|
147
121
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -150,15 +124,27 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
150
124
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
151
125
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
152
126
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
127
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
128
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
129
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
130
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
131
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
157
132
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
158
|
-
|
|
159
|
-
}, z.core.$strip
|
|
133
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
134
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
135
|
+
spec: z.ZodMiniObject<{
|
|
136
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
137
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
138
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
139
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
140
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
141
|
+
}, z.core.$strip>>>;
|
|
142
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
143
|
+
}, z.core.$strip>;
|
|
144
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
145
|
+
}, z.core.$strip>]>>>;
|
|
146
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
160
147
|
}, z.core.$strip>>;
|
|
161
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
162
148
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
163
149
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
164
150
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -189,20 +175,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
189
175
|
type: z.ZodMiniLiteral<"keychain">;
|
|
190
176
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
191
177
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
192
|
-
}, z.core.$strip>, z.
|
|
193
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
194
|
-
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[]>>>;
|
|
195
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
196
|
-
init: z.ZodMiniObject<{
|
|
197
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
198
|
-
threshold: z.ZodMiniNumber<number>;
|
|
199
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
200
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
201
|
-
weight: z.ZodMiniNumber<number>;
|
|
202
|
-
}, z.core.$strip>>>;
|
|
203
|
-
}, z.core.$strip>;
|
|
204
|
-
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>]>]>>;
|
|
178
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
206
179
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
207
180
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
208
181
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -261,14 +234,15 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
261
234
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
262
235
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
263
236
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
264
|
-
|
|
265
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
266
|
-
threshold: z.ZodMiniNumber<number>;
|
|
237
|
+
config: z.ZodMiniObject<{
|
|
267
238
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
268
239
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
269
240
|
weight: z.ZodMiniNumber<number>;
|
|
270
241
|
}, z.core.$strip>>>;
|
|
271
|
-
|
|
242
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
243
|
+
threshold: z.ZodMiniNumber<number>;
|
|
244
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
245
|
+
}, z.core.$strip>;
|
|
272
246
|
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
247
|
type: z.ZodMiniLiteral<"multisig">;
|
|
274
248
|
}, z.core.$strip>]>;
|
|
@@ -347,14 +321,15 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
347
321
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
348
322
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
349
323
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
350
|
-
|
|
351
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
352
|
-
threshold: z.ZodMiniNumber<number>;
|
|
324
|
+
config: z.ZodMiniObject<{
|
|
353
325
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
354
326
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
355
327
|
weight: z.ZodMiniNumber<number>;
|
|
356
328
|
}, z.core.$strip>>>;
|
|
357
|
-
|
|
329
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
330
|
+
threshold: z.ZodMiniNumber<number>;
|
|
331
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
332
|
+
}, z.core.$strip>;
|
|
358
333
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
359
334
|
type: z.ZodMiniLiteral<"multisig">;
|
|
360
335
|
}, z.core.$strip>]>;
|
|
@@ -410,14 +385,15 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
410
385
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
411
386
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
412
387
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
413
|
-
|
|
414
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
415
|
-
threshold: z.ZodMiniNumber<number>;
|
|
388
|
+
config: z.ZodMiniObject<{
|
|
416
389
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
417
390
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
418
391
|
weight: z.ZodMiniNumber<number>;
|
|
419
392
|
}, z.core.$strip>>>;
|
|
420
|
-
|
|
393
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
394
|
+
threshold: z.ZodMiniNumber<number>;
|
|
395
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
396
|
+
}, z.core.$strip>;
|
|
421
397
|
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
398
|
type: z.ZodMiniLiteral<"multisig">;
|
|
423
399
|
}, z.core.$strip>]>;
|
|
@@ -430,15 +406,43 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
430
406
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
431
407
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
432
408
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
409
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
410
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
411
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
412
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
413
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
437
414
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
438
|
-
|
|
439
|
-
}, z.core.$strip
|
|
415
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
416
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
417
|
+
spec: z.ZodMiniObject<{
|
|
418
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
419
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
420
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
421
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
422
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
423
|
+
}, z.core.$strip>>>;
|
|
424
|
+
config: z.ZodMiniObject<{
|
|
425
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
426
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
427
|
+
weight: z.ZodMiniNumber<number>;
|
|
428
|
+
}, z.core.$strip>>>;
|
|
429
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
430
|
+
threshold: z.ZodMiniNumber<number>;
|
|
431
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
432
|
+
}, z.core.$strip>;
|
|
433
|
+
}, z.core.$strip>;
|
|
434
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
435
|
+
}, z.core.$strip>]>>>;
|
|
436
|
+
config: z.ZodMiniObject<{
|
|
437
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
438
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
439
|
+
weight: z.ZodMiniNumber<number>;
|
|
440
|
+
}, z.core.$strip>>>;
|
|
441
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
442
|
+
threshold: z.ZodMiniNumber<number>;
|
|
443
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
444
|
+
}, z.core.$strip>;
|
|
440
445
|
}, z.core.$strip>>;
|
|
441
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
442
446
|
nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
443
447
|
nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBigInt<bigint>, z.ZodMiniLiteral<"random">]>>;
|
|
444
448
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -485,14 +489,15 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
485
489
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
486
490
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
487
491
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
488
|
-
|
|
489
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
490
|
-
threshold: z.ZodMiniNumber<number>;
|
|
492
|
+
config: z.ZodMiniObject<{
|
|
491
493
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
492
494
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
493
495
|
weight: z.ZodMiniNumber<number>;
|
|
494
496
|
}, z.core.$strip>>>;
|
|
495
|
-
|
|
497
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
498
|
+
threshold: z.ZodMiniNumber<number>;
|
|
499
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
500
|
+
}, z.core.$strip>;
|
|
496
501
|
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
502
|
type: z.ZodMiniLiteral<"multisig">;
|
|
498
503
|
}, z.core.$strip>]>>;
|
|
@@ -1046,20 +1051,7 @@ export declare const Tempo: {
|
|
|
1046
1051
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1047
1052
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1048
1053
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1049
|
-
}, z.core.$strip>, z.
|
|
1050
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1051
|
-
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[]>>>;
|
|
1052
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1053
|
-
init: z.ZodMiniObject<{
|
|
1054
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1055
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1056
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1057
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1058
|
-
weight: z.ZodMiniNumber<number>;
|
|
1059
|
-
}, z.core.$strip>>>;
|
|
1060
|
-
}, z.core.$strip>;
|
|
1061
|
-
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>]>]>;
|
|
1054
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1063
1055
|
}, z.core.$strip>>>>;
|
|
1064
1056
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1065
1057
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -1122,20 +1114,7 @@ export declare const Tempo: {
|
|
|
1122
1114
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1123
1115
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1124
1116
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1125
|
-
}, z.core.$strip>]>, z.
|
|
1126
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1127
|
-
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[]>>>;
|
|
1128
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1129
|
-
init: z.ZodMiniObject<{
|
|
1130
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1131
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1132
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1133
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1134
|
-
weight: z.ZodMiniNumber<number>;
|
|
1135
|
-
}, z.core.$strip>>>;
|
|
1136
|
-
}, z.core.$strip>;
|
|
1137
|
-
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>]>]>;
|
|
1117
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1139
1118
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1140
1119
|
}, z.core.$strip>>;
|
|
1141
1120
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1144,15 +1123,27 @@ export declare const Tempo: {
|
|
|
1144
1123
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1145
1124
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1146
1125
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1126
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1127
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1128
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1129
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1130
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1151
1131
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1152
|
-
|
|
1153
|
-
}, z.core.$strip
|
|
1132
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
1133
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1134
|
+
spec: z.ZodMiniObject<{
|
|
1135
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1136
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1137
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1138
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1139
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1140
|
+
}, z.core.$strip>>>;
|
|
1141
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1142
|
+
}, z.core.$strip>;
|
|
1143
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1144
|
+
}, z.core.$strip>]>>>;
|
|
1145
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1154
1146
|
}, z.core.$strip>>;
|
|
1155
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1156
1147
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1157
1148
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1158
1149
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1183,20 +1174,7 @@ export declare const Tempo: {
|
|
|
1183
1174
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1184
1175
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1185
1176
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1186
|
-
}, z.core.$strip>, z.
|
|
1187
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1188
|
-
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[]>>>;
|
|
1189
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1190
|
-
init: z.ZodMiniObject<{
|
|
1191
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1192
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1193
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1194
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1195
|
-
weight: z.ZodMiniNumber<number>;
|
|
1196
|
-
}, z.core.$strip>>>;
|
|
1197
|
-
}, z.core.$strip>;
|
|
1198
|
-
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>]>]>>;
|
|
1177
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
1200
1178
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1201
1179
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1202
1180
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1255,14 +1233,15 @@ export declare const Tempo: {
|
|
|
1255
1233
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1256
1234
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1257
1235
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1258
|
-
|
|
1259
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1260
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1236
|
+
config: z.ZodMiniObject<{
|
|
1261
1237
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1262
1238
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1263
1239
|
weight: z.ZodMiniNumber<number>;
|
|
1264
1240
|
}, z.core.$strip>>>;
|
|
1265
|
-
|
|
1241
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1242
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1243
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1244
|
+
}, z.core.$strip>;
|
|
1266
1245
|
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
1246
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1268
1247
|
}, z.core.$strip>]>;
|
|
@@ -1341,14 +1320,15 @@ export declare const Tempo: {
|
|
|
1341
1320
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1342
1321
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1343
1322
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1344
|
-
|
|
1345
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1346
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1323
|
+
config: z.ZodMiniObject<{
|
|
1347
1324
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1348
1325
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1349
1326
|
weight: z.ZodMiniNumber<number>;
|
|
1350
1327
|
}, z.core.$strip>>>;
|
|
1351
|
-
|
|
1328
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1329
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1330
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1331
|
+
}, z.core.$strip>;
|
|
1352
1332
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1353
1333
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1354
1334
|
}, z.core.$strip>]>;
|
|
@@ -1404,14 +1384,15 @@ export declare const Tempo: {
|
|
|
1404
1384
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1405
1385
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1406
1386
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1407
|
-
|
|
1408
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1409
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1387
|
+
config: z.ZodMiniObject<{
|
|
1410
1388
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1411
1389
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1412
1390
|
weight: z.ZodMiniNumber<number>;
|
|
1413
1391
|
}, z.core.$strip>>>;
|
|
1414
|
-
|
|
1392
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1393
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1394
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1395
|
+
}, z.core.$strip>;
|
|
1415
1396
|
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
1397
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1417
1398
|
}, z.core.$strip>]>;
|
|
@@ -1424,15 +1405,43 @@ export declare const Tempo: {
|
|
|
1424
1405
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1425
1406
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1426
1407
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1408
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1409
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1410
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1411
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1412
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1431
1413
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1432
|
-
|
|
1433
|
-
}, z.core.$strip
|
|
1414
|
+
type: z.ZodMiniLiteral<"primitive">;
|
|
1415
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1416
|
+
spec: z.ZodMiniObject<{
|
|
1417
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1418
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1419
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1420
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1421
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1422
|
+
}, z.core.$strip>>>;
|
|
1423
|
+
config: z.ZodMiniObject<{
|
|
1424
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1425
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1426
|
+
weight: z.ZodMiniNumber<number>;
|
|
1427
|
+
}, z.core.$strip>>>;
|
|
1428
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1429
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1430
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1431
|
+
}, z.core.$strip>;
|
|
1432
|
+
}, z.core.$strip>;
|
|
1433
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1434
|
+
}, z.core.$strip>]>>>;
|
|
1435
|
+
config: z.ZodMiniObject<{
|
|
1436
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1437
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1438
|
+
weight: z.ZodMiniNumber<number>;
|
|
1439
|
+
}, z.core.$strip>>>;
|
|
1440
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1441
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1442
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1443
|
+
}, z.core.$strip>;
|
|
1434
1444
|
}, z.core.$strip>>;
|
|
1435
|
-
multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1436
1445
|
nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1437
1446
|
nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBigInt<bigint>, z.ZodMiniLiteral<"random">]>>;
|
|
1438
1447
|
r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1479,14 +1488,15 @@ export declare const Tempo: {
|
|
|
1479
1488
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1480
1489
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1481
1490
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1482
|
-
|
|
1483
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1484
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1491
|
+
config: z.ZodMiniObject<{
|
|
1485
1492
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1486
1493
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1487
1494
|
weight: z.ZodMiniNumber<number>;
|
|
1488
1495
|
}, z.core.$strip>>>;
|
|
1489
|
-
|
|
1496
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1497
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1498
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1499
|
+
}, z.core.$strip>;
|
|
1490
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>>>;
|
|
1491
1501
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1492
1502
|
}, z.core.$strip>]>>;
|
|
@@ -1987,4 +1997,378 @@ export declare const Tempo: {
|
|
|
1987
1997
|
}, z.core.$strip>>;
|
|
1988
1998
|
}, z.core.$strip>>;
|
|
1989
1999
|
};
|
|
2000
|
+
/** Schema for the `multisig_approveKeyAuthorization` JSON-RPC method. */
|
|
2001
|
+
export declare const multisig_approveKeyAuthorization: import("../internal/rpcSchemas/from.js").Item<"multisig_approveKeyAuthorization", z.ZodMiniTuple<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2002
|
+
keyAuthorization: z.ZodMiniObject<{
|
|
2003
|
+
account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2004
|
+
allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2005
|
+
selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2006
|
+
recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
|
|
2007
|
+
selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2008
|
+
}, z.core.$strip>>>>>;
|
|
2009
|
+
target: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2010
|
+
}, z.core.$strip>>>>>;
|
|
2011
|
+
chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2012
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2013
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
2014
|
+
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2015
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2016
|
+
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2017
|
+
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2018
|
+
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2019
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2020
|
+
}, z.core.$strip>>>>>;
|
|
2021
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2022
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2023
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2024
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2025
|
+
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2026
|
+
yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2027
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2028
|
+
preHash: z.ZodMiniBoolean<boolean>;
|
|
2029
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2030
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2031
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2032
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2033
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2034
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2035
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2036
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2037
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2038
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2039
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2040
|
+
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2041
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
2042
|
+
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2043
|
+
}, z.core.$strip>;
|
|
2044
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2045
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2046
|
+
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2047
|
+
}, z.core.$strip>]>], null>, z.ZodMiniObject<{
|
|
2048
|
+
keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2049
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
|
|
2050
|
+
type: z.ZodMiniLiteral<"keyAuthorization">;
|
|
2051
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2052
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2053
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2054
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2055
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2056
|
+
weight: z.ZodMiniNumber<number>;
|
|
2057
|
+
}, z.core.$strip>>>;
|
|
2058
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2059
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2060
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2061
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2062
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2063
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2064
|
+
weight: z.ZodMiniNumber<number>;
|
|
2065
|
+
}, z.core.$strip>>>;
|
|
2066
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2067
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2068
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2069
|
+
}, z.core.$strip>>;
|
|
2070
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2071
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2072
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2073
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2074
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2075
|
+
weight: z.ZodMiniNumber<number>;
|
|
2076
|
+
}, z.core.$strip>>;
|
|
2077
|
+
/** Schema for the `multisig_approveRawTransaction` JSON-RPC method. */
|
|
2078
|
+
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}`>>;
|
|
2079
|
+
/** Schema for the `multisig_approveRawTransactionSync` JSON-RPC method. */
|
|
2080
|
+
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<{
|
|
2081
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2082
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
2083
|
+
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2084
|
+
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2085
|
+
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2086
|
+
type: z.ZodMiniLiteral<"transaction">;
|
|
2087
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2088
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2089
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2090
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2091
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2092
|
+
weight: z.ZodMiniNumber<number>;
|
|
2093
|
+
}, z.core.$strip>>>;
|
|
2094
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2095
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2096
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2097
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2098
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2099
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2100
|
+
weight: z.ZodMiniNumber<number>;
|
|
2101
|
+
}, z.core.$strip>>>;
|
|
2102
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2103
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2104
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2105
|
+
}, z.core.$strip>>;
|
|
2106
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2107
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2108
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2109
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2110
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2111
|
+
weight: z.ZodMiniNumber<number>;
|
|
2112
|
+
}, z.core.$strip>>;
|
|
2113
|
+
/** Schema for the `multisig_getConfig` JSON-RPC method. */
|
|
2114
|
+
export declare const multisig_getConfig: import("../internal/rpcSchemas/from.js").Item<"multisig_getConfig", z.ZodMiniTuple<readonly [z.ZodMiniObject<{
|
|
2115
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2116
|
+
}, z.core.$strip>], null>, z.ZodMiniNullable<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>>>;
|
|
2125
|
+
/** Schema for the `multisig_getOperation` JSON-RPC method. */
|
|
2126
|
+
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<{
|
|
2127
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2128
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
2129
|
+
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2130
|
+
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2131
|
+
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2132
|
+
type: z.ZodMiniLiteral<"transaction">;
|
|
2133
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2134
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2135
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2136
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2137
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2138
|
+
weight: z.ZodMiniNumber<number>;
|
|
2139
|
+
}, z.core.$strip>>>;
|
|
2140
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2141
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2142
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2143
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2144
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2145
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2146
|
+
weight: z.ZodMiniNumber<number>;
|
|
2147
|
+
}, z.core.$strip>>>;
|
|
2148
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2149
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2150
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2151
|
+
}, z.core.$strip>>;
|
|
2152
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2153
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2154
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2155
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2156
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2157
|
+
weight: z.ZodMiniNumber<number>;
|
|
2158
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2159
|
+
keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2160
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
|
|
2161
|
+
type: z.ZodMiniLiteral<"keyAuthorization">;
|
|
2162
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2163
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2164
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2165
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2166
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2167
|
+
weight: z.ZodMiniNumber<number>;
|
|
2168
|
+
}, z.core.$strip>>>;
|
|
2169
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2170
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2171
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2172
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2173
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2174
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2175
|
+
weight: z.ZodMiniNumber<number>;
|
|
2176
|
+
}, z.core.$strip>>>;
|
|
2177
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2178
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2179
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2180
|
+
}, z.core.$strip>>;
|
|
2181
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2182
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2183
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2184
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2185
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2186
|
+
weight: z.ZodMiniNumber<number>;
|
|
2187
|
+
}, z.core.$strip>]>>>;
|
|
2188
|
+
/** JSON-RPC method schemas for the `multisig_` namespace. */
|
|
2189
|
+
export declare const Multisig: {
|
|
2190
|
+
multisig_approveKeyAuthorization: import("../internal/rpcSchemas/from.js").Item<"multisig_approveKeyAuthorization", z.ZodMiniTuple<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2191
|
+
keyAuthorization: z.ZodMiniObject<{
|
|
2192
|
+
account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2193
|
+
allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2194
|
+
selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2195
|
+
recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
|
|
2196
|
+
selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2197
|
+
}, z.core.$strip>>>>>;
|
|
2198
|
+
target: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2199
|
+
}, z.core.$strip>>>>>;
|
|
2200
|
+
chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2201
|
+
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2202
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
2203
|
+
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2204
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2205
|
+
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2206
|
+
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2207
|
+
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2208
|
+
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2209
|
+
}, z.core.$strip>>>>>;
|
|
2210
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2211
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2212
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2213
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
2214
|
+
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2215
|
+
yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2216
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2217
|
+
preHash: z.ZodMiniBoolean<boolean>;
|
|
2218
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2219
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2220
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2221
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2222
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
2223
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2224
|
+
pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2225
|
+
pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2226
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2227
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2228
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2229
|
+
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2230
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
2231
|
+
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2232
|
+
}, z.core.$strip>;
|
|
2233
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2234
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2235
|
+
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2236
|
+
}, z.core.$strip>]>], null>, z.ZodMiniObject<{
|
|
2237
|
+
keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2238
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
|
|
2239
|
+
type: z.ZodMiniLiteral<"keyAuthorization">;
|
|
2240
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2241
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2242
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2243
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2244
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2245
|
+
weight: z.ZodMiniNumber<number>;
|
|
2246
|
+
}, z.core.$strip>>>;
|
|
2247
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2248
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2249
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2250
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2251
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2252
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2253
|
+
weight: z.ZodMiniNumber<number>;
|
|
2254
|
+
}, z.core.$strip>>>;
|
|
2255
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2256
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2257
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2258
|
+
}, z.core.$strip>>;
|
|
2259
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2260
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2261
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2262
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2263
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2264
|
+
weight: z.ZodMiniNumber<number>;
|
|
2265
|
+
}, z.core.$strip>>;
|
|
2266
|
+
multisig_approveRawTransaction: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransaction", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2267
|
+
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<{
|
|
2268
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2269
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
2270
|
+
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2271
|
+
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2272
|
+
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2273
|
+
type: z.ZodMiniLiteral<"transaction">;
|
|
2274
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2275
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2276
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2277
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2278
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2279
|
+
weight: z.ZodMiniNumber<number>;
|
|
2280
|
+
}, z.core.$strip>>>;
|
|
2281
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2282
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2283
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2284
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2285
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2286
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2287
|
+
weight: z.ZodMiniNumber<number>;
|
|
2288
|
+
}, z.core.$strip>>>;
|
|
2289
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2290
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2291
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2292
|
+
}, z.core.$strip>>;
|
|
2293
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2294
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
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
|
+
multisig_getConfig: import("../internal/rpcSchemas/from.js").Item<"multisig_getConfig", z.ZodMiniTuple<readonly [z.ZodMiniObject<{
|
|
2301
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2302
|
+
}, z.core.$strip>], null>, z.ZodMiniNullable<z.ZodMiniObject<{
|
|
2303
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2304
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2305
|
+
weight: z.ZodMiniNumber<number>;
|
|
2306
|
+
}, z.core.$strip>>>;
|
|
2307
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2308
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2309
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2310
|
+
}, z.core.$strip>>>;
|
|
2311
|
+
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<{
|
|
2312
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2313
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
2314
|
+
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2315
|
+
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2316
|
+
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2317
|
+
type: z.ZodMiniLiteral<"transaction">;
|
|
2318
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2319
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2320
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2321
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2322
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2323
|
+
weight: z.ZodMiniNumber<number>;
|
|
2324
|
+
}, z.core.$strip>>>;
|
|
2325
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2326
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2327
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2328
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2329
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2330
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2331
|
+
weight: z.ZodMiniNumber<number>;
|
|
2332
|
+
}, z.core.$strip>>>;
|
|
2333
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2334
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2335
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2336
|
+
}, z.core.$strip>>;
|
|
2337
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2338
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2339
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2340
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2341
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2342
|
+
weight: z.ZodMiniNumber<number>;
|
|
2343
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2344
|
+
keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2345
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
|
|
2346
|
+
type: z.ZodMiniLiteral<"keyAuthorization">;
|
|
2347
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2348
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2349
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2350
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2351
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2352
|
+
weight: z.ZodMiniNumber<number>;
|
|
2353
|
+
}, z.core.$strip>>>;
|
|
2354
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2355
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2356
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2357
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2358
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2359
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2360
|
+
weight: z.ZodMiniNumber<number>;
|
|
2361
|
+
}, z.core.$strip>>>;
|
|
2362
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2363
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2364
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2365
|
+
}, z.core.$strip>>;
|
|
2366
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2367
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2368
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2369
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2370
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2371
|
+
weight: z.ZodMiniNumber<number>;
|
|
2372
|
+
}, z.core.$strip>]>>>;
|
|
2373
|
+
};
|
|
1990
2374
|
//# sourceMappingURL=RpcSchemaTempo.d.ts.map
|