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
Copy file name to clipboardExpand all lines: docs/participate/run-nodes/mytonctrl.mdx
+119Lines changed: 119 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,125 @@ Actually, there is [MyTonCtrl2](https://github.com/ton-blockchain/mytonctrl/tree
11
11
We are actively seeking feedback about the installation process. If you have any questions or suggestions, please [contact us](https://t.me/Alexgton).
12
12
13
13
14
+
## Wallet management
15
+
16
+
### Importing a wallet
17
+
18
+
MyTonCtrl2 supports various types of wallet-like contracts, including wallet-v1, wallet-v3, [lockup-wallet](https://github.com/ton-blockchain/lockup-wallet-contract/tree/main/universal), and others. Often, it provides a straightforward way to interact with these contracts.
19
+
20
+
#### Importing Using a Private Key
21
+
22
+
If you have access to a private key, you can easily import a wallet:
23
+
24
+
```bash
25
+
MyTonCtrl> iw <wallet-addr><wallet-secret-key>
26
+
```
27
+
28
+
Here, `<wallet-secret-key>` is your private key in base64 format.
29
+
30
+
#### Importing Using a Mnemonic Phrase
31
+
32
+
If you have a mnemonic phrase (a sequence of 24 words like `tattoo during ...`), follow these steps:
33
+
34
+
1. Install Node.js.
35
+
2. Clone and install [mnemonic2key](https://github.com/ton-blockchain/mnemonic2key):
0 commit comments