@socket.tech/dl-common 1.0.3-test.26 → 1.0.3-test.27
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/constants/types.d.ts +13 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TripReason } from "../models";
|
|
2
2
|
import { StatusCodes } from "./enums";
|
|
3
|
-
import { IntegrationTypes } from "@socket.tech/dl-core";
|
|
3
|
+
import { ChainSlug, IntegrationTypes } from "@socket.tech/dl-core";
|
|
4
4
|
export type Speed = "safeLow" | "average" | "fast" | "fastest";
|
|
5
5
|
export declare enum InboundStatus {
|
|
6
6
|
NOT_TRIED = "NOT_TRIED",
|
|
@@ -116,3 +116,15 @@ export type MessageData = {
|
|
|
116
116
|
executionParams: string;
|
|
117
117
|
packedMessage: string;
|
|
118
118
|
};
|
|
119
|
+
export type S3Config = {
|
|
120
|
+
chains: {
|
|
121
|
+
[chainSlug in ChainSlug]?: {
|
|
122
|
+
rpc: string;
|
|
123
|
+
blockNumber: number;
|
|
124
|
+
confirmations: number;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
batcherSupportedChainSlugs: ChainSlug[];
|
|
128
|
+
watcherSupportedChainSlugs: ChainSlug[];
|
|
129
|
+
transmitterSupportedChainSlugs: ChainSlug[];
|
|
130
|
+
};
|