Bitcoin Forum

Alternate cryptocurrencies => Altcoin Discussion => Topic started by: basecoin on January 16, 2014, 08:08:25 AM



Title: [BAC] Need help to building Basecoin block explorer and mining pools
Post by: basecoin on January 16, 2014, 08:08:25 AM
Can some one setup a block explorer for Basecoin?
As far as I know there is a pool bac.szbpool.com working as basecoin mining pool, but we need more pools.

Can some one help to promote basecoin?

Basecoin Ann Thread is here: https://bitcointalk.org/index.php?topic=289946.0


Title: Re: [BAC] Need help to building Basecoin block explorer and mining pools
Post by: dudu on March 09, 2014, 12:34:52 PM
Can some one setup a block explorer for Basecoin?
As far as I know there is a pool bac.szbpool.com working as basecoin mining pool, but we need more pools.

Can some one help to promote basecoin?

Basecoin Ann Thread is here: https://bitcointalk.org/index.php?topic=289946.0

block stop!!!


Title: Re: [BAC] Need help to building Basecoin block explorer and mining pools
Post by: morlun on May 03, 2017, 01:10:59 PM
I'm guessing by the age of this post and lack of working website there that this was an earlier version of tendermint's basecoin. But yes if you are looking to set up tendermint's basecoin to build ACBIs here is a shell script to do just that. this should get basecoin running.https://github.com/elpinyeknom/basecoin-setup (https://github.com/elpinyeknom/basecoin-setup) or here I walk you through on youtube https://www.youtube.com/watch?v=sm5X2jHEQMM&t=6s (https://www.youtube.com/watch?v=sm5X2jHEQMM&t=6s)

Code:
#!/bin/sh
#One-liner: https://cdn.rawgit.com/elpinyeknom/basecoin-setup/master/setup.sh
#Prints "installing Basecoin and Tendermint"
# https://github.com/elpinyeknom/basecoin-setup/
echo "Removing Prior Configuration"
#removes tendermint configuration
rm -rf ~/.tendermint $GOPATH/src/github.com/tendermint $GOPATH/src/github.com/tendermint/basecoin
echo "Installing Glide"
#Uses curl to get the text of https://glide.sh/get then pipes that text into the shell to be executed
curl https://glide.sh/get | sh
#gets the latest basecoin code
echo "Installing Basecoin"
#changes to the basecoin folder
go get -u github.com/tendermint/basecoin/cmd/basecoin
cd $GOPATH/src/github.com/tendermint/basecoin
#checks out the develop branch of basecoin's git repository
git checkout develop
#uses glide to vendor the dependencies of basecoin
glide install
#2nd method of vendoring basecoin dependencies
make get_vendor_deps
# makes install but not start
make install
#installs basecoin
go install github.com/tendermint/basecoin/cmd/basecoin
echo -e "Installing tendermint"
#gets the latest tendermint code
go get -u github.com/tendermint/tendermint/cmd/tendermint
#changes to tendermint folder
cd $GOPATH/src/github.com/tendermint/cmd/tendermint
#installs tendermint
go install github.com/tendermint/tendermint/cmd/tendermint
#checks out the develop branch of basecoin's git repository
git checkout develop
#uses glide to vendor the dependencies of tendermint
glide install

#executing Basecoin (Always execute basecoin first!)
echo "starting basecoin"
nohup basecoin start&
#executing Tendermint
echo "Initializing Tendermint.  This will place a few files on your machine in path ~/.tendermint: \n genesis.json, \n priv_validator.json"
tendermint init
echo "Running 'tendermint node'"
tendermint node