Wat is het WALLET-bestandsformaat?
Een .wallet-bestand is de portemonnee-container die wordt gebruikt door MultiDoge, een desktop Dogecoin-client. MultiDoge is een fork van de MultiBit Bitcoin-portemonnee en draait op dogecoinj, de Dogecoin-port van de bitcoinj-bibliotheek. Het bestand slaat een of meer privésleutels op, hun Dogecoin-adressen, eerdere transacties en het laatste blok dat de portemonnee heeft gesynchroniseerd. Wanneer u MultiDoge voor het eerst uitvoert, maakt het een lege multidoge.wallet aan in de gegevensmap.
Moderne bestanden worden geserialiseerd met Google's Protocol Buffers, volgens de wallet.proto van bitcoinj. Zeer oude portemonnees gebruikten in plaats daarvan Java-serialisatie en hebben mogelijk een oudere build nodig om te migreren. Als u een wachtwoord instelt, worden de sleutels beschermd met scrypt-sleutelafleiding en AES-versleuteling. MultiBit Classic schreef hetzelfde .wallet-formaat voor Bitcoin, dus u kunt een van deze bestanden van beide apps tegenkomen. Beide projecten zijn verouderd: MultiBit is in 2017 gestopt en MultiDoge wordt niet langer actief ontwikkeld.
Beveiliging & veiligheid
RISICO: 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.
Formaatdetails
in een notendop- 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.
Programma's die WALLET-bestanden openen
.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. Technische details
diepe specificaties| 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. |
| Uitgebracht | 2013 |
| Laatste versie | bitcoinj/dogecoinj protobuf wallet (protobuf2 and protobuf3) |
| Specificatie | github.com |
WALLET conversies
Community V&A
gevraagd door gebruikersNog geen vragen - wees de eerste om iets te vragen over WALLET-bestanden.