Co to jest format pliku WALLET?
Plik .wallet to kontener portfela używany przez MultiDoge, desktopowego klienta Dogecoin. MultiDoge jest forkiem portfela MultiBit Bitcoin i działa na dogecoinj, porcie biblioteki bitcoinj dla Dogecoin. Plik przechowuje jeden lub więcej kluczy prywatnych, ich adresy Dogecoin, przeszłe transakcje oraz ostatni blok, z którym portfel się zsynchronizował. Przy pierwszym uruchomieniu MultiDoge tworzy pusty plik multidoge.wallet w swoim folderze danych.
Nowoczesne pliki są serializowane za pomocą Google Protocol Buffers, zgodnie z wallet.proto biblioteki bitcoinj. Bardzo stare portfele używały serializacji Java i mogą wymagać starszej wersji programu do migracji. Jeśli ustawisz hasło, klucze są chronione za pomocą derywacji klucza scrypt i szyfrowania AES. MultiBit Classic zapisywał ten sam format .wallet dla Bitcoin, więc możesz napotkać jeden z tych plików z dowolnej z tych aplikacji. Oba projekty są przestarzałe: MultiBit został zamknięty w 2017 roku, a MultiDoge nie jest już aktywnie rozwijany.
Bezpieczeństwo
RYZYKO: MEDIUMA genuine MultiDoge .wallet is a data file and does not execute code, but it contains the private keys that control real Dogecoin funds, so leaking or losing it means losing money. Handle it like a password file and keep offline backups. Separately, some ransomware families append a .wallet extension to files they encrypt; those are not crypto wallets and cannot be opened, only restored from backup.
Szczegóły formatu
w pigułce- MultiBit Wallet File - Bitcoin wallets from MultiBit Classic use the same bitcoinj protobuf .wallet format; MultiBit was discontinued in 2017.
- Wallet ransomware - Several ransomware strains append .wallet to files they encrypt (for example the Dharma/CrySiS family). These are not crypto wallets and are unrecoverable without the attacker's key.
- Armory / generic crypto wallet backups - Various other cryptocurrency apps have used a .wallet name for their own backup files; these are unrelated proprietary formats.
Programy otwierające pliki WALLET
.wallet file to view balances and private keys. .wallet files or to migrate serialized wallets to protobuf. .wallet to extract and decrypt the seed or private keys when the app will not load. .wallet file stored under Application Support. .wallet files with an old MultiBit Classic release when MultiDoge cannot read them. .wallet file in your home directory. Szczegóły techniczne
specyfikacja| Encoding | Protocol Buffers (protobuf) binary message; older wallets used Java serialization |
| Byte order | N/A (protobuf uses varint/little-endian internally) |
| Container | bitcoinj/dogecoinj protobuf Wallet message |
| Encryption | Optional. When enabled, keys use ENCRYPTED_SCRYPT_AES: scrypt key derivation from the wallet password plus AES-CBC encryption of each private key (16-byte initialisation vector stored per key). Unencrypted wallets store keys in the clear. |
| Typical size | A few KB to a few hundred KB depending on key and transaction count |
| Structure | Top-level Wallet message holds a network identifier, one or more Key entries (private/public keys, optionally encrypted), Transaction records, the last seen block hash, and encryption parameters (scrypt salt and cost). |
| Integrity | None built into the file; integrity relies on protobuf parsing and, for encrypted wallets, correct password-based decryption. |
| Platforms | Windows, macOS, Linux |
| Notes | Default filename is multidoge.wallet, created in the MultiDoge data directory on first launch (%APPDATA%/MultiDoge on Windows, ~/Library/Application Support/MultiDoge on macOS, ~/MultiDoge on Linux). A companion .info sidecar and .spvchain block-index file usually sit alongside it. MultiDoge is a Dogecoin port of MultiBit; MultiBit was discontinued in 2017, so the format is legacy. |
| Wydano | 2013 |
| Najnowsza wersja | bitcoinj/dogecoinj protobuf wallet (protobuf2 and protobuf3) |
| Specyfikacja | github.com |
Konwersje WALLET
Pytania i odpowiedzi społeczności
pytania użytkownikówBrak pytań - bądź pierwszą osobą, która zapyta o pliki WALLET.