rango-sdk-basic 0.1.1 → 0.1.2

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/README.md DELETED
@@ -1,34 +0,0 @@
1
- # Rango Exchange SDK
2
-
3
- ## Basic SDK (Single Step Tx)
4
-
5
- [![npm version](https://badge.fury.io/js/rango-sdk-basic.svg)](https://badge.fury.io/js/rango-sdk-basic)
6
- [![license](https://img.shields.io/badge/License-GPLv3-blue.svg)](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
- [![npm version](https://badge.fury.io/js/rango-sdk.svg)](https://badge.fury.io/js/rango-sdk)
19
- [![license](https://img.shields.io/badge/License-GPLv3-blue.svg)](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
- }