rango-sdk-basic 0.1.1 → 0.1.3
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/lib/rango-sdk-basic.cjs.development.js +134 -35
- 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 +123 -36
- package/lib/rango-sdk-basic.esm.js.map +1 -1
- package/lib/services/client.d.ts.map +1 -1
- package/lib/services/executor.d.ts.map +1 -1
- package/lib/types/api/meta.d.ts +1 -0
- package/lib/types/api/meta.d.ts.map +1 -1
- package/package.json +4 -4
- package/lib/LICENSE +0 -674
- package/lib/README.md +0 -34
- package/lib/package.json +0 -45
package/lib/README.md
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
# Rango Exchange SDK
|
|
2
|
-
|
|
3
|
-
## Basic SDK (Single Step Tx)
|
|
4
|
-
|
|
5
|
-
[](https://badge.fury.io/js/rango-sdk-basic)
|
|
6
|
-
[](https://github.com/rango-exchange/rango-sdk/blob/master/LICENSE)
|
|
7
|
-
|
|
8
|
-
### Installation
|
|
9
|
-
|
|
10
|
-
```shell
|
|
11
|
-
yarn add rango-sdk-basic
|
|
12
|
-
# or
|
|
13
|
-
npm install rango-sdk-basic --save
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
## Main SDK (Multi Step Tx)
|
|
17
|
-
|
|
18
|
-
[](https://badge.fury.io/js/rango-sdk)
|
|
19
|
-
[](https://github.com/rango-exchange/rango-sdk/blob/master/LICENSE)
|
|
20
|
-
|
|
21
|
-
### Installation
|
|
22
|
-
|
|
23
|
-
```shell
|
|
24
|
-
yarn add rango-sdk
|
|
25
|
-
# or
|
|
26
|
-
npm install rango-sdk --save
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
## Usage
|
|
30
|
-
|
|
31
|
-
Please checkout the examples' folder for sample usage of the SDK. We will add more examples there soon.
|
|
32
|
-
|
|
33
|
-
- [Documents](https://docs.rango.exchange/integration/overview)
|
|
34
|
-
- [Examples](https://github.com/rango-exchange/rango-sdk/tree/master/examples/)
|
package/lib/package.json
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "rango-sdk-basic",
|
|
3
|
-
"version": "0.1.1",
|
|
4
|
-
"description": "Rango Exchange Basic SDK for dApps",
|
|
5
|
-
"module": "./index.js",
|
|
6
|
-
"main": "./cjs/index.js",
|
|
7
|
-
"types": "./index.d.ts",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/rango-exchange/rango-sdk.git"
|
|
11
|
-
},
|
|
12
|
-
"homepage": "https://github.com/rango-exchange/rango-sdk-basic",
|
|
13
|
-
"bugs": {
|
|
14
|
-
"url": "https://github.com/rango-exchange/rango-sdk/issues"
|
|
15
|
-
},
|
|
16
|
-
"keywords": [
|
|
17
|
-
"Rango Exchange",
|
|
18
|
-
"SDK",
|
|
19
|
-
"Cross-Chain",
|
|
20
|
-
"Multi-Chain",
|
|
21
|
-
"Ethereum",
|
|
22
|
-
"Cosmos",
|
|
23
|
-
"Solana",
|
|
24
|
-
"Tron",
|
|
25
|
-
"Starknet",
|
|
26
|
-
"Aggregator"
|
|
27
|
-
],
|
|
28
|
-
"author": "rango.exchange",
|
|
29
|
-
"license": "GPL-3.0",
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"axios": "^1.2.6",
|
|
32
|
-
"bignumber.js": "^9.1.1",
|
|
33
|
-
"eth-rpc-errors": "^4.0.3",
|
|
34
|
-
"ethers": "^5.7.2",
|
|
35
|
-
"rango-types": "^0.1.2",
|
|
36
|
-
"uuid": "^9.0.0"
|
|
37
|
-
},
|
|
38
|
-
"publishConfig": {
|
|
39
|
-
"access": "public",
|
|
40
|
-
"branches": [
|
|
41
|
-
"master"
|
|
42
|
-
]
|
|
43
|
-
},
|
|
44
|
-
"private": false
|
|
45
|
-
}
|