@hashgraph/hedera-wallet-connect 2.0.1-canary.619d02d.0 → 2.0.1-canary.91c2137.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 +10 -8
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,11 +1,10 @@
|
|
1
1
|
# Background
|
2
2
|
|
3
|
-
## Overview
|
4
|
-
|
5
3
|
This library provides tools and recommendations on how to integrate Hedera into an application
|
6
4
|
that requires communication with a wallet that supports Hedera. There are 2 different paths to
|
7
5
|
integrate Hedera in this context. Both approaches use the
|
8
|
-
[WalletConnect](https://walletconnect.network/) network to send messages from apps to wallets
|
6
|
+
[WalletConnect](https://walletconnect.network/) network to send messages from apps to wallets
|
7
|
+
and back.
|
9
8
|
|
10
9
|
## Hedera APIs
|
11
10
|
|
@@ -51,11 +50,14 @@ In addition to choosing between the Hedera native JSON-RPC spec and the Ethereum
|
|
51
50
|
when building with javascript/typescript, there are 2 supported options to utilize the
|
52
51
|
WalletConnect network to send information from apps to wallets and back.
|
53
52
|
|
54
|
-
This README assumes a basic understanding of how to create transactions on Hedera
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
53
|
+
This README assumes a basic understanding of how to create transactions on Hedera as well as
|
54
|
+
handling sessions, payloads, and other transport layer details on the WalletConnect network and
|
55
|
+
focusses on how to send a payload to a wallet for processing and presentation to an end user
|
56
|
+
that is a Hedera account holder. We recommend reviewing the
|
57
|
+
[Hedera Docs](https://docs.hedera.com/) and first submitting transactions directly to the Hedera
|
58
|
+
network without requiring interaction with a [Wallet](#hedera-wallets) when integrating Hedera
|
59
|
+
for the first time. We also recommend reviewing the
|
60
|
+
[Reown docs](https://docs.reown.com/overview).
|
59
61
|
|
60
62
|
## Using this library and WalletConnect libraries directly
|
61
63
|
|