@ocap/wallet 1.20.1 → 1.20.3

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +11 -12
package/README.md CHANGED
@@ -2,14 +2,14 @@
2
2
 
3
3
  [![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
4
4
  [![docs](https://img.shields.io/badge/powered%20by-arcblock-green.svg)](https://docs.arcblock.io)
5
- [![Gitter](https://badges.gitter.im/ArcBlock/community.svg)](https://gitter.im/ArcBlock/community?utm_source=badge\&utm_medium=badge\&utm_campaign=pr-badge)
5
+ [![Gitter](https://badges.gitter.im/ArcBlock/community.svg)](https://gitter.im/ArcBlock/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
6
6
 
7
7
  > Utility function to create and use a forge compatible wallet, the wallet is also DID compatible.
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```shell
12
- yarn add @ocap/wallet
12
+ pnpm install @ocap/wallet
13
13
  # OR
14
14
  npm i @ocap/wallet -S
15
15
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ocap/wallet",
3
- "version": "1.20.1",
3
+ "version": "1.20.3",
4
4
  "description": "Utility function to create and use an forge compatible crypto wallet",
5
5
  "keywords": [
6
6
  "crypto",
@@ -39,6 +39,14 @@
39
39
  "type": "git",
40
40
  "url": "git+https://github.com/ArcBlock/blockchain.git"
41
41
  },
42
+ "bugs": {
43
+ "url": "https://github.com/ArcBlock/blockchain/issues"
44
+ },
45
+ "dependencies": {
46
+ "@arcblock/did": "1.20.3",
47
+ "@ocap/mcrypto": "1.20.3",
48
+ "@ocap/util": "1.20.3"
49
+ },
42
50
  "scripts": {
43
51
  "lint": "eslint tests src",
44
52
  "lint:fix": "eslint --fix tests src",
@@ -50,14 +58,5 @@
50
58
  "build:esm": "tsc -p tsconfig.esm.json",
51
59
  "build": "npm run build:cjs && npm run build:esm",
52
60
  "build:watch": "npm run build -- -w"
53
- },
54
- "bugs": {
55
- "url": "https://github.com/ArcBlock/blockchain/issues"
56
- },
57
- "dependencies": {
58
- "@arcblock/did": "1.20.1",
59
- "@ocap/mcrypto": "1.20.1",
60
- "@ocap/util": "1.20.1"
61
- },
62
- "gitHead": "f73bddbe4b86106fd348e43ce9e19a626acdc9f6"
63
- }
61
+ }
62
+ }