Hva er WALLET-filformatet?
En .wallet-fil er lommebok-beholderen som brukes av MultiDoge, en Dogecoin-klient for skrivebord. MultiDoge er en fork av MultiBit Bitcoin-lommeboken og kjører på dogecoinj, Dogecoin-porten av bitcoinj-biblioteket. Filen lagrer én eller flere private nøkler, deres Dogecoin-adresser, tidligere transaksjoner og den siste blokken lommeboken synkroniserte. Når du kjører MultiDoge for første gang, oppretter den en tom multidoge.wallet i sin datamappe.
Moderne filer er serialisert med Google's Protocol Buffers, og følger bitcoinj sin wallet.proto. Veldig gamle lommebøker brukte Java-serialisering i stedet og kan trenge en eldre versjon for å migreres. Hvis du angir et passord, er nøklene beskyttet med scrypt-nøkkelutledning og AES-kryptering. MultiBit Classic skrev det samme .wallet-formatet for Bitcoin, så du kan støte på en av disse filene fra begge appene. Begge prosjektene er utdaterte: MultiBit ble lagt ned i 2017 og MultiDoge blir ikke lenger aktivt utviklet.
Sikkerhet og trygghet
RISIKO: 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 et nøtteskall- 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.
Programmer som åpner 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. Tekniske detaljer
dyp spesifikasjon| 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. |
| Utgitt | 2013 |
| Siste versjon | bitcoinj/dogecoinj protobuf wallet (protobuf2 and protobuf3) |
| Spesifikasjon | github.com |
WALLET-konverteringer
Spørsmål og svar fra fellesskapet
spurt av brukereIngen spørsmål ennå - vær den første til å spørre om WALLET-filer.