@txnlab/use-wallet 0.0.2 → 0.0.4
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 +2 -2
- package/dist/cjs/constants/constants.d.ts +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/constants/constants.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -18,12 +18,12 @@ Install with NPM.
|
|
|
18
18
|
npm install @txnlab/use-wallet
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
Install
|
|
21
|
+
Install peer dependencies if you don't have them.
|
|
22
22
|
|
|
23
23
|
With Yarn.
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
yarn add @blockshake/defly-connect @perawallet/connect @randlabs/myalgo-connect @walletconnect/client
|
|
26
|
+
yarn add algosdk @blockshake/defly-connect @perawallet/connect @randlabs/myalgo-connect @walletconnect/client
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
With NPM.
|
|
@@ -5,6 +5,6 @@ export declare enum PROVIDER_ID {
|
|
|
5
5
|
DEFLY = "Defly",
|
|
6
6
|
EXODUS = "Exodus"
|
|
7
7
|
}
|
|
8
|
-
export declare const NODE_SERVER = "https://
|
|
8
|
+
export declare const NODE_SERVER = "https://mainnet-api.algonode.cloud";
|
|
9
9
|
export declare const NODE_TOKEN = "";
|
|
10
10
|
export declare const NODE_PORT = "";
|
package/dist/cjs/index.js
CHANGED
|
@@ -520,7 +520,7 @@ exports.PROVIDER_ID = void 0;
|
|
|
520
520
|
PROVIDER_ID["DEFLY"] = "Defly";
|
|
521
521
|
PROVIDER_ID["EXODUS"] = "Exodus";
|
|
522
522
|
})(exports.PROVIDER_ID || (exports.PROVIDER_ID = {}));
|
|
523
|
-
const NODE_SERVER = "https://
|
|
523
|
+
const NODE_SERVER = "https://mainnet-api.algonode.cloud";
|
|
524
524
|
const NODE_TOKEN = "";
|
|
525
525
|
const NODE_PORT = "";
|
|
526
526
|
|