Bitcoin Forum
June 26, 2024, 04:12:17 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 »
  Print  
Author Topic: Sucre (SUCR) X11 based cryptocurrency POW, Masternode, Private and Instant Send  (Read 40781 times)
johnnystar
Newbie
*
Offline Offline

Activity: 26
Merit: 0


View Profile
December 04, 2017, 10:31:55 PM
 #281

can someone give the instructions again with the new wallet for ubuntu 16.04 VPS cold wallet? I tried the one in the earlier replies but was getting multiple errors.

What errors were you getting?

I get error when compile everything during "make"
tperalta82
Full Member
***
Offline Offline

Activity: 174
Merit: 100


View Profile
December 04, 2017, 11:26:23 PM
 #282

Due to many issues with SUCR coin, Multipools.pl will close the pool, if there are any pending payments, please contact us
SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 05, 2017, 12:14:32 AM
 #283

can someone give the instructions again with the new wallet for ubuntu 16.04 VPS cold wallet? I tried the one in the earlier replies but was getting multiple errors.

What errors were you getting?

I get error when compile everything during "make"

Just follow the README.md procedure on https://github.com/sucremoneda/SucreCore

sudo apt -y update && sudo apt -y install build-essential libssl-dev libdb++-dev libboost-all-dev libcrypto++-dev libqrencode-dev libminiupnpc-dev libgmp-dev libgmp3-dev autoconf autogen automake libtool autotools-dev pkg-config bsdmainutils software-properties-common libzmq3-dev libminiupnpc-dev libssl-dev libevent-dev

sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev -y

git clone https://github.com/sucremoneda/SucreCore.git

git clone https://github.com/dashpay/dash.git  # (to fix a bug in secp256k1)

rm -rf ~/SucreCore/src/secp256k1
cp -r ~/dash/src/secp256k1 ~/SucreCore/src/secp256k1

cd SucreCore
find . -name "*.sh" -exec sudo chmod 755 {} \;
./autogen.sh
./configure # or ./configure --without-gui
make

cd src

strip sucrd
strip sucr-cli
strip sucr-tx

cp sucrd /usr/bin
cp sucr-cli /usr/bin
cp sucr-tx /usr/bin

SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 05, 2017, 12:34:14 AM
 #284

I am calling on the 2 block explorers to upgrade SUCR daemon (you are stuck on block 9500)

Explorer - http://202.5.23.130:98

Explorer - http://cdpool.xyz:3002

you will need to --reindex

Then reply or contact me so I can put you back on the main website. (we have to look professional)

Block Explorer is up to date http://pool.penza.me:3001

Adriano2010
Hero Member
*****
Offline Offline

Activity: 1414
Merit: 516


View Profile WWW
December 05, 2017, 12:38:48 AM
 #285

Hi dev. Is there any planned to list this coin on bigger exchanges next month and you plan to get listed masternode on node vps?
SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 05, 2017, 12:50:05 AM
 #286

Add this coin on http://mnrank.com/

Already contacted mnrank Admin to add Sucre to the platform.

BTW. you can all(Sucre coin owners) submit Sucre to any platform you want. In case they ask for Dev submission only then PM me the link or procedure to do so.

This can not be all done by one individual! All Sucre coin owner need to step up here. Everyone here have different skills set. Use them to make this coin skyrocket.

Anybody can take part in this project.

PS. We can not submit yet to coinmarketcap until Sucre trading is > $10,000 USD per day (new requirement)

SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 05, 2017, 01:00:03 AM
 #287

Hi dev. Is there any planned to list this coin on bigger exchanges next month and you plan to get listed masternode on node vps?

Already submit to node-vps.com to add Sucre to the platform.

we are 4 days into this project and doing very good so far, already 2 exchanges now, will do better next month, and the month after that.

BTW. you can all(Sucre coin owners) submit Sucre to any platform you want. In case they ask for Dev submission only then PM me the link or procedure to do so.

This can not be all done by one individual! All Sucre coin owner need to step up here. Everyone here have different skills set. Use them to make this coin skyrocket.

Anybody can take part in this project.

PS. We can not submit yet to coinmarketcap until Sucre trading is > $10,000 USD per day (new requirement)

jr_007
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
December 05, 2017, 02:14:32 AM
 #288


whats the price to get listed on mnrank ?
zhq123456
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
December 05, 2017, 03:14:55 AM
 #289


Took me some time to set up few masternodes. Below is a complete guide how to set them up on Ubuntu VPS and local Windows wallet.

Deploy Ubuntu 16.04 VPS and do the following:

# --------------------------
# 1. Install dependencies
# --------------------------
Code:
sudo apt -y update && sudo apt -y install build-essential libssl-dev libdb++-dev libboost-all-dev libcrypto++-dev libqrencode-dev libminiupnpc-dev libgmp-dev libgmp3-dev autoconf autogen automake libtool autotools-dev pkg-config bsdmainutils software-properties-common libzmq3-dev libminiupnpc-dev libssl-dev libevent-dev

sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev -y

# --------------------------
# 2. Clone repo
# --------------------------
Code:
git clone https://github.com/sucremoneda/SucreCore.git
git clone https://github.com/dashpay/dash.git

To fix the bug remove ~/SucreCore/src/secp256k1:

Code:
rm -rf ~/SucreCore/src/secp256k1

Copy secp256k1 from dash repo

Code:
cp -r ~/dash/src/secp256k1 ~/SucreCore/src/secp256k1

# --------------------------
# 3. Build sucre
# --------------------------

Code:
cd SucreCore
find . -name "*.sh" -exec sudo chmod 755 {} \;
./autogen.sh
./configure
make

# --------------------------
# 4. Run sucrd daemon
# --------------------------
Code:
~/SucreCore/src/sucrd -daemon

# --------------------------
# 5. Stop sucrd daemon
# --------------------------
Code:
~/SucreCore/src/sucr-cli stop

# --------------------------
# 6. Edit config file
# --------------------------
Code:
vi ~/.sucrcore/sucr.conf

Code:
rpcuser=USERNAME
rpcpassword=PASSWORD

addnode=45.76.32.90
addnode=188.166.44.128
addnode=128.199.180.97

# --------------------------
# 7. Start sucrd
# --------------------------

Code:
~/SucreCore/src/sucrd -daemon

# --------------------------
# 8. Check last block synced
# --------------------------
Code:
~/SucreCore/src/sucr-cli getmininginfo

Code:
{
  "blocks": 0,
  "currentblocksize": 0,
  "currentblocktx": 0,
  "difficulty": 0.000244140625,
  "errors": "",
  "genproclimit": 1,
  "networkhashps": 0,
  "pooledtx": 0,
  "testnet": false,
  "chain": "main",
  "generate": false
}

# --------------------------
# 9. Generate private key on VPS
# --------------------------

Code:
~/SucreCore/src/sucr-cli masternode genkey

# MASTERNODE_PRIVATE_KEY will be generated

# --------------------------
# 10. On Windows wallet open the console
# --------------------------

Code:
getaccountaddress MASTERNODE_1

# --------------------------
# 10. Send 1000 SUCR to the address above and wait for 15 confirmations
# --------------------------


# --------------------------
# 11. Update your sucr.conf file on VPS
# --------------------------

Code:
vi ~/.sucrcore/sucr.conf

Code:

rpcuser=USERNAME
rpcpassword=PASSWORD
rpcallowip=127.0.0.1
rpcconnect=127.0.0.1
rpcport=9918
port=9336
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=256
masternode=1
externalip=VPS_IP_ADDRESS
bind=VPS_IP_ADDRESS:9336
masternodeprivkey=MASTERNODE_PRIVATE_KEY

addnode=45.76.32.90
addnode=188.166.44.128
addnode=128.199.180.97




# ------------------------------------------------------------------------------
# 12. Install sentinel
# ------------------------------------------------------------------------------

Code:
sudo apt-get install -y virtualenv

cd
cd .sucrcore
git clone https://github.com/dashpay/sentinel.git
cd sentinel
virtualenv venv
venv/bin/pip install -r requirements.txt



Edit sentinel.conf

Code:
vi ~/.sucrcore/sentinel/sentinel.conf 


PASTE below into sentinel.conf file

Code:
dash_conf=~/.sucrcore/sucr.conf
network=mainnet
db_name=database/sentinel.db
db_driver=sqlite



Stop sucrd

Code:
~/SucreCore/src/sucr-cli stop

Start sucrd

Code:
~/SucreCore/src/sucrd -daemon

If see error: "Error: Cannot obtain a lock on data directory ~/.sucrcore. Sucr Core is probably already running.":

Code:
ps axwuu | grep sucr
sudo kill -9 23511

Code:
~/SucreCore/src/sucr-cli getinfo
~/SucreCore/src/sucr-cli  masternode status


Code:
# {
#   "outpoint": "0000000000000000000000000000000000000000000000000000000000000000-xxxxxx",
#   "service": "[::]:0",
#   "status": "Node just started, not yet activated"
# }

Code:
~/SucreCore/src/sucr-cli mnsync status # UNTIL SYNCS LIKE BELOW


Code:
{
  "AssetID": 999,
  "AssetName": "MASTERNODE_SYNC_FINISHED",
  "AssetStartTime": 1512118746,
  "Attempt": 0,
  "IsBlockchainSynced": true,
  "IsMasternodeListSynced": true,
  "IsWinnersListSynced": true,
  "IsSynced": true,
  "IsFailed": false
}


Run sentinel

Code:

~/.sucrcore/sentinel/venv/bin/python ~/.sucrcore/sentinel/bin/sentinel.py


Set up cronjob

Code:
crontab -e

# PASTE to the file
* * * * * cd ~/.sucrcore/sentinel && ./venv/bin/python bin/sentinel.py >/dev/null 2>&1


# --------------------------
# 13. On Windows Wallet console
# --------------------------

Code:
masternode outputs


Code:
{
  "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1": "1", # MASTERNODE_1
  "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2": "0"  # MASTERNODE_2
}


On Windows edit masternode.conf file:

Code:
#LABEL PUBLICIP:PORT MASTERNODEKEY COLLATERALTX INDEX

MASTERNODE VPS_IP_ADDRESS:14520 MASTERNODE_PRIVATE_KEY TX 1

MASTERNODE01 VPS_1_IP_ADDRESS:9336 MASTERNODE_1_PRIVATE_KEY xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1 1
MASTERNODE02 VPS_1_IP_ADDRESS:9336 MASTERNODE_2_PRIVATE_KEY xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2 0

On Windows wallet console start masternode:
Code:
walletpassphrase "your wallet passphrase" 120
masternode start-alias MASTERNODE_1
masternode start-alias MASTERNODE_2



root@vultr:~/.sucrcore/sentinel# ~/.sucrcore/sentinel/venv/bin/python ~/.sucrcore/sentinel/bin/sentinel.py
[Errno 2] No such file or directory: '~/.sucrcore/sucr.conf'
DashCore must be installed and configured, including JSONRPC access in dash.conf
SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 05, 2017, 03:38:18 AM
 #290


whats the price to get listed on mnrank ?

Don't know yet just send request(3 hours ago) to Admin

lentyna
Full Member
***
Offline Offline

Activity: 280
Merit: 100


View Profile
December 05, 2017, 03:52:57 AM
 #291



root@vultr:~/.sucrcore/sentinel# ~/.sucrcore/sentinel/venv/bin/python ~/.sucrcore/sentinel/bin/sentinel.py
[Errno 2] No such file or directory: '~/.sucrcore/sucr.conf'
DashCore must be installed and configured, including JSONRPC access in dash.conf


It tells you that your sucr.conf file is missing, do you have it?

zhq123456
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
December 05, 2017, 04:14:50 AM
 #292



root@vultr:~/.sucrcore/sentinel# ~/.sucrcore/sentinel/venv/bin/python ~/.sucrcore/sentinel/bin/sentinel.py
[Errno 2] No such file or directory: '~/.sucrcore/sucr.conf'
DashCore must be installed and configured, including JSONRPC access in dash.conf


It tells you that your sucr.conf file is missing, do you have it?



It's not lost, it's in the folder
SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 05, 2017, 04:45:31 AM
 #293


This is the official PDF Guide to Setup a Masternode on the Sucre Network

http://sucremoneda.net/dvbfg/SucreMasternodeBETA.pdf


There is many ways to do this, but to avoid problem I recommended that you follow this one.

Note: this is a BETA release. (might have typos, was tested on Ubuntu 14.04 and work on the first run)


PS. Be aware that with this procedure, you are setting up a Masternode on a remote server, and keeping your 1000 SUCREs on a local Windows PC.


jr_007
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
December 05, 2017, 04:55:52 AM
 #294


1.4 BTC volume on day 1 is not bad. Listing on mnrank will boost the price.
lentyna
Full Member
***
Offline Offline

Activity: 280
Merit: 100


View Profile
December 05, 2017, 05:46:15 AM
 #295



root@vultr:~/.sucrcore/sentinel# ~/.sucrcore/sentinel/venv/bin/python ~/.sucrcore/sentinel/bin/sentinel.py
[Errno 2] No such file or directory: '~/.sucrcore/sucr.conf'
DashCore must be installed and configured, including JSONRPC access in dash.conf


It tells you that your sucr.conf file is missing, do you have it?



It's not lost, it's in the folder

Maybe in the wrong folder? Can you run ls on .sucrcore and paste the output here?

Vababaika
Member
**
Offline Offline

Activity: 140
Merit: 10


View Profile
December 05, 2017, 08:01:24 AM
 #296


This is the official PDF Guide to Setup a Masternode on the Sucre Network

http://sucremoneda.net/dvbfg/SucreMasternodeBETA.pdf


There is many ways to do this, but to avoid problem I recommended that you follow this one.

Note: this is a BETA release. (might have typos, was tested on Ubuntu 14.04 and work on the first run)


PS. Be aware that with this procedure, you are setting up a Masternode on a remote server, and keeping your 1000 SUCREs on a local Windows PC.



Hi, Dev
I am following you manual but after
"cd SucreCore
find . -name "*.sh" -exec sudo chmod 755 {} \;
./autogen.sh
./configure --without-gui"

I type "make" and get errors


Please, tell me what I am doing wrong?
Thank you

fengyun88
Member
**
Offline Offline

Activity: 242
Merit: 10


View Profile
December 05, 2017, 09:08:25 AM
 #297

I am calling on the 2 block explorers to upgrade SUCR daemon (you are stuck on block 9500)

Explorer - http://202.5.23.130:98

Explorer - http://cdpool.xyz:3002

you will need to --reindex

Then reply or contact me so I can put you back on the main website. (we have to look professional)

Block Explorer is up to date http://pool.penza.me:3001


It has been modified and runs normally.
SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 05, 2017, 09:13:49 AM
 #298


This is the official PDF Guide to Setup a Masternode on the Sucre Network

http://sucremoneda.net/dvbfg/SucreMasternodeBETA.pdf


There is many ways to do this, but to avoid problem I recommended that you follow this one.

Note: this is a BETA release. (might have typos, was tested on Ubuntu 14.04 and work on the first run)


PS. Be aware that with this procedure, you are setting up a Masternode on a remote server, and keeping your 1000 SUCREs on a local Windows PC.



Hi, Dev
I am following you manual but after
"cd SucreCore
find . -name "*.sh" -exec sudo chmod 755 {} \;
./autogen.sh
./configure --without-gui"

I type "make" and get errors


Please, tell me what I am doing wrong?
Thank you

What is the version of Ubuntu?

If 14.04 try this line below and restart at procedure at ./autogen.sh

sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev

If that doesn't work, you can install all boost development packages with:

sudo apt-get install libboost-all-dev

SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 05, 2017, 09:22:12 AM
 #299

I am calling on the 2 block explorers to upgrade SUCR daemon (you are stuck on block 9500)

Explorer - http://202.5.23.130:98

Explorer - http://cdpool.xyz:3002

you will need to --reindex

Then reply or contact me so I can put you back on the main website. (we have to look professional)

Block Explorer is up to date http://pool.penza.me:3001


It has been modified and runs normally.

Perfect, Thanks

Vababaika
Member
**
Offline Offline

Activity: 140
Merit: 10


View Profile
December 05, 2017, 09:29:04 AM
 #300


This is the official PDF Guide to Setup a Masternode on the Sucre Network

http://sucremoneda.net/dvbfg/SucreMasternodeBETA.pdf


There is many ways to do this, but to avoid problem I recommended that you follow this one.

Note: this is a BETA release. (might have typos, was tested on Ubuntu 14.04 and work on the first run)


PS. Be aware that with this procedure, you are setting up a Masternode on a remote server, and keeping your 1000 SUCREs on a local Windows PC.



Hi, Dev
I am following you manual but after
"cd SucreCore
find . -name "*.sh" -exec sudo chmod 755 {} \;
./autogen.sh
./configure --without-gui"

I type "make" and get errors


Please, tell me what I am doing wrong?
Thank you

What is the version of Ubuntu?

If 14.04 try this line below and restart at procedure at ./autogen.sh

sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev

If that doesn't work, you can install all boost development packages with:

sudo apt-get install libboost-all-dev


I use Ubuntu 17.10 x64 at Vultr, will try and post result here

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 »
  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!