Bitcoin Forum
May 21, 2024, 11:54:31 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [BAC] Need help to building Basecoin block explorer and mining pools  (Read 561 times)
basecoin (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10

Basecoin ANN THREAD: http://tinyurl.com/n6kuk36


View Profile WWW
January 16, 2014, 08:08:25 AM
 #1

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

Basecoin ANN THREAD: http://tinyurl.com/n6kuk36
dudu
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
March 09, 2014, 12:34:52 PM
 #2

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!!!
morlun
Full Member
***
Offline Offline

Activity: 162
Merit: 100



View Profile WWW
May 03, 2017, 01:10:59 PM
 #3

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 or here I walk you through on youtube 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
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!