@switch-win/sdk 1.0.0 → 1.0.1
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/README.md +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Switch SDK
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@switch-win/sdk)
|
|
4
|
+
[](https://www.npmjs.com/package/@switch-win/sdk)
|
|
5
|
+
|
|
3
6
|
> **Official integration kit for the Switch DEX Aggregator on PulseChain**
|
|
4
7
|
|
|
5
8
|
Everything partners need to integrate Switch swaps and limit orders — API docs, TypeScript types, ABIs, constants, and ready-to-use examples.
|
|
@@ -35,6 +38,8 @@ Switch-SDK/
|
|
|
35
38
|
|
|
36
39
|
## Table of Contents
|
|
37
40
|
|
|
41
|
+
0. [Installation](#installation)
|
|
42
|
+
|
|
38
43
|
### Swaps
|
|
39
44
|
|
|
40
45
|
1. [Quickstart](#quickstart)
|
|
@@ -57,6 +62,18 @@ Switch-SDK/
|
|
|
57
62
|
|
|
58
63
|
---
|
|
59
64
|
|
|
65
|
+
## Installation
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
npm install @switch-win/sdk
|
|
69
|
+
# or
|
|
70
|
+
yarn add @switch-win/sdk
|
|
71
|
+
# or
|
|
72
|
+
pnpm add @switch-win/sdk
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
60
77
|
## Quickstart
|
|
61
78
|
|
|
62
79
|
Get a swap quote and execute it in **three steps**:
|
package/package.json
CHANGED