ox 1.7.2 → 1.7.5
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 +43 -0
- package/dist/core/AbiEvent.d.ts.map +1 -1
- package/dist/core/AbiEvent.js +10 -9
- package/dist/core/AbiEvent.js.map +1 -1
- package/dist/core/Blobs.d.ts.map +1 -1
- package/dist/core/Blobs.js +6 -2
- package/dist/core/Blobs.js.map +1 -1
- package/dist/core/Signature.d.ts +6 -5
- package/dist/core/Signature.d.ts.map +1 -1
- package/dist/core/Signature.js +17 -7
- package/dist/core/Signature.js.map +1 -1
- package/dist/core/Siwe.d.ts.map +1 -1
- package/dist/core/Siwe.js +21 -1
- package/dist/core/Siwe.js.map +1 -1
- package/dist/tempo/KeyAuthorization.d.ts +43 -39
- package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/tempo/KeyAuthorization.js +24 -4
- package/dist/tempo/KeyAuthorization.js.map +1 -1
- package/dist/tempo/MultisigConfig.d.ts +18 -15
- package/dist/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.js +49 -20
- package/dist/tempo/MultisigConfig.js.map +1 -1
- package/dist/tempo/MultisigOperation.d.ts +45 -28
- package/dist/tempo/MultisigOperation.d.ts.map +1 -1
- package/dist/tempo/MultisigOperation.js +81 -131
- package/dist/tempo/MultisigOperation.js.map +1 -1
- package/dist/tempo/MultisigSimulation.d.ts +85 -0
- package/dist/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/tempo/MultisigSimulation.js +112 -0
- package/dist/tempo/MultisigSimulation.js.map +1 -0
- package/dist/tempo/RpcSchemaTempo.d.ts +20 -10
- package/dist/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +74 -153
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +130 -187
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/tempo/TransactionRequest.d.ts +9 -7
- package/dist/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/tempo/TransactionRequest.js +12 -7
- package/dist/tempo/TransactionRequest.js.map +1 -1
- package/dist/tempo/index.d.ts +7 -5
- package/dist/tempo/index.d.ts.map +1 -1
- package/dist/tempo/index.js +7 -5
- package/dist/tempo/index.js.map +1 -1
- package/dist/zod/tempo/AuthorizationTempo.d.ts +360 -140
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +247 -487
- package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.js +29 -31
- package/dist/zod/tempo/KeyAuthorization.js.map +1 -1
- package/dist/zod/tempo/MultisigOperation.d.ts +0 -10
- package/dist/zod/tempo/MultisigOperation.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigOperation.js +0 -3
- package/dist/zod/tempo/MultisigOperation.js.map +1 -1
- package/dist/zod/tempo/MultisigSimulation.d.ts +52 -0
- package/dist/zod/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigSimulation.js +44 -0
- package/dist/zod/tempo/MultisigSimulation.js.map +1 -0
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +357 -422
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.js +19 -10
- package/dist/zod/tempo/RpcSchemaTempo.js.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.d.ts +108 -42
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +21 -19
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +678 -666
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +580 -619
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.js +18 -10
- package/dist/zod/tempo/TransactionRequest.js.map +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts +327 -213
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts +105 -3
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts.map +1 -1
- package/dist/zod/tempo/z.d.ts +1 -1
- package/dist/zod/tempo/z.d.ts.map +1 -1
- package/dist/zod/tempo/z.js +1 -1
- package/dist/zod/tempo/z.js.map +1 -1
- package/package.json +9 -9
- package/src/core/AbiEvent.ts +11 -9
- package/src/core/Blobs.ts +6 -2
- package/src/core/Signature.ts +41 -11
- package/src/core/Siwe.ts +20 -1
- package/src/core/_test/AbiEvent.test.ts +45 -0
- package/src/core/_test/Blobs.test.ts +22 -0
- package/src/core/_test/Signature.test.ts +166 -0
- package/src/core/_test/Siwe.test.ts +100 -1
- package/src/tempo/AuthorizationTempo.test.ts +8 -0
- package/src/tempo/KeyAuthorization.test-d.ts +16 -74
- package/src/tempo/KeyAuthorization.test.ts +113 -14
- package/src/tempo/KeyAuthorization.ts +110 -66
- package/src/tempo/MultisigConfig.test.ts +44 -20
- package/src/tempo/MultisigConfig.ts +65 -23
- package/src/tempo/MultisigOperation.test-d.ts +8 -6
- package/src/tempo/MultisigOperation.test.ts +187 -591
- package/src/tempo/MultisigOperation.ts +129 -205
- package/src/tempo/MultisigSimulation.test-d.ts +33 -0
- package/src/tempo/MultisigSimulation.test.ts +194 -0
- package/src/tempo/MultisigSimulation.ts +192 -0
- package/src/tempo/RpcSchemaTempo.test-d.ts +45 -10
- package/src/tempo/RpcSchemaTempo.ts +15 -6
- package/src/tempo/SignatureEnvelope.test-d.ts +27 -101
- package/src/tempo/SignatureEnvelope.test.ts +330 -533
- package/src/tempo/SignatureEnvelope.ts +198 -310
- package/src/tempo/Transaction.test.ts +61 -0
- package/src/tempo/TransactionRequest.test-d.ts +7 -7
- package/src/tempo/TransactionRequest.test.ts +81 -223
- package/src/tempo/TransactionRequest.ts +34 -13
- package/src/tempo/index.ts +7 -5
- package/src/tempo/multisig.e2e.test.ts +329 -818
- package/src/version.ts +1 -1
- package/src/zod/tempo/KeyAuthorization.ts +50 -39
- package/src/zod/tempo/MultisigOperation.ts +0 -3
- package/src/zod/tempo/MultisigSimulation.ts +53 -0
- package/src/zod/tempo/RpcSchemaTempo.ts +20 -10
- package/src/zod/tempo/SignatureEnvelope.ts +46 -59
- package/src/zod/tempo/TransactionRequest.ts +28 -14
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +66 -30
- package/src/zod/tempo/_test/MultisigOperation.test.ts +0 -2
- package/src/zod/tempo/_test/MultisigSimulation.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigSimulation.test.ts +53 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test-d.ts +19 -2
- package/src/zod/tempo/_test/RpcSchemaTempo.test.ts +46 -4
- package/src/zod/tempo/_test/SignatureEnvelope.test.ts +108 -129
- package/src/zod/tempo/_test/TransactionRequest.test.ts +17 -168
- package/src/zod/tempo/z.ts +1 -1
- package/dist/tempo/MultisigWitness.d.ts +0 -106
- package/dist/tempo/MultisigWitness.d.ts.map +0 -1
- package/dist/tempo/MultisigWitness.js +0 -118
- package/dist/tempo/MultisigWitness.js.map +0 -1
- package/dist/zod/tempo/MultisigWitness.d.ts +0 -152
- package/dist/zod/tempo/MultisigWitness.d.ts.map +0 -1
- package/dist/zod/tempo/MultisigWitness.js +0 -76
- package/dist/zod/tempo/MultisigWitness.js.map +0 -1
- package/src/tempo/MultisigWitness.test-d.ts +0 -42
- package/src/tempo/MultisigWitness.test.ts +0 -288
- package/src/tempo/MultisigWitness.ts +0 -210
- package/src/zod/tempo/MultisigWitness.ts +0 -101
- package/src/zod/tempo/_test/MultisigWitness.test-d.ts +0 -13
- package/src/zod/tempo/_test/MultisigWitness.test.ts +0 -149
|
@@ -52,19 +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
|
-
config: z.ZodMiniObject<{
|
|
58
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
59
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
60
|
-
weight: z.ZodMiniNumber<number>;
|
|
61
|
-
}, z.core.$strip>>>;
|
|
62
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
63
|
-
threshold: z.ZodMiniNumber<number>;
|
|
64
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
65
|
-
}, z.core.$strip>;
|
|
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[]>>>;
|
|
67
|
-
}, z.core.$strict>]>;
|
|
55
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
68
56
|
}, z.core.$strip>>>>;
|
|
69
57
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
70
58
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -101,7 +89,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
101
89
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
102
90
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
103
91
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
104
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
92
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
105
93
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
106
94
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
107
95
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -127,63 +115,30 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
127
115
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
128
116
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
129
117
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
130
|
-
}, z.core.$strip>]>, z.
|
|
131
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
132
|
-
config: z.ZodMiniObject<{
|
|
133
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
134
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
135
|
-
weight: z.ZodMiniNumber<number>;
|
|
136
|
-
}, z.core.$strip>>>;
|
|
137
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
138
|
-
threshold: z.ZodMiniNumber<number>;
|
|
139
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
140
|
-
}, z.core.$strip>;
|
|
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[]>>>;
|
|
142
|
-
}, z.core.$strict>]>;
|
|
118
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
143
119
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
144
120
|
}, z.core.$strip>>;
|
|
145
121
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
146
122
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
147
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
123
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
148
124
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
149
125
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
150
126
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
127
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
128
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
154
129
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
155
130
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
156
131
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
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>;
|
|
132
|
+
}, z.core.$strict>>>;
|
|
133
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
134
|
+
}, z.core.$strip>>;
|
|
135
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
136
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
137
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
138
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
139
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
140
|
+
}, z.core.$strict>>>;
|
|
141
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
187
142
|
}, z.core.$strip>>;
|
|
188
143
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
189
144
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -215,19 +170,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
215
170
|
type: z.ZodMiniLiteral<"keychain">;
|
|
216
171
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
217
172
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
218
|
-
}, z.core.$strip>, z.
|
|
219
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
220
|
-
config: z.ZodMiniObject<{
|
|
221
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
222
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
223
|
-
weight: z.ZodMiniNumber<number>;
|
|
224
|
-
}, z.core.$strip>>>;
|
|
225
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
226
|
-
threshold: z.ZodMiniNumber<number>;
|
|
227
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
228
|
-
}, z.core.$strip>;
|
|
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[]>>>;
|
|
230
|
-
}, z.core.$strict>]>>;
|
|
173
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
231
174
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
232
175
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
233
176
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -295,7 +238,41 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
295
238
|
threshold: z.ZodMiniNumber<number>;
|
|
296
239
|
version: z.ZodMiniBigInt<bigint>;
|
|
297
240
|
}, z.core.$strip>;
|
|
298
|
-
signatures: z.
|
|
241
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
242
|
+
signature: z.ZodMiniObject<{
|
|
243
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
244
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
245
|
+
yParity: z.ZodMiniNumber<number>;
|
|
246
|
+
}, z.core.$strip>;
|
|
247
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
248
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
249
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
250
|
+
publicKey: z.ZodMiniObject<{
|
|
251
|
+
prefix: z.ZodMiniNumber<number>;
|
|
252
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
253
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
254
|
+
}, z.core.$strip>;
|
|
255
|
+
signature: z.ZodMiniObject<{
|
|
256
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
257
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
258
|
+
}, z.core.$strip>;
|
|
259
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
260
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
261
|
+
metadata: z.ZodMiniObject<{
|
|
262
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
263
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
264
|
+
}, z.core.$strip>;
|
|
265
|
+
publicKey: z.ZodMiniObject<{
|
|
266
|
+
prefix: z.ZodMiniNumber<number>;
|
|
267
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
268
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
269
|
+
}, z.core.$strip>;
|
|
270
|
+
signature: z.ZodMiniObject<{
|
|
271
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
272
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
273
|
+
}, z.core.$strip>;
|
|
274
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
275
|
+
}, z.core.$strip>]>>>;
|
|
299
276
|
type: z.ZodMiniLiteral<"multisig">;
|
|
300
277
|
}, z.core.$strip>]>;
|
|
301
278
|
}, z.core.$strip>>>>;
|
|
@@ -321,73 +298,9 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
321
298
|
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
322
299
|
gasPrice: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
323
300
|
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
324
|
-
keyAuthorization: z.ZodMiniOptional<z.
|
|
325
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}
|
|
326
|
-
isAdmin: z.ZodMiniBoolean<boolean
|
|
327
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
328
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
329
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
330
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
331
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
332
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
333
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
334
|
-
}, z.core.$strip>>>>;
|
|
335
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
336
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
337
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
338
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
339
|
-
}, z.core.$strip>>>>;
|
|
340
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
341
|
-
signature: z.ZodMiniObject<{
|
|
342
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
343
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
344
|
-
yParity: z.ZodMiniNumber<number>;
|
|
345
|
-
}, z.core.$strip>;
|
|
346
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
347
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
348
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
349
|
-
publicKey: z.ZodMiniObject<{
|
|
350
|
-
prefix: z.ZodMiniNumber<number>;
|
|
351
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
352
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
353
|
-
}, z.core.$strip>;
|
|
354
|
-
signature: z.ZodMiniObject<{
|
|
355
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
356
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
357
|
-
}, z.core.$strip>;
|
|
358
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
359
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
360
|
-
metadata: z.ZodMiniObject<{
|
|
361
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
362
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
363
|
-
}, z.core.$strip>;
|
|
364
|
-
publicKey: z.ZodMiniObject<{
|
|
365
|
-
prefix: z.ZodMiniNumber<number>;
|
|
366
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
367
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
368
|
-
}, z.core.$strip>;
|
|
369
|
-
signature: z.ZodMiniObject<{
|
|
370
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
371
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
372
|
-
}, z.core.$strip>;
|
|
373
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
374
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
375
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
376
|
-
config: z.ZodMiniObject<{
|
|
377
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
378
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
379
|
-
weight: z.ZodMiniNumber<number>;
|
|
380
|
-
}, z.core.$strip>>>;
|
|
381
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
382
|
-
threshold: z.ZodMiniNumber<number>;
|
|
383
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
384
|
-
}, z.core.$strip>;
|
|
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>>>;
|
|
386
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
387
|
-
}, z.core.$strip>]>;
|
|
388
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
389
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
390
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
301
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
302
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
303
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
391
304
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
392
305
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
393
306
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -446,45 +359,74 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
446
359
|
threshold: z.ZodMiniNumber<number>;
|
|
447
360
|
version: z.ZodMiniBigInt<bigint>;
|
|
448
361
|
}, z.core.$strip>;
|
|
449
|
-
signatures: z.
|
|
362
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
363
|
+
signature: z.ZodMiniObject<{
|
|
364
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
365
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
366
|
+
yParity: z.ZodMiniNumber<number>;
|
|
367
|
+
}, z.core.$strip>;
|
|
368
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
369
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
370
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
371
|
+
publicKey: z.ZodMiniObject<{
|
|
372
|
+
prefix: z.ZodMiniNumber<number>;
|
|
373
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
374
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
375
|
+
}, z.core.$strip>;
|
|
376
|
+
signature: z.ZodMiniObject<{
|
|
377
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
378
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
379
|
+
}, z.core.$strip>;
|
|
380
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
381
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
382
|
+
metadata: z.ZodMiniObject<{
|
|
383
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
384
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
385
|
+
}, z.core.$strip>;
|
|
386
|
+
publicKey: z.ZodMiniObject<{
|
|
387
|
+
prefix: z.ZodMiniNumber<number>;
|
|
388
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
389
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
390
|
+
}, z.core.$strip>;
|
|
391
|
+
signature: z.ZodMiniObject<{
|
|
392
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
393
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
394
|
+
}, z.core.$strip>;
|
|
395
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
396
|
+
}, z.core.$strip>]>>>;
|
|
450
397
|
type: z.ZodMiniLiteral<"multisig">;
|
|
451
398
|
}, z.core.$strip>]>;
|
|
452
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
399
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
453
400
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
454
|
-
}, z.core.$strip
|
|
401
|
+
}, z.core.$strip>>;
|
|
455
402
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
456
403
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
457
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
404
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
458
405
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
459
406
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
460
407
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
408
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
409
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
464
410
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
465
411
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
466
412
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
485
|
-
}, z.core.$strip>;
|
|
486
|
-
}, z.core.$strip>;
|
|
487
|
-
}, z.core.$strip>]>>>;
|
|
413
|
+
}, z.core.$strict>>>;
|
|
414
|
+
config: z.ZodMiniObject<{
|
|
415
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
416
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
417
|
+
weight: z.ZodMiniNumber<number>;
|
|
418
|
+
}, z.core.$strip>>>;
|
|
419
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
420
|
+
threshold: z.ZodMiniNumber<number>;
|
|
421
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
422
|
+
}, z.core.$strip>;
|
|
423
|
+
}, z.core.$strip>>;
|
|
424
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
425
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
426
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
427
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
428
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
429
|
+
}, z.core.$strict>>>;
|
|
488
430
|
config: z.ZodMiniObject<{
|
|
489
431
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
490
432
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -550,7 +492,41 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
550
492
|
threshold: z.ZodMiniNumber<number>;
|
|
551
493
|
version: z.ZodMiniBigInt<bigint>;
|
|
552
494
|
}, z.core.$strip>;
|
|
553
|
-
signatures: z.
|
|
495
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
496
|
+
signature: z.ZodMiniObject<{
|
|
497
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
498
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
499
|
+
yParity: z.ZodMiniNumber<number>;
|
|
500
|
+
}, z.core.$strip>;
|
|
501
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
502
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
503
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
504
|
+
publicKey: z.ZodMiniObject<{
|
|
505
|
+
prefix: z.ZodMiniNumber<number>;
|
|
506
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
507
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
508
|
+
}, z.core.$strip>;
|
|
509
|
+
signature: z.ZodMiniObject<{
|
|
510
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
511
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
512
|
+
}, z.core.$strip>;
|
|
513
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
514
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
515
|
+
metadata: z.ZodMiniObject<{
|
|
516
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
517
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
518
|
+
}, z.core.$strip>;
|
|
519
|
+
publicKey: z.ZodMiniObject<{
|
|
520
|
+
prefix: z.ZodMiniNumber<number>;
|
|
521
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
522
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
523
|
+
}, z.core.$strip>;
|
|
524
|
+
signature: z.ZodMiniObject<{
|
|
525
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
526
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
527
|
+
}, z.core.$strip>;
|
|
528
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
529
|
+
}, z.core.$strip>]>>>;
|
|
554
530
|
type: z.ZodMiniLiteral<"multisig">;
|
|
555
531
|
}, z.core.$strip>]>>;
|
|
556
532
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
@@ -1103,19 +1079,7 @@ export declare const Tempo: {
|
|
|
1103
1079
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1104
1080
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1105
1081
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1106
|
-
}, z.core.$strip>, z.
|
|
1107
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1108
|
-
config: z.ZodMiniObject<{
|
|
1109
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1110
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1111
|
-
weight: z.ZodMiniNumber<number>;
|
|
1112
|
-
}, z.core.$strip>>>;
|
|
1113
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1114
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1115
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1116
|
-
}, z.core.$strip>;
|
|
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[]>>>;
|
|
1118
|
-
}, z.core.$strict>]>;
|
|
1082
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1119
1083
|
}, z.core.$strip>>>>;
|
|
1120
1084
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1121
1085
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -1152,7 +1116,7 @@ export declare const Tempo: {
|
|
|
1152
1116
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1153
1117
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
1154
1118
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1155
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1119
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1156
1120
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1157
1121
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1158
1122
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -1178,63 +1142,30 @@ export declare const Tempo: {
|
|
|
1178
1142
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1179
1143
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1180
1144
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1181
|
-
}, z.core.$strip>]>, z.
|
|
1182
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1183
|
-
config: z.ZodMiniObject<{
|
|
1184
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1185
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1186
|
-
weight: z.ZodMiniNumber<number>;
|
|
1187
|
-
}, z.core.$strip>>>;
|
|
1188
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1189
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1190
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1191
|
-
}, z.core.$strip>;
|
|
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[]>>>;
|
|
1193
|
-
}, z.core.$strict>]>;
|
|
1145
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1194
1146
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1195
1147
|
}, z.core.$strip>>;
|
|
1196
1148
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1197
1149
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1198
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1150
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
1199
1151
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1200
1152
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1201
1153
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1154
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1155
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1156
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1157
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1158
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1159
|
+
}, z.core.$strict>>>;
|
|
1160
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1161
|
+
}, z.core.$strip>>;
|
|
1162
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1163
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1205
1164
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1206
1165
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1207
1166
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1208
|
-
|
|
1209
|
-
|
|
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>;
|
|
1167
|
+
}, z.core.$strict>>>;
|
|
1168
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1238
1169
|
}, z.core.$strip>>;
|
|
1239
1170
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1240
1171
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1266,19 +1197,7 @@ export declare const Tempo: {
|
|
|
1266
1197
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1267
1198
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1268
1199
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1269
|
-
}, z.core.$strip>, z.
|
|
1270
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1271
|
-
config: z.ZodMiniObject<{
|
|
1272
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1273
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1274
|
-
weight: z.ZodMiniNumber<number>;
|
|
1275
|
-
}, z.core.$strip>>>;
|
|
1276
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1277
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1278
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1279
|
-
}, z.core.$strip>;
|
|
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[]>>>;
|
|
1281
|
-
}, z.core.$strict>]>>;
|
|
1200
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
1282
1201
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1283
1202
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1284
1203
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1346,7 +1265,41 @@ export declare const Tempo: {
|
|
|
1346
1265
|
threshold: z.ZodMiniNumber<number>;
|
|
1347
1266
|
version: z.ZodMiniBigInt<bigint>;
|
|
1348
1267
|
}, z.core.$strip>;
|
|
1349
|
-
signatures: z.
|
|
1268
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1269
|
+
signature: z.ZodMiniObject<{
|
|
1270
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1271
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1272
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1273
|
+
}, z.core.$strip>;
|
|
1274
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1275
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1276
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1277
|
+
publicKey: z.ZodMiniObject<{
|
|
1278
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1279
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1280
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1281
|
+
}, z.core.$strip>;
|
|
1282
|
+
signature: z.ZodMiniObject<{
|
|
1283
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1284
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1285
|
+
}, z.core.$strip>;
|
|
1286
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1287
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1288
|
+
metadata: z.ZodMiniObject<{
|
|
1289
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1290
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1291
|
+
}, z.core.$strip>;
|
|
1292
|
+
publicKey: z.ZodMiniObject<{
|
|
1293
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1294
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1295
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1296
|
+
}, z.core.$strip>;
|
|
1297
|
+
signature: z.ZodMiniObject<{
|
|
1298
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1299
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1300
|
+
}, z.core.$strip>;
|
|
1301
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1302
|
+
}, z.core.$strip>]>>>;
|
|
1350
1303
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1351
1304
|
}, z.core.$strip>]>;
|
|
1352
1305
|
}, z.core.$strip>>>>;
|
|
@@ -1372,73 +1325,9 @@ export declare const Tempo: {
|
|
|
1372
1325
|
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1373
1326
|
gasPrice: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1374
1327
|
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1375
|
-
keyAuthorization: z.ZodMiniOptional<z.
|
|
1376
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}
|
|
1377
|
-
isAdmin: z.ZodMiniBoolean<boolean
|
|
1378
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1379
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
1380
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1381
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1382
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
1383
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1384
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1385
|
-
}, z.core.$strip>>>>;
|
|
1386
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1387
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1388
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1389
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1390
|
-
}, z.core.$strip>>>>;
|
|
1391
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1392
|
-
signature: z.ZodMiniObject<{
|
|
1393
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1394
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1395
|
-
yParity: z.ZodMiniNumber<number>;
|
|
1396
|
-
}, z.core.$strip>;
|
|
1397
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1398
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1399
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
1400
|
-
publicKey: z.ZodMiniObject<{
|
|
1401
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1402
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1403
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1404
|
-
}, z.core.$strip>;
|
|
1405
|
-
signature: z.ZodMiniObject<{
|
|
1406
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1407
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1408
|
-
}, z.core.$strip>;
|
|
1409
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
1410
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1411
|
-
metadata: z.ZodMiniObject<{
|
|
1412
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1413
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
1414
|
-
}, z.core.$strip>;
|
|
1415
|
-
publicKey: z.ZodMiniObject<{
|
|
1416
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1417
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1418
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1419
|
-
}, z.core.$strip>;
|
|
1420
|
-
signature: z.ZodMiniObject<{
|
|
1421
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1422
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1423
|
-
}, z.core.$strip>;
|
|
1424
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1425
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1426
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1427
|
-
config: z.ZodMiniObject<{
|
|
1428
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1429
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1430
|
-
weight: z.ZodMiniNumber<number>;
|
|
1431
|
-
}, z.core.$strip>>>;
|
|
1432
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1433
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1434
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1435
|
-
}, z.core.$strip>;
|
|
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>>>;
|
|
1437
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1438
|
-
}, z.core.$strip>]>;
|
|
1439
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1440
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1441
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1328
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1329
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1330
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1442
1331
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1443
1332
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
1444
1333
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -1497,45 +1386,74 @@ export declare const Tempo: {
|
|
|
1497
1386
|
threshold: z.ZodMiniNumber<number>;
|
|
1498
1387
|
version: z.ZodMiniBigInt<bigint>;
|
|
1499
1388
|
}, z.core.$strip>;
|
|
1500
|
-
signatures: z.
|
|
1389
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1390
|
+
signature: z.ZodMiniObject<{
|
|
1391
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1392
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1393
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1394
|
+
}, z.core.$strip>;
|
|
1395
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1396
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1397
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1398
|
+
publicKey: z.ZodMiniObject<{
|
|
1399
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1400
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1401
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1402
|
+
}, z.core.$strip>;
|
|
1403
|
+
signature: z.ZodMiniObject<{
|
|
1404
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1405
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1406
|
+
}, z.core.$strip>;
|
|
1407
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1408
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1409
|
+
metadata: z.ZodMiniObject<{
|
|
1410
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1411
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1412
|
+
}, z.core.$strip>;
|
|
1413
|
+
publicKey: z.ZodMiniObject<{
|
|
1414
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1415
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1416
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1417
|
+
}, z.core.$strip>;
|
|
1418
|
+
signature: z.ZodMiniObject<{
|
|
1419
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1420
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1421
|
+
}, z.core.$strip>;
|
|
1422
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1423
|
+
}, z.core.$strip>]>>>;
|
|
1501
1424
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1502
1425
|
}, z.core.$strip>]>;
|
|
1503
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1426
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1504
1427
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1505
|
-
}, z.core.$strip
|
|
1428
|
+
}, z.core.$strip>>;
|
|
1506
1429
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1507
1430
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1508
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1431
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
1509
1432
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1510
1433
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1511
1434
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1435
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1436
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1515
1437
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1516
1438
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1517
1439
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1536
|
-
}, z.core.$strip>;
|
|
1537
|
-
}, z.core.$strip>;
|
|
1538
|
-
}, z.core.$strip>]>>>;
|
|
1440
|
+
}, z.core.$strict>>>;
|
|
1441
|
+
config: z.ZodMiniObject<{
|
|
1442
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1443
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1444
|
+
weight: z.ZodMiniNumber<number>;
|
|
1445
|
+
}, z.core.$strip>>>;
|
|
1446
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1447
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1448
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1449
|
+
}, z.core.$strip>;
|
|
1450
|
+
}, z.core.$strip>>;
|
|
1451
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1452
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1453
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1454
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1455
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1456
|
+
}, z.core.$strict>>>;
|
|
1539
1457
|
config: z.ZodMiniObject<{
|
|
1540
1458
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1541
1459
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1601,7 +1519,41 @@ export declare const Tempo: {
|
|
|
1601
1519
|
threshold: z.ZodMiniNumber<number>;
|
|
1602
1520
|
version: z.ZodMiniBigInt<bigint>;
|
|
1603
1521
|
}, z.core.$strip>;
|
|
1604
|
-
signatures: z.
|
|
1522
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1523
|
+
signature: z.ZodMiniObject<{
|
|
1524
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1525
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1526
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1527
|
+
}, z.core.$strip>;
|
|
1528
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1529
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1530
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1531
|
+
publicKey: z.ZodMiniObject<{
|
|
1532
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1533
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1534
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1535
|
+
}, z.core.$strip>;
|
|
1536
|
+
signature: z.ZodMiniObject<{
|
|
1537
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1538
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1539
|
+
}, z.core.$strip>;
|
|
1540
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1541
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1542
|
+
metadata: z.ZodMiniObject<{
|
|
1543
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1544
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1545
|
+
}, z.core.$strip>;
|
|
1546
|
+
publicKey: z.ZodMiniObject<{
|
|
1547
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1548
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1549
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1550
|
+
}, z.core.$strip>;
|
|
1551
|
+
signature: z.ZodMiniObject<{
|
|
1552
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1553
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1554
|
+
}, z.core.$strip>;
|
|
1555
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1556
|
+
}, z.core.$strip>]>>>;
|
|
1605
1557
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1606
1558
|
}, z.core.$strip>]>>;
|
|
1607
1559
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
@@ -2101,44 +2053,6 @@ export declare const Tempo: {
|
|
|
2101
2053
|
}, z.core.$strip>>;
|
|
2102
2054
|
}, z.core.$strip>>;
|
|
2103
2055
|
};
|
|
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
2056
|
/** Schema for the `multisig_approveKeyAuthorization` JSON-RPC method. */
|
|
2143
2057
|
export declare const multisig_approveKeyAuthorization: import("../internal/rpcSchemas/from.js").Item<"multisig_approveKeyAuthorization", z.ZodMiniTuple<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2144
2058
|
keyAuthorization: z.ZodMiniObject<{
|
|
@@ -2154,7 +2068,7 @@ export declare const multisig_approveKeyAuthorization: import("../internal/rpcSc
|
|
|
2154
2068
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2155
2069
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
2156
2070
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2157
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2071
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
2158
2072
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2159
2073
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2160
2074
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -2180,19 +2094,7 @@ export declare const multisig_approveKeyAuthorization: import("../internal/rpcSc
|
|
|
2180
2094
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2181
2095
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2182
2096
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2183
|
-
}, z.core.$strip>]>, z.
|
|
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>]>;
|
|
2097
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
2196
2098
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2197
2099
|
}, z.core.$strip>;
|
|
2198
2100
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
@@ -2221,15 +2123,61 @@ export declare const multisig_approveKeyAuthorization: import("../internal/rpcSc
|
|
|
2221
2123
|
threshold: z.ZodMiniNumber<number>;
|
|
2222
2124
|
version: z.ZodMiniBigInt<bigint>;
|
|
2223
2125
|
}, z.core.$strip>>;
|
|
2224
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2225
2126
|
createdAt: z.ZodMiniNumber<number>;
|
|
2226
2127
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2227
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2228
2128
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2229
2129
|
threshold: z.ZodMiniNumber<number>;
|
|
2230
2130
|
updatedAt: z.ZodMiniNumber<number>;
|
|
2231
2131
|
weight: z.ZodMiniNumber<number>;
|
|
2232
2132
|
}, z.core.$strip>>;
|
|
2133
|
+
/** Schema for the `multisig_approveRawTransaction` JSON-RPC method. */
|
|
2134
|
+
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}`>>;
|
|
2135
|
+
/** Schema for the `multisig_approveRawTransactionSync` JSON-RPC method. */
|
|
2136
|
+
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<{
|
|
2137
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2138
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
2139
|
+
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2140
|
+
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2141
|
+
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2142
|
+
type: z.ZodMiniLiteral<"transaction">;
|
|
2143
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2144
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2145
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2146
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2147
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2148
|
+
weight: z.ZodMiniNumber<number>;
|
|
2149
|
+
}, z.core.$strip>>>;
|
|
2150
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2151
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2152
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2153
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2154
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2155
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2156
|
+
weight: z.ZodMiniNumber<number>;
|
|
2157
|
+
}, z.core.$strip>>>;
|
|
2158
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2159
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2160
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2161
|
+
}, z.core.$strip>>;
|
|
2162
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2163
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2164
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2165
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2166
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2167
|
+
weight: z.ZodMiniNumber<number>;
|
|
2168
|
+
}, z.core.$strip>>;
|
|
2169
|
+
/** Schema for the `multisig_getConfig` JSON-RPC method. */
|
|
2170
|
+
export declare const multisig_getConfig: import("../internal/rpcSchemas/from.js").Item<"multisig_getConfig", z.ZodMiniTuple<readonly [z.ZodMiniObject<{
|
|
2171
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2172
|
+
}, z.core.$strip>], null>, z.ZodMiniNullable<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.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2180
|
+
}, z.core.$strip>>>;
|
|
2233
2181
|
/** Schema for the `multisig_getOperation` JSON-RPC method. */
|
|
2234
2182
|
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
2183
|
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -2257,10 +2205,8 @@ export declare const multisig_getOperation: import("../internal/rpcSchemas/from.
|
|
|
2257
2205
|
threshold: z.ZodMiniNumber<number>;
|
|
2258
2206
|
version: z.ZodMiniBigInt<bigint>;
|
|
2259
2207
|
}, z.core.$strip>>;
|
|
2260
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2261
2208
|
createdAt: z.ZodMiniNumber<number>;
|
|
2262
2209
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2263
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2264
2210
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2265
2211
|
threshold: z.ZodMiniNumber<number>;
|
|
2266
2212
|
updatedAt: z.ZodMiniNumber<number>;
|
|
@@ -2288,10 +2234,8 @@ export declare const multisig_getOperation: import("../internal/rpcSchemas/from.
|
|
|
2288
2234
|
threshold: z.ZodMiniNumber<number>;
|
|
2289
2235
|
version: z.ZodMiniBigInt<bigint>;
|
|
2290
2236
|
}, z.core.$strip>>;
|
|
2291
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2292
2237
|
createdAt: z.ZodMiniNumber<number>;
|
|
2293
2238
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2294
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2295
2239
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2296
2240
|
threshold: z.ZodMiniNumber<number>;
|
|
2297
2241
|
updatedAt: z.ZodMiniNumber<number>;
|
|
@@ -2313,7 +2257,7 @@ export declare const Multisig: {
|
|
|
2313
2257
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2314
2258
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
2315
2259
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2316
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2260
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
2317
2261
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2318
2262
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2319
2263
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -2339,19 +2283,7 @@ export declare const Multisig: {
|
|
|
2339
2283
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2340
2284
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2341
2285
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2342
|
-
}, z.core.$strip>]>, z.
|
|
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>]>;
|
|
2286
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
2355
2287
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2356
2288
|
}, z.core.$strip>;
|
|
2357
2289
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
@@ -2380,10 +2312,8 @@ export declare const Multisig: {
|
|
|
2380
2312
|
threshold: z.ZodMiniNumber<number>;
|
|
2381
2313
|
version: z.ZodMiniBigInt<bigint>;
|
|
2382
2314
|
}, z.core.$strip>>;
|
|
2383
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2384
2315
|
createdAt: z.ZodMiniNumber<number>;
|
|
2385
2316
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2386
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2387
2317
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2388
2318
|
threshold: z.ZodMiniNumber<number>;
|
|
2389
2319
|
updatedAt: z.ZodMiniNumber<number>;
|
|
@@ -2416,15 +2346,24 @@ export declare const Multisig: {
|
|
|
2416
2346
|
threshold: z.ZodMiniNumber<number>;
|
|
2417
2347
|
version: z.ZodMiniBigInt<bigint>;
|
|
2418
2348
|
}, z.core.$strip>>;
|
|
2419
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2420
2349
|
createdAt: z.ZodMiniNumber<number>;
|
|
2421
2350
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2422
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2423
2351
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2424
2352
|
threshold: z.ZodMiniNumber<number>;
|
|
2425
2353
|
updatedAt: z.ZodMiniNumber<number>;
|
|
2426
2354
|
weight: z.ZodMiniNumber<number>;
|
|
2427
2355
|
}, z.core.$strip>>;
|
|
2356
|
+
multisig_getConfig: import("../internal/rpcSchemas/from.js").Item<"multisig_getConfig", z.ZodMiniTuple<readonly [z.ZodMiniObject<{
|
|
2357
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2358
|
+
}, z.core.$strip>], null>, z.ZodMiniNullable<z.ZodMiniObject<{
|
|
2359
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2360
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2361
|
+
weight: z.ZodMiniNumber<number>;
|
|
2362
|
+
}, z.core.$strip>>>;
|
|
2363
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2364
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2365
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2366
|
+
}, z.core.$strip>>>;
|
|
2428
2367
|
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
2368
|
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2430
2369
|
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
@@ -2451,10 +2390,8 @@ export declare const Multisig: {
|
|
|
2451
2390
|
threshold: z.ZodMiniNumber<number>;
|
|
2452
2391
|
version: z.ZodMiniBigInt<bigint>;
|
|
2453
2392
|
}, z.core.$strip>>;
|
|
2454
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2455
2393
|
createdAt: z.ZodMiniNumber<number>;
|
|
2456
2394
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2457
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2458
2395
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2459
2396
|
threshold: z.ZodMiniNumber<number>;
|
|
2460
2397
|
updatedAt: z.ZodMiniNumber<number>;
|
|
@@ -2482,10 +2419,8 @@ export declare const Multisig: {
|
|
|
2482
2419
|
threshold: z.ZodMiniNumber<number>;
|
|
2483
2420
|
version: z.ZodMiniBigInt<bigint>;
|
|
2484
2421
|
}, z.core.$strip>>;
|
|
2485
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2486
2422
|
createdAt: z.ZodMiniNumber<number>;
|
|
2487
2423
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2488
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2489
2424
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2490
2425
|
threshold: z.ZodMiniNumber<number>;
|
|
2491
2426
|
updatedAt: z.ZodMiniNumber<number>;
|