@clonegod/ttd-core 2.0.39 → 2.0.40

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.
@@ -0,0 +1,9 @@
1
+ export declare enum EVM_CHAIN_ID {
2
+ ETHEREUM = 1,
3
+ BSC = 56,
4
+ BASE = 8453,
5
+ ARBITRUM = 42161,
6
+ AVALANCHE = 43114,
7
+ POLYGON = 137,
8
+ OPTIMISM = 10
9
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EVM_CHAIN_ID = void 0;
4
+ var EVM_CHAIN_ID;
5
+ (function (EVM_CHAIN_ID) {
6
+ EVM_CHAIN_ID[EVM_CHAIN_ID["ETHEREUM"] = 1] = "ETHEREUM";
7
+ EVM_CHAIN_ID[EVM_CHAIN_ID["BSC"] = 56] = "BSC";
8
+ EVM_CHAIN_ID[EVM_CHAIN_ID["BASE"] = 8453] = "BASE";
9
+ EVM_CHAIN_ID[EVM_CHAIN_ID["ARBITRUM"] = 42161] = "ARBITRUM";
10
+ EVM_CHAIN_ID[EVM_CHAIN_ID["AVALANCHE"] = 43114] = "AVALANCHE";
11
+ EVM_CHAIN_ID[EVM_CHAIN_ID["POLYGON"] = 137] = "POLYGON";
12
+ EVM_CHAIN_ID[EVM_CHAIN_ID["OPTIMISM"] = 10] = "OPTIMISM";
13
+ })(EVM_CHAIN_ID || (exports.EVM_CHAIN_ID = EVM_CHAIN_ID = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clonegod/ttd-core",
3
- "version": "2.0.39",
3
+ "version": "2.0.40",
4
4
  "description": "Common types and utilities for trading systems - use `npm run push` to publish",
5
5
  "main": "dist/index.js",
6
6
  "types": "types/index.d.ts",