@heyanon/sdk 2.1.15 → 2.1.17

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.
@@ -8,5 +8,6 @@ export declare enum AdapterTag {
8
8
  LIMIT_ORDER = "Limit orders",
9
9
  DEX = "DEX",
10
10
  LP = "LP",
11
- GAMES = "Games"
11
+ GAMES = "Games",
12
+ CEX = "CEX"
12
13
  }
@@ -49,6 +49,7 @@ export interface AdapterExport {
49
49
  readonly tools: AiTool[];
50
50
  readonly functions: Record<string, (args: any, options: FunctionOptions) => Promise<FunctionReturn>>;
51
51
  readonly description: string;
52
- readonly tags?: AdapterTag[];
52
+ readonly chains: Chain[];
53
+ readonly tags: AdapterTag[];
53
54
  }
54
55
  export {};
package/dist/index.js CHANGED
@@ -30,6 +30,7 @@ var AdapterTag = /* @__PURE__ */ ((AdapterTag2) => {
30
30
  AdapterTag2["DEX"] = "DEX";
31
31
  AdapterTag2["LP"] = "LP";
32
32
  AdapterTag2["GAMES"] = "Games";
33
+ AdapterTag2["CEX"] = "CEX";
33
34
  return AdapterTag2;
34
35
  })(AdapterTag || {});
35
36
 
package/dist/index.mjs CHANGED
@@ -28,6 +28,7 @@ var AdapterTag = /* @__PURE__ */ ((AdapterTag2) => {
28
28
  AdapterTag2["DEX"] = "DEX";
29
29
  AdapterTag2["LP"] = "LP";
30
30
  AdapterTag2["GAMES"] = "Games";
31
+ AdapterTag2["CEX"] = "CEX";
31
32
  return AdapterTag2;
32
33
  })(AdapterTag || {});
33
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heyanon/sdk",
3
- "version": "2.1.15",
3
+ "version": "2.1.17",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",