pull down to refresh
0 sats \ 0 replies \ @clyde_nakamoto 24 Nov 2022 \ on: Release Bitcoin Core 24.0 · bitcoin/bitcoin bitcoin
https://github.com/bitcoin/bitcoin/releases/tag/v24.0
https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-24.0.md
https://bitcoincore.org/bin/bitcoin-core-24.0/
Bitcoin begginers guide - How to run bitcoin nodes in Windows (a basic approach)
This guide will teach you how to install a bitcoin node (base layer) using mainnet and testnet with two different bitcoin.conf files and data folders.
The mainnet node will run in pruned mode and use only 1.2GB for storing blocks. The old blocks will be deleted.
It was done for Windows, but the concept will work both in Linux and Mac.
-
Download the bitcoin node software and install the software but don't run it.
-
Create the data directory:. Go to Start -> Run (or press WinKey+R) and run this:
%APPDATA%
. Crate a folder named Bitcoin.. Create two folders one named mainnet and the other testnet inside the Bitcoin folder. -
Create bitcoin.conf for mainnet:In the folder %APPDATA%\Bitcoin\mainnet create a bitcoin.conf using a text editor like https://notepad-plus-plus.org/downloads/ it is crucial that the file is a text file. Add the following lines to the file.
# Reduce storage requirements by pruning (deleting) old blocks. This mode is incompatible with -txindex and -rescan. # Warning: Reverting this setting requires re-downloading the entire blockchain. # (default: 0 = disable pruning blocks, >550 = target size in MiB to use for block files) prune=1200
-
Create bitcoin.conf for testnet:In the folder %APPDATA%\Bitcoin\testnet create a bitcoin.conf using a text editor like https://notepad-plus-plus.org/downloads/ it is crucial that the file is a text file. Add the following lines to the file.
# [network] # Network-related settings: chain=test
-
After installing the software, you will should have a desktop icon for the application. If don't go to start menu and create it. Then copy and paste that icon, so you have two on desktop. One for each network:Edit one icon and rename it to bitcoin mainnet and in properties change the target to this
"C:\Program Files (x86)\Bitcoin\bitcoin-qt.exe" -datadir=%APPDATA%\Bitcoin\mainnet -conf=%APPDATA%\Bitcoin\mainnet\bitcoin.conf Or if you get an error of target box not valid: "C:\Program Files\Bitcoin\bitcoin-qt.exe" -datadir=%APPDATA%\Bitcoin\mainnet -conf=%APPDATA%\Bitcoin\mainnet\bitcoin.conf
Edit the other icon and rename it to bitcoin testnet and in properties change the target to this"C:\Program Files (x86)\Bitcoin\bitcoin-qt.exe" -datadir=%APPDATA%\Bitcoin\testnet -conf=%APPDATA%\Bitcoin\testnet\bitcoin.conf Or if you get an error of target box not valid: "C:\Program Files\Bitcoin\bitcoin-qt.exe" -datadir=%APPDATA%\Bitcoin\testnet -conf=%APPDATA%\Bitcoin\testnet\bitcoin.conf
-
You are good to go!! Get bitcoin testnet in provided faucets.
More:
https://bitcointalk.org/index.php?topic=5237763.0 (testnet faucets)
What about now?
Sorry! An error on step 6. This is the correct one:
-
After installing the software, you will should have a desktop icon for the application. If don't go to start menu and create it. Then copy and paste that icon, so you have two on desktop. One for each network:Edit one icon and rename it to bitcoin mainnet and in properties change the target to this
"C:\Program Files (x86)\Bitcoin\bitcoin-qt.exe" -datadir=%APPDATA%\Bitcoin\mainnet -conf=%APPDATA%\Bitcoin\mainnet\bitcoin.conf Or if you get an error of target box not valid: "C:\Program Files\Bitcoin\bitcoin-qt.exe" -datadir=%APPDATA%\Bitcoin\mainnet -conf=%APPDATA%\Bitcoin\mainnet\bitcoin.conf
Edit the other icon and rename it to bitcoin testnet and in properties change the target to this"C:\Program Files (x86)\Bitcoin\bitcoin-qt.exe" -datadir=%APPDATA%\Bitcoin\testnet -conf=%APPDATA%\Bitcoin\testnet\bitcoin.conf Or if you get an error of target box not valid: "C:\Program Files\Bitcoin\bitcoin-qt.exe" -datadir=%APPDATA%\Bitcoin\testnet -conf=%APPDATA%\Bitcoin\testnet\bitcoin.conf
From page 8
• Discussions, proposals, Q&A: https://github.com/orgs/LNP-BP/discussions • Standards: https://github.com/LNP-BP/LNPBPs • RGB working group: https://github.com/RGB-WG • Lightning working group: https://github.com/LNP-WG • Decentralized storage & messaging group: https://github.com/Storm-WG
If you wish to clone all the repos in a github account just use the following bash script
#!/bin/bash if [ -z "$1" ]; then echo "waiting for the following arguments: repo " exit 1 else name=$1 fi cntx="users" #echo $name #echo $cntx username="USERNAME" access_token="TOKEN" list=$( curl -s -u "$username":"$access_token" "https://api.github.com/$cntx/$name/repos?page=1&per_page=100" | grep -e 'clone_url*' | cut -d \" -f 4 ) readarray -t list_arr <<< "$list" for (( i=0 ; i<${#list_arr[@]} ; i++ )) ; do git clone ${list_arr[$i]} done
Create a git access token
To deal with the rate limit
https://docs.github.com/en/rest/overview/resources-in-the-rest-api#rate-limiting
Than edit the fields USERNAME and TOKEN on the script and run it.
How Does The James Webb Space Telescope Work? - Smarter Every Day 262
https://www.youtube.com/watch?v=4P8fKd0IVOs
This is a great video explaining how the Telescope work and why it gets better images.