Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add full support for Condominium #153

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/condominium.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions config/condominium/condominium.compile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
# this file contains all commands to compile and install the daemon

sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev
sudo apt-get install libboost-all-dev
../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
./autogen.sh
./configure
make
make install
56 changes: 56 additions & 0 deletions config/condominium/condominium.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
################################
# basic settings
################################
txindex=1
logtimestamps=1
listen=1
daemon=1
staking=0
gen=0
maxconnections=50
bind=XXX_IPV6_INT_BASE_XXX:XXX_NETWORK_BASE_TAG_XXX::XXX_NUM_XXY:XXX_MNODE_INBOUND_PORT_XXX

#############################
# nodes we want to stick to
#############################
# addnode=seed1.coinseed.org
addnode=217.163.23.73
addnode=104.237.5.123
addnode=46.4.167.136
addnode=95.179.149.136
addnode=185.238.138.15
addnode=193.70.41.93
################################
# masternode specific settings
################################
masternode=1
#### INSERT YOUR MASTERNODE PRIVATEKEY BELOW ####################################################
masternodeprivkey=HERE_GOES_YOUR_MASTERNODE_KEY_FOR_MASTERNODE_XXX_GIT_PROJECT_XXX_XXX_NUM_XXX
#################################################################################################
#
# b.
# 88b Insert your generated masternode privkey here
# 888b.
# 88888b
# 888888b.
# 8888P"
# P" `8.
# `8.
# `8
#################################################################################################

#############################
# optional indices
#############################
addressindex=1
timestampindex=1
spentindex=1

#############################
# JSONRPC
#############################
server=1
rpcuser=XXX_GIT_PROJECT_XXXrpc
rpcpassword=XXX_PASS_XXX
rpcallowip=127.0.0.1
rpcport=555XXX_NUM_XXX
5 changes: 5 additions & 0 deletions config/condominium/condominium.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
CODENAME=condominium
MNODE_DAEMON=${MNODE_DAEMON:-/usr/local/bin/condominiumd}
MNODE_INBOUND_PORT=${MNODE_INBOUND_PORT:-33588}
GIT_URL=https://github.com/condominium/CondominiumCore.git
SCVERSION="tags/1.2.1.0"