llama-pay-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 +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# llama-pay-sdk
|
|
2
|
+
|
|
3
|
+
Official SDK for ethpar services.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
This repository provides SDK that exposes API to connect to the ethpar backend.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
```
|
|
10
|
+
import { MerapiClient } from 'llama-pay-sdk'
|
|
11
|
+
|
|
12
|
+
const API_URL = 'https://api.dev.rampatm.net/ramp'
|
|
13
|
+
const client = new MerapiClient(API_URL)
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## License
|
|
17
|
+
Apache 2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llama-pay-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Official SDK for ethpar services. For more details visit https://www.ethpar.com/#join-network",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"llama-pay"
|
|
19
19
|
],
|
|
20
20
|
"author": "",
|
|
21
|
-
"license": "
|
|
21
|
+
"license": "Apache-2.0",
|
|
22
22
|
"type": "commonjs",
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/node": "^24.9.1",
|