@ape.swap/bonds-sdk 1.0.340 → 1.0.341
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,7 +1,11 @@
|
|
|
1
1
|
import { ChainId, LiquidityDex, Protocols } from "../enum/apeswaplists";
|
|
2
|
-
|
|
2
|
+
type DexInfo = {
|
|
3
3
|
factory: string;
|
|
4
4
|
router?: string;
|
|
5
5
|
protocol: Protocols;
|
|
6
|
-
}
|
|
7
|
-
|
|
6
|
+
};
|
|
7
|
+
type dexFactories = Partial<Record<ChainId, Partial<Record<LiquidityDex, DexInfo>>>>;
|
|
8
|
+
type defaultDexFactories = Partial<Record<ChainId, Partial<Record<Protocols, string>>>>;
|
|
9
|
+
export declare const dexFactories: dexFactories;
|
|
10
|
+
export declare const defaultDexFactories: defaultDexFactories;
|
|
11
|
+
export {};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export var dexFactories = {};
|
|
2
|
+
export var defaultDexFactories = {};
|