rango-sdk-basic 0.0.15 → 0.1.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 +8 -10
- package/lib/LICENSE +674 -0
- package/lib/README.md +34 -0
- package/lib/package.json +45 -0
- package/lib/rango-sdk-basic.cjs.development.js +34 -28
- package/lib/rango-sdk-basic.cjs.development.js.map +1 -1
- package/lib/rango-sdk-basic.cjs.production.min.js +1 -1
- package/lib/rango-sdk-basic.cjs.production.min.js.map +1 -1
- package/lib/rango-sdk-basic.esm.js +34 -28
- package/lib/rango-sdk-basic.esm.js.map +1 -1
- package/lib/services/client.d.ts.map +1 -1
- package/lib/utils/errors.d.ts.map +1 -1
- package/package.json +16 -22
package/README.md
CHANGED
|
@@ -1,23 +1,21 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Rango Exchange SDK
|
|
2
|
+
|
|
3
|
+
## Basic SDK (Single Step Tx)
|
|
2
4
|
|
|
3
5
|
[](https://badge.fury.io/js/rango-sdk-basic)
|
|
4
6
|
[](https://github.com/rango-exchange/rango-sdk/blob/master/LICENSE)
|
|
5
7
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
> **WARNING:** The Rango SDK is still beta. Please use it on your own risk.
|
|
9
|
-
|
|
10
|
-
> **WARNING:** The Rango SDK has not stabilized yet, and we might make some breaking changes.
|
|
11
|
-
|
|
12
|
-
## 2. Installation
|
|
8
|
+
### Installation
|
|
13
9
|
|
|
14
10
|
```shell
|
|
11
|
+
yarn add rango-sdk-basic
|
|
12
|
+
# or
|
|
15
13
|
npm install rango-sdk-basic --save
|
|
16
14
|
```
|
|
17
15
|
|
|
18
|
-
##
|
|
16
|
+
## Usage
|
|
19
17
|
|
|
20
18
|
Please checkout the examples' folder for sample usage of the SDK. We will add more examples there soon.
|
|
21
19
|
|
|
22
20
|
- [Documents](https://docs.rango.exchange/integration/overview)
|
|
23
|
-
- [Examples](https://github.com/rango-exchange/rango-sdk/tree/master/examples/)
|
|
21
|
+
- [Examples](https://github.com/rango-exchange/rango-sdk/tree/master/examples/basic/)
|