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
|
@@ -60,18 +60,7 @@ export declare const TxEnvelopeTempo: z.ZodMiniObject<{
|
|
|
60
60
|
threshold: z.ZodMiniNumber<number>;
|
|
61
61
|
version: z.ZodMiniBigInt<bigint>;
|
|
62
62
|
}, z.core.$strip>;
|
|
63
|
-
signatures: z.
|
|
64
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
65
|
-
}, z.core.$strip>]>>;
|
|
66
|
-
accessList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
67
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
68
|
-
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
69
|
-
}, z.core.$strip>>>>;
|
|
70
|
-
authorizationList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
71
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
72
|
-
chainId: z.ZodMiniNumber<number>;
|
|
73
|
-
nonce: z.ZodMiniBigInt<bigint>;
|
|
74
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
63
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
75
64
|
signature: z.ZodMiniObject<{
|
|
76
65
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
77
66
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -105,59 +94,18 @@ export declare const TxEnvelopeTempo: z.ZodMiniObject<{
|
|
|
105
94
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
106
95
|
}, z.core.$strip>;
|
|
107
96
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
108
|
-
}, z.core.$strip
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
115
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
116
|
-
config: z.ZodMiniObject<{
|
|
117
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
118
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
119
|
-
weight: z.ZodMiniNumber<number>;
|
|
120
|
-
}, z.core.$strip>>>;
|
|
121
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
122
|
-
threshold: z.ZodMiniNumber<number>;
|
|
123
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
124
|
-
}, z.core.$strip>;
|
|
125
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
126
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
127
|
-
}, z.core.$strip>]>;
|
|
97
|
+
}, z.core.$strip>]>>>;
|
|
98
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
99
|
+
}, z.core.$strip>]>>;
|
|
100
|
+
accessList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
101
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
102
|
+
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
128
103
|
}, z.core.$strip>>>>;
|
|
129
|
-
|
|
130
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
131
|
-
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
132
|
-
value: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
133
|
-
}, z.core.$strip>>>;
|
|
134
|
-
chainId: z.ZodMiniNumber<number>;
|
|
135
|
-
feePayerSignature: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
136
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
137
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
138
|
-
v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
139
|
-
yParity: z.ZodMiniNumber<number>;
|
|
140
|
-
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
141
|
-
feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
142
|
-
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
143
|
-
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
144
|
-
keyAuthorization: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
145
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
146
|
-
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
104
|
+
authorizationList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
147
105
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
148
|
-
chainId: z.
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
152
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
153
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
154
|
-
}, z.core.$strip>>>>;
|
|
155
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
156
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
157
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
158
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
159
|
-
}, z.core.$strip>>>>;
|
|
160
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
106
|
+
chainId: z.ZodMiniNumber<number>;
|
|
107
|
+
nonce: z.ZodMiniBigInt<bigint>;
|
|
108
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
161
109
|
signature: z.ZodMiniObject<{
|
|
162
110
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
163
111
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -191,7 +139,13 @@ export declare const TxEnvelopeTempo: z.ZodMiniObject<{
|
|
|
191
139
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
192
140
|
}, z.core.$strip>;
|
|
193
141
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
194
|
-
}, z.core.$strip
|
|
142
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
143
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
144
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
145
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
146
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
147
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
148
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
195
149
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
196
150
|
config: z.ZodMiniObject<{
|
|
197
151
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -202,12 +156,62 @@ export declare const TxEnvelopeTempo: z.ZodMiniObject<{
|
|
|
202
156
|
threshold: z.ZodMiniNumber<number>;
|
|
203
157
|
version: z.ZodMiniBigInt<bigint>;
|
|
204
158
|
}, z.core.$strip>;
|
|
205
|
-
signatures: z.
|
|
159
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
160
|
+
signature: z.ZodMiniObject<{
|
|
161
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
162
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
163
|
+
yParity: z.ZodMiniNumber<number>;
|
|
164
|
+
}, z.core.$strip>;
|
|
165
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
166
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
167
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
168
|
+
publicKey: z.ZodMiniObject<{
|
|
169
|
+
prefix: z.ZodMiniNumber<number>;
|
|
170
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
171
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
172
|
+
}, z.core.$strip>;
|
|
173
|
+
signature: z.ZodMiniObject<{
|
|
174
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
175
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
176
|
+
}, z.core.$strip>;
|
|
177
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
178
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
179
|
+
metadata: z.ZodMiniObject<{
|
|
180
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
181
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
182
|
+
}, z.core.$strip>;
|
|
183
|
+
publicKey: z.ZodMiniObject<{
|
|
184
|
+
prefix: z.ZodMiniNumber<number>;
|
|
185
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
186
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
187
|
+
}, z.core.$strip>;
|
|
188
|
+
signature: z.ZodMiniObject<{
|
|
189
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
190
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
191
|
+
}, z.core.$strip>;
|
|
192
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
193
|
+
}, z.core.$strip>]>>>;
|
|
206
194
|
type: z.ZodMiniLiteral<"multisig">;
|
|
207
195
|
}, z.core.$strip>]>;
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
196
|
+
}, z.core.$strip>>>>;
|
|
197
|
+
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
198
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
199
|
+
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
200
|
+
value: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
201
|
+
}, z.core.$strip>>>;
|
|
202
|
+
chainId: z.ZodMiniNumber<number>;
|
|
203
|
+
feePayerSignature: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
204
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
205
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
206
|
+
v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
207
|
+
yParity: z.ZodMiniNumber<number>;
|
|
208
|
+
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
209
|
+
feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
210
|
+
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
211
|
+
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
212
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
213
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
214
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
211
215
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
212
216
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
213
217
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -266,12 +270,46 @@ export declare const TxEnvelopeTempo: z.ZodMiniObject<{
|
|
|
266
270
|
threshold: z.ZodMiniNumber<number>;
|
|
267
271
|
version: z.ZodMiniBigInt<bigint>;
|
|
268
272
|
}, z.core.$strip>;
|
|
269
|
-
signatures: z.
|
|
273
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
274
|
+
signature: z.ZodMiniObject<{
|
|
275
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
276
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
277
|
+
yParity: z.ZodMiniNumber<number>;
|
|
278
|
+
}, z.core.$strip>;
|
|
279
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
280
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
281
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
282
|
+
publicKey: z.ZodMiniObject<{
|
|
283
|
+
prefix: z.ZodMiniNumber<number>;
|
|
284
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
285
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
286
|
+
}, z.core.$strip>;
|
|
287
|
+
signature: z.ZodMiniObject<{
|
|
288
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
289
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
290
|
+
}, z.core.$strip>;
|
|
291
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
292
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
293
|
+
metadata: z.ZodMiniObject<{
|
|
294
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
295
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
296
|
+
}, z.core.$strip>;
|
|
297
|
+
publicKey: z.ZodMiniObject<{
|
|
298
|
+
prefix: z.ZodMiniNumber<number>;
|
|
299
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
300
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
301
|
+
}, z.core.$strip>;
|
|
302
|
+
signature: z.ZodMiniObject<{
|
|
303
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
304
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
305
|
+
}, z.core.$strip>;
|
|
306
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
307
|
+
}, z.core.$strip>]>>>;
|
|
270
308
|
type: z.ZodMiniLiteral<"multisig">;
|
|
271
309
|
}, z.core.$strip>]>;
|
|
272
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
310
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
273
311
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
274
|
-
}, z.core.$strip
|
|
312
|
+
}, z.core.$strip>>;
|
|
275
313
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
276
314
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
277
315
|
nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
@@ -333,18 +371,7 @@ export declare const Signed: z.ZodMiniObject<{
|
|
|
333
371
|
threshold: z.ZodMiniNumber<number>;
|
|
334
372
|
version: z.ZodMiniBigInt<bigint>;
|
|
335
373
|
}, z.core.$strip>;
|
|
336
|
-
signatures: z.
|
|
337
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
338
|
-
}, z.core.$strip>]>;
|
|
339
|
-
accessList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
340
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
341
|
-
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
342
|
-
}, z.core.$strip>>>>;
|
|
343
|
-
authorizationList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
344
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
345
|
-
chainId: z.ZodMiniNumber<number>;
|
|
346
|
-
nonce: z.ZodMiniBigInt<bigint>;
|
|
347
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
374
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
348
375
|
signature: z.ZodMiniObject<{
|
|
349
376
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
350
377
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -378,59 +405,18 @@ export declare const Signed: z.ZodMiniObject<{
|
|
|
378
405
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
379
406
|
}, z.core.$strip>;
|
|
380
407
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
381
|
-
}, z.core.$strip
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
388
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
389
|
-
config: z.ZodMiniObject<{
|
|
390
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
391
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
392
|
-
weight: z.ZodMiniNumber<number>;
|
|
393
|
-
}, z.core.$strip>>>;
|
|
394
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
395
|
-
threshold: z.ZodMiniNumber<number>;
|
|
396
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
397
|
-
}, z.core.$strip>;
|
|
398
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
399
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
400
|
-
}, z.core.$strip>]>;
|
|
408
|
+
}, z.core.$strip>]>>>;
|
|
409
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
410
|
+
}, z.core.$strip>]>;
|
|
411
|
+
accessList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
412
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
413
|
+
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
401
414
|
}, z.core.$strip>>>>;
|
|
402
|
-
|
|
403
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
404
|
-
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
405
|
-
value: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
406
|
-
}, z.core.$strip>>>;
|
|
407
|
-
chainId: z.ZodMiniNumber<number>;
|
|
408
|
-
feePayerSignature: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
409
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
410
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
411
|
-
v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
412
|
-
yParity: z.ZodMiniNumber<number>;
|
|
413
|
-
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
414
|
-
feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
415
|
-
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
416
|
-
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
417
|
-
keyAuthorization: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
418
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
419
|
-
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
415
|
+
authorizationList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
420
416
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
421
|
-
chainId: z.
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
425
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
426
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
427
|
-
}, z.core.$strip>>>>;
|
|
428
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
429
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
430
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
431
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
432
|
-
}, z.core.$strip>>>>;
|
|
433
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
417
|
+
chainId: z.ZodMiniNumber<number>;
|
|
418
|
+
nonce: z.ZodMiniBigInt<bigint>;
|
|
419
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
434
420
|
signature: z.ZodMiniObject<{
|
|
435
421
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
436
422
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -464,7 +450,13 @@ export declare const Signed: z.ZodMiniObject<{
|
|
|
464
450
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
465
451
|
}, z.core.$strip>;
|
|
466
452
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
467
|
-
}, z.core.$strip
|
|
453
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
454
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
455
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
456
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
457
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
458
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
459
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
468
460
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
469
461
|
config: z.ZodMiniObject<{
|
|
470
462
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -475,12 +467,62 @@ export declare const Signed: z.ZodMiniObject<{
|
|
|
475
467
|
threshold: z.ZodMiniNumber<number>;
|
|
476
468
|
version: z.ZodMiniBigInt<bigint>;
|
|
477
469
|
}, z.core.$strip>;
|
|
478
|
-
signatures: z.
|
|
470
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
471
|
+
signature: z.ZodMiniObject<{
|
|
472
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
473
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
474
|
+
yParity: z.ZodMiniNumber<number>;
|
|
475
|
+
}, z.core.$strip>;
|
|
476
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
477
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
478
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
479
|
+
publicKey: z.ZodMiniObject<{
|
|
480
|
+
prefix: z.ZodMiniNumber<number>;
|
|
481
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
482
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
483
|
+
}, z.core.$strip>;
|
|
484
|
+
signature: z.ZodMiniObject<{
|
|
485
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
486
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
487
|
+
}, z.core.$strip>;
|
|
488
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
489
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
490
|
+
metadata: z.ZodMiniObject<{
|
|
491
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
492
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
493
|
+
}, z.core.$strip>;
|
|
494
|
+
publicKey: z.ZodMiniObject<{
|
|
495
|
+
prefix: z.ZodMiniNumber<number>;
|
|
496
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
497
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
498
|
+
}, z.core.$strip>;
|
|
499
|
+
signature: z.ZodMiniObject<{
|
|
500
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
501
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
502
|
+
}, z.core.$strip>;
|
|
503
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
504
|
+
}, z.core.$strip>]>>>;
|
|
479
505
|
type: z.ZodMiniLiteral<"multisig">;
|
|
480
506
|
}, z.core.$strip>]>;
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
507
|
+
}, z.core.$strip>>>>;
|
|
508
|
+
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
509
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
510
|
+
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
511
|
+
value: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
512
|
+
}, z.core.$strip>>>;
|
|
513
|
+
chainId: z.ZodMiniNumber<number>;
|
|
514
|
+
feePayerSignature: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
515
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
516
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
517
|
+
v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
518
|
+
yParity: z.ZodMiniNumber<number>;
|
|
519
|
+
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
520
|
+
feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
521
|
+
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
522
|
+
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
523
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
524
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
525
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
484
526
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
485
527
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
486
528
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -539,12 +581,46 @@ export declare const Signed: z.ZodMiniObject<{
|
|
|
539
581
|
threshold: z.ZodMiniNumber<number>;
|
|
540
582
|
version: z.ZodMiniBigInt<bigint>;
|
|
541
583
|
}, z.core.$strip>;
|
|
542
|
-
signatures: z.
|
|
584
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
585
|
+
signature: z.ZodMiniObject<{
|
|
586
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
587
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
588
|
+
yParity: z.ZodMiniNumber<number>;
|
|
589
|
+
}, z.core.$strip>;
|
|
590
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
591
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
592
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
593
|
+
publicKey: z.ZodMiniObject<{
|
|
594
|
+
prefix: z.ZodMiniNumber<number>;
|
|
595
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
596
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
597
|
+
}, z.core.$strip>;
|
|
598
|
+
signature: z.ZodMiniObject<{
|
|
599
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
600
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
601
|
+
}, z.core.$strip>;
|
|
602
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
603
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
604
|
+
metadata: z.ZodMiniObject<{
|
|
605
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
606
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
607
|
+
}, z.core.$strip>;
|
|
608
|
+
publicKey: z.ZodMiniObject<{
|
|
609
|
+
prefix: z.ZodMiniNumber<number>;
|
|
610
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
611
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
612
|
+
}, z.core.$strip>;
|
|
613
|
+
signature: z.ZodMiniObject<{
|
|
614
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
615
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
616
|
+
}, z.core.$strip>;
|
|
617
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
618
|
+
}, z.core.$strip>]>>>;
|
|
543
619
|
type: z.ZodMiniLiteral<"multisig">;
|
|
544
620
|
}, z.core.$strip>]>;
|
|
545
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
621
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
546
622
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
547
|
-
}, z.core.$strip
|
|
623
|
+
}, z.core.$strip>>;
|
|
548
624
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
549
625
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
550
626
|
nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
@@ -606,18 +682,7 @@ export declare const serialized: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${st
|
|
|
606
682
|
threshold: z.ZodMiniNumber<number>;
|
|
607
683
|
version: z.ZodMiniBigInt<bigint>;
|
|
608
684
|
}, z.core.$strip>;
|
|
609
|
-
signatures: z.
|
|
610
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
611
|
-
}, z.core.$strip>]>;
|
|
612
|
-
accessList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
613
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
614
|
-
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
615
|
-
}, z.core.$strip>>>>;
|
|
616
|
-
authorizationList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
617
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
618
|
-
chainId: z.ZodMiniNumber<number>;
|
|
619
|
-
nonce: z.ZodMiniBigInt<bigint>;
|
|
620
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
685
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
621
686
|
signature: z.ZodMiniObject<{
|
|
622
687
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
623
688
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -651,59 +716,18 @@ export declare const serialized: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${st
|
|
|
651
716
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
652
717
|
}, z.core.$strip>;
|
|
653
718
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
654
|
-
}, z.core.$strip
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
661
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
662
|
-
config: z.ZodMiniObject<{
|
|
663
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
664
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
665
|
-
weight: z.ZodMiniNumber<number>;
|
|
666
|
-
}, z.core.$strip>>>;
|
|
667
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
668
|
-
threshold: z.ZodMiniNumber<number>;
|
|
669
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
670
|
-
}, z.core.$strip>;
|
|
671
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
672
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
673
|
-
}, z.core.$strip>]>;
|
|
719
|
+
}, z.core.$strip>]>>>;
|
|
720
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
721
|
+
}, z.core.$strip>]>;
|
|
722
|
+
accessList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
723
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
724
|
+
storageKeys: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
674
725
|
}, z.core.$strip>>>>;
|
|
675
|
-
|
|
676
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
677
|
-
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
678
|
-
value: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
679
|
-
}, z.core.$strip>>>;
|
|
680
|
-
chainId: z.ZodMiniNumber<number>;
|
|
681
|
-
feePayerSignature: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
682
|
-
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
683
|
-
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
684
|
-
v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
685
|
-
yParity: z.ZodMiniNumber<number>;
|
|
686
|
-
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
687
|
-
feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
688
|
-
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
689
|
-
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
690
|
-
keyAuthorization: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
691
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
692
|
-
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
726
|
+
authorizationList: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
693
727
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
694
|
-
chainId: z.
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
limit: z.ZodMiniBigInt<bigint>;
|
|
698
|
-
period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
699
|
-
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
700
|
-
}, z.core.$strip>>>>;
|
|
701
|
-
scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
702
|
-
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
703
|
-
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
704
|
-
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
705
|
-
}, z.core.$strip>>>>;
|
|
706
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
728
|
+
chainId: z.ZodMiniNumber<number>;
|
|
729
|
+
nonce: z.ZodMiniBigInt<bigint>;
|
|
730
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
707
731
|
signature: z.ZodMiniObject<{
|
|
708
732
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
709
733
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -737,7 +761,13 @@ export declare const serialized: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${st
|
|
|
737
761
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
738
762
|
}, z.core.$strip>;
|
|
739
763
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
740
|
-
}, z.core.$strip
|
|
764
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
765
|
+
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
766
|
+
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
767
|
+
type: z.ZodMiniLiteral<"keychain">;
|
|
768
|
+
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
769
|
+
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
770
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
741
771
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
742
772
|
config: z.ZodMiniObject<{
|
|
743
773
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -748,12 +778,62 @@ export declare const serialized: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${st
|
|
|
748
778
|
threshold: z.ZodMiniNumber<number>;
|
|
749
779
|
version: z.ZodMiniBigInt<bigint>;
|
|
750
780
|
}, z.core.$strip>;
|
|
751
|
-
signatures: z.
|
|
781
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
782
|
+
signature: z.ZodMiniObject<{
|
|
783
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
784
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
785
|
+
yParity: z.ZodMiniNumber<number>;
|
|
786
|
+
}, z.core.$strip>;
|
|
787
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
788
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
789
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
790
|
+
publicKey: z.ZodMiniObject<{
|
|
791
|
+
prefix: z.ZodMiniNumber<number>;
|
|
792
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
793
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
794
|
+
}, z.core.$strip>;
|
|
795
|
+
signature: z.ZodMiniObject<{
|
|
796
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
797
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
798
|
+
}, z.core.$strip>;
|
|
799
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
800
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
801
|
+
metadata: z.ZodMiniObject<{
|
|
802
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
803
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
804
|
+
}, z.core.$strip>;
|
|
805
|
+
publicKey: z.ZodMiniObject<{
|
|
806
|
+
prefix: z.ZodMiniNumber<number>;
|
|
807
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
808
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
809
|
+
}, z.core.$strip>;
|
|
810
|
+
signature: z.ZodMiniObject<{
|
|
811
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
812
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
813
|
+
}, z.core.$strip>;
|
|
814
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
815
|
+
}, z.core.$strip>]>>>;
|
|
752
816
|
type: z.ZodMiniLiteral<"multisig">;
|
|
753
817
|
}, z.core.$strip>]>;
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
818
|
+
}, z.core.$strip>>>>;
|
|
819
|
+
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
820
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
821
|
+
to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
822
|
+
value: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
823
|
+
}, z.core.$strip>>>;
|
|
824
|
+
chainId: z.ZodMiniNumber<number>;
|
|
825
|
+
feePayerSignature: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
826
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
827
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
828
|
+
v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
829
|
+
yParity: z.ZodMiniNumber<number>;
|
|
830
|
+
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
831
|
+
feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
832
|
+
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
833
|
+
gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
834
|
+
keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
835
|
+
account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
836
|
+
isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
757
837
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
758
838
|
chainId: z.ZodMiniBigInt<bigint>;
|
|
759
839
|
expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -812,12 +892,46 @@ export declare const serialized: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${st
|
|
|
812
892
|
threshold: z.ZodMiniNumber<number>;
|
|
813
893
|
version: z.ZodMiniBigInt<bigint>;
|
|
814
894
|
}, z.core.$strip>;
|
|
815
|
-
signatures: z.
|
|
895
|
+
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
896
|
+
signature: z.ZodMiniObject<{
|
|
897
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
898
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
899
|
+
yParity: z.ZodMiniNumber<number>;
|
|
900
|
+
}, z.core.$strip>;
|
|
901
|
+
type: z.ZodMiniLiteral<"secp256k1">;
|
|
902
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
903
|
+
prehash: z.ZodMiniBoolean<boolean>;
|
|
904
|
+
publicKey: z.ZodMiniObject<{
|
|
905
|
+
prefix: z.ZodMiniNumber<number>;
|
|
906
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
907
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
908
|
+
}, z.core.$strip>;
|
|
909
|
+
signature: z.ZodMiniObject<{
|
|
910
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
911
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
912
|
+
}, z.core.$strip>;
|
|
913
|
+
type: z.ZodMiniLiteral<"p256">;
|
|
914
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
915
|
+
metadata: z.ZodMiniObject<{
|
|
916
|
+
authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
917
|
+
clientDataJSON: z.ZodMiniString<string>;
|
|
918
|
+
}, z.core.$strip>;
|
|
919
|
+
publicKey: z.ZodMiniObject<{
|
|
920
|
+
prefix: z.ZodMiniNumber<number>;
|
|
921
|
+
x: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
922
|
+
y: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
923
|
+
}, z.core.$strip>;
|
|
924
|
+
signature: z.ZodMiniObject<{
|
|
925
|
+
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
926
|
+
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
927
|
+
}, z.core.$strip>;
|
|
928
|
+
type: z.ZodMiniLiteral<"webAuthn">;
|
|
929
|
+
}, z.core.$strip>]>>>;
|
|
816
930
|
type: z.ZodMiniLiteral<"multisig">;
|
|
817
931
|
}, z.core.$strip>]>;
|
|
818
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
932
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
|
|
819
933
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
820
|
-
}, z.core.$strip
|
|
934
|
+
}, z.core.$strip>>;
|
|
821
935
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
822
936
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
823
937
|
nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|