# crypto ## transaction time - dogecoin ~1min ## dogecoin mad settle arctic child input summer crumble another need pluck attitude ordinary ### build - install https://www.linuxfromscratch.org/blfs/view/stable/general/boost.html ``` git clone --depth=1 https://github.com/dogecoin/dogecoin.git cd dogecoin mkdir install ./autogen.sh ./configure --with-gui --prefix=$(pwd)/install make -j$(nproc) make install ``` ### run ``` cd install/bin dogecoind -daemon -conf=/home/necktwi/.dogecoin/dogecoin.conf tail -f ~/.dogecoin/debug.log ``` ```dogecoin.conf rpcuser=necktwi rpcpassword=163#TornShoes ``` - progress=0.58 in debug.log implies 58% sync progress - `./dogecoin-cli getaddressesbyaccount ""` lists all wallets - `./dogecoin-cli getbalance` gives total balance of all wallets. - `./dogecoin-cli getnewaddress` creates an another new wallet. - `./dogecoin-cli stop` stops dogecoind cleanly ## cgminer ``` setx GPU_FORCE_64BIT_PTR 0 setx GPU_MAX_HEAP_SIZE 100 setx GPU_USE_SYNC_OBJECTS 1 setx GPU_MAX_ALLOC_PERCENT 100 setx GPU_SINGLE_ALLOC_PERCENT 100 cgminer --scrypt -o stratum+tcp://dogeminingpool.com:3009 -u DKs5E8nWJe2E5vYnVSoYqNjw2T17nGYUDo.1 -p password ``` ## monero ```bash git clone --depth=1 --recurse-submodules -b v0.18.3.4 \ git@github.com:monero-project/monero.git ```