Bitcoin Forum
May 06, 2024, 06:41:40 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 ... 94 »
  Print  
Author Topic: [ANN][DCN] Deepcoin secure hashing (CPU/GPU) New algo/ No premine/ No IPO/ PoW  (Read 182558 times)
Deepcoinbiz (OP)
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile WWW
June 27, 2014, 02:59:47 AM
Last edit: February 15, 2018, 07:13:35 AM by Deepcoinbiz
 #1



DEEPCoin (DCN) is an intuitive proof of work coin that takes proven technology and software and brings new and exciting functionality to benefit the end-user. Featuring our signature DEEPHash algorithm--comprised of Luffa512, CubeHash512 and Echo512—mining DCN yields a much higher hash rate, several times higher than the previous algorithm at a lower TDP. We are committed to creating a unique coin for people to use and position ourselves with an energy efficient hashing solution that will not readily be picked up by ASIC miners.

  • 3 rounds of hashing (luffa, cubehash, echo)
  • 1 minute block targets
  • Block reward starts at 512 coins a block
  • First subsidy halves after one month subsidy halving gap will then be two more months, after which the gap grows by one month more a time
  • Maximum coins: 99,000,000
  • Hardened Nite's Gravity Well running from start to manage block target and rule out any instamine
  • Lowest possible difficulty raised much higher to 1/2^6 from the very low default Scrypt based limit of 1/2^12
  • Blockchain protected by automated checkpointing
  • Client port 22871 for testnet 32871
  • RPC port 22872 for testnet 32872

Sample CONF File
Code:
rpcuser=user
rpcpassword=pass
rpcallowip=*.*.*.*
rpcthreads=*
port=22871
rpcport=22872
server=1



  • Deepcoin with stealth addresses from Gjhiggins
  • Read this post first
https://bitcointalk.org/index.php?topic=667470.msg17292087#msg17292087


Download the proprietary DEEPCoin Deephash mining software for your operating system by selecting the appropriate link below. You may also browse the miner's source code at your leisure via the DCN GitHub. Feel free to compile your own custom iteration and share it with the DCN community!

SPH SGMINER DEEPHASH

Optimal Launch Parameters

Code:
sgminer -k deepcoin -o stratum+tcp://pool:port -u  -p  -I 13 -g 4 -w 128
Code:
sgminer -k deepcoin -o stratum+tcp://pool:port -u  -p  -w 128 --difficulty-multiplier 256 -g 1 -I 21

  • The first step in any mining operation is to download the wallet. You will need a wallet to generate an address to send the coins you eventually end up mining. You can download the DCN wallet by selecting "Wallet" from the navigation above.
  • Because DCN employs DEEPHash, a modified version of SGMINER is required. You may download the respective version for your OS via the Mining Software link in the topmost navigation.
  • Due to the overwhelming influx of miners from the start, solo mining is not recommended. However, pools are designed to allow miners to work together where you are paid for your shares submitted for the current block. Please choose from the verified pools below.
  • Once you've installed the wallet, downloaded your miner, and selected your pool, you simply need to connect them all together. Each of the pools below feature a "Getting Started" section which will walk you through the process in order to get you up and running.







An exchange is an institution, organization, or association which hosts a market where cryptos, stocks, bonds, options and futures, and commodities are traded. Buyers and sellers come together to trade during specific hours on business days. With respect to cryptos, the markets are open 24/7/365. Exchanges impose rules and regulations on the firms and brokers that are involved with them. If a particular crypto is traded on an exchange, it is referred to as "listed".

  • no exchanges yet
1715020900
Hero Member
*
Offline Offline

Posts: 1715020900

View Profile Personal Message (Offline)

Ignore
1715020900
Reply with quote  #2

1715020900
Report to moderator
1715020900
Hero Member
*
Offline Offline

Posts: 1715020900

View Profile Personal Message (Offline)

Ignore
1715020900
Reply with quote  #2

1715020900
Report to moderator
1715020900
Hero Member
*
Offline Offline

Posts: 1715020900

View Profile Personal Message (Offline)

Ignore
1715020900
Reply with quote  #2

1715020900
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
baigreen
Full Member
***
Offline Offline

Activity: 625
Merit: 100


View Profile
June 27, 2014, 03:04:28 AM
 #2

No  Source CODE
~~~
frankkkkkkk
Hero Member
*****
Offline Offline

Activity: 594
Merit: 500



View Profile
June 27, 2014, 03:08:52 AM
 #3

no more information?
Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
June 27, 2014, 03:11:04 AM
 #4

{
"blocks" : 19,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 0.04741018,
"errors" : "",
"generate" : false,
"genproclimit" : 4,
"hashespersec" : 0,
"networkhashps" : 31220,
"pooledtx" : 0,
"testnet" : false
}
Willisius
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

I'm really quite sane!


View Profile
June 27, 2014, 03:18:51 AM
 #5

Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 512 * COIN;
    int halvingInterval = 43200;
    int halvingGap = 86400; // Num of blocks between 1st and second halving

    while (nHeight > halvingInterval) {
        nSubsidy /= 2;
        halvingInterval += halvingGap;
        halvingGap += 43200; // Next halving height gap is 43,200 blocks more than the last
    }

    return nSubsidy + nFees;
}

Umm...
Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
June 27, 2014, 03:20:03 AM
 #6

Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 512 * COIN;
    int halvingInterval = 43200;
    int halvingGap = 86400; // Num of blocks between 1st and second halving

    while (nHeight > halvingInterval) {
        nSubsidy /= 2;
        halvingInterval += halvingGap;
        halvingGap += 43200; // Next halving height gap is 43,200 blocks more than the last
    }

    return nSubsidy + nFees;
}

Umm...

What is that means?
BTMan
Full Member
***
Offline Offline

Activity: 126
Merit: 100

BTMan


View Profile
June 27, 2014, 03:36:11 AM
 #7

good coin~~

New coin finder

QQ Group:229207518

ANN Monitor System http://ann.ymq123.com  (chrome Or IE7-IE9)
Donation BTC: 1F4zvgxAqpbCktYp8oKeupjY2oL3JWVFa3      QQ Group: 229207518
ANN监控系统创世帖 https://bitcointalk.org/index.php?topic=657764.0
bigc1984
Hero Member
*****
Offline Offline

Activity: 658
Merit: 534


View Profile
June 27, 2014, 04:08:07 AM
 #8

what miner to use?
helloword2013
Sr. Member
****
Offline Offline

Activity: 333
Merit: 250


View Profile
June 27, 2014, 04:09:08 AM
 #9

what miner to use?
aph-sgminer
bigc1984
Hero Member
*****
Offline Offline

Activity: 658
Merit: 534


View Profile
June 27, 2014, 04:10:06 AM
 #10


algo is just qubit?
marada
Sr. Member
****
Offline Offline

Activity: 442
Merit: 250


View Profile
June 27, 2014, 04:18:55 AM
Last edit: September 13, 2014, 06:04:30 AM by marada
 #11

Seems to be working. And what's the surprise! Unlike new trendies not a POS/IPO or POW/POS, just a pure old school POW coin!
Good, let's try it out. Smiley
ropyu1978
Hero Member
*****
Offline Offline

Activity: 1904
Merit: 510


View Profile
June 27, 2014, 04:42:25 AM
 #12


where can download the aph-sgminer
marada
Sr. Member
****
Offline Offline

Activity: 442
Merit: 250


View Profile
June 27, 2014, 05:23:02 AM
 #13


Try sph-sgminer, it is for example here:
https://github.com/lasybear/sph-sgminer_x11mod

algo is qubitcoin.
helloword2013
Sr. Member
****
Offline Offline

Activity: 333
Merit: 250


View Profile
June 27, 2014, 06:00:06 AM
 #14

what miner to use?

Sorry ,it is SPH-sgminer

https://bitcointalk.org/index.php?topic=475795.0

my 290
sgminer -k qubitcoin -o http://192.168.1.104:10086 -u user -p password -I 21


sgminer 4.1.0-103-g00015 - Started: [2013-01-07 12:04:49]
-------------------------------------------------------------------------
(5s):16.62M (avg):16.79Mh/s | A:2361  R:1154  HW:0  WU:62.047/m
ST: 4  SS: 0  NB: 142  LW: 0  GF: 0  RF: 0
Connected to Pool 0 (longpoll) diff 1.19K as user user
Block: 2dfa1956...  Diff:1.19K  Started: [13:58:41]  Best share: 2.56K
-------------------------------------------------------------------------
[P]ool management [G]PU management ettings [D]isplay options [Q]uit
 GPU 0:  59.0C 5155RPM | 5.599M/5.598Mh/s | R:  0.0% HW:0 WU:17.882/m I:2
 GPU 1:  73.0C 5942RPM | 5.599M/5.598Mh/s | R: 68.1% HW:0 WU:28.254/m I:2
 GPU 2:  74.0C 5711RPM | 5.571M/5.598Mh/s | R:  0.0% HW:0 WU:15.911/m I:2
-------------------------------------------------------------------------
[13:55:03] Network diff set to 1.14K
[13:55:03] New block detected on network
[13:55:28] Network diff set to 1.17K
[13:55:28] New block detected on network
[13:56:59] Network diff set to 1.14K
[13:56:59] New block detected on network
[13:57:32] Network diff set to 1.17K
[13:57:32] New block detected on network
[13:57:38] Network diff set to 1.19K
[13:57:38] New block detected on network
[13:58:41] Network diff set to 1.19K
[13:58:41] New block detected on network
HiroS
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile WWW
June 27, 2014, 07:49:04 AM
 #15

Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 512 * COIN;
    int halvingInterval = 43200;
    int halvingGap = 86400; // Num of blocks between 1st and second halving

    while (nHeight > halvingInterval) {
        nSubsidy /= 2;
        halvingInterval += halvingGap;
        halvingGap += 43200; // Next halving height gap is 43,200 blocks more than the last
    }

    return nSubsidy + nFees;
}

Umm...

What is that means?

They told you in the first post Tongue

First subsidy halves at 43,200, subsidy halving gap will then be 86,400, after which the gap grows by 43,200

As this coin is 1 minute a block then 43,200 is basically 1 month so they halve after a month, but then they halve two months later, and then the gap increases by a month a time so the next halving is at three months and then four months later and so on. Interesting inflation model.

Hirocoin - New unique feature just added. We will be the new home for GPU miners when those Scrypt ASICs hit.
bushstar
Hero Member
*****
Offline Offline

Activity: 617
Merit: 531


View Profile
June 27, 2014, 09:25:21 AM
 #16

The subsidy halving in the code above is as the first post says. The 43,200 period is one month as HiroS has noted and the gap between halving grows by one month a time between halvings. The total coin supply will be produced in a relatively short period of five and a half years after which the block times double to increase the number of transaction fees included for miners. This is going to be an interesting one to watch. I was commissioned to do the work for this coin and I have been happy to do so as there is no instamine or premine. I have now handed the coin over but will be available for ongoing support.

I would have expected a bit more fanfare for the launch but I guess the guys were very keen to get the coin up and running first Smiley

Something that has not been mentioned is that the time warp manipulability has been reduced and that the blockchain is protected by automatic checkpointing.

Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
June 27, 2014, 09:29:10 AM
 #17

will you have any give aways?

No premine. What giveaways lol?

Wallet syncs but need more nodes.
IMJim
Legendary
*
Offline Offline

Activity: 1260
Merit: 1000


View Profile
June 27, 2014, 09:31:45 AM
 #18

This is not mineable yet right?
Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
June 27, 2014, 09:34:36 AM
 #19

This is not mineable yet right?

Why? You can mine this with CPU or GPU.

But we need a pool.
IMJim
Legendary
*
Offline Offline

Activity: 1260
Merit: 1000


View Profile
June 27, 2014, 09:36:38 AM
 #20

This is not mineable yet right?

Why? You can mine this with CPU or GPU.

But we need a pool.

Cause I am interested in mining it:-)
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 ... 94 »
  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!