zano_web3 1.0.0 → 1.1.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 +5 -5
- package/package.json +10 -2
- package/src/index.ts +3 -0
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
# ZanoWallet
|
|
3
3
|
|
|
4
|
-
`
|
|
4
|
+
`zano_web3` is a TypeScript library for interacting with the ZanoWallet extension in the browser. It allows you to connect to a user's ZanoWallet, handle authentication, and manage wallet credentials.
|
|
5
5
|
|
|
6
6
|
## Features
|
|
7
7
|
|
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
15
|
-
To install `
|
|
15
|
+
To install `zano_web3`, use npm or yarn:
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
npm install
|
|
18
|
+
npm install zano_web3
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
or
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
yarn add
|
|
24
|
+
yarn add zano_web3
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
## Usage
|
|
@@ -29,7 +29,7 @@ yarn add zano-web3
|
|
|
29
29
|
### Importing the Library
|
|
30
30
|
|
|
31
31
|
```typescript
|
|
32
|
-
import ZanoWallet from '
|
|
32
|
+
import ZanoWallet from 'zano_web3';
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
### Creating a ZanoWallet Instance
|
package/package.json
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zano_web3",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "tsc"
|
|
9
9
|
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/jejolare/zano_web3.git"
|
|
13
|
+
},
|
|
10
14
|
"keywords": [],
|
|
11
15
|
"author": "",
|
|
12
16
|
"license": "ISC",
|
|
@@ -16,5 +20,9 @@
|
|
|
16
20
|
},
|
|
17
21
|
"dependencies": {
|
|
18
22
|
"uuid": "^10.0.0"
|
|
19
|
-
}
|
|
23
|
+
},
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/jejolare/zano_web3/issues"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://github.com/jejolare/zano_web3#readme"
|
|
20
28
|
}
|
package/src/index.ts
ADDED