meteora-api 0.0.0 → 0.2.0
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 +14 -0
- package/dist/index.cjs +3817 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +6702 -0
- package/dist/index.d.mts +6702 -0
- package/dist/index.mjs +3807 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +28 -9
- package/index.js +0 -1
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Meteora API TypeScript Client
|
|
2
|
+
|
|
3
|
+
```bash
|
|
4
|
+
bun add meteora-api
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
```ts
|
|
8
|
+
import { DlmmApi } from "meteora-api";
|
|
9
|
+
|
|
10
|
+
const dlmm = new DlmmApi();
|
|
11
|
+
const pools = await dlmm.pools.getPools();
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
See the repository README for complete TypeScript and Rust documentation.
|