rango-sdk-basic 0.1.54 → 0.1.55

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.
Files changed (2) hide show
  1. package/README.md +5 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,8 +1,5 @@
1
1
  # Rango Exchange SDK
2
2
 
3
- - [Basic-SDK Integration Tutorial](https://docs.rango.exchange/api-integration/basic-api-single-step/tutorial/sdk-example)
4
- - [Basic-SDK Reference](https://docs.rango.exchange/api-integration/basic-api-single-step/api-reference)
5
-
6
3
  ## Basic SDK (Single Step Tx)
7
4
 
8
5
  [![npm version](https://badge.fury.io/js/rango-sdk-basic.svg)](https://badge.fury.io/js/rango-sdk-basic)
@@ -18,7 +15,8 @@
18
15
 
19
16
  ## Usage
20
17
 
21
- Please checkout the examples' folder for sample usage of the SDK. We will add more examples there soon.
22
-
23
- - [Documents](https://docs.rango.exchange/api-integration/basic-api-single-step/tutorial/sdk-example)
24
- - [Examples](https://github.com/rango-exchange/rango-sdk/tree/master/examples/basic)
18
+ - [Basic-SDK Integration Tutorial](https://docs.rango.exchange/api-integration/basic-api-single-step/tutorial/sdk-example)
19
+ - [Basic-SDK Reference](https://docs.rango.exchange/api-integration/basic-api-single-step/api-reference)
20
+ - Examples
21
+ - [EVM Example](https://github.com/rango-exchange/rango-sdk/tree/master/examples/basic/node-evm/)
22
+ - [Solana Example](https://github.com/rango-exchange/rango-sdk/tree/master/examples/basic/node-solana/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rango-sdk-basic",
3
- "version": "0.1.54",
3
+ "version": "0.1.55",
4
4
  "description": "Rango Exchange Basic SDK for dApps",
5
5
  "module": "lib/rango-sdk-basic.esm.js",
6
6
  "main": "lib/index.js",
@@ -42,7 +42,7 @@
42
42
  "author": "rango.exchange",
43
43
  "license": "GPL-3.0",
44
44
  "dependencies": {
45
- "axios": "^1.7.3",
45
+ "axios": "^1.7.4",
46
46
  "rango-types": "^0.1.73",
47
47
  "uuid-random": "^1.3.2"
48
48
  },