@herd-labs/sdk 0.0.5 → 0.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/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/src/live/AdaptersServiceLive.d.ts +2 -2
- package/dist/src/live/AgentSafesServiceLive.d.ts +2 -2
- package/dist/src/live/AgentWalletsServiceLive.d.ts +2 -2
- package/dist/src/live/AgentWorkflowsServiceLive.d.ts +2 -2
- package/dist/src/live/AgentWorkflowsServiceLive.js +7 -3
- package/dist/src/live/AuthServiceLive.d.ts +2 -2
- package/dist/src/live/BookmarksServiceLive.d.ts +2 -2
- package/dist/src/live/CodeBlocksServiceLive.d.ts +2 -2
- package/dist/src/live/CollectionsServiceLive.d.ts +2 -2
- package/dist/src/live/ContractsServiceLive.d.ts +2 -2
- package/dist/src/live/DocsServiceLive.d.ts +2 -2
- package/dist/src/live/GroupsServiceLive.d.ts +2 -2
- package/dist/src/live/HalServiceLive.d.ts +2 -2
- package/dist/src/live/TransactionsServiceLive.d.ts +2 -2
- package/dist/src/live/WalletsServiceLive.d.ts +2 -2
- package/dist/src/schemas/actions.d.ts +15 -15
- package/dist/src/schemas/agent-wallets.d.ts +4 -4
- package/dist/src/schemas/agent-workflows.d.ts +74 -199
- package/dist/src/schemas/agent-workflows.js +32 -25
- package/dist/src/schemas/bookmarks.d.ts +24 -24
- package/dist/src/schemas/codeblocks.d.ts +7 -7
- package/dist/src/schemas/collections.d.ts +7 -7
- package/dist/src/schemas/contracts.d.ts +20 -20
- package/dist/src/schemas/hal.d.ts +18 -18
- package/dist/src/schemas/transactions.d.ts +49 -49
- package/dist/src/schemas/wallets.d.ts +34 -34
- package/dist/src/services/AgentWorkflowsService.d.ts +8 -7
- package/package.json +1 -1
|
@@ -11,10 +11,10 @@ declare const CollectionSpecItem_base: Schema.Class<CollectionSpecItem, {
|
|
|
11
11
|
expressionRef: typeof Schema.String;
|
|
12
12
|
}>, never, {
|
|
13
13
|
readonly id: string;
|
|
14
|
-
} & {
|
|
15
|
-
readonly expressionRef: string;
|
|
16
14
|
} & {
|
|
17
15
|
readonly type: "action" | "adapter";
|
|
16
|
+
} & {
|
|
17
|
+
readonly expressionRef: string;
|
|
18
18
|
}, {}, {}>;
|
|
19
19
|
declare class CollectionSpecItem extends CollectionSpecItem_base {}
|
|
20
20
|
declare const CollectionSpec_base: Schema.Class<CollectionSpec, {
|
|
@@ -94,13 +94,13 @@ declare const CollectionsSearchParams_base: Schema.Class<CollectionsSearchParams
|
|
|
94
94
|
}>, never, {
|
|
95
95
|
readonly limit: number;
|
|
96
96
|
} & {
|
|
97
|
-
readonly
|
|
97
|
+
readonly offset: number;
|
|
98
|
+
} & {
|
|
99
|
+
readonly scope?: readonly ("yours" | "verified" | "all")[] | undefined;
|
|
98
100
|
} & {
|
|
99
101
|
readonly filters?: {
|
|
100
102
|
readonly name?: string | undefined;
|
|
101
103
|
} | undefined;
|
|
102
|
-
} & {
|
|
103
|
-
readonly offset: number;
|
|
104
104
|
}, {}, {}>;
|
|
105
105
|
declare class CollectionsSearchParams extends CollectionsSearchParams_base {}
|
|
106
106
|
declare const CollectionsSearchResponse_base: Schema.Class<CollectionsSearchResponse, {
|
|
@@ -149,8 +149,8 @@ declare const CreateCollectionParams_base: Schema.Class<CreateCollectionParams,
|
|
|
149
149
|
readonly spec: {
|
|
150
150
|
readonly items: readonly {
|
|
151
151
|
readonly id: string;
|
|
152
|
-
readonly expressionRef: string;
|
|
153
152
|
readonly type: "action" | "adapter";
|
|
153
|
+
readonly expressionRef: string;
|
|
154
154
|
}[];
|
|
155
155
|
readonly version: "1.0";
|
|
156
156
|
};
|
|
@@ -230,8 +230,8 @@ declare const UpdateCollectionParams_base: Schema.Class<UpdateCollectionParams,
|
|
|
230
230
|
readonly spec?: {
|
|
231
231
|
readonly items: readonly {
|
|
232
232
|
readonly id: string;
|
|
233
|
-
readonly expressionRef: string;
|
|
234
233
|
readonly type: "action" | "adapter";
|
|
234
|
+
readonly expressionRef: string;
|
|
235
235
|
}[];
|
|
236
236
|
readonly version: "1.0";
|
|
237
237
|
} | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Schema } from "effect";
|
|
2
|
-
import * as
|
|
2
|
+
import * as effect_Brand1 from "effect/Brand";
|
|
3
3
|
|
|
4
4
|
//#region src/schemas/contracts.d.ts
|
|
5
5
|
declare const FunctionSummary_base: Schema.Class<FunctionSummary, {
|
|
@@ -67,11 +67,9 @@ declare const TopHolder_base: Schema.Class<TopHolder, {
|
|
|
67
67
|
entityLabel: Schema.optional<typeof Schema.String>;
|
|
68
68
|
coingeckoLabel: Schema.optional<typeof Schema.String>;
|
|
69
69
|
}>, never, {
|
|
70
|
-
readonly name?: string | undefined;
|
|
71
|
-
} & {
|
|
72
70
|
readonly address: string;
|
|
73
71
|
} & {
|
|
74
|
-
readonly
|
|
72
|
+
readonly name?: string | undefined;
|
|
75
73
|
} & {
|
|
76
74
|
readonly rank: number;
|
|
77
75
|
} & {
|
|
@@ -80,6 +78,8 @@ declare const TopHolder_base: Schema.Class<TopHolder, {
|
|
|
80
78
|
readonly valueUsd: number;
|
|
81
79
|
} & {
|
|
82
80
|
readonly sharePercentage: number;
|
|
81
|
+
} & {
|
|
82
|
+
readonly type: "contract" | "wallet";
|
|
83
83
|
} & {
|
|
84
84
|
readonly entityLabel?: string | undefined;
|
|
85
85
|
} & {
|
|
@@ -180,8 +180,8 @@ declare const AddressDetails_base: Schema.Class<AddressDetails, {
|
|
|
180
180
|
readonly deploymentTxHash?: string | undefined;
|
|
181
181
|
} & {
|
|
182
182
|
readonly factory?: {
|
|
183
|
-
readonly name: string;
|
|
184
183
|
readonly address: string;
|
|
184
|
+
readonly name: string;
|
|
185
185
|
} | undefined;
|
|
186
186
|
} & {
|
|
187
187
|
readonly constructorArgs?: {
|
|
@@ -252,11 +252,11 @@ declare const ContractMetadata_base: Schema.Class<ContractMetadata, {
|
|
|
252
252
|
signatureImplementations: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
253
253
|
signatureImplementationNames: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
254
254
|
}>, never, {
|
|
255
|
+
readonly contractName?: string | undefined;
|
|
256
|
+
} & {
|
|
255
257
|
readonly errorMessage?: string | undefined;
|
|
256
258
|
} & {
|
|
257
259
|
readonly addressDetails?: AddressDetails | undefined;
|
|
258
|
-
} & {
|
|
259
|
-
readonly contractName?: string | undefined;
|
|
260
260
|
} & {
|
|
261
261
|
readonly abi?: readonly {
|
|
262
262
|
readonly [x: string]: unknown;
|
|
@@ -301,6 +301,8 @@ declare const ContractCodeMatchBlock_base: Schema.Class<ContractCodeMatchBlock,
|
|
|
301
301
|
patterns: Schema.Array$<typeof Schema.String>;
|
|
302
302
|
}>, never, {
|
|
303
303
|
readonly code: string;
|
|
304
|
+
} & {
|
|
305
|
+
readonly patterns: readonly string[];
|
|
304
306
|
} & {
|
|
305
307
|
readonly fileName: string;
|
|
306
308
|
} & {
|
|
@@ -309,8 +311,6 @@ declare const ContractCodeMatchBlock_base: Schema.Class<ContractCodeMatchBlock,
|
|
|
309
311
|
readonly endLine: number;
|
|
310
312
|
} & {
|
|
311
313
|
readonly numberOfMatches: number;
|
|
312
|
-
} & {
|
|
313
|
-
readonly patterns: readonly string[];
|
|
314
314
|
}, {}, {}>;
|
|
315
315
|
declare class ContractCodeMatchBlock extends ContractCodeMatchBlock_base {}
|
|
316
316
|
declare const ContractCodeSearchResult_base: Schema.Class<ContractCodeSearchResult, {
|
|
@@ -328,13 +328,13 @@ declare const ContractCodeSearchResult_base: Schema.Class<ContractCodeSearchResu
|
|
|
328
328
|
proxyCode: Schema.optional<typeof Schema.String>;
|
|
329
329
|
matches: Schema.optional<Schema.Array$<typeof ContractCodeMatchBlock>>;
|
|
330
330
|
}>, never, {
|
|
331
|
-
readonly
|
|
331
|
+
readonly contractAddress: string & effect_Brand1.Brand<"EvmAddress">;
|
|
332
332
|
} & {
|
|
333
|
-
readonly
|
|
334
|
-
} & {
|
|
335
|
-
readonly contractAddress: string & effect_Brand0.Brand<"EvmAddress">;
|
|
333
|
+
readonly blockchain: "ethereum" | "base";
|
|
336
334
|
} & {
|
|
337
335
|
readonly contractName: string;
|
|
336
|
+
} & {
|
|
337
|
+
readonly code?: string | undefined;
|
|
338
338
|
} & {
|
|
339
339
|
readonly proxyCode?: string | undefined;
|
|
340
340
|
} & {
|
|
@@ -354,15 +354,15 @@ declare const GetContractCodeParams_base: Schema.Class<GetContractCodeParams, {
|
|
|
354
354
|
returnAllCode: Schema.optional<typeof Schema.Boolean>;
|
|
355
355
|
patterns: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
356
356
|
}>, never, {
|
|
357
|
-
readonly patterns?: readonly string[] | undefined;
|
|
358
|
-
} & {
|
|
359
357
|
readonly query: string;
|
|
360
358
|
} & {
|
|
361
|
-
readonly contractAddresses: readonly (string &
|
|
359
|
+
readonly contractAddresses: readonly (string & effect_Brand1.Brand<"EvmAddress">)[];
|
|
362
360
|
} & {
|
|
363
361
|
readonly includeProxies?: boolean | undefined;
|
|
364
362
|
} & {
|
|
365
363
|
readonly returnAllCode?: boolean | undefined;
|
|
364
|
+
} & {
|
|
365
|
+
readonly patterns?: readonly string[] | undefined;
|
|
366
366
|
}, {}, {}>;
|
|
367
367
|
declare class GetContractCodeParams extends GetContractCodeParams_base {}
|
|
368
368
|
declare const GetContractCodeResponse_base: Schema.Class<GetContractCodeResponse, {
|
|
@@ -396,9 +396,9 @@ declare const DiffVersionInfo_base: Schema.Class<DiffVersionInfo, {
|
|
|
396
396
|
blockNumber: typeof Schema.Number;
|
|
397
397
|
contractName: typeof Schema.String;
|
|
398
398
|
}>, never, {
|
|
399
|
-
readonly versionNumber: number;
|
|
400
|
-
} & {
|
|
401
399
|
readonly contractName: string;
|
|
400
|
+
} & {
|
|
401
|
+
readonly versionNumber: number;
|
|
402
402
|
} & {
|
|
403
403
|
readonly implementationAddress: string;
|
|
404
404
|
} & {
|
|
@@ -432,9 +432,9 @@ declare const ContractDiff_base: Schema.Class<ContractDiff, {
|
|
|
432
432
|
contractAddress: Schema.optional<typeof Schema.String>;
|
|
433
433
|
blockchain: Schema.optional<typeof Schema.String>;
|
|
434
434
|
}>, never, {
|
|
435
|
-
readonly blockchain?: string | undefined;
|
|
436
|
-
} & {
|
|
437
435
|
readonly contractAddress?: string | undefined;
|
|
436
|
+
} & {
|
|
437
|
+
readonly blockchain?: string | undefined;
|
|
438
438
|
} & {
|
|
439
439
|
readonly errorMessage?: string | undefined;
|
|
440
440
|
} & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Schema } from "effect";
|
|
2
|
-
import * as
|
|
2
|
+
import * as effect_Brand12 from "effect/Brand";
|
|
3
3
|
|
|
4
4
|
//#region src/schemas/hal.d.ts
|
|
5
5
|
declare const EvaluateParams_base: Schema.Class<EvaluateParams, {
|
|
@@ -25,9 +25,11 @@ declare const EvaluateParams_base: Schema.Class<EvaluateParams, {
|
|
|
25
25
|
tevmForkId: Schema.optional<typeof Schema.String>;
|
|
26
26
|
simulationBlockNumber: Schema.optional<typeof Schema.Number>;
|
|
27
27
|
}>, never, {
|
|
28
|
+
readonly walletAddress: string & effect_Brand12.Brand<"EvmAddress">;
|
|
29
|
+
} & {
|
|
28
30
|
readonly expression: unknown;
|
|
29
31
|
} & {
|
|
30
|
-
readonly
|
|
32
|
+
readonly tevmForkId?: string | undefined;
|
|
31
33
|
} & {
|
|
32
34
|
readonly inputValues?: {
|
|
33
35
|
readonly [x: string]: unknown;
|
|
@@ -37,8 +39,6 @@ declare const EvaluateParams_base: Schema.Class<EvaluateParams, {
|
|
|
37
39
|
readonly tokenAddress: string;
|
|
38
40
|
readonly startingBalanceRaw: string;
|
|
39
41
|
}[] | undefined;
|
|
40
|
-
} & {
|
|
41
|
-
readonly tevmForkId?: string | undefined;
|
|
42
42
|
} & {
|
|
43
43
|
readonly simulationBlockNumber?: number | undefined;
|
|
44
44
|
}, {}, {}>;
|
|
@@ -66,11 +66,13 @@ declare const EvaluateExistingParams_base: Schema.Class<EvaluateExistingParams,
|
|
|
66
66
|
tevmForkId: Schema.optional<typeof Schema.String>;
|
|
67
67
|
simulationBlockNumber: Schema.optional<typeof Schema.Number>;
|
|
68
68
|
}>, never, {
|
|
69
|
+
readonly walletAddress: string & effect_Brand12.Brand<"EvmAddress">;
|
|
70
|
+
} & {
|
|
69
71
|
readonly actionId: string;
|
|
70
72
|
} & {
|
|
71
73
|
readonly version?: string | undefined;
|
|
72
74
|
} & {
|
|
73
|
-
readonly
|
|
75
|
+
readonly tevmForkId?: string | undefined;
|
|
74
76
|
} & {
|
|
75
77
|
readonly inputValues?: {
|
|
76
78
|
readonly [x: string]: unknown;
|
|
@@ -80,8 +82,6 @@ declare const EvaluateExistingParams_base: Schema.Class<EvaluateExistingParams,
|
|
|
80
82
|
readonly tokenAddress: string;
|
|
81
83
|
readonly startingBalanceRaw: string;
|
|
82
84
|
}[] | undefined;
|
|
83
|
-
} & {
|
|
84
|
-
readonly tevmForkId?: string | undefined;
|
|
85
85
|
} & {
|
|
86
86
|
readonly simulationBlockNumber?: number | undefined;
|
|
87
87
|
}, {}, {}>;
|
|
@@ -121,31 +121,31 @@ declare const TransactionStatus_base: Schema.Class<TransactionStatus, {
|
|
|
121
121
|
args: Schema.optional<Schema.NullOr<typeof Schema.Unknown>>;
|
|
122
122
|
transactionData: Schema.optional<Schema.NullOr<typeof Schema.Unknown>>;
|
|
123
123
|
}>, never, {
|
|
124
|
-
readonly value?: string | null | undefined;
|
|
125
|
-
} & {
|
|
126
124
|
readonly blockchain?: "ethereum" | "base" | undefined;
|
|
125
|
+
} & {
|
|
126
|
+
readonly transactionHash: string | null;
|
|
127
|
+
} & {
|
|
128
|
+
readonly value?: string | null | undefined;
|
|
127
129
|
} & {
|
|
128
130
|
readonly status: "success" | "failed" | "pending";
|
|
129
131
|
} & {
|
|
130
132
|
readonly blockNumber: number | null;
|
|
131
133
|
} & {
|
|
132
|
-
readonly
|
|
133
|
-
} & {
|
|
134
|
-
readonly batchStepIndex: number | null;
|
|
134
|
+
readonly blockTimestamp: number | null;
|
|
135
135
|
} & {
|
|
136
136
|
readonly toContractName: string | null;
|
|
137
137
|
} & {
|
|
138
|
-
readonly
|
|
138
|
+
readonly data?: string | undefined;
|
|
139
139
|
} & {
|
|
140
|
-
readonly
|
|
140
|
+
readonly to?: string | undefined;
|
|
141
141
|
} & {
|
|
142
|
-
readonly
|
|
142
|
+
readonly batchName: string | null;
|
|
143
143
|
} & {
|
|
144
|
-
readonly
|
|
144
|
+
readonly batchStepIndex: number | null;
|
|
145
145
|
} & {
|
|
146
|
-
readonly
|
|
146
|
+
readonly transactionErrorMessage: string | null;
|
|
147
147
|
} & {
|
|
148
|
-
readonly
|
|
148
|
+
readonly operationId?: string | undefined;
|
|
149
149
|
} & {
|
|
150
150
|
readonly args?: unknown;
|
|
151
151
|
} & {
|
|
@@ -449,37 +449,40 @@ declare const Transaction_base: Schema.Class<Transaction, {
|
|
|
449
449
|
tevmForkId: Schema.optional<Schema.NullOr<typeof Schema.String>>;
|
|
450
450
|
}>, never, {
|
|
451
451
|
readonly id: string;
|
|
452
|
-
} & {
|
|
453
|
-
readonly txHash: string;
|
|
454
452
|
} & {
|
|
455
453
|
readonly blockchain: "ethereum" | "base";
|
|
456
454
|
} & {
|
|
457
|
-
readonly
|
|
455
|
+
readonly txHash: string;
|
|
458
456
|
} & {
|
|
459
457
|
readonly functionSignature?: string | null | undefined;
|
|
460
458
|
} & {
|
|
461
|
-
readonly
|
|
459
|
+
readonly error?: string | null | undefined;
|
|
462
460
|
} & {
|
|
463
|
-
readonly
|
|
461
|
+
readonly blockNumber: number;
|
|
464
462
|
} & {
|
|
465
|
-
readonly
|
|
463
|
+
readonly outputs?: {
|
|
464
|
+
readonly value: string;
|
|
465
|
+
readonly from: string;
|
|
466
|
+
readonly summary: string;
|
|
467
|
+
} | undefined;
|
|
466
468
|
} & {
|
|
467
469
|
readonly fromAddress: string;
|
|
468
470
|
} & {
|
|
469
471
|
readonly toAddress: string;
|
|
470
472
|
} & {
|
|
471
473
|
readonly timestamp: number;
|
|
474
|
+
} & {
|
|
475
|
+
readonly success: boolean;
|
|
472
476
|
} & {
|
|
473
477
|
readonly decodedTraces: DecodedTrace;
|
|
474
478
|
} & {
|
|
475
479
|
readonly transactionMetadata: {
|
|
476
480
|
readonly value: number;
|
|
477
|
-
readonly status: number;
|
|
478
481
|
readonly from: string;
|
|
479
482
|
readonly hash: string;
|
|
483
|
+
readonly status: number;
|
|
480
484
|
readonly type: string;
|
|
481
485
|
readonly blockNumber: number;
|
|
482
|
-
readonly to: string | null;
|
|
483
486
|
readonly blockHash: string;
|
|
484
487
|
readonly transactionIndex: number;
|
|
485
488
|
readonly chainId: number;
|
|
@@ -490,25 +493,26 @@ declare const Transaction_base: Schema.Class<Transaction, {
|
|
|
490
493
|
readonly r: string;
|
|
491
494
|
readonly s: string;
|
|
492
495
|
readonly v: string;
|
|
496
|
+
readonly to: string | null;
|
|
493
497
|
readonly timestamp: number;
|
|
494
498
|
readonly gasUsed: number;
|
|
495
499
|
readonly effectiveGasPrice: number;
|
|
496
500
|
};
|
|
497
501
|
} & {
|
|
498
502
|
readonly decodedLogs: readonly {
|
|
503
|
+
readonly transactionHash: string;
|
|
499
504
|
readonly address: string;
|
|
500
505
|
readonly blockNumber: number;
|
|
501
|
-
readonly transactionHash: string;
|
|
502
|
-
readonly data: string;
|
|
503
506
|
readonly blockHash: string;
|
|
507
|
+
readonly data: string;
|
|
504
508
|
readonly topics: readonly string[];
|
|
505
509
|
readonly logIndex: number;
|
|
506
510
|
readonly transactionIndex: number;
|
|
507
511
|
readonly removed: boolean;
|
|
508
512
|
readonly emittedAfterTraceAddress: readonly number[];
|
|
509
513
|
readonly implementation?: {
|
|
510
|
-
readonly name: string;
|
|
511
514
|
readonly address: string;
|
|
515
|
+
readonly name: string;
|
|
512
516
|
readonly is7702?: boolean | undefined;
|
|
513
517
|
} | undefined;
|
|
514
518
|
readonly decoded?: {
|
|
@@ -524,8 +528,8 @@ declare const Transaction_base: Schema.Class<Transaction, {
|
|
|
524
528
|
} | undefined;
|
|
525
529
|
readonly lineNumber: number;
|
|
526
530
|
readonly eventFunctionDetails: {
|
|
527
|
-
readonly functionSignature: string;
|
|
528
531
|
readonly address: string;
|
|
532
|
+
readonly functionSignature: string;
|
|
529
533
|
readonly functionName: string | null;
|
|
530
534
|
readonly addressName: string | null;
|
|
531
535
|
readonly traceAddress: readonly number[];
|
|
@@ -536,8 +540,8 @@ declare const Transaction_base: Schema.Class<Transaction, {
|
|
|
536
540
|
readonly txHash?: string | undefined;
|
|
537
541
|
readonly tokenType: "ERC20" | "ERC721" | "ERC1155" | "NATIVE";
|
|
538
542
|
readonly blockNumber: number;
|
|
539
|
-
readonly tokenAddress: string;
|
|
540
543
|
readonly blockTimestamp: number;
|
|
544
|
+
readonly tokenAddress: string;
|
|
541
545
|
readonly holderAddress: string;
|
|
542
546
|
readonly holderIsContract: boolean;
|
|
543
547
|
readonly balanceChange: number;
|
|
@@ -556,12 +560,12 @@ declare const Transaction_base: Schema.Class<Transaction, {
|
|
|
556
560
|
readonly txHash: string;
|
|
557
561
|
readonly tokenType: "ERC20" | "ERC721" | "ERC1155" | "NATIVE";
|
|
558
562
|
readonly blockNumber: number;
|
|
559
|
-
readonly tokenAddress: string;
|
|
560
563
|
readonly blockTimestamp: number;
|
|
561
564
|
readonly toEntityLabel?: string | null | undefined;
|
|
562
565
|
readonly fromEntityLabel?: string | null | undefined;
|
|
563
566
|
readonly traceAddress?: string | undefined;
|
|
564
567
|
readonly logIndex?: number | undefined;
|
|
568
|
+
readonly tokenAddress: string;
|
|
565
569
|
readonly chainId: number;
|
|
566
570
|
readonly tokenId: number;
|
|
567
571
|
readonly tokenDecimals: number;
|
|
@@ -591,19 +595,15 @@ declare const Transaction_base: Schema.Class<Transaction, {
|
|
|
591
595
|
}[];
|
|
592
596
|
} & {
|
|
593
597
|
readonly createdContracts: readonly string[];
|
|
594
|
-
} & {
|
|
595
|
-
readonly outputs?: {
|
|
596
|
-
readonly value: string;
|
|
597
|
-
readonly from: string;
|
|
598
|
-
readonly summary: string;
|
|
599
|
-
} | undefined;
|
|
600
598
|
} & {
|
|
601
599
|
readonly actionExecution?: {
|
|
602
600
|
readonly actionId: string;
|
|
603
|
-
readonly actionName: string;
|
|
604
601
|
readonly versionId: string;
|
|
602
|
+
readonly actionName: string;
|
|
605
603
|
readonly executionId: string;
|
|
606
604
|
} | undefined;
|
|
605
|
+
} & {
|
|
606
|
+
readonly tevmForkId?: string | null | undefined;
|
|
607
607
|
}, {}, {}>;
|
|
608
608
|
declare class Transaction extends Transaction_base {}
|
|
609
609
|
declare const TransactionQueryResponse_base: Schema.Class<TransactionQueryResponse, {
|
|
@@ -763,26 +763,17 @@ declare const LatestFunctionTransactions_base: Schema.Class<LatestFunctionTransa
|
|
|
763
763
|
}>>;
|
|
764
764
|
}>>>;
|
|
765
765
|
}>, never, {
|
|
766
|
-
readonly blockchain?: "ethereum" | "base" | undefined;
|
|
767
|
-
} & {
|
|
768
766
|
readonly contractAddress?: string | undefined;
|
|
769
767
|
} & {
|
|
770
|
-
readonly
|
|
771
|
-
} & {
|
|
772
|
-
readonly errorMessage?: string | undefined;
|
|
773
|
-
} & {
|
|
774
|
-
readonly availableSignatures?: readonly {
|
|
775
|
-
readonly name: string;
|
|
776
|
-
readonly signature: string;
|
|
777
|
-
}[] | undefined;
|
|
768
|
+
readonly blockchain?: "ethereum" | "base" | undefined;
|
|
778
769
|
} & {
|
|
779
770
|
readonly transactions?: readonly {
|
|
780
|
-
readonly txHash: string;
|
|
781
771
|
readonly from: string;
|
|
772
|
+
readonly txHash: string;
|
|
782
773
|
readonly blockNumber: number;
|
|
783
|
-
readonly success: boolean;
|
|
784
774
|
readonly blockTimestamp: number;
|
|
785
775
|
readonly blockTimestampUtc: string;
|
|
776
|
+
readonly success: boolean;
|
|
786
777
|
readonly functionCalls: readonly {
|
|
787
778
|
readonly value: number;
|
|
788
779
|
readonly signature: string;
|
|
@@ -795,14 +786,23 @@ declare const LatestFunctionTransactions_base: Schema.Class<LatestFunctionTransa
|
|
|
795
786
|
} | null;
|
|
796
787
|
readonly traceInput: string;
|
|
797
788
|
readonly callerFunctionDetails: {
|
|
798
|
-
readonly functionSignature: string | null;
|
|
799
789
|
readonly address: string;
|
|
790
|
+
readonly functionSignature: string | null;
|
|
800
791
|
readonly functionName: string | null;
|
|
801
792
|
readonly addressName: string | null;
|
|
802
793
|
readonly traceAddress: readonly number[];
|
|
803
794
|
} | null;
|
|
804
795
|
}[];
|
|
805
796
|
}[] | undefined;
|
|
797
|
+
} & {
|
|
798
|
+
readonly errorMessage?: string | undefined;
|
|
799
|
+
} & {
|
|
800
|
+
readonly signature?: string | undefined;
|
|
801
|
+
} & {
|
|
802
|
+
readonly availableSignatures?: readonly {
|
|
803
|
+
readonly name: string;
|
|
804
|
+
readonly signature: string;
|
|
805
|
+
}[] | undefined;
|
|
806
806
|
}, {}, {}>;
|
|
807
807
|
declare class LatestFunctionTransactions extends LatestFunctionTransactions_base {}
|
|
808
808
|
declare const LatestEventTransactions_base: Schema.Class<LatestEventTransactions, {
|
|
@@ -874,20 +874,12 @@ declare const LatestEventTransactions_base: Schema.Class<LatestEventTransactions
|
|
|
874
874
|
}>>;
|
|
875
875
|
}>>>;
|
|
876
876
|
}>, never, {
|
|
877
|
-
readonly blockchain?: "ethereum" | "base" | undefined;
|
|
878
|
-
} & {
|
|
879
877
|
readonly contractAddress?: string | undefined;
|
|
880
878
|
} & {
|
|
881
|
-
readonly
|
|
882
|
-
} & {
|
|
883
|
-
readonly errorMessage?: string | undefined;
|
|
884
|
-
} & {
|
|
885
|
-
readonly availableSignatures?: readonly {
|
|
886
|
-
readonly name: string;
|
|
887
|
-
readonly signature: string;
|
|
888
|
-
}[] | undefined;
|
|
879
|
+
readonly blockchain?: "ethereum" | "base" | undefined;
|
|
889
880
|
} & {
|
|
890
881
|
readonly transactions?: readonly {
|
|
882
|
+
readonly from: string;
|
|
891
883
|
readonly txHash: string;
|
|
892
884
|
readonly logs: readonly {
|
|
893
885
|
readonly contractAddress: string;
|
|
@@ -899,8 +891,8 @@ declare const LatestEventTransactions_base: Schema.Class<LatestEventTransactions
|
|
|
899
891
|
readonly [x: string]: unknown;
|
|
900
892
|
};
|
|
901
893
|
readonly eventFunctionDetails: {
|
|
902
|
-
readonly functionSignature: string;
|
|
903
894
|
readonly address: string;
|
|
895
|
+
readonly functionSignature: string;
|
|
904
896
|
readonly functionName: string | null;
|
|
905
897
|
readonly addressName: string | null;
|
|
906
898
|
readonly traceAddress: readonly number[];
|
|
@@ -908,11 +900,19 @@ declare const LatestEventTransactions_base: Schema.Class<LatestEventTransactions
|
|
|
908
900
|
readonly rawTopics: readonly string[];
|
|
909
901
|
readonly rawData: string;
|
|
910
902
|
}[];
|
|
911
|
-
readonly from: string;
|
|
912
903
|
readonly blockNumber: number;
|
|
913
|
-
readonly success: boolean;
|
|
914
904
|
readonly blockTimestamp: number;
|
|
915
905
|
readonly blockTimestampUtc: string;
|
|
906
|
+
readonly success: boolean;
|
|
907
|
+
}[] | undefined;
|
|
908
|
+
} & {
|
|
909
|
+
readonly errorMessage?: string | undefined;
|
|
910
|
+
} & {
|
|
911
|
+
readonly signature?: string | undefined;
|
|
912
|
+
} & {
|
|
913
|
+
readonly availableSignatures?: readonly {
|
|
914
|
+
readonly name: string;
|
|
915
|
+
readonly signature: string;
|
|
916
916
|
}[] | undefined;
|
|
917
917
|
}, {}, {}>;
|
|
918
918
|
declare class LatestEventTransactions extends LatestEventTransactions_base {}
|
|
@@ -945,8 +945,6 @@ declare const LatestTxParams_base: Schema.Class<LatestTxParams, {
|
|
|
945
945
|
topic3: Schema.optional<typeof Schema.String>;
|
|
946
946
|
calledBy: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
947
947
|
}>, never, {
|
|
948
|
-
readonly limit?: number | undefined;
|
|
949
|
-
} & {
|
|
950
948
|
readonly page?: number | undefined;
|
|
951
949
|
} & {
|
|
952
950
|
readonly beforeTimestamp?: number | undefined;
|
|
@@ -956,6 +954,8 @@ declare const LatestTxParams_base: Schema.Class<LatestTxParams, {
|
|
|
956
954
|
readonly beforeBlocknumber?: number | undefined;
|
|
957
955
|
} & {
|
|
958
956
|
readonly afterBlocknumber?: number | undefined;
|
|
957
|
+
} & {
|
|
958
|
+
readonly limit?: number | undefined;
|
|
959
959
|
} & {
|
|
960
960
|
readonly offset?: number | undefined;
|
|
961
961
|
} & {
|