@hinkal/common 0.0.98 → 0.0.99
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 +3 -0
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Hinkal SDK
|
|
2
|
+
|
|
2
3
|
SDK allows to call hinkal functions. You will be able to do arbitrary Smart Contract interactions using SDK.
|
|
3
4
|
### Installation
|
|
5
|
+
|
|
4
6
|
Using npm:
|
|
5
7
|
```sh
|
|
6
8
|
npm install @hinkal/common
|
|
@@ -11,6 +13,7 @@ yarn add @hinkal/common
|
|
|
11
13
|
```
|
|
12
14
|
### Usage
|
|
13
15
|
|
|
16
|
+
|
|
14
17
|
1. Step: import hinkal from @hinkal/common package and initiate a Hinkal instance:
|
|
15
18
|
```sh
|
|
16
19
|
import {Hinkal} from '@hinkal/common';
|
package/package.json
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hinkal/common",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.99",
|
|
4
4
|
"homepage": "hinkal.pro",
|
|
5
|
-
"author":
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Hinkal Protocol"
|
|
7
|
+
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"blockchain",
|
|
10
|
+
"privacy",
|
|
11
|
+
"zero-knowledge",
|
|
12
|
+
"stealth addresses"
|
|
13
|
+
],
|
|
6
14
|
"type": "module",
|
|
7
15
|
"main": "index.mjs",
|
|
8
16
|
"module": "index.mjs",
|