You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -110,7 +110,7 @@ const wallet = new MeshWallet({
110
110
111
111
### Cardano CLI generated skeys
112
112
113
-
We can load wallet with CLIgenerated keys by providing the `skey` generated by Cardano CLI. There are two files generated by Cardano CLI, by default it is named `signing.skey` and `stake.skey`. Opening the `signing.skey` file it should contains:
113
+
We can load a wallet with CLI-generated keys by providing the `skey` generated by Cardano CLI. There are two files generated by Cardano CLI, by default, it is named `signing.skey` and `stake.skey`. Opening the `signing.skey` file should show:
114
114
115
115
```tsx
116
116
{
@@ -140,7 +140,7 @@ const wallet = new MeshWallet({
140
140
141
141
### Address
142
142
143
-
We can load wallet with address, this is useful for read-only wallets. A read-only wallet can only query the blockchain, it cannot sign transactions. This is useful for monitoring wallets. We can load wallet with the `address` type:
143
+
We can load a wallet with address, this is useful for read-only wallets. A read-only wallet can only query the blockchain, it cannot sign transactions. This is useful for monitoring wallets. We can load wallet with the `address` type:
144
144
145
145
```tsx
146
146
import { MeshWallet } from'@meshsdk/core';
@@ -164,7 +164,7 @@ After creating the wallet, we need to initialize it. This will initialize the cr
164
164
awaitwallet.init()
165
165
```
166
166
167
-
With the `wallet` loaded, you can sign transactions, we will see how to do this in the next section, for now lets get the wallet's address:
167
+
With the `wallet` loaded, you can sign transactions, we will see how to do this in the [Sign Transaction](https://meshjs.dev/apis/wallets/meshwallet#sign-transaction) section, for now lets get the wallet's address:
168
168
169
169
```tsx
170
170
const address =wallet.getChangeAddress();
@@ -226,7 +226,7 @@ Example response:
226
226
227
227
## Get Change Address
228
228
229
-
This API returns an address owned by the wallet that should be used as a change address. A change address is essential during transaction creation to ensure leftover assets are securely returned to the connected wallet.
229
+
This API returns an address owned by the wallet which is essential during transaction creation to ensure leftover assets are securely returned to the connected wallet.
230
230
231
231
The change address helps maintain the integrity of transactions by preventing asset loss and ensuring proper allocation of funds.
232
232
@@ -440,7 +440,7 @@ This functionality is essential for applications that require secure and verifia
440
440
```
441
441
</Card>
442
442
443
-
Continue reading this guide to learn how to verify the signature.
443
+
Check out [this guide](https://meshjs.dev/guides/prove-wallet-ownership#server-verify-signature) to learn how to verify the signature.
444
444
445
445
Example response:
446
446
```tsx
@@ -463,7 +463,7 @@ This functionality is vital for applications that need to interact with the bloc
463
463
464
464
Create a transaction and sign it
465
465
466
-
Check out **Transaction** to learn more on how to use this API.
466
+
Check out [MeshWallet](https://docs.meshjs.dev/wallets/classes/MeshWallet#signTx) documentation to learn more on how to use this API.
0 commit comments