@cowprotocol/cow-sdk 5.10.1 → 5.10.2
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/common/consts.d.ts +6 -0
- package/dist/{index-cc713836.js → index-2ed223c8.js} +5 -5
- package/dist/index-2ed223c8.js.map +1 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.module.js +4 -4
- package/dist/index.module.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/{utils-ce0d26d7.js → utils-4bdd94dd.js} +2 -2
- package/dist/{utils-ce0d26d7.js.map → utils-4bdd94dd.js.map} +1 -1
- package/dist/{utils-04fc2d68.js → utils-63156cab.js} +1 -1
- package/dist/{utils-04fc2d68.js.map → utils-63156cab.js.map} +1 -1
- package/dist/{utils-35087bda.js → utils-faedc0ab.js} +1 -1
- package/dist/{utils-35087bda.js.map → utils-faedc0ab.js.map} +1 -1
- package/package.json +1 -1
- package/dist/index-cc713836.js.map +0 -1
package/dist/common/consts.d.ts
CHANGED
|
@@ -31,9 +31,15 @@ export declare const COMPOSABLE_COW_CONTRACT_ADDRESS: Record<SupportedChainId, s
|
|
|
31
31
|
* An object containing the addresses of wrapped native currencies for each supported chain.
|
|
32
32
|
*/
|
|
33
33
|
export declare const WRAPPED_NATIVE_CURRENCIES: Record<SupportedChainId, string>;
|
|
34
|
+
export declare const ETH_FLOW_ADDRESS = "0xba3cb449bd2b4adddbc894d8697f5170800eadec";
|
|
35
|
+
export declare const BARN_ETH_FLOW_ADDRESS = "0x04501b9b1d52e67f6862d157e00d13419d2d6e95";
|
|
34
36
|
/**
|
|
35
37
|
* An object containing the addresses of ETH flow contracts for each supported chain.
|
|
38
|
+
* @deprecated use ETH_FLOW_ADDRESS instead
|
|
36
39
|
*/
|
|
37
40
|
export declare const ETH_FLOW_ADDRESSES: Record<SupportedChainId, string>;
|
|
41
|
+
/**
|
|
42
|
+
* @deprecated use BARN_ETH_FLOW_ADDRESS instead
|
|
43
|
+
*/
|
|
38
44
|
export declare const BARN_ETH_FLOW_ADDRESSES: Record<SupportedChainId, string>;
|
|
39
45
|
export declare const MAX_VALID_TO_EPOCH = 4294967295;
|