Bitcoin Forum
May 21, 2024, 11:04:05 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 »  All
  Print  
Author Topic: [ANN] Vcoin sha256 pow  (Read 54978 times)
chrisvl (OP)
Legendary
*
Offline Offline

Activity: 1274
Merit: 1006

Trainman


View Profile WWW
May 14, 2015, 10:29:11 PM
 #41

1000000000 coins ?!!  
Yes

jc12345
Legendary
*
Offline Offline

Activity: 1638
Merit: 1013


View Profile
May 14, 2015, 10:31:58 PM
 #42


What was the block time again?
glen123
Legendary
*
Offline Offline

Activity: 1028
Merit: 1000



View Profile
May 14, 2015, 10:35:52 PM
 #43


Est. Avg. Time per Round (Pool)    16 seconds

;-)
jc12345
Legendary
*
Offline Offline

Activity: 1638
Merit: 1013


View Profile
May 14, 2015, 10:54:20 PM
 #44

Nevermind, it is 30s. That means 2,880 blocks per day = 144,000 coins per day = 52,46m per year. Without halving it will take 20 years to get to the max supply so that seems an irrelevant number.
samspaces
Legendary
*
Offline Offline

Activity: 1453
Merit: 1030


View Profile
May 15, 2015, 12:23:07 AM
 #45

The way it is now, this creation has an auto-destruct in 20 years, since the block chain won't be moving after that. Sure, likely this won't be around in a few weeks or months but still, built in longevity should be part of any coin. You could update the build to include subsidy halving.
jc12345
Legendary
*
Offline Offline

Activity: 1638
Merit: 1013


View Profile
May 15, 2015, 12:45:06 AM
Last edit: May 15, 2015, 01:04:36 AM by jc12345
 #46

The way it is now, this creation has an auto-destruct in 20 years, since the block chain won't be moving after that. Sure, likely this won't be around in a few weeks or months but still, built in longevity should be part of any coin. You could update the build to include subsidy halving.

There seems to be halving

Code:
static const int64 nStartSubsidy = 50 * COIN;
static const int64 nMinSubsidy = 1 * COIN;

int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = nStartSubsidy;

    // Mining phase: Subsidy is cut in half every SubsidyHalvingInterval
    nSubsidy >>= (nHeight / Params().SubsidyHalvingInterval());
    
    // Inflation phase: Subsidy reaches minimum subsidy
    // Network is rewarded for transaction processing with transaction fees and
    // the inflationary subsidy
    if (nSubsidy < nMinSubsidy)
    {
        nSubsidy = nMinSubsidy;
    }

    return nSubsidy + nFees;
}

And it looks like halving every 100,000 blocks, with a minimum of 1 coin in the end.

Code:
CMainParams() {
        // The message start string is designed to be unlikely to occur in normal data.
        pchMessageStart[0] = 0x05;
        pchMessageStart[1] = 0x05;
        pchMessageStart[2] = 0xb5;
        pchMessageStart[3] = 0x05;
        nDefaultPort = 5530;
        nRPCPort = 5531;
        bnProofOfWorkLimit = CBigNum(~uint256(0) >> 20);
        nSubsidyHalvingInterval = 100000;
helloword2013
Sr. Member
****
Offline Offline

Activity: 333
Merit: 250


View Profile
May 15, 2015, 01:04:39 AM
 #47

I have compiled vcoin-qt.exe and run a virscan but says PUA.Win32.Packer.PrivateExeProte-15
http://r.virscan.org/report/9bae2dc0b6b577758a01ec8bd240317a
samspaces
Legendary
*
Offline Offline

Activity: 1453
Merit: 1030


View Profile
May 15, 2015, 01:13:53 AM
 #48

I have compiled vcoin-qt.exe and run a virscan but says PUA.Win32.Packer.PrivateExeProte-15
http://r.virscan.org/report/9bae2dc0b6b577758a01ec8bd240317a

PUA stands for potentially unwanted application, so low priority.

Quote
There seems to be halving
In that case, I haven't said anything.
jc12345
Legendary
*
Offline Offline

Activity: 1638
Merit: 1013


View Profile
May 15, 2015, 01:17:47 AM
 #49

I have compiled vcoin-qt.exe and run a virscan but says PUA.Win32.Packer.PrivateExeProte-15
http://r.virscan.org/report/9bae2dc0b6b577758a01ec8bd240317a

PUA is not virus but a Possible Unwanted Application.  A packer can be used in malicious activity and there is a slight change that it is malicious, but probably not.
chrisvl (OP)
Legendary
*
Offline Offline

Activity: 1274
Merit: 1006

Trainman


View Profile WWW
May 15, 2015, 08:36:44 AM
 #50

Block explorer https://minkiz.co/abe/chain/vcoin

ShoeOnHead
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
May 15, 2015, 09:36:15 AM
 #51

Again! A coin without a reason/purpose/description. Devs aren't even trying anymore! Next!
chrisvl (OP)
Legendary
*
Offline Offline

Activity: 1274
Merit: 1006

Trainman


View Profile WWW
May 15, 2015, 09:52:10 AM
 #52

Source  Updated and fix diffplot. Improve graphics  https://github.com/chris-vl/vcoin

ShoeOnHead
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
May 15, 2015, 10:00:22 AM
 #53

Source  Updated and fix diffplot. Improve graphics  https://github.com/chris-vl/vcoin

Why don't you make a description for this coin?
chrisvl (OP)
Legendary
*
Offline Offline

Activity: 1274
Merit: 1006

Trainman


View Profile WWW
May 15, 2015, 10:05:36 AM
 #54

Source  Updated and fix diffplot. Improve graphics  https://github.com/chris-vl/vcoin

Why don't you make a description for this coin?
Check the first post

ShoeOnHead
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
May 15, 2015, 10:09:40 AM
 #55

Source  Updated and fix diffplot. Improve graphics  https://github.com/chris-vl/vcoin

Why don't you make a description for this coin?
Check the first post

Yeah I did, that's why I'm asking!

I only see blockrewards, pools and where to download the source.

What I'm talking about is a reason why you made this. Why is this coin any different than all the other coins! What is your plan?!

 Why should this coin get any value? Are you even trying?
chrisvl (OP)
Legendary
*
Offline Offline

Activity: 1274
Merit: 1006

Trainman


View Profile WWW
May 15, 2015, 10:13:56 AM
 #56

if you read all posts you will get the answer

ShoeOnHead
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
May 15, 2015, 10:14:18 AM
Last edit: May 15, 2015, 10:31:07 AM by ShoeOnHead
 #57

if you read all posts you will get the answer

Update the OP then!

When the OP is lame, almost nobody will read the rest. Basic communication skills.

Even the logo and layout in the OP are super lame!
glen123
Legendary
*
Offline Offline

Activity: 1028
Merit: 1000



View Profile
May 15, 2015, 10:18:23 AM
 #58

Pool back online in 1h , just added to other Coins Darksend/Tor etc
jc12345
Legendary
*
Offline Offline

Activity: 1638
Merit: 1013


View Profile
May 15, 2015, 10:59:38 AM
 #59

Dev, how about wallet update with masternodes and the rest.  Grin
gjhiggins
Legendary
*
Offline Offline

Activity: 2254
Merit: 1278



View Profile WWW
May 15, 2015, 11:14:18 AM
 #60

Again! A coin without a reason/purpose/description. Devs aren't even trying anymore! Next!

Or ... devs have learned that providing genuine reason and purpose is a pointless exercise as both are invariably hostage to the community's deathgripped irrational self-serving prejudices.

Doesn't matter what the rationale, there's always a population of self-appointed assessors loudly claiming the converse whilst at the same time exploiting every possible opportunity to extract a few more satoshi for their own personal profit.

For me, it's an approach that is at least honest about the reality of altcoin devops and it's immensely preferable to the puffed-up little fiefdoms that some attempt to create (c.f. the new “owners” of Britcoin https://bitcointalk.org/index.php?topic=1061026.0).

It's your personal opinion that altcoins bear more than just a metaphoric relationship to stock trading. It's not shared by everyone and you might want to check just how deep the differences actually run.

A better metaphor is a race card for an unofficial meet. Are you running a similar moral crusade against other forms of online gambling?

Just off've the top of my head, vcoin is uniquely (and serendipitously, let's not overdo it) pushing the altcoin devops envelope in an attempt to raise the standard of decentralisation to meet the criteria recently asserted by FinCEN; in this instance, starting with “no central repository” and (reading between FinCEN lines) “no single developer”.


Cheers

Graham
Pages: « 1 2 [3] 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 »  All
  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!