webwall-show txn status

This commit is contained in:
Dobromir Popov
2025-09-30 01:08:20 +03:00
parent 79b319e4dc
commit 584e2b40c5
3 changed files with 45 additions and 1 deletions

View File

@@ -92,6 +92,8 @@ Check if an address belongs to any loaded wallet.
./find_address.sh rin1qvj0yyt9phvled9kxflju3p687a4s7kareglpk5
```
### dump_wallet.sh
Create a secure backup of all private keys in a wallet.
@@ -144,3 +146,10 @@ You can override these defaults by providing them as the last arguments to any s
- Consider using HTTPS or local connections only
- Update default RPC credentials for production use
- Store scripts securely and avoid hardcoding sensitive information
<!-- get txnL -->
curl -X POST -H "Content-Type: application/json" \
-d '{"jsonrpc": "1.0", "id":"gettx", "method": "gettransaction", "params": ["bcf19926894272e5f6d9a6cceedeac4bff0a2b23c496f660d168ded8fd49a462"]}' \
http://rinrpc:745ce784d5d537fc06105a1b935b7657903cfc71a5fb3b90@127.0.0.1:9556/wallet/main

View File

@@ -10,6 +10,7 @@ if [ $# -lt 1 ]; then
echo " $0 getnewaddress myaccount"
echo " $0 listtransactions \"*\" 10"
echo " $0 gettransaction txid"
exit 1
fi