@clonegod/ttd-core 3.1.116 → 3.1.118

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.
@@ -17,6 +17,12 @@ export declare const EvmChainConfig: {
17
17
  chain_full_name: string;
18
18
  weth_addr: string;
19
19
  };
20
+ ARC: {
21
+ chain_id: number;
22
+ chain_short_name: string;
23
+ chain_full_name: string;
24
+ weth_addr: string;
25
+ };
20
26
  ARBITRUM: {
21
27
  chain_id: number;
22
28
  chain_short_name: string;
@@ -20,6 +20,12 @@ exports.EvmChainConfig = {
20
20
  chain_full_name: 'ROBINHOOD',
21
21
  weth_addr: "0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73".toLowerCase(),
22
22
  },
23
+ ARC: {
24
+ chain_id: 5042,
25
+ chain_short_name: 'ARC',
26
+ chain_full_name: 'ARC',
27
+ weth_addr: "0x3600000000000000000000000000000000000000".toLowerCase(),
28
+ },
23
29
  ARBITRUM: {
24
30
  chain_id: 42161,
25
31
  chain_short_name: 'ARBITRUM',
package/dist/index.d.ts CHANGED
@@ -37,6 +37,7 @@ export declare enum CHAIN_ID {
37
37
  BSC = "BSC",
38
38
  BASE = "BASE",
39
39
  ROBINHOOD = "ROBINHOOD",
40
+ ARC = "ARC",
40
41
  TON = "TON",
41
42
  ETH = "ETH",
42
43
  ARBITRUM = "ARBITRUM",
package/dist/index.js CHANGED
@@ -121,6 +121,7 @@ var CHAIN_ID;
121
121
  CHAIN_ID["BSC"] = "BSC";
122
122
  CHAIN_ID["BASE"] = "BASE";
123
123
  CHAIN_ID["ROBINHOOD"] = "ROBINHOOD";
124
+ CHAIN_ID["ARC"] = "ARC";
124
125
  CHAIN_ID["TON"] = "TON";
125
126
  CHAIN_ID["ETH"] = "ETH";
126
127
  CHAIN_ID["ARBITRUM"] = "ARBITRUM";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clonegod/ttd-core",
3
- "version": "3.1.116",
3
+ "version": "3.1.118",
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": "dist/index.d.ts",