ox 1.7.2 → 1.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist/tempo/KeyAuthorization.d.ts +1 -1
- package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/tempo/MultisigOperation.d.ts +42 -26
- package/dist/tempo/MultisigOperation.d.ts.map +1 -1
- package/dist/tempo/MultisigOperation.js +78 -48
- package/dist/tempo/MultisigOperation.js.map +1 -1
- package/dist/tempo/MultisigSimulation.d.ts +132 -0
- package/dist/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/tempo/MultisigSimulation.js +140 -0
- package/dist/tempo/MultisigSimulation.js.map +1 -0
- package/dist/tempo/RpcSchemaTempo.d.ts +20 -10
- package/dist/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +9 -20
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +12 -18
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/tempo/TransactionRequest.d.ts +6 -6
- package/dist/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/tempo/TransactionRequest.js +7 -7
- package/dist/tempo/TransactionRequest.js.map +1 -1
- package/dist/tempo/index.d.ts +4 -4
- package/dist/tempo/index.d.ts.map +1 -1
- package/dist/tempo/index.js +4 -4
- package/dist/tempo/index.js.map +1 -1
- package/dist/zod/tempo/AuthorizationTempo.d.ts +10 -130
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +5 -65
- package/dist/zod/tempo/KeyAuthorization.d.ts.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/{MultisigWitness.d.ts → MultisigSimulation.d.ts} +17 -49
- package/dist/zod/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/zod/tempo/{MultisigWitness.js → MultisigSimulation.js} +26 -24
- package/dist/zod/tempo/MultisigSimulation.js.map +1 -0
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +83 -204
- 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 +3 -39
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +4 -14
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +18 -234
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +36 -192
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.js +10 -10
- package/dist/zod/tempo/TransactionRequest.js.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/tempo/AuthorizationTempo.test.ts +4 -0
- package/src/tempo/KeyAuthorization.test-d.ts +1 -12
- package/src/tempo/KeyAuthorization.test.ts +44 -3
- package/src/tempo/KeyAuthorization.ts +3 -3
- package/src/tempo/MultisigOperation.test-d.ts +8 -6
- package/src/tempo/MultisigOperation.test.ts +236 -169
- package/src/tempo/MultisigOperation.ts +122 -83
- package/src/tempo/MultisigSimulation.test-d.ts +33 -0
- package/src/tempo/MultisigSimulation.test.ts +283 -0
- package/src/tempo/MultisigSimulation.ts +266 -0
- package/src/tempo/RpcSchemaTempo.test-d.ts +45 -10
- package/src/tempo/RpcSchemaTempo.ts +15 -6
- package/src/tempo/SignatureEnvelope.test-d.ts +3 -59
- package/src/tempo/SignatureEnvelope.test.ts +61 -51
- package/src/tempo/SignatureEnvelope.ts +27 -44
- package/src/tempo/Transaction.test.ts +61 -0
- package/src/tempo/TransactionRequest.test-d.ts +7 -7
- package/src/tempo/TransactionRequest.test.ts +129 -208
- package/src/tempo/TransactionRequest.ts +16 -12
- package/src/tempo/index.ts +4 -4
- package/src/tempo/multisig.e2e.test.ts +51 -1
- package/src/version.ts +1 -1
- package/src/zod/tempo/MultisigOperation.ts +0 -3
- package/src/zod/tempo/{MultisigWitness.ts → MultisigSimulation.ts} +39 -42
- package/src/zod/tempo/RpcSchemaTempo.ts +20 -10
- package/src/zod/tempo/SignatureEnvelope.ts +11 -35
- package/src/zod/tempo/TransactionRequest.ts +14 -14
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +2 -15
- 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 +78 -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 +58 -112
- package/src/zod/tempo/_test/TransactionRequest.test.ts +19 -160
- 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.map +0 -1
- 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/_test/MultisigWitness.test-d.ts +0 -13
- package/src/zod/tempo/_test/MultisigWitness.test.ts +0 -149
|
@@ -52,19 +52,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
52
52
|
type: z.ZodMiniLiteral<"keychain">;
|
|
53
53
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
54
54
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
55
|
-
}, z.core.$strip>, z.
|
|
56
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
57
|
-
config: z.ZodMiniObject<{
|
|
58
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
59
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
60
|
-
weight: z.ZodMiniNumber<number>;
|
|
61
|
-
}, z.core.$strip>>>;
|
|
62
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
63
|
-
threshold: z.ZodMiniNumber<number>;
|
|
64
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
65
|
-
}, z.core.$strip>;
|
|
66
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
67
|
-
}, z.core.$strict>]>;
|
|
55
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
68
56
|
}, z.core.$strip>>>>;
|
|
69
57
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
70
58
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -127,19 +115,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
127
115
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
128
116
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
129
117
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
130
|
-
}, z.core.$strip>]>, z.
|
|
131
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
132
|
-
config: z.ZodMiniObject<{
|
|
133
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
134
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
135
|
-
weight: z.ZodMiniNumber<number>;
|
|
136
|
-
}, z.core.$strip>>>;
|
|
137
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
138
|
-
threshold: z.ZodMiniNumber<number>;
|
|
139
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
140
|
-
}, z.core.$strip>;
|
|
141
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
142
|
-
}, z.core.$strict>]>;
|
|
118
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
143
119
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
144
120
|
}, z.core.$strip>>;
|
|
145
121
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -148,7 +124,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
148
124
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
149
125
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
150
126
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
151
|
-
|
|
127
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
152
128
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
153
129
|
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
154
130
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -156,34 +132,18 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
156
132
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
157
133
|
type: z.ZodMiniLiteral<"primitive">;
|
|
158
134
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
159
|
-
|
|
160
|
-
witness: z.ZodMiniObject<{
|
|
135
|
+
spec: z.ZodMiniObject<{
|
|
161
136
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
162
137
|
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
163
138
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
164
139
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
165
140
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
166
141
|
}, z.core.$strip>>>;
|
|
167
|
-
config: z.
|
|
168
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
169
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
170
|
-
weight: z.ZodMiniNumber<number>;
|
|
171
|
-
}, z.core.$strip>>>;
|
|
172
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
173
|
-
threshold: z.ZodMiniNumber<number>;
|
|
174
|
-
version: z.ZodMiniNumber<number>;
|
|
175
|
-
}, z.core.$strip>;
|
|
142
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
176
143
|
}, z.core.$strip>;
|
|
144
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
177
145
|
}, z.core.$strip>]>>>;
|
|
178
|
-
config: z.
|
|
179
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
180
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
181
|
-
weight: z.ZodMiniNumber<number>;
|
|
182
|
-
}, z.core.$strip>>>;
|
|
183
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
184
|
-
threshold: z.ZodMiniNumber<number>;
|
|
185
|
-
version: z.ZodMiniNumber<number>;
|
|
186
|
-
}, z.core.$strip>;
|
|
146
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
187
147
|
}, z.core.$strip>>;
|
|
188
148
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
189
149
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -215,19 +175,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
215
175
|
type: z.ZodMiniLiteral<"keychain">;
|
|
216
176
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
217
177
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
218
|
-
}, z.core.$strip>, z.
|
|
219
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
220
|
-
config: z.ZodMiniObject<{
|
|
221
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
222
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
223
|
-
weight: z.ZodMiniNumber<number>;
|
|
224
|
-
}, z.core.$strip>>>;
|
|
225
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
226
|
-
threshold: z.ZodMiniNumber<number>;
|
|
227
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
228
|
-
}, z.core.$strip>;
|
|
229
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
230
|
-
}, z.core.$strict>]>>;
|
|
178
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
231
179
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
232
180
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
233
181
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -458,7 +406,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
458
406
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
459
407
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
460
408
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
461
|
-
|
|
409
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
462
410
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
463
411
|
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
464
412
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -466,8 +414,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
466
414
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
467
415
|
type: z.ZodMiniLiteral<"primitive">;
|
|
468
416
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
469
|
-
|
|
470
|
-
witness: z.ZodMiniObject<{
|
|
417
|
+
spec: z.ZodMiniObject<{
|
|
471
418
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
472
419
|
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
473
420
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -484,6 +431,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
484
431
|
version: z.ZodMiniBigInt<bigint>;
|
|
485
432
|
}, z.core.$strip>;
|
|
486
433
|
}, z.core.$strip>;
|
|
434
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
487
435
|
}, z.core.$strip>]>>>;
|
|
488
436
|
config: z.ZodMiniObject<{
|
|
489
437
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -1103,19 +1051,7 @@ export declare const Tempo: {
|
|
|
1103
1051
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1104
1052
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1105
1053
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1106
|
-
}, z.core.$strip>, z.
|
|
1107
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1108
|
-
config: z.ZodMiniObject<{
|
|
1109
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1110
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1111
|
-
weight: z.ZodMiniNumber<number>;
|
|
1112
|
-
}, z.core.$strip>>>;
|
|
1113
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1114
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1115
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1116
|
-
}, z.core.$strip>;
|
|
1117
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1118
|
-
}, z.core.$strict>]>;
|
|
1054
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1119
1055
|
}, z.core.$strip>>>>;
|
|
1120
1056
|
blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1121
1057
|
blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
@@ -1178,19 +1114,7 @@ export declare const Tempo: {
|
|
|
1178
1114
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1179
1115
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1180
1116
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1181
|
-
}, z.core.$strip>]>, z.
|
|
1182
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1183
|
-
config: z.ZodMiniObject<{
|
|
1184
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1185
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1186
|
-
weight: z.ZodMiniNumber<number>;
|
|
1187
|
-
}, z.core.$strip>>>;
|
|
1188
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1189
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1190
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1191
|
-
}, z.core.$strip>;
|
|
1192
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1193
|
-
}, z.core.$strict>]>;
|
|
1117
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1194
1118
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1195
1119
|
}, z.core.$strip>>;
|
|
1196
1120
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1199,7 +1123,7 @@ export declare const Tempo: {
|
|
|
1199
1123
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1200
1124
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1201
1125
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1202
|
-
|
|
1126
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1203
1127
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1204
1128
|
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1205
1129
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1207,34 +1131,18 @@ export declare const Tempo: {
|
|
|
1207
1131
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1208
1132
|
type: z.ZodMiniLiteral<"primitive">;
|
|
1209
1133
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1210
|
-
|
|
1211
|
-
witness: z.ZodMiniObject<{
|
|
1134
|
+
spec: z.ZodMiniObject<{
|
|
1212
1135
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1213
1136
|
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1214
1137
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1215
1138
|
keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
|
|
1216
1139
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1217
1140
|
}, z.core.$strip>>>;
|
|
1218
|
-
config: z.
|
|
1219
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1220
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1221
|
-
weight: z.ZodMiniNumber<number>;
|
|
1222
|
-
}, z.core.$strip>>>;
|
|
1223
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1224
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1225
|
-
version: z.ZodMiniNumber<number>;
|
|
1226
|
-
}, z.core.$strip>;
|
|
1141
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1227
1142
|
}, z.core.$strip>;
|
|
1143
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1228
1144
|
}, z.core.$strip>]>>>;
|
|
1229
|
-
config: z.
|
|
1230
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1231
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1232
|
-
weight: z.ZodMiniNumber<number>;
|
|
1233
|
-
}, z.core.$strip>>>;
|
|
1234
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1235
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1236
|
-
version: z.ZodMiniNumber<number>;
|
|
1237
|
-
}, z.core.$strip>;
|
|
1145
|
+
config: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1238
1146
|
}, z.core.$strip>>;
|
|
1239
1147
|
nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1240
1148
|
nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1266,19 +1174,7 @@ export declare const Tempo: {
|
|
|
1266
1174
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1267
1175
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1268
1176
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1269
|
-
}, z.core.$strip>, z.
|
|
1270
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1271
|
-
config: z.ZodMiniObject<{
|
|
1272
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1273
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1274
|
-
weight: z.ZodMiniNumber<number>;
|
|
1275
|
-
}, z.core.$strip>>>;
|
|
1276
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1277
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1278
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1279
|
-
}, z.core.$strip>;
|
|
1280
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1281
|
-
}, z.core.$strict>]>>;
|
|
1177
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
1282
1178
|
to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
|
|
1283
1179
|
type: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1284
1180
|
v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1509,7 +1405,7 @@ export declare const Tempo: {
|
|
|
1509
1405
|
maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1510
1406
|
maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1511
1407
|
maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
|
|
1512
|
-
|
|
1408
|
+
multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1513
1409
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1514
1410
|
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1515
1411
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1517,8 +1413,7 @@ export declare const Tempo: {
|
|
|
1517
1413
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1518
1414
|
type: z.ZodMiniLiteral<"primitive">;
|
|
1519
1415
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1520
|
-
|
|
1521
|
-
witness: z.ZodMiniObject<{
|
|
1416
|
+
spec: z.ZodMiniObject<{
|
|
1522
1417
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1523
1418
|
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1524
1419
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1535,6 +1430,7 @@ export declare const Tempo: {
|
|
|
1535
1430
|
version: z.ZodMiniBigInt<bigint>;
|
|
1536
1431
|
}, z.core.$strip>;
|
|
1537
1432
|
}, z.core.$strip>;
|
|
1433
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1538
1434
|
}, z.core.$strip>]>>>;
|
|
1539
1435
|
config: z.ZodMiniObject<{
|
|
1540
1436
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -2101,44 +1997,6 @@ export declare const Tempo: {
|
|
|
2101
1997
|
}, z.core.$strip>>;
|
|
2102
1998
|
}, z.core.$strip>>;
|
|
2103
1999
|
};
|
|
2104
|
-
/** Schema for the `multisig_approveRawTransaction` JSON-RPC method. */
|
|
2105
|
-
export declare const multisig_approveRawTransaction: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransaction", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2106
|
-
/** Schema for the `multisig_approveRawTransactionSync` JSON-RPC method. */
|
|
2107
|
-
export declare const multisig_approveRawTransactionSync: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransactionSync", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniOptional<z.ZodMiniNumber<number>>], null>, z.ZodMiniObject<{
|
|
2108
|
-
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2109
|
-
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
2110
|
-
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2111
|
-
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2112
|
-
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2113
|
-
type: z.ZodMiniLiteral<"transaction">;
|
|
2114
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2115
|
-
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2116
|
-
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2117
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2118
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2119
|
-
weight: z.ZodMiniNumber<number>;
|
|
2120
|
-
}, z.core.$strip>>>;
|
|
2121
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2122
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2123
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2124
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2125
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2126
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2127
|
-
weight: z.ZodMiniNumber<number>;
|
|
2128
|
-
}, z.core.$strip>>>;
|
|
2129
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2130
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2131
|
-
version: z.ZodMiniBigInt<bigint>;
|
|
2132
|
-
}, z.core.$strip>>;
|
|
2133
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2134
|
-
createdAt: z.ZodMiniNumber<number>;
|
|
2135
|
-
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2136
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2137
|
-
signatureCount: z.ZodMiniNumber<number>;
|
|
2138
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2139
|
-
updatedAt: z.ZodMiniNumber<number>;
|
|
2140
|
-
weight: z.ZodMiniNumber<number>;
|
|
2141
|
-
}, z.core.$strip>>;
|
|
2142
2000
|
/** Schema for the `multisig_approveKeyAuthorization` JSON-RPC method. */
|
|
2143
2001
|
export declare const multisig_approveKeyAuthorization: import("../internal/rpcSchemas/from.js").Item<"multisig_approveKeyAuthorization", z.ZodMiniTuple<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2144
2002
|
keyAuthorization: z.ZodMiniObject<{
|
|
@@ -2180,19 +2038,7 @@ export declare const multisig_approveKeyAuthorization: import("../internal/rpcSc
|
|
|
2180
2038
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2181
2039
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2182
2040
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2183
|
-
}, z.core.$strip>]>, z.
|
|
2184
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2185
|
-
config: z.ZodMiniObject<{
|
|
2186
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2187
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2188
|
-
weight: z.ZodMiniNumber<number>;
|
|
2189
|
-
}, z.core.$strip>>>;
|
|
2190
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2191
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2192
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2193
|
-
}, z.core.$strip>;
|
|
2194
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2195
|
-
}, z.core.$strict>]>;
|
|
2041
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
2196
2042
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2197
2043
|
}, z.core.$strip>;
|
|
2198
2044
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
@@ -2221,15 +2067,61 @@ export declare const multisig_approveKeyAuthorization: import("../internal/rpcSc
|
|
|
2221
2067
|
threshold: z.ZodMiniNumber<number>;
|
|
2222
2068
|
version: z.ZodMiniBigInt<bigint>;
|
|
2223
2069
|
}, z.core.$strip>>;
|
|
2224
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2225
2070
|
createdAt: z.ZodMiniNumber<number>;
|
|
2226
2071
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2227
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2228
2072
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2229
2073
|
threshold: z.ZodMiniNumber<number>;
|
|
2230
2074
|
updatedAt: z.ZodMiniNumber<number>;
|
|
2231
2075
|
weight: z.ZodMiniNumber<number>;
|
|
2232
2076
|
}, z.core.$strip>>;
|
|
2077
|
+
/** Schema for the `multisig_approveRawTransaction` JSON-RPC method. */
|
|
2078
|
+
export declare const multisig_approveRawTransaction: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransaction", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2079
|
+
/** Schema for the `multisig_approveRawTransactionSync` JSON-RPC method. */
|
|
2080
|
+
export declare const multisig_approveRawTransactionSync: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransactionSync", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniOptional<z.ZodMiniNumber<number>>], null>, z.ZodMiniObject<{
|
|
2081
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2082
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
2083
|
+
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2084
|
+
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2085
|
+
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2086
|
+
type: z.ZodMiniLiteral<"transaction">;
|
|
2087
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2088
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2089
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
2090
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2091
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2092
|
+
weight: z.ZodMiniNumber<number>;
|
|
2093
|
+
}, z.core.$strip>>>;
|
|
2094
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2095
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2096
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2097
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2098
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2099
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2100
|
+
weight: z.ZodMiniNumber<number>;
|
|
2101
|
+
}, z.core.$strip>>>;
|
|
2102
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2103
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2104
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2105
|
+
}, z.core.$strip>>;
|
|
2106
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
2107
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2108
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
2109
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2110
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
2111
|
+
weight: z.ZodMiniNumber<number>;
|
|
2112
|
+
}, z.core.$strip>>;
|
|
2113
|
+
/** Schema for the `multisig_getConfig` JSON-RPC method. */
|
|
2114
|
+
export declare const multisig_getConfig: import("../internal/rpcSchemas/from.js").Item<"multisig_getConfig", z.ZodMiniTuple<readonly [z.ZodMiniObject<{
|
|
2115
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2116
|
+
}, z.core.$strip>], null>, z.ZodMiniNullable<z.ZodMiniObject<{
|
|
2117
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2118
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2119
|
+
weight: z.ZodMiniNumber<number>;
|
|
2120
|
+
}, z.core.$strip>>>;
|
|
2121
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2122
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2123
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2124
|
+
}, z.core.$strip>>>;
|
|
2233
2125
|
/** Schema for the `multisig_getOperation` JSON-RPC method. */
|
|
2234
2126
|
export declare const multisig_getOperation: import("../internal/rpcSchemas/from.js").Item<"multisig_getOperation", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniNullable<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2235
2127
|
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -2257,10 +2149,8 @@ export declare const multisig_getOperation: import("../internal/rpcSchemas/from.
|
|
|
2257
2149
|
threshold: z.ZodMiniNumber<number>;
|
|
2258
2150
|
version: z.ZodMiniBigInt<bigint>;
|
|
2259
2151
|
}, z.core.$strip>>;
|
|
2260
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2261
2152
|
createdAt: z.ZodMiniNumber<number>;
|
|
2262
2153
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2263
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2264
2154
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2265
2155
|
threshold: z.ZodMiniNumber<number>;
|
|
2266
2156
|
updatedAt: z.ZodMiniNumber<number>;
|
|
@@ -2288,10 +2178,8 @@ export declare const multisig_getOperation: import("../internal/rpcSchemas/from.
|
|
|
2288
2178
|
threshold: z.ZodMiniNumber<number>;
|
|
2289
2179
|
version: z.ZodMiniBigInt<bigint>;
|
|
2290
2180
|
}, z.core.$strip>>;
|
|
2291
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2292
2181
|
createdAt: z.ZodMiniNumber<number>;
|
|
2293
2182
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2294
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2295
2183
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2296
2184
|
threshold: z.ZodMiniNumber<number>;
|
|
2297
2185
|
updatedAt: z.ZodMiniNumber<number>;
|
|
@@ -2339,19 +2227,7 @@ export declare const Multisig: {
|
|
|
2339
2227
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2340
2228
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2341
2229
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2342
|
-
}, z.core.$strip>]>, z.
|
|
2343
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2344
|
-
config: z.ZodMiniObject<{
|
|
2345
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2346
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2347
|
-
weight: z.ZodMiniNumber<number>;
|
|
2348
|
-
}, z.core.$strip>>>;
|
|
2349
|
-
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2350
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2351
|
-
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2352
|
-
}, z.core.$strip>;
|
|
2353
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2354
|
-
}, z.core.$strict>]>;
|
|
2230
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
2355
2231
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2356
2232
|
}, z.core.$strip>;
|
|
2357
2233
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
@@ -2380,10 +2256,8 @@ export declare const Multisig: {
|
|
|
2380
2256
|
threshold: z.ZodMiniNumber<number>;
|
|
2381
2257
|
version: z.ZodMiniBigInt<bigint>;
|
|
2382
2258
|
}, z.core.$strip>>;
|
|
2383
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2384
2259
|
createdAt: z.ZodMiniNumber<number>;
|
|
2385
2260
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2386
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2387
2261
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2388
2262
|
threshold: z.ZodMiniNumber<number>;
|
|
2389
2263
|
updatedAt: z.ZodMiniNumber<number>;
|
|
@@ -2416,15 +2290,24 @@ export declare const Multisig: {
|
|
|
2416
2290
|
threshold: z.ZodMiniNumber<number>;
|
|
2417
2291
|
version: z.ZodMiniBigInt<bigint>;
|
|
2418
2292
|
}, z.core.$strip>>;
|
|
2419
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2420
2293
|
createdAt: z.ZodMiniNumber<number>;
|
|
2421
2294
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2422
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2423
2295
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2424
2296
|
threshold: z.ZodMiniNumber<number>;
|
|
2425
2297
|
updatedAt: z.ZodMiniNumber<number>;
|
|
2426
2298
|
weight: z.ZodMiniNumber<number>;
|
|
2427
2299
|
}, z.core.$strip>>;
|
|
2300
|
+
multisig_getConfig: import("../internal/rpcSchemas/from.js").Item<"multisig_getConfig", z.ZodMiniTuple<readonly [z.ZodMiniObject<{
|
|
2301
|
+
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2302
|
+
}, z.core.$strip>], null>, z.ZodMiniNullable<z.ZodMiniObject<{
|
|
2303
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2304
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2305
|
+
weight: z.ZodMiniNumber<number>;
|
|
2306
|
+
}, z.core.$strip>>>;
|
|
2307
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2308
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2309
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2310
|
+
}, z.core.$strip>>>;
|
|
2428
2311
|
multisig_getOperation: import("../internal/rpcSchemas/from.js").Item<"multisig_getOperation", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniNullable<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2429
2312
|
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2430
2313
|
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
@@ -2451,10 +2334,8 @@ export declare const Multisig: {
|
|
|
2451
2334
|
threshold: z.ZodMiniNumber<number>;
|
|
2452
2335
|
version: z.ZodMiniBigInt<bigint>;
|
|
2453
2336
|
}, z.core.$strip>>;
|
|
2454
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2455
2337
|
createdAt: z.ZodMiniNumber<number>;
|
|
2456
2338
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2457
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2458
2339
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2459
2340
|
threshold: z.ZodMiniNumber<number>;
|
|
2460
2341
|
updatedAt: z.ZodMiniNumber<number>;
|
|
@@ -2482,10 +2363,8 @@ export declare const Multisig: {
|
|
|
2482
2363
|
threshold: z.ZodMiniNumber<number>;
|
|
2483
2364
|
version: z.ZodMiniBigInt<bigint>;
|
|
2484
2365
|
}, z.core.$strip>>;
|
|
2485
|
-
configVersion: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
|
|
2486
2366
|
createdAt: z.ZodMiniNumber<number>;
|
|
2487
2367
|
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2488
|
-
init: z.ZodMiniBoolean<boolean>;
|
|
2489
2368
|
signatureCount: z.ZodMiniNumber<number>;
|
|
2490
2369
|
threshold: z.ZodMiniNumber<number>;
|
|
2491
2370
|
updatedAt: z.ZodMiniNumber<number>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RpcSchemaTempo.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/RpcSchemaTempo.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"RpcSchemaTempo.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/RpcSchemaTempo.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/* eslint-disable jsdoc-js/require-jsdoc, jsdoc-js/require-description, jsdoc-js/require-example */
|
|
2
|
+
import * as z_Address from '../Address.js';
|
|
2
3
|
import * as z_Block from '../Block.js';
|
|
3
4
|
import * as z_BlockOverrides from '../BlockOverrides.js';
|
|
4
5
|
import * as z_Hex from '../Hex.js';
|
|
@@ -7,6 +8,7 @@ import * as z_StateOverrides from '../StateOverrides.js';
|
|
|
7
8
|
import { from } from '../internal/rpcSchemas/from.js';
|
|
8
9
|
import * as z from 'zod/mini';
|
|
9
10
|
import * as z_KeyAuthorization from './KeyAuthorization.js';
|
|
11
|
+
import * as z_MultisigConfig from './MultisigConfig.js';
|
|
10
12
|
import * as z_MultisigOperation from './MultisigOperation.js';
|
|
11
13
|
import * as z_TransactionRequest from './TransactionRequest.js';
|
|
12
14
|
const BlockNumberOrTagOrIdentifier = z.union([
|
|
@@ -59,6 +61,17 @@ export const tempo_simulateV1 = from({
|
|
|
59
61
|
});
|
|
60
62
|
/** JSON-RPC method schemas for the `tempo_` namespace. */
|
|
61
63
|
export const Tempo = { tempo_simulateV1 };
|
|
64
|
+
/** Schema for the `multisig_approveKeyAuthorization` JSON-RPC method. */
|
|
65
|
+
export const multisig_approveKeyAuthorization = from({
|
|
66
|
+
method: 'multisig_approveKeyAuthorization',
|
|
67
|
+
params: z.tuple([
|
|
68
|
+
z.union([
|
|
69
|
+
z.object({ keyAuthorization: z_KeyAuthorization.Rpc }),
|
|
70
|
+
z.object({ hash: z_Hex.Hex, signature: z_Hex.Hex }),
|
|
71
|
+
]),
|
|
72
|
+
]),
|
|
73
|
+
returns: z_MultisigOperation.KeyAuthorizationOperation,
|
|
74
|
+
});
|
|
62
75
|
/** Schema for the `multisig_approveRawTransaction` JSON-RPC method. */
|
|
63
76
|
export const multisig_approveRawTransaction = from({
|
|
64
77
|
method: 'multisig_approveRawTransaction',
|
|
@@ -71,16 +84,11 @@ export const multisig_approveRawTransactionSync = from({
|
|
|
71
84
|
params: z.tuple([z_Hex.Hex, z.optional(z.number())]),
|
|
72
85
|
returns: z_MultisigOperation.TransactionOperation,
|
|
73
86
|
});
|
|
74
|
-
/** Schema for the `
|
|
75
|
-
export const
|
|
76
|
-
method: '
|
|
77
|
-
params: z.tuple([
|
|
78
|
-
|
|
79
|
-
z.object({ keyAuthorization: z_KeyAuthorization.Rpc }),
|
|
80
|
-
z.object({ hash: z_Hex.Hex, signature: z_Hex.Hex }),
|
|
81
|
-
]),
|
|
82
|
-
]),
|
|
83
|
-
returns: z_MultisigOperation.KeyAuthorizationOperation,
|
|
87
|
+
/** Schema for the `multisig_getConfig` JSON-RPC method. */
|
|
88
|
+
export const multisig_getConfig = from({
|
|
89
|
+
method: 'multisig_getConfig',
|
|
90
|
+
params: z.tuple([z.object({ address: z_Address.Address })]),
|
|
91
|
+
returns: z.nullable(z_MultisigConfig.Rpc),
|
|
84
92
|
});
|
|
85
93
|
/** Schema for the `multisig_getOperation` JSON-RPC method. */
|
|
86
94
|
export const multisig_getOperation = from({
|
|
@@ -93,6 +101,7 @@ export const Multisig = {
|
|
|
93
101
|
multisig_approveKeyAuthorization,
|
|
94
102
|
multisig_approveRawTransaction,
|
|
95
103
|
multisig_approveRawTransactionSync,
|
|
104
|
+
multisig_getConfig,
|
|
96
105
|
multisig_getOperation,
|
|
97
106
|
};
|
|
98
107
|
//# sourceMappingURL=RpcSchemaTempo.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RpcSchemaTempo.js","sourceRoot":"","sources":["../../../src/zod/tempo/RpcSchemaTempo.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"RpcSchemaTempo.js","sourceRoot":"","sources":["../../../src/zod/tempo/RpcSchemaTempo.ts"],"names":[],"mappings":"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"}
|