Blockchain Explorer: https://chainz.cryptoid.info/bta/
https://coinmarketcap.com/currencies/bata/
https://www.coingecko.com/en/coins/bata
https://bitcointalk.org/index.php?topic=2297895.msg23319563#msg23319563
-
Update packages
sudo apt-get update
-
Install required packagages
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libboost-all-dev
-
Install Berkeley DB 4.8
sudo apt-get install software-properties-common sudo add-apt-repository ppa:bitcoin/bitcoin sudo apt-get update sudo apt-get install libdb4.8-dev libdb4.8 -dev
-
Install QT 5
sudo apt-get install libminiupnpc-dev libzmq3-dev sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libqrencode-dev
-
Clone the source:
git clone https://github.com/BTA-BATA/Bataoshi.git
-
Build Bata Core:
Configure and build the headless Bata Core binaries as well as the GUI (if Qt is found).
You can disable the GUI build by passing
--without-gui
to configure../autogen.sh ./configure make
-
It is recommended to build and run the unit tests:
make check
See (doc/build-osx.md) for instructions on building on Mac OS X.
See (doc/build-windows.md) for instructions on building on Windows 64/32 bit.
Multi-algo
Independent algorithm chains
Six Algorithm/s:
Sha256d Scrypt Nist5 Lyra2z x11 x16r
Dynamic Blocks
Based on block height and difficulty ( means no cheap blocks )
Instamine protection
Instamine protection will trigger after 5 blocks of single algo are mined in short period of time.
Deadlock protection
Difficulty is reduced even when no new blocks are found, new blocks are mined much faster even after very high hashrate period. This prevents "stuck chain" issues.
Spork control over block processing
The ability to stop the blockchain anytime by sporks manually if any kind of dangerous activity in network is detected. We have full control of block processing without need to wallet upgrade.
Masternode Collateral : 10,000 BTA Masternode Reward : Dynamic reward of up to 0.25 BTA
Circulating 5,055,187 BTA (25/07/2021)
Max Supply: 10,000,000 BTA
First block 2015-05-08 22:20:38
Each wallet requires separate address.
Pools have to start daemons with parameter "algo=sha256d" (or scrypt, nist5, lyra2z, x11, x16r) in conf file or in command line directly.
Pools can check their settings with RPC command
getmininginfo:
{
"blocks": 1110073,
"currentblockweight": 4000,
"currentblocktx": 0,
"difficulty": 6.964176971960165,
"algo": "lyra2z",
"networkhashps": 94.36438084953204,
"pooledtx": 0,
"chain": "main",
"warnings": ""
}(edited)
Please check if you have this commit applied on yiimp (if using yiimp):
https://github.com/tpruvot/yiimp/commit/9dbce85dcc2137e563e87659f9827aa7e4be3244
GitHub
stratum: dev/charity fees for coins with masternodes (#276) · tpr...