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

GroupComponentsPage
TransactionsBUILD, SIGN, BROADCAST, COMPUTE_SIGNATURE_HASHTransactions →
Wallets & AddressesCOMPUTE_ADDRESS, GET_BALANCE, GET_DERIVATION_PATHWallets & Addresses →

Chain facts

PropertyValue
BIP-44 coin type3 (m/44'/3'/...)
Smallest unitkoinu (1 DOGE = 100,000,000 koinu)
Payment typesP2PKH only
Signed-message prefix\x19Dogecoin Signed Message:\n
Networksmainnet, 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]

On this page