@apex_labs/sdk 0.1.1 → 0.2.0

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@apex_labs/sdk",
3
- "version": "0.1.1",
4
- "description": "Apex SDK with a pinned internal Pancake v3 SDK fork plus Apex CL, Classic, and periphery helpers.",
3
+ "version": "0.2.0",
4
+ "description": "TypeScript SDK for Apex CL pools, Classic pools, routing, farms, ApexVault, and contract ABIs.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "main": "./dist/index.cjs",
@@ -10,8 +10,7 @@
10
10
  "files": [
11
11
  "dist",
12
12
  "vendor/pancake-v3-sdk/LICENSE",
13
- "vendor/pancake-v3-sdk/README.md",
14
- "vendor/pancake-v3-sdk/package.json",
13
+ "!vendor/pancake-v3-sdk/README.md",
15
14
  "README.md"
16
15
  ],
17
16
  "exports": {
@@ -1,5 +0,0 @@
1
- # Apex Pancake v3 SDK Fork
2
-
3
- This directory vendors the published `@pancakeswap/v3-sdk@3.10.0` package as an Apex-owned snapshot.
4
-
5
- The upstream npm package ships compiled `dist` artifacts, so this fork starts from that published distribution instead of an external live dependency. Apex code imports it through `src/pancakeV3Fork.ts`.
@@ -1,19 +0,0 @@
1
- {
2
- "name": "@apex/pancake-v3-sdk-fork",
3
- "version": "3.10.0-apex.0",
4
- "private": true,
5
- "license": "MIT",
6
- "description": "Pinned Apex-owned snapshot of @pancakeswap/v3-sdk@3.10.0.",
7
- "sideEffects": false,
8
- "main": "dist/index.js",
9
- "module": "dist/index.mjs",
10
- "types": "dist/index.d.ts",
11
- "exports": {
12
- "./package.json": "./package.json",
13
- ".": {
14
- "types": "./dist/index.d.ts",
15
- "import": "./dist/index.mjs",
16
- "require": "./dist/index.js"
17
- }
18
- }
19
- }