danogo-clmm 0.0.3 → 0.0.5

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.

Potentially problematic release.


This version of danogo-clmm might be problematic. Click here for more details.

package/dist/sdk.d.cts CHANGED
@@ -22,6 +22,10 @@ interface MultiAsset {
22
22
  policyId: string;
23
23
  assets: Asset[];
24
24
  }
25
+ interface Asset {
26
+ name: string;
27
+ value: bigint;
28
+ }
25
29
 
26
30
  interface ConcentratedPool {
27
31
  outRef: string;
package/dist/sdk.d.ts CHANGED
@@ -22,6 +22,10 @@ interface MultiAsset {
22
22
  policyId: string;
23
23
  assets: Asset[];
24
24
  }
25
+ interface Asset {
26
+ name: string;
27
+ value: bigint;
28
+ }
25
29
 
26
30
  interface ConcentratedPool {
27
31
  outRef: string;
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "danogo-clmm",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "An SDK to calculate and execute swaps on the Danogo liquidity platform.",
5
5
  "type": "module",
6
6
  "types": "./dist/sdk.d.ts",
7
7
  "exports": {
8
8
  ".": {
9
9
  "types": "./dist/sdk.d.ts",
10
- "import": "./dist/sdk.mjs",
10
+ "import": "./dist/sdk.js",
11
11
  "require": "./dist/sdk.js"
12
12
  }
13
13
  },