@gmsol-labs/gmsol-sdk 0.5.0-alpha.10
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 +122 -0
- package/index.d.ts +825 -0
- package/index.js +5 -0
- package/index_bg.js +1864 -0
- package/index_bg.wasm +0 -0
- package/package.json +28 -0
package/index_bg.wasm
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gmsol-labs/gmsol-sdk",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"description": "GMX-Solana is an extension of GMX on the Solana blockchain.",
|
|
5
|
+
"version": "0.5.0-alpha.10",
|
|
6
|
+
"license": "SEE LICENSE IN ../../LICENSE",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/gmsol-labs/gmx-solana"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"index_bg.wasm",
|
|
13
|
+
"index.js",
|
|
14
|
+
"index_bg.js",
|
|
15
|
+
"index.d.ts"
|
|
16
|
+
],
|
|
17
|
+
"main": "index.js",
|
|
18
|
+
"types": "index.d.ts",
|
|
19
|
+
"sideEffects": [
|
|
20
|
+
"./index.js",
|
|
21
|
+
"./snippets/*"
|
|
22
|
+
],
|
|
23
|
+
"keywords": [
|
|
24
|
+
"gmx-solana",
|
|
25
|
+
"gmx",
|
|
26
|
+
"solana"
|
|
27
|
+
]
|
|
28
|
+
}
|