Dogecoin
Overview
Zafeguard Dogecoin components for the full transaction lifecycle — address derivation, UTXO selection, signing, and broadcasting.
Overview
Zafeguard ships 7 Dogecoin components covering the full lifecycle of Dogecoin transactions: address derivation → UTXO selection → fee estimation → signing → broadcasting.
Dogecoin uses P2PKH addresses exclusively (no SegWit or Taproot). Network access (UTXO fetch, fee estimation, broadcast) is handled by Zafeguard — no RPC endpoint configuration required.
Categories
| Group | Components | Page |
|---|---|---|
| Transactions | BUILD, SIGN, BROADCAST, COMPUTE_SIGNATURE_HASH | Transactions → |
| Wallets & Addresses | COMPUTE_ADDRESS, GET_BALANCE, GET_DERIVATION_PATH | Wallets & Addresses → |
Chain facts
| Property | Value |
|---|---|
| BIP-44 coin type | 3 (m/44'/3'/...) |
| Smallest unit | koinu (1 DOGE = 100,000,000 koinu) |
| Payment types | P2PKH only |
| Signed-message prefix | \x19Dogecoin Signed Message:\n |
| Networks | mainnet, testnet |
Typical Dogecoin workflow
GET_DOGECOIN_DERIVATION_PATH
│
▼
COMPUTE_PUBLIC_KEY ──▶ COMPUTE_DOGECOIN_ADDRESS
│
▼
GET_DOGECOIN_ACCOUNT_BALANCE (guard check)
│
▼
BUILD_DOGECOIN_TRANSACTION
│ messageHashes[] │ unsignedTransaction
▼ │
SIGN_WITH_KEY_SHARE (×N) │
│ signatures[] │
└──────────┬───────────┘
▼
SIGN_DOGECOIN_TRANSACTION
│ signedTransaction
▼
BROADCAST_DOGECOIN_TRANSACTION
│ txid
▼
[Confirmed]