Bitcoin Forum
May 23, 2024, 11:49:22 AM *
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 40776 times)
Anry666777
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
December 02, 2017, 10:05:47 AM
 #181

why does difficulty increase rapidly? 6 hours ago, with 170GHz, I estimated I would mine 500 coins per day. But now, 170GHz, I mine 250 coins per day although network decreased from 7T to 3T.

DEVV!!!!!

I asked yesterday!

Why diff not changes whith HashRate decrease??!!!
Anry666777
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
December 02, 2017, 10:10:18 AM
 #182

The whole next month will be difficulty 250k  Grin

Yes, this is nonsense
Anry666777
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
December 02, 2017, 10:12:53 AM
Last edit: December 02, 2017, 10:45:11 AM by Anry666777
 #183

Block Explorer: http://202.5.23.130:98/
my wallet:Sg7QevJyvwzMA24iCHoKac5ChjFdoHUbN5

Scammer #2 (your mother must be proud)

If this start to be an epidemic , I will have to run a private Sucre forum somewhere else. This is time consuming.

hI
Why coin dont use dinamic diff?Huh??
Difficulity only rise. Its not right!

re-target to have 150 seconds in between block.

re-target  not working!!!!


   // Define difficulty retarget algorithms
enum DiffMode {
    DIFF_DEFAULT = 0, // Default to invalid 0
    DIFF_BTC     = 1, // Retarget every x blocks (Bitcoin style)
    DIFF_KGW     = 2, // Retarget using Kimoto Gravity Well
    DIFF_DGW     = 3, // Retarget using Dark Gravity Wave v3
};
About wich 150 sec you said?

Turn on DGW - and be @normal coin@ like DASH.....


SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 02, 2017, 11:49:30 AM
 #184

Block Explorer: http://202.5.23.130:98/
my wallet:Sg7QevJyvwzMA24iCHoKac5ChjFdoHUbN5

Scammer #2 (your mother must be proud)

If this start to be an epidemic , I will have to run a private Sucre forum somewhere else. This is time consuming.

hI
Why coin dont use dinamic diff?Huh??
Difficulity only rise. Its not right!

re-target to have 150 seconds in between block.

re-target  not working!!!!


   // Define difficulty retarget algorithms
enum DiffMode {
    DIFF_DEFAULT = 0, // Default to invalid 0
    DIFF_BTC     = 1, // Retarget every x blocks (Bitcoin style)
    DIFF_KGW     = 2, // Retarget using Kimoto Gravity Well
    DIFF_DGW     = 3, // Retarget using Dark Gravity Wave v3
};
About wich 150 sec you said?

Turn on DGW - and be @normal coin@ like DASH.....




This is open source code see for yourself https://github.com/sucremoneda/SucreCore

consensus.nPowTargetTimespan = 24 * 60 * 60; // Sucr: 1 day
consensus.nPowTargetSpacing = 2.5 * 60; // Sucr: 2.5 minutes
consensus.fPowAllowMinDifficultyBlocks = false;

and then go compare with dash souce

Most of the code is identical with some minor difference (e.g. like maturity is 40 blocks instead of 100) nothing about the diff is change.


black91
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
December 02, 2017, 12:35:20 PM
 #185


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

Very useful. Thank you so much
black91
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
December 02, 2017, 12:38:23 PM
 #186


explorer shows price 0.00000042 sat . Is that correct info ? 
winteriscoming91
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
December 02, 2017, 12:55:37 PM
 #187


Hash rate is going down ? what happen

lilaj4de
Sr. Member
****
Offline Offline

Activity: 602
Merit: 250



View Profile
December 02, 2017, 01:06:40 PM
 #188

why does difficulty increase rapidly? 6 hours ago, with 170GHz, I estimated I would mine 500 coins per day. But now, 170GHz, I mine 250 coins per day although network decreased from 7T to 3T.

DEVV!!!!!

I asked yesterday!

Why diff not changes whith HashRate decrease??!!!

So, could Dev answer our questions? Is the difficulty increasing due to the number of miners? Soon the difficulty will be impossible to mine this Coin
black91
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
December 02, 2017, 01:09:43 PM
 #189

why does difficulty increase rapidly? 6 hours ago, with 170GHz, I estimated I would mine 500 coins per day. But now, 170GHz, I mine 250 coins per day although network decreased from 7T to 3T.

DEVV!!!!!

I asked yesterday!

Why diff not changes whith HashRate decrease??!!!

So, could Dev answer our questions? Is the difficulty increasing due to the number of miners? Soon the difficulty will be impossible to mine this Coin


How many sucr can i mine in a day with 10GHz hashrate ?
SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 02, 2017, 01:21:20 PM
 #190

why does difficulty increase rapidly? 6 hours ago, with 170GHz, I estimated I would mine 500 coins per day. But now, 170GHz, I mine 250 coins per day although network decreased from 7T to 3T.

DEVV!!!!!

I asked yesterday!

Why diff not changes whith HashRate decrease??!!!

So, could Dev answer our questions? Is the difficulty increasing due to the number of miners? Soon the difficulty will be impossible to mine this Coin


Yes Hash rate goes up , diff goes up.  Hash rate goes down , diff goes down.

All that to achieve this: consensus.nPowTargetSpacing = 2.5 * 60; // Sucr: 2.5 minutes between block (most coin never get it, but the gold here is to be the closest as possible to 150 seconds between block.

So miners do not cheat the system there is this: consensus.nPowTargetTimespan = 24 * 60 * 60; // Sucr: 1 day

So diff does not go down instantly , so miners would all stop then restarts at very low diff.

And again all diff code is open source and same as dash https://github.com/sucremoneda/SucreCore



black91
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
December 02, 2017, 01:29:21 PM
 #191


dev, do we have a discord group ?
SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 02, 2017, 01:43:44 PM
 #192


dev, do we have a discord group ?

No discord group (I invite people to step up with the social media marketing, group etc) there is no way I can do all this alone. Most successful coins have 30+ full time employers. If you own Sucre coins and you want this to succeed and you have some skills that could benefit this coin then step up. I do not own the Sucre project, this is decentralize and anybody can take part of it.

and for the other question

This would be possible to answer only if hash rate (same amount of miners and rigs running in a day) this is not the case here.

so everyday could be different.

thnhantp
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
December 02, 2017, 01:49:46 PM
 #193

BTC Price  0.00000042  - on website http://202.5.23.130:98/
I want to buy 1000 SUCR
thanks
Anry666777
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
December 02, 2017, 02:11:02 PM
Last edit: December 02, 2017, 02:27:17 PM by Anry666777
 #194


dev, do we have a discord group ?

No discord group (I invite people to step up with the social media marketing, group etc) there is no way I can do all this alone. Most successful coins have 30+ full time employers. If you own Sucre coins and you want this to succeed and you have some skills that could benefit this coin then step up. I do not own the Sucre project, this is decentralize and anybody can take part of it.

and for the other question

This would be possible to answer only if hash rate (same amount of miners and rigs running in a day) this is not the case here.

so everyday could be different.


In your code we see, that adjusts the difficulty every 24 hour and expects blocks every 150 sec.  But you wrote that it adjusts every 150 seconds.
Such system does not give a normal mining with ASICs...
If once a day someone will start NiceHash with 3 Th/s - the difficulity will never go down.


altexchanger2015
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
December 02, 2017, 02:30:40 PM
 #195

charlie-gama
Copper Member
Jr. Member
*
Offline Offline

Activity: 133
Merit: 1

<!public>


View Profile WWW
December 02, 2017, 02:48:14 PM
 #196




https://imgur.com/LYKQeD9


This is a first-hand scam
20 million coins in less than 1 week, in one months they will be worth less than dogecoin ..


Huh Do not crew Huh  Roadmap / Whitepaper / time madurity project !

Scam !

Support & Blockchain services
SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 02, 2017, 02:52:46 PM
 #197


dev, do we have a discord group ?

No discord group (I invite people to step up with the social media marketing, group etc) there is no way I can do all this alone. Most successful coins have 30+ full time employers. If you own Sucre coins and you want this to succeed and you have some skills that could benefit this coin then step up. I do not own the Sucre project, this is decentralize and anybody can take part of it.

and for the other question

This would be possible to answer only if hash rate (same amount of miners and rigs running in a day) this is not the case here.

so everyday could be different.


In your code we see, that adjusts the difficulty every 24 hour and expects blocks every 150 sec.  But you wrote that it adjusts every 150 seconds.
Such system does not give a normal mining with ASICs...
If once a day someone will start NiceHash with 3 Th/s - the difficulity will never go down.




No, the matrix/formula in the code is to generate a block every 150 seconds. (it's a gold to achieve) This as been test for 5+ years now by the DASH team and way more advance than re-targeting every 2016 blocks like Bitcoin. What can I say more then this is the SAME as DASH. You can do a push request on Github to make a change in future version if you are a master in C++ coding.

black91
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
December 02, 2017, 02:58:50 PM
 #198


dev, do we have a discord group ?

No discord group (I invite people to step up with the social media marketing, group etc) there is no way I can do all this alone. Most successful coins have 30+ full time employers. If you own Sucre coins and you want this to succeed and you have some skills that could benefit this coin then step up. I do not own the Sucre project, this is decentralize and anybody can take part of it.

and for the other question

This would be possible to answer only if hash rate (same amount of miners and rigs running in a day) this is not the case here.

so everyday could be different.


Oh!! I see.
SucreDev (OP)
Member
**
Offline Offline

Activity: 353
Merit: 20


View Profile WWW
December 02, 2017, 02:59:16 PM
 #199




https://imgur.com/LYKQeD9


This is a first-hand scam
20 million coins in less than 1 week, in one months they will be worth less than dogecoin ..


Huh Do not crew Huh  Roadmap / Whitepaper / time madurity project !

Scam !
150 years before we get to 19.8 M. we are at 1,987,777. Dash was at 2M+ after 36 hours.

cryptojai
Full Member
***
Offline Offline

Activity: 238
Merit: 101


View Profile
December 02, 2017, 05:56:32 PM
 #200


Confirm i received all coins from first pool. thanks dev .
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!