Skip to content

Commit e052bdd

Browse files
committed
migration notice
1 parent 8debf3c commit e052bdd

2 files changed

Lines changed: 130 additions & 0 deletions

File tree

astro.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ export default defineConfig({
9393
{ label: "Delegate Hive Power", slug: "guides/delegate-hp" },
9494
{ label: "Create community", slug: "guides/create-community" },
9595
{ label: "Witness voting", slug: "guides/vote-witness" },
96+
{ label: "Seed phrase migration", slug: "guides/seed-phrase-migration" },
9697
],
9798
},
9899
{
Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
---
2+
title: Migrate funds using your seed phrase
3+
description: How to use your 12-word seed phrase or seed file from Ecency to move cross-chain funds (BTC, ETH, SOL, etc.) into an external wallet.
4+
---
5+
6+
# Migrate funds using your seed phrase
7+
8+
Ecency previously generated **12-word seed phrases** (and seed files) when creating cross-chain wallets for BTC, ETH, BNB, SOL, APT, TRX, and TON. We are moving back to the standard **Hive master password** for account security, simplicity, and seed phrase generation is being discontinued.
9+
10+
If you deposited tokens to a cross-chain wallet created with a seed phrase during wallet signup process or setup external wallets process, this guide explains how to **import that phrase into an external wallet app** so you can access and move your funds.
11+
12+
---
13+
14+
## Before you start
15+
16+
- **Locate your seed phrase** — the 12 English words you were shown (or saved in a seed file) when the wallet was generated. If you cannot find it, check backups, screenshots, or any exported seed file from Ecency.
17+
- **Never share your seed phrase** with anyone. Any person or app that has it can move your funds.
18+
- **Use a trusted device** — avoid public Wi-Fi and shared computers.
19+
20+
> If you never deposited funds to a cross-chain address generated by Ecency, there is nothing to migrate.
21+
22+
---
23+
24+
## Step 1 — Choose a wallet app for your chain
25+
26+
Pick a reputable, well-known wallet that supports **importing a 12-word BIP-39 mnemonic** (the standard behind most seed phrases). Common options:
27+
28+
| Chain | Recommended wallets |
29+
|-------|-------------------|
30+
| **BTC** | BlueWallet, Sparrow, Electrum |
31+
| **ETH / BNB** | MetaMask, Rabby, Trust Wallet |
32+
| **SOL** | Phantom, Solflare |
33+
| **APT** | Petra, Pontem |
34+
| **TRX** | TronLink |
35+
| **TON** | Tonkeeper, MyTonWallet |
36+
37+
> Always download wallets from their **official website** or from verified app-store listings. Fake wallet apps are a common scam vector.
38+
39+
---
40+
41+
## Step 2 — Import your seed phrase
42+
43+
The exact steps vary by wallet, but the general flow is:
44+
45+
1. Open the wallet app and choose **Import Wallet** (or "Restore", "Recover", "Use existing wallet").
46+
2. Select **12-word recovery phrase** when asked for the type.
47+
3. Enter your 12 words **in the exact order** they were given. Spelling matters; each word comes from a fixed list.
48+
4. Set a local password or PIN when prompted — this only protects the app on your device.
49+
5. The wallet will derive your address and display your balance.
50+
51+
If the balance shows **zero** but you know funds were deposited, you may need to set a **custom derivation path**. See the table below.
52+
53+
---
54+
55+
## Ecency derivation paths
56+
57+
Ecency used the following derivation paths depending on when and how your wallet was created. If an external wallet does not find your balance automatically, try entering these paths manually in its **advanced** or **custom derivation path** settings.
58+
59+
### Wallets created during signup
60+
61+
| Chain | Derivation path |
62+
|-------|----------------|
63+
| **BTC** | `m/44'/0'/0'/0/0` |
64+
| **ETH** | `m/44'/60'/0'/0/0` |
65+
| **BNB** | `m/44'/60'/0'/0/0` |
66+
| **SOL** | `m/44'/501'/0'/0'` |
67+
| **TRX** | `m/44'/195'/0'/0/0` |
68+
| **APT** | `m/44'/637'/0'/0'/0'` |
69+
| **TON** | `m/44'/607'/0'` |
70+
71+
### Wallets created via external wallet setup
72+
73+
| Chain | Derivation path |
74+
|-------|----------------|
75+
| **BTC** | `m/84'/0'/0'/0/0` |
76+
| **ETH** | `m/84'/60'/0'/0/0` |
77+
| **BNB** | `m/84'/60'/0'/0/0` |
78+
| **SOL** | `m/84'/501'/0'/0/0` |
79+
| **TRX** | `m/44'/195'/0'/0'/0'` |
80+
| **APT** | `m/84'/637'/0'/0/0` |
81+
| **TON** | `m/44'/607'/0'` |
82+
83+
> **Tip:** If you are unsure which set applies to you, try the signup paths first. If the wallet shows a zero balance and a different address than the one you used in Ecency, try the external wallet setup paths. Some wallet apps (e.g., Trust Wallet, Exodus) only support standard BIP-44 paths, so the signup paths are more widely compatible.
84+
85+
---
86+
87+
## Step 3 — Move your funds
88+
89+
Once the wallet shows your balance:
90+
91+
1. Use the wallet's **Send** function.
92+
2. Enter the **destination address** — this could be an exchange deposit address, another personal wallet, or any valid address on that chain.
93+
3. Review the **network fee** estimate before confirming.
94+
4. Submit the transaction and wait for on-chain confirmation.
95+
96+
> For large balances, send a small test amount first to verify everything works.
97+
98+
---
99+
100+
## After migration
101+
102+
- Your funds now live at the destination address and are no longer tied to the Ecency-generated wallet.
103+
- You can safely stop using the old seed phrase once the balance is zero and all transactions are confirmed.
104+
- Store the seed phrase securely (or destroy it) — do not leave it in plaintext files or cloud storage.
105+
106+
---
107+
108+
## Security reminders
109+
110+
- **One phrase, one purpose.** Do not reuse a seed phrase across multiple services.
111+
- **Beware of phishing.** No legitimate wallet app will ever ask you to enter your seed phrase into a website or chat.
112+
- **Double-check addresses.** Clipboard malware can silently swap addresses. Always verify the first and last few characters before sending.
113+
- **Keep software updated.** Wallet apps and your operating system should be on the latest version.
114+
115+
---
116+
117+
## FAQ
118+
119+
**What if I lost my seed phrase?**
120+
Without the seed phrase (or the private key derived from it), there is no way to recover funds on external chains. Ecency does not store a copy of your seed phrase.
121+
122+
**Can I still see my cross-chain balance in Ecency?**
123+
While the cross-chain wallet feature is active, your balance will still appear in Ecency. However, you should migrate funds to a wallet you fully control as soon as possible. Multichain wallet is being upgraded to use different structure.
124+
125+
**Does this affect my Hive account or HIVE/HBD balance?**
126+
No. Your Hive account is secured by your Hive keys (master password, owner/active/posting/memo keys). This guide only covers funds on other blockchains (BTC, ETH, SOL, etc.). Your private keys on seed file also secure as long as you don't share it with anyone and they keep working.
127+
128+
**What is a derivation path?**
129+
A derivation path tells the wallet which key to generate from your seed phrase. Different chains use different paths. Most wallet apps handle this automatically when you select the correct chain, but if your balance does not appear, enter the exact path from the [derivation paths table](#ecency-derivation-paths) above into the wallet's custom path setting.

0 commit comments

Comments
 (0)