@hyperlane-xyz/sdk 4.0.0-beta2 → 4.1.0
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/dist/aws/s3.js +1 -1
- package/dist/aws/s3.js.map +1 -1
- package/dist/aws/validator.d.ts +3 -1
- package/dist/aws/validator.d.ts.map +1 -1
- package/dist/aws/validator.js +8 -1
- package/dist/aws/validator.js.map +1 -1
- package/dist/consts/multisigIsm.d.ts.map +1 -1
- package/dist/consts/multisigIsm.js +52 -0
- package/dist/consts/multisigIsm.js.map +1 -1
- package/dist/consts/testChains.d.ts.map +1 -1
- package/dist/consts/testChains.js +0 -5
- package/dist/consts/testChains.js.map +1 -1
- package/dist/core/EvmCoreReader.d.ts +1 -0
- package/dist/core/EvmCoreReader.d.ts.map +1 -1
- package/dist/core/EvmCoreReader.js +11 -2
- package/dist/core/EvmCoreReader.js.map +1 -1
- package/dist/core/HyperlaneCoreChecker.js +1 -1
- package/dist/core/HyperlaneCoreChecker.js.map +1 -1
- package/dist/deploy/HyperlaneDeployer.d.ts.map +1 -1
- package/dist/deploy/HyperlaneDeployer.js +4 -3
- package/dist/deploy/HyperlaneDeployer.js.map +1 -1
- package/dist/deploy/schemas.d.ts +19 -0
- package/dist/deploy/schemas.d.ts.map +1 -1
- package/dist/deploy/schemas.js +7 -0
- package/dist/deploy/schemas.js.map +1 -1
- package/dist/deploy/verify/utils.d.ts +9 -0
- package/dist/deploy/verify/utils.d.ts.map +1 -1
- package/dist/deploy/verify/utils.js +14 -0
- package/dist/deploy/verify/utils.js.map +1 -1
- package/dist/deploy/verify/utils.test.d.ts +2 -0
- package/dist/deploy/verify/utils.test.d.ts.map +1 -0
- package/dist/deploy/verify/utils.test.js +49 -0
- package/dist/deploy/verify/utils.test.js.map +1 -0
- package/dist/gas/HyperlaneIgpDeployer.d.ts +1 -1
- package/dist/gas/HyperlaneIgpDeployer.d.ts.map +1 -1
- package/dist/gas/HyperlaneIgpDeployer.js +2 -1
- package/dist/gas/HyperlaneIgpDeployer.js.map +1 -1
- package/dist/hook/EvmHookReader.d.ts +6 -0
- package/dist/hook/EvmHookReader.d.ts.map +1 -1
- package/dist/hook/EvmHookReader.js +63 -26
- package/dist/hook/EvmHookReader.js.map +1 -1
- package/dist/hook/EvmHookReader.test.js +22 -0
- package/dist/hook/EvmHookReader.test.js.map +1 -1
- package/dist/ism/EvmIsmModule.d.ts +1 -1
- package/dist/ism/EvmIsmModule.d.ts.map +1 -1
- package/dist/ism/EvmIsmModule.hardhat-test.js +21 -0
- package/dist/ism/EvmIsmModule.hardhat-test.js.map +1 -1
- package/dist/ism/EvmIsmModule.js +5 -4
- package/dist/ism/EvmIsmModule.js.map +1 -1
- package/dist/ism/HyperlaneIsmFactory.d.ts.map +1 -1
- package/dist/ism/HyperlaneIsmFactory.js +15 -2
- package/dist/ism/HyperlaneIsmFactory.js.map +1 -1
- package/dist/metadata/agentConfig.d.ts +1899 -1651
- package/dist/metadata/agentConfig.d.ts.map +1 -1
- package/dist/metadata/agentConfig.js +4 -0
- package/dist/metadata/agentConfig.js.map +1 -1
- package/dist/metadata/chainMetadataTypes.d.ts +724 -618
- package/dist/metadata/chainMetadataTypes.d.ts.map +1 -1
- package/dist/metadata/chainMetadataTypes.js +63 -51
- package/dist/metadata/chainMetadataTypes.js.map +1 -1
- package/dist/providers/transactions/schemas.d.ts +2 -2
- package/dist/router/schemas.d.ts +99 -0
- package/dist/router/schemas.d.ts.map +1 -1
- package/dist/router/schemas.js +2 -0
- package/dist/router/schemas.js.map +1 -1
- package/dist/test/testUtils.d.ts.map +1 -1
- package/dist/test/testUtils.js +20 -12
- package/dist/test/testUtils.js.map +1 -1
- package/dist/token/EvmERC20WarpModule.d.ts +20 -4
- package/dist/token/EvmERC20WarpModule.d.ts.map +1 -1
- package/dist/token/EvmERC20WarpModule.hardhat-test.js +131 -1
- package/dist/token/EvmERC20WarpModule.hardhat-test.js.map +1 -1
- package/dist/token/EvmERC20WarpModule.js +60 -5
- package/dist/token/EvmERC20WarpModule.js.map +1 -1
- package/dist/token/deploy.d.ts +2 -2
- package/dist/token/deploy.d.ts.map +1 -1
- package/dist/token/deploy.js +17 -11
- package/dist/token/deploy.js.map +1 -1
- package/dist/token/schemas.d.ts +80 -0
- package/dist/token/schemas.d.ts.map +1 -1
- package/dist/utils/gnosisSafe.js +11 -1
- package/package.json +3 -3
|
@@ -142,30 +142,60 @@ declare const AgentCosmosChainMetadataSchema: z.ZodObject<{
|
|
|
142
142
|
export type AgentCosmosGasPrice = z.infer<typeof AgentCosmosChainMetadataSchema>['gasPrice'];
|
|
143
143
|
export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
144
144
|
name: z.ZodString;
|
|
145
|
-
|
|
145
|
+
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
146
|
+
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
147
|
+
name: z.ZodString;
|
|
148
|
+
url: z.ZodString;
|
|
149
|
+
apiUrl: z.ZodString;
|
|
150
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
151
|
+
family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
|
|
152
|
+
}, "strip", z.ZodTypeAny, {
|
|
153
|
+
name: string;
|
|
154
|
+
url: string;
|
|
155
|
+
apiUrl: string;
|
|
156
|
+
apiKey?: string | undefined;
|
|
157
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
158
|
+
}, {
|
|
159
|
+
name: string;
|
|
160
|
+
url: string;
|
|
161
|
+
apiUrl: string;
|
|
162
|
+
apiKey?: string | undefined;
|
|
163
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
164
|
+
}>, "many">>;
|
|
165
|
+
blocks: z.ZodOptional<z.ZodObject<{
|
|
166
|
+
confirmations: z.ZodNumber;
|
|
167
|
+
reorgPeriod: z.ZodOptional<z.ZodNumber>;
|
|
168
|
+
estimateBlockTime: z.ZodOptional<z.ZodNumber>;
|
|
169
|
+
}, "strip", z.ZodTypeAny, {
|
|
170
|
+
confirmations: number;
|
|
171
|
+
reorgPeriod?: number | undefined;
|
|
172
|
+
estimateBlockTime?: number | undefined;
|
|
173
|
+
}, {
|
|
174
|
+
confirmations: number;
|
|
175
|
+
reorgPeriod?: number | undefined;
|
|
176
|
+
estimateBlockTime?: number | undefined;
|
|
177
|
+
}>>;
|
|
146
178
|
chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
displayNameShort: z.ZodOptional<z.ZodString>;
|
|
150
|
-
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
|
|
151
|
-
logoURI: z.ZodOptional<z.ZodString>;
|
|
152
|
-
nativeToken: z.ZodOptional<z.ZodObject<{
|
|
179
|
+
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
180
|
+
deployer: z.ZodOptional<z.ZodObject<{
|
|
153
181
|
name: z.ZodString;
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
denom: z.ZodOptional<z.ZodString>;
|
|
182
|
+
email: z.ZodOptional<z.ZodString>;
|
|
183
|
+
url: z.ZodOptional<z.ZodString>;
|
|
157
184
|
}, "strip", z.ZodTypeAny, {
|
|
158
|
-
symbol: string;
|
|
159
185
|
name: string;
|
|
160
|
-
|
|
161
|
-
|
|
186
|
+
email?: string | undefined;
|
|
187
|
+
url?: string | undefined;
|
|
162
188
|
}, {
|
|
163
|
-
symbol: string;
|
|
164
189
|
name: string;
|
|
165
|
-
|
|
166
|
-
|
|
190
|
+
email?: string | undefined;
|
|
191
|
+
url?: string | undefined;
|
|
167
192
|
}>>;
|
|
168
|
-
|
|
193
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
194
|
+
displayNameShort: z.ZodOptional<z.ZodString>;
|
|
195
|
+
domainId: z.ZodOptional<z.ZodNumber>;
|
|
196
|
+
gasCurrencyCoinGeckoId: z.ZodOptional<z.ZodString>;
|
|
197
|
+
gnosisSafeTransactionServiceUrl: z.ZodOptional<z.ZodString>;
|
|
198
|
+
grpcUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
169
199
|
http: z.ZodString;
|
|
170
200
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
171
201
|
webSocket: z.ZodOptional<z.ZodString>;
|
|
@@ -218,7 +248,39 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
218
248
|
maxRequests: number;
|
|
219
249
|
baseRetryMs: number;
|
|
220
250
|
} | undefined;
|
|
221
|
-
}>, "
|
|
251
|
+
}>, "many">>;
|
|
252
|
+
index: z.ZodOptional<z.ZodObject<{
|
|
253
|
+
from: z.ZodOptional<z.ZodNumber>;
|
|
254
|
+
chunk: z.ZodOptional<z.ZodNumber>;
|
|
255
|
+
mode: z.ZodOptional<z.ZodNativeEnum<typeof AgentIndexMode>>;
|
|
256
|
+
}, "strip", z.ZodTypeAny, {
|
|
257
|
+
from?: number | undefined;
|
|
258
|
+
chunk?: number | undefined;
|
|
259
|
+
mode?: AgentIndexMode | undefined;
|
|
260
|
+
}, {
|
|
261
|
+
from?: number | undefined;
|
|
262
|
+
chunk?: number | undefined;
|
|
263
|
+
mode?: AgentIndexMode | undefined;
|
|
264
|
+
}>>;
|
|
265
|
+
isTestnet: z.ZodOptional<z.ZodBoolean>;
|
|
266
|
+
logoURI: z.ZodOptional<z.ZodString>;
|
|
267
|
+
nativeToken: z.ZodOptional<z.ZodObject<{
|
|
268
|
+
name: z.ZodString;
|
|
269
|
+
symbol: z.ZodString;
|
|
270
|
+
decimals: z.ZodNumber;
|
|
271
|
+
denom: z.ZodOptional<z.ZodString>;
|
|
272
|
+
}, "strip", z.ZodTypeAny, {
|
|
273
|
+
symbol: string;
|
|
274
|
+
name: string;
|
|
275
|
+
decimals: number;
|
|
276
|
+
denom?: string | undefined;
|
|
277
|
+
}, {
|
|
278
|
+
symbol: string;
|
|
279
|
+
name: string;
|
|
280
|
+
decimals: number;
|
|
281
|
+
denom?: string | undefined;
|
|
282
|
+
}>>;
|
|
283
|
+
protocol: z.ZodNativeEnum<typeof ProtocolType>;
|
|
222
284
|
restUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
223
285
|
http: z.ZodString;
|
|
224
286
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
@@ -273,7 +335,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
273
335
|
baseRetryMs: number;
|
|
274
336
|
} | undefined;
|
|
275
337
|
}>, "many">>;
|
|
276
|
-
|
|
338
|
+
rpcUrls: z.ZodArray<z.ZodObject<{
|
|
277
339
|
http: z.ZodString;
|
|
278
340
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
279
341
|
webSocket: z.ZodOptional<z.ZodString>;
|
|
@@ -326,59 +388,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
326
388
|
maxRequests: number;
|
|
327
389
|
baseRetryMs: number;
|
|
328
390
|
} | undefined;
|
|
329
|
-
}>, "
|
|
330
|
-
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
331
|
-
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
332
|
-
name: z.ZodString;
|
|
333
|
-
url: z.ZodString;
|
|
334
|
-
apiUrl: z.ZodString;
|
|
335
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
336
|
-
family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
|
|
337
|
-
}, "strip", z.ZodTypeAny, {
|
|
338
|
-
name: string;
|
|
339
|
-
url: string;
|
|
340
|
-
apiUrl: string;
|
|
341
|
-
apiKey?: string | undefined;
|
|
342
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
343
|
-
}, {
|
|
344
|
-
name: string;
|
|
345
|
-
url: string;
|
|
346
|
-
apiUrl: string;
|
|
347
|
-
apiKey?: string | undefined;
|
|
348
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
349
|
-
}>, "many">>;
|
|
350
|
-
blocks: z.ZodOptional<z.ZodObject<{
|
|
351
|
-
confirmations: z.ZodNumber;
|
|
352
|
-
reorgPeriod: z.ZodOptional<z.ZodNumber>;
|
|
353
|
-
estimateBlockTime: z.ZodOptional<z.ZodNumber>;
|
|
354
|
-
}, "strip", z.ZodTypeAny, {
|
|
355
|
-
confirmations: number;
|
|
356
|
-
reorgPeriod?: number | undefined;
|
|
357
|
-
estimateBlockTime?: number | undefined;
|
|
358
|
-
}, {
|
|
359
|
-
confirmations: number;
|
|
360
|
-
reorgPeriod?: number | undefined;
|
|
361
|
-
estimateBlockTime?: number | undefined;
|
|
362
|
-
}>>;
|
|
363
|
-
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
364
|
-
gasCurrencyCoinGeckoId: z.ZodOptional<z.ZodString>;
|
|
365
|
-
gnosisSafeTransactionServiceUrl: z.ZodOptional<z.ZodString>;
|
|
366
|
-
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
391
|
+
}>, "atleastone">;
|
|
367
392
|
slip44: z.ZodOptional<z.ZodNumber>;
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
from: z.ZodOptional<z.ZodNumber>;
|
|
371
|
-
chunk: z.ZodOptional<z.ZodNumber>;
|
|
372
|
-
mode: z.ZodOptional<z.ZodNativeEnum<typeof AgentIndexMode>>;
|
|
373
|
-
}, "strip", z.ZodTypeAny, {
|
|
374
|
-
from?: number | undefined;
|
|
375
|
-
chunk?: number | undefined;
|
|
376
|
-
mode?: AgentIndexMode | undefined;
|
|
377
|
-
}, {
|
|
378
|
-
from?: number | undefined;
|
|
379
|
-
chunk?: number | undefined;
|
|
380
|
-
mode?: AgentIndexMode | undefined;
|
|
381
|
-
}>>;
|
|
393
|
+
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
|
|
394
|
+
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
382
395
|
signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
383
396
|
type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
|
|
384
397
|
key: z.ZodString;
|
|
@@ -440,8 +453,8 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
440
453
|
contractAddressBytes: z.ZodOptional<z.ZodNumber>;
|
|
441
454
|
}, "strip", z.ZodTypeAny, {
|
|
442
455
|
name: string;
|
|
443
|
-
protocol: ProtocolType;
|
|
444
456
|
chainId: string | number;
|
|
457
|
+
protocol: ProtocolType;
|
|
445
458
|
rpcUrls: [{
|
|
446
459
|
http: string;
|
|
447
460
|
concurrency?: number | undefined;
|
|
@@ -473,18 +486,31 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
473
486
|
interchainGasPaymaster: string;
|
|
474
487
|
validatorAnnounce: string;
|
|
475
488
|
mailbox: string;
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
displayNameShort?: string | undefined;
|
|
479
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
480
|
-
logoURI?: string | undefined;
|
|
481
|
-
nativeToken?: {
|
|
482
|
-
symbol: string;
|
|
489
|
+
bech32Prefix?: string | undefined;
|
|
490
|
+
blockExplorers?: {
|
|
483
491
|
name: string;
|
|
484
|
-
|
|
485
|
-
|
|
492
|
+
url: string;
|
|
493
|
+
apiUrl: string;
|
|
494
|
+
apiKey?: string | undefined;
|
|
495
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
496
|
+
}[] | undefined;
|
|
497
|
+
blocks?: {
|
|
498
|
+
confirmations: number;
|
|
499
|
+
reorgPeriod?: number | undefined;
|
|
500
|
+
estimateBlockTime?: number | undefined;
|
|
486
501
|
} | undefined;
|
|
487
|
-
|
|
502
|
+
customGrpcUrls?: string | undefined;
|
|
503
|
+
deployer?: {
|
|
504
|
+
name: string;
|
|
505
|
+
email?: string | undefined;
|
|
506
|
+
url?: string | undefined;
|
|
507
|
+
} | undefined;
|
|
508
|
+
displayName?: string | undefined;
|
|
509
|
+
displayNameShort?: string | undefined;
|
|
510
|
+
domainId?: number | undefined;
|
|
511
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
512
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
513
|
+
grpcUrls?: {
|
|
488
514
|
http: string;
|
|
489
515
|
concurrency?: number | undefined;
|
|
490
516
|
webSocket?: string | undefined;
|
|
@@ -498,7 +524,20 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
498
524
|
baseRetryMs: number;
|
|
499
525
|
} | undefined;
|
|
500
526
|
}[] | undefined;
|
|
501
|
-
|
|
527
|
+
index?: {
|
|
528
|
+
from?: number | undefined;
|
|
529
|
+
chunk?: number | undefined;
|
|
530
|
+
mode?: AgentIndexMode | undefined;
|
|
531
|
+
} | undefined;
|
|
532
|
+
isTestnet?: boolean | undefined;
|
|
533
|
+
logoURI?: string | undefined;
|
|
534
|
+
nativeToken?: {
|
|
535
|
+
symbol: string;
|
|
536
|
+
name: string;
|
|
537
|
+
decimals: number;
|
|
538
|
+
denom?: string | undefined;
|
|
539
|
+
} | undefined;
|
|
540
|
+
restUrls?: {
|
|
502
541
|
http: string;
|
|
503
542
|
concurrency?: number | undefined;
|
|
504
543
|
webSocket?: string | undefined;
|
|
@@ -512,30 +551,9 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
512
551
|
baseRetryMs: number;
|
|
513
552
|
} | undefined;
|
|
514
553
|
}[] | undefined;
|
|
515
|
-
customGrpcUrls?: string | undefined;
|
|
516
|
-
blockExplorers?: {
|
|
517
|
-
name: string;
|
|
518
|
-
url: string;
|
|
519
|
-
apiUrl: string;
|
|
520
|
-
apiKey?: string | undefined;
|
|
521
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
522
|
-
}[] | undefined;
|
|
523
|
-
blocks?: {
|
|
524
|
-
confirmations: number;
|
|
525
|
-
reorgPeriod?: number | undefined;
|
|
526
|
-
estimateBlockTime?: number | undefined;
|
|
527
|
-
} | undefined;
|
|
528
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
529
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
530
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
531
|
-
bech32Prefix?: string | undefined;
|
|
532
554
|
slip44?: number | undefined;
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
from?: number | undefined;
|
|
536
|
-
chunk?: number | undefined;
|
|
537
|
-
mode?: AgentIndexMode | undefined;
|
|
538
|
-
} | undefined;
|
|
555
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
556
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
539
557
|
signer?: {
|
|
540
558
|
key: string;
|
|
541
559
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -561,8 +579,8 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
561
579
|
contractAddressBytes?: number | undefined;
|
|
562
580
|
}, {
|
|
563
581
|
name: string;
|
|
564
|
-
protocol: ProtocolType;
|
|
565
582
|
chainId: string | number;
|
|
583
|
+
protocol: ProtocolType;
|
|
566
584
|
rpcUrls: [{
|
|
567
585
|
http: string;
|
|
568
586
|
concurrency?: number | undefined;
|
|
@@ -594,18 +612,31 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
594
612
|
interchainGasPaymaster: string;
|
|
595
613
|
validatorAnnounce: string;
|
|
596
614
|
mailbox: string;
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
displayNameShort?: string | undefined;
|
|
600
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
601
|
-
logoURI?: string | undefined;
|
|
602
|
-
nativeToken?: {
|
|
603
|
-
symbol: string;
|
|
615
|
+
bech32Prefix?: string | undefined;
|
|
616
|
+
blockExplorers?: {
|
|
604
617
|
name: string;
|
|
605
|
-
|
|
606
|
-
|
|
618
|
+
url: string;
|
|
619
|
+
apiUrl: string;
|
|
620
|
+
apiKey?: string | undefined;
|
|
621
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
622
|
+
}[] | undefined;
|
|
623
|
+
blocks?: {
|
|
624
|
+
confirmations: number;
|
|
625
|
+
reorgPeriod?: number | undefined;
|
|
626
|
+
estimateBlockTime?: number | undefined;
|
|
607
627
|
} | undefined;
|
|
608
|
-
|
|
628
|
+
customGrpcUrls?: string | undefined;
|
|
629
|
+
deployer?: {
|
|
630
|
+
name: string;
|
|
631
|
+
email?: string | undefined;
|
|
632
|
+
url?: string | undefined;
|
|
633
|
+
} | undefined;
|
|
634
|
+
displayName?: string | undefined;
|
|
635
|
+
displayNameShort?: string | undefined;
|
|
636
|
+
domainId?: number | undefined;
|
|
637
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
638
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
639
|
+
grpcUrls?: {
|
|
609
640
|
http: string;
|
|
610
641
|
concurrency?: number | undefined;
|
|
611
642
|
webSocket?: string | undefined;
|
|
@@ -619,10 +650,23 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
619
650
|
baseRetryMs: number;
|
|
620
651
|
} | undefined;
|
|
621
652
|
}[] | undefined;
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
653
|
+
index?: {
|
|
654
|
+
from?: number | undefined;
|
|
655
|
+
chunk?: number | undefined;
|
|
656
|
+
mode?: AgentIndexMode | undefined;
|
|
657
|
+
} | undefined;
|
|
658
|
+
isTestnet?: boolean | undefined;
|
|
659
|
+
logoURI?: string | undefined;
|
|
660
|
+
nativeToken?: {
|
|
661
|
+
symbol: string;
|
|
662
|
+
name: string;
|
|
663
|
+
decimals: number;
|
|
664
|
+
denom?: string | undefined;
|
|
665
|
+
} | undefined;
|
|
666
|
+
restUrls?: {
|
|
667
|
+
http: string;
|
|
668
|
+
concurrency?: number | undefined;
|
|
669
|
+
webSocket?: string | undefined;
|
|
626
670
|
pagination?: {
|
|
627
671
|
maxBlockRange?: number | undefined;
|
|
628
672
|
minBlockNumber?: number | undefined;
|
|
@@ -633,30 +677,9 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
633
677
|
baseRetryMs: number;
|
|
634
678
|
} | undefined;
|
|
635
679
|
}[] | undefined;
|
|
636
|
-
customGrpcUrls?: string | undefined;
|
|
637
|
-
blockExplorers?: {
|
|
638
|
-
name: string;
|
|
639
|
-
url: string;
|
|
640
|
-
apiUrl: string;
|
|
641
|
-
apiKey?: string | undefined;
|
|
642
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
643
|
-
}[] | undefined;
|
|
644
|
-
blocks?: {
|
|
645
|
-
confirmations: number;
|
|
646
|
-
reorgPeriod?: number | undefined;
|
|
647
|
-
estimateBlockTime?: number | undefined;
|
|
648
|
-
} | undefined;
|
|
649
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
650
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
651
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
652
|
-
bech32Prefix?: string | undefined;
|
|
653
680
|
slip44?: number | undefined;
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
from?: number | undefined;
|
|
657
|
-
chunk?: number | undefined;
|
|
658
|
-
mode?: AgentIndexMode | undefined;
|
|
659
|
-
} | undefined;
|
|
681
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
682
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
660
683
|
signer?: {
|
|
661
684
|
key: string;
|
|
662
685
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -682,8 +705,8 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
682
705
|
contractAddressBytes?: number | undefined;
|
|
683
706
|
}>, {
|
|
684
707
|
name: string;
|
|
685
|
-
protocol: ProtocolType;
|
|
686
708
|
chainId: string | number;
|
|
709
|
+
protocol: ProtocolType;
|
|
687
710
|
rpcUrls: [{
|
|
688
711
|
http: string;
|
|
689
712
|
concurrency?: number | undefined;
|
|
@@ -715,18 +738,31 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
715
738
|
interchainGasPaymaster: string;
|
|
716
739
|
validatorAnnounce: string;
|
|
717
740
|
mailbox: string;
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
displayNameShort?: string | undefined;
|
|
721
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
722
|
-
logoURI?: string | undefined;
|
|
723
|
-
nativeToken?: {
|
|
724
|
-
symbol: string;
|
|
741
|
+
bech32Prefix?: string | undefined;
|
|
742
|
+
blockExplorers?: {
|
|
725
743
|
name: string;
|
|
726
|
-
|
|
727
|
-
|
|
744
|
+
url: string;
|
|
745
|
+
apiUrl: string;
|
|
746
|
+
apiKey?: string | undefined;
|
|
747
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
748
|
+
}[] | undefined;
|
|
749
|
+
blocks?: {
|
|
750
|
+
confirmations: number;
|
|
751
|
+
reorgPeriod?: number | undefined;
|
|
752
|
+
estimateBlockTime?: number | undefined;
|
|
728
753
|
} | undefined;
|
|
729
|
-
|
|
754
|
+
customGrpcUrls?: string | undefined;
|
|
755
|
+
deployer?: {
|
|
756
|
+
name: string;
|
|
757
|
+
email?: string | undefined;
|
|
758
|
+
url?: string | undefined;
|
|
759
|
+
} | undefined;
|
|
760
|
+
displayName?: string | undefined;
|
|
761
|
+
displayNameShort?: string | undefined;
|
|
762
|
+
domainId?: number | undefined;
|
|
763
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
764
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
765
|
+
grpcUrls?: {
|
|
730
766
|
http: string;
|
|
731
767
|
concurrency?: number | undefined;
|
|
732
768
|
webSocket?: string | undefined;
|
|
@@ -740,7 +776,20 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
740
776
|
baseRetryMs: number;
|
|
741
777
|
} | undefined;
|
|
742
778
|
}[] | undefined;
|
|
743
|
-
|
|
779
|
+
index?: {
|
|
780
|
+
from?: number | undefined;
|
|
781
|
+
chunk?: number | undefined;
|
|
782
|
+
mode?: AgentIndexMode | undefined;
|
|
783
|
+
} | undefined;
|
|
784
|
+
isTestnet?: boolean | undefined;
|
|
785
|
+
logoURI?: string | undefined;
|
|
786
|
+
nativeToken?: {
|
|
787
|
+
symbol: string;
|
|
788
|
+
name: string;
|
|
789
|
+
decimals: number;
|
|
790
|
+
denom?: string | undefined;
|
|
791
|
+
} | undefined;
|
|
792
|
+
restUrls?: {
|
|
744
793
|
http: string;
|
|
745
794
|
concurrency?: number | undefined;
|
|
746
795
|
webSocket?: string | undefined;
|
|
@@ -754,30 +803,9 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
754
803
|
baseRetryMs: number;
|
|
755
804
|
} | undefined;
|
|
756
805
|
}[] | undefined;
|
|
757
|
-
customGrpcUrls?: string | undefined;
|
|
758
|
-
blockExplorers?: {
|
|
759
|
-
name: string;
|
|
760
|
-
url: string;
|
|
761
|
-
apiUrl: string;
|
|
762
|
-
apiKey?: string | undefined;
|
|
763
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
764
|
-
}[] | undefined;
|
|
765
|
-
blocks?: {
|
|
766
|
-
confirmations: number;
|
|
767
|
-
reorgPeriod?: number | undefined;
|
|
768
|
-
estimateBlockTime?: number | undefined;
|
|
769
|
-
} | undefined;
|
|
770
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
771
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
772
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
773
|
-
bech32Prefix?: string | undefined;
|
|
774
806
|
slip44?: number | undefined;
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
from?: number | undefined;
|
|
778
|
-
chunk?: number | undefined;
|
|
779
|
-
mode?: AgentIndexMode | undefined;
|
|
780
|
-
} | undefined;
|
|
807
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
808
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
781
809
|
signer?: {
|
|
782
810
|
key: string;
|
|
783
811
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -803,8 +831,8 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
803
831
|
contractAddressBytes?: number | undefined;
|
|
804
832
|
}, {
|
|
805
833
|
name: string;
|
|
806
|
-
protocol: ProtocolType;
|
|
807
834
|
chainId: string | number;
|
|
835
|
+
protocol: ProtocolType;
|
|
808
836
|
rpcUrls: [{
|
|
809
837
|
http: string;
|
|
810
838
|
concurrency?: number | undefined;
|
|
@@ -836,18 +864,31 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
836
864
|
interchainGasPaymaster: string;
|
|
837
865
|
validatorAnnounce: string;
|
|
838
866
|
mailbox: string;
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
displayNameShort?: string | undefined;
|
|
842
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
843
|
-
logoURI?: string | undefined;
|
|
844
|
-
nativeToken?: {
|
|
845
|
-
symbol: string;
|
|
867
|
+
bech32Prefix?: string | undefined;
|
|
868
|
+
blockExplorers?: {
|
|
846
869
|
name: string;
|
|
847
|
-
|
|
848
|
-
|
|
870
|
+
url: string;
|
|
871
|
+
apiUrl: string;
|
|
872
|
+
apiKey?: string | undefined;
|
|
873
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
874
|
+
}[] | undefined;
|
|
875
|
+
blocks?: {
|
|
876
|
+
confirmations: number;
|
|
877
|
+
reorgPeriod?: number | undefined;
|
|
878
|
+
estimateBlockTime?: number | undefined;
|
|
849
879
|
} | undefined;
|
|
850
|
-
|
|
880
|
+
customGrpcUrls?: string | undefined;
|
|
881
|
+
deployer?: {
|
|
882
|
+
name: string;
|
|
883
|
+
email?: string | undefined;
|
|
884
|
+
url?: string | undefined;
|
|
885
|
+
} | undefined;
|
|
886
|
+
displayName?: string | undefined;
|
|
887
|
+
displayNameShort?: string | undefined;
|
|
888
|
+
domainId?: number | undefined;
|
|
889
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
890
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
891
|
+
grpcUrls?: {
|
|
851
892
|
http: string;
|
|
852
893
|
concurrency?: number | undefined;
|
|
853
894
|
webSocket?: string | undefined;
|
|
@@ -861,7 +902,20 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
861
902
|
baseRetryMs: number;
|
|
862
903
|
} | undefined;
|
|
863
904
|
}[] | undefined;
|
|
864
|
-
|
|
905
|
+
index?: {
|
|
906
|
+
from?: number | undefined;
|
|
907
|
+
chunk?: number | undefined;
|
|
908
|
+
mode?: AgentIndexMode | undefined;
|
|
909
|
+
} | undefined;
|
|
910
|
+
isTestnet?: boolean | undefined;
|
|
911
|
+
logoURI?: string | undefined;
|
|
912
|
+
nativeToken?: {
|
|
913
|
+
symbol: string;
|
|
914
|
+
name: string;
|
|
915
|
+
decimals: number;
|
|
916
|
+
denom?: string | undefined;
|
|
917
|
+
} | undefined;
|
|
918
|
+
restUrls?: {
|
|
865
919
|
http: string;
|
|
866
920
|
concurrency?: number | undefined;
|
|
867
921
|
webSocket?: string | undefined;
|
|
@@ -875,30 +929,9 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
875
929
|
baseRetryMs: number;
|
|
876
930
|
} | undefined;
|
|
877
931
|
}[] | undefined;
|
|
878
|
-
customGrpcUrls?: string | undefined;
|
|
879
|
-
blockExplorers?: {
|
|
880
|
-
name: string;
|
|
881
|
-
url: string;
|
|
882
|
-
apiUrl: string;
|
|
883
|
-
apiKey?: string | undefined;
|
|
884
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
885
|
-
}[] | undefined;
|
|
886
|
-
blocks?: {
|
|
887
|
-
confirmations: number;
|
|
888
|
-
reorgPeriod?: number | undefined;
|
|
889
|
-
estimateBlockTime?: number | undefined;
|
|
890
|
-
} | undefined;
|
|
891
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
892
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
893
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
894
|
-
bech32Prefix?: string | undefined;
|
|
895
932
|
slip44?: number | undefined;
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
from?: number | undefined;
|
|
899
|
-
chunk?: number | undefined;
|
|
900
|
-
mode?: AgentIndexMode | undefined;
|
|
901
|
-
} | undefined;
|
|
933
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
934
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
902
935
|
signer?: {
|
|
903
936
|
key: string;
|
|
904
937
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -928,30 +961,60 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
928
961
|
metricsPort: z.ZodOptional<z.ZodNumber>;
|
|
929
962
|
chains: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
930
963
|
name: z.ZodString;
|
|
931
|
-
|
|
964
|
+
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
965
|
+
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
966
|
+
name: z.ZodString;
|
|
967
|
+
url: z.ZodString;
|
|
968
|
+
apiUrl: z.ZodString;
|
|
969
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
970
|
+
family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
|
|
971
|
+
}, "strip", z.ZodTypeAny, {
|
|
972
|
+
name: string;
|
|
973
|
+
url: string;
|
|
974
|
+
apiUrl: string;
|
|
975
|
+
apiKey?: string | undefined;
|
|
976
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
977
|
+
}, {
|
|
978
|
+
name: string;
|
|
979
|
+
url: string;
|
|
980
|
+
apiUrl: string;
|
|
981
|
+
apiKey?: string | undefined;
|
|
982
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
983
|
+
}>, "many">>;
|
|
984
|
+
blocks: z.ZodOptional<z.ZodObject<{
|
|
985
|
+
confirmations: z.ZodNumber;
|
|
986
|
+
reorgPeriod: z.ZodOptional<z.ZodNumber>;
|
|
987
|
+
estimateBlockTime: z.ZodOptional<z.ZodNumber>;
|
|
988
|
+
}, "strip", z.ZodTypeAny, {
|
|
989
|
+
confirmations: number;
|
|
990
|
+
reorgPeriod?: number | undefined;
|
|
991
|
+
estimateBlockTime?: number | undefined;
|
|
992
|
+
}, {
|
|
993
|
+
confirmations: number;
|
|
994
|
+
reorgPeriod?: number | undefined;
|
|
995
|
+
estimateBlockTime?: number | undefined;
|
|
996
|
+
}>>;
|
|
932
997
|
chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
displayNameShort: z.ZodOptional<z.ZodString>;
|
|
936
|
-
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
|
|
937
|
-
logoURI: z.ZodOptional<z.ZodString>;
|
|
938
|
-
nativeToken: z.ZodOptional<z.ZodObject<{
|
|
998
|
+
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
999
|
+
deployer: z.ZodOptional<z.ZodObject<{
|
|
939
1000
|
name: z.ZodString;
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
denom: z.ZodOptional<z.ZodString>;
|
|
1001
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1002
|
+
url: z.ZodOptional<z.ZodString>;
|
|
943
1003
|
}, "strip", z.ZodTypeAny, {
|
|
944
|
-
symbol: string;
|
|
945
1004
|
name: string;
|
|
946
|
-
|
|
947
|
-
|
|
1005
|
+
email?: string | undefined;
|
|
1006
|
+
url?: string | undefined;
|
|
948
1007
|
}, {
|
|
949
|
-
symbol: string;
|
|
950
1008
|
name: string;
|
|
951
|
-
|
|
952
|
-
|
|
1009
|
+
email?: string | undefined;
|
|
1010
|
+
url?: string | undefined;
|
|
953
1011
|
}>>;
|
|
954
|
-
|
|
1012
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
1013
|
+
displayNameShort: z.ZodOptional<z.ZodString>;
|
|
1014
|
+
domainId: z.ZodOptional<z.ZodNumber>;
|
|
1015
|
+
gasCurrencyCoinGeckoId: z.ZodOptional<z.ZodString>;
|
|
1016
|
+
gnosisSafeTransactionServiceUrl: z.ZodOptional<z.ZodString>;
|
|
1017
|
+
grpcUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
955
1018
|
http: z.ZodString;
|
|
956
1019
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
957
1020
|
webSocket: z.ZodOptional<z.ZodString>;
|
|
@@ -1004,7 +1067,39 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1004
1067
|
maxRequests: number;
|
|
1005
1068
|
baseRetryMs: number;
|
|
1006
1069
|
} | undefined;
|
|
1007
|
-
}>, "
|
|
1070
|
+
}>, "many">>;
|
|
1071
|
+
index: z.ZodOptional<z.ZodObject<{
|
|
1072
|
+
from: z.ZodOptional<z.ZodNumber>;
|
|
1073
|
+
chunk: z.ZodOptional<z.ZodNumber>;
|
|
1074
|
+
mode: z.ZodOptional<z.ZodNativeEnum<typeof AgentIndexMode>>;
|
|
1075
|
+
}, "strip", z.ZodTypeAny, {
|
|
1076
|
+
from?: number | undefined;
|
|
1077
|
+
chunk?: number | undefined;
|
|
1078
|
+
mode?: AgentIndexMode | undefined;
|
|
1079
|
+
}, {
|
|
1080
|
+
from?: number | undefined;
|
|
1081
|
+
chunk?: number | undefined;
|
|
1082
|
+
mode?: AgentIndexMode | undefined;
|
|
1083
|
+
}>>;
|
|
1084
|
+
isTestnet: z.ZodOptional<z.ZodBoolean>;
|
|
1085
|
+
logoURI: z.ZodOptional<z.ZodString>;
|
|
1086
|
+
nativeToken: z.ZodOptional<z.ZodObject<{
|
|
1087
|
+
name: z.ZodString;
|
|
1088
|
+
symbol: z.ZodString;
|
|
1089
|
+
decimals: z.ZodNumber;
|
|
1090
|
+
denom: z.ZodOptional<z.ZodString>;
|
|
1091
|
+
}, "strip", z.ZodTypeAny, {
|
|
1092
|
+
symbol: string;
|
|
1093
|
+
name: string;
|
|
1094
|
+
decimals: number;
|
|
1095
|
+
denom?: string | undefined;
|
|
1096
|
+
}, {
|
|
1097
|
+
symbol: string;
|
|
1098
|
+
name: string;
|
|
1099
|
+
decimals: number;
|
|
1100
|
+
denom?: string | undefined;
|
|
1101
|
+
}>>;
|
|
1102
|
+
protocol: z.ZodNativeEnum<typeof ProtocolType>;
|
|
1008
1103
|
restUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1009
1104
|
http: z.ZodString;
|
|
1010
1105
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1059,7 +1154,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1059
1154
|
baseRetryMs: number;
|
|
1060
1155
|
} | undefined;
|
|
1061
1156
|
}>, "many">>;
|
|
1062
|
-
|
|
1157
|
+
rpcUrls: z.ZodArray<z.ZodObject<{
|
|
1063
1158
|
http: z.ZodString;
|
|
1064
1159
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
1065
1160
|
webSocket: z.ZodOptional<z.ZodString>;
|
|
@@ -1084,87 +1179,38 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1084
1179
|
baseRetryMs: number;
|
|
1085
1180
|
}, {
|
|
1086
1181
|
maxRequests: number;
|
|
1087
|
-
baseRetryMs: number;
|
|
1088
|
-
}>>;
|
|
1089
|
-
}, "strip", z.ZodTypeAny, {
|
|
1090
|
-
http: string;
|
|
1091
|
-
concurrency?: number | undefined;
|
|
1092
|
-
webSocket?: string | undefined;
|
|
1093
|
-
pagination?: {
|
|
1094
|
-
maxBlockRange?: number | undefined;
|
|
1095
|
-
minBlockNumber?: number | undefined;
|
|
1096
|
-
maxBlockAge?: number | undefined;
|
|
1097
|
-
} | undefined;
|
|
1098
|
-
retry?: {
|
|
1099
|
-
maxRequests: number;
|
|
1100
|
-
baseRetryMs: number;
|
|
1101
|
-
} | undefined;
|
|
1102
|
-
}, {
|
|
1103
|
-
http: string;
|
|
1104
|
-
concurrency?: number | undefined;
|
|
1105
|
-
webSocket?: string | undefined;
|
|
1106
|
-
pagination?: {
|
|
1107
|
-
maxBlockRange?: number | undefined;
|
|
1108
|
-
minBlockNumber?: number | undefined;
|
|
1109
|
-
maxBlockAge?: number | undefined;
|
|
1110
|
-
} | undefined;
|
|
1111
|
-
retry?: {
|
|
1112
|
-
maxRequests: number;
|
|
1113
|
-
baseRetryMs: number;
|
|
1114
|
-
} | undefined;
|
|
1115
|
-
}>, "many">>;
|
|
1116
|
-
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
1117
|
-
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1118
|
-
name: z.ZodString;
|
|
1119
|
-
url: z.ZodString;
|
|
1120
|
-
apiUrl: z.ZodString;
|
|
1121
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
1122
|
-
family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
|
|
1123
|
-
}, "strip", z.ZodTypeAny, {
|
|
1124
|
-
name: string;
|
|
1125
|
-
url: string;
|
|
1126
|
-
apiUrl: string;
|
|
1127
|
-
apiKey?: string | undefined;
|
|
1128
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1129
|
-
}, {
|
|
1130
|
-
name: string;
|
|
1131
|
-
url: string;
|
|
1132
|
-
apiUrl: string;
|
|
1133
|
-
apiKey?: string | undefined;
|
|
1134
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1135
|
-
}>, "many">>;
|
|
1136
|
-
blocks: z.ZodOptional<z.ZodObject<{
|
|
1137
|
-
confirmations: z.ZodNumber;
|
|
1138
|
-
reorgPeriod: z.ZodOptional<z.ZodNumber>;
|
|
1139
|
-
estimateBlockTime: z.ZodOptional<z.ZodNumber>;
|
|
1182
|
+
baseRetryMs: number;
|
|
1183
|
+
}>>;
|
|
1140
1184
|
}, "strip", z.ZodTypeAny, {
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1185
|
+
http: string;
|
|
1186
|
+
concurrency?: number | undefined;
|
|
1187
|
+
webSocket?: string | undefined;
|
|
1188
|
+
pagination?: {
|
|
1189
|
+
maxBlockRange?: number | undefined;
|
|
1190
|
+
minBlockNumber?: number | undefined;
|
|
1191
|
+
maxBlockAge?: number | undefined;
|
|
1192
|
+
} | undefined;
|
|
1193
|
+
retry?: {
|
|
1194
|
+
maxRequests: number;
|
|
1195
|
+
baseRetryMs: number;
|
|
1196
|
+
} | undefined;
|
|
1144
1197
|
}, {
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1198
|
+
http: string;
|
|
1199
|
+
concurrency?: number | undefined;
|
|
1200
|
+
webSocket?: string | undefined;
|
|
1201
|
+
pagination?: {
|
|
1202
|
+
maxBlockRange?: number | undefined;
|
|
1203
|
+
minBlockNumber?: number | undefined;
|
|
1204
|
+
maxBlockAge?: number | undefined;
|
|
1205
|
+
} | undefined;
|
|
1206
|
+
retry?: {
|
|
1207
|
+
maxRequests: number;
|
|
1208
|
+
baseRetryMs: number;
|
|
1209
|
+
} | undefined;
|
|
1210
|
+
}>, "atleastone">;
|
|
1153
1211
|
slip44: z.ZodOptional<z.ZodNumber>;
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
from: z.ZodOptional<z.ZodNumber>;
|
|
1157
|
-
chunk: z.ZodOptional<z.ZodNumber>;
|
|
1158
|
-
mode: z.ZodOptional<z.ZodNativeEnum<typeof AgentIndexMode>>;
|
|
1159
|
-
}, "strip", z.ZodTypeAny, {
|
|
1160
|
-
from?: number | undefined;
|
|
1161
|
-
chunk?: number | undefined;
|
|
1162
|
-
mode?: AgentIndexMode | undefined;
|
|
1163
|
-
}, {
|
|
1164
|
-
from?: number | undefined;
|
|
1165
|
-
chunk?: number | undefined;
|
|
1166
|
-
mode?: AgentIndexMode | undefined;
|
|
1167
|
-
}>>;
|
|
1212
|
+
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
|
|
1213
|
+
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1168
1214
|
signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1169
1215
|
type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
|
|
1170
1216
|
key: z.ZodString;
|
|
@@ -1226,8 +1272,8 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1226
1272
|
contractAddressBytes: z.ZodOptional<z.ZodNumber>;
|
|
1227
1273
|
}, "strip", z.ZodTypeAny, {
|
|
1228
1274
|
name: string;
|
|
1229
|
-
protocol: ProtocolType;
|
|
1230
1275
|
chainId: string | number;
|
|
1276
|
+
protocol: ProtocolType;
|
|
1231
1277
|
rpcUrls: [{
|
|
1232
1278
|
http: string;
|
|
1233
1279
|
concurrency?: number | undefined;
|
|
@@ -1259,18 +1305,31 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1259
1305
|
interchainGasPaymaster: string;
|
|
1260
1306
|
validatorAnnounce: string;
|
|
1261
1307
|
mailbox: string;
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
displayNameShort?: string | undefined;
|
|
1265
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
1266
|
-
logoURI?: string | undefined;
|
|
1267
|
-
nativeToken?: {
|
|
1268
|
-
symbol: string;
|
|
1308
|
+
bech32Prefix?: string | undefined;
|
|
1309
|
+
blockExplorers?: {
|
|
1269
1310
|
name: string;
|
|
1270
|
-
|
|
1271
|
-
|
|
1311
|
+
url: string;
|
|
1312
|
+
apiUrl: string;
|
|
1313
|
+
apiKey?: string | undefined;
|
|
1314
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1315
|
+
}[] | undefined;
|
|
1316
|
+
blocks?: {
|
|
1317
|
+
confirmations: number;
|
|
1318
|
+
reorgPeriod?: number | undefined;
|
|
1319
|
+
estimateBlockTime?: number | undefined;
|
|
1272
1320
|
} | undefined;
|
|
1273
|
-
|
|
1321
|
+
customGrpcUrls?: string | undefined;
|
|
1322
|
+
deployer?: {
|
|
1323
|
+
name: string;
|
|
1324
|
+
email?: string | undefined;
|
|
1325
|
+
url?: string | undefined;
|
|
1326
|
+
} | undefined;
|
|
1327
|
+
displayName?: string | undefined;
|
|
1328
|
+
displayNameShort?: string | undefined;
|
|
1329
|
+
domainId?: number | undefined;
|
|
1330
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
1331
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
1332
|
+
grpcUrls?: {
|
|
1274
1333
|
http: string;
|
|
1275
1334
|
concurrency?: number | undefined;
|
|
1276
1335
|
webSocket?: string | undefined;
|
|
@@ -1284,7 +1343,20 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1284
1343
|
baseRetryMs: number;
|
|
1285
1344
|
} | undefined;
|
|
1286
1345
|
}[] | undefined;
|
|
1287
|
-
|
|
1346
|
+
index?: {
|
|
1347
|
+
from?: number | undefined;
|
|
1348
|
+
chunk?: number | undefined;
|
|
1349
|
+
mode?: AgentIndexMode | undefined;
|
|
1350
|
+
} | undefined;
|
|
1351
|
+
isTestnet?: boolean | undefined;
|
|
1352
|
+
logoURI?: string | undefined;
|
|
1353
|
+
nativeToken?: {
|
|
1354
|
+
symbol: string;
|
|
1355
|
+
name: string;
|
|
1356
|
+
decimals: number;
|
|
1357
|
+
denom?: string | undefined;
|
|
1358
|
+
} | undefined;
|
|
1359
|
+
restUrls?: {
|
|
1288
1360
|
http: string;
|
|
1289
1361
|
concurrency?: number | undefined;
|
|
1290
1362
|
webSocket?: string | undefined;
|
|
@@ -1298,30 +1370,9 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1298
1370
|
baseRetryMs: number;
|
|
1299
1371
|
} | undefined;
|
|
1300
1372
|
}[] | undefined;
|
|
1301
|
-
customGrpcUrls?: string | undefined;
|
|
1302
|
-
blockExplorers?: {
|
|
1303
|
-
name: string;
|
|
1304
|
-
url: string;
|
|
1305
|
-
apiUrl: string;
|
|
1306
|
-
apiKey?: string | undefined;
|
|
1307
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1308
|
-
}[] | undefined;
|
|
1309
|
-
blocks?: {
|
|
1310
|
-
confirmations: number;
|
|
1311
|
-
reorgPeriod?: number | undefined;
|
|
1312
|
-
estimateBlockTime?: number | undefined;
|
|
1313
|
-
} | undefined;
|
|
1314
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
1315
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
1316
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
1317
|
-
bech32Prefix?: string | undefined;
|
|
1318
1373
|
slip44?: number | undefined;
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
from?: number | undefined;
|
|
1322
|
-
chunk?: number | undefined;
|
|
1323
|
-
mode?: AgentIndexMode | undefined;
|
|
1324
|
-
} | undefined;
|
|
1374
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
1375
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
1325
1376
|
signer?: {
|
|
1326
1377
|
key: string;
|
|
1327
1378
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -1347,8 +1398,8 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1347
1398
|
contractAddressBytes?: number | undefined;
|
|
1348
1399
|
}, {
|
|
1349
1400
|
name: string;
|
|
1350
|
-
protocol: ProtocolType;
|
|
1351
1401
|
chainId: string | number;
|
|
1402
|
+
protocol: ProtocolType;
|
|
1352
1403
|
rpcUrls: [{
|
|
1353
1404
|
http: string;
|
|
1354
1405
|
concurrency?: number | undefined;
|
|
@@ -1380,18 +1431,31 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1380
1431
|
interchainGasPaymaster: string;
|
|
1381
1432
|
validatorAnnounce: string;
|
|
1382
1433
|
mailbox: string;
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
displayNameShort?: string | undefined;
|
|
1386
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
1387
|
-
logoURI?: string | undefined;
|
|
1388
|
-
nativeToken?: {
|
|
1389
|
-
symbol: string;
|
|
1434
|
+
bech32Prefix?: string | undefined;
|
|
1435
|
+
blockExplorers?: {
|
|
1390
1436
|
name: string;
|
|
1391
|
-
|
|
1392
|
-
|
|
1437
|
+
url: string;
|
|
1438
|
+
apiUrl: string;
|
|
1439
|
+
apiKey?: string | undefined;
|
|
1440
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1441
|
+
}[] | undefined;
|
|
1442
|
+
blocks?: {
|
|
1443
|
+
confirmations: number;
|
|
1444
|
+
reorgPeriod?: number | undefined;
|
|
1445
|
+
estimateBlockTime?: number | undefined;
|
|
1393
1446
|
} | undefined;
|
|
1394
|
-
|
|
1447
|
+
customGrpcUrls?: string | undefined;
|
|
1448
|
+
deployer?: {
|
|
1449
|
+
name: string;
|
|
1450
|
+
email?: string | undefined;
|
|
1451
|
+
url?: string | undefined;
|
|
1452
|
+
} | undefined;
|
|
1453
|
+
displayName?: string | undefined;
|
|
1454
|
+
displayNameShort?: string | undefined;
|
|
1455
|
+
domainId?: number | undefined;
|
|
1456
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
1457
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
1458
|
+
grpcUrls?: {
|
|
1395
1459
|
http: string;
|
|
1396
1460
|
concurrency?: number | undefined;
|
|
1397
1461
|
webSocket?: string | undefined;
|
|
@@ -1405,7 +1469,20 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1405
1469
|
baseRetryMs: number;
|
|
1406
1470
|
} | undefined;
|
|
1407
1471
|
}[] | undefined;
|
|
1408
|
-
|
|
1472
|
+
index?: {
|
|
1473
|
+
from?: number | undefined;
|
|
1474
|
+
chunk?: number | undefined;
|
|
1475
|
+
mode?: AgentIndexMode | undefined;
|
|
1476
|
+
} | undefined;
|
|
1477
|
+
isTestnet?: boolean | undefined;
|
|
1478
|
+
logoURI?: string | undefined;
|
|
1479
|
+
nativeToken?: {
|
|
1480
|
+
symbol: string;
|
|
1481
|
+
name: string;
|
|
1482
|
+
decimals: number;
|
|
1483
|
+
denom?: string | undefined;
|
|
1484
|
+
} | undefined;
|
|
1485
|
+
restUrls?: {
|
|
1409
1486
|
http: string;
|
|
1410
1487
|
concurrency?: number | undefined;
|
|
1411
1488
|
webSocket?: string | undefined;
|
|
@@ -1419,30 +1496,9 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1419
1496
|
baseRetryMs: number;
|
|
1420
1497
|
} | undefined;
|
|
1421
1498
|
}[] | undefined;
|
|
1422
|
-
customGrpcUrls?: string | undefined;
|
|
1423
|
-
blockExplorers?: {
|
|
1424
|
-
name: string;
|
|
1425
|
-
url: string;
|
|
1426
|
-
apiUrl: string;
|
|
1427
|
-
apiKey?: string | undefined;
|
|
1428
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1429
|
-
}[] | undefined;
|
|
1430
|
-
blocks?: {
|
|
1431
|
-
confirmations: number;
|
|
1432
|
-
reorgPeriod?: number | undefined;
|
|
1433
|
-
estimateBlockTime?: number | undefined;
|
|
1434
|
-
} | undefined;
|
|
1435
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
1436
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
1437
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
1438
|
-
bech32Prefix?: string | undefined;
|
|
1439
1499
|
slip44?: number | undefined;
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
from?: number | undefined;
|
|
1443
|
-
chunk?: number | undefined;
|
|
1444
|
-
mode?: AgentIndexMode | undefined;
|
|
1445
|
-
} | undefined;
|
|
1500
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
1501
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
1446
1502
|
signer?: {
|
|
1447
1503
|
key: string;
|
|
1448
1504
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -1468,8 +1524,8 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1468
1524
|
contractAddressBytes?: number | undefined;
|
|
1469
1525
|
}>, {
|
|
1470
1526
|
name: string;
|
|
1471
|
-
protocol: ProtocolType;
|
|
1472
1527
|
chainId: string | number;
|
|
1528
|
+
protocol: ProtocolType;
|
|
1473
1529
|
rpcUrls: [{
|
|
1474
1530
|
http: string;
|
|
1475
1531
|
concurrency?: number | undefined;
|
|
@@ -1501,18 +1557,31 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1501
1557
|
interchainGasPaymaster: string;
|
|
1502
1558
|
validatorAnnounce: string;
|
|
1503
1559
|
mailbox: string;
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
displayNameShort?: string | undefined;
|
|
1507
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
1508
|
-
logoURI?: string | undefined;
|
|
1509
|
-
nativeToken?: {
|
|
1510
|
-
symbol: string;
|
|
1560
|
+
bech32Prefix?: string | undefined;
|
|
1561
|
+
blockExplorers?: {
|
|
1511
1562
|
name: string;
|
|
1512
|
-
|
|
1513
|
-
|
|
1563
|
+
url: string;
|
|
1564
|
+
apiUrl: string;
|
|
1565
|
+
apiKey?: string | undefined;
|
|
1566
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1567
|
+
}[] | undefined;
|
|
1568
|
+
blocks?: {
|
|
1569
|
+
confirmations: number;
|
|
1570
|
+
reorgPeriod?: number | undefined;
|
|
1571
|
+
estimateBlockTime?: number | undefined;
|
|
1514
1572
|
} | undefined;
|
|
1515
|
-
|
|
1573
|
+
customGrpcUrls?: string | undefined;
|
|
1574
|
+
deployer?: {
|
|
1575
|
+
name: string;
|
|
1576
|
+
email?: string | undefined;
|
|
1577
|
+
url?: string | undefined;
|
|
1578
|
+
} | undefined;
|
|
1579
|
+
displayName?: string | undefined;
|
|
1580
|
+
displayNameShort?: string | undefined;
|
|
1581
|
+
domainId?: number | undefined;
|
|
1582
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
1583
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
1584
|
+
grpcUrls?: {
|
|
1516
1585
|
http: string;
|
|
1517
1586
|
concurrency?: number | undefined;
|
|
1518
1587
|
webSocket?: string | undefined;
|
|
@@ -1526,7 +1595,20 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1526
1595
|
baseRetryMs: number;
|
|
1527
1596
|
} | undefined;
|
|
1528
1597
|
}[] | undefined;
|
|
1529
|
-
|
|
1598
|
+
index?: {
|
|
1599
|
+
from?: number | undefined;
|
|
1600
|
+
chunk?: number | undefined;
|
|
1601
|
+
mode?: AgentIndexMode | undefined;
|
|
1602
|
+
} | undefined;
|
|
1603
|
+
isTestnet?: boolean | undefined;
|
|
1604
|
+
logoURI?: string | undefined;
|
|
1605
|
+
nativeToken?: {
|
|
1606
|
+
symbol: string;
|
|
1607
|
+
name: string;
|
|
1608
|
+
decimals: number;
|
|
1609
|
+
denom?: string | undefined;
|
|
1610
|
+
} | undefined;
|
|
1611
|
+
restUrls?: {
|
|
1530
1612
|
http: string;
|
|
1531
1613
|
concurrency?: number | undefined;
|
|
1532
1614
|
webSocket?: string | undefined;
|
|
@@ -1536,34 +1618,13 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1536
1618
|
maxBlockAge?: number | undefined;
|
|
1537
1619
|
} | undefined;
|
|
1538
1620
|
retry?: {
|
|
1539
|
-
maxRequests: number;
|
|
1540
|
-
baseRetryMs: number;
|
|
1541
|
-
} | undefined;
|
|
1542
|
-
}[] | undefined;
|
|
1543
|
-
customGrpcUrls?: string | undefined;
|
|
1544
|
-
blockExplorers?: {
|
|
1545
|
-
name: string;
|
|
1546
|
-
url: string;
|
|
1547
|
-
apiUrl: string;
|
|
1548
|
-
apiKey?: string | undefined;
|
|
1549
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1621
|
+
maxRequests: number;
|
|
1622
|
+
baseRetryMs: number;
|
|
1623
|
+
} | undefined;
|
|
1550
1624
|
}[] | undefined;
|
|
1551
|
-
blocks?: {
|
|
1552
|
-
confirmations: number;
|
|
1553
|
-
reorgPeriod?: number | undefined;
|
|
1554
|
-
estimateBlockTime?: number | undefined;
|
|
1555
|
-
} | undefined;
|
|
1556
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
1557
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
1558
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
1559
|
-
bech32Prefix?: string | undefined;
|
|
1560
1625
|
slip44?: number | undefined;
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
from?: number | undefined;
|
|
1564
|
-
chunk?: number | undefined;
|
|
1565
|
-
mode?: AgentIndexMode | undefined;
|
|
1566
|
-
} | undefined;
|
|
1626
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
1627
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
1567
1628
|
signer?: {
|
|
1568
1629
|
key: string;
|
|
1569
1630
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -1589,8 +1650,8 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1589
1650
|
contractAddressBytes?: number | undefined;
|
|
1590
1651
|
}, {
|
|
1591
1652
|
name: string;
|
|
1592
|
-
protocol: ProtocolType;
|
|
1593
1653
|
chainId: string | number;
|
|
1654
|
+
protocol: ProtocolType;
|
|
1594
1655
|
rpcUrls: [{
|
|
1595
1656
|
http: string;
|
|
1596
1657
|
concurrency?: number | undefined;
|
|
@@ -1622,18 +1683,31 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1622
1683
|
interchainGasPaymaster: string;
|
|
1623
1684
|
validatorAnnounce: string;
|
|
1624
1685
|
mailbox: string;
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
displayNameShort?: string | undefined;
|
|
1628
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
1629
|
-
logoURI?: string | undefined;
|
|
1630
|
-
nativeToken?: {
|
|
1631
|
-
symbol: string;
|
|
1686
|
+
bech32Prefix?: string | undefined;
|
|
1687
|
+
blockExplorers?: {
|
|
1632
1688
|
name: string;
|
|
1633
|
-
|
|
1634
|
-
|
|
1689
|
+
url: string;
|
|
1690
|
+
apiUrl: string;
|
|
1691
|
+
apiKey?: string | undefined;
|
|
1692
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1693
|
+
}[] | undefined;
|
|
1694
|
+
blocks?: {
|
|
1695
|
+
confirmations: number;
|
|
1696
|
+
reorgPeriod?: number | undefined;
|
|
1697
|
+
estimateBlockTime?: number | undefined;
|
|
1635
1698
|
} | undefined;
|
|
1636
|
-
|
|
1699
|
+
customGrpcUrls?: string | undefined;
|
|
1700
|
+
deployer?: {
|
|
1701
|
+
name: string;
|
|
1702
|
+
email?: string | undefined;
|
|
1703
|
+
url?: string | undefined;
|
|
1704
|
+
} | undefined;
|
|
1705
|
+
displayName?: string | undefined;
|
|
1706
|
+
displayNameShort?: string | undefined;
|
|
1707
|
+
domainId?: number | undefined;
|
|
1708
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
1709
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
1710
|
+
grpcUrls?: {
|
|
1637
1711
|
http: string;
|
|
1638
1712
|
concurrency?: number | undefined;
|
|
1639
1713
|
webSocket?: string | undefined;
|
|
@@ -1647,7 +1721,20 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1647
1721
|
baseRetryMs: number;
|
|
1648
1722
|
} | undefined;
|
|
1649
1723
|
}[] | undefined;
|
|
1650
|
-
|
|
1724
|
+
index?: {
|
|
1725
|
+
from?: number | undefined;
|
|
1726
|
+
chunk?: number | undefined;
|
|
1727
|
+
mode?: AgentIndexMode | undefined;
|
|
1728
|
+
} | undefined;
|
|
1729
|
+
isTestnet?: boolean | undefined;
|
|
1730
|
+
logoURI?: string | undefined;
|
|
1731
|
+
nativeToken?: {
|
|
1732
|
+
symbol: string;
|
|
1733
|
+
name: string;
|
|
1734
|
+
decimals: number;
|
|
1735
|
+
denom?: string | undefined;
|
|
1736
|
+
} | undefined;
|
|
1737
|
+
restUrls?: {
|
|
1651
1738
|
http: string;
|
|
1652
1739
|
concurrency?: number | undefined;
|
|
1653
1740
|
webSocket?: string | undefined;
|
|
@@ -1661,30 +1748,9 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1661
1748
|
baseRetryMs: number;
|
|
1662
1749
|
} | undefined;
|
|
1663
1750
|
}[] | undefined;
|
|
1664
|
-
customGrpcUrls?: string | undefined;
|
|
1665
|
-
blockExplorers?: {
|
|
1666
|
-
name: string;
|
|
1667
|
-
url: string;
|
|
1668
|
-
apiUrl: string;
|
|
1669
|
-
apiKey?: string | undefined;
|
|
1670
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1671
|
-
}[] | undefined;
|
|
1672
|
-
blocks?: {
|
|
1673
|
-
confirmations: number;
|
|
1674
|
-
reorgPeriod?: number | undefined;
|
|
1675
|
-
estimateBlockTime?: number | undefined;
|
|
1676
|
-
} | undefined;
|
|
1677
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
1678
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
1679
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
1680
|
-
bech32Prefix?: string | undefined;
|
|
1681
1751
|
slip44?: number | undefined;
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
from?: number | undefined;
|
|
1685
|
-
chunk?: number | undefined;
|
|
1686
|
-
mode?: AgentIndexMode | undefined;
|
|
1687
|
-
} | undefined;
|
|
1752
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
1753
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
1688
1754
|
signer?: {
|
|
1689
1755
|
key: string;
|
|
1690
1756
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -1710,8 +1776,8 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1710
1776
|
contractAddressBytes?: number | undefined;
|
|
1711
1777
|
}>>, Record<string, {
|
|
1712
1778
|
name: string;
|
|
1713
|
-
protocol: ProtocolType;
|
|
1714
1779
|
chainId: string | number;
|
|
1780
|
+
protocol: ProtocolType;
|
|
1715
1781
|
rpcUrls: [{
|
|
1716
1782
|
http: string;
|
|
1717
1783
|
concurrency?: number | undefined;
|
|
@@ -1743,18 +1809,31 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1743
1809
|
interchainGasPaymaster: string;
|
|
1744
1810
|
validatorAnnounce: string;
|
|
1745
1811
|
mailbox: string;
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
displayNameShort?: string | undefined;
|
|
1749
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
1750
|
-
logoURI?: string | undefined;
|
|
1751
|
-
nativeToken?: {
|
|
1752
|
-
symbol: string;
|
|
1812
|
+
bech32Prefix?: string | undefined;
|
|
1813
|
+
blockExplorers?: {
|
|
1753
1814
|
name: string;
|
|
1754
|
-
|
|
1755
|
-
|
|
1815
|
+
url: string;
|
|
1816
|
+
apiUrl: string;
|
|
1817
|
+
apiKey?: string | undefined;
|
|
1818
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1819
|
+
}[] | undefined;
|
|
1820
|
+
blocks?: {
|
|
1821
|
+
confirmations: number;
|
|
1822
|
+
reorgPeriod?: number | undefined;
|
|
1823
|
+
estimateBlockTime?: number | undefined;
|
|
1756
1824
|
} | undefined;
|
|
1757
|
-
|
|
1825
|
+
customGrpcUrls?: string | undefined;
|
|
1826
|
+
deployer?: {
|
|
1827
|
+
name: string;
|
|
1828
|
+
email?: string | undefined;
|
|
1829
|
+
url?: string | undefined;
|
|
1830
|
+
} | undefined;
|
|
1831
|
+
displayName?: string | undefined;
|
|
1832
|
+
displayNameShort?: string | undefined;
|
|
1833
|
+
domainId?: number | undefined;
|
|
1834
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
1835
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
1836
|
+
grpcUrls?: {
|
|
1758
1837
|
http: string;
|
|
1759
1838
|
concurrency?: number | undefined;
|
|
1760
1839
|
webSocket?: string | undefined;
|
|
@@ -1768,7 +1847,20 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1768
1847
|
baseRetryMs: number;
|
|
1769
1848
|
} | undefined;
|
|
1770
1849
|
}[] | undefined;
|
|
1771
|
-
|
|
1850
|
+
index?: {
|
|
1851
|
+
from?: number | undefined;
|
|
1852
|
+
chunk?: number | undefined;
|
|
1853
|
+
mode?: AgentIndexMode | undefined;
|
|
1854
|
+
} | undefined;
|
|
1855
|
+
isTestnet?: boolean | undefined;
|
|
1856
|
+
logoURI?: string | undefined;
|
|
1857
|
+
nativeToken?: {
|
|
1858
|
+
symbol: string;
|
|
1859
|
+
name: string;
|
|
1860
|
+
decimals: number;
|
|
1861
|
+
denom?: string | undefined;
|
|
1862
|
+
} | undefined;
|
|
1863
|
+
restUrls?: {
|
|
1772
1864
|
http: string;
|
|
1773
1865
|
concurrency?: number | undefined;
|
|
1774
1866
|
webSocket?: string | undefined;
|
|
@@ -1782,30 +1874,9 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1782
1874
|
baseRetryMs: number;
|
|
1783
1875
|
} | undefined;
|
|
1784
1876
|
}[] | undefined;
|
|
1785
|
-
customGrpcUrls?: string | undefined;
|
|
1786
|
-
blockExplorers?: {
|
|
1787
|
-
name: string;
|
|
1788
|
-
url: string;
|
|
1789
|
-
apiUrl: string;
|
|
1790
|
-
apiKey?: string | undefined;
|
|
1791
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1792
|
-
}[] | undefined;
|
|
1793
|
-
blocks?: {
|
|
1794
|
-
confirmations: number;
|
|
1795
|
-
reorgPeriod?: number | undefined;
|
|
1796
|
-
estimateBlockTime?: number | undefined;
|
|
1797
|
-
} | undefined;
|
|
1798
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
1799
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
1800
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
1801
|
-
bech32Prefix?: string | undefined;
|
|
1802
1877
|
slip44?: number | undefined;
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
from?: number | undefined;
|
|
1806
|
-
chunk?: number | undefined;
|
|
1807
|
-
mode?: AgentIndexMode | undefined;
|
|
1808
|
-
} | undefined;
|
|
1878
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
1879
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
1809
1880
|
signer?: {
|
|
1810
1881
|
key: string;
|
|
1811
1882
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -1831,8 +1902,8 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1831
1902
|
contractAddressBytes?: number | undefined;
|
|
1832
1903
|
}>, Record<string, {
|
|
1833
1904
|
name: string;
|
|
1834
|
-
protocol: ProtocolType;
|
|
1835
1905
|
chainId: string | number;
|
|
1906
|
+
protocol: ProtocolType;
|
|
1836
1907
|
rpcUrls: [{
|
|
1837
1908
|
http: string;
|
|
1838
1909
|
concurrency?: number | undefined;
|
|
@@ -1864,18 +1935,31 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1864
1935
|
interchainGasPaymaster: string;
|
|
1865
1936
|
validatorAnnounce: string;
|
|
1866
1937
|
mailbox: string;
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
displayNameShort?: string | undefined;
|
|
1870
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
1871
|
-
logoURI?: string | undefined;
|
|
1872
|
-
nativeToken?: {
|
|
1873
|
-
symbol: string;
|
|
1938
|
+
bech32Prefix?: string | undefined;
|
|
1939
|
+
blockExplorers?: {
|
|
1874
1940
|
name: string;
|
|
1875
|
-
|
|
1876
|
-
|
|
1941
|
+
url: string;
|
|
1942
|
+
apiUrl: string;
|
|
1943
|
+
apiKey?: string | undefined;
|
|
1944
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1945
|
+
}[] | undefined;
|
|
1946
|
+
blocks?: {
|
|
1947
|
+
confirmations: number;
|
|
1948
|
+
reorgPeriod?: number | undefined;
|
|
1949
|
+
estimateBlockTime?: number | undefined;
|
|
1877
1950
|
} | undefined;
|
|
1878
|
-
|
|
1951
|
+
customGrpcUrls?: string | undefined;
|
|
1952
|
+
deployer?: {
|
|
1953
|
+
name: string;
|
|
1954
|
+
email?: string | undefined;
|
|
1955
|
+
url?: string | undefined;
|
|
1956
|
+
} | undefined;
|
|
1957
|
+
displayName?: string | undefined;
|
|
1958
|
+
displayNameShort?: string | undefined;
|
|
1959
|
+
domainId?: number | undefined;
|
|
1960
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
1961
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
1962
|
+
grpcUrls?: {
|
|
1879
1963
|
http: string;
|
|
1880
1964
|
concurrency?: number | undefined;
|
|
1881
1965
|
webSocket?: string | undefined;
|
|
@@ -1889,7 +1973,20 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1889
1973
|
baseRetryMs: number;
|
|
1890
1974
|
} | undefined;
|
|
1891
1975
|
}[] | undefined;
|
|
1892
|
-
|
|
1976
|
+
index?: {
|
|
1977
|
+
from?: number | undefined;
|
|
1978
|
+
chunk?: number | undefined;
|
|
1979
|
+
mode?: AgentIndexMode | undefined;
|
|
1980
|
+
} | undefined;
|
|
1981
|
+
isTestnet?: boolean | undefined;
|
|
1982
|
+
logoURI?: string | undefined;
|
|
1983
|
+
nativeToken?: {
|
|
1984
|
+
symbol: string;
|
|
1985
|
+
name: string;
|
|
1986
|
+
decimals: number;
|
|
1987
|
+
denom?: string | undefined;
|
|
1988
|
+
} | undefined;
|
|
1989
|
+
restUrls?: {
|
|
1893
1990
|
http: string;
|
|
1894
1991
|
concurrency?: number | undefined;
|
|
1895
1992
|
webSocket?: string | undefined;
|
|
@@ -1903,30 +2000,9 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1903
2000
|
baseRetryMs: number;
|
|
1904
2001
|
} | undefined;
|
|
1905
2002
|
}[] | undefined;
|
|
1906
|
-
customGrpcUrls?: string | undefined;
|
|
1907
|
-
blockExplorers?: {
|
|
1908
|
-
name: string;
|
|
1909
|
-
url: string;
|
|
1910
|
-
apiUrl: string;
|
|
1911
|
-
apiKey?: string | undefined;
|
|
1912
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
1913
|
-
}[] | undefined;
|
|
1914
|
-
blocks?: {
|
|
1915
|
-
confirmations: number;
|
|
1916
|
-
reorgPeriod?: number | undefined;
|
|
1917
|
-
estimateBlockTime?: number | undefined;
|
|
1918
|
-
} | undefined;
|
|
1919
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
1920
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
1921
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
1922
|
-
bech32Prefix?: string | undefined;
|
|
1923
2003
|
slip44?: number | undefined;
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
from?: number | undefined;
|
|
1927
|
-
chunk?: number | undefined;
|
|
1928
|
-
mode?: AgentIndexMode | undefined;
|
|
1929
|
-
} | undefined;
|
|
2004
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
2005
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
1930
2006
|
signer?: {
|
|
1931
2007
|
key: string;
|
|
1932
2008
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -2005,8 +2081,8 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2005
2081
|
}, "strip", z.ZodTypeAny, {
|
|
2006
2082
|
chains: Record<string, {
|
|
2007
2083
|
name: string;
|
|
2008
|
-
protocol: ProtocolType;
|
|
2009
2084
|
chainId: string | number;
|
|
2085
|
+
protocol: ProtocolType;
|
|
2010
2086
|
rpcUrls: [{
|
|
2011
2087
|
http: string;
|
|
2012
2088
|
concurrency?: number | undefined;
|
|
@@ -2038,18 +2114,31 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2038
2114
|
interchainGasPaymaster: string;
|
|
2039
2115
|
validatorAnnounce: string;
|
|
2040
2116
|
mailbox: string;
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2117
|
+
bech32Prefix?: string | undefined;
|
|
2118
|
+
blockExplorers?: {
|
|
2119
|
+
name: string;
|
|
2120
|
+
url: string;
|
|
2121
|
+
apiUrl: string;
|
|
2122
|
+
apiKey?: string | undefined;
|
|
2123
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
2124
|
+
}[] | undefined;
|
|
2125
|
+
blocks?: {
|
|
2126
|
+
confirmations: number;
|
|
2127
|
+
reorgPeriod?: number | undefined;
|
|
2128
|
+
estimateBlockTime?: number | undefined;
|
|
2129
|
+
} | undefined;
|
|
2130
|
+
customGrpcUrls?: string | undefined;
|
|
2131
|
+
deployer?: {
|
|
2048
2132
|
name: string;
|
|
2049
|
-
|
|
2050
|
-
|
|
2133
|
+
email?: string | undefined;
|
|
2134
|
+
url?: string | undefined;
|
|
2051
2135
|
} | undefined;
|
|
2052
|
-
|
|
2136
|
+
displayName?: string | undefined;
|
|
2137
|
+
displayNameShort?: string | undefined;
|
|
2138
|
+
domainId?: number | undefined;
|
|
2139
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
2140
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
2141
|
+
grpcUrls?: {
|
|
2053
2142
|
http: string;
|
|
2054
2143
|
concurrency?: number | undefined;
|
|
2055
2144
|
webSocket?: string | undefined;
|
|
@@ -2063,7 +2152,20 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2063
2152
|
baseRetryMs: number;
|
|
2064
2153
|
} | undefined;
|
|
2065
2154
|
}[] | undefined;
|
|
2066
|
-
|
|
2155
|
+
index?: {
|
|
2156
|
+
from?: number | undefined;
|
|
2157
|
+
chunk?: number | undefined;
|
|
2158
|
+
mode?: AgentIndexMode | undefined;
|
|
2159
|
+
} | undefined;
|
|
2160
|
+
isTestnet?: boolean | undefined;
|
|
2161
|
+
logoURI?: string | undefined;
|
|
2162
|
+
nativeToken?: {
|
|
2163
|
+
symbol: string;
|
|
2164
|
+
name: string;
|
|
2165
|
+
decimals: number;
|
|
2166
|
+
denom?: string | undefined;
|
|
2167
|
+
} | undefined;
|
|
2168
|
+
restUrls?: {
|
|
2067
2169
|
http: string;
|
|
2068
2170
|
concurrency?: number | undefined;
|
|
2069
2171
|
webSocket?: string | undefined;
|
|
@@ -2077,30 +2179,9 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2077
2179
|
baseRetryMs: number;
|
|
2078
2180
|
} | undefined;
|
|
2079
2181
|
}[] | undefined;
|
|
2080
|
-
customGrpcUrls?: string | undefined;
|
|
2081
|
-
blockExplorers?: {
|
|
2082
|
-
name: string;
|
|
2083
|
-
url: string;
|
|
2084
|
-
apiUrl: string;
|
|
2085
|
-
apiKey?: string | undefined;
|
|
2086
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
2087
|
-
}[] | undefined;
|
|
2088
|
-
blocks?: {
|
|
2089
|
-
confirmations: number;
|
|
2090
|
-
reorgPeriod?: number | undefined;
|
|
2091
|
-
estimateBlockTime?: number | undefined;
|
|
2092
|
-
} | undefined;
|
|
2093
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
2094
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
2095
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
2096
|
-
bech32Prefix?: string | undefined;
|
|
2097
2182
|
slip44?: number | undefined;
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
from?: number | undefined;
|
|
2101
|
-
chunk?: number | undefined;
|
|
2102
|
-
mode?: AgentIndexMode | undefined;
|
|
2103
|
-
} | undefined;
|
|
2183
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
2184
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
2104
2185
|
signer?: {
|
|
2105
2186
|
key: string;
|
|
2106
2187
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -2148,8 +2229,8 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2148
2229
|
}, {
|
|
2149
2230
|
chains: Record<string, {
|
|
2150
2231
|
name: string;
|
|
2151
|
-
protocol: ProtocolType;
|
|
2152
2232
|
chainId: string | number;
|
|
2233
|
+
protocol: ProtocolType;
|
|
2153
2234
|
rpcUrls: [{
|
|
2154
2235
|
http: string;
|
|
2155
2236
|
concurrency?: number | undefined;
|
|
@@ -2181,18 +2262,31 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2181
2262
|
interchainGasPaymaster: string;
|
|
2182
2263
|
validatorAnnounce: string;
|
|
2183
2264
|
mailbox: string;
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
displayNameShort?: string | undefined;
|
|
2187
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
2188
|
-
logoURI?: string | undefined;
|
|
2189
|
-
nativeToken?: {
|
|
2190
|
-
symbol: string;
|
|
2265
|
+
bech32Prefix?: string | undefined;
|
|
2266
|
+
blockExplorers?: {
|
|
2191
2267
|
name: string;
|
|
2192
|
-
|
|
2193
|
-
|
|
2268
|
+
url: string;
|
|
2269
|
+
apiUrl: string;
|
|
2270
|
+
apiKey?: string | undefined;
|
|
2271
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
2272
|
+
}[] | undefined;
|
|
2273
|
+
blocks?: {
|
|
2274
|
+
confirmations: number;
|
|
2275
|
+
reorgPeriod?: number | undefined;
|
|
2276
|
+
estimateBlockTime?: number | undefined;
|
|
2194
2277
|
} | undefined;
|
|
2195
|
-
|
|
2278
|
+
customGrpcUrls?: string | undefined;
|
|
2279
|
+
deployer?: {
|
|
2280
|
+
name: string;
|
|
2281
|
+
email?: string | undefined;
|
|
2282
|
+
url?: string | undefined;
|
|
2283
|
+
} | undefined;
|
|
2284
|
+
displayName?: string | undefined;
|
|
2285
|
+
displayNameShort?: string | undefined;
|
|
2286
|
+
domainId?: number | undefined;
|
|
2287
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
2288
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
2289
|
+
grpcUrls?: {
|
|
2196
2290
|
http: string;
|
|
2197
2291
|
concurrency?: number | undefined;
|
|
2198
2292
|
webSocket?: string | undefined;
|
|
@@ -2206,7 +2300,20 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2206
2300
|
baseRetryMs: number;
|
|
2207
2301
|
} | undefined;
|
|
2208
2302
|
}[] | undefined;
|
|
2209
|
-
|
|
2303
|
+
index?: {
|
|
2304
|
+
from?: number | undefined;
|
|
2305
|
+
chunk?: number | undefined;
|
|
2306
|
+
mode?: AgentIndexMode | undefined;
|
|
2307
|
+
} | undefined;
|
|
2308
|
+
isTestnet?: boolean | undefined;
|
|
2309
|
+
logoURI?: string | undefined;
|
|
2310
|
+
nativeToken?: {
|
|
2311
|
+
symbol: string;
|
|
2312
|
+
name: string;
|
|
2313
|
+
decimals: number;
|
|
2314
|
+
denom?: string | undefined;
|
|
2315
|
+
} | undefined;
|
|
2316
|
+
restUrls?: {
|
|
2210
2317
|
http: string;
|
|
2211
2318
|
concurrency?: number | undefined;
|
|
2212
2319
|
webSocket?: string | undefined;
|
|
@@ -2220,30 +2327,9 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2220
2327
|
baseRetryMs: number;
|
|
2221
2328
|
} | undefined;
|
|
2222
2329
|
}[] | undefined;
|
|
2223
|
-
customGrpcUrls?: string | undefined;
|
|
2224
|
-
blockExplorers?: {
|
|
2225
|
-
name: string;
|
|
2226
|
-
url: string;
|
|
2227
|
-
apiUrl: string;
|
|
2228
|
-
apiKey?: string | undefined;
|
|
2229
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
2230
|
-
}[] | undefined;
|
|
2231
|
-
blocks?: {
|
|
2232
|
-
confirmations: number;
|
|
2233
|
-
reorgPeriod?: number | undefined;
|
|
2234
|
-
estimateBlockTime?: number | undefined;
|
|
2235
|
-
} | undefined;
|
|
2236
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
2237
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
2238
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
2239
|
-
bech32Prefix?: string | undefined;
|
|
2240
2330
|
slip44?: number | undefined;
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
from?: number | undefined;
|
|
2244
|
-
chunk?: number | undefined;
|
|
2245
|
-
mode?: AgentIndexMode | undefined;
|
|
2246
|
-
} | undefined;
|
|
2331
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
2332
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
2247
2333
|
signer?: {
|
|
2248
2334
|
key: string;
|
|
2249
2335
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -2408,30 +2494,60 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2408
2494
|
metricsPort: z.ZodOptional<z.ZodNumber>;
|
|
2409
2495
|
chains: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
2410
2496
|
name: z.ZodString;
|
|
2411
|
-
|
|
2497
|
+
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
2498
|
+
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2499
|
+
name: z.ZodString;
|
|
2500
|
+
url: z.ZodString;
|
|
2501
|
+
apiUrl: z.ZodString;
|
|
2502
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2503
|
+
family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
|
|
2504
|
+
}, "strip", z.ZodTypeAny, {
|
|
2505
|
+
name: string;
|
|
2506
|
+
url: string;
|
|
2507
|
+
apiUrl: string;
|
|
2508
|
+
apiKey?: string | undefined;
|
|
2509
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
2510
|
+
}, {
|
|
2511
|
+
name: string;
|
|
2512
|
+
url: string;
|
|
2513
|
+
apiUrl: string;
|
|
2514
|
+
apiKey?: string | undefined;
|
|
2515
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
2516
|
+
}>, "many">>;
|
|
2517
|
+
blocks: z.ZodOptional<z.ZodObject<{
|
|
2518
|
+
confirmations: z.ZodNumber;
|
|
2519
|
+
reorgPeriod: z.ZodOptional<z.ZodNumber>;
|
|
2520
|
+
estimateBlockTime: z.ZodOptional<z.ZodNumber>;
|
|
2521
|
+
}, "strip", z.ZodTypeAny, {
|
|
2522
|
+
confirmations: number;
|
|
2523
|
+
reorgPeriod?: number | undefined;
|
|
2524
|
+
estimateBlockTime?: number | undefined;
|
|
2525
|
+
}, {
|
|
2526
|
+
confirmations: number;
|
|
2527
|
+
reorgPeriod?: number | undefined;
|
|
2528
|
+
estimateBlockTime?: number | undefined;
|
|
2529
|
+
}>>;
|
|
2412
2530
|
chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
displayNameShort: z.ZodOptional<z.ZodString>;
|
|
2416
|
-
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
|
|
2417
|
-
logoURI: z.ZodOptional<z.ZodString>;
|
|
2418
|
-
nativeToken: z.ZodOptional<z.ZodObject<{
|
|
2531
|
+
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
2532
|
+
deployer: z.ZodOptional<z.ZodObject<{
|
|
2419
2533
|
name: z.ZodString;
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
denom: z.ZodOptional<z.ZodString>;
|
|
2534
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2535
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2423
2536
|
}, "strip", z.ZodTypeAny, {
|
|
2424
|
-
symbol: string;
|
|
2425
2537
|
name: string;
|
|
2426
|
-
|
|
2427
|
-
|
|
2538
|
+
email?: string | undefined;
|
|
2539
|
+
url?: string | undefined;
|
|
2428
2540
|
}, {
|
|
2429
|
-
symbol: string;
|
|
2430
2541
|
name: string;
|
|
2431
|
-
|
|
2432
|
-
|
|
2542
|
+
email?: string | undefined;
|
|
2543
|
+
url?: string | undefined;
|
|
2433
2544
|
}>>;
|
|
2434
|
-
|
|
2545
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
2546
|
+
displayNameShort: z.ZodOptional<z.ZodString>;
|
|
2547
|
+
domainId: z.ZodOptional<z.ZodNumber>;
|
|
2548
|
+
gasCurrencyCoinGeckoId: z.ZodOptional<z.ZodString>;
|
|
2549
|
+
gnosisSafeTransactionServiceUrl: z.ZodOptional<z.ZodString>;
|
|
2550
|
+
grpcUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2435
2551
|
http: z.ZodString;
|
|
2436
2552
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
2437
2553
|
webSocket: z.ZodOptional<z.ZodString>;
|
|
@@ -2484,7 +2600,39 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2484
2600
|
maxRequests: number;
|
|
2485
2601
|
baseRetryMs: number;
|
|
2486
2602
|
} | undefined;
|
|
2487
|
-
}>, "
|
|
2603
|
+
}>, "many">>;
|
|
2604
|
+
index: z.ZodOptional<z.ZodObject<{
|
|
2605
|
+
from: z.ZodOptional<z.ZodNumber>;
|
|
2606
|
+
chunk: z.ZodOptional<z.ZodNumber>;
|
|
2607
|
+
mode: z.ZodOptional<z.ZodNativeEnum<typeof AgentIndexMode>>;
|
|
2608
|
+
}, "strip", z.ZodTypeAny, {
|
|
2609
|
+
from?: number | undefined;
|
|
2610
|
+
chunk?: number | undefined;
|
|
2611
|
+
mode?: AgentIndexMode | undefined;
|
|
2612
|
+
}, {
|
|
2613
|
+
from?: number | undefined;
|
|
2614
|
+
chunk?: number | undefined;
|
|
2615
|
+
mode?: AgentIndexMode | undefined;
|
|
2616
|
+
}>>;
|
|
2617
|
+
isTestnet: z.ZodOptional<z.ZodBoolean>;
|
|
2618
|
+
logoURI: z.ZodOptional<z.ZodString>;
|
|
2619
|
+
nativeToken: z.ZodOptional<z.ZodObject<{
|
|
2620
|
+
name: z.ZodString;
|
|
2621
|
+
symbol: z.ZodString;
|
|
2622
|
+
decimals: z.ZodNumber;
|
|
2623
|
+
denom: z.ZodOptional<z.ZodString>;
|
|
2624
|
+
}, "strip", z.ZodTypeAny, {
|
|
2625
|
+
symbol: string;
|
|
2626
|
+
name: string;
|
|
2627
|
+
decimals: number;
|
|
2628
|
+
denom?: string | undefined;
|
|
2629
|
+
}, {
|
|
2630
|
+
symbol: string;
|
|
2631
|
+
name: string;
|
|
2632
|
+
decimals: number;
|
|
2633
|
+
denom?: string | undefined;
|
|
2634
|
+
}>>;
|
|
2635
|
+
protocol: z.ZodNativeEnum<typeof ProtocolType>;
|
|
2488
2636
|
restUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2489
2637
|
http: z.ZodString;
|
|
2490
2638
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2539,7 +2687,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2539
2687
|
baseRetryMs: number;
|
|
2540
2688
|
} | undefined;
|
|
2541
2689
|
}>, "many">>;
|
|
2542
|
-
|
|
2690
|
+
rpcUrls: z.ZodArray<z.ZodObject<{
|
|
2543
2691
|
http: z.ZodString;
|
|
2544
2692
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
2545
2693
|
webSocket: z.ZodOptional<z.ZodString>;
|
|
@@ -2592,59 +2740,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2592
2740
|
maxRequests: number;
|
|
2593
2741
|
baseRetryMs: number;
|
|
2594
2742
|
} | undefined;
|
|
2595
|
-
}>, "
|
|
2596
|
-
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
2597
|
-
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2598
|
-
name: z.ZodString;
|
|
2599
|
-
url: z.ZodString;
|
|
2600
|
-
apiUrl: z.ZodString;
|
|
2601
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
2602
|
-
family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
|
|
2603
|
-
}, "strip", z.ZodTypeAny, {
|
|
2604
|
-
name: string;
|
|
2605
|
-
url: string;
|
|
2606
|
-
apiUrl: string;
|
|
2607
|
-
apiKey?: string | undefined;
|
|
2608
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
2609
|
-
}, {
|
|
2610
|
-
name: string;
|
|
2611
|
-
url: string;
|
|
2612
|
-
apiUrl: string;
|
|
2613
|
-
apiKey?: string | undefined;
|
|
2614
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
2615
|
-
}>, "many">>;
|
|
2616
|
-
blocks: z.ZodOptional<z.ZodObject<{
|
|
2617
|
-
confirmations: z.ZodNumber;
|
|
2618
|
-
reorgPeriod: z.ZodOptional<z.ZodNumber>;
|
|
2619
|
-
estimateBlockTime: z.ZodOptional<z.ZodNumber>;
|
|
2620
|
-
}, "strip", z.ZodTypeAny, {
|
|
2621
|
-
confirmations: number;
|
|
2622
|
-
reorgPeriod?: number | undefined;
|
|
2623
|
-
estimateBlockTime?: number | undefined;
|
|
2624
|
-
}, {
|
|
2625
|
-
confirmations: number;
|
|
2626
|
-
reorgPeriod?: number | undefined;
|
|
2627
|
-
estimateBlockTime?: number | undefined;
|
|
2628
|
-
}>>;
|
|
2629
|
-
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2630
|
-
gasCurrencyCoinGeckoId: z.ZodOptional<z.ZodString>;
|
|
2631
|
-
gnosisSafeTransactionServiceUrl: z.ZodOptional<z.ZodString>;
|
|
2632
|
-
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
2743
|
+
}>, "atleastone">;
|
|
2633
2744
|
slip44: z.ZodOptional<z.ZodNumber>;
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
from: z.ZodOptional<z.ZodNumber>;
|
|
2637
|
-
chunk: z.ZodOptional<z.ZodNumber>;
|
|
2638
|
-
mode: z.ZodOptional<z.ZodNativeEnum<typeof AgentIndexMode>>;
|
|
2639
|
-
}, "strip", z.ZodTypeAny, {
|
|
2640
|
-
from?: number | undefined;
|
|
2641
|
-
chunk?: number | undefined;
|
|
2642
|
-
mode?: AgentIndexMode | undefined;
|
|
2643
|
-
}, {
|
|
2644
|
-
from?: number | undefined;
|
|
2645
|
-
chunk?: number | undefined;
|
|
2646
|
-
mode?: AgentIndexMode | undefined;
|
|
2647
|
-
}>>;
|
|
2745
|
+
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
|
|
2746
|
+
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2648
2747
|
signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2649
2748
|
type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
|
|
2650
2749
|
key: z.ZodString;
|
|
@@ -2706,8 +2805,8 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2706
2805
|
contractAddressBytes: z.ZodOptional<z.ZodNumber>;
|
|
2707
2806
|
}, "strip", z.ZodTypeAny, {
|
|
2708
2807
|
name: string;
|
|
2709
|
-
protocol: ProtocolType;
|
|
2710
2808
|
chainId: string | number;
|
|
2809
|
+
protocol: ProtocolType;
|
|
2711
2810
|
rpcUrls: [{
|
|
2712
2811
|
http: string;
|
|
2713
2812
|
concurrency?: number | undefined;
|
|
@@ -2739,18 +2838,31 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2739
2838
|
interchainGasPaymaster: string;
|
|
2740
2839
|
validatorAnnounce: string;
|
|
2741
2840
|
mailbox: string;
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
displayNameShort?: string | undefined;
|
|
2745
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
2746
|
-
logoURI?: string | undefined;
|
|
2747
|
-
nativeToken?: {
|
|
2748
|
-
symbol: string;
|
|
2841
|
+
bech32Prefix?: string | undefined;
|
|
2842
|
+
blockExplorers?: {
|
|
2749
2843
|
name: string;
|
|
2750
|
-
|
|
2751
|
-
|
|
2844
|
+
url: string;
|
|
2845
|
+
apiUrl: string;
|
|
2846
|
+
apiKey?: string | undefined;
|
|
2847
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
2848
|
+
}[] | undefined;
|
|
2849
|
+
blocks?: {
|
|
2850
|
+
confirmations: number;
|
|
2851
|
+
reorgPeriod?: number | undefined;
|
|
2852
|
+
estimateBlockTime?: number | undefined;
|
|
2752
2853
|
} | undefined;
|
|
2753
|
-
|
|
2854
|
+
customGrpcUrls?: string | undefined;
|
|
2855
|
+
deployer?: {
|
|
2856
|
+
name: string;
|
|
2857
|
+
email?: string | undefined;
|
|
2858
|
+
url?: string | undefined;
|
|
2859
|
+
} | undefined;
|
|
2860
|
+
displayName?: string | undefined;
|
|
2861
|
+
displayNameShort?: string | undefined;
|
|
2862
|
+
domainId?: number | undefined;
|
|
2863
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
2864
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
2865
|
+
grpcUrls?: {
|
|
2754
2866
|
http: string;
|
|
2755
2867
|
concurrency?: number | undefined;
|
|
2756
2868
|
webSocket?: string | undefined;
|
|
@@ -2764,7 +2876,20 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2764
2876
|
baseRetryMs: number;
|
|
2765
2877
|
} | undefined;
|
|
2766
2878
|
}[] | undefined;
|
|
2767
|
-
|
|
2879
|
+
index?: {
|
|
2880
|
+
from?: number | undefined;
|
|
2881
|
+
chunk?: number | undefined;
|
|
2882
|
+
mode?: AgentIndexMode | undefined;
|
|
2883
|
+
} | undefined;
|
|
2884
|
+
isTestnet?: boolean | undefined;
|
|
2885
|
+
logoURI?: string | undefined;
|
|
2886
|
+
nativeToken?: {
|
|
2887
|
+
symbol: string;
|
|
2888
|
+
name: string;
|
|
2889
|
+
decimals: number;
|
|
2890
|
+
denom?: string | undefined;
|
|
2891
|
+
} | undefined;
|
|
2892
|
+
restUrls?: {
|
|
2768
2893
|
http: string;
|
|
2769
2894
|
concurrency?: number | undefined;
|
|
2770
2895
|
webSocket?: string | undefined;
|
|
@@ -2778,30 +2903,9 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2778
2903
|
baseRetryMs: number;
|
|
2779
2904
|
} | undefined;
|
|
2780
2905
|
}[] | undefined;
|
|
2781
|
-
customGrpcUrls?: string | undefined;
|
|
2782
|
-
blockExplorers?: {
|
|
2783
|
-
name: string;
|
|
2784
|
-
url: string;
|
|
2785
|
-
apiUrl: string;
|
|
2786
|
-
apiKey?: string | undefined;
|
|
2787
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
2788
|
-
}[] | undefined;
|
|
2789
|
-
blocks?: {
|
|
2790
|
-
confirmations: number;
|
|
2791
|
-
reorgPeriod?: number | undefined;
|
|
2792
|
-
estimateBlockTime?: number | undefined;
|
|
2793
|
-
} | undefined;
|
|
2794
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
2795
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
2796
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
2797
|
-
bech32Prefix?: string | undefined;
|
|
2798
2906
|
slip44?: number | undefined;
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
from?: number | undefined;
|
|
2802
|
-
chunk?: number | undefined;
|
|
2803
|
-
mode?: AgentIndexMode | undefined;
|
|
2804
|
-
} | undefined;
|
|
2907
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
2908
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
2805
2909
|
signer?: {
|
|
2806
2910
|
key: string;
|
|
2807
2911
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -2827,8 +2931,8 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2827
2931
|
contractAddressBytes?: number | undefined;
|
|
2828
2932
|
}, {
|
|
2829
2933
|
name: string;
|
|
2830
|
-
protocol: ProtocolType;
|
|
2831
2934
|
chainId: string | number;
|
|
2935
|
+
protocol: ProtocolType;
|
|
2832
2936
|
rpcUrls: [{
|
|
2833
2937
|
http: string;
|
|
2834
2938
|
concurrency?: number | undefined;
|
|
@@ -2860,18 +2964,31 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2860
2964
|
interchainGasPaymaster: string;
|
|
2861
2965
|
validatorAnnounce: string;
|
|
2862
2966
|
mailbox: string;
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
displayNameShort?: string | undefined;
|
|
2866
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
2867
|
-
logoURI?: string | undefined;
|
|
2868
|
-
nativeToken?: {
|
|
2869
|
-
symbol: string;
|
|
2967
|
+
bech32Prefix?: string | undefined;
|
|
2968
|
+
blockExplorers?: {
|
|
2870
2969
|
name: string;
|
|
2871
|
-
|
|
2872
|
-
|
|
2970
|
+
url: string;
|
|
2971
|
+
apiUrl: string;
|
|
2972
|
+
apiKey?: string | undefined;
|
|
2973
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
2974
|
+
}[] | undefined;
|
|
2975
|
+
blocks?: {
|
|
2976
|
+
confirmations: number;
|
|
2977
|
+
reorgPeriod?: number | undefined;
|
|
2978
|
+
estimateBlockTime?: number | undefined;
|
|
2873
2979
|
} | undefined;
|
|
2874
|
-
|
|
2980
|
+
customGrpcUrls?: string | undefined;
|
|
2981
|
+
deployer?: {
|
|
2982
|
+
name: string;
|
|
2983
|
+
email?: string | undefined;
|
|
2984
|
+
url?: string | undefined;
|
|
2985
|
+
} | undefined;
|
|
2986
|
+
displayName?: string | undefined;
|
|
2987
|
+
displayNameShort?: string | undefined;
|
|
2988
|
+
domainId?: number | undefined;
|
|
2989
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
2990
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
2991
|
+
grpcUrls?: {
|
|
2875
2992
|
http: string;
|
|
2876
2993
|
concurrency?: number | undefined;
|
|
2877
2994
|
webSocket?: string | undefined;
|
|
@@ -2885,7 +3002,20 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2885
3002
|
baseRetryMs: number;
|
|
2886
3003
|
} | undefined;
|
|
2887
3004
|
}[] | undefined;
|
|
2888
|
-
|
|
3005
|
+
index?: {
|
|
3006
|
+
from?: number | undefined;
|
|
3007
|
+
chunk?: number | undefined;
|
|
3008
|
+
mode?: AgentIndexMode | undefined;
|
|
3009
|
+
} | undefined;
|
|
3010
|
+
isTestnet?: boolean | undefined;
|
|
3011
|
+
logoURI?: string | undefined;
|
|
3012
|
+
nativeToken?: {
|
|
3013
|
+
symbol: string;
|
|
3014
|
+
name: string;
|
|
3015
|
+
decimals: number;
|
|
3016
|
+
denom?: string | undefined;
|
|
3017
|
+
} | undefined;
|
|
3018
|
+
restUrls?: {
|
|
2889
3019
|
http: string;
|
|
2890
3020
|
concurrency?: number | undefined;
|
|
2891
3021
|
webSocket?: string | undefined;
|
|
@@ -2899,30 +3029,9 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2899
3029
|
baseRetryMs: number;
|
|
2900
3030
|
} | undefined;
|
|
2901
3031
|
}[] | undefined;
|
|
2902
|
-
customGrpcUrls?: string | undefined;
|
|
2903
|
-
blockExplorers?: {
|
|
2904
|
-
name: string;
|
|
2905
|
-
url: string;
|
|
2906
|
-
apiUrl: string;
|
|
2907
|
-
apiKey?: string | undefined;
|
|
2908
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
2909
|
-
}[] | undefined;
|
|
2910
|
-
blocks?: {
|
|
2911
|
-
confirmations: number;
|
|
2912
|
-
reorgPeriod?: number | undefined;
|
|
2913
|
-
estimateBlockTime?: number | undefined;
|
|
2914
|
-
} | undefined;
|
|
2915
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
2916
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
2917
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
2918
|
-
bech32Prefix?: string | undefined;
|
|
2919
3032
|
slip44?: number | undefined;
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
from?: number | undefined;
|
|
2923
|
-
chunk?: number | undefined;
|
|
2924
|
-
mode?: AgentIndexMode | undefined;
|
|
2925
|
-
} | undefined;
|
|
3033
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
3034
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
2926
3035
|
signer?: {
|
|
2927
3036
|
key: string;
|
|
2928
3037
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -2948,8 +3057,8 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2948
3057
|
contractAddressBytes?: number | undefined;
|
|
2949
3058
|
}>, {
|
|
2950
3059
|
name: string;
|
|
2951
|
-
protocol: ProtocolType;
|
|
2952
3060
|
chainId: string | number;
|
|
3061
|
+
protocol: ProtocolType;
|
|
2953
3062
|
rpcUrls: [{
|
|
2954
3063
|
http: string;
|
|
2955
3064
|
concurrency?: number | undefined;
|
|
@@ -2981,18 +3090,31 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2981
3090
|
interchainGasPaymaster: string;
|
|
2982
3091
|
validatorAnnounce: string;
|
|
2983
3092
|
mailbox: string;
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
displayNameShort?: string | undefined;
|
|
2987
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
2988
|
-
logoURI?: string | undefined;
|
|
2989
|
-
nativeToken?: {
|
|
2990
|
-
symbol: string;
|
|
3093
|
+
bech32Prefix?: string | undefined;
|
|
3094
|
+
blockExplorers?: {
|
|
2991
3095
|
name: string;
|
|
2992
|
-
|
|
2993
|
-
|
|
3096
|
+
url: string;
|
|
3097
|
+
apiUrl: string;
|
|
3098
|
+
apiKey?: string | undefined;
|
|
3099
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
3100
|
+
}[] | undefined;
|
|
3101
|
+
blocks?: {
|
|
3102
|
+
confirmations: number;
|
|
3103
|
+
reorgPeriod?: number | undefined;
|
|
3104
|
+
estimateBlockTime?: number | undefined;
|
|
2994
3105
|
} | undefined;
|
|
2995
|
-
|
|
3106
|
+
customGrpcUrls?: string | undefined;
|
|
3107
|
+
deployer?: {
|
|
3108
|
+
name: string;
|
|
3109
|
+
email?: string | undefined;
|
|
3110
|
+
url?: string | undefined;
|
|
3111
|
+
} | undefined;
|
|
3112
|
+
displayName?: string | undefined;
|
|
3113
|
+
displayNameShort?: string | undefined;
|
|
3114
|
+
domainId?: number | undefined;
|
|
3115
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
3116
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
3117
|
+
grpcUrls?: {
|
|
2996
3118
|
http: string;
|
|
2997
3119
|
concurrency?: number | undefined;
|
|
2998
3120
|
webSocket?: string | undefined;
|
|
@@ -3006,7 +3128,20 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3006
3128
|
baseRetryMs: number;
|
|
3007
3129
|
} | undefined;
|
|
3008
3130
|
}[] | undefined;
|
|
3009
|
-
|
|
3131
|
+
index?: {
|
|
3132
|
+
from?: number | undefined;
|
|
3133
|
+
chunk?: number | undefined;
|
|
3134
|
+
mode?: AgentIndexMode | undefined;
|
|
3135
|
+
} | undefined;
|
|
3136
|
+
isTestnet?: boolean | undefined;
|
|
3137
|
+
logoURI?: string | undefined;
|
|
3138
|
+
nativeToken?: {
|
|
3139
|
+
symbol: string;
|
|
3140
|
+
name: string;
|
|
3141
|
+
decimals: number;
|
|
3142
|
+
denom?: string | undefined;
|
|
3143
|
+
} | undefined;
|
|
3144
|
+
restUrls?: {
|
|
3010
3145
|
http: string;
|
|
3011
3146
|
concurrency?: number | undefined;
|
|
3012
3147
|
webSocket?: string | undefined;
|
|
@@ -3020,30 +3155,9 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3020
3155
|
baseRetryMs: number;
|
|
3021
3156
|
} | undefined;
|
|
3022
3157
|
}[] | undefined;
|
|
3023
|
-
customGrpcUrls?: string | undefined;
|
|
3024
|
-
blockExplorers?: {
|
|
3025
|
-
name: string;
|
|
3026
|
-
url: string;
|
|
3027
|
-
apiUrl: string;
|
|
3028
|
-
apiKey?: string | undefined;
|
|
3029
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
3030
|
-
}[] | undefined;
|
|
3031
|
-
blocks?: {
|
|
3032
|
-
confirmations: number;
|
|
3033
|
-
reorgPeriod?: number | undefined;
|
|
3034
|
-
estimateBlockTime?: number | undefined;
|
|
3035
|
-
} | undefined;
|
|
3036
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
3037
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
3038
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
3039
|
-
bech32Prefix?: string | undefined;
|
|
3040
3158
|
slip44?: number | undefined;
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
from?: number | undefined;
|
|
3044
|
-
chunk?: number | undefined;
|
|
3045
|
-
mode?: AgentIndexMode | undefined;
|
|
3046
|
-
} | undefined;
|
|
3159
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
3160
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
3047
3161
|
signer?: {
|
|
3048
3162
|
key: string;
|
|
3049
3163
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -3069,8 +3183,8 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3069
3183
|
contractAddressBytes?: number | undefined;
|
|
3070
3184
|
}, {
|
|
3071
3185
|
name: string;
|
|
3072
|
-
protocol: ProtocolType;
|
|
3073
3186
|
chainId: string | number;
|
|
3187
|
+
protocol: ProtocolType;
|
|
3074
3188
|
rpcUrls: [{
|
|
3075
3189
|
http: string;
|
|
3076
3190
|
concurrency?: number | undefined;
|
|
@@ -3102,18 +3216,31 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3102
3216
|
interchainGasPaymaster: string;
|
|
3103
3217
|
validatorAnnounce: string;
|
|
3104
3218
|
mailbox: string;
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
displayNameShort?: string | undefined;
|
|
3108
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
3109
|
-
logoURI?: string | undefined;
|
|
3110
|
-
nativeToken?: {
|
|
3111
|
-
symbol: string;
|
|
3219
|
+
bech32Prefix?: string | undefined;
|
|
3220
|
+
blockExplorers?: {
|
|
3112
3221
|
name: string;
|
|
3113
|
-
|
|
3114
|
-
|
|
3222
|
+
url: string;
|
|
3223
|
+
apiUrl: string;
|
|
3224
|
+
apiKey?: string | undefined;
|
|
3225
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
3226
|
+
}[] | undefined;
|
|
3227
|
+
blocks?: {
|
|
3228
|
+
confirmations: number;
|
|
3229
|
+
reorgPeriod?: number | undefined;
|
|
3230
|
+
estimateBlockTime?: number | undefined;
|
|
3231
|
+
} | undefined;
|
|
3232
|
+
customGrpcUrls?: string | undefined;
|
|
3233
|
+
deployer?: {
|
|
3234
|
+
name: string;
|
|
3235
|
+
email?: string | undefined;
|
|
3236
|
+
url?: string | undefined;
|
|
3115
3237
|
} | undefined;
|
|
3116
|
-
|
|
3238
|
+
displayName?: string | undefined;
|
|
3239
|
+
displayNameShort?: string | undefined;
|
|
3240
|
+
domainId?: number | undefined;
|
|
3241
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
3242
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
3243
|
+
grpcUrls?: {
|
|
3117
3244
|
http: string;
|
|
3118
3245
|
concurrency?: number | undefined;
|
|
3119
3246
|
webSocket?: string | undefined;
|
|
@@ -3127,7 +3254,20 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3127
3254
|
baseRetryMs: number;
|
|
3128
3255
|
} | undefined;
|
|
3129
3256
|
}[] | undefined;
|
|
3130
|
-
|
|
3257
|
+
index?: {
|
|
3258
|
+
from?: number | undefined;
|
|
3259
|
+
chunk?: number | undefined;
|
|
3260
|
+
mode?: AgentIndexMode | undefined;
|
|
3261
|
+
} | undefined;
|
|
3262
|
+
isTestnet?: boolean | undefined;
|
|
3263
|
+
logoURI?: string | undefined;
|
|
3264
|
+
nativeToken?: {
|
|
3265
|
+
symbol: string;
|
|
3266
|
+
name: string;
|
|
3267
|
+
decimals: number;
|
|
3268
|
+
denom?: string | undefined;
|
|
3269
|
+
} | undefined;
|
|
3270
|
+
restUrls?: {
|
|
3131
3271
|
http: string;
|
|
3132
3272
|
concurrency?: number | undefined;
|
|
3133
3273
|
webSocket?: string | undefined;
|
|
@@ -3141,30 +3281,9 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3141
3281
|
baseRetryMs: number;
|
|
3142
3282
|
} | undefined;
|
|
3143
3283
|
}[] | undefined;
|
|
3144
|
-
customGrpcUrls?: string | undefined;
|
|
3145
|
-
blockExplorers?: {
|
|
3146
|
-
name: string;
|
|
3147
|
-
url: string;
|
|
3148
|
-
apiUrl: string;
|
|
3149
|
-
apiKey?: string | undefined;
|
|
3150
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
3151
|
-
}[] | undefined;
|
|
3152
|
-
blocks?: {
|
|
3153
|
-
confirmations: number;
|
|
3154
|
-
reorgPeriod?: number | undefined;
|
|
3155
|
-
estimateBlockTime?: number | undefined;
|
|
3156
|
-
} | undefined;
|
|
3157
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
3158
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
3159
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
3160
|
-
bech32Prefix?: string | undefined;
|
|
3161
3284
|
slip44?: number | undefined;
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
from?: number | undefined;
|
|
3165
|
-
chunk?: number | undefined;
|
|
3166
|
-
mode?: AgentIndexMode | undefined;
|
|
3167
|
-
} | undefined;
|
|
3285
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
3286
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
3168
3287
|
signer?: {
|
|
3169
3288
|
key: string;
|
|
3170
3289
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -3190,8 +3309,8 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3190
3309
|
contractAddressBytes?: number | undefined;
|
|
3191
3310
|
}>>, Record<string, {
|
|
3192
3311
|
name: string;
|
|
3193
|
-
protocol: ProtocolType;
|
|
3194
3312
|
chainId: string | number;
|
|
3313
|
+
protocol: ProtocolType;
|
|
3195
3314
|
rpcUrls: [{
|
|
3196
3315
|
http: string;
|
|
3197
3316
|
concurrency?: number | undefined;
|
|
@@ -3223,18 +3342,31 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3223
3342
|
interchainGasPaymaster: string;
|
|
3224
3343
|
validatorAnnounce: string;
|
|
3225
3344
|
mailbox: string;
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
displayNameShort?: string | undefined;
|
|
3229
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
3230
|
-
logoURI?: string | undefined;
|
|
3231
|
-
nativeToken?: {
|
|
3232
|
-
symbol: string;
|
|
3345
|
+
bech32Prefix?: string | undefined;
|
|
3346
|
+
blockExplorers?: {
|
|
3233
3347
|
name: string;
|
|
3234
|
-
|
|
3235
|
-
|
|
3348
|
+
url: string;
|
|
3349
|
+
apiUrl: string;
|
|
3350
|
+
apiKey?: string | undefined;
|
|
3351
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
3352
|
+
}[] | undefined;
|
|
3353
|
+
blocks?: {
|
|
3354
|
+
confirmations: number;
|
|
3355
|
+
reorgPeriod?: number | undefined;
|
|
3356
|
+
estimateBlockTime?: number | undefined;
|
|
3236
3357
|
} | undefined;
|
|
3237
|
-
|
|
3358
|
+
customGrpcUrls?: string | undefined;
|
|
3359
|
+
deployer?: {
|
|
3360
|
+
name: string;
|
|
3361
|
+
email?: string | undefined;
|
|
3362
|
+
url?: string | undefined;
|
|
3363
|
+
} | undefined;
|
|
3364
|
+
displayName?: string | undefined;
|
|
3365
|
+
displayNameShort?: string | undefined;
|
|
3366
|
+
domainId?: number | undefined;
|
|
3367
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
3368
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
3369
|
+
grpcUrls?: {
|
|
3238
3370
|
http: string;
|
|
3239
3371
|
concurrency?: number | undefined;
|
|
3240
3372
|
webSocket?: string | undefined;
|
|
@@ -3248,7 +3380,20 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3248
3380
|
baseRetryMs: number;
|
|
3249
3381
|
} | undefined;
|
|
3250
3382
|
}[] | undefined;
|
|
3251
|
-
|
|
3383
|
+
index?: {
|
|
3384
|
+
from?: number | undefined;
|
|
3385
|
+
chunk?: number | undefined;
|
|
3386
|
+
mode?: AgentIndexMode | undefined;
|
|
3387
|
+
} | undefined;
|
|
3388
|
+
isTestnet?: boolean | undefined;
|
|
3389
|
+
logoURI?: string | undefined;
|
|
3390
|
+
nativeToken?: {
|
|
3391
|
+
symbol: string;
|
|
3392
|
+
name: string;
|
|
3393
|
+
decimals: number;
|
|
3394
|
+
denom?: string | undefined;
|
|
3395
|
+
} | undefined;
|
|
3396
|
+
restUrls?: {
|
|
3252
3397
|
http: string;
|
|
3253
3398
|
concurrency?: number | undefined;
|
|
3254
3399
|
webSocket?: string | undefined;
|
|
@@ -3262,30 +3407,9 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3262
3407
|
baseRetryMs: number;
|
|
3263
3408
|
} | undefined;
|
|
3264
3409
|
}[] | undefined;
|
|
3265
|
-
customGrpcUrls?: string | undefined;
|
|
3266
|
-
blockExplorers?: {
|
|
3267
|
-
name: string;
|
|
3268
|
-
url: string;
|
|
3269
|
-
apiUrl: string;
|
|
3270
|
-
apiKey?: string | undefined;
|
|
3271
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
3272
|
-
}[] | undefined;
|
|
3273
|
-
blocks?: {
|
|
3274
|
-
confirmations: number;
|
|
3275
|
-
reorgPeriod?: number | undefined;
|
|
3276
|
-
estimateBlockTime?: number | undefined;
|
|
3277
|
-
} | undefined;
|
|
3278
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
3279
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
3280
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
3281
|
-
bech32Prefix?: string | undefined;
|
|
3282
3410
|
slip44?: number | undefined;
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
from?: number | undefined;
|
|
3286
|
-
chunk?: number | undefined;
|
|
3287
|
-
mode?: AgentIndexMode | undefined;
|
|
3288
|
-
} | undefined;
|
|
3411
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
3412
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
3289
3413
|
signer?: {
|
|
3290
3414
|
key: string;
|
|
3291
3415
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -3311,8 +3435,8 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3311
3435
|
contractAddressBytes?: number | undefined;
|
|
3312
3436
|
}>, Record<string, {
|
|
3313
3437
|
name: string;
|
|
3314
|
-
protocol: ProtocolType;
|
|
3315
3438
|
chainId: string | number;
|
|
3439
|
+
protocol: ProtocolType;
|
|
3316
3440
|
rpcUrls: [{
|
|
3317
3441
|
http: string;
|
|
3318
3442
|
concurrency?: number | undefined;
|
|
@@ -3344,18 +3468,31 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3344
3468
|
interchainGasPaymaster: string;
|
|
3345
3469
|
validatorAnnounce: string;
|
|
3346
3470
|
mailbox: string;
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
displayNameShort?: string | undefined;
|
|
3350
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
3351
|
-
logoURI?: string | undefined;
|
|
3352
|
-
nativeToken?: {
|
|
3353
|
-
symbol: string;
|
|
3471
|
+
bech32Prefix?: string | undefined;
|
|
3472
|
+
blockExplorers?: {
|
|
3354
3473
|
name: string;
|
|
3355
|
-
|
|
3356
|
-
|
|
3474
|
+
url: string;
|
|
3475
|
+
apiUrl: string;
|
|
3476
|
+
apiKey?: string | undefined;
|
|
3477
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
3478
|
+
}[] | undefined;
|
|
3479
|
+
blocks?: {
|
|
3480
|
+
confirmations: number;
|
|
3481
|
+
reorgPeriod?: number | undefined;
|
|
3482
|
+
estimateBlockTime?: number | undefined;
|
|
3357
3483
|
} | undefined;
|
|
3358
|
-
|
|
3484
|
+
customGrpcUrls?: string | undefined;
|
|
3485
|
+
deployer?: {
|
|
3486
|
+
name: string;
|
|
3487
|
+
email?: string | undefined;
|
|
3488
|
+
url?: string | undefined;
|
|
3489
|
+
} | undefined;
|
|
3490
|
+
displayName?: string | undefined;
|
|
3491
|
+
displayNameShort?: string | undefined;
|
|
3492
|
+
domainId?: number | undefined;
|
|
3493
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
3494
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
3495
|
+
grpcUrls?: {
|
|
3359
3496
|
http: string;
|
|
3360
3497
|
concurrency?: number | undefined;
|
|
3361
3498
|
webSocket?: string | undefined;
|
|
@@ -3369,7 +3506,20 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3369
3506
|
baseRetryMs: number;
|
|
3370
3507
|
} | undefined;
|
|
3371
3508
|
}[] | undefined;
|
|
3372
|
-
|
|
3509
|
+
index?: {
|
|
3510
|
+
from?: number | undefined;
|
|
3511
|
+
chunk?: number | undefined;
|
|
3512
|
+
mode?: AgentIndexMode | undefined;
|
|
3513
|
+
} | undefined;
|
|
3514
|
+
isTestnet?: boolean | undefined;
|
|
3515
|
+
logoURI?: string | undefined;
|
|
3516
|
+
nativeToken?: {
|
|
3517
|
+
symbol: string;
|
|
3518
|
+
name: string;
|
|
3519
|
+
decimals: number;
|
|
3520
|
+
denom?: string | undefined;
|
|
3521
|
+
} | undefined;
|
|
3522
|
+
restUrls?: {
|
|
3373
3523
|
http: string;
|
|
3374
3524
|
concurrency?: number | undefined;
|
|
3375
3525
|
webSocket?: string | undefined;
|
|
@@ -3383,30 +3533,9 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3383
3533
|
baseRetryMs: number;
|
|
3384
3534
|
} | undefined;
|
|
3385
3535
|
}[] | undefined;
|
|
3386
|
-
customGrpcUrls?: string | undefined;
|
|
3387
|
-
blockExplorers?: {
|
|
3388
|
-
name: string;
|
|
3389
|
-
url: string;
|
|
3390
|
-
apiUrl: string;
|
|
3391
|
-
apiKey?: string | undefined;
|
|
3392
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
3393
|
-
}[] | undefined;
|
|
3394
|
-
blocks?: {
|
|
3395
|
-
confirmations: number;
|
|
3396
|
-
reorgPeriod?: number | undefined;
|
|
3397
|
-
estimateBlockTime?: number | undefined;
|
|
3398
|
-
} | undefined;
|
|
3399
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
3400
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
3401
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
3402
|
-
bech32Prefix?: string | undefined;
|
|
3403
3536
|
slip44?: number | undefined;
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
from?: number | undefined;
|
|
3407
|
-
chunk?: number | undefined;
|
|
3408
|
-
mode?: AgentIndexMode | undefined;
|
|
3409
|
-
} | undefined;
|
|
3537
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
3538
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
3410
3539
|
signer?: {
|
|
3411
3540
|
key: string;
|
|
3412
3541
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -3625,6 +3754,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3625
3754
|
destinationDomain?: number | "*" | [number, ...number[]] | undefined;
|
|
3626
3755
|
recipientAddress?: string | string[] | undefined;
|
|
3627
3756
|
}>, "many">, z.ZodString]>>;
|
|
3757
|
+
addressBlacklist: z.ZodOptional<z.ZodString>;
|
|
3628
3758
|
transactionGasLimit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3629
3759
|
skipTransactionGasLimitFor: z.ZodOptional<z.ZodString>;
|
|
3630
3760
|
allowLocalCheckpointSyncers: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3666,8 +3796,8 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3666
3796
|
}, "strip", z.ZodTypeAny, {
|
|
3667
3797
|
chains: Record<string, {
|
|
3668
3798
|
name: string;
|
|
3669
|
-
protocol: ProtocolType;
|
|
3670
3799
|
chainId: string | number;
|
|
3800
|
+
protocol: ProtocolType;
|
|
3671
3801
|
rpcUrls: [{
|
|
3672
3802
|
http: string;
|
|
3673
3803
|
concurrency?: number | undefined;
|
|
@@ -3699,18 +3829,31 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3699
3829
|
interchainGasPaymaster: string;
|
|
3700
3830
|
validatorAnnounce: string;
|
|
3701
3831
|
mailbox: string;
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
displayNameShort?: string | undefined;
|
|
3705
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
3706
|
-
logoURI?: string | undefined;
|
|
3707
|
-
nativeToken?: {
|
|
3708
|
-
symbol: string;
|
|
3832
|
+
bech32Prefix?: string | undefined;
|
|
3833
|
+
blockExplorers?: {
|
|
3709
3834
|
name: string;
|
|
3710
|
-
|
|
3711
|
-
|
|
3835
|
+
url: string;
|
|
3836
|
+
apiUrl: string;
|
|
3837
|
+
apiKey?: string | undefined;
|
|
3838
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
3839
|
+
}[] | undefined;
|
|
3840
|
+
blocks?: {
|
|
3841
|
+
confirmations: number;
|
|
3842
|
+
reorgPeriod?: number | undefined;
|
|
3843
|
+
estimateBlockTime?: number | undefined;
|
|
3712
3844
|
} | undefined;
|
|
3713
|
-
|
|
3845
|
+
customGrpcUrls?: string | undefined;
|
|
3846
|
+
deployer?: {
|
|
3847
|
+
name: string;
|
|
3848
|
+
email?: string | undefined;
|
|
3849
|
+
url?: string | undefined;
|
|
3850
|
+
} | undefined;
|
|
3851
|
+
displayName?: string | undefined;
|
|
3852
|
+
displayNameShort?: string | undefined;
|
|
3853
|
+
domainId?: number | undefined;
|
|
3854
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
3855
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
3856
|
+
grpcUrls?: {
|
|
3714
3857
|
http: string;
|
|
3715
3858
|
concurrency?: number | undefined;
|
|
3716
3859
|
webSocket?: string | undefined;
|
|
@@ -3724,7 +3867,20 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3724
3867
|
baseRetryMs: number;
|
|
3725
3868
|
} | undefined;
|
|
3726
3869
|
}[] | undefined;
|
|
3727
|
-
|
|
3870
|
+
index?: {
|
|
3871
|
+
from?: number | undefined;
|
|
3872
|
+
chunk?: number | undefined;
|
|
3873
|
+
mode?: AgentIndexMode | undefined;
|
|
3874
|
+
} | undefined;
|
|
3875
|
+
isTestnet?: boolean | undefined;
|
|
3876
|
+
logoURI?: string | undefined;
|
|
3877
|
+
nativeToken?: {
|
|
3878
|
+
symbol: string;
|
|
3879
|
+
name: string;
|
|
3880
|
+
decimals: number;
|
|
3881
|
+
denom?: string | undefined;
|
|
3882
|
+
} | undefined;
|
|
3883
|
+
restUrls?: {
|
|
3728
3884
|
http: string;
|
|
3729
3885
|
concurrency?: number | undefined;
|
|
3730
3886
|
webSocket?: string | undefined;
|
|
@@ -3738,30 +3894,9 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3738
3894
|
baseRetryMs: number;
|
|
3739
3895
|
} | undefined;
|
|
3740
3896
|
}[] | undefined;
|
|
3741
|
-
customGrpcUrls?: string | undefined;
|
|
3742
|
-
blockExplorers?: {
|
|
3743
|
-
name: string;
|
|
3744
|
-
url: string;
|
|
3745
|
-
apiUrl: string;
|
|
3746
|
-
apiKey?: string | undefined;
|
|
3747
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
3748
|
-
}[] | undefined;
|
|
3749
|
-
blocks?: {
|
|
3750
|
-
confirmations: number;
|
|
3751
|
-
reorgPeriod?: number | undefined;
|
|
3752
|
-
estimateBlockTime?: number | undefined;
|
|
3753
|
-
} | undefined;
|
|
3754
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
3755
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
3756
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
3757
|
-
bech32Prefix?: string | undefined;
|
|
3758
3897
|
slip44?: number | undefined;
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
from?: number | undefined;
|
|
3762
|
-
chunk?: number | undefined;
|
|
3763
|
-
mode?: AgentIndexMode | undefined;
|
|
3764
|
-
} | undefined;
|
|
3898
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
3899
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
3765
3900
|
signer?: {
|
|
3766
3901
|
key: string;
|
|
3767
3902
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -3847,6 +3982,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3847
3982
|
destinationDomain?: number | "*" | [number, ...number[]] | undefined;
|
|
3848
3983
|
recipientAddress?: string | string[] | undefined;
|
|
3849
3984
|
}[] | undefined;
|
|
3985
|
+
addressBlacklist?: string | undefined;
|
|
3850
3986
|
transactionGasLimit?: string | number | undefined;
|
|
3851
3987
|
skipTransactionGasLimitFor?: string | undefined;
|
|
3852
3988
|
allowLocalCheckpointSyncers?: boolean | undefined;
|
|
@@ -3862,8 +3998,8 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3862
3998
|
}, {
|
|
3863
3999
|
chains: Record<string, {
|
|
3864
4000
|
name: string;
|
|
3865
|
-
protocol: ProtocolType;
|
|
3866
4001
|
chainId: string | number;
|
|
4002
|
+
protocol: ProtocolType;
|
|
3867
4003
|
rpcUrls: [{
|
|
3868
4004
|
http: string;
|
|
3869
4005
|
concurrency?: number | undefined;
|
|
@@ -3895,18 +4031,31 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3895
4031
|
interchainGasPaymaster: string;
|
|
3896
4032
|
validatorAnnounce: string;
|
|
3897
4033
|
mailbox: string;
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
displayNameShort?: string | undefined;
|
|
3901
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
3902
|
-
logoURI?: string | undefined;
|
|
3903
|
-
nativeToken?: {
|
|
3904
|
-
symbol: string;
|
|
4034
|
+
bech32Prefix?: string | undefined;
|
|
4035
|
+
blockExplorers?: {
|
|
3905
4036
|
name: string;
|
|
3906
|
-
|
|
3907
|
-
|
|
4037
|
+
url: string;
|
|
4038
|
+
apiUrl: string;
|
|
4039
|
+
apiKey?: string | undefined;
|
|
4040
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4041
|
+
}[] | undefined;
|
|
4042
|
+
blocks?: {
|
|
4043
|
+
confirmations: number;
|
|
4044
|
+
reorgPeriod?: number | undefined;
|
|
4045
|
+
estimateBlockTime?: number | undefined;
|
|
3908
4046
|
} | undefined;
|
|
3909
|
-
|
|
4047
|
+
customGrpcUrls?: string | undefined;
|
|
4048
|
+
deployer?: {
|
|
4049
|
+
name: string;
|
|
4050
|
+
email?: string | undefined;
|
|
4051
|
+
url?: string | undefined;
|
|
4052
|
+
} | undefined;
|
|
4053
|
+
displayName?: string | undefined;
|
|
4054
|
+
displayNameShort?: string | undefined;
|
|
4055
|
+
domainId?: number | undefined;
|
|
4056
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
4057
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
4058
|
+
grpcUrls?: {
|
|
3910
4059
|
http: string;
|
|
3911
4060
|
concurrency?: number | undefined;
|
|
3912
4061
|
webSocket?: string | undefined;
|
|
@@ -3920,7 +4069,20 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3920
4069
|
baseRetryMs: number;
|
|
3921
4070
|
} | undefined;
|
|
3922
4071
|
}[] | undefined;
|
|
3923
|
-
|
|
4072
|
+
index?: {
|
|
4073
|
+
from?: number | undefined;
|
|
4074
|
+
chunk?: number | undefined;
|
|
4075
|
+
mode?: AgentIndexMode | undefined;
|
|
4076
|
+
} | undefined;
|
|
4077
|
+
isTestnet?: boolean | undefined;
|
|
4078
|
+
logoURI?: string | undefined;
|
|
4079
|
+
nativeToken?: {
|
|
4080
|
+
symbol: string;
|
|
4081
|
+
name: string;
|
|
4082
|
+
decimals: number;
|
|
4083
|
+
denom?: string | undefined;
|
|
4084
|
+
} | undefined;
|
|
4085
|
+
restUrls?: {
|
|
3924
4086
|
http: string;
|
|
3925
4087
|
concurrency?: number | undefined;
|
|
3926
4088
|
webSocket?: string | undefined;
|
|
@@ -3934,30 +4096,9 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3934
4096
|
baseRetryMs: number;
|
|
3935
4097
|
} | undefined;
|
|
3936
4098
|
}[] | undefined;
|
|
3937
|
-
customGrpcUrls?: string | undefined;
|
|
3938
|
-
blockExplorers?: {
|
|
3939
|
-
name: string;
|
|
3940
|
-
url: string;
|
|
3941
|
-
apiUrl: string;
|
|
3942
|
-
apiKey?: string | undefined;
|
|
3943
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
3944
|
-
}[] | undefined;
|
|
3945
|
-
blocks?: {
|
|
3946
|
-
confirmations: number;
|
|
3947
|
-
reorgPeriod?: number | undefined;
|
|
3948
|
-
estimateBlockTime?: number | undefined;
|
|
3949
|
-
} | undefined;
|
|
3950
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
3951
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
3952
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
3953
|
-
bech32Prefix?: string | undefined;
|
|
3954
4099
|
slip44?: number | undefined;
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
from?: number | undefined;
|
|
3958
|
-
chunk?: number | undefined;
|
|
3959
|
-
mode?: AgentIndexMode | undefined;
|
|
3960
|
-
} | undefined;
|
|
4100
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
4101
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
3961
4102
|
signer?: {
|
|
3962
4103
|
key: string;
|
|
3963
4104
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -4043,6 +4184,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4043
4184
|
destinationDomain?: number | "*" | [number, ...number[]] | undefined;
|
|
4044
4185
|
recipientAddress?: string | string[] | undefined;
|
|
4045
4186
|
}[] | undefined;
|
|
4187
|
+
addressBlacklist?: string | undefined;
|
|
4046
4188
|
transactionGasLimit?: string | number | undefined;
|
|
4047
4189
|
skipTransactionGasLimitFor?: string | undefined;
|
|
4048
4190
|
allowLocalCheckpointSyncers?: boolean | undefined;
|
|
@@ -4061,30 +4203,60 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4061
4203
|
metricsPort: z.ZodOptional<z.ZodNumber>;
|
|
4062
4204
|
chains: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
4063
4205
|
name: z.ZodString;
|
|
4064
|
-
|
|
4206
|
+
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
4207
|
+
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4208
|
+
name: z.ZodString;
|
|
4209
|
+
url: z.ZodString;
|
|
4210
|
+
apiUrl: z.ZodString;
|
|
4211
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
4212
|
+
family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
|
|
4213
|
+
}, "strip", z.ZodTypeAny, {
|
|
4214
|
+
name: string;
|
|
4215
|
+
url: string;
|
|
4216
|
+
apiUrl: string;
|
|
4217
|
+
apiKey?: string | undefined;
|
|
4218
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4219
|
+
}, {
|
|
4220
|
+
name: string;
|
|
4221
|
+
url: string;
|
|
4222
|
+
apiUrl: string;
|
|
4223
|
+
apiKey?: string | undefined;
|
|
4224
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4225
|
+
}>, "many">>;
|
|
4226
|
+
blocks: z.ZodOptional<z.ZodObject<{
|
|
4227
|
+
confirmations: z.ZodNumber;
|
|
4228
|
+
reorgPeriod: z.ZodOptional<z.ZodNumber>;
|
|
4229
|
+
estimateBlockTime: z.ZodOptional<z.ZodNumber>;
|
|
4230
|
+
}, "strip", z.ZodTypeAny, {
|
|
4231
|
+
confirmations: number;
|
|
4232
|
+
reorgPeriod?: number | undefined;
|
|
4233
|
+
estimateBlockTime?: number | undefined;
|
|
4234
|
+
}, {
|
|
4235
|
+
confirmations: number;
|
|
4236
|
+
reorgPeriod?: number | undefined;
|
|
4237
|
+
estimateBlockTime?: number | undefined;
|
|
4238
|
+
}>>;
|
|
4065
4239
|
chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
displayNameShort: z.ZodOptional<z.ZodString>;
|
|
4069
|
-
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
|
|
4070
|
-
logoURI: z.ZodOptional<z.ZodString>;
|
|
4071
|
-
nativeToken: z.ZodOptional<z.ZodObject<{
|
|
4240
|
+
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
4241
|
+
deployer: z.ZodOptional<z.ZodObject<{
|
|
4072
4242
|
name: z.ZodString;
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
denom: z.ZodOptional<z.ZodString>;
|
|
4243
|
+
email: z.ZodOptional<z.ZodString>;
|
|
4244
|
+
url: z.ZodOptional<z.ZodString>;
|
|
4076
4245
|
}, "strip", z.ZodTypeAny, {
|
|
4077
|
-
symbol: string;
|
|
4078
4246
|
name: string;
|
|
4079
|
-
|
|
4080
|
-
|
|
4247
|
+
email?: string | undefined;
|
|
4248
|
+
url?: string | undefined;
|
|
4081
4249
|
}, {
|
|
4082
|
-
symbol: string;
|
|
4083
4250
|
name: string;
|
|
4084
|
-
|
|
4085
|
-
|
|
4251
|
+
email?: string | undefined;
|
|
4252
|
+
url?: string | undefined;
|
|
4086
4253
|
}>>;
|
|
4087
|
-
|
|
4254
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
4255
|
+
displayNameShort: z.ZodOptional<z.ZodString>;
|
|
4256
|
+
domainId: z.ZodOptional<z.ZodNumber>;
|
|
4257
|
+
gasCurrencyCoinGeckoId: z.ZodOptional<z.ZodString>;
|
|
4258
|
+
gnosisSafeTransactionServiceUrl: z.ZodOptional<z.ZodString>;
|
|
4259
|
+
grpcUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4088
4260
|
http: z.ZodString;
|
|
4089
4261
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
4090
4262
|
webSocket: z.ZodOptional<z.ZodString>;
|
|
@@ -4137,7 +4309,39 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4137
4309
|
maxRequests: number;
|
|
4138
4310
|
baseRetryMs: number;
|
|
4139
4311
|
} | undefined;
|
|
4140
|
-
}>, "
|
|
4312
|
+
}>, "many">>;
|
|
4313
|
+
index: z.ZodOptional<z.ZodObject<{
|
|
4314
|
+
from: z.ZodOptional<z.ZodNumber>;
|
|
4315
|
+
chunk: z.ZodOptional<z.ZodNumber>;
|
|
4316
|
+
mode: z.ZodOptional<z.ZodNativeEnum<typeof AgentIndexMode>>;
|
|
4317
|
+
}, "strip", z.ZodTypeAny, {
|
|
4318
|
+
from?: number | undefined;
|
|
4319
|
+
chunk?: number | undefined;
|
|
4320
|
+
mode?: AgentIndexMode | undefined;
|
|
4321
|
+
}, {
|
|
4322
|
+
from?: number | undefined;
|
|
4323
|
+
chunk?: number | undefined;
|
|
4324
|
+
mode?: AgentIndexMode | undefined;
|
|
4325
|
+
}>>;
|
|
4326
|
+
isTestnet: z.ZodOptional<z.ZodBoolean>;
|
|
4327
|
+
logoURI: z.ZodOptional<z.ZodString>;
|
|
4328
|
+
nativeToken: z.ZodOptional<z.ZodObject<{
|
|
4329
|
+
name: z.ZodString;
|
|
4330
|
+
symbol: z.ZodString;
|
|
4331
|
+
decimals: z.ZodNumber;
|
|
4332
|
+
denom: z.ZodOptional<z.ZodString>;
|
|
4333
|
+
}, "strip", z.ZodTypeAny, {
|
|
4334
|
+
symbol: string;
|
|
4335
|
+
name: string;
|
|
4336
|
+
decimals: number;
|
|
4337
|
+
denom?: string | undefined;
|
|
4338
|
+
}, {
|
|
4339
|
+
symbol: string;
|
|
4340
|
+
name: string;
|
|
4341
|
+
decimals: number;
|
|
4342
|
+
denom?: string | undefined;
|
|
4343
|
+
}>>;
|
|
4344
|
+
protocol: z.ZodNativeEnum<typeof ProtocolType>;
|
|
4141
4345
|
restUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4142
4346
|
http: z.ZodString;
|
|
4143
4347
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4192,7 +4396,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4192
4396
|
baseRetryMs: number;
|
|
4193
4397
|
} | undefined;
|
|
4194
4398
|
}>, "many">>;
|
|
4195
|
-
|
|
4399
|
+
rpcUrls: z.ZodArray<z.ZodObject<{
|
|
4196
4400
|
http: z.ZodString;
|
|
4197
4401
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
4198
4402
|
webSocket: z.ZodOptional<z.ZodString>;
|
|
@@ -4245,59 +4449,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4245
4449
|
maxRequests: number;
|
|
4246
4450
|
baseRetryMs: number;
|
|
4247
4451
|
} | undefined;
|
|
4248
|
-
}>, "
|
|
4249
|
-
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
4250
|
-
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4251
|
-
name: z.ZodString;
|
|
4252
|
-
url: z.ZodString;
|
|
4253
|
-
apiUrl: z.ZodString;
|
|
4254
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
4255
|
-
family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
|
|
4256
|
-
}, "strip", z.ZodTypeAny, {
|
|
4257
|
-
name: string;
|
|
4258
|
-
url: string;
|
|
4259
|
-
apiUrl: string;
|
|
4260
|
-
apiKey?: string | undefined;
|
|
4261
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4262
|
-
}, {
|
|
4263
|
-
name: string;
|
|
4264
|
-
url: string;
|
|
4265
|
-
apiUrl: string;
|
|
4266
|
-
apiKey?: string | undefined;
|
|
4267
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4268
|
-
}>, "many">>;
|
|
4269
|
-
blocks: z.ZodOptional<z.ZodObject<{
|
|
4270
|
-
confirmations: z.ZodNumber;
|
|
4271
|
-
reorgPeriod: z.ZodOptional<z.ZodNumber>;
|
|
4272
|
-
estimateBlockTime: z.ZodOptional<z.ZodNumber>;
|
|
4273
|
-
}, "strip", z.ZodTypeAny, {
|
|
4274
|
-
confirmations: number;
|
|
4275
|
-
reorgPeriod?: number | undefined;
|
|
4276
|
-
estimateBlockTime?: number | undefined;
|
|
4277
|
-
}, {
|
|
4278
|
-
confirmations: number;
|
|
4279
|
-
reorgPeriod?: number | undefined;
|
|
4280
|
-
estimateBlockTime?: number | undefined;
|
|
4281
|
-
}>>;
|
|
4282
|
-
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4283
|
-
gasCurrencyCoinGeckoId: z.ZodOptional<z.ZodString>;
|
|
4284
|
-
gnosisSafeTransactionServiceUrl: z.ZodOptional<z.ZodString>;
|
|
4285
|
-
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
4452
|
+
}>, "atleastone">;
|
|
4286
4453
|
slip44: z.ZodOptional<z.ZodNumber>;
|
|
4287
|
-
|
|
4288
|
-
|
|
4289
|
-
from: z.ZodOptional<z.ZodNumber>;
|
|
4290
|
-
chunk: z.ZodOptional<z.ZodNumber>;
|
|
4291
|
-
mode: z.ZodOptional<z.ZodNativeEnum<typeof AgentIndexMode>>;
|
|
4292
|
-
}, "strip", z.ZodTypeAny, {
|
|
4293
|
-
from?: number | undefined;
|
|
4294
|
-
chunk?: number | undefined;
|
|
4295
|
-
mode?: AgentIndexMode | undefined;
|
|
4296
|
-
}, {
|
|
4297
|
-
from?: number | undefined;
|
|
4298
|
-
chunk?: number | undefined;
|
|
4299
|
-
mode?: AgentIndexMode | undefined;
|
|
4300
|
-
}>>;
|
|
4454
|
+
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
|
|
4455
|
+
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4301
4456
|
signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4302
4457
|
type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
|
|
4303
4458
|
key: z.ZodString;
|
|
@@ -4359,8 +4514,8 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4359
4514
|
contractAddressBytes: z.ZodOptional<z.ZodNumber>;
|
|
4360
4515
|
}, "strip", z.ZodTypeAny, {
|
|
4361
4516
|
name: string;
|
|
4362
|
-
protocol: ProtocolType;
|
|
4363
4517
|
chainId: string | number;
|
|
4518
|
+
protocol: ProtocolType;
|
|
4364
4519
|
rpcUrls: [{
|
|
4365
4520
|
http: string;
|
|
4366
4521
|
concurrency?: number | undefined;
|
|
@@ -4392,18 +4547,31 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4392
4547
|
interchainGasPaymaster: string;
|
|
4393
4548
|
validatorAnnounce: string;
|
|
4394
4549
|
mailbox: string;
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
displayNameShort?: string | undefined;
|
|
4398
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
4399
|
-
logoURI?: string | undefined;
|
|
4400
|
-
nativeToken?: {
|
|
4401
|
-
symbol: string;
|
|
4550
|
+
bech32Prefix?: string | undefined;
|
|
4551
|
+
blockExplorers?: {
|
|
4402
4552
|
name: string;
|
|
4403
|
-
|
|
4404
|
-
|
|
4553
|
+
url: string;
|
|
4554
|
+
apiUrl: string;
|
|
4555
|
+
apiKey?: string | undefined;
|
|
4556
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4557
|
+
}[] | undefined;
|
|
4558
|
+
blocks?: {
|
|
4559
|
+
confirmations: number;
|
|
4560
|
+
reorgPeriod?: number | undefined;
|
|
4561
|
+
estimateBlockTime?: number | undefined;
|
|
4405
4562
|
} | undefined;
|
|
4406
|
-
|
|
4563
|
+
customGrpcUrls?: string | undefined;
|
|
4564
|
+
deployer?: {
|
|
4565
|
+
name: string;
|
|
4566
|
+
email?: string | undefined;
|
|
4567
|
+
url?: string | undefined;
|
|
4568
|
+
} | undefined;
|
|
4569
|
+
displayName?: string | undefined;
|
|
4570
|
+
displayNameShort?: string | undefined;
|
|
4571
|
+
domainId?: number | undefined;
|
|
4572
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
4573
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
4574
|
+
grpcUrls?: {
|
|
4407
4575
|
http: string;
|
|
4408
4576
|
concurrency?: number | undefined;
|
|
4409
4577
|
webSocket?: string | undefined;
|
|
@@ -4417,7 +4585,20 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4417
4585
|
baseRetryMs: number;
|
|
4418
4586
|
} | undefined;
|
|
4419
4587
|
}[] | undefined;
|
|
4420
|
-
|
|
4588
|
+
index?: {
|
|
4589
|
+
from?: number | undefined;
|
|
4590
|
+
chunk?: number | undefined;
|
|
4591
|
+
mode?: AgentIndexMode | undefined;
|
|
4592
|
+
} | undefined;
|
|
4593
|
+
isTestnet?: boolean | undefined;
|
|
4594
|
+
logoURI?: string | undefined;
|
|
4595
|
+
nativeToken?: {
|
|
4596
|
+
symbol: string;
|
|
4597
|
+
name: string;
|
|
4598
|
+
decimals: number;
|
|
4599
|
+
denom?: string | undefined;
|
|
4600
|
+
} | undefined;
|
|
4601
|
+
restUrls?: {
|
|
4421
4602
|
http: string;
|
|
4422
4603
|
concurrency?: number | undefined;
|
|
4423
4604
|
webSocket?: string | undefined;
|
|
@@ -4431,30 +4612,9 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4431
4612
|
baseRetryMs: number;
|
|
4432
4613
|
} | undefined;
|
|
4433
4614
|
}[] | undefined;
|
|
4434
|
-
customGrpcUrls?: string | undefined;
|
|
4435
|
-
blockExplorers?: {
|
|
4436
|
-
name: string;
|
|
4437
|
-
url: string;
|
|
4438
|
-
apiUrl: string;
|
|
4439
|
-
apiKey?: string | undefined;
|
|
4440
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4441
|
-
}[] | undefined;
|
|
4442
|
-
blocks?: {
|
|
4443
|
-
confirmations: number;
|
|
4444
|
-
reorgPeriod?: number | undefined;
|
|
4445
|
-
estimateBlockTime?: number | undefined;
|
|
4446
|
-
} | undefined;
|
|
4447
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
4448
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
4449
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
4450
|
-
bech32Prefix?: string | undefined;
|
|
4451
4615
|
slip44?: number | undefined;
|
|
4452
|
-
|
|
4453
|
-
|
|
4454
|
-
from?: number | undefined;
|
|
4455
|
-
chunk?: number | undefined;
|
|
4456
|
-
mode?: AgentIndexMode | undefined;
|
|
4457
|
-
} | undefined;
|
|
4616
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
4617
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
4458
4618
|
signer?: {
|
|
4459
4619
|
key: string;
|
|
4460
4620
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -4480,8 +4640,8 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4480
4640
|
contractAddressBytes?: number | undefined;
|
|
4481
4641
|
}, {
|
|
4482
4642
|
name: string;
|
|
4483
|
-
protocol: ProtocolType;
|
|
4484
4643
|
chainId: string | number;
|
|
4644
|
+
protocol: ProtocolType;
|
|
4485
4645
|
rpcUrls: [{
|
|
4486
4646
|
http: string;
|
|
4487
4647
|
concurrency?: number | undefined;
|
|
@@ -4513,18 +4673,31 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4513
4673
|
interchainGasPaymaster: string;
|
|
4514
4674
|
validatorAnnounce: string;
|
|
4515
4675
|
mailbox: string;
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
displayNameShort?: string | undefined;
|
|
4519
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
4520
|
-
logoURI?: string | undefined;
|
|
4521
|
-
nativeToken?: {
|
|
4522
|
-
symbol: string;
|
|
4676
|
+
bech32Prefix?: string | undefined;
|
|
4677
|
+
blockExplorers?: {
|
|
4523
4678
|
name: string;
|
|
4524
|
-
|
|
4525
|
-
|
|
4679
|
+
url: string;
|
|
4680
|
+
apiUrl: string;
|
|
4681
|
+
apiKey?: string | undefined;
|
|
4682
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4683
|
+
}[] | undefined;
|
|
4684
|
+
blocks?: {
|
|
4685
|
+
confirmations: number;
|
|
4686
|
+
reorgPeriod?: number | undefined;
|
|
4687
|
+
estimateBlockTime?: number | undefined;
|
|
4526
4688
|
} | undefined;
|
|
4527
|
-
|
|
4689
|
+
customGrpcUrls?: string | undefined;
|
|
4690
|
+
deployer?: {
|
|
4691
|
+
name: string;
|
|
4692
|
+
email?: string | undefined;
|
|
4693
|
+
url?: string | undefined;
|
|
4694
|
+
} | undefined;
|
|
4695
|
+
displayName?: string | undefined;
|
|
4696
|
+
displayNameShort?: string | undefined;
|
|
4697
|
+
domainId?: number | undefined;
|
|
4698
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
4699
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
4700
|
+
grpcUrls?: {
|
|
4528
4701
|
http: string;
|
|
4529
4702
|
concurrency?: number | undefined;
|
|
4530
4703
|
webSocket?: string | undefined;
|
|
@@ -4538,7 +4711,20 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4538
4711
|
baseRetryMs: number;
|
|
4539
4712
|
} | undefined;
|
|
4540
4713
|
}[] | undefined;
|
|
4541
|
-
|
|
4714
|
+
index?: {
|
|
4715
|
+
from?: number | undefined;
|
|
4716
|
+
chunk?: number | undefined;
|
|
4717
|
+
mode?: AgentIndexMode | undefined;
|
|
4718
|
+
} | undefined;
|
|
4719
|
+
isTestnet?: boolean | undefined;
|
|
4720
|
+
logoURI?: string | undefined;
|
|
4721
|
+
nativeToken?: {
|
|
4722
|
+
symbol: string;
|
|
4723
|
+
name: string;
|
|
4724
|
+
decimals: number;
|
|
4725
|
+
denom?: string | undefined;
|
|
4726
|
+
} | undefined;
|
|
4727
|
+
restUrls?: {
|
|
4542
4728
|
http: string;
|
|
4543
4729
|
concurrency?: number | undefined;
|
|
4544
4730
|
webSocket?: string | undefined;
|
|
@@ -4552,30 +4738,9 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4552
4738
|
baseRetryMs: number;
|
|
4553
4739
|
} | undefined;
|
|
4554
4740
|
}[] | undefined;
|
|
4555
|
-
customGrpcUrls?: string | undefined;
|
|
4556
|
-
blockExplorers?: {
|
|
4557
|
-
name: string;
|
|
4558
|
-
url: string;
|
|
4559
|
-
apiUrl: string;
|
|
4560
|
-
apiKey?: string | undefined;
|
|
4561
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4562
|
-
}[] | undefined;
|
|
4563
|
-
blocks?: {
|
|
4564
|
-
confirmations: number;
|
|
4565
|
-
reorgPeriod?: number | undefined;
|
|
4566
|
-
estimateBlockTime?: number | undefined;
|
|
4567
|
-
} | undefined;
|
|
4568
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
4569
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
4570
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
4571
|
-
bech32Prefix?: string | undefined;
|
|
4572
4741
|
slip44?: number | undefined;
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
from?: number | undefined;
|
|
4576
|
-
chunk?: number | undefined;
|
|
4577
|
-
mode?: AgentIndexMode | undefined;
|
|
4578
|
-
} | undefined;
|
|
4742
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
4743
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
4579
4744
|
signer?: {
|
|
4580
4745
|
key: string;
|
|
4581
4746
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -4601,8 +4766,8 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4601
4766
|
contractAddressBytes?: number | undefined;
|
|
4602
4767
|
}>, {
|
|
4603
4768
|
name: string;
|
|
4604
|
-
protocol: ProtocolType;
|
|
4605
4769
|
chainId: string | number;
|
|
4770
|
+
protocol: ProtocolType;
|
|
4606
4771
|
rpcUrls: [{
|
|
4607
4772
|
http: string;
|
|
4608
4773
|
concurrency?: number | undefined;
|
|
@@ -4634,18 +4799,31 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4634
4799
|
interchainGasPaymaster: string;
|
|
4635
4800
|
validatorAnnounce: string;
|
|
4636
4801
|
mailbox: string;
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
displayNameShort?: string | undefined;
|
|
4640
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
4641
|
-
logoURI?: string | undefined;
|
|
4642
|
-
nativeToken?: {
|
|
4643
|
-
symbol: string;
|
|
4802
|
+
bech32Prefix?: string | undefined;
|
|
4803
|
+
blockExplorers?: {
|
|
4644
4804
|
name: string;
|
|
4645
|
-
|
|
4646
|
-
|
|
4805
|
+
url: string;
|
|
4806
|
+
apiUrl: string;
|
|
4807
|
+
apiKey?: string | undefined;
|
|
4808
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4809
|
+
}[] | undefined;
|
|
4810
|
+
blocks?: {
|
|
4811
|
+
confirmations: number;
|
|
4812
|
+
reorgPeriod?: number | undefined;
|
|
4813
|
+
estimateBlockTime?: number | undefined;
|
|
4647
4814
|
} | undefined;
|
|
4648
|
-
|
|
4815
|
+
customGrpcUrls?: string | undefined;
|
|
4816
|
+
deployer?: {
|
|
4817
|
+
name: string;
|
|
4818
|
+
email?: string | undefined;
|
|
4819
|
+
url?: string | undefined;
|
|
4820
|
+
} | undefined;
|
|
4821
|
+
displayName?: string | undefined;
|
|
4822
|
+
displayNameShort?: string | undefined;
|
|
4823
|
+
domainId?: number | undefined;
|
|
4824
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
4825
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
4826
|
+
grpcUrls?: {
|
|
4649
4827
|
http: string;
|
|
4650
4828
|
concurrency?: number | undefined;
|
|
4651
4829
|
webSocket?: string | undefined;
|
|
@@ -4659,7 +4837,20 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4659
4837
|
baseRetryMs: number;
|
|
4660
4838
|
} | undefined;
|
|
4661
4839
|
}[] | undefined;
|
|
4662
|
-
|
|
4840
|
+
index?: {
|
|
4841
|
+
from?: number | undefined;
|
|
4842
|
+
chunk?: number | undefined;
|
|
4843
|
+
mode?: AgentIndexMode | undefined;
|
|
4844
|
+
} | undefined;
|
|
4845
|
+
isTestnet?: boolean | undefined;
|
|
4846
|
+
logoURI?: string | undefined;
|
|
4847
|
+
nativeToken?: {
|
|
4848
|
+
symbol: string;
|
|
4849
|
+
name: string;
|
|
4850
|
+
decimals: number;
|
|
4851
|
+
denom?: string | undefined;
|
|
4852
|
+
} | undefined;
|
|
4853
|
+
restUrls?: {
|
|
4663
4854
|
http: string;
|
|
4664
4855
|
concurrency?: number | undefined;
|
|
4665
4856
|
webSocket?: string | undefined;
|
|
@@ -4673,30 +4864,9 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4673
4864
|
baseRetryMs: number;
|
|
4674
4865
|
} | undefined;
|
|
4675
4866
|
}[] | undefined;
|
|
4676
|
-
customGrpcUrls?: string | undefined;
|
|
4677
|
-
blockExplorers?: {
|
|
4678
|
-
name: string;
|
|
4679
|
-
url: string;
|
|
4680
|
-
apiUrl: string;
|
|
4681
|
-
apiKey?: string | undefined;
|
|
4682
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4683
|
-
}[] | undefined;
|
|
4684
|
-
blocks?: {
|
|
4685
|
-
confirmations: number;
|
|
4686
|
-
reorgPeriod?: number | undefined;
|
|
4687
|
-
estimateBlockTime?: number | undefined;
|
|
4688
|
-
} | undefined;
|
|
4689
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
4690
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
4691
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
4692
|
-
bech32Prefix?: string | undefined;
|
|
4693
4867
|
slip44?: number | undefined;
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
from?: number | undefined;
|
|
4697
|
-
chunk?: number | undefined;
|
|
4698
|
-
mode?: AgentIndexMode | undefined;
|
|
4699
|
-
} | undefined;
|
|
4868
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
4869
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
4700
4870
|
signer?: {
|
|
4701
4871
|
key: string;
|
|
4702
4872
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -4722,8 +4892,8 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4722
4892
|
contractAddressBytes?: number | undefined;
|
|
4723
4893
|
}, {
|
|
4724
4894
|
name: string;
|
|
4725
|
-
protocol: ProtocolType;
|
|
4726
4895
|
chainId: string | number;
|
|
4896
|
+
protocol: ProtocolType;
|
|
4727
4897
|
rpcUrls: [{
|
|
4728
4898
|
http: string;
|
|
4729
4899
|
concurrency?: number | undefined;
|
|
@@ -4755,18 +4925,31 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4755
4925
|
interchainGasPaymaster: string;
|
|
4756
4926
|
validatorAnnounce: string;
|
|
4757
4927
|
mailbox: string;
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
displayNameShort?: string | undefined;
|
|
4761
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
4762
|
-
logoURI?: string | undefined;
|
|
4763
|
-
nativeToken?: {
|
|
4764
|
-
symbol: string;
|
|
4928
|
+
bech32Prefix?: string | undefined;
|
|
4929
|
+
blockExplorers?: {
|
|
4765
4930
|
name: string;
|
|
4766
|
-
|
|
4767
|
-
|
|
4931
|
+
url: string;
|
|
4932
|
+
apiUrl: string;
|
|
4933
|
+
apiKey?: string | undefined;
|
|
4934
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4935
|
+
}[] | undefined;
|
|
4936
|
+
blocks?: {
|
|
4937
|
+
confirmations: number;
|
|
4938
|
+
reorgPeriod?: number | undefined;
|
|
4939
|
+
estimateBlockTime?: number | undefined;
|
|
4768
4940
|
} | undefined;
|
|
4769
|
-
|
|
4941
|
+
customGrpcUrls?: string | undefined;
|
|
4942
|
+
deployer?: {
|
|
4943
|
+
name: string;
|
|
4944
|
+
email?: string | undefined;
|
|
4945
|
+
url?: string | undefined;
|
|
4946
|
+
} | undefined;
|
|
4947
|
+
displayName?: string | undefined;
|
|
4948
|
+
displayNameShort?: string | undefined;
|
|
4949
|
+
domainId?: number | undefined;
|
|
4950
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
4951
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
4952
|
+
grpcUrls?: {
|
|
4770
4953
|
http: string;
|
|
4771
4954
|
concurrency?: number | undefined;
|
|
4772
4955
|
webSocket?: string | undefined;
|
|
@@ -4780,7 +4963,20 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4780
4963
|
baseRetryMs: number;
|
|
4781
4964
|
} | undefined;
|
|
4782
4965
|
}[] | undefined;
|
|
4783
|
-
|
|
4966
|
+
index?: {
|
|
4967
|
+
from?: number | undefined;
|
|
4968
|
+
chunk?: number | undefined;
|
|
4969
|
+
mode?: AgentIndexMode | undefined;
|
|
4970
|
+
} | undefined;
|
|
4971
|
+
isTestnet?: boolean | undefined;
|
|
4972
|
+
logoURI?: string | undefined;
|
|
4973
|
+
nativeToken?: {
|
|
4974
|
+
symbol: string;
|
|
4975
|
+
name: string;
|
|
4976
|
+
decimals: number;
|
|
4977
|
+
denom?: string | undefined;
|
|
4978
|
+
} | undefined;
|
|
4979
|
+
restUrls?: {
|
|
4784
4980
|
http: string;
|
|
4785
4981
|
concurrency?: number | undefined;
|
|
4786
4982
|
webSocket?: string | undefined;
|
|
@@ -4790,34 +4986,13 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4790
4986
|
maxBlockAge?: number | undefined;
|
|
4791
4987
|
} | undefined;
|
|
4792
4988
|
retry?: {
|
|
4793
|
-
maxRequests: number;
|
|
4794
|
-
baseRetryMs: number;
|
|
4795
|
-
} | undefined;
|
|
4796
|
-
}[] | undefined;
|
|
4797
|
-
customGrpcUrls?: string | undefined;
|
|
4798
|
-
blockExplorers?: {
|
|
4799
|
-
name: string;
|
|
4800
|
-
url: string;
|
|
4801
|
-
apiUrl: string;
|
|
4802
|
-
apiKey?: string | undefined;
|
|
4803
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4804
|
-
}[] | undefined;
|
|
4805
|
-
blocks?: {
|
|
4806
|
-
confirmations: number;
|
|
4807
|
-
reorgPeriod?: number | undefined;
|
|
4808
|
-
estimateBlockTime?: number | undefined;
|
|
4809
|
-
} | undefined;
|
|
4810
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
4811
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
4812
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
4813
|
-
bech32Prefix?: string | undefined;
|
|
4989
|
+
maxRequests: number;
|
|
4990
|
+
baseRetryMs: number;
|
|
4991
|
+
} | undefined;
|
|
4992
|
+
}[] | undefined;
|
|
4814
4993
|
slip44?: number | undefined;
|
|
4815
|
-
|
|
4816
|
-
|
|
4817
|
-
from?: number | undefined;
|
|
4818
|
-
chunk?: number | undefined;
|
|
4819
|
-
mode?: AgentIndexMode | undefined;
|
|
4820
|
-
} | undefined;
|
|
4994
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
4995
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
4821
4996
|
signer?: {
|
|
4822
4997
|
key: string;
|
|
4823
4998
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -4843,8 +5018,8 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4843
5018
|
contractAddressBytes?: number | undefined;
|
|
4844
5019
|
}>>, Record<string, {
|
|
4845
5020
|
name: string;
|
|
4846
|
-
protocol: ProtocolType;
|
|
4847
5021
|
chainId: string | number;
|
|
5022
|
+
protocol: ProtocolType;
|
|
4848
5023
|
rpcUrls: [{
|
|
4849
5024
|
http: string;
|
|
4850
5025
|
concurrency?: number | undefined;
|
|
@@ -4876,18 +5051,31 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4876
5051
|
interchainGasPaymaster: string;
|
|
4877
5052
|
validatorAnnounce: string;
|
|
4878
5053
|
mailbox: string;
|
|
4879
|
-
|
|
4880
|
-
|
|
4881
|
-
displayNameShort?: string | undefined;
|
|
4882
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
4883
|
-
logoURI?: string | undefined;
|
|
4884
|
-
nativeToken?: {
|
|
4885
|
-
symbol: string;
|
|
5054
|
+
bech32Prefix?: string | undefined;
|
|
5055
|
+
blockExplorers?: {
|
|
4886
5056
|
name: string;
|
|
4887
|
-
|
|
4888
|
-
|
|
5057
|
+
url: string;
|
|
5058
|
+
apiUrl: string;
|
|
5059
|
+
apiKey?: string | undefined;
|
|
5060
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5061
|
+
}[] | undefined;
|
|
5062
|
+
blocks?: {
|
|
5063
|
+
confirmations: number;
|
|
5064
|
+
reorgPeriod?: number | undefined;
|
|
5065
|
+
estimateBlockTime?: number | undefined;
|
|
4889
5066
|
} | undefined;
|
|
4890
|
-
|
|
5067
|
+
customGrpcUrls?: string | undefined;
|
|
5068
|
+
deployer?: {
|
|
5069
|
+
name: string;
|
|
5070
|
+
email?: string | undefined;
|
|
5071
|
+
url?: string | undefined;
|
|
5072
|
+
} | undefined;
|
|
5073
|
+
displayName?: string | undefined;
|
|
5074
|
+
displayNameShort?: string | undefined;
|
|
5075
|
+
domainId?: number | undefined;
|
|
5076
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
5077
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
5078
|
+
grpcUrls?: {
|
|
4891
5079
|
http: string;
|
|
4892
5080
|
concurrency?: number | undefined;
|
|
4893
5081
|
webSocket?: string | undefined;
|
|
@@ -4901,7 +5089,20 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4901
5089
|
baseRetryMs: number;
|
|
4902
5090
|
} | undefined;
|
|
4903
5091
|
}[] | undefined;
|
|
4904
|
-
|
|
5092
|
+
index?: {
|
|
5093
|
+
from?: number | undefined;
|
|
5094
|
+
chunk?: number | undefined;
|
|
5095
|
+
mode?: AgentIndexMode | undefined;
|
|
5096
|
+
} | undefined;
|
|
5097
|
+
isTestnet?: boolean | undefined;
|
|
5098
|
+
logoURI?: string | undefined;
|
|
5099
|
+
nativeToken?: {
|
|
5100
|
+
symbol: string;
|
|
5101
|
+
name: string;
|
|
5102
|
+
decimals: number;
|
|
5103
|
+
denom?: string | undefined;
|
|
5104
|
+
} | undefined;
|
|
5105
|
+
restUrls?: {
|
|
4905
5106
|
http: string;
|
|
4906
5107
|
concurrency?: number | undefined;
|
|
4907
5108
|
webSocket?: string | undefined;
|
|
@@ -4915,30 +5116,9 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4915
5116
|
baseRetryMs: number;
|
|
4916
5117
|
} | undefined;
|
|
4917
5118
|
}[] | undefined;
|
|
4918
|
-
customGrpcUrls?: string | undefined;
|
|
4919
|
-
blockExplorers?: {
|
|
4920
|
-
name: string;
|
|
4921
|
-
url: string;
|
|
4922
|
-
apiUrl: string;
|
|
4923
|
-
apiKey?: string | undefined;
|
|
4924
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
4925
|
-
}[] | undefined;
|
|
4926
|
-
blocks?: {
|
|
4927
|
-
confirmations: number;
|
|
4928
|
-
reorgPeriod?: number | undefined;
|
|
4929
|
-
estimateBlockTime?: number | undefined;
|
|
4930
|
-
} | undefined;
|
|
4931
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
4932
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
4933
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
4934
|
-
bech32Prefix?: string | undefined;
|
|
4935
5119
|
slip44?: number | undefined;
|
|
4936
|
-
|
|
4937
|
-
|
|
4938
|
-
from?: number | undefined;
|
|
4939
|
-
chunk?: number | undefined;
|
|
4940
|
-
mode?: AgentIndexMode | undefined;
|
|
4941
|
-
} | undefined;
|
|
5120
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
5121
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
4942
5122
|
signer?: {
|
|
4943
5123
|
key: string;
|
|
4944
5124
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -4964,8 +5144,8 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4964
5144
|
contractAddressBytes?: number | undefined;
|
|
4965
5145
|
}>, Record<string, {
|
|
4966
5146
|
name: string;
|
|
4967
|
-
protocol: ProtocolType;
|
|
4968
5147
|
chainId: string | number;
|
|
5148
|
+
protocol: ProtocolType;
|
|
4969
5149
|
rpcUrls: [{
|
|
4970
5150
|
http: string;
|
|
4971
5151
|
concurrency?: number | undefined;
|
|
@@ -4997,18 +5177,31 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4997
5177
|
interchainGasPaymaster: string;
|
|
4998
5178
|
validatorAnnounce: string;
|
|
4999
5179
|
mailbox: string;
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
-
displayNameShort?: string | undefined;
|
|
5003
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
5004
|
-
logoURI?: string | undefined;
|
|
5005
|
-
nativeToken?: {
|
|
5006
|
-
symbol: string;
|
|
5180
|
+
bech32Prefix?: string | undefined;
|
|
5181
|
+
blockExplorers?: {
|
|
5007
5182
|
name: string;
|
|
5008
|
-
|
|
5009
|
-
|
|
5183
|
+
url: string;
|
|
5184
|
+
apiUrl: string;
|
|
5185
|
+
apiKey?: string | undefined;
|
|
5186
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5187
|
+
}[] | undefined;
|
|
5188
|
+
blocks?: {
|
|
5189
|
+
confirmations: number;
|
|
5190
|
+
reorgPeriod?: number | undefined;
|
|
5191
|
+
estimateBlockTime?: number | undefined;
|
|
5010
5192
|
} | undefined;
|
|
5011
|
-
|
|
5193
|
+
customGrpcUrls?: string | undefined;
|
|
5194
|
+
deployer?: {
|
|
5195
|
+
name: string;
|
|
5196
|
+
email?: string | undefined;
|
|
5197
|
+
url?: string | undefined;
|
|
5198
|
+
} | undefined;
|
|
5199
|
+
displayName?: string | undefined;
|
|
5200
|
+
displayNameShort?: string | undefined;
|
|
5201
|
+
domainId?: number | undefined;
|
|
5202
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
5203
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
5204
|
+
grpcUrls?: {
|
|
5012
5205
|
http: string;
|
|
5013
5206
|
concurrency?: number | undefined;
|
|
5014
5207
|
webSocket?: string | undefined;
|
|
@@ -5022,7 +5215,20 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5022
5215
|
baseRetryMs: number;
|
|
5023
5216
|
} | undefined;
|
|
5024
5217
|
}[] | undefined;
|
|
5025
|
-
|
|
5218
|
+
index?: {
|
|
5219
|
+
from?: number | undefined;
|
|
5220
|
+
chunk?: number | undefined;
|
|
5221
|
+
mode?: AgentIndexMode | undefined;
|
|
5222
|
+
} | undefined;
|
|
5223
|
+
isTestnet?: boolean | undefined;
|
|
5224
|
+
logoURI?: string | undefined;
|
|
5225
|
+
nativeToken?: {
|
|
5226
|
+
symbol: string;
|
|
5227
|
+
name: string;
|
|
5228
|
+
decimals: number;
|
|
5229
|
+
denom?: string | undefined;
|
|
5230
|
+
} | undefined;
|
|
5231
|
+
restUrls?: {
|
|
5026
5232
|
http: string;
|
|
5027
5233
|
concurrency?: number | undefined;
|
|
5028
5234
|
webSocket?: string | undefined;
|
|
@@ -5036,30 +5242,9 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5036
5242
|
baseRetryMs: number;
|
|
5037
5243
|
} | undefined;
|
|
5038
5244
|
}[] | undefined;
|
|
5039
|
-
customGrpcUrls?: string | undefined;
|
|
5040
|
-
blockExplorers?: {
|
|
5041
|
-
name: string;
|
|
5042
|
-
url: string;
|
|
5043
|
-
apiUrl: string;
|
|
5044
|
-
apiKey?: string | undefined;
|
|
5045
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5046
|
-
}[] | undefined;
|
|
5047
|
-
blocks?: {
|
|
5048
|
-
confirmations: number;
|
|
5049
|
-
reorgPeriod?: number | undefined;
|
|
5050
|
-
estimateBlockTime?: number | undefined;
|
|
5051
|
-
} | undefined;
|
|
5052
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
5053
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
5054
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
5055
|
-
bech32Prefix?: string | undefined;
|
|
5056
5245
|
slip44?: number | undefined;
|
|
5057
|
-
|
|
5058
|
-
|
|
5059
|
-
from?: number | undefined;
|
|
5060
|
-
chunk?: number | undefined;
|
|
5061
|
-
mode?: AgentIndexMode | undefined;
|
|
5062
|
-
} | undefined;
|
|
5246
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
5247
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
5063
5248
|
signer?: {
|
|
5064
5249
|
key: string;
|
|
5065
5250
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -5140,8 +5325,8 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5140
5325
|
}, "strip", z.ZodTypeAny, {
|
|
5141
5326
|
chains: Record<string, {
|
|
5142
5327
|
name: string;
|
|
5143
|
-
protocol: ProtocolType;
|
|
5144
5328
|
chainId: string | number;
|
|
5329
|
+
protocol: ProtocolType;
|
|
5145
5330
|
rpcUrls: [{
|
|
5146
5331
|
http: string;
|
|
5147
5332
|
concurrency?: number | undefined;
|
|
@@ -5173,18 +5358,31 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5173
5358
|
interchainGasPaymaster: string;
|
|
5174
5359
|
validatorAnnounce: string;
|
|
5175
5360
|
mailbox: string;
|
|
5176
|
-
|
|
5177
|
-
|
|
5178
|
-
displayNameShort?: string | undefined;
|
|
5179
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
5180
|
-
logoURI?: string | undefined;
|
|
5181
|
-
nativeToken?: {
|
|
5182
|
-
symbol: string;
|
|
5361
|
+
bech32Prefix?: string | undefined;
|
|
5362
|
+
blockExplorers?: {
|
|
5183
5363
|
name: string;
|
|
5184
|
-
|
|
5185
|
-
|
|
5364
|
+
url: string;
|
|
5365
|
+
apiUrl: string;
|
|
5366
|
+
apiKey?: string | undefined;
|
|
5367
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5368
|
+
}[] | undefined;
|
|
5369
|
+
blocks?: {
|
|
5370
|
+
confirmations: number;
|
|
5371
|
+
reorgPeriod?: number | undefined;
|
|
5372
|
+
estimateBlockTime?: number | undefined;
|
|
5186
5373
|
} | undefined;
|
|
5187
|
-
|
|
5374
|
+
customGrpcUrls?: string | undefined;
|
|
5375
|
+
deployer?: {
|
|
5376
|
+
name: string;
|
|
5377
|
+
email?: string | undefined;
|
|
5378
|
+
url?: string | undefined;
|
|
5379
|
+
} | undefined;
|
|
5380
|
+
displayName?: string | undefined;
|
|
5381
|
+
displayNameShort?: string | undefined;
|
|
5382
|
+
domainId?: number | undefined;
|
|
5383
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
5384
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
5385
|
+
grpcUrls?: {
|
|
5188
5386
|
http: string;
|
|
5189
5387
|
concurrency?: number | undefined;
|
|
5190
5388
|
webSocket?: string | undefined;
|
|
@@ -5198,7 +5396,20 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5198
5396
|
baseRetryMs: number;
|
|
5199
5397
|
} | undefined;
|
|
5200
5398
|
}[] | undefined;
|
|
5201
|
-
|
|
5399
|
+
index?: {
|
|
5400
|
+
from?: number | undefined;
|
|
5401
|
+
chunk?: number | undefined;
|
|
5402
|
+
mode?: AgentIndexMode | undefined;
|
|
5403
|
+
} | undefined;
|
|
5404
|
+
isTestnet?: boolean | undefined;
|
|
5405
|
+
logoURI?: string | undefined;
|
|
5406
|
+
nativeToken?: {
|
|
5407
|
+
symbol: string;
|
|
5408
|
+
name: string;
|
|
5409
|
+
decimals: number;
|
|
5410
|
+
denom?: string | undefined;
|
|
5411
|
+
} | undefined;
|
|
5412
|
+
restUrls?: {
|
|
5202
5413
|
http: string;
|
|
5203
5414
|
concurrency?: number | undefined;
|
|
5204
5415
|
webSocket?: string | undefined;
|
|
@@ -5212,30 +5423,9 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5212
5423
|
baseRetryMs: number;
|
|
5213
5424
|
} | undefined;
|
|
5214
5425
|
}[] | undefined;
|
|
5215
|
-
customGrpcUrls?: string | undefined;
|
|
5216
|
-
blockExplorers?: {
|
|
5217
|
-
name: string;
|
|
5218
|
-
url: string;
|
|
5219
|
-
apiUrl: string;
|
|
5220
|
-
apiKey?: string | undefined;
|
|
5221
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5222
|
-
}[] | undefined;
|
|
5223
|
-
blocks?: {
|
|
5224
|
-
confirmations: number;
|
|
5225
|
-
reorgPeriod?: number | undefined;
|
|
5226
|
-
estimateBlockTime?: number | undefined;
|
|
5227
|
-
} | undefined;
|
|
5228
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
5229
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
5230
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
5231
|
-
bech32Prefix?: string | undefined;
|
|
5232
5426
|
slip44?: number | undefined;
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
from?: number | undefined;
|
|
5236
|
-
chunk?: number | undefined;
|
|
5237
|
-
mode?: AgentIndexMode | undefined;
|
|
5238
|
-
} | undefined;
|
|
5427
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
5428
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
5239
5429
|
signer?: {
|
|
5240
5430
|
key: string;
|
|
5241
5431
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -5285,8 +5475,8 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5285
5475
|
}, {
|
|
5286
5476
|
chains: Record<string, {
|
|
5287
5477
|
name: string;
|
|
5288
|
-
protocol: ProtocolType;
|
|
5289
5478
|
chainId: string | number;
|
|
5479
|
+
protocol: ProtocolType;
|
|
5290
5480
|
rpcUrls: [{
|
|
5291
5481
|
http: string;
|
|
5292
5482
|
concurrency?: number | undefined;
|
|
@@ -5318,18 +5508,31 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5318
5508
|
interchainGasPaymaster: string;
|
|
5319
5509
|
validatorAnnounce: string;
|
|
5320
5510
|
mailbox: string;
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
displayNameShort?: string | undefined;
|
|
5324
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
5325
|
-
logoURI?: string | undefined;
|
|
5326
|
-
nativeToken?: {
|
|
5327
|
-
symbol: string;
|
|
5511
|
+
bech32Prefix?: string | undefined;
|
|
5512
|
+
blockExplorers?: {
|
|
5328
5513
|
name: string;
|
|
5329
|
-
|
|
5330
|
-
|
|
5514
|
+
url: string;
|
|
5515
|
+
apiUrl: string;
|
|
5516
|
+
apiKey?: string | undefined;
|
|
5517
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5518
|
+
}[] | undefined;
|
|
5519
|
+
blocks?: {
|
|
5520
|
+
confirmations: number;
|
|
5521
|
+
reorgPeriod?: number | undefined;
|
|
5522
|
+
estimateBlockTime?: number | undefined;
|
|
5331
5523
|
} | undefined;
|
|
5332
|
-
|
|
5524
|
+
customGrpcUrls?: string | undefined;
|
|
5525
|
+
deployer?: {
|
|
5526
|
+
name: string;
|
|
5527
|
+
email?: string | undefined;
|
|
5528
|
+
url?: string | undefined;
|
|
5529
|
+
} | undefined;
|
|
5530
|
+
displayName?: string | undefined;
|
|
5531
|
+
displayNameShort?: string | undefined;
|
|
5532
|
+
domainId?: number | undefined;
|
|
5533
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
5534
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
5535
|
+
grpcUrls?: {
|
|
5333
5536
|
http: string;
|
|
5334
5537
|
concurrency?: number | undefined;
|
|
5335
5538
|
webSocket?: string | undefined;
|
|
@@ -5343,7 +5546,20 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5343
5546
|
baseRetryMs: number;
|
|
5344
5547
|
} | undefined;
|
|
5345
5548
|
}[] | undefined;
|
|
5346
|
-
|
|
5549
|
+
index?: {
|
|
5550
|
+
from?: number | undefined;
|
|
5551
|
+
chunk?: number | undefined;
|
|
5552
|
+
mode?: AgentIndexMode | undefined;
|
|
5553
|
+
} | undefined;
|
|
5554
|
+
isTestnet?: boolean | undefined;
|
|
5555
|
+
logoURI?: string | undefined;
|
|
5556
|
+
nativeToken?: {
|
|
5557
|
+
symbol: string;
|
|
5558
|
+
name: string;
|
|
5559
|
+
decimals: number;
|
|
5560
|
+
denom?: string | undefined;
|
|
5561
|
+
} | undefined;
|
|
5562
|
+
restUrls?: {
|
|
5347
5563
|
http: string;
|
|
5348
5564
|
concurrency?: number | undefined;
|
|
5349
5565
|
webSocket?: string | undefined;
|
|
@@ -5357,30 +5573,9 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5357
5573
|
baseRetryMs: number;
|
|
5358
5574
|
} | undefined;
|
|
5359
5575
|
}[] | undefined;
|
|
5360
|
-
customGrpcUrls?: string | undefined;
|
|
5361
|
-
blockExplorers?: {
|
|
5362
|
-
name: string;
|
|
5363
|
-
url: string;
|
|
5364
|
-
apiUrl: string;
|
|
5365
|
-
apiKey?: string | undefined;
|
|
5366
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5367
|
-
}[] | undefined;
|
|
5368
|
-
blocks?: {
|
|
5369
|
-
confirmations: number;
|
|
5370
|
-
reorgPeriod?: number | undefined;
|
|
5371
|
-
estimateBlockTime?: number | undefined;
|
|
5372
|
-
} | undefined;
|
|
5373
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
5374
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
5375
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
5376
|
-
bech32Prefix?: string | undefined;
|
|
5377
5576
|
slip44?: number | undefined;
|
|
5378
|
-
|
|
5379
|
-
|
|
5380
|
-
from?: number | undefined;
|
|
5381
|
-
chunk?: number | undefined;
|
|
5382
|
-
mode?: AgentIndexMode | undefined;
|
|
5383
|
-
} | undefined;
|
|
5577
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
5578
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
5384
5579
|
signer?: {
|
|
5385
5580
|
key: string;
|
|
5386
5581
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -5433,30 +5628,60 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5433
5628
|
metricsPort: z.ZodOptional<z.ZodNumber>;
|
|
5434
5629
|
chains: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
5435
5630
|
name: z.ZodString;
|
|
5436
|
-
|
|
5631
|
+
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
5632
|
+
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5633
|
+
name: z.ZodString;
|
|
5634
|
+
url: z.ZodString;
|
|
5635
|
+
apiUrl: z.ZodString;
|
|
5636
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
5637
|
+
family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
|
|
5638
|
+
}, "strip", z.ZodTypeAny, {
|
|
5639
|
+
name: string;
|
|
5640
|
+
url: string;
|
|
5641
|
+
apiUrl: string;
|
|
5642
|
+
apiKey?: string | undefined;
|
|
5643
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5644
|
+
}, {
|
|
5645
|
+
name: string;
|
|
5646
|
+
url: string;
|
|
5647
|
+
apiUrl: string;
|
|
5648
|
+
apiKey?: string | undefined;
|
|
5649
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5650
|
+
}>, "many">>;
|
|
5651
|
+
blocks: z.ZodOptional<z.ZodObject<{
|
|
5652
|
+
confirmations: z.ZodNumber;
|
|
5653
|
+
reorgPeriod: z.ZodOptional<z.ZodNumber>;
|
|
5654
|
+
estimateBlockTime: z.ZodOptional<z.ZodNumber>;
|
|
5655
|
+
}, "strip", z.ZodTypeAny, {
|
|
5656
|
+
confirmations: number;
|
|
5657
|
+
reorgPeriod?: number | undefined;
|
|
5658
|
+
estimateBlockTime?: number | undefined;
|
|
5659
|
+
}, {
|
|
5660
|
+
confirmations: number;
|
|
5661
|
+
reorgPeriod?: number | undefined;
|
|
5662
|
+
estimateBlockTime?: number | undefined;
|
|
5663
|
+
}>>;
|
|
5437
5664
|
chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
5438
|
-
|
|
5439
|
-
|
|
5440
|
-
displayNameShort: z.ZodOptional<z.ZodString>;
|
|
5441
|
-
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
|
|
5442
|
-
logoURI: z.ZodOptional<z.ZodString>;
|
|
5443
|
-
nativeToken: z.ZodOptional<z.ZodObject<{
|
|
5665
|
+
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
5666
|
+
deployer: z.ZodOptional<z.ZodObject<{
|
|
5444
5667
|
name: z.ZodString;
|
|
5445
|
-
|
|
5446
|
-
|
|
5447
|
-
denom: z.ZodOptional<z.ZodString>;
|
|
5668
|
+
email: z.ZodOptional<z.ZodString>;
|
|
5669
|
+
url: z.ZodOptional<z.ZodString>;
|
|
5448
5670
|
}, "strip", z.ZodTypeAny, {
|
|
5449
|
-
symbol: string;
|
|
5450
5671
|
name: string;
|
|
5451
|
-
|
|
5452
|
-
|
|
5672
|
+
email?: string | undefined;
|
|
5673
|
+
url?: string | undefined;
|
|
5453
5674
|
}, {
|
|
5454
|
-
symbol: string;
|
|
5455
5675
|
name: string;
|
|
5456
|
-
|
|
5457
|
-
|
|
5676
|
+
email?: string | undefined;
|
|
5677
|
+
url?: string | undefined;
|
|
5458
5678
|
}>>;
|
|
5459
|
-
|
|
5679
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
5680
|
+
displayNameShort: z.ZodOptional<z.ZodString>;
|
|
5681
|
+
domainId: z.ZodOptional<z.ZodNumber>;
|
|
5682
|
+
gasCurrencyCoinGeckoId: z.ZodOptional<z.ZodString>;
|
|
5683
|
+
gnosisSafeTransactionServiceUrl: z.ZodOptional<z.ZodString>;
|
|
5684
|
+
grpcUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5460
5685
|
http: z.ZodString;
|
|
5461
5686
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
5462
5687
|
webSocket: z.ZodOptional<z.ZodString>;
|
|
@@ -5509,7 +5734,39 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5509
5734
|
maxRequests: number;
|
|
5510
5735
|
baseRetryMs: number;
|
|
5511
5736
|
} | undefined;
|
|
5512
|
-
}>, "
|
|
5737
|
+
}>, "many">>;
|
|
5738
|
+
index: z.ZodOptional<z.ZodObject<{
|
|
5739
|
+
from: z.ZodOptional<z.ZodNumber>;
|
|
5740
|
+
chunk: z.ZodOptional<z.ZodNumber>;
|
|
5741
|
+
mode: z.ZodOptional<z.ZodNativeEnum<typeof AgentIndexMode>>;
|
|
5742
|
+
}, "strip", z.ZodTypeAny, {
|
|
5743
|
+
from?: number | undefined;
|
|
5744
|
+
chunk?: number | undefined;
|
|
5745
|
+
mode?: AgentIndexMode | undefined;
|
|
5746
|
+
}, {
|
|
5747
|
+
from?: number | undefined;
|
|
5748
|
+
chunk?: number | undefined;
|
|
5749
|
+
mode?: AgentIndexMode | undefined;
|
|
5750
|
+
}>>;
|
|
5751
|
+
isTestnet: z.ZodOptional<z.ZodBoolean>;
|
|
5752
|
+
logoURI: z.ZodOptional<z.ZodString>;
|
|
5753
|
+
nativeToken: z.ZodOptional<z.ZodObject<{
|
|
5754
|
+
name: z.ZodString;
|
|
5755
|
+
symbol: z.ZodString;
|
|
5756
|
+
decimals: z.ZodNumber;
|
|
5757
|
+
denom: z.ZodOptional<z.ZodString>;
|
|
5758
|
+
}, "strip", z.ZodTypeAny, {
|
|
5759
|
+
symbol: string;
|
|
5760
|
+
name: string;
|
|
5761
|
+
decimals: number;
|
|
5762
|
+
denom?: string | undefined;
|
|
5763
|
+
}, {
|
|
5764
|
+
symbol: string;
|
|
5765
|
+
name: string;
|
|
5766
|
+
decimals: number;
|
|
5767
|
+
denom?: string | undefined;
|
|
5768
|
+
}>>;
|
|
5769
|
+
protocol: z.ZodNativeEnum<typeof ProtocolType>;
|
|
5513
5770
|
restUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5514
5771
|
http: z.ZodString;
|
|
5515
5772
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5564,7 +5821,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5564
5821
|
baseRetryMs: number;
|
|
5565
5822
|
} | undefined;
|
|
5566
5823
|
}>, "many">>;
|
|
5567
|
-
|
|
5824
|
+
rpcUrls: z.ZodArray<z.ZodObject<{
|
|
5568
5825
|
http: z.ZodString;
|
|
5569
5826
|
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
5570
5827
|
webSocket: z.ZodOptional<z.ZodString>;
|
|
@@ -5617,59 +5874,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5617
5874
|
maxRequests: number;
|
|
5618
5875
|
baseRetryMs: number;
|
|
5619
5876
|
} | undefined;
|
|
5620
|
-
}>, "
|
|
5621
|
-
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
5622
|
-
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5623
|
-
name: z.ZodString;
|
|
5624
|
-
url: z.ZodString;
|
|
5625
|
-
apiUrl: z.ZodString;
|
|
5626
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
5627
|
-
family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
|
|
5628
|
-
}, "strip", z.ZodTypeAny, {
|
|
5629
|
-
name: string;
|
|
5630
|
-
url: string;
|
|
5631
|
-
apiUrl: string;
|
|
5632
|
-
apiKey?: string | undefined;
|
|
5633
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5634
|
-
}, {
|
|
5635
|
-
name: string;
|
|
5636
|
-
url: string;
|
|
5637
|
-
apiUrl: string;
|
|
5638
|
-
apiKey?: string | undefined;
|
|
5639
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5640
|
-
}>, "many">>;
|
|
5641
|
-
blocks: z.ZodOptional<z.ZodObject<{
|
|
5642
|
-
confirmations: z.ZodNumber;
|
|
5643
|
-
reorgPeriod: z.ZodOptional<z.ZodNumber>;
|
|
5644
|
-
estimateBlockTime: z.ZodOptional<z.ZodNumber>;
|
|
5645
|
-
}, "strip", z.ZodTypeAny, {
|
|
5646
|
-
confirmations: number;
|
|
5647
|
-
reorgPeriod?: number | undefined;
|
|
5648
|
-
estimateBlockTime?: number | undefined;
|
|
5649
|
-
}, {
|
|
5650
|
-
confirmations: number;
|
|
5651
|
-
reorgPeriod?: number | undefined;
|
|
5652
|
-
estimateBlockTime?: number | undefined;
|
|
5653
|
-
}>>;
|
|
5654
|
-
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5655
|
-
gasCurrencyCoinGeckoId: z.ZodOptional<z.ZodString>;
|
|
5656
|
-
gnosisSafeTransactionServiceUrl: z.ZodOptional<z.ZodString>;
|
|
5657
|
-
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
5877
|
+
}>, "atleastone">;
|
|
5658
5878
|
slip44: z.ZodOptional<z.ZodNumber>;
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
from: z.ZodOptional<z.ZodNumber>;
|
|
5662
|
-
chunk: z.ZodOptional<z.ZodNumber>;
|
|
5663
|
-
mode: z.ZodOptional<z.ZodNativeEnum<typeof AgentIndexMode>>;
|
|
5664
|
-
}, "strip", z.ZodTypeAny, {
|
|
5665
|
-
from?: number | undefined;
|
|
5666
|
-
chunk?: number | undefined;
|
|
5667
|
-
mode?: AgentIndexMode | undefined;
|
|
5668
|
-
}, {
|
|
5669
|
-
from?: number | undefined;
|
|
5670
|
-
chunk?: number | undefined;
|
|
5671
|
-
mode?: AgentIndexMode | undefined;
|
|
5672
|
-
}>>;
|
|
5879
|
+
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
|
|
5880
|
+
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5673
5881
|
signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5674
5882
|
type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
|
|
5675
5883
|
key: z.ZodString;
|
|
@@ -5731,8 +5939,8 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5731
5939
|
contractAddressBytes: z.ZodOptional<z.ZodNumber>;
|
|
5732
5940
|
}, "strip", z.ZodTypeAny, {
|
|
5733
5941
|
name: string;
|
|
5734
|
-
protocol: ProtocolType;
|
|
5735
5942
|
chainId: string | number;
|
|
5943
|
+
protocol: ProtocolType;
|
|
5736
5944
|
rpcUrls: [{
|
|
5737
5945
|
http: string;
|
|
5738
5946
|
concurrency?: number | undefined;
|
|
@@ -5764,18 +5972,31 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5764
5972
|
interchainGasPaymaster: string;
|
|
5765
5973
|
validatorAnnounce: string;
|
|
5766
5974
|
mailbox: string;
|
|
5767
|
-
|
|
5768
|
-
|
|
5769
|
-
displayNameShort?: string | undefined;
|
|
5770
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
5771
|
-
logoURI?: string | undefined;
|
|
5772
|
-
nativeToken?: {
|
|
5773
|
-
symbol: string;
|
|
5975
|
+
bech32Prefix?: string | undefined;
|
|
5976
|
+
blockExplorers?: {
|
|
5774
5977
|
name: string;
|
|
5775
|
-
|
|
5776
|
-
|
|
5978
|
+
url: string;
|
|
5979
|
+
apiUrl: string;
|
|
5980
|
+
apiKey?: string | undefined;
|
|
5981
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5982
|
+
}[] | undefined;
|
|
5983
|
+
blocks?: {
|
|
5984
|
+
confirmations: number;
|
|
5985
|
+
reorgPeriod?: number | undefined;
|
|
5986
|
+
estimateBlockTime?: number | undefined;
|
|
5777
5987
|
} | undefined;
|
|
5778
|
-
|
|
5988
|
+
customGrpcUrls?: string | undefined;
|
|
5989
|
+
deployer?: {
|
|
5990
|
+
name: string;
|
|
5991
|
+
email?: string | undefined;
|
|
5992
|
+
url?: string | undefined;
|
|
5993
|
+
} | undefined;
|
|
5994
|
+
displayName?: string | undefined;
|
|
5995
|
+
displayNameShort?: string | undefined;
|
|
5996
|
+
domainId?: number | undefined;
|
|
5997
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
5998
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
5999
|
+
grpcUrls?: {
|
|
5779
6000
|
http: string;
|
|
5780
6001
|
concurrency?: number | undefined;
|
|
5781
6002
|
webSocket?: string | undefined;
|
|
@@ -5789,7 +6010,20 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5789
6010
|
baseRetryMs: number;
|
|
5790
6011
|
} | undefined;
|
|
5791
6012
|
}[] | undefined;
|
|
5792
|
-
|
|
6013
|
+
index?: {
|
|
6014
|
+
from?: number | undefined;
|
|
6015
|
+
chunk?: number | undefined;
|
|
6016
|
+
mode?: AgentIndexMode | undefined;
|
|
6017
|
+
} | undefined;
|
|
6018
|
+
isTestnet?: boolean | undefined;
|
|
6019
|
+
logoURI?: string | undefined;
|
|
6020
|
+
nativeToken?: {
|
|
6021
|
+
symbol: string;
|
|
6022
|
+
name: string;
|
|
6023
|
+
decimals: number;
|
|
6024
|
+
denom?: string | undefined;
|
|
6025
|
+
} | undefined;
|
|
6026
|
+
restUrls?: {
|
|
5793
6027
|
http: string;
|
|
5794
6028
|
concurrency?: number | undefined;
|
|
5795
6029
|
webSocket?: string | undefined;
|
|
@@ -5803,30 +6037,9 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5803
6037
|
baseRetryMs: number;
|
|
5804
6038
|
} | undefined;
|
|
5805
6039
|
}[] | undefined;
|
|
5806
|
-
customGrpcUrls?: string | undefined;
|
|
5807
|
-
blockExplorers?: {
|
|
5808
|
-
name: string;
|
|
5809
|
-
url: string;
|
|
5810
|
-
apiUrl: string;
|
|
5811
|
-
apiKey?: string | undefined;
|
|
5812
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5813
|
-
}[] | undefined;
|
|
5814
|
-
blocks?: {
|
|
5815
|
-
confirmations: number;
|
|
5816
|
-
reorgPeriod?: number | undefined;
|
|
5817
|
-
estimateBlockTime?: number | undefined;
|
|
5818
|
-
} | undefined;
|
|
5819
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
5820
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
5821
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
5822
|
-
bech32Prefix?: string | undefined;
|
|
5823
6040
|
slip44?: number | undefined;
|
|
5824
|
-
|
|
5825
|
-
|
|
5826
|
-
from?: number | undefined;
|
|
5827
|
-
chunk?: number | undefined;
|
|
5828
|
-
mode?: AgentIndexMode | undefined;
|
|
5829
|
-
} | undefined;
|
|
6041
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6042
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
5830
6043
|
signer?: {
|
|
5831
6044
|
key: string;
|
|
5832
6045
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -5852,8 +6065,8 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5852
6065
|
contractAddressBytes?: number | undefined;
|
|
5853
6066
|
}, {
|
|
5854
6067
|
name: string;
|
|
5855
|
-
protocol: ProtocolType;
|
|
5856
6068
|
chainId: string | number;
|
|
6069
|
+
protocol: ProtocolType;
|
|
5857
6070
|
rpcUrls: [{
|
|
5858
6071
|
http: string;
|
|
5859
6072
|
concurrency?: number | undefined;
|
|
@@ -5885,18 +6098,31 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5885
6098
|
interchainGasPaymaster: string;
|
|
5886
6099
|
validatorAnnounce: string;
|
|
5887
6100
|
mailbox: string;
|
|
5888
|
-
|
|
5889
|
-
|
|
5890
|
-
displayNameShort?: string | undefined;
|
|
5891
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
5892
|
-
logoURI?: string | undefined;
|
|
5893
|
-
nativeToken?: {
|
|
5894
|
-
symbol: string;
|
|
6101
|
+
bech32Prefix?: string | undefined;
|
|
6102
|
+
blockExplorers?: {
|
|
5895
6103
|
name: string;
|
|
5896
|
-
|
|
5897
|
-
|
|
6104
|
+
url: string;
|
|
6105
|
+
apiUrl: string;
|
|
6106
|
+
apiKey?: string | undefined;
|
|
6107
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
6108
|
+
}[] | undefined;
|
|
6109
|
+
blocks?: {
|
|
6110
|
+
confirmations: number;
|
|
6111
|
+
reorgPeriod?: number | undefined;
|
|
6112
|
+
estimateBlockTime?: number | undefined;
|
|
5898
6113
|
} | undefined;
|
|
5899
|
-
|
|
6114
|
+
customGrpcUrls?: string | undefined;
|
|
6115
|
+
deployer?: {
|
|
6116
|
+
name: string;
|
|
6117
|
+
email?: string | undefined;
|
|
6118
|
+
url?: string | undefined;
|
|
6119
|
+
} | undefined;
|
|
6120
|
+
displayName?: string | undefined;
|
|
6121
|
+
displayNameShort?: string | undefined;
|
|
6122
|
+
domainId?: number | undefined;
|
|
6123
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
6124
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
6125
|
+
grpcUrls?: {
|
|
5900
6126
|
http: string;
|
|
5901
6127
|
concurrency?: number | undefined;
|
|
5902
6128
|
webSocket?: string | undefined;
|
|
@@ -5910,7 +6136,20 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5910
6136
|
baseRetryMs: number;
|
|
5911
6137
|
} | undefined;
|
|
5912
6138
|
}[] | undefined;
|
|
5913
|
-
|
|
6139
|
+
index?: {
|
|
6140
|
+
from?: number | undefined;
|
|
6141
|
+
chunk?: number | undefined;
|
|
6142
|
+
mode?: AgentIndexMode | undefined;
|
|
6143
|
+
} | undefined;
|
|
6144
|
+
isTestnet?: boolean | undefined;
|
|
6145
|
+
logoURI?: string | undefined;
|
|
6146
|
+
nativeToken?: {
|
|
6147
|
+
symbol: string;
|
|
6148
|
+
name: string;
|
|
6149
|
+
decimals: number;
|
|
6150
|
+
denom?: string | undefined;
|
|
6151
|
+
} | undefined;
|
|
6152
|
+
restUrls?: {
|
|
5914
6153
|
http: string;
|
|
5915
6154
|
concurrency?: number | undefined;
|
|
5916
6155
|
webSocket?: string | undefined;
|
|
@@ -5924,30 +6163,9 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5924
6163
|
baseRetryMs: number;
|
|
5925
6164
|
} | undefined;
|
|
5926
6165
|
}[] | undefined;
|
|
5927
|
-
customGrpcUrls?: string | undefined;
|
|
5928
|
-
blockExplorers?: {
|
|
5929
|
-
name: string;
|
|
5930
|
-
url: string;
|
|
5931
|
-
apiUrl: string;
|
|
5932
|
-
apiKey?: string | undefined;
|
|
5933
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
5934
|
-
}[] | undefined;
|
|
5935
|
-
blocks?: {
|
|
5936
|
-
confirmations: number;
|
|
5937
|
-
reorgPeriod?: number | undefined;
|
|
5938
|
-
estimateBlockTime?: number | undefined;
|
|
5939
|
-
} | undefined;
|
|
5940
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
5941
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
5942
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
5943
|
-
bech32Prefix?: string | undefined;
|
|
5944
6166
|
slip44?: number | undefined;
|
|
5945
|
-
|
|
5946
|
-
|
|
5947
|
-
from?: number | undefined;
|
|
5948
|
-
chunk?: number | undefined;
|
|
5949
|
-
mode?: AgentIndexMode | undefined;
|
|
5950
|
-
} | undefined;
|
|
6167
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6168
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
5951
6169
|
signer?: {
|
|
5952
6170
|
key: string;
|
|
5953
6171
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -5973,8 +6191,8 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
5973
6191
|
contractAddressBytes?: number | undefined;
|
|
5974
6192
|
}>, {
|
|
5975
6193
|
name: string;
|
|
5976
|
-
protocol: ProtocolType;
|
|
5977
6194
|
chainId: string | number;
|
|
6195
|
+
protocol: ProtocolType;
|
|
5978
6196
|
rpcUrls: [{
|
|
5979
6197
|
http: string;
|
|
5980
6198
|
concurrency?: number | undefined;
|
|
@@ -6006,18 +6224,31 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6006
6224
|
interchainGasPaymaster: string;
|
|
6007
6225
|
validatorAnnounce: string;
|
|
6008
6226
|
mailbox: string;
|
|
6009
|
-
|
|
6010
|
-
|
|
6011
|
-
displayNameShort?: string | undefined;
|
|
6012
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6013
|
-
logoURI?: string | undefined;
|
|
6014
|
-
nativeToken?: {
|
|
6015
|
-
symbol: string;
|
|
6227
|
+
bech32Prefix?: string | undefined;
|
|
6228
|
+
blockExplorers?: {
|
|
6016
6229
|
name: string;
|
|
6017
|
-
|
|
6018
|
-
|
|
6230
|
+
url: string;
|
|
6231
|
+
apiUrl: string;
|
|
6232
|
+
apiKey?: string | undefined;
|
|
6233
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
6234
|
+
}[] | undefined;
|
|
6235
|
+
blocks?: {
|
|
6236
|
+
confirmations: number;
|
|
6237
|
+
reorgPeriod?: number | undefined;
|
|
6238
|
+
estimateBlockTime?: number | undefined;
|
|
6019
6239
|
} | undefined;
|
|
6020
|
-
|
|
6240
|
+
customGrpcUrls?: string | undefined;
|
|
6241
|
+
deployer?: {
|
|
6242
|
+
name: string;
|
|
6243
|
+
email?: string | undefined;
|
|
6244
|
+
url?: string | undefined;
|
|
6245
|
+
} | undefined;
|
|
6246
|
+
displayName?: string | undefined;
|
|
6247
|
+
displayNameShort?: string | undefined;
|
|
6248
|
+
domainId?: number | undefined;
|
|
6249
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
6250
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
6251
|
+
grpcUrls?: {
|
|
6021
6252
|
http: string;
|
|
6022
6253
|
concurrency?: number | undefined;
|
|
6023
6254
|
webSocket?: string | undefined;
|
|
@@ -6031,7 +6262,20 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6031
6262
|
baseRetryMs: number;
|
|
6032
6263
|
} | undefined;
|
|
6033
6264
|
}[] | undefined;
|
|
6034
|
-
|
|
6265
|
+
index?: {
|
|
6266
|
+
from?: number | undefined;
|
|
6267
|
+
chunk?: number | undefined;
|
|
6268
|
+
mode?: AgentIndexMode | undefined;
|
|
6269
|
+
} | undefined;
|
|
6270
|
+
isTestnet?: boolean | undefined;
|
|
6271
|
+
logoURI?: string | undefined;
|
|
6272
|
+
nativeToken?: {
|
|
6273
|
+
symbol: string;
|
|
6274
|
+
name: string;
|
|
6275
|
+
decimals: number;
|
|
6276
|
+
denom?: string | undefined;
|
|
6277
|
+
} | undefined;
|
|
6278
|
+
restUrls?: {
|
|
6035
6279
|
http: string;
|
|
6036
6280
|
concurrency?: number | undefined;
|
|
6037
6281
|
webSocket?: string | undefined;
|
|
@@ -6045,30 +6289,9 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6045
6289
|
baseRetryMs: number;
|
|
6046
6290
|
} | undefined;
|
|
6047
6291
|
}[] | undefined;
|
|
6048
|
-
customGrpcUrls?: string | undefined;
|
|
6049
|
-
blockExplorers?: {
|
|
6050
|
-
name: string;
|
|
6051
|
-
url: string;
|
|
6052
|
-
apiUrl: string;
|
|
6053
|
-
apiKey?: string | undefined;
|
|
6054
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
6055
|
-
}[] | undefined;
|
|
6056
|
-
blocks?: {
|
|
6057
|
-
confirmations: number;
|
|
6058
|
-
reorgPeriod?: number | undefined;
|
|
6059
|
-
estimateBlockTime?: number | undefined;
|
|
6060
|
-
} | undefined;
|
|
6061
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
6062
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
6063
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
6064
|
-
bech32Prefix?: string | undefined;
|
|
6065
6292
|
slip44?: number | undefined;
|
|
6066
|
-
|
|
6067
|
-
|
|
6068
|
-
from?: number | undefined;
|
|
6069
|
-
chunk?: number | undefined;
|
|
6070
|
-
mode?: AgentIndexMode | undefined;
|
|
6071
|
-
} | undefined;
|
|
6293
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6294
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
6072
6295
|
signer?: {
|
|
6073
6296
|
key: string;
|
|
6074
6297
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -6094,8 +6317,8 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6094
6317
|
contractAddressBytes?: number | undefined;
|
|
6095
6318
|
}, {
|
|
6096
6319
|
name: string;
|
|
6097
|
-
protocol: ProtocolType;
|
|
6098
6320
|
chainId: string | number;
|
|
6321
|
+
protocol: ProtocolType;
|
|
6099
6322
|
rpcUrls: [{
|
|
6100
6323
|
http: string;
|
|
6101
6324
|
concurrency?: number | undefined;
|
|
@@ -6127,18 +6350,31 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6127
6350
|
interchainGasPaymaster: string;
|
|
6128
6351
|
validatorAnnounce: string;
|
|
6129
6352
|
mailbox: string;
|
|
6130
|
-
|
|
6131
|
-
|
|
6132
|
-
displayNameShort?: string | undefined;
|
|
6133
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6134
|
-
logoURI?: string | undefined;
|
|
6135
|
-
nativeToken?: {
|
|
6136
|
-
symbol: string;
|
|
6353
|
+
bech32Prefix?: string | undefined;
|
|
6354
|
+
blockExplorers?: {
|
|
6137
6355
|
name: string;
|
|
6138
|
-
|
|
6139
|
-
|
|
6356
|
+
url: string;
|
|
6357
|
+
apiUrl: string;
|
|
6358
|
+
apiKey?: string | undefined;
|
|
6359
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
6360
|
+
}[] | undefined;
|
|
6361
|
+
blocks?: {
|
|
6362
|
+
confirmations: number;
|
|
6363
|
+
reorgPeriod?: number | undefined;
|
|
6364
|
+
estimateBlockTime?: number | undefined;
|
|
6140
6365
|
} | undefined;
|
|
6141
|
-
|
|
6366
|
+
customGrpcUrls?: string | undefined;
|
|
6367
|
+
deployer?: {
|
|
6368
|
+
name: string;
|
|
6369
|
+
email?: string | undefined;
|
|
6370
|
+
url?: string | undefined;
|
|
6371
|
+
} | undefined;
|
|
6372
|
+
displayName?: string | undefined;
|
|
6373
|
+
displayNameShort?: string | undefined;
|
|
6374
|
+
domainId?: number | undefined;
|
|
6375
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
6376
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
6377
|
+
grpcUrls?: {
|
|
6142
6378
|
http: string;
|
|
6143
6379
|
concurrency?: number | undefined;
|
|
6144
6380
|
webSocket?: string | undefined;
|
|
@@ -6152,7 +6388,20 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6152
6388
|
baseRetryMs: number;
|
|
6153
6389
|
} | undefined;
|
|
6154
6390
|
}[] | undefined;
|
|
6155
|
-
|
|
6391
|
+
index?: {
|
|
6392
|
+
from?: number | undefined;
|
|
6393
|
+
chunk?: number | undefined;
|
|
6394
|
+
mode?: AgentIndexMode | undefined;
|
|
6395
|
+
} | undefined;
|
|
6396
|
+
isTestnet?: boolean | undefined;
|
|
6397
|
+
logoURI?: string | undefined;
|
|
6398
|
+
nativeToken?: {
|
|
6399
|
+
symbol: string;
|
|
6400
|
+
name: string;
|
|
6401
|
+
decimals: number;
|
|
6402
|
+
denom?: string | undefined;
|
|
6403
|
+
} | undefined;
|
|
6404
|
+
restUrls?: {
|
|
6156
6405
|
http: string;
|
|
6157
6406
|
concurrency?: number | undefined;
|
|
6158
6407
|
webSocket?: string | undefined;
|
|
@@ -6166,30 +6415,9 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6166
6415
|
baseRetryMs: number;
|
|
6167
6416
|
} | undefined;
|
|
6168
6417
|
}[] | undefined;
|
|
6169
|
-
customGrpcUrls?: string | undefined;
|
|
6170
|
-
blockExplorers?: {
|
|
6171
|
-
name: string;
|
|
6172
|
-
url: string;
|
|
6173
|
-
apiUrl: string;
|
|
6174
|
-
apiKey?: string | undefined;
|
|
6175
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
6176
|
-
}[] | undefined;
|
|
6177
|
-
blocks?: {
|
|
6178
|
-
confirmations: number;
|
|
6179
|
-
reorgPeriod?: number | undefined;
|
|
6180
|
-
estimateBlockTime?: number | undefined;
|
|
6181
|
-
} | undefined;
|
|
6182
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
6183
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
6184
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
6185
|
-
bech32Prefix?: string | undefined;
|
|
6186
6418
|
slip44?: number | undefined;
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
from?: number | undefined;
|
|
6190
|
-
chunk?: number | undefined;
|
|
6191
|
-
mode?: AgentIndexMode | undefined;
|
|
6192
|
-
} | undefined;
|
|
6419
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6420
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
6193
6421
|
signer?: {
|
|
6194
6422
|
key: string;
|
|
6195
6423
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -6215,8 +6443,8 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6215
6443
|
contractAddressBytes?: number | undefined;
|
|
6216
6444
|
}>>, Record<string, {
|
|
6217
6445
|
name: string;
|
|
6218
|
-
protocol: ProtocolType;
|
|
6219
6446
|
chainId: string | number;
|
|
6447
|
+
protocol: ProtocolType;
|
|
6220
6448
|
rpcUrls: [{
|
|
6221
6449
|
http: string;
|
|
6222
6450
|
concurrency?: number | undefined;
|
|
@@ -6248,18 +6476,31 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6248
6476
|
interchainGasPaymaster: string;
|
|
6249
6477
|
validatorAnnounce: string;
|
|
6250
6478
|
mailbox: string;
|
|
6251
|
-
|
|
6252
|
-
|
|
6253
|
-
displayNameShort?: string | undefined;
|
|
6254
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6255
|
-
logoURI?: string | undefined;
|
|
6256
|
-
nativeToken?: {
|
|
6257
|
-
symbol: string;
|
|
6479
|
+
bech32Prefix?: string | undefined;
|
|
6480
|
+
blockExplorers?: {
|
|
6258
6481
|
name: string;
|
|
6259
|
-
|
|
6260
|
-
|
|
6482
|
+
url: string;
|
|
6483
|
+
apiUrl: string;
|
|
6484
|
+
apiKey?: string | undefined;
|
|
6485
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
6486
|
+
}[] | undefined;
|
|
6487
|
+
blocks?: {
|
|
6488
|
+
confirmations: number;
|
|
6489
|
+
reorgPeriod?: number | undefined;
|
|
6490
|
+
estimateBlockTime?: number | undefined;
|
|
6261
6491
|
} | undefined;
|
|
6262
|
-
|
|
6492
|
+
customGrpcUrls?: string | undefined;
|
|
6493
|
+
deployer?: {
|
|
6494
|
+
name: string;
|
|
6495
|
+
email?: string | undefined;
|
|
6496
|
+
url?: string | undefined;
|
|
6497
|
+
} | undefined;
|
|
6498
|
+
displayName?: string | undefined;
|
|
6499
|
+
displayNameShort?: string | undefined;
|
|
6500
|
+
domainId?: number | undefined;
|
|
6501
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
6502
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
6503
|
+
grpcUrls?: {
|
|
6263
6504
|
http: string;
|
|
6264
6505
|
concurrency?: number | undefined;
|
|
6265
6506
|
webSocket?: string | undefined;
|
|
@@ -6273,7 +6514,20 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6273
6514
|
baseRetryMs: number;
|
|
6274
6515
|
} | undefined;
|
|
6275
6516
|
}[] | undefined;
|
|
6276
|
-
|
|
6517
|
+
index?: {
|
|
6518
|
+
from?: number | undefined;
|
|
6519
|
+
chunk?: number | undefined;
|
|
6520
|
+
mode?: AgentIndexMode | undefined;
|
|
6521
|
+
} | undefined;
|
|
6522
|
+
isTestnet?: boolean | undefined;
|
|
6523
|
+
logoURI?: string | undefined;
|
|
6524
|
+
nativeToken?: {
|
|
6525
|
+
symbol: string;
|
|
6526
|
+
name: string;
|
|
6527
|
+
decimals: number;
|
|
6528
|
+
denom?: string | undefined;
|
|
6529
|
+
} | undefined;
|
|
6530
|
+
restUrls?: {
|
|
6277
6531
|
http: string;
|
|
6278
6532
|
concurrency?: number | undefined;
|
|
6279
6533
|
webSocket?: string | undefined;
|
|
@@ -6287,30 +6541,9 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6287
6541
|
baseRetryMs: number;
|
|
6288
6542
|
} | undefined;
|
|
6289
6543
|
}[] | undefined;
|
|
6290
|
-
customGrpcUrls?: string | undefined;
|
|
6291
|
-
blockExplorers?: {
|
|
6292
|
-
name: string;
|
|
6293
|
-
url: string;
|
|
6294
|
-
apiUrl: string;
|
|
6295
|
-
apiKey?: string | undefined;
|
|
6296
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
6297
|
-
}[] | undefined;
|
|
6298
|
-
blocks?: {
|
|
6299
|
-
confirmations: number;
|
|
6300
|
-
reorgPeriod?: number | undefined;
|
|
6301
|
-
estimateBlockTime?: number | undefined;
|
|
6302
|
-
} | undefined;
|
|
6303
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
6304
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
6305
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
6306
|
-
bech32Prefix?: string | undefined;
|
|
6307
6544
|
slip44?: number | undefined;
|
|
6308
|
-
|
|
6309
|
-
|
|
6310
|
-
from?: number | undefined;
|
|
6311
|
-
chunk?: number | undefined;
|
|
6312
|
-
mode?: AgentIndexMode | undefined;
|
|
6313
|
-
} | undefined;
|
|
6545
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6546
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
6314
6547
|
signer?: {
|
|
6315
6548
|
key: string;
|
|
6316
6549
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -6336,8 +6569,8 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6336
6569
|
contractAddressBytes?: number | undefined;
|
|
6337
6570
|
}>, Record<string, {
|
|
6338
6571
|
name: string;
|
|
6339
|
-
protocol: ProtocolType;
|
|
6340
6572
|
chainId: string | number;
|
|
6573
|
+
protocol: ProtocolType;
|
|
6341
6574
|
rpcUrls: [{
|
|
6342
6575
|
http: string;
|
|
6343
6576
|
concurrency?: number | undefined;
|
|
@@ -6369,18 +6602,31 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6369
6602
|
interchainGasPaymaster: string;
|
|
6370
6603
|
validatorAnnounce: string;
|
|
6371
6604
|
mailbox: string;
|
|
6372
|
-
|
|
6373
|
-
|
|
6374
|
-
displayNameShort?: string | undefined;
|
|
6375
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6376
|
-
logoURI?: string | undefined;
|
|
6377
|
-
nativeToken?: {
|
|
6378
|
-
symbol: string;
|
|
6605
|
+
bech32Prefix?: string | undefined;
|
|
6606
|
+
blockExplorers?: {
|
|
6379
6607
|
name: string;
|
|
6380
|
-
|
|
6381
|
-
|
|
6608
|
+
url: string;
|
|
6609
|
+
apiUrl: string;
|
|
6610
|
+
apiKey?: string | undefined;
|
|
6611
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
6612
|
+
}[] | undefined;
|
|
6613
|
+
blocks?: {
|
|
6614
|
+
confirmations: number;
|
|
6615
|
+
reorgPeriod?: number | undefined;
|
|
6616
|
+
estimateBlockTime?: number | undefined;
|
|
6382
6617
|
} | undefined;
|
|
6383
|
-
|
|
6618
|
+
customGrpcUrls?: string | undefined;
|
|
6619
|
+
deployer?: {
|
|
6620
|
+
name: string;
|
|
6621
|
+
email?: string | undefined;
|
|
6622
|
+
url?: string | undefined;
|
|
6623
|
+
} | undefined;
|
|
6624
|
+
displayName?: string | undefined;
|
|
6625
|
+
displayNameShort?: string | undefined;
|
|
6626
|
+
domainId?: number | undefined;
|
|
6627
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
6628
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
6629
|
+
grpcUrls?: {
|
|
6384
6630
|
http: string;
|
|
6385
6631
|
concurrency?: number | undefined;
|
|
6386
6632
|
webSocket?: string | undefined;
|
|
@@ -6394,7 +6640,20 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6394
6640
|
baseRetryMs: number;
|
|
6395
6641
|
} | undefined;
|
|
6396
6642
|
}[] | undefined;
|
|
6397
|
-
|
|
6643
|
+
index?: {
|
|
6644
|
+
from?: number | undefined;
|
|
6645
|
+
chunk?: number | undefined;
|
|
6646
|
+
mode?: AgentIndexMode | undefined;
|
|
6647
|
+
} | undefined;
|
|
6648
|
+
isTestnet?: boolean | undefined;
|
|
6649
|
+
logoURI?: string | undefined;
|
|
6650
|
+
nativeToken?: {
|
|
6651
|
+
symbol: string;
|
|
6652
|
+
name: string;
|
|
6653
|
+
decimals: number;
|
|
6654
|
+
denom?: string | undefined;
|
|
6655
|
+
} | undefined;
|
|
6656
|
+
restUrls?: {
|
|
6398
6657
|
http: string;
|
|
6399
6658
|
concurrency?: number | undefined;
|
|
6400
6659
|
webSocket?: string | undefined;
|
|
@@ -6408,30 +6667,9 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6408
6667
|
baseRetryMs: number;
|
|
6409
6668
|
} | undefined;
|
|
6410
6669
|
}[] | undefined;
|
|
6411
|
-
customGrpcUrls?: string | undefined;
|
|
6412
|
-
blockExplorers?: {
|
|
6413
|
-
name: string;
|
|
6414
|
-
url: string;
|
|
6415
|
-
apiUrl: string;
|
|
6416
|
-
apiKey?: string | undefined;
|
|
6417
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
6418
|
-
}[] | undefined;
|
|
6419
|
-
blocks?: {
|
|
6420
|
-
confirmations: number;
|
|
6421
|
-
reorgPeriod?: number | undefined;
|
|
6422
|
-
estimateBlockTime?: number | undefined;
|
|
6423
|
-
} | undefined;
|
|
6424
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
6425
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
6426
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
6427
|
-
bech32Prefix?: string | undefined;
|
|
6428
6670
|
slip44?: number | undefined;
|
|
6429
|
-
|
|
6430
|
-
|
|
6431
|
-
from?: number | undefined;
|
|
6432
|
-
chunk?: number | undefined;
|
|
6433
|
-
mode?: AgentIndexMode | undefined;
|
|
6434
|
-
} | undefined;
|
|
6671
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6672
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
6435
6673
|
signer?: {
|
|
6436
6674
|
key: string;
|
|
6437
6675
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -6578,8 +6816,8 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6578
6816
|
}, "strip", z.ZodTypeAny, {
|
|
6579
6817
|
chains: Record<string, {
|
|
6580
6818
|
name: string;
|
|
6581
|
-
protocol: ProtocolType;
|
|
6582
6819
|
chainId: string | number;
|
|
6820
|
+
protocol: ProtocolType;
|
|
6583
6821
|
rpcUrls: [{
|
|
6584
6822
|
http: string;
|
|
6585
6823
|
concurrency?: number | undefined;
|
|
@@ -6611,18 +6849,31 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6611
6849
|
interchainGasPaymaster: string;
|
|
6612
6850
|
validatorAnnounce: string;
|
|
6613
6851
|
mailbox: string;
|
|
6614
|
-
|
|
6615
|
-
|
|
6616
|
-
displayNameShort?: string | undefined;
|
|
6617
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6618
|
-
logoURI?: string | undefined;
|
|
6619
|
-
nativeToken?: {
|
|
6620
|
-
symbol: string;
|
|
6852
|
+
bech32Prefix?: string | undefined;
|
|
6853
|
+
blockExplorers?: {
|
|
6621
6854
|
name: string;
|
|
6622
|
-
|
|
6623
|
-
|
|
6855
|
+
url: string;
|
|
6856
|
+
apiUrl: string;
|
|
6857
|
+
apiKey?: string | undefined;
|
|
6858
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
6859
|
+
}[] | undefined;
|
|
6860
|
+
blocks?: {
|
|
6861
|
+
confirmations: number;
|
|
6862
|
+
reorgPeriod?: number | undefined;
|
|
6863
|
+
estimateBlockTime?: number | undefined;
|
|
6624
6864
|
} | undefined;
|
|
6625
|
-
|
|
6865
|
+
customGrpcUrls?: string | undefined;
|
|
6866
|
+
deployer?: {
|
|
6867
|
+
name: string;
|
|
6868
|
+
email?: string | undefined;
|
|
6869
|
+
url?: string | undefined;
|
|
6870
|
+
} | undefined;
|
|
6871
|
+
displayName?: string | undefined;
|
|
6872
|
+
displayNameShort?: string | undefined;
|
|
6873
|
+
domainId?: number | undefined;
|
|
6874
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
6875
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
6876
|
+
grpcUrls?: {
|
|
6626
6877
|
http: string;
|
|
6627
6878
|
concurrency?: number | undefined;
|
|
6628
6879
|
webSocket?: string | undefined;
|
|
@@ -6636,7 +6887,20 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6636
6887
|
baseRetryMs: number;
|
|
6637
6888
|
} | undefined;
|
|
6638
6889
|
}[] | undefined;
|
|
6639
|
-
|
|
6890
|
+
index?: {
|
|
6891
|
+
from?: number | undefined;
|
|
6892
|
+
chunk?: number | undefined;
|
|
6893
|
+
mode?: AgentIndexMode | undefined;
|
|
6894
|
+
} | undefined;
|
|
6895
|
+
isTestnet?: boolean | undefined;
|
|
6896
|
+
logoURI?: string | undefined;
|
|
6897
|
+
nativeToken?: {
|
|
6898
|
+
symbol: string;
|
|
6899
|
+
name: string;
|
|
6900
|
+
decimals: number;
|
|
6901
|
+
denom?: string | undefined;
|
|
6902
|
+
} | undefined;
|
|
6903
|
+
restUrls?: {
|
|
6640
6904
|
http: string;
|
|
6641
6905
|
concurrency?: number | undefined;
|
|
6642
6906
|
webSocket?: string | undefined;
|
|
@@ -6650,30 +6914,9 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6650
6914
|
baseRetryMs: number;
|
|
6651
6915
|
} | undefined;
|
|
6652
6916
|
}[] | undefined;
|
|
6653
|
-
customGrpcUrls?: string | undefined;
|
|
6654
|
-
blockExplorers?: {
|
|
6655
|
-
name: string;
|
|
6656
|
-
url: string;
|
|
6657
|
-
apiUrl: string;
|
|
6658
|
-
apiKey?: string | undefined;
|
|
6659
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
6660
|
-
}[] | undefined;
|
|
6661
|
-
blocks?: {
|
|
6662
|
-
confirmations: number;
|
|
6663
|
-
reorgPeriod?: number | undefined;
|
|
6664
|
-
estimateBlockTime?: number | undefined;
|
|
6665
|
-
} | undefined;
|
|
6666
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
6667
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
6668
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
6669
|
-
bech32Prefix?: string | undefined;
|
|
6670
6917
|
slip44?: number | undefined;
|
|
6671
|
-
|
|
6672
|
-
|
|
6673
|
-
from?: number | undefined;
|
|
6674
|
-
chunk?: number | undefined;
|
|
6675
|
-
mode?: AgentIndexMode | undefined;
|
|
6676
|
-
} | undefined;
|
|
6918
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6919
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
6677
6920
|
signer?: {
|
|
6678
6921
|
key: string;
|
|
6679
6922
|
type?: AgentSignerKeyType.Hex | undefined;
|
|
@@ -6761,8 +7004,8 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6761
7004
|
}, {
|
|
6762
7005
|
chains: Record<string, {
|
|
6763
7006
|
name: string;
|
|
6764
|
-
protocol: ProtocolType;
|
|
6765
7007
|
chainId: string | number;
|
|
7008
|
+
protocol: ProtocolType;
|
|
6766
7009
|
rpcUrls: [{
|
|
6767
7010
|
http: string;
|
|
6768
7011
|
concurrency?: number | undefined;
|
|
@@ -6794,18 +7037,31 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6794
7037
|
interchainGasPaymaster: string;
|
|
6795
7038
|
validatorAnnounce: string;
|
|
6796
7039
|
mailbox: string;
|
|
6797
|
-
|
|
6798
|
-
|
|
6799
|
-
displayNameShort?: string | undefined;
|
|
6800
|
-
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
6801
|
-
logoURI?: string | undefined;
|
|
6802
|
-
nativeToken?: {
|
|
6803
|
-
symbol: string;
|
|
7040
|
+
bech32Prefix?: string | undefined;
|
|
7041
|
+
blockExplorers?: {
|
|
6804
7042
|
name: string;
|
|
6805
|
-
|
|
6806
|
-
|
|
7043
|
+
url: string;
|
|
7044
|
+
apiUrl: string;
|
|
7045
|
+
apiKey?: string | undefined;
|
|
7046
|
+
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
7047
|
+
}[] | undefined;
|
|
7048
|
+
blocks?: {
|
|
7049
|
+
confirmations: number;
|
|
7050
|
+
reorgPeriod?: number | undefined;
|
|
7051
|
+
estimateBlockTime?: number | undefined;
|
|
6807
7052
|
} | undefined;
|
|
6808
|
-
|
|
7053
|
+
customGrpcUrls?: string | undefined;
|
|
7054
|
+
deployer?: {
|
|
7055
|
+
name: string;
|
|
7056
|
+
email?: string | undefined;
|
|
7057
|
+
url?: string | undefined;
|
|
7058
|
+
} | undefined;
|
|
7059
|
+
displayName?: string | undefined;
|
|
7060
|
+
displayNameShort?: string | undefined;
|
|
7061
|
+
domainId?: number | undefined;
|
|
7062
|
+
gasCurrencyCoinGeckoId?: string | undefined;
|
|
7063
|
+
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
7064
|
+
grpcUrls?: {
|
|
6809
7065
|
http: string;
|
|
6810
7066
|
concurrency?: number | undefined;
|
|
6811
7067
|
webSocket?: string | undefined;
|
|
@@ -6819,7 +7075,20 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6819
7075
|
baseRetryMs: number;
|
|
6820
7076
|
} | undefined;
|
|
6821
7077
|
}[] | undefined;
|
|
6822
|
-
|
|
7078
|
+
index?: {
|
|
7079
|
+
from?: number | undefined;
|
|
7080
|
+
chunk?: number | undefined;
|
|
7081
|
+
mode?: AgentIndexMode | undefined;
|
|
7082
|
+
} | undefined;
|
|
7083
|
+
isTestnet?: boolean | undefined;
|
|
7084
|
+
logoURI?: string | undefined;
|
|
7085
|
+
nativeToken?: {
|
|
7086
|
+
symbol: string;
|
|
7087
|
+
name: string;
|
|
7088
|
+
decimals: number;
|
|
7089
|
+
denom?: string | undefined;
|
|
7090
|
+
} | undefined;
|
|
7091
|
+
restUrls?: {
|
|
6823
7092
|
http: string;
|
|
6824
7093
|
concurrency?: number | undefined;
|
|
6825
7094
|
webSocket?: string | undefined;
|
|
@@ -6833,30 +7102,9 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6833
7102
|
baseRetryMs: number;
|
|
6834
7103
|
} | undefined;
|
|
6835
7104
|
}[] | undefined;
|
|
6836
|
-
customGrpcUrls?: string | undefined;
|
|
6837
|
-
blockExplorers?: {
|
|
6838
|
-
name: string;
|
|
6839
|
-
url: string;
|
|
6840
|
-
apiUrl: string;
|
|
6841
|
-
apiKey?: string | undefined;
|
|
6842
|
-
family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
|
|
6843
|
-
}[] | undefined;
|
|
6844
|
-
blocks?: {
|
|
6845
|
-
confirmations: number;
|
|
6846
|
-
reorgPeriod?: number | undefined;
|
|
6847
|
-
estimateBlockTime?: number | undefined;
|
|
6848
|
-
} | undefined;
|
|
6849
|
-
transactionOverrides?: Record<string, any> | undefined;
|
|
6850
|
-
gasCurrencyCoinGeckoId?: string | undefined;
|
|
6851
|
-
gnosisSafeTransactionServiceUrl?: string | undefined;
|
|
6852
|
-
bech32Prefix?: string | undefined;
|
|
6853
7105
|
slip44?: number | undefined;
|
|
6854
|
-
|
|
6855
|
-
|
|
6856
|
-
from?: number | undefined;
|
|
6857
|
-
chunk?: number | undefined;
|
|
6858
|
-
mode?: AgentIndexMode | undefined;
|
|
6859
|
-
} | undefined;
|
|
7106
|
+
technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
|
|
7107
|
+
transactionOverrides?: Record<string, any> | undefined;
|
|
6860
7108
|
signer?: {
|
|
6861
7109
|
key: string;
|
|
6862
7110
|
type?: AgentSignerKeyType.Hex | undefined;
|