@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.
@@ -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
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@socket.tech/dl-common",
3
- "version": "1.0.3-test.26",
3
+ "version": "1.0.3-test.27",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "description": "common utilities for socket data layer.",