Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xannythepleb/go-bitcoin
Bitcoin related Go scripts. Mostly just hobby stuff for myself so I can get more familiar with Go.
https://github.com/xannythepleb/go-bitcoin
bitcoin bitcoin-fees bitcoin-price golang
Last synced: 6 days ago
JSON representation
Bitcoin related Go scripts. Mostly just hobby stuff for myself so I can get more familiar with Go.
- Host: GitHub
- URL: https://github.com/xannythepleb/go-bitcoin
- Owner: xannythepleb
- Created: 2023-05-18T00:02:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-25T21:12:08.000Z (over 1 year ago)
- Last Synced: 2024-06-21T19:56:06.945Z (5 months ago)
- Topics: bitcoin, bitcoin-fees, bitcoin-price, golang
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-bitcoin
Bitcoin related Go scripts. Mostly just hobby stuff for myself so I can get more familiar with Go.## Bitcoin Price and Fees
Simple little Go script that displays the current Bitcoin price and recommended transaction fees in the terminal.
Example output:
```
Choose an API to grab the Bitcoin price from:
1. CoinDesk
2. CoinGecko
3. Bitfinex
4. Kraken
5. BinanceOn the 25th of May, 2023 at 10:11pm:
1 BTC = $26,457.29
1 BTC = 1 BTC
The recommended tx fees are:
- Fast: 45 sat/byte
- Half hour: 43 sat/byte
- Hour: 40 sat/byte
- Economy: 28 sat/byte
- Minimum: 14 sat/byte#FreeRoss
```