It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
Protocol Bump to 33933 (All nodes will need to update)
Jupiter IPFS now has PeerID and PubKey Support (If using jupiterlocal=1)
Include Vout TX Hex Data with asm in Transactions
Added Transaction Sizes to RPC
Update to FortunaStakes
Improved FS Status Information
Updated getinfo and other RPC Commands to return more information
Updated other RPC commands for use with Kronos (https://github.com/carsenk/kronos)
Added burn RPC command (Credits to @CircuitBreaker88)
New EUR Balance in QT Overview (Credits to @CircuitBreaker88)
Random updates, fixes, and improvements to Denarius overall
Credits to @buzzkillb for being so kind and hosting our chaindata at https://denarii.cloud
mkdir -p ~/jails/ubuntu
cd ~/jails/ubuntu
wget https://raw.githubusercontent.com/buzzkillb/termux-ubuntu/master/ubuntu16.sh
bash ubuntu16.sh
start-ubuntu.sh
sudo apt-get update -y && sudo apt-get upgrade -y
sudo apt-get install -y git unzip build-essential libssl-dev libdb++-dev libboost-all-dev libqrencode-dev libminiupnpc-dev libgmp-dev libevent-dev autogen automake libtool libcurl4-openssl-dev
git clone https://github.com/carsenk/denarius
cd denarius
cd src
make -f makefile.arm
sudo mv ~/denarius/src/denariusd /usr/local/bin/denariusd
cd ~
mkdir ~/.denarius
cd ~/.denarius
wget https://denarii.cloud/pichaindata.zip
unzip pichaindata.zip
denariusd
tail -f ~/.denarius/debug.log
cd ~
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
Exit Ubuntu terminal and open a new Ubuntu terminal then do this
source ~/.nvm/nvm.sh
source ~/.profile
source ~/.bashrc
nvm install v12
nvm use v12
npm install -g npm
cd ~/kronos
npm install
npm start
ctrl+c
cat ~/.denarius/denarius.conf
cd ~/kronos
nano .env
denariusd stop
cd ~/.denarius
nano denarius.conf
walletnotify=curl http://127.0.0.1:3000/walletnotify -d "txid=%s"
cd ~/kronos
npm start
mkdir -p ~/jails/ubuntu
cd ~/jails/ubuntu
wget https://raw.githubusercontent.com/buzzkillb/termux-ubuntu/master/ubuntu16.sh
bash ubuntu16.sh
start-ubuntu.sh
sudo apt-get update -y && sudo apt-get upgrade -y
sudo apt-get install -y git unzip build-essential libssl-dev libdb++-dev libboost-all-dev libqrencode-dev libminiupnpc-dev libgmp-dev libevent-dev autogen automake libtool libcurl4-openssl-dev
git clone https://github.com/carsenk/denarius
cd denarius
cd src
make -f makefile.arm
sudo mv ~/denarius/src/denariusd /usr/local/bin/denariusd
cd ~
mkdir ~/.denarius
cd ~/.denarius
wget https://denarii.cloud/pichaindata.zip
unzip pichaindata.zip
denariusd
tail -f ~/.denarius/debug.log
cd ~
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
Exit Ubuntu terminal and open a new Ubuntu terminal then do this
source ~/.nvm/nvm.sh
source ~/.profile
source ~/.bashrc
nvm install v12
nvm use v12
npm install -g npm
cd ~/kronos
npm install
npm start
ctrl+c
cat ~/.denarius/denarius.conf
cd ~/kronos
nano .env
denariusd stop
cd ~/.denarius
nano denarius.conf
walletnotify=curl http://127.0.0.1:3000/walletnotify -d "txid=%s"
cd ~/kronos
npm start
import requests
# TODO: Add error handling
staking = requests.get("https://chainz.cryptoid.info/explorer/index.stakes.dws?coin=d").json()
circulating = float(requests.get("https://chainz.cryptoid.info/d/api.dws?q=circulating").text)
staking_sum = sum(map(lambda x: float(x['amount'] or 0), staking['stakes']))
print(staking_sum)
print(circulating)
percent_staking = (staking_sum / circulating) * 100
print(percent_staking)