39 euros
Alors que Cointracking est gratuit et parfait haha
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.
function update_wallet() {
filename="/tmp/wallet-$1-$2"
echo -en "\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\rCheck wallet $1 $2 "
if [ "$(age $filename)" -le "${WALLETTIME}" ] ; then
echo -en "\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\rWallet $1 $2 not need update ${PRICETIME} secondes "
else
if [ "$1" == "BTC" ]; then
update_btc $1 $2
fi
if [ "$1" == "NXT" ]; then
update_nxt $1 $2
fi
if [ "$1" == "DASH" ]; then
update_dash $1 $2
fi
...
...
...
...
...
...
...
if [ "$1" == "ETH" ]; then
update_eth $1 $2
fi
if [ "$(age $filename)" -ge "${WALLETTIME}" ] ; then
echo -en "\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\rWallet $1 $2 updated failed "
sleep 4
exit
fi
fi
}
function get_price() {
if [ "$MULTIPLI" != "" ]; then
echo $(echo "$(cat "/tmp/price-$1") * $MULTIPLI" | bc)
else
echo $(cat "/tmp/price-$1")
fi
}
function update_eth() {
filename="/tmp/wallet-$1-$2"
ADDRESSETH=$2
COIN=$(curl -s https://etherscan.io/address/${ADDRESSETH} | grep -A 1 'Balance:' | tail -n 1 | sed -re 's/<[^>]*>//g' | grep -oP '[0-9.]*')
if [ $COIN != "" ]; then
echo $COIN > $filename
touch $filename
fi
}
function get_wallet() {
echo $(cat "/tmp/wallet-$1-$2")
}
ETHADDR=0x454545454545454545454545
update_wallet 'ETH' $ETHADDR
ETH=$(get_wallet ETH $ETHADDR)
PETH=$(get_price ETH-EUR)
EETH=$(echo "${ETH} * ${PETH}" | bc)
if [ "$EETH" != "" ] ; then
TOTAL=$(echo "$EETH + $TOTAL" | bc)
fi
LANG=C printf " |%-15s %'10.2f %-4s %'14.2f€|\n" "Ethereum" $ETH "ETH" $EETH
function update_eth() {
filename="/tmp/wallet-$1-$2"
ADDRESSETH=$2
COIN=$(curl -s https://etherscan.io/address/${ADDRESSETH} | grep -A 1 'Balance:' | tail -n 1 | sed -re 's/<[^>]*>//g' | grep -oP '[0-9.]*')
if [ $COIN != "" ]; then
echo $COIN > $filename
touch $filename
fi
}
function get_wallet() {
echo $(cat "/tmp/wallet-$1-$2")
}
ETHADDR=0x454545454545454545454545
update_wallet 'ETH' $ETHADDR
ETH=$(get_wallet ETH $ETHADDR)
PETH=$(get_price ETH-EUR)
EETH=$(echo "${ETH} * ${PETH}" | bc)
if [ "$EETH" != "" ] ; then
TOTAL=$(echo "$EETH + $TOTAL" | bc)
fi
LANG=C printf " |%-15s %'10.2f %-4s %'14.2f€|\n" "Ethereum" $ETH "ETH" $EETH