Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 57 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,57 @@
# .github
# .githubmainunderstand-github-actions.mdThanks — that is a valid Bitcoin Cash CashAddr:

bitcoincash:qq56vquf99r83ylacd83gl4pgx2c0q448yne2ktush

What would you like me to do with it? I can:
- Check the current balance and transaction history (I can show how to check with an explorer or give a direct link).
- Give a donation button / QR code / HTML snippet you can embed.
- Show code examples (JS, curl) to query the address programmatically or convert formats.
- Help integrate it into a website or wallet-monitoring tool.

Below are quick, safe options you can use immediately.

1) Quick explorer links (click or paste into your browser)
- Blockchair: https://blockchair.com/bitcoin-cash/address/qq56vquf99r83ylacd83gl4pgx2c0q448yne2ktush
- Bitcoin.com Explorer: https://explorer.bitcoin.com/bch/address/qq56vquf99r83ylacd83gl4pgx2c0q448yne2ktush
- CoinStats explorer: https://coinstats.app/explorer/bitcoin_cash/qq56vquf99r83ylacd83gl4pgx2c0q448yne2ktush

2) Programmatic (curl) — get dashboard (balance, txs) from Blockchair API
curl example:
curl -s "https://api.blockchair.com/bitcoin-cash/dashboards/address/qq56vquf99r83ylacd83gl4pgx2c0q448yne2ktush" | jq .

3) Convert CashAddr ⇄ legacy with JavaScript (bchaddrjs)
Install:
npm install bchaddrjs

Example:
const bchaddr = require('bchaddrjs');
const cash = 'bitcoincash:qq56vquf99r83ylacd83gl4pgx2c0q448yne2ktush';
console.log('CashAddr:', cash);
console.log('Without prefix:', bchaddr.toCashAddress(cash));
console.log('Legacy:', bchaddr.toLegacyAddress(cash));

4) Simple donation link / button / QR
- URI form (works in wallets): bitcoincash:qq56vquf99r83ylacd83gl4pgx2c0q448yne2ktush
- With amount/label: bitcoincash:qq56vquf99r83ylacd83gl4pgx2c0q448yne2ktush?amount=0.01&label=Donation&message=Thanks

HTML button:
<a href="bitcoincash:qq56vquf99r83ylacd83gl4pgx2c0q448yne2ktush">Donate BCH</a>

QR image (embed):
<img src="https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl=bitcoincash:qq56vquf99r83ylacd83gl4pgx2c0q448yne2ktush" alt="BCH QR">

5) Node/JS fetch balance example (using Blockchair)
const fetch = require('node-fetch');
const addr = 'qq56vquf99r83ylacd83gl4pgx2c0q448yne2ktush';
const url = `https://api.blockchair.com/bitcoin-cash/dashboards/address/${addr}`;
const res = await fetch(url);
const data = await res.json();
// balance (satoshis) at data.data[addr].address.balance
// transactions at data.data[addr].transactions

Security & privacy notes
- The address and its full transaction history are public on the blockchain (anyone can view it).
- Never share private keys or seed phrases.
- Use multiple explorers to verify results if you need reliable auditing.

Tell me which of the above you want (I can fetch the current balance/tx history for you and explain the transactions, or produce an embeddable donation widget/QR/HTML).https://coinstats.app/explorer/bitcoin_cash/qq56vquf99r83ylacd83gl4pgx2c0q448yne2ktush