@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
- export declare const dexFactories: Partial<Record<ChainId, Partial<Record<LiquidityDex, {
2
+ type DexInfo = {
3
3
  factory: string;
4
4
  router?: string;
5
5
  protocol: Protocols;
6
- }>>>>;
7
- export declare const defaultDexFactories: Partial<Record<ChainId, Partial<Record<Protocols, string>>>>;
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 = {};
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Ape Bond SDK",
4
4
  "author": "Ape Bond",
5
5
  "license": "MIT",
6
- "version": "1.0.340",
6
+ "version": "1.0.341",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.es.js",
9
9
  "types": "dist/index.d.ts",