Sending bitcoin means constructing a transaction that consumes your unspent outputs, assigns value to a recipient's address, pays miners a fee in satoshis per virtual byte, and gets confirmed by the network within minutes to an hour under normal conditions. Every step is irreversible once confirmed: no bank, no support team, and no protocol rule can reverse a broadcast transaction.
This guide covers on-chain BTC transfers across all major workflows: non-custodial wallet sends, exchange withdrawals, and deposits to exchanges. If you are sending Bitcoin across borders while abroad, our Bitcoin for travelers guide covers the specific considerations. It does not cover Lightning Network payments (see our dedicated guide), altcoin transfers, or trading strategy. For first-time senders, we prioritize address verification, network selection, and test transactions because those three steps prevent the vast majority of permanent fund loss.
What this guide covers:
Address formats and why they matter before you type a single character
How to receive bitcoin safely (wallet and exchange deposit flows)
How to send bitcoin from a self-custody wallet, step by step
How to withdraw BTC from an exchange, step by step
Fee selection using live mempool data
How to track, prove, and troubleshoot any transfer
Wrong-network sends, stuck transactions, RBF, and CPFP explained
Security checks and scam patterns specific to the sending workflow
What do you need before sending bitcoin for the first time?
Before initiating any transfer, confirm three things: you have a verified receiving address, you have selected the correct network, and your device and wallet are secure. Missing any one of these is the root cause behind most permanent losses.
Required before any send:
A funded wallet or exchange account with enough BTC to cover the send amount plus the network fee
The recipient's exact bitcoin address, obtained directly from the recipient's wallet or exchange deposit page
Network confirmation: both your sending platform and the recipient's receiving platform must specify "Bitcoin" or "BTC," not BEP-20, ERC-20, or any other chain label
For first-time sends or large amounts: a plan to send a small test transaction (0.0001 BTC or similar) before the full amount
What type of wallet are you using?
This guide splits into two main workflows because they operate differently:
Non-custodial wallet (self-custody): You hold the private key. Your wallet signs the transaction directly and broadcasts it to the Bitcoin network. You control fee selection. If you lose your seed phrase, no one can recover your funds.
Custodial exchange (such as BloFin): The exchange holds your BTC on your behalf. When you "withdraw," you are requesting the exchange broadcast a transaction from their wallet to your specified address. Exchange withdrawals involve internal compliance checks and processing time before the transaction reaches the Bitcoin network.
For background on the custody distinction, see our guide on custodial vs. self-custody wallets.
What are the Bitcoin address formats, and which one should you use?
A Bitcoin address is a public identifier derived from a public key. It is safe to share. There are four active address types on the Bitcoin mainnet, and understanding them prevents several common mistakes.
The four address formats:
Format | Prefix | Standard | Notes |
|---|---|---|---|
Legacy P2PKH | 1... | BIP-44 | Oldest format; highest fee per transaction |
P2SH | 3... | BIP-16 | Used for multisig and wrapped SegWit |
Native SegWit (bech32) | bc1q... | BIP-84, BIP-173 | Lower fees; default on most modern wallets |
Taproot (bech32m) | bc1p... | BIP-86, BIP-350 | Newest; privacy improvements, lowest fee potential |
All four formats are valid on the Bitcoin network. Sending from a legacy address to a bech32 address is fine. Sending from a native SegWit address to a P2SH address is fine. The formats are interoperable at the protocol level.
What to check on addresses:
Any address starting with 1, 3, bc1q, or bc1p is a Bitcoin mainnet address
An address starting with anything else is either testnet, a different coin, or malformed
Never manually type addresses: a single character error creates an address nobody controls, and those funds are gone permanently
After pasting an address, verify at least the first four and last four characters match what the recipient confirmed
Address reuse: Technically, you can reuse an address. Each re-use links all those transactions together on the public blockchain, reducing your privacy. Most wallets generate a fresh address for each receive request. Previous addresses remain valid and functional. For why this matters, see our guide on Bitcoin address reuse.
For deeper coverage of public and private keys, see Bitcoin public key vs private key explained.
How do you receive bitcoin? (Wallet and exchange deposit flows)
To receive bitcoin, you share a valid address derived from your wallet with the sender. The sender constructs a transaction assigning value to that address. Once broadcast and confirmed, the output is spendable by whoever holds the corresponding private key.
Receiving to a non-custodial wallet:
Open your wallet application
Tap "Receive" or navigate to the receive screen
Your wallet displays an address and QR code
Copy the address using the wallet's built-in copy button (do not type it manually)
Share the address with the sender via message, or let them scan the QR code
Verify the address on your wallet screen before sharing
Most wallets following BIP-44 or BIP-84 derivation standards generate a fresh address each time you tap "Receive." All previously generated addresses for your wallet remain valid.
Receiving to an exchange (deposit flow):
Log into your exchange account
Navigate to Deposit (typically under Assets or Funds)
Select BTC from the asset list
Confirm the network shows "Bitcoin" or "BTC" not a wrapped token variant
Copy your deposit address using the copy button
Verify the address format (starts with bc1q, bc1p, 3, or 1)
Check the exchange's current minimum deposit requirement before sending
After you send, your deposit appears in the exchange's history as "Awaiting Confirmation." Most exchanges require 2 to 6 confirmations before crediting your balance. One Bitcoin block takes approximately 10 minutes, so 2 confirmations is typically 20 minutes, 6 confirmations roughly 60 minutes.
After receiving: verify independently
Every incoming transaction has a transaction ID (txid). Paste it into a block explorer such as mempool.space or Blockstream.info to confirm the amount, recipient address, and confirmation count independently. You do not need to ask the sender for this; any txid is publicly verifiable.
For details on reading block explorer data, see how to use a Bitcoin block explorer.
What you should never share:
Your seed phrase (12 to 24 words)
Your private key
Your wallet PIN or password
2FA backup codes
Sharing your address is safe. Sharing any of the above items gives full and permanent control of your funds to whoever receives them.
How do you send bitcoin from a self-custody wallet?
Sending from a non-custodial wallet means your wallet constructs a transaction locally, signs it with your private key, and broadcasts it directly to the Bitcoin peer-to-peer network. No intermediary approves or delays the broadcast.
Step-by-step send process
Step 1: Open your wallet and tap "Send" or select the send function
Step 2: Enter the recipient's address by pasting (preferred) or scanning their QR code
Step 3: After pasting, verify the first four and last four characters of the address against what the recipient confirmed
Step 4: Enter the amount in BTC (most wallets allow toggling to local currency equivalent)
Step 5: Select your fee tier:
Economy/Low: Slower confirmation, lower cost; suitable when no urgency
Standard/Normal: Balanced speed and cost for typical transfers
Priority/High: Targets next 1 to 3 blocks; appropriate for time-sensitive payments
Step 6: Review the transaction summary screen:
Recipient address (correct?)
Amount being sent (correct?)
Network fee (acceptable?)
Total deducted from your wallet
Step 7: Authorize the transaction (enter PIN, password, or biometric confirmation)
Step 8: Save or record the transaction ID displayed after broadcast
Clipboard hijacking is a real threat
Malware can silently replace a copied address with an attacker-controlled address. You paste it, it looks correct at a glance, and you send funds to the attacker. Always verify at least the first four and last four characters of the pasted address against what you know is correct. For large sends, verify the full address character by character.
RBF (Replace-By-Fee)
Some wallets offer an RBF toggle at send time. If enabled, you can increase the fee on an unconfirmed transaction later to speed up confirmation. This is governed by BIP-125. Enable RBF if your wallet supports it and you want flexibility. If your transaction stalls, see the troubleshooting section below.
For the full mechanics of how your signed transaction travels through the network, see how a Bitcoin transaction works.
How do you withdraw BTC from an exchange?
An exchange withdrawal is a request to the exchange to broadcast a transaction from their internal wallet to the address you specify. You are not signing the transaction yourself; the exchange does. This means there is an internal processing window before the transaction reaches the Bitcoin network.
Step-by-step withdrawal process
Step 1: Log into your exchange account
Step 2: Navigate to Withdraw (under Assets or Funds)
Step 3: Select BTC as the asset
Step 4: Select "Bitcoin" as the network. Confirm this is not BEP-20 (BSC), ERC-20 (Ethereum), or another chain label.
Step 5: Enter the recipient's bitcoin address:
If address whitelisting is enabled, select the pre-approved address
If entering manually, paste and verify first and last four characters
Step 6: Enter the withdrawal amount
Step 7: Review the summary before confirming:
Network: Bitcoin
Address: as intended
Amount: as intended
Fee: the exchange's current flat withdrawal fee
Step 8: Complete security verification (2FA code, email verification, anti-phishing code if enabled)
Step 9: Submit the withdrawal request
Processing time: Exchanges conduct internal compliance checks before broadcasting to the blockchain. This internal processing typically ranges from 10 to 60 minutes depending on the exchange's policies and your account verification level. A status of "Processing" means the exchange has not yet broadcast the transaction. Once broadcast, you receive a txid and can track confirmation progress independently. For a full walkthrough of the exchange-side flow, see our dedicated Bitcoin withdrawal guide.
Exchanges and services like Blofin process thousands of BTC withdrawals daily; the confirmation requirements, network selection, and address validation that happen under the hood are the operational analogues of what retail users do manually when sending from a wallet.
Whitelisting withdrawal addresses: Many exchanges allow you to pre-approve a list of withdrawal addresses. When enabled, withdrawals can only go to those pre-approved addresses. This is a strong security measure: even if an attacker gains access to your account, they cannot withdraw to an address you have not whitelisted.
Common withdrawal mistakes:
Selecting the wrong network (sending BTC on BNB Chain or Ethereum network instead of Bitcoin)
Sending to a deposit address from another exchange that does not support that network
Sending below the minimum withdrawal amount (funds may be processed but arrive with a shortfall after fee deduction)
How do you choose the right fee without overpaying?
The Bitcoin network fee is paid to miners who validate and include your transaction in a block. The fee is measured in satoshis per virtual byte (sat/vB). One satoshi equals 0.00000001 BTC.
Higher sat/vB rates mean miners prioritize your transaction. Lower rates mean your transaction waits longer or, in rare cases of extreme congestion, may eventually drop from the mempool.
How to read live fee data:
Check mempool.space before any transaction. The site shows:
Current recommended fee rates by priority level (sat/vB)
Mempool depth (how many transactions are queued)
Estimated confirmation time per fee tier
As of May 2026, the Bitcoin network is in a low-congestion period. Fee rates at all priority levels are near the floor (1 sat/vB), meaning even minimum-fee transactions confirm quickly. This is not always the case: during the 2021 congestion peaks, fees exceeded 50 sat/vB and low-fee transactions waited hours or days.
Fee tiers in practice (during normal network conditions):
Fee tier | Typical rate | Expected confirmation |
|---|---|---|
Priority | 3-10 sat/vB | Next 1-3 blocks (10-30 min) |
Standard | 1-3 sat/vB | Within 1-3 hours |
Economy | 1 sat/vB | Same day, often within an hour |
When fees spike: Network congestion can push rates up rapidly. If you send a low-fee transaction during a sudden spike, it may sit unconfirmed for hours. Check the troubleshooting section for RBF and CPFP options.
Who receives the fee: Miners collect transaction fees as part of their block reward. The fee does not go to your wallet provider, the exchange, or the recipient.
For a detailed breakdown of why fees vary and how to plan around congestion, see why are Bitcoin fees so high and how to choose Bitcoin fees.
How do you track a Bitcoin transaction using a txid?
Every broadcast transaction receives a unique transaction ID (txid), a 64-character hexadecimal string. This is your proof of payment and your tracking number.
Where to find your txid:
Non-custodial wallet: shown on the send confirmation screen and in the transaction history
Exchange withdrawal: shown in withdrawal history once the exchange has broadcast the transaction
Using a block explorer:
Copy your txid
Go to mempool.space, Blockstream.info, or Blockchair
Paste the txid into the search bar
Review the output:
Status: Unconfirmed (in mempool) or number of confirmations
Inputs: The sending address(es)
Outputs: The recipient address(es) and amounts
Fee: Network fee paid in satoshis and sat/vB rate
Block height: Which block confirmed it (if confirmed)
Confirmation thresholds by use case:
Small personal transfers: 1 confirmation is typically sufficient
Merchant payments and peer exchanges: 3 to 6 confirmations standard
Exchange deposits: most exchanges require 2 to 6 confirmations before crediting
High-value transfers: some parties require 6+ confirmations
"Unconfirmed" does not mean lost. A transaction in the mempool with an adequate fee will confirm. The question is when, not whether.
Proof of payment: Screenshot the block explorer view showing the txid, recipient address, amount, and confirmation count. Share the txid with the recipient so they can verify independently using their own explorer of choice.
For a complete guide to reading explorer data, check mempool.space's transaction detail view or Blockstream.info.
What happens if you send bitcoin to the wrong network or wrong address?
Wrong-network sends are the single largest recoverable-but-expensive class of user error in Bitcoin transfers.
Wrong-address send (typo or malformed address)
If you send to an address nobody controls, the funds are gone permanently. The Bitcoin protocol has no mechanism to redirect or return them. There is no support ticket that recovers from a confirmed transaction to a garbage address.
If you send to the correct address type but a wrong recipient, recovery depends entirely on whether that recipient cooperates. If they are unknown or unresponsive, the funds are effectively gone.
Wrong-network send (e.g. sending BTC on BNB Chain instead of Bitcoin)
This is the scenario where partial recovery is sometimes possible. From a deposit-processing standpoint, wrong-network sends are the single largest recoverable-but-expensive class of user error. BloFin and peer exchanges all maintain internal procedures to attempt recovery where the destination chain's operators cooperate, but this is best-effort and not guaranteed.
How it works:
If you send BTC on the BEP-20 network to a Binance Smart Chain address, you have sent BTC tokens to an address on a different chain
Recovery is possible only if both you and the recipient have control of the same private key on both chains (which applies to EVM-compatible chains sharing address format), OR if the destination is a centralized exchange with recovery procedures
Centralized exchange recovery typically takes 7 to 30 business days and involves a recovery fee
If the destination is a smart contract address on another chain, funds may be unrecoverable
Prevention is the only reliable strategy
Before sending, verify the network label on your wallet and the recipient's receiving platform both say "Bitcoin" or "BTC"
Verify the address format: Bitcoin mainnet addresses start with 1, 3, bc1q, or bc1p
If in doubt, send a test transaction first
For the dedicated guide on this scenario, see sent bitcoin to the wrong address or network.
What do you do when a transaction is stuck or pending too long?
A transaction stuck at zero confirmations has been broadcast to the network but not yet included in a block. This happens when the fee rate you paid is below what miners are currently prioritizing.
Diagnostic steps:
Find your txid in your wallet's transaction history
Paste the txid into mempool.space
If the transaction appears: check the fee rate shown vs. the current recommended rates. If your rate is below the current minimum, the transaction may be deprioritized.
If the transaction does not appear in the explorer: it may not have been successfully broadcast. Try rebroadcasting from your wallet, or the transaction may have already expired from the mempool.
Two mechanisms to resolve a stuck transaction:
RBF (Replace-By-Fee, BIP-125): If you enabled RBF at send time, your wallet can create a replacement transaction with a higher fee, spending the same inputs. The replacement supersedes the original in miners' views. Check your wallet's "fee bump" or "boost" option. Not all wallets support this; it requires prior RBF opt-in.
CPFP (Child-Pays-For-Parent): If you cannot use RBF (either because the original transaction did not opt in, or because you are the recipient rather than the sender), CPFP is an alternative. The recipient creates a new transaction spending the unconfirmed output and pays a high fee. Miners, wanting to collect that high fee, are incentivized to confirm the parent transaction to make the child transaction valid. This requires that the unconfirmed output be spendable by the recipient.
For a detailed comparison of both methods and worked examples, see our guide on RBF vs. CPFP.
If your deposit has not appeared at an exchange after 6+ confirmations and several hours, contact the exchange with your txid, sending address, receiving address, amount, and timestamp. See also transaction stuck guide and haven't received bitcoin yet.
What are the most common Bitcoin sending mistakes and how do you avoid them?
1. Wrong network selection
Sending bitcoin across the wrong network (for example, using the BNB Chain network to send BTC) results in funds that may be permanently lost or recoverable only with significant effort and cost. This is the most common source of permanent loss for exchange users. Prevention: verify the network label before confirming any send.
2. Clipboard hijacking
Malware replaces the address you copy with an attacker-controlled address. You paste it and it appears to start and end correctly because the attacker generated an address matching your target's first and last characters. Prevention: verify the full address, not just the ends; use QR code scanning when possible.
3. Not sending a test transaction
Sending a large amount to a new address without verifying the workflow first. Prevention: send 0.0001 BTC first, confirm it arrives, then send the full amount.
4. Address poisoning
An attacker sends a tiny amount from an address that closely resembles one you regularly transact with, hoping you copy the attacker address from your transaction history next time you need to send to that contact. Prevention: never copy addresses from your transaction history; always obtain fresh addresses directly from the recipient.
5. Memo/tag field confusion
Bitcoin does not use memo fields, destination tags, or payment IDs. If you see a memo or tag field when sending BTC specifically, leave it blank. (Other cryptocurrencies use memos/tags; this is not a Bitcoin feature.) If an exchange deposit form shows a memo requirement for BTC, verify with the exchange's documentation before proceeding.
6. Sending below minimum deposit
Many exchanges set minimum deposit thresholds. Sending below that amount may result in funds credited at zero or held in a pending state until the balance reaches the minimum. Prevention: check the exchange's current minimum deposit before sending.
How do you keep a Bitcoin send secure against scams?
Bitcoin's irreversibility makes it a target for social engineering attacks. The mechanics of a scam are the same whether it is a fake support agent or a fraudulent investment platform.
Common send-specific scam patterns:
Fake support contact: A person messages you first, claiming to be support for your wallet or exchange. Legitimate support does not initiate contact. Any unsolicited contact asking for your seed phrase, private key, or a transaction is a scam.
Urgency pressure: Any message creating time pressure around sending crypto is a red flag. "Your account will be frozen unless you send BTC now" is not how any legitimate platform operates.
Refund or recovery scams: After a loss, scammers pose as recovery services. No service can recover confirmed Bitcoin transactions sent to an address not under your control.
Clipboard hijacking (technical): Covered in the mistakes section. Relevant here because it requires no human interaction; your only defense is address verification after pasting.
Checklist before confirming any send:
Address verified (first and last four characters confirmed with recipient, or QR scanned)
Network confirmed: says "Bitcoin" or "BTC" on both platforms
Amount correct in both BTC and approximate fiat equivalent
Fee acceptable for your urgency level
Test transaction completed if this is a new address or large amount
No one is pressuring you to send quickly
For a broader view of social engineering in crypto contexts, see our guides on common Bitcoin scams and social engineering scams in crypto.
Frequently Asked Questions
What is a Bitcoin address and where do I find one?
A Bitcoin address is a public identifier, derived from a public key, that anyone can use to send you BTC. It is safe to share. Find yours by opening your wallet app and tapping "Receive," or by going to your exchange's deposit page and selecting BTC on the Bitcoin network. Modern addresses start with bc1q (native SegWit) or bc1p (Taproot); older ones start with 1 (legacy) or 3 (P2SH). All formats work on the Bitcoin mainnet.
Is a Bitcoin transaction reversible?
No. Once a transaction is confirmed in a block, it is final. No protocol-level mechanism, no exchange support ticket, and no legal process can reverse a confirmed bitcoin transaction. The only partial exception is if the destination address happens to be an exchange that offers recovery services for wrong-network deposits, but this is a discretionary service, not a right, and involves fees and multi-week timelines.
How do I confirm I'm sending on the right network?
Check that your wallet or exchange's send screen shows "Bitcoin" or "BTC" as the network, not BEP-20, ERC-20, TRC-20, or any other label. Verify that the recipient's deposit page also specifies Bitcoin. Address format is a secondary check: Bitcoin mainnet addresses start with 1, 3, bc1q, or bc1p. If both platforms show Bitcoin and the address format is correct, you are on the right network.
What is the difference between sending from a wallet and withdrawing from an exchange?
When you send from a self-custody wallet, your private key signs the transaction locally and it broadcasts to the Bitcoin network immediately after you confirm. When you withdraw from an exchange, you request the exchange broadcast a transaction from their custody wallet. The exchange processes your request internally before broadcasting, which adds 10 to 60 minutes. You receive a txid once they broadcast.
How many bitcoin confirmations do I need?
It depends on who requires them. For personal transfers to your own wallet, 1 confirmation is sufficient. For merchant payments, 3 to 6 is standard. Exchanges typically require 2 to 6 confirmations before crediting your balance. Recipients set their own thresholds; ask if unsure. Each confirmation means one more block has been added on top of the one containing your transaction, increasing certainty that the transaction cannot be reversed by a chain reorganization.
How do I choose a fee without overpaying?
Check mempool.space before sending. The site shows current recommended sat/vB rates for fast, standard, and economy confirmation. In low-congestion periods, even minimum fees (1 sat/vB) confirm quickly. During congestion, you need higher rates. Most wallets offer preset tiers with estimated times. If you are not in a hurry, the economy is fine in calm conditions. If you need confirmation within the next two blocks, use the priority rate shown on mempool.space at that moment.
What does "unconfirmed" mean, and is my bitcoin lost?
Unconfirmed means your transaction was broadcast and is waiting in the mempool for a miner to include it in a block. Your funds are not lost; they are in transit. With an adequate fee, confirmation follows. Transactions with very low fees may wait hours or eventually expire from the mempool if they go unconfirmed for an extended period (typically 2 weeks). If the transaction expires, the funds return to your wallet automatically.
What is a test transaction and when should I send one?
A test transaction is a small send (typically 0.0001 BTC) to verify the address and workflow before committing the full amount. Send a test transaction when: sending to a new address for the first time, sending to a new exchange, moving a meaningful sum, or using a new wallet. Confirm the test arrives, check it in a block explorer, then proceed with the full amount.
Can I reuse the same Bitcoin address?
Technically yes, addresses can receive multiple transactions. In practice, reusing addresses reduces your privacy because all transactions to that address are linked publicly on the blockchain. Most wallets generate a new address for each receive request. Older addresses remain valid indefinitely.
My deposit hasn't appeared on the exchange. What should I check?
Check in this order: (1) Did you send on the Bitcoin network, not another chain? (2) Is the transaction confirmed? Paste your txid into mempool.space and check the confirmation count. (3) Has the exchange's required confirmation threshold been met? (4) Did you send above the minimum deposit amount? If all four check out and the exchange still hasn't credited, contact their support with your txid, sending address, receiving address, amount, and timestamp.
What information do I give support if something goes wrong?
Provide: your transaction ID (txid), the sending address, the receiving address, the amount, the date and time of the send, and screenshots showing the transaction in your wallet and in a block explorer. Never share: your seed phrase, private keys, wallet password, 2FA codes, or PIN numbers. Legitimate support never asks for those items.
Bitcoin address and transaction glossary
Address: A public identifier derived from a public key; safe to share with anyone who needs to send you BTC.
Bech32: The address encoding format used by native SegWit (bc1q...) addresses, defined in BIP-173.
Bech32m: The address encoding used by Taproot (bc1p...) addresses, defined in BIP-350.
BIP-125: The Bitcoin Improvement Proposal that defines opt-in Replace-By-Fee (RBF), allowing a sender to replace an unconfirmed transaction with a higher-fee version.
Block explorer: A web tool that searches the Bitcoin blockchain by txid, address, or block hash. Examples: mempool.space, Blockstream.info, Blockchair.
CPFP (Child-Pays-For-Parent): A fee-bumping technique where a recipient spends an unconfirmed incoming output in a new transaction paying a high fee, incentivizing miners to confirm both transactions.
Confirmation: One block added to the chain on top of the block containing your transaction. More confirmations mean greater finality.
Mempool: The waiting area for broadcast transactions not yet confirmed in a block. Each network node maintains its own mempool. High mempool depth correlates with higher fee requirements.
Network fee / Miner fee: Satoshis paid to the miner who includes your transaction in a block. Measured in sat/vB.
QR code: A scannable image encoding your Bitcoin address. Using QR codes eliminates manual-entry errors.
RBF (Replace-By-Fee): A mechanism that allows replacing an unconfirmed transaction with a higher-fee version. Requires opt-in at broadcast time (BIP-125).
Satoshi (sat): The smallest unit of bitcoin: 0.00000001 BTC, or one hundred-millionth of a bitcoin.
Sat/vB (satoshis per virtual byte): The fee rate unit. A typical native SegWit transaction is 140-200 vB; multiply by sat/vB to get total fee in satoshis.
Seed phrase: 12 to 24 words that encode your wallet's master private key. Never share this with anyone. Whoever holds the seed phrase controls all funds in the wallet.
TxID (transaction ID): A 64-character hexadecimal string uniquely identifying a broadcast transaction. Use it to track status in any block explorer.
UTXO (unspent transaction output): The discrete spendable unit in Bitcoin accounting. Your wallet balance is the sum of all UTXOs your keys can spend.
For a full Bitcoin terminology reference, see our Bitcoin glossary. Freelancers who regularly send and receive BTC as payment may also want to review Bitcoin for freelancers for invoicing and tax considerations specific to that workflow.
Researched and written by the BloFin Academy editorial team with AI-assisted drafting. All facts independently verified.
Disclaimer: This content is for educational purposes only and does not constitute financial, investment, legal, or tax advice. Crypto assets are highly volatile and carry significant risk of loss. Always verify local regulations and consult a qualified professional before making financial decisions.
