alkanesjs 1.0.5
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 +11 -0
- package/dist/index.d.ts +1430 -0
- package/dist/index.js +121059 -0
- package/package.json +56 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# tacoclicker/sdk
|
|
2
|
+
|
|
3
|
+
Typescript helpers to interact and query data from TacoClicker contracts easily. Small bundle size
|
|
4
|
+
and does not depend on oyl/sdk - fully reimplemented execute, simulate and trace methods with strict types.
|
|
5
|
+
|
|
6
|
+
To build:
|
|
7
|
+
|
|
8
|
+
```
|
|
9
|
+
npm i
|
|
10
|
+
npm run build
|
|
11
|
+
```
|