@cowprotocol/cow-sdk 6.1.0 → 6.2.0-RC.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.
@@ -0,0 +1,2 @@
1
+ import { ChainInfo } from '../types';
2
+ export declare const bnb: ChainInfo;
@@ -1,7 +1,9 @@
1
1
  export * from './arbitrum';
2
2
  export * from './avalanche';
3
3
  export * from './base';
4
+ export * from './bnb';
4
5
  export * from './gnosis';
6
+ export * from './lens';
5
7
  export * from './mainnet';
6
8
  export * from './optimism';
7
9
  export * from './polygon';
@@ -0,0 +1,2 @@
1
+ import { ChainInfo } from '../types';
2
+ export declare const lens: ChainInfo;
@@ -8,10 +8,12 @@ import { TokenInfo } from '../common/types/tokens';
8
8
  */
9
9
  export declare enum SupportedChainId {
10
10
  MAINNET = 1,
11
+ BNB = 56,
11
12
  GNOSIS_CHAIN = 100,
12
- ARBITRUM_ONE = 42161,
13
- BASE = 8453,
14
13
  POLYGON = 137,
14
+ LENS = 232,
15
+ BASE = 8453,
16
+ ARBITRUM_ONE = 42161,
15
17
  AVALANCHE = 43114,
16
18
  SEPOLIA = 11155111
17
19
  }
@@ -34,15 +34,12 @@ export declare const EXTENSIBLE_FALLBACK_HANDLER_CONTRACT_ADDRESS: Record<Suppor
34
34
  * An object containing the addresses of the `ComposableCow` contracts for each supported chain.
35
35
  */
36
36
  export declare const COMPOSABLE_COW_CONTRACT_ADDRESS: Record<SupportedChainId, string>;
37
- export declare const ETH_FLOW_ADDRESS = "0xba3cb449bd2b4adddbc894d8697f5170800eadec";
38
- export declare const BARN_ETH_FLOW_ADDRESS = "0x04501b9b1d52e67f6862d157e00d13419d2d6e95";
39
37
  /**
40
- * An object containing the addresses of ETH flow contracts for each supported chain.
41
- * @deprecated use ETH_FLOW_ADDRESS instead
38
+ * An object containing the addresses of ETH flow contracts for each supported chain for production.
42
39
  */
43
40
  export declare const ETH_FLOW_ADDRESSES: Record<SupportedChainId, string>;
44
41
  /**
45
- * @deprecated use BARN_ETH_FLOW_ADDRESS instead
42
+ * An object containing the addresses of ETH flow contracts for each supported chain for barn.
46
43
  */
47
44
  export declare const BARN_ETH_FLOW_ADDRESSES: Record<SupportedChainId, string>;
48
45
  export declare const MAX_VALID_TO_EPOCH = 4294967295;