@lavarage/sdk 7.5.6 → 7.5.7
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/.gitignore +18 -1
- package/README.md +33 -0
- package/dist/index.d.mts +1249 -0
- package/dist/index.d.ts +1249 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/docs-readme.md +5 -0
- package/evm.ts +308 -0
- package/index.ts +642 -1
- package/lending.ts +330 -1
- package/package.json +8 -5
- package/typedoc.json +23 -0
- package/.DS_Store +0 -0
package/.gitignore
CHANGED
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Lavarage SDK
|
|
2
|
+
|
|
3
|
+
TypeScript SDK for interacting with the Lavarage DeFi protocol on Solana and EVM chains.
|
|
4
|
+
|
|
5
|
+
## Development Setup
|
|
6
|
+
|
|
7
|
+
### Prerequisites
|
|
8
|
+
- Node.js (v16 or higher)
|
|
9
|
+
- npm
|
|
10
|
+
|
|
11
|
+
### Installation
|
|
12
|
+
```bash
|
|
13
|
+
npm install
|
|
14
|
+
```
|
|
15
|
+
### Build
|
|
16
|
+
|
|
17
|
+
Build the SDK for distribution:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm run build
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Generate Documentation
|
|
24
|
+
|
|
25
|
+
Generate TypeDoc documentation:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm run docs:build
|
|
29
|
+
```
|
|
30
|
+
Documentation will be generated in the docs/ directory.
|
|
31
|
+
|
|
32
|
+
Open docs/index.html in a browser to view.
|
|
33
|
+
|