Bitcoin Forum
May 24, 2024, 12:22:57 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 [68] 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 »
1341  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Earth Dollar (New coin launch) on: September 22, 2015, 09:06:55 AM
are you seriously about your asset Huh

Hardly. It's an art project.

http://davidkam.com/home/


Cheers

Graham
1342  Alternate cryptocurrencies / Altcoin Discussion / Re: Is it true that Vanillacoin uses the BTC code? on: September 22, 2015, 07:56:45 AM

Thanks for that.

Adding “#L34” to the vnl URI nails it for me:

Code:
int EC_KEY_regenerate_key(EC_KEY * eckey, BIGNUM * priv_key)
{
    int ok = 0;
   
    BN_CTX * ctx = 0;
    EC_POINT * pub_key = 0;

    if (eckey == 0)
    {
        return 0;
    }
   
    const EC_GROUP * group = EC_KEY_get0_group(eckey);

    if ((ctx = BN_CTX_new()) == 0)
    {
        goto err;
    }
   
    pub_key = EC_POINT_new(group);

    if (pub_key == 0)
    {
        goto err;
    }

Code:
int EC_KEY_regenerate_key(EC_KEY *eckey, BIGNUM *priv_key)
{
    int ok = 0;
    BN_CTX *ctx = NULL;
    EC_POINT *pub_key = NULL;

    if (!eckey) return 0;

    const EC_GROUP *group = EC_KEY_get0_group(eckey);

    if ((ctx = BN_CTX_new()) == NULL)
        goto err;

    pub_key = EC_POINT_new(group);

    if (pub_key == NULL)
        goto err;

That's a lot more than just a structural similarity.

It’s hard for me to see this as anything other than incontrovertible evidence of the author having a naively self-centred perspective on intellectual property rights, broadly translatable as “what’s yours is mine and what’s mine’s my own”.

More tellingly, it's also hard to reconcile this evident difficulty in critical thinking with any kind of work in the area of cryptography, notorious for its relentlessly stern demands of cognitive sophistication in its proponents.

Stand back a few yards and the picture becomes somewhat clearer. I've not even bothered looking at vnl, being confident that it’s just another variant of the “misunderstood but brilliant maverick outsider, wronged by a complacent community” media narrative and all the posturing is entirely consistent, even the expedient arrogation of others’ work. Given the evidence in the codebase, I'm reassured that my confidence is not misplaced, although I do have to admit that his choice of pseudonym is a bit of a give-away in and of itself.


Cheers

Graham
1343  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HSP] ★★ Horse Power ★★ SCRYPT ★★ Fast PoW ★★ on: September 21, 2015, 04:29:59 PM
@Graham, @notsofast. I now know that I am wrong and you where right. Sorry about the fud remark and thanks for providing thanks proof.

Now everyone, please don't be mad and still have fun mining.

Fair enough, that's a mature response to a critique. People round here are likely to be quite tolerant if all the facts are laid out on the table.

My original post was prefaced “traps for the unwary” and indeed, the incorrect statement about limits and rewards arises not from malice but from inexperience, which is forgiveable.


Cheers

Graham
1344  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HSP] ★★ Horse Power ★★ SCRYPT ★★ Fast PoW ★★ on: September 21, 2015, 03:06:52 PM
@Graham: thank you for your repeated insights and helpful posts, I learn a lot from them!

Thanks for the kind words. Your post is spot on as answer. I'd have left it to do its job had the OP not directly invited me to clarify the issue, an invitation which it would have been churlish of me to decline.

Cheers

Graham
1345  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HSP] ★★ Horse Power ★★ SCRYPT ★★ Fast PoW ★★ on: September 21, 2015, 02:55:32 PM
But about the max supply, I must admit gjhiggins and notsofast had me doubting for a while, so I checked with other devs just to make sure and you know what ? The max money is well... the max money.

@Graham : Wrong. You're just full of fud!

Uh-huh, you checked with “other devs”. And then decided that an insulting tone would be appropriate. Not the best of calls.

Can I recommend that you develop a little more maturity and extend your skillset, then you will more readily avoid making a public spectacle of yourself.

In case your ill-founded and incorrect claim confuses others, I'll make it clear ...

Try inspecting the source code - as a self-styled “dev”, you should at least be capable of reading C++ for meaning ...

 I recursively grepped the code for case-sensitive instances of the character string MAX_MONEY. Results showed two (2) header declarations and three (3) instances of use in the main codebase ...
Code:
$ grep -r -n MAX_MONEY horsepowercoin
horsepowercoin/src/main.h:55:static const int64 MAX_MONEY = 2900000 * COIN;
horsepowercoin/src/main.h:56:inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
horsepowercoin/src/main.cpp:573:        if (txout.nValue > MAX_MONEY)
horsepowercoin/src/main.cpp:636:            return MAX_MONEY;
horsepowercoin/src/main.cpp:641:        nMinFee = MAX_MONEY;
horsepowercoin/src/test/data/tx_valid.json:54:["MAX_MONEY output"],
horsepowercoin/src/test/data/tx_valid.json:58:["MAX_MONEY output + 0 output"],
horsepowercoin/src/test/data/tx_invalid.json:39:["MAX_MONEY + 1 output"],
horsepowercoin/src/test/data/tx_invalid.json:43:["MAX_MONEY output + 1 output"],

I've edited the results into URLs so that you (and everyone else) can easily verify that MAX _MONEY is only used to limit the amount of coins in any single transaction/fee

https://github.com/HorsePowerCoin/HorsePowerCoin/blob/master/src/main.cpp#L573:        if (txout.nValue > MAX_MONEY)
https://github.com/HorsePowerCoin/HorsePowerCoin/blob/master/src/main.cpp#L636:            return MAX_MONEY;
https://github.com/HorsePowerCoin/HorsePowerCoin/blob/master/src/main.cpp#L641:        nMinFee = MAX_MONEY;

These “other devs” of whom you write --- are they perhaps school classmates of yours? The reason I ask is, like yourself, they also appear to be refreshingly uncontaminated by knowledge.


Cheers

Graham
1346  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HSP] ★★ Horse Power ★★ SCRYPT ★★ Fast PoW ★★ on: September 21, 2015, 12:53:28 AM
Traps for the unwary #463

► Premine: 6%

► Blocks 6001+ = 250 Coins

Sadly mistaken on both counts, I fear.

The reward after block 6000 is 400 HSP forever (https://github.com/HorsePowerCoin/HorsePowerCoin/blob/master/src/main.cpp#L1088).
Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 500 * COIN;
    {
        nSubsidy = 174000 * COIN;
    }
    [ ... ]
    else if(nHeight >= 6001) 
    {
        nSubsidy = 400 * COIN;
    }

    return nSubsidy + nFees;
}

174000 described as “6%” premine. Implying an expected total of 174000 * (100 / 6) == 2898840.0

https://github.com/HorsePowerCoin/HorsePowerCoin/blob/master/src/main.h#L55:
Code:
static const int64 MAX_MONEY = 2900000 * COIN;

MAX_MONEY limits the total number of coins allowed in a single transaction/fee NOT the total number of coins. After block 6000, as long as mining continues, the number of coins issued will increase by 400 HSP every 60 seconds.

At that rate of production, the total number of coins issued should reach 100000000 in about five months. Of which 174000 is less than 0.2%.

Cheers

Graham
1347  Alternate cryptocurrencies / Altcoin Discussion / Re: Links to died coins INDICATOR DC ........................... on: September 16, 2015, 11:25:49 AM
Seems like people srs use some random ideas to make the name for the coin

Yes, some of the names are clearly ill-conceived.

e.g.
Quote
“To be perfectly honest, we underestimated the reservations against the fuck word. Most of the major exchanges are US based and we thought people were more open in 2014. We had it all, the initial lol moment, people were digging fuckcoin, but no exchange, no matter how hard we tried, was willing  to add fuckcoin with the FUCK symbol. We even heard of refunded BTC "exchange votes" from the community. This is why there was no update on the fuckcoin wallet.”

For an extensive list, see https://minkiz.co/coin/name/

(self-signed SSL cert, CA cert, DYOR: archive.org)


Cheers

Graham
1348  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SpreadCoin | Decentralize Everything (official thread) on: September 15, 2015, 03:10:37 PM
Verification of full node status

In case y’all ain’t already seen it, last November S.D. Lerner posted Proof of unique blockchain storage, in which he proposes a solution for the issue: “Can a user verify if peers have a distinct copy of the blockchain and that that copy is intact?”


Cheers

Graham
1349  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Vcoin sha256 pow on: September 14, 2015, 03:28:30 PM
it seems to me like a good coin to baghold Smiley

Well, sort of. It's difficult for me to comment either way, 'cos I can’t see the logic of bagholding myself.

Except in one circumstance, accumulating a significant share of the coinage with the intention of then ploughing most of it back into creating some heavyweight promotional programmes, on the principle that 10% of something is better than 100% of nothing.

I have several coins that I’m “curating” (in that other interest has dropped away to nearly zero) and I run a constant low-level injection of energy (value) into the network, thus allowing the economic parameters to mature without being unduly stressed by a casually uninterested exchange market.

Elsewhere, I’ll invest my time rather than my fiat (it’s an injection of value, whichever way you look at it).

tl;dr Generally, you’re likely to get more value out of your investments if you put your wealth to work.


Cheers

Graham
1350  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Tianhe 天河 [TIA] POW ONLY | LYRA2REv2 | No ICO/Premine | Ninja Launched on: September 14, 2015, 02:52:33 PM
At least change main values from Lyrabar, pchMessageStart hex's and too many values are identical with Lyrabar.
    unsigned char pchMessageStart[4] = { 0x4d, 0x4d, 0x4d, 0x4d };

That is for TestNet as you can see

I think you missed the second reference to pchMessageStart - which is mainnet not testnet and it is identical to LyraBar's:

https://bitbucket.org/tianhecoin/tianhe/src/26cbc6da4ce865f787947fff868e355b232d20c8/src/main.cpp?at=master&fileviewer=file-view-default#main.cpp-3350

https://github.com/Lyrabar/Lyrabar/blob/master/src/main.cpp#L3365


and so are the PUBKEY_ADDRESS and SCRIPT_ADDRESS values:


https://bitbucket.org/tianhecoin/tianhe/src/26cbc6da4ce865f787947fff868e355b232d20c8/src/base58.h?at=master&fileviewer=file-view-default#base58.h-275
https://github.com/Lyrabar/Lyrabar/blob/master/src/base58.h#L275

Not good news, I'm afraid.

Cheers

Graham



1351  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Vcoin sha256 pow on: September 14, 2015, 02:22:38 PM
Ish...

I don't know how you find the time to contribute, what with all the altcoins that you're currently controlling and with being in school all day long, too. What brings you here? And what criteria are you using that allow you to produce such an eloquent summary?


Cheers

Graham
1352  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Vcoin sha256 pow on: September 13, 2015, 10:47:36 PM
i did consider it unlikely , but had to check it out anyway  Cheesy

Had a suspicion that was the case, thanks for indulging my curiosity. I'm obliged to you.


Cheers

Graham
1353  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Vcoin sha256 pow on: September 13, 2015, 06:22:37 PM
hi, is this "http://www.vcoinapp.com/" somehowe connected to VCoin?

Nope, no connection.

I'm curious why you thought it might be somehow connected. Did you actually think it was or did you consider it unlikely but thought you'd check anyway?

Cheers

Graham
1354  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SpreadCoin | Decentralize Everything (official thread) on: September 13, 2015, 08:26:14 AM
(*) Spreadcoin repos was created well before Ziftrcoin.

Hmph, irrelevant.

Andrew Miller posted details of the technique back in 2013: https://bitcointalk.org/index.php?topic=309073.0;all


Cheers

Graham
1355  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KARM] Karma / ₭ / X11 on: September 11, 2015, 01:13:31 PM
Way to go east!

Sadly, the network is in a bit of a mess at the moment.

Hiro missed a trick with the hardfork, shoulda changed the pchMessageStart string which was fumbled by the original Karmacoin “dev”. A whole bunch of lacklustre devs have generated alts with that same pchMessageStart string - despite it being documented as supposedly  a unique identifier

Reddcoin: https://github.com/reddcoin-project/reddcoin/blob/master/src/main.cpp#L3618
Code:
unsigned char pchMessageStart[4] = { 0xfb, 0xc0, 0xb6, 0xdb }; // Reddcoin: increase each by adding 2 to bitcoin's value.

(Reddcoin predates Karma, it's Karma dev's error to use the same string.)

Karma - https://github.com/karmateam/karma/blob/master-0.8/src/main.cpp#L3298
Code:
unsigned char pchMessageStart[4] = { 0xfb, 0xc0, 0xb6, 0xdb }; // Karma: increase each by adding 2 to bitcoin's value.

Worldcoin - https://github.com/coinkeeper/2015-06-22_19-19_worldcoin/blob/dev-0.8/src/main.cpp#L3155
Code:
unsigned char pchMessageStart[4] = { 0xfb, 0xc0, 0xb6, 0xdb }; // Worldcoin: increase each by adding 2 to worldcoin's value.

This is why there is an entertainingly wide variety of sub-versions appearing in the block explorer's listing https://chainz.cryptoid.info/karm/#!network

All those 73 “/Satoshi:0.10.2.2/” clients are nothing at all to do with Karma, they're clients for another coin. The “/Satoshi:0.8.6.5/” looks plausible but again, Karma could just be sharing a pchMessageStart and a version string with yet another coin.


/Satoshi:0.10.2.2/
/Satoshi:0.8.6.5/
/Hashtoshi:0.8.6.4/
/Satoshi:0.8.7.5/
/Satoshi:0.8.7.4/
/Satoshi:0.8.6.2/
/Satoshi:0.8.6.1/
Dain 0.0.1
/Satoshi:0.8.5.1/
/Satoshi:0.8.6.2/
/Christiaan Huygens:1.2.0.4/
/DigitalcoinV3.0:3.0.1/
/Reddcoin:1.4.0/


The current state of play --- anything other than a Satoshi 0.8.6.5 subver on protocol version 70006 is almost certainly not a Karma node.

         addr      vers'n       subver  height
5.101.96.124:3362970006/Satoshi:0.8.6.5/835337
5.196.190.82:943270006/Satoshi:0.8.6.5/835321
50.192.83.22:6152170006/Satoshi:0.8.6.5/835404
62.221.89.173:5432170006/Satoshi:0.8.6.5/835332
68.35.218.223:5414170006/Satoshi:0.8.6.5/835327
72.42.100.141:5814670006/Satoshi:0.8.6.5/835339
76.95.178.229:3980870006/Satoshi:0.8.6.5/835326
78.206.12.70:5723470006/Satoshi:0.8.6.5/835322
83.104.61.47:5080570006/Satoshi:0.8.6.5/835419
86.190.17.95:6122970006/Satoshi:0.8.6.5/835394
89.11.228.207:56973*70006/Satoshi:0.8.6.5/835354
99.113.26.253:5700370006/Satoshi:0.8.6.5/835328
104.243.34.106:5018370006/Satoshi:0.8.6.5/835328
125.237.57.154:6425070006/Satoshi:0.8.6.5/835323
148.251.126.241:2490170006/Satoshi:0.8.6.5/835326
188.165.2.147:5154570006/Satoshi:0.8.6.5/835327
188.99.40.239:6242070006/Satoshi:0.8.6.5/835324
204.11.237.233:3766370006/Satoshi:0.8.6.5/835356
204.11.237.233:4958770006/Satoshi:0.8.6.5/835366
67.225.99.248:933370003/Satoshi:0.10.2.2/599527
94.242.250.58:933370002/Satoshi:0.8.5.1/849615
140.116.82.42:933370003/Satoshi:0.10.2.2/849615
104.236.77.94:933370003/Satoshi:0.10.1.3/849616
198.27.67.137:3862775000/WorldcoinFoundation:0.8.6.2/2169061
213.163.74.163:933370003/Satoshi:0.10.2.2/849616
219.113.244.52:933370003/Satoshi:0.10.2.2/849617
212.66.44.43:933370003/Satoshi:0.10.2.2/849618

* = syncnode

Cheers

Graham
1356  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DCN] Deepcoin secure hashing (CPU/GPU) New algo/ No premine/ No IPO/ PoW on: September 11, 2015, 11:40:17 AM
Anyways when clicking on the block explorer link you provide my pc/firefox blocked it as untrusted connection so i guess i'm not gonna click it

I think it's because their SSL certificate not from trusted provider (self-generated cert?)

Spot on.

@balwind, it's up to you ... it is a self-signed SSL cert, CA cert, DYOR: archive.org


Cheers

Graham
1357  Alternate cryptocurrencies / Altcoin Discussion / Re: Links to died coins INDICATOR DC ........................... on: September 09, 2015, 10:08:29 AM
i checked all the list of coinmarketcap

I'm curious. You've collated an overall list of all the coins that have ever been listed on coinmarketcap.com? Did you use your own sources or use the data from the available historical archives, e.g.:

http://web.archive.org/web/20140330073545/http://coinmarketcap.com/

Cheers

Graham
1358  Alternate cryptocurrencies / Altcoin Discussion / Re: The state of crypto - The only serious thread on the subforum on: September 09, 2015, 10:01:34 AM
Mymonero.com ... as easy to use you could hope for
Is it possible that you are underestimating others’ expectations?
This is 100% the wrong approach to it.

Thanks for the response and for confirming my conjecture.

Cheers

Graham
1359  Alternate cryptocurrencies / Altcoin Discussion / Re: Links to died coins INDICATOR DC ........................... on: September 09, 2015, 09:48:55 AM
I want to share  this with you:    
http://cointelegraph.com/news/115160/coinmarketcap-about-40-of-the-coins-ever-added-to-the-site-are-now-inactive
 “About 40% of the coins ever added to the site are now ‘inactive’ due to failing to meet the basic criteria.”
...
There is not currently a list of these coins, but perhaps in the future.

They have 40% of inactive coins

ever added, i.e. 40% of all the coins ever added --- and those coins don’t appear in the current list.

Records of previously-published lists are available courtesy of archive.org.

The figure's nearer 30% by my calculations:  https://bitcointalk.org/index.php?topic=1158855.msg12247177#msg12247177

A coin’s listing on coinmarketcap tells us only that at least one exchange polled by coinmarketcap lists the coin. If a coin has been removed from the coinmarketcap list, it doesn’t mean that has no listing anywhere, only that none of polled exchanges lists the coin. Gliss' list of exchanges is necessarily informal, so must be the described data. Being dropped from coinmarketcap can’t be interpreted to mean “dead” or anything much other than “no longer listed by coinmarketcap.com”.

Although a dynamically-updated list (and recording facility) would be relatively easy to set up, I'm not sure how generally useful it would be. I supposed Minkiz could have a “cap-decap” list, recording arrivals and departures but it would only reflect changes in a single aggregator.

Cheers

Graham
1360  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SpreadCoin | Decentralize Everything (official thread) on: September 09, 2015, 09:16:10 AM
Not trying to nit pick but I just wanted to point out it's actually #44.  Interesting find.

Oooh, nice catch. I checked #34 (finding out what he meant by “home-baked versions”) but I didn’t actually scroll down to #44, assuming it was a more recently-launched coin (I did say I ripped through it), so I totally missed the explicit reference to the Spreadcoin white paper.

Thanks.

Cheers

Graham
Pages: « 1 ... 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 [68] 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!