├── .gitignore ├── LICENSE.md ├── README.md ├── block.py ├── block_store.py ├── block_viewer.py ├── config.py ├── console.py ├── footer.py ├── forks.py ├── getstr.py ├── global_mod.py ├── hotkey.py ├── interface.py ├── main.py ├── monitor.py ├── net.py ├── peers.py ├── process.py ├── rpc.archive.py ├── rpc2.py ├── screenshots ├── bitcoind-ncurses-block.png ├── bitcoind-ncurses-console.png ├── bitcoind-ncurses-forks.png ├── bitcoind-ncurses-monitor.png ├── bitcoind-ncurses-net.png ├── bitcoind-ncurses-peers.png ├── bitcoind-ncurses-splash.png ├── bitcoind-ncurses-tx.png ├── bitcoind-ncurses-wallet.png ├── bitcoind-ncurses.gif └── donation-qr.png ├── splash.py ├── tx.py └── wallet.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/README.md -------------------------------------------------------------------------------- /block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/block.py -------------------------------------------------------------------------------- /block_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/block_store.py -------------------------------------------------------------------------------- /block_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/block_viewer.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/config.py -------------------------------------------------------------------------------- /console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/console.py -------------------------------------------------------------------------------- /footer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/footer.py -------------------------------------------------------------------------------- /forks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/forks.py -------------------------------------------------------------------------------- /getstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/getstr.py -------------------------------------------------------------------------------- /global_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/global_mod.py -------------------------------------------------------------------------------- /hotkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/hotkey.py -------------------------------------------------------------------------------- /interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/interface.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/main.py -------------------------------------------------------------------------------- /monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/monitor.py -------------------------------------------------------------------------------- /net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/net.py -------------------------------------------------------------------------------- /peers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/peers.py -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/process.py -------------------------------------------------------------------------------- /rpc.archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/rpc.archive.py -------------------------------------------------------------------------------- /rpc2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/rpc2.py -------------------------------------------------------------------------------- /screenshots/bitcoind-ncurses-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/screenshots/bitcoind-ncurses-block.png -------------------------------------------------------------------------------- /screenshots/bitcoind-ncurses-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/screenshots/bitcoind-ncurses-console.png -------------------------------------------------------------------------------- /screenshots/bitcoind-ncurses-forks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/screenshots/bitcoind-ncurses-forks.png -------------------------------------------------------------------------------- /screenshots/bitcoind-ncurses-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/screenshots/bitcoind-ncurses-monitor.png -------------------------------------------------------------------------------- /screenshots/bitcoind-ncurses-net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/screenshots/bitcoind-ncurses-net.png -------------------------------------------------------------------------------- /screenshots/bitcoind-ncurses-peers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/screenshots/bitcoind-ncurses-peers.png -------------------------------------------------------------------------------- /screenshots/bitcoind-ncurses-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/screenshots/bitcoind-ncurses-splash.png -------------------------------------------------------------------------------- /screenshots/bitcoind-ncurses-tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/screenshots/bitcoind-ncurses-tx.png -------------------------------------------------------------------------------- /screenshots/bitcoind-ncurses-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/screenshots/bitcoind-ncurses-wallet.png -------------------------------------------------------------------------------- /screenshots/bitcoind-ncurses.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/screenshots/bitcoind-ncurses.gif -------------------------------------------------------------------------------- /screenshots/donation-qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/screenshots/donation-qr.png -------------------------------------------------------------------------------- /splash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/splash.py -------------------------------------------------------------------------------- /tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/tx.py -------------------------------------------------------------------------------- /wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esotericnonsense/bitcoind-ncurses/HEAD/wallet.py --------------------------------------------------------------------------------