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
|
@@ -35,19 +35,7 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
35
35
|
type: z.ZodMiniLiteral<"keychain">;
|
|
36
36
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
37
37
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
38
|
-
}, z.core.$strip>, z.
|
|
39
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
40
|
-
config: z.ZodMiniObject<{
|
|
41
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
42
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
43
|
-
weight: z.ZodMiniNumber<number>;
|
|
44
|
-
}, z.core.$strip>>>;
|
|
45
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
46
|
-
threshold: z.ZodMiniNumber<number>;
|
|
47
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
48
|
-
}, z.core.$strip>;
|
|
49
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
50
|
-
}, z.core.$strict>]>;
|
|
38
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
51
39
|
}, z.core.$strip>>>>;
|
|
52
40
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
53
41
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -84,7 +72,7 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
84
72
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
85
73
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
86
74
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
87
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
75
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
88
76
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
89
77
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
90
78
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -110,63 +98,30 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
110
98
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
111
99
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
112
100
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
113
|
-
}, z.core.$strip>]>, z.
|
|
114
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
115
|
-
config: z.ZodMiniObject<{
|
|
116
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
117
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
118
|
-
weight: z.ZodMiniNumber<number>;
|
|
119
|
-
}, z.core.$strip>>>;
|
|
120
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
121
|
-
threshold: z.ZodMiniNumber<number>;
|
|
122
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
123
|
-
}, z.core.$strip>;
|
|
124
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
125
|
-
}, z.core.$strict>]>;
|
|
101
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
126
102
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
127
103
|
}, z.core.$strip>>;
|
|
128
104
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
129
105
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
130
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
106
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
131
107
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
132
108
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
133
109
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
110
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
111
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
137
112
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
138
113
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
139
114
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
config: z.ZodMiniObject<{
|
|
151
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
152
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
153
|
-
weight: z.ZodMiniNumber<number>;
|
|
154
|
-
}, z.core.$strip>>>;
|
|
155
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
156
|
-
threshold: z.ZodMiniNumber<number>;
|
|
157
|
-
version: z.ZodMiniNumber<number>;
|
|
158
|
-
}, z.core.$strip>;
|
|
159
|
-
}, z.core.$strip>;
|
|
160
|
-
}, z.core.$strip>]>>>;
|
|
161
|
-
config: z.ZodMiniObject<{
|
|
162
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
163
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
164
|
-
weight: z.ZodMiniNumber<number>;
|
|
165
|
-
}, z.core.$strip>>>;
|
|
166
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
167
|
-
threshold: z.ZodMiniNumber<number>;
|
|
168
|
-
version: z.ZodMiniNumber<number>;
|
|
169
|
-
}, z.core.$strip>;
|
|
115
|
+
}, z.core.$strict>>>;
|
|
116
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
117
|
+
}, z.core.$strip>>;
|
|
118
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
119
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
120
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
121
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
122
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
123
|
+
}, z.core.$strict>>>;
|
|
124
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
170
125
|
}, z.core.$strip>>;
|
|
171
126
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
172
127
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -198,19 +153,7 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
198
153
|
type: z.ZodMiniLiteral<"keychain">;
|
|
199
154
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
200
155
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
201
|
-
}, z.core.$strip>, z.
|
|
202
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
203
|
-
config: z.ZodMiniObject<{
|
|
204
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
205
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
206
|
-
weight: z.ZodMiniNumber<number>;
|
|
207
|
-
}, z.core.$strip>>>;
|
|
208
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
209
|
-
threshold: z.ZodMiniNumber<number>;
|
|
210
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
211
|
-
}, z.core.$strip>;
|
|
212
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
213
|
-
}, z.core.$strict>]>>;
|
|
156
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
214
157
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
215
158
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
216
159
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -280,7 +223,41 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
280
223
|
threshold: z.ZodMiniNumber<number>;
|
|
281
224
|
version: z.ZodMiniBigInt<bigint>;
|
|
282
225
|
}, z.core.$strip>;
|
|
283
|
-
signatures: z.
|
|
226
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
227
|
+
signature: z.ZodMiniObject<{
|
|
228
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
229
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
230
|
+
yParity: z.ZodMiniNumber<number>;
|
|
231
|
+
}, z.core.$strip>;
|
|
232
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
233
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
234
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
235
|
+
publicKey: z.ZodMiniObject<{
|
|
236
|
+
prefix: z.ZodMiniNumber<number>;
|
|
237
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
238
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
239
|
+
}, z.core.$strip>;
|
|
240
|
+
signature: z.ZodMiniObject<{
|
|
241
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
242
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
243
|
+
}, z.core.$strip>;
|
|
244
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
245
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
246
|
+
metadata: z.ZodMiniObject<{
|
|
247
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
248
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
249
|
+
}, z.core.$strip>;
|
|
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<"webAuthn">;
|
|
260
|
+
}, z.core.$strip>]>>>;
|
|
284
261
|
type: z.ZodMiniLiteral<"multisig">;
|
|
285
262
|
}, z.core.$strip>]>;
|
|
286
263
|
}, z.core.$strip>>>>;
|
|
@@ -306,73 +283,9 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
306
283
|
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
307
284
|
gasPrice: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
308
285
|
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
309
|
-
keyAuthorization: z.ZodMiniOptional<z.
|
|
310
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}
|
|
311
|
-
isAdmin: z.ZodMiniBoolean<boolean
|
|
312
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
313
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
314
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
315
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
316
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
317
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
318
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
319
|
-
}, z.core.$strip>>>>;
|
|
320
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
321
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
322
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
323
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
324
|
-
}, z.core.$strip>>>>;
|
|
325
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
326
|
-
signature: z.ZodMiniObject<{
|
|
327
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
328
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
329
|
-
yParity: z.ZodMiniNumber<number>;
|
|
330
|
-
}, z.core.$strip>;
|
|
331
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
332
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
333
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
334
|
-
publicKey: z.ZodMiniObject<{
|
|
335
|
-
prefix: z.ZodMiniNumber<number>;
|
|
336
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
337
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
338
|
-
}, z.core.$strip>;
|
|
339
|
-
signature: z.ZodMiniObject<{
|
|
340
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
341
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
342
|
-
}, z.core.$strip>;
|
|
343
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
344
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
345
|
-
metadata: z.ZodMiniObject<{
|
|
346
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
347
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
348
|
-
}, z.core.$strip>;
|
|
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<"webAuthn">;
|
|
359
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
360
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
361
|
-
config: z.ZodMiniObject<{
|
|
362
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
363
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
364
|
-
weight: z.ZodMiniNumber<number>;
|
|
365
|
-
}, z.core.$strip>>>;
|
|
366
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
367
|
-
threshold: z.ZodMiniNumber<number>;
|
|
368
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
369
|
-
}, z.core.$strip>;
|
|
370
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
371
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
372
|
-
}, z.core.$strip>]>;
|
|
373
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
374
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
375
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
286
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
287
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
288
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
376
289
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
377
290
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
378
291
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -431,45 +344,74 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
431
344
|
threshold: z.ZodMiniNumber<number>;
|
|
432
345
|
version: z.ZodMiniBigInt<bigint>;
|
|
433
346
|
}, z.core.$strip>;
|
|
434
|
-
signatures: z.
|
|
347
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
348
|
+
signature: z.ZodMiniObject<{
|
|
349
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
350
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
351
|
+
yParity: z.ZodMiniNumber<number>;
|
|
352
|
+
}, z.core.$strip>;
|
|
353
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
354
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
355
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
356
|
+
publicKey: z.ZodMiniObject<{
|
|
357
|
+
prefix: z.ZodMiniNumber<number>;
|
|
358
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
359
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
360
|
+
}, z.core.$strip>;
|
|
361
|
+
signature: z.ZodMiniObject<{
|
|
362
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
363
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
364
|
+
}, z.core.$strip>;
|
|
365
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
366
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
367
|
+
metadata: z.ZodMiniObject<{
|
|
368
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
369
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
370
|
+
}, z.core.$strip>;
|
|
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<"webAuthn">;
|
|
381
|
+
}, z.core.$strip>]>>>;
|
|
435
382
|
type: z.ZodMiniLiteral<"multisig">;
|
|
436
383
|
}, z.core.$strip>]>;
|
|
437
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
384
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
438
385
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
439
|
-
}, z.core.$strip
|
|
386
|
+
}, z.core.$strip>>;
|
|
440
387
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
441
388
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
442
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
389
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
443
390
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
444
391
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
445
392
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
393
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
394
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
449
395
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
450
396
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
451
397
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
470
|
-
}, z.core.$strip>;
|
|
471
|
-
}, z.core.$strip>;
|
|
472
|
-
}, z.core.$strip>]>>>;
|
|
398
|
+
}, z.core.$strict>>>;
|
|
399
|
+
config: z.ZodMiniObject<{
|
|
400
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
401
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
402
|
+
weight: z.ZodMiniNumber<number>;
|
|
403
|
+
}, z.core.$strip>>>;
|
|
404
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
405
|
+
threshold: z.ZodMiniNumber<number>;
|
|
406
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
407
|
+
}, z.core.$strip>;
|
|
408
|
+
}, z.core.$strip>>;
|
|
409
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
410
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
411
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
412
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
413
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
414
|
+
}, z.core.$strict>>>;
|
|
473
415
|
config: z.ZodMiniObject<{
|
|
474
416
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
475
417
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -535,7 +477,41 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
535
477
|
threshold: z.ZodMiniNumber<number>;
|
|
536
478
|
version: z.ZodMiniBigInt<bigint>;
|
|
537
479
|
}, z.core.$strip>;
|
|
538
|
-
signatures: z.
|
|
480
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
481
|
+
signature: z.ZodMiniObject<{
|
|
482
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
483
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
484
|
+
yParity: z.ZodMiniNumber<number>;
|
|
485
|
+
}, z.core.$strip>;
|
|
486
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
487
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
488
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
489
|
+
publicKey: z.ZodMiniObject<{
|
|
490
|
+
prefix: z.ZodMiniNumber<number>;
|
|
491
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
492
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
493
|
+
}, z.core.$strip>;
|
|
494
|
+
signature: z.ZodMiniObject<{
|
|
495
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
496
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
497
|
+
}, z.core.$strip>;
|
|
498
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
499
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
500
|
+
metadata: z.ZodMiniObject<{
|
|
501
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
502
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
503
|
+
}, z.core.$strip>;
|
|
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<"webAuthn">;
|
|
514
|
+
}, z.core.$strip>]>>>;
|
|
539
515
|
type: z.ZodMiniLiteral<"multisig">;
|
|
540
516
|
}, z.core.$strip>]>>;
|
|
541
517
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
@@ -607,7 +583,41 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
607
583
|
threshold: z.ZodMiniNumber<number>;
|
|
608
584
|
version: z.ZodMiniBigInt<bigint>;
|
|
609
585
|
}, z.core.$strip>;
|
|
610
|
-
signatures: z.
|
|
586
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
587
|
+
signature: z.ZodMiniObject<{
|
|
588
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
589
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
590
|
+
yParity: z.ZodMiniNumber<number>;
|
|
591
|
+
}, z.core.$strip>;
|
|
592
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
593
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
594
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
595
|
+
publicKey: z.ZodMiniObject<{
|
|
596
|
+
prefix: z.ZodMiniNumber<number>;
|
|
597
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
598
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
599
|
+
}, z.core.$strip>;
|
|
600
|
+
signature: z.ZodMiniObject<{
|
|
601
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
602
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
603
|
+
}, z.core.$strip>;
|
|
604
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
605
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
606
|
+
metadata: z.ZodMiniObject<{
|
|
607
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
608
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
609
|
+
}, z.core.$strip>;
|
|
610
|
+
publicKey: z.ZodMiniObject<{
|
|
611
|
+
prefix: z.ZodMiniNumber<number>;
|
|
612
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
613
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
614
|
+
}, z.core.$strip>;
|
|
615
|
+
signature: z.ZodMiniObject<{
|
|
616
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
617
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
618
|
+
}, z.core.$strip>;
|
|
619
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
620
|
+
}, z.core.$strip>]>>>;
|
|
611
621
|
type: z.ZodMiniLiteral<"multisig">;
|
|
612
622
|
}, z.core.$strip>]>;
|
|
613
623
|
}, z.core.$strip>>>>;
|
|
@@ -633,73 +643,9 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
633
643
|
gas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
634
644
|
gasPrice: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
635
645
|
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
636
|
-
keyAuthorization: z.ZodMiniOptional<z.
|
|
637
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}
|
|
638
|
-
isAdmin: z.ZodMiniBoolean<boolean
|
|
639
|
-
chainId: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
|
|
640
|
-
expiry: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
641
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
642
|
-
limit: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
|
|
643
|
-
period: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
644
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
645
|
-
}, z.core.$strip>>>>;
|
|
646
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
647
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
648
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
649
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
650
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
651
|
-
}, z.core.$strip>>>>;
|
|
652
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
653
|
-
signature: z.ZodMiniObject<{
|
|
654
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
655
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
656
|
-
yParity: z.ZodMiniNumber<number>;
|
|
657
|
-
}, z.core.$strip>;
|
|
658
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
659
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
660
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
661
|
-
publicKey: z.ZodMiniObject<{
|
|
662
|
-
prefix: z.ZodMiniNumber<number>;
|
|
663
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
664
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
665
|
-
}, z.core.$strip>;
|
|
666
|
-
signature: z.ZodMiniObject<{
|
|
667
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
668
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
669
|
-
}, z.core.$strip>;
|
|
670
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
671
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
672
|
-
metadata: z.ZodMiniObject<{
|
|
673
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
674
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
675
|
-
}, z.core.$strip>;
|
|
676
|
-
publicKey: z.ZodMiniObject<{
|
|
677
|
-
prefix: z.ZodMiniNumber<number>;
|
|
678
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
679
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
680
|
-
}, z.core.$strip>;
|
|
681
|
-
signature: z.ZodMiniObject<{
|
|
682
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
683
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
684
|
-
}, z.core.$strip>;
|
|
685
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
686
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
687
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
688
|
-
config: z.ZodMiniObject<{
|
|
689
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
690
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
691
|
-
weight: z.ZodMiniNumber<number>;
|
|
692
|
-
}, z.core.$strip>>>;
|
|
693
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
694
|
-
threshold: z.ZodMiniNumber<number>;
|
|
695
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
696
|
-
}, z.core.$strip>;
|
|
697
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
698
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
699
|
-
}, z.core.$strip>]>;
|
|
700
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
701
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
702
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
646
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
647
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
648
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
703
649
|
chainId: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
|
|
704
650
|
expiry: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
705
651
|
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -758,45 +704,74 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
758
704
|
threshold: z.ZodMiniNumber<number>;
|
|
759
705
|
version: z.ZodMiniBigInt<bigint>;
|
|
760
706
|
}, z.core.$strip>;
|
|
761
|
-
signatures: z.
|
|
707
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
708
|
+
signature: z.ZodMiniObject<{
|
|
709
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
710
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
711
|
+
yParity: z.ZodMiniNumber<number>;
|
|
712
|
+
}, z.core.$strip>;
|
|
713
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
714
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
715
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
716
|
+
publicKey: z.ZodMiniObject<{
|
|
717
|
+
prefix: z.ZodMiniNumber<number>;
|
|
718
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
719
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
720
|
+
}, z.core.$strip>;
|
|
721
|
+
signature: z.ZodMiniObject<{
|
|
722
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
723
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
724
|
+
}, z.core.$strip>;
|
|
725
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
726
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
727
|
+
metadata: z.ZodMiniObject<{
|
|
728
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
729
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
730
|
+
}, z.core.$strip>;
|
|
731
|
+
publicKey: z.ZodMiniObject<{
|
|
732
|
+
prefix: z.ZodMiniNumber<number>;
|
|
733
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
734
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
735
|
+
}, z.core.$strip>;
|
|
736
|
+
signature: z.ZodMiniObject<{
|
|
737
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
738
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
739
|
+
}, z.core.$strip>;
|
|
740
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
741
|
+
}, z.core.$strip>]>>>;
|
|
762
742
|
type: z.ZodMiniLiteral<"multisig">;
|
|
763
743
|
}, z.core.$strip>]>;
|
|
764
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
744
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
765
745
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
766
|
-
}, z.core.$strip
|
|
746
|
+
}, z.core.$strip>>;
|
|
767
747
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
768
748
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
769
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
749
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
770
750
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
771
751
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
772
752
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
753
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
754
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
776
755
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
777
756
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
778
757
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
797
|
-
}, z.core.$strip>;
|
|
798
|
-
}, z.core.$strip>;
|
|
799
|
-
}, z.core.$strip>]>>>;
|
|
758
|
+
}, z.core.$strict>>>;
|
|
759
|
+
config: z.ZodMiniObject<{
|
|
760
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
761
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
762
|
+
weight: z.ZodMiniNumber<number>;
|
|
763
|
+
}, z.core.$strip>>>;
|
|
764
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
765
|
+
threshold: z.ZodMiniNumber<number>;
|
|
766
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
767
|
+
}, z.core.$strip>;
|
|
768
|
+
}, z.core.$strip>>;
|
|
769
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
770
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
771
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
772
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
773
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
774
|
+
}, z.core.$strict>>>;
|
|
800
775
|
config: z.ZodMiniObject<{
|
|
801
776
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
802
777
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -862,7 +837,41 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
862
837
|
threshold: z.ZodMiniNumber<number>;
|
|
863
838
|
version: z.ZodMiniBigInt<bigint>;
|
|
864
839
|
}, z.core.$strip>;
|
|
865
|
-
signatures: z.
|
|
840
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
841
|
+
signature: z.ZodMiniObject<{
|
|
842
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
843
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
844
|
+
yParity: z.ZodMiniNumber<number>;
|
|
845
|
+
}, z.core.$strip>;
|
|
846
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
847
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
848
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
849
|
+
publicKey: z.ZodMiniObject<{
|
|
850
|
+
prefix: z.ZodMiniNumber<number>;
|
|
851
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
852
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
853
|
+
}, z.core.$strip>;
|
|
854
|
+
signature: z.ZodMiniObject<{
|
|
855
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
856
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
857
|
+
}, z.core.$strip>;
|
|
858
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
859
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
860
|
+
metadata: z.ZodMiniObject<{
|
|
861
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
862
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
863
|
+
}, z.core.$strip>;
|
|
864
|
+
publicKey: z.ZodMiniObject<{
|
|
865
|
+
prefix: z.ZodMiniNumber<number>;
|
|
866
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
867
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
868
|
+
}, z.core.$strip>;
|
|
869
|
+
signature: z.ZodMiniObject<{
|
|
870
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
871
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
872
|
+
}, z.core.$strip>;
|
|
873
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
874
|
+
}, z.core.$strip>]>>>;
|
|
866
875
|
type: z.ZodMiniLiteral<"multisig">;
|
|
867
876
|
}, z.core.$strip>]>>;
|
|
868
877
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
@@ -909,19 +918,7 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
909
918
|
type: z.ZodMiniLiteral<"keychain">;
|
|
910
919
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
911
920
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
912
|
-
}, z.core.$strip>, z.
|
|
913
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
914
|
-
config: z.ZodMiniObject<{
|
|
915
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
916
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
917
|
-
weight: z.ZodMiniNumber<number>;
|
|
918
|
-
}, z.core.$strip>>>;
|
|
919
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
920
|
-
threshold: z.ZodMiniNumber<number>;
|
|
921
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
922
|
-
}, z.core.$strip>;
|
|
923
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
924
|
-
}, z.core.$strict>]>;
|
|
921
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
925
922
|
}, z.core.$strip>>>>;
|
|
926
923
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
927
924
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -958,7 +955,7 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
958
955
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
959
956
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
960
957
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
961
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
958
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
962
959
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
963
960
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
964
961
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -984,63 +981,30 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
984
981
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
985
982
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
986
983
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
987
|
-
}, z.core.$strip>]>, z.
|
|
988
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
989
|
-
config: z.ZodMiniObject<{
|
|
990
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
991
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
992
|
-
weight: z.ZodMiniNumber<number>;
|
|
993
|
-
}, z.core.$strip>>>;
|
|
994
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
995
|
-
threshold: z.ZodMiniNumber<number>;
|
|
996
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
997
|
-
}, z.core.$strip>;
|
|
998
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
999
|
-
}, z.core.$strict>]>;
|
|
984
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1000
985
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1001
986
|
}, z.core.$strip>>;
|
|
1002
987
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1003
988
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1004
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
989
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
1005
990
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1006
991
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1007
992
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
993
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
994
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1011
995
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1012
996
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1013
997
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
config: z.ZodMiniObject<{
|
|
1025
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1026
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1027
|
-
weight: z.ZodMiniNumber<number>;
|
|
1028
|
-
}, z.core.$strip>>>;
|
|
1029
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1030
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1031
|
-
version: z.ZodMiniNumber<number>;
|
|
1032
|
-
}, z.core.$strip>;
|
|
1033
|
-
}, z.core.$strip>;
|
|
1034
|
-
}, z.core.$strip>]>>>;
|
|
1035
|
-
config: z.ZodMiniObject<{
|
|
1036
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1037
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1038
|
-
weight: z.ZodMiniNumber<number>;
|
|
1039
|
-
}, z.core.$strip>>>;
|
|
1040
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1041
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1042
|
-
version: z.ZodMiniNumber<number>;
|
|
1043
|
-
}, z.core.$strip>;
|
|
998
|
+
}, z.core.$strict>>>;
|
|
999
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1000
|
+
}, z.core.$strip>>;
|
|
1001
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1002
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1003
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1004
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1005
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1006
|
+
}, z.core.$strict>>>;
|
|
1007
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1044
1008
|
}, z.core.$strip>>;
|
|
1045
1009
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1046
1010
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1072,19 +1036,7 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1072
1036
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1073
1037
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1074
1038
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1075
|
-
}, z.core.$strip>, z.
|
|
1076
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1077
|
-
config: z.ZodMiniObject<{
|
|
1078
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1079
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1080
|
-
weight: z.ZodMiniNumber<number>;
|
|
1081
|
-
}, z.core.$strip>>>;
|
|
1082
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1083
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1084
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1085
|
-
}, z.core.$strip>;
|
|
1086
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1087
|
-
}, z.core.$strict>]>>;
|
|
1039
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
1088
1040
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1089
1041
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1090
1042
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1152,7 +1104,41 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1152
1104
|
threshold: z.ZodMiniNumber<number>;
|
|
1153
1105
|
version: z.ZodMiniBigInt<bigint>;
|
|
1154
1106
|
}, z.core.$strip>;
|
|
1155
|
-
signatures: z.
|
|
1107
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1108
|
+
signature: z.ZodMiniObject<{
|
|
1109
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1110
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1111
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1112
|
+
}, z.core.$strip>;
|
|
1113
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1114
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1115
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1116
|
+
publicKey: z.ZodMiniObject<{
|
|
1117
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1118
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1119
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1120
|
+
}, z.core.$strip>;
|
|
1121
|
+
signature: z.ZodMiniObject<{
|
|
1122
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1123
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1124
|
+
}, z.core.$strip>;
|
|
1125
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1126
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1127
|
+
metadata: z.ZodMiniObject<{
|
|
1128
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1129
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1130
|
+
}, z.core.$strip>;
|
|
1131
|
+
publicKey: z.ZodMiniObject<{
|
|
1132
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1133
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1134
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1135
|
+
}, z.core.$strip>;
|
|
1136
|
+
signature: z.ZodMiniObject<{
|
|
1137
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1138
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1139
|
+
}, z.core.$strip>;
|
|
1140
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1141
|
+
}, z.core.$strip>]>>>;
|
|
1156
1142
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1157
1143
|
}, z.core.$strip>]>;
|
|
1158
1144
|
}, z.core.$strip>>>>;
|
|
@@ -1169,82 +1155,18 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1169
1155
|
feePayer: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1170
1156
|
feePayerSignature: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1171
1157
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1172
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1173
|
-
v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1174
|
-
yParity: z.ZodMiniNumber<number>;
|
|
1175
|
-
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
1176
|
-
feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1177
|
-
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1178
|
-
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1179
|
-
gasPrice: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1180
|
-
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1181
|
-
keyAuthorization: z.ZodMiniOptional<z.
|
|
1182
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}
|
|
1183
|
-
isAdmin: z.ZodMiniBoolean<boolean
|
|
1184
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1185
|
-
chainId: z.ZodMiniBigInt<bigint>;
|
|
1186
|
-
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1187
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1188
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
1189
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1190
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1191
|
-
}, z.core.$strip>>>>;
|
|
1192
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1193
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1194
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1195
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1196
|
-
}, z.core.$strip>>>>;
|
|
1197
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1198
|
-
signature: z.ZodMiniObject<{
|
|
1199
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1200
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1201
|
-
yParity: z.ZodMiniNumber<number>;
|
|
1202
|
-
}, z.core.$strip>;
|
|
1203
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1204
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1205
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
1206
|
-
publicKey: z.ZodMiniObject<{
|
|
1207
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1208
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1209
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1210
|
-
}, z.core.$strip>;
|
|
1211
|
-
signature: z.ZodMiniObject<{
|
|
1212
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1213
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1214
|
-
}, z.core.$strip>;
|
|
1215
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
1216
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1217
|
-
metadata: z.ZodMiniObject<{
|
|
1218
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1219
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
1220
|
-
}, z.core.$strip>;
|
|
1221
|
-
publicKey: z.ZodMiniObject<{
|
|
1222
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1223
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1224
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1225
|
-
}, z.core.$strip>;
|
|
1226
|
-
signature: z.ZodMiniObject<{
|
|
1227
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1228
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1229
|
-
}, z.core.$strip>;
|
|
1230
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1231
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1232
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1233
|
-
config: z.ZodMiniObject<{
|
|
1234
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1235
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1236
|
-
weight: z.ZodMiniNumber<number>;
|
|
1237
|
-
}, z.core.$strip>>>;
|
|
1238
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1239
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1240
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1241
|
-
}, z.core.$strip>;
|
|
1242
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1243
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1244
|
-
}, z.core.$strip>]>;
|
|
1245
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1246
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1247
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1158
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1159
|
+
v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1160
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1161
|
+
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
1162
|
+
feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1163
|
+
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1164
|
+
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1165
|
+
gasPrice: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1166
|
+
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1167
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1168
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1169
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1248
1170
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1249
1171
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
1250
1172
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -1303,45 +1225,74 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1303
1225
|
threshold: z.ZodMiniNumber<number>;
|
|
1304
1226
|
version: z.ZodMiniBigInt<bigint>;
|
|
1305
1227
|
}, z.core.$strip>;
|
|
1306
|
-
signatures: z.
|
|
1228
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1229
|
+
signature: z.ZodMiniObject<{
|
|
1230
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1231
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1232
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1233
|
+
}, z.core.$strip>;
|
|
1234
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1235
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1236
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1237
|
+
publicKey: z.ZodMiniObject<{
|
|
1238
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1239
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1240
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1241
|
+
}, z.core.$strip>;
|
|
1242
|
+
signature: z.ZodMiniObject<{
|
|
1243
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1244
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1245
|
+
}, z.core.$strip>;
|
|
1246
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1247
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1248
|
+
metadata: z.ZodMiniObject<{
|
|
1249
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1250
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1251
|
+
}, z.core.$strip>;
|
|
1252
|
+
publicKey: z.ZodMiniObject<{
|
|
1253
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1254
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1255
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1256
|
+
}, z.core.$strip>;
|
|
1257
|
+
signature: z.ZodMiniObject<{
|
|
1258
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1259
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1260
|
+
}, z.core.$strip>;
|
|
1261
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1262
|
+
}, z.core.$strip>]>>>;
|
|
1307
1263
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1308
1264
|
}, z.core.$strip>]>;
|
|
1309
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1265
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1310
1266
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1311
|
-
}, z.core.$strip
|
|
1267
|
+
}, z.core.$strip>>;
|
|
1312
1268
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1313
1269
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1314
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1270
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
1315
1271
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1316
1272
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1317
1273
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1274
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1275
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1321
1276
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1322
1277
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1323
1278
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1342
|
-
}, z.core.$strip>;
|
|
1343
|
-
}, z.core.$strip>;
|
|
1344
|
-
}, z.core.$strip>]>>>;
|
|
1279
|
+
}, z.core.$strict>>>;
|
|
1280
|
+
config: z.ZodMiniObject<{
|
|
1281
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1282
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1283
|
+
weight: z.ZodMiniNumber<number>;
|
|
1284
|
+
}, z.core.$strip>>>;
|
|
1285
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1286
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1287
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1288
|
+
}, z.core.$strip>;
|
|
1289
|
+
}, z.core.$strip>>;
|
|
1290
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1291
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1292
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1293
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1294
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1295
|
+
}, z.core.$strict>>>;
|
|
1345
1296
|
config: z.ZodMiniObject<{
|
|
1346
1297
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1347
1298
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1407,7 +1358,41 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1407
1358
|
threshold: z.ZodMiniNumber<number>;
|
|
1408
1359
|
version: z.ZodMiniBigInt<bigint>;
|
|
1409
1360
|
}, z.core.$strip>;
|
|
1410
|
-
signatures: z.
|
|
1361
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1362
|
+
signature: z.ZodMiniObject<{
|
|
1363
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1364
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1365
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1366
|
+
}, z.core.$strip>;
|
|
1367
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1368
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1369
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1370
|
+
publicKey: z.ZodMiniObject<{
|
|
1371
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1372
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1373
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1374
|
+
}, z.core.$strip>;
|
|
1375
|
+
signature: z.ZodMiniObject<{
|
|
1376
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1377
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1378
|
+
}, z.core.$strip>;
|
|
1379
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1380
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1381
|
+
metadata: z.ZodMiniObject<{
|
|
1382
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1383
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1384
|
+
}, z.core.$strip>;
|
|
1385
|
+
publicKey: z.ZodMiniObject<{
|
|
1386
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1387
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1388
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1389
|
+
}, z.core.$strip>;
|
|
1390
|
+
signature: z.ZodMiniObject<{
|
|
1391
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1392
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1393
|
+
}, z.core.$strip>;
|
|
1394
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1395
|
+
}, z.core.$strip>]>>>;
|
|
1411
1396
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1412
1397
|
}, z.core.$strip>]>>;
|
|
1413
1398
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
@@ -1454,19 +1439,7 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1454
1439
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1455
1440
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1456
1441
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1457
|
-
}, z.core.$strip>, z.
|
|
1458
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1459
|
-
config: z.ZodMiniObject<{
|
|
1460
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1461
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1462
|
-
weight: z.ZodMiniNumber<number>;
|
|
1463
|
-
}, z.core.$strip>>>;
|
|
1464
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1465
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1466
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1467
|
-
}, z.core.$strip>;
|
|
1468
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1469
|
-
}, z.core.$strict>]>;
|
|
1442
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1470
1443
|
}, z.core.$strip>>>>;
|
|
1471
1444
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1472
1445
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -1503,7 +1476,7 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1503
1476
|
expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1504
1477
|
isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
|
|
1505
1478
|
keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1506
|
-
keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1479
|
+
keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1507
1480
|
limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1508
1481
|
limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1509
1482
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
@@ -1529,63 +1502,30 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1529
1502
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1530
1503
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1531
1504
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1532
|
-
}, z.core.$strip>]>, z.
|
|
1533
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1534
|
-
config: z.ZodMiniObject<{
|
|
1535
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1536
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1537
|
-
weight: z.ZodMiniNumber<number>;
|
|
1538
|
-
}, z.core.$strip>>>;
|
|
1539
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1540
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1541
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1542
|
-
}, z.core.$strip>;
|
|
1543
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1544
|
-
}, z.core.$strict>]>;
|
|
1505
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1545
1506
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1546
1507
|
}, z.core.$strip>>;
|
|
1547
1508
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1548
1509
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1549
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1510
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
1550
1511
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1551
1512
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1552
1513
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1514
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1515
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1556
1516
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1557
1517
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1558
1518
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
config: z.ZodMiniObject<{
|
|
1570
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1571
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1572
|
-
weight: z.ZodMiniNumber<number>;
|
|
1573
|
-
}, z.core.$strip>>>;
|
|
1574
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1575
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1576
|
-
version: z.ZodMiniNumber<number>;
|
|
1577
|
-
}, z.core.$strip>;
|
|
1578
|
-
}, z.core.$strip>;
|
|
1579
|
-
}, z.core.$strip>]>>>;
|
|
1580
|
-
config: z.ZodMiniObject<{
|
|
1581
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1582
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1583
|
-
weight: z.ZodMiniNumber<number>;
|
|
1584
|
-
}, z.core.$strip>>>;
|
|
1585
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1586
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1587
|
-
version: z.ZodMiniNumber<number>;
|
|
1588
|
-
}, z.core.$strip>;
|
|
1519
|
+
}, z.core.$strict>>>;
|
|
1520
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1521
|
+
}, z.core.$strip>>;
|
|
1522
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1523
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1524
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1525
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1526
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1527
|
+
}, z.core.$strict>>>;
|
|
1528
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1589
1529
|
}, z.core.$strip>>;
|
|
1590
1530
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1591
1531
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1617,19 +1557,7 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1617
1557
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1618
1558
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1619
1559
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1620
|
-
}, z.core.$strip>, z.
|
|
1621
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1622
|
-
config: z.ZodMiniObject<{
|
|
1623
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1624
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1625
|
-
weight: z.ZodMiniNumber<number>;
|
|
1626
|
-
}, z.core.$strip>>>;
|
|
1627
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1628
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1629
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1630
|
-
}, z.core.$strip>;
|
|
1631
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1632
|
-
}, z.core.$strict>]>>;
|
|
1560
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
1633
1561
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1634
1562
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1635
1563
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1697,7 +1625,41 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1697
1625
|
threshold: z.ZodMiniNumber<number>;
|
|
1698
1626
|
version: z.ZodMiniBigInt<bigint>;
|
|
1699
1627
|
}, z.core.$strip>;
|
|
1700
|
-
signatures: z.
|
|
1628
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1629
|
+
signature: z.ZodMiniObject<{
|
|
1630
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1631
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1632
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1633
|
+
}, z.core.$strip>;
|
|
1634
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1635
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1636
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1637
|
+
publicKey: z.ZodMiniObject<{
|
|
1638
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1639
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1640
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1641
|
+
}, z.core.$strip>;
|
|
1642
|
+
signature: z.ZodMiniObject<{
|
|
1643
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1644
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1645
|
+
}, z.core.$strip>;
|
|
1646
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1647
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1648
|
+
metadata: z.ZodMiniObject<{
|
|
1649
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1650
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1651
|
+
}, z.core.$strip>;
|
|
1652
|
+
publicKey: z.ZodMiniObject<{
|
|
1653
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1654
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1655
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1656
|
+
}, z.core.$strip>;
|
|
1657
|
+
signature: z.ZodMiniObject<{
|
|
1658
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1659
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1660
|
+
}, z.core.$strip>;
|
|
1661
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1662
|
+
}, z.core.$strip>]>>>;
|
|
1701
1663
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1702
1664
|
}, z.core.$strip>]>;
|
|
1703
1665
|
}, z.core.$strip>>>>;
|
|
@@ -1723,73 +1685,9 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1723
1685
|
gas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1724
1686
|
gasPrice: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1725
1687
|
input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1726
|
-
keyAuthorization: z.ZodMiniOptional<z.
|
|
1727
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}
|
|
1728
|
-
isAdmin: z.ZodMiniBoolean<boolean
|
|
1729
|
-
chainId: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
|
|
1730
|
-
expiry: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1731
|
-
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1732
|
-
limit: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
|
|
1733
|
-
period: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1734
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1735
|
-
}, z.core.$strip>>>>;
|
|
1736
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1737
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1738
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1739
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1740
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1741
|
-
}, z.core.$strip>>>>;
|
|
1742
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1743
|
-
signature: z.ZodMiniObject<{
|
|
1744
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1745
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1746
|
-
yParity: z.ZodMiniNumber<number>;
|
|
1747
|
-
}, z.core.$strip>;
|
|
1748
|
-
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1749
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1750
|
-
prehash: z.ZodMiniBoolean<boolean>;
|
|
1751
|
-
publicKey: z.ZodMiniObject<{
|
|
1752
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1753
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1754
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1755
|
-
}, z.core.$strip>;
|
|
1756
|
-
signature: z.ZodMiniObject<{
|
|
1757
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1758
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1759
|
-
}, z.core.$strip>;
|
|
1760
|
-
type: z.ZodMiniLiteral<"p256">;
|
|
1761
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1762
|
-
metadata: z.ZodMiniObject<{
|
|
1763
|
-
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1764
|
-
clientDataJSON: z.ZodMiniString<string>;
|
|
1765
|
-
}, z.core.$strip>;
|
|
1766
|
-
publicKey: z.ZodMiniObject<{
|
|
1767
|
-
prefix: z.ZodMiniNumber<number>;
|
|
1768
|
-
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1769
|
-
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1770
|
-
}, z.core.$strip>;
|
|
1771
|
-
signature: z.ZodMiniObject<{
|
|
1772
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1773
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1774
|
-
}, z.core.$strip>;
|
|
1775
|
-
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1776
|
-
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1777
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1778
|
-
config: z.ZodMiniObject<{
|
|
1779
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1780
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1781
|
-
weight: z.ZodMiniNumber<number>;
|
|
1782
|
-
}, z.core.$strip>>>;
|
|
1783
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1784
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1785
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1786
|
-
}, z.core.$strip>;
|
|
1787
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1788
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1789
|
-
}, z.core.$strip>]>;
|
|
1790
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1791
|
-
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1792
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1688
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1689
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1690
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1793
1691
|
chainId: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
|
|
1794
1692
|
expiry: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
|
|
1795
1693
|
limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -1848,45 +1746,74 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1848
1746
|
threshold: z.ZodMiniNumber<number>;
|
|
1849
1747
|
version: z.ZodMiniBigInt<bigint>;
|
|
1850
1748
|
}, z.core.$strip>;
|
|
1851
|
-
signatures: z.
|
|
1749
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1750
|
+
signature: z.ZodMiniObject<{
|
|
1751
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1752
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1753
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1754
|
+
}, z.core.$strip>;
|
|
1755
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1756
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1757
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1758
|
+
publicKey: z.ZodMiniObject<{
|
|
1759
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1760
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1761
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1762
|
+
}, z.core.$strip>;
|
|
1763
|
+
signature: z.ZodMiniObject<{
|
|
1764
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1765
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1766
|
+
}, z.core.$strip>;
|
|
1767
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1768
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1769
|
+
metadata: z.ZodMiniObject<{
|
|
1770
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1771
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1772
|
+
}, z.core.$strip>;
|
|
1773
|
+
publicKey: z.ZodMiniObject<{
|
|
1774
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1775
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1776
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1777
|
+
}, z.core.$strip>;
|
|
1778
|
+
signature: z.ZodMiniObject<{
|
|
1779
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1780
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1781
|
+
}, z.core.$strip>;
|
|
1782
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1783
|
+
}, z.core.$strip>]>>>;
|
|
1852
1784
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1853
1785
|
}, z.core.$strip>]>;
|
|
1854
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1786
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
1855
1787
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1856
|
-
}, z.core.$strip
|
|
1788
|
+
}, z.core.$strip>>;
|
|
1857
1789
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1858
1790
|
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1859
|
-
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1791
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">, z.ZodMiniLiteral<"multisig">]>>;
|
|
1860
1792
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1861
1793
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1862
1794
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1795
|
+
keyAuthorizationSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1796
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1866
1797
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1867
1798
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1868
1799
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
1887
|
-
}, z.core.$strip>;
|
|
1888
|
-
}, z.core.$strip>;
|
|
1889
|
-
}, z.core.$strip>]>>>;
|
|
1800
|
+
}, z.core.$strict>>>;
|
|
1801
|
+
config: z.ZodMiniObject<{
|
|
1802
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1803
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1804
|
+
weight: z.ZodMiniNumber<number>;
|
|
1805
|
+
}, z.core.$strip>>>;
|
|
1806
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1807
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1808
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1809
|
+
}, z.core.$strip>;
|
|
1810
|
+
}, z.core.$strip>>;
|
|
1811
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1812
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1813
|
+
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1814
|
+
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1815
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1816
|
+
}, z.core.$strict>>>;
|
|
1890
1817
|
config: z.ZodMiniObject<{
|
|
1891
1818
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1892
1819
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1952,7 +1879,41 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1952
1879
|
threshold: z.ZodMiniNumber<number>;
|
|
1953
1880
|
version: z.ZodMiniBigInt<bigint>;
|
|
1954
1881
|
}, z.core.$strip>;
|
|
1955
|
-
signatures: z.
|
|
1882
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1883
|
+
signature: z.ZodMiniObject<{
|
|
1884
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1885
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1886
|
+
yParity: z.ZodMiniNumber<number>;
|
|
1887
|
+
}, z.core.$strip>;
|
|
1888
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
1889
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1890
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
1891
|
+
publicKey: z.ZodMiniObject<{
|
|
1892
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1893
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1894
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1895
|
+
}, z.core.$strip>;
|
|
1896
|
+
signature: z.ZodMiniObject<{
|
|
1897
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1898
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1899
|
+
}, z.core.$strip>;
|
|
1900
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
1901
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1902
|
+
metadata: z.ZodMiniObject<{
|
|
1903
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1904
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
1905
|
+
}, z.core.$strip>;
|
|
1906
|
+
publicKey: z.ZodMiniObject<{
|
|
1907
|
+
prefix: z.ZodMiniNumber<number>;
|
|
1908
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1909
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1910
|
+
}, z.core.$strip>;
|
|
1911
|
+
signature: z.ZodMiniObject<{
|
|
1912
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1913
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1914
|
+
}, z.core.$strip>;
|
|
1915
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1916
|
+
}, z.core.$strip>]>>>;
|
|
1956
1917
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1957
1918
|
}, z.core.$strip>]>>;
|
|
1958
1919
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|