Vad är filformatet WALLET?
En .wallet-fil är den plånbokscontainer som används av MultiDoge, en Dogecoin-klient för skrivbordet. MultiDoge är en förgrening av MultiBit Bitcoin-plånboken och körs på dogecoinj, Dogecoin-portningen av bitcoinj-biblioteket. Filen lagrar en eller flera privata nycklar, deras Dogecoin-adresser, tidigare transaktioner och det senaste blocket som plånboken synkroniserade. När du kör MultiDoge för första gången skapas en tom multidoge.wallet i dess datamapp.
Moderna filer serialiseras med Googles Protocol Buffers och följer bitcoinj:s wallet.proto. Mycket gamla plånböcker använde Java-serialisering istället och kan behöva en äldre version för att migreras. Om du anger ett lösenord skyddas nycklarna med scrypt-nyckelderivering och AES-kryptering. MultiBit Classic skrev samma .wallet-format för Bitcoin, så du kan stöta på en av dessa filer från båda apparna. Båda projekten är föråldrade: MultiBit lades ner 2017 och MultiDoge utvecklas inte längre aktivt.
Säkerhet & trygghet
RISK: 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.
Formatdetaljer
i ett nötskal- 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.
Program som öppnar WALLET-filer
.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. Tekniska detaljer
djup specifikation| 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. |
| Släppt | 2013 |
| Senaste version | bitcoinj/dogecoinj protobuf wallet (protobuf2 and protobuf3) |
| Specifikation | github.com |
WALLET-konverteringar
Frågor & svar
frågat av användareInga frågor än - bli den första att fråga om WALLET-filer.