@hashgraph/hedera-wallet-connect 1.3.0 → 1.3.2-0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +11 -0
- package/dist/browser-cjs-metafile.json +1 -1
- package/dist/browser-cjs.js +1 -1
- package/dist/browser-esm-metafile.json +1 -1
- package/dist/browser-esm.js +1 -1
- package/dist/node-cjs-metafile.json +1 -1
- package/dist/node-cjs.js +115 -115
- package/dist/node-esm-metafile.json +1 -1
- package/dist/node-esm.js +115 -115
- package/dist/types/src/lib/dapp/DAppSigner.d.ts +8 -0
- package/dist/types/src/lib/dapp/DAppSigner.d.ts.map +1 -1
- package/dist/types/src/lib/shared/utils.d.ts.map +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
@@ -65,6 +65,17 @@ reference the [WalletConnect documentation](https://docs.walletconnect.com/2.0/)
|
|
65
65
|
Upon successfully configuring your dApp and/or wallet to manage WalletConnect sessions, you can
|
66
66
|
use this library’s functions to easily create and handle requests for the Hedera network.
|
67
67
|
|
68
|
+
### Installation
|
69
|
+
|
70
|
+
`npm i --save @hashgraph/hedera-wallet-connect @hashgraph/sdk`
|
71
|
+
|
72
|
+
### Example code
|
73
|
+
|
74
|
+
There is a working example written in vanilla html css and typescript.
|
75
|
+
|
76
|
+
- [dApp example code](src/examples/typescript/dapp/main.ts)
|
77
|
+
- [Wallet example code](src/examples/typescript/wallet/main.ts)
|
78
|
+
|
68
79
|
### DApps
|
69
80
|
|
70
81
|
#### Signer
|