Bitcoin Forum
May 05, 2024, 06:05:10 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2  All
  Print  
Author Topic: ✪ Virtual Coin. an ongoing/repeating scam since 2014? what's going on with the pre-mine??  (Read 2872 times)
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
January 14, 2017, 07:55:29 AM
Last edit: February 11, 2017, 01:58:56 PM by bumbacoin
 #1

TL/DR

virtual coin has a "hidden" premine of 387420489 coins at block 11
it is hidden by deliberate confusing weird arse use of code, lack of block explorer, silence from Dev, and deletion of posts.


temporary blockexplorer with premine adress
http://84.200.210.130:3001/address/VVx2Y6TLchaRAHphTde5ysqv7Y8mLVnuav

2014 thread with unanswered questions on pre-mine
https://bitcointalk.org/index.php?topic=516183.msg5714562#msg5714562
=====


I initially looked at VC a few weeks ago and noticed that there was an inordinate amount of coins at the time vs what was obvious in the code.
seemingly their idea to hide the pre-mine was to make the code very confusing.

at the time, VC had re-released (v13.0.Cool, seemingly just starting again from scratch (using old gensis etc) with no mention of the previous coin supply.
just wipe the chain and start again from zero.

this thread was initially my curiousity at understanding the code, the text below and next few entries discuss that initial purpose.

now i'm thinking there is a dedicated effort to make VC an ongoing scam coin so i thought i may as well post in this thread about it.

not that i have any problem with pre-mines when handled correctly, but over 387 million coins, seems a tad excessive, especially coupled with no transparency and deleting of posts.

current main official VC thread
https://bitcointalk.org/index.php?topic=1756007.0

and twitter sig campaign thread
https://bitcointalk.org/index.php?topic=1775186.0

==== timeline as i've seen it.

. Virtual Coin 9.2.0 was released, a simple reboot of the coin, delete the chain and start from 0 again.
. i built a mac qt and received 500(?) for my efforts
. for some reason the dev sent me 100k and it made me wonder what was going on
i noticed there was something like 137 million coins in existence with zero mention of premine, and a confusing code source (see below for actual code)
. after i pointed all this out in thread, the coin was killed
. re-released again, code was changed making the source even more confusing, the premine was modified, but had problems with connection and killed again
. yet more new threads, re-release and dev deleted my post,
this time there is no source released yet, only a windows qt. assumed so no-one will look at the reward schedule.




below is my original post
=====

can anyone explain how these coins were generated by the source?

seems at least a few of the first hundred blocks were 1.77 million coins.
but i canna see how those coins were generated ?*?*?*?*

here's the src,
https://github.com/vcoin-z/virtualcoin/blob/9.2.0/src/main.cpp#L1324 has been updated a little since then
and here's a fork i made just in case Wink
https://github.com/bumbacoin/virtualcoin/blob/9.2.0/src/main.cpp#L1324

Code:
    int64 nSubsidy = 50; 
    if(nHeight >= 100 && nHeight < 3000) {
        if((nHeight >= 101 && dDiff > 75) || nHeight >= 1000) {
            // 222000/(((x+2600)/9)^2)
            nSubsidy = (222000.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 5;
            if (nSubsidy < 5) nSubsidy = 1;
        } else {
            nSubsidy = (1112.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 5;
            if (nSubsidy < 25) nSubsidy = 1;
        }
    } else {
        nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
        if (nSubsidy > 500) nSubsidy = 5;
        if (nSubsidy < 1) nSubsidy = 1;
            nSubsidy = pow (11.0, 6.0);
    }

here's the blocks for 99 (reward 1771561.00000000) and 101 (reward 1.00000000).

# vc getblockhash 99
00000ddad8db4b6092456cc37cecae44ecb726172590022b592a680a473302c8

# vc getblock 00000ddad8db4b6092456cc37cecae44ecb726172590022b592a680a473302c8
{
    "hash" : "00000ddad8db4b6092456cc37cecae44ecb726172590022b592a680a473302c8",
    "confirmations" : 1990,
    "size" : 187,
    "height" : 99,
    "version" : 2,
    "merkleroot" : "340d2ced8790b696e53353732f23bd5f255b9802f2d4e276c56a4c08cea78757",
    "tx" : [
        "340d2ced8790b696e53353732f23bd5f255b9802f2d4e276c56a4c08cea78757"
    ],
    "time" : 1483987796,
    "nonce" : 40541,
    "bits" : "1e0ffff0",
    "difficulty" : 0.00024414,
    "previousblockhash" : "00000d341a554a2730dcac08ba58b3794c10202aec1a58f88c5fc233574726e0",
    "nextblockhash" : "00000035f3a8e1647c49937f6ad2d61bc0ffa95c894238d808023289d521a48d"
}

# vc getrawtransaction 340d2ced8790b696e53353732f23bd5f255b9802f2d4e276c56a4c08cea78757
01000000010000000000000000000000000000000000000000000000000000000000000000fffff fff0b01630102062f503253482fffffffff010009695e1fa10000232102738260e5f73e252efc54 af9688b56660e84834d3b1754d773d9d2196506117acac00000000

# vc decoderawtransaction 01000000010000000000000000000000000000000000000000000000000000000000000000fffff fff0b01630102062f503253482fffffffff010009695e1fa10000232102738260e5f73e252efc54 af9688b56660e84834d3b1754d773d9d2196506117acac00000000
{
    "txid" : "340d2ced8790b696e53353732f23bd5f255b9802f2d4e276c56a4c08cea78757",
    "version" : 1,
    "locktime" : 0,
    "vin" : [
        {
            "coinbase" : "01630102062f503253482f",
            "sequence" : 4294967295
        }
    ],
    "vout" : [
        {
           "value" : 1771561.00000000,
           "n" : 0,
            "scriptPubKey" : {
                "asm" : "02738260e5f73e252efc54af9688b56660e84834d3b1754d773d9d2196506117ac OP_CHECKSIG",
                "hex" : "2102738260e5f73e252efc54af9688b56660e84834d3b1754d773d9d2196506117acac",
                "reqSigs" : 1,
                "type" : "pubkey",
                "addresses" : [
                    "VUGejSZayTRWLjnEVE5k7rsmtvYEZxq7fs"
                ]
            }
        }
    ]
}


similarly block 100 has a reward of 1771561.00000000 coins. but luckily, the madness stops there and block 101 goes to a 1 coin reward.

# vc getblockhash 101
0000066a8f4c086e7e7f9c50e971629ecdab93612ba2fb1a27dae419ebbd5a3b

# vc getblock 0000066a8f4c086e7e7f9c50e971629ecdab93612ba2fb1a27dae419ebbd5a3b
{
    "hash" : "0000066a8f4c086e7e7f9c50e971629ecdab93612ba2fb1a27dae419ebbd5a3b",
    "confirmations" : 1989,
    "size" : 187,
    "height" : 101,
    "version" : 2,
    "merkleroot" : "c72271ad042f7b89d69cbc44aba3a8bc1dcd9d2c8a410fb4d06a244f5eaa7124",
    "tx" : [
        "c72271ad042f7b89d69cbc44aba3a8bc1dcd9d2c8a410fb4d06a244f5eaa7124"
    ],
    "time" : 1483987960,
    "nonce" : 131745,
    "bits" : "1e0685ec",
    "difficulty" : 0.00059882,
    "previousblockhash" : "00000035f3a8e1647c49937f6ad2d61bc0ffa95c894238d808023289d521a48d",
    "nextblockhash" : "0000008d17d6a4d2f3305f435130d1c3b8e92273a7638d00ea93bd5c52c50e76"
}

# vc getrawtransaction c72271ad042f7b89d69cbc44aba3a8bc1dcd9d2c8a410fb4d06a244f5eaa7124
01000000010000000000000000000000000000000000000000000000000000000000000000fffff fff0b01650102062f503253482fffffffff0100e1f5050000000023210318a65ca888eacfa2ab76 fad7e0509ebac6adb085f2ecc2dfb41c31cd108e8607ac00000000

root@eight:~/.virtualcoin# vc decoderawtransaction 01000000010000000000000000000000000000000000000000000000000000000000000000fffff fff0b01650102062f503253482fffffffff0100e1f5050000000023210318a65ca888eacfa2ab76 fad7e0509ebac6adb085f2ecc2dfb41c31cd108e8607ac00000000
{
    "txid" : "c72271ad042f7b89d69cbc44aba3a8bc1dcd9d2c8a410fb4d06a244f5eaa7124",
    "version" : 1,
    "locktime" : 0,
    "vin" : [
        {
            "coinbase" : "01650102062f503253482f",
            "sequence" : 4294967295
        }
    ],
    "vout" : [
        {
           "value" : 1.00000000,
           "n" : 0,
            "scriptPubKey" : {
                "asm" : "0318a65ca888eacfa2ab76fad7e0509ebac6adb085f2ecc2dfb41c31cd108e8607 OP_CHECKSIG",
                "hex" : "210318a65ca888eacfa2ab76fad7e0509ebac6adb085f2ecc2dfb41c31cd108e8607ac",
                "reqSigs" : 1,
                "type" : "pubkey",
                "addresses" : [
                    "VHvuUh2kHmZyLqas1rpjchtXt6p2DcKqSP"
                ]
            }
        }
    ]
}


.
here's my post on the Virtual Coin thread.
https://bitcointalk.org/index.php?topic=557946.msg17500615#msg17500615

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
1714932310
Hero Member
*
Offline Offline

Posts: 1714932310

View Profile Personal Message (Offline)

Ignore
1714932310
Reply with quote  #2

1714932310
Report to moderator
1714932310
Hero Member
*
Offline Offline

Posts: 1714932310

View Profile Personal Message (Offline)

Ignore
1714932310
Reply with quote  #2

1714932310
Report to moderator
1714932310
Hero Member
*
Offline Offline

Posts: 1714932310

View Profile Personal Message (Offline)

Ignore
1714932310
Reply with quote  #2

1714932310
Report to moderator
"In a nutshell, the network works like a distributed timestamp server, stamping the first transaction to spend a coin. It takes advantage of the nature of information being easy to spread but hard to stifle." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714932310
Hero Member
*
Offline Offline

Posts: 1714932310

View Profile Personal Message (Offline)

Ignore
1714932310
Reply with quote  #2

1714932310
Report to moderator
1714932310
Hero Member
*
Offline Offline

Posts: 1714932310

View Profile Personal Message (Offline)

Ignore
1714932310
Reply with quote  #2

1714932310
Report to moderator
1714932310
Hero Member
*
Offline Offline

Posts: 1714932310

View Profile Personal Message (Offline)

Ignore
1714932310
Reply with quote  #2

1714932310
Report to moderator
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
January 14, 2017, 08:04:02 AM
Last edit: January 14, 2017, 08:29:26 AM by bumbacoin
 #2

    if(nHeight >= 100 && nHeight < 3000) {
        if((nHeight >= 101 && dDiff > 75) || nHeight >= 1000) {
            // 222000/(((x+2600)/9)^2)
            nSubsidy = (222000.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 5;
            if (nSubsidy < 5) nSubsidy = 1;
        } else {
            nSubsidy = (1112.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 5;
            if (nSubsidy < 25) nSubsidy = 1;
        }
    } else {
        nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
        if (nSubsidy > 500) nSubsidy = 5;
        if (nSubsidy < 1) nSubsidy = 1;
           nSubsidy = pow (11.0, 6.0);
   }




haha ok. mystery solved Smiley

            nSubsidy = pow (11.0, 6.0);

is 11^6 = 1771561


well that was far more straight forward than i thought . lol

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
bathrobehero
Legendary
*
Offline Offline

Activity: 2002
Merit: 1051


ICO? Not even once.


View Profile
January 14, 2017, 08:10:57 AM
 #3

Bumbacoin beat me to it. Yes it's 11^6 which is 1,771,561.

Not your keys, not your coins!
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
January 14, 2017, 08:16:10 AM
 #4

Bumbacoin beat me to it. Yes it's 11^6 which is 1,771,561.

lol yes.
i had to go for a walk around the house to let myself see the obvious :p

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 01, 2017, 12:02:21 PM
Last edit: February 03, 2017, 02:33:06 AM by bumbacoin
 #5

for extra lols, here's the new re-jigged Virtual Coin code.
it certainly seems to me that the effort to disguise their pre-mine is highly over done.

https://github.com/vcoin-z/virtualcoin/blob/9.2.0/src/main.cpp#L1326
Code:
int64 static GetBlockValue(int nBits, int VcoinHT, int64 nFees)
{
    double dDiff =
        (double)0x0000ffff / (double)(nBits & 0x00ffffff);

    /* fixed bug caused diff to not be correctly calculated */
    if(VcoinHT > 100 || fTestNet) dDiff = ConvertBitsToDouble(nBits);
 
    int64 VcoinRD = 50;
    if(VcoinHT >= 1 && VcoinHT < 1000) {
        if((VcoinHT >= 101 && dDiff > 75) || VcoinHT >= 1000) {
 
            // 222000/(((x+2600)/9)^2)
<<<<<<< HEAD
//            VcoinRD = (222000.0 / (pow((dDiff+2600.0)/9.0,2.0)));
VcoinRD = dDiff * .4356;
            if (VcoinRD == 25) VcoinRD = (1 + 250.00) - (VcoinHT / 4);
            if (VcoinRD == 5) VcoinRD =  250.00 - (VcoinHT / 4);
        }
else {
VcoinRD = dDiff * .4426;
//            VcoinRD = (1112.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (VcoinRD == 500) VcoinRD = (5 + 250.00) - (VcoinHT / 4);
            if (VcoinRD == 25) VcoinRD =  250.00 - (VcoinHT / 4);
if (VcoinHT > 10 && VcoinHT < 12) VcoinRD = pow (pzx,pzy);
}
     } else {
VcoinRD = dDiff * .4826;
//        VcoinRD = (1111.0 / (pow((dDiff+1.0),2.0)));
//        if (VcoinRD > 500) VcoinRD = 250.00 - (VcoinHT / 4);
//        if (VcoinRD < 1) VcoinRD = 250.00 - (VcoinHT / 4);
//            VcoinRD = 1;
=======
            nSubsidy = (222000.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 5;
            if (nSubsidy < 5) nSubsidy = 1;
        } else {
            nSubsidy = (1112.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 5;
            if (nSubsidy < 25) nSubsidy = 1;
        }
    } else {
        nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
        if (nSubsidy > 500) nSubsidy = 5;
        if (nSubsidy < 1) nSubsidy = 1;
            nSubsidy = pow (11.0, 6.0);
>>>>>>> origin/9.2.0
    }
 
if(VcoinHT >= 1000 && VcoinHT < 6000)
{
<<<<<<< HEAD
VcoinRD = dDiff * .4726;
//                VcoinRD = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
//                if (VcoinRD > 25) VcoinRD = 5; // increase from 25 to 50 per block
//                if (VcoinRD < 5) VcoinRD = 1; // increase from 5 to 10 per block
=======
                nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
                if (nSubsidy > 25) nSubsidy = 5; // increase from 25 to 50 per block
                if (nSubsidy < 5) nSubsidy = 1; // increase from 5 to 10 per block
>>>>>>> origin/9.2.0
}
 
if(VcoinHT >= 6000)
{
<<<<<<< HEAD
                VcoinRD = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
                if (VcoinRD > 25) VcoinRD = dDiff * .4356; // increase from 25 to 50 per block
                if (VcoinRD < 5) VcoinRD = 1; // increase from 5 to 10 per block

=======
                nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
                if (nSubsidy > 25) nSubsidy = 2; // increase from 25 to 50 per block
                if (nSubsidy < 5) nSubsidy = 1; // increase from 5 to 10 per block
>>>>>>> origin/9.2.0
}

// printf("\n \n height %u diff %4.2f reward %i \n \n", Vcoin.HT, dDiff, Vcoin.RD);
                if (dDiff > 100 && VcoinHT <= 1000) VcoinRD = 100; // increase from 5 to 10 per block
                if (dDiff > 100 && VcoinHT > 1000) VcoinRD = 50; // increase from 5 to 10 per block
                if (dDiff < 0.5 && VcoinHT > 15 ) VcoinRD = 1; // increase from 5 to 10 per block
 VcoinRD *= COIN;

    // yearly decline of production by 20% per year, projected 3M coins max by year 20XX.
<<<<<<< HEAD
 //   for(int i = 17520; i <= Vcoin.HT; i += 17520) Vcoin.RD *= 0.80;
=======
 //   for(int i = 17520; i <= nHeight; i += 17520) nSubsidy *= 0.80;
>>>>>>> origin/9.2.0
 

    return VcoinRD + nFees;
}

in particular

         if (VcoinHT > 10 && VcoinHT < 12) VcoinRD = pow (pzx,pzy);
https://github.com/vcoin-z/virtualcoin/blob/9.2.0/src/main.cpp#L1371

with
int pzx = 3;
int pzy = 4*4+2;


possibly
block 11 will have a reward of 3^18= 387420489 ??
confirmed below

they're apparently having connection issues so it's impossible to connect to the network yet to actually look at the block rewards.
but there is a checkpoint for block 13 so i'm guessing it's a big reward Smiley

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 03, 2017, 01:20:24 AM
Last edit: February 03, 2017, 02:52:52 AM by bumbacoin
 #6

i've decided to keep an eye on VC as it seems an effort in scam pre-mine.
mainly cos of the amusing way they "hid" the pre-mine.

just re-released yet again as version 14.0.2
and they have not updated the github source, i assume because i've been looking at the code and pointing out the premine blocks.

so instead will have to settle for downloading the windows qt and trawling the first 20 or so blocks to see what happens.


EDIT. apparently the win qt is 150 megs, seems excessively large
AND can't unzip it as it's password protected.. havent tried installing yet. need a VM :p

https://drive.google.com/uc?export=download&id=0B0du_MpVWXexbl9KYm9WcWtfb0U

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

..
can't unzip,
but the installer generates a ~24 mb qt, and the roaming folder,
i dont have any anti virus installed on teh VM so no idea what else it's doing, but a scan with Trend Micro HouseCall revealed no problems.

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 03, 2017, 02:27:32 AM
Last edit: February 03, 2017, 03:01:46 AM by bumbacoin
 #7

okay, so as expected block 12 contains a large amount of coins.(blocks 11 and 13 both show 0 coins)

"txid" : "7b4d0e0ebe43c0c8e7b2a842bfc803ef84ced6cd67bd9d09309d19eee9e0645c",
"version" : 1,
"locktime" : 0,
"vin" : [
{
"coinbase" : "5c0101062f503253482f",
"sequence" : 4294967295
}
],
"vout" : [
{
"value" : 387420489.00000000,
"n" : 0,
"scriptPubKey" : {
"asm" : "024cfbb1b3529e2b79b1d4aa1d04471f827fb4fafaca19a7159bf6ec11a5c12cd4 OP_CHECKSIG",
"hex" : "21024cfbb1b3529e2b79b1d4aa1d04471f827fb4fafaca19a7159bf6ec11a5c12cd4ac",
"reqSigs" : 1,
"type" : "pubkey",
"addresses" : [
"VVx2Y6TLchaRAHphTde5ysqv7Y8mLVnuav"
]






and a getinfo

{
"version" : 140001,
"protocolversion" : 70029,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 58,
"timeoffset" : 0,
"connections" : 2,
"proxy" : "",
"difficulty" : 6.98429165,
"testnet" : false,
"keypoololdest" : 1486087961,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"mininput" : 0.00001000,
"errors" : ""
}


block 58 gives a reward of 1 VC



{
"txid" : "a6f9f409150fec6b3fbc55d065eddd8724d9aa88a201732a01df7a9641ff60e9",
"version" : 1,
"locktime" : 0,
"vin" : [
{
"coinbase" : "013a02cd01062f503253482f",
"sequence" : 4294967295
}
],
"vout" : [
{
"value" : 1.00000000,
"n" : 0,
"scriptPubKey" : {
"asm" : "0246ba16cfa3782b55129b74d77ddac763eee1503db3f261e4ce10eb36512d4fcd OP_CHECKSIG",
"hex" : "210246ba16cfa3782b55129b74d77ddac763eee1503db3f261e4ce10eb36512d4fcdac",
"reqSigs" : 1,
"type" : "pubkey",
"addresses" : [
"VWjXrxRZSRKGsUYRKmZuLJfGaVdSMjSko5"
]
}
}
]
}



block 57, 1 coin to VVRUBuL9JGudzoG1zCf7CbepMAmzHqRXkp
block 55, 1 coin to VBbkyGZR6TyWZLxgHPMbrck8oChWSURyJG

seems that the code base generates a new address for each block mined perhaps?


NOTE. to see this information you need a full indexed copy of the blockchain,
to do this you need to restart with
txindex=1
in the conf file.

then to get all info's the following commands are used,
getblockhash
getblock
getrawtransaction
decoderawtransaction

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 04, 2017, 01:43:14 AM
 #8

main thread is unlocked
and getting a lot of attention but no block explorer Wink

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

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 04, 2017, 07:03:44 AM
 #9

github source has been updated,
assumedly to current version.

the reward schedule does not seem to have appreciably changed
pre-mine is evident amongst the confusion of the code.

         if (VcoinHT > 10 && VcoinHT < 12) VcoinRD = pow (pzx,pzy);

with
int pzx = 3;
int pzy = 4*4+2;

block 11 will have a reward of 3^18= 387420489

https://github.com/vcoin-z/virtualcoin/blob/9.2.0/src/main.cpp#L1349



.
the reward for block 11 is not clearly included in source,
the obvious way would be a single line with all relevant info,

if (VcoinHT =11) Vcoinr = 387420489

instead 11 is obfuscated, VcoinHT > 10 && VcoinHT < 1
the whole reward schedule is confusing as fuck.

and the use of pow (pzx,pzy)
(which is a relic of age old Virtual Coin source)
i assume pow is used as it is very similar to PoW and is overtly less suspicious than a direct value,
but pzx and pzy are declared seperately
at https://github.com/vcoin-z/virtualcoin/blob/9.2.0/src/main.cpp#L52  and L57

with the added bonus of pzy also not being a simple clear value, but rather 4*4+2


💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 05, 2017, 02:31:59 AM
Last edit: February 05, 2017, 03:29:59 AM by bumbacoin
 #10

I suggest that you do not support or post on VC threads if you have problem with the coin/code. We have enough of your BS posts. Stick to other coins.

Quote from: Bitcoin Forum
A reply of yours, quoted below, was deleted by the starter of a self-moderated topic. There are no rules of self-moderation, so this deletion cannot be appealed. Do not continue posting in this topic if the topic-starter has requested that you leave.

You can create a new topic if you are unsatisfied with this one. If the topic-starter is scamming, post about it in Scam Accusations.

Quote
well here's looking forward to a nice new clean launch Smiley

if the pre-mine is going to be adequately transparent i'll be happy to build a Mac qt.

hi again,
i've created a seperate thread to discuss VC.

unfortunately i've come to the conclusion that VC looks like a scam.
please come and tell me otherwise and i will change it.

thanks

https://bitcointalk.org/index.php?topic=1751957.msg17500726#msg17500726


this is the last time I am telling u get the fuck of my coin. Shiit like u are not welcome here. Go to ur BS Coin.

this is the last time I am telling u get the fuck of my coin. Shiit like u are not welcome here. Go to ur BS Coin.

just post in yr OP about the premine.
i don't care that you have so many coins, i only care you are hiding them.


No one cares ur twitter or BS threads. u seems very desperate. U must have done something that caused ur own coin to tank, did u cheated them & disappear with their BTC.

Stay fucking off our coin. You are not welcome anymore.

Please beware of the scam artist with user id BumbaCoin?
Do not pay him with BTC? cannot be trusted.

Very careful if you are mining it or Bumbacoin ask you to pay upfront.


💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 06, 2017, 03:36:40 AM
 #11

posts are getting deleted.


meanwhile old coin olders are apparently going to get a taste of that 387 million coin premine by perhaps getting a few thousand ..


question guys, did any longer virtual coin supporters from the original fork get their coins on this new fork yet?


1st It's a relaunch, not forked.

2nd,Do you even know how crypto currency works? coins can only be distributed after they mature.

3rd. Coin will be given out based to old users which was clearly stated by Dev
https://bitcointalk.org/index.php?topic=1756007.msg17647085#msg17647085

Original/old VirtualCoin supporters also get coins under this offer: (till Jan 23rd, 2017)
https://bitcointalk.org/index.php?topic=1756007.msg17578695#msg17578695
For every tweet you get 100 VC upto your old balance + 250 VC for signature. (only original VirtualCoin supporters)

4th, All new & older supporters get additional coins under Signature & twitter bounty (up to Feb 3rd, 2017 Launch)

What have you done for VirtualCoin so far? Based on which offer or offers you participated you will get your coins. I am originally supporter for virtual coin since 2014, I will be getting coins based on these offers that I participated.

and of course you still get coins based on mining? even then you still have to wait for your mined coins to mature. This applies to all, even Dev.




although on a positive note,
i didnot notice previously, but with 2000 block maturity, means the pre-mine will not be available for quite some time yet.
(not that the dev has bothered mentioning that, nor admitted the pre-mine exists etc …)

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 06, 2017, 06:49:16 AM
 #12

i've setup a temporary explorer.
it's my first attempt with iquidus so no idea how stable it will be where it is

http://84.200.210.130:3001

and the magic block

http://84.200.210.130:3001/block/000000f6bfddb729aa113e3374da77a969bf64778704027ec1faf9d2ec1dc28b

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
szafa
Hero Member
*****
Offline Offline

Activity: 812
Merit: 500


View Profile
February 06, 2017, 07:23:25 AM
 #13

Premine was no metioned in the relaunch.
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 06, 2017, 07:31:40 AM
 #14

Premine was no metioned in the relaunch.

yes, well in fairness old balances will be matched by rewarding tweets.
so a pre-mine maybe implied or at least useful?

the obvious question is whether 387 million coins is strictly necessary to pay for a bunch of tweets at 100 coins each?



Two offers for existing VirtualCoin users:


1. Offer, here is the reward (one time only).

100 VC per unique tweet regarding VirtualCoin.

Following conditions applies:
PM me your existing balance from 2014-end of 2016 with your OLD VC address for verification.
Max reward will be up to the old balance.
Offer expires 23rd Jan.

2. Offer, update bitcointalk forum signature to Virtual Coin
Example: "Virtual Coin Launch Feb 1st, 2017" (you can be creative)
250 VC
Offer expires 23rd Jan.



💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 06, 2017, 07:36:18 AM
 #15

question guys, did any longer virtual coin supporters from the original fork get their coins on this new fork yet?


1st It's a relaunch, not forked.

2nd,Do you even know how crypto currency works? coins can only be distributed after they mature.

3rd. Coin will be given out based to old users which was clearly stated by Dev
https://bitcointalk.org/index.php?topic=1756007.msg17647085#msg17647085

Original/old VirtualCoin supporters also get coins under this offer: (till Jan 23rd, 2017)
https://bitcointalk.org/index.php?topic=1756007.msg17578695#msg17578695
For every tweet you get 100 VC upto your old balance + 250 VC for signature. (only original VirtualCoin supporters)

4th, All new & older supporters get additional coins under Signature & twitter bounty (up to Feb 3rd, 2017 Launch)

What have you done for VirtualCoin so far? Based on which offer or offers you participated you will get your coins. I am originally supporter for virtual coin since 2014, I will be getting coins based on these offers that I participated.

and of course you still get coins based on mining? even then you still have to wait for your mined coins to mature. This applies to all, even Dev.




Thx for the reply bitcoinrulzz, yeah not sure why I said fork I meant relaunch my bad Smiley.
I did send Vcoinz a pic of my old balance on January 12th so I'm in the first offer below.

Two offers for existing VirtualCoin users:


1. Offer, here is the reward (one time only).

100 VC per unique tweet regarding VirtualCoin.

Following conditions applies:
PM me your existing balance from 2014-end of 2016 with your OLD VC address for verification.
Max reward will be up to the old balance.
Offer expires 23rd Jan.

2. Offer, update bitcointalk forum signature to Virtual Coin
Example: "Virtual Coin Launch Feb 1st, 2017" (you can be creative)
250 VC
Offer expires 23rd Jan.



Question.

When the reach block 2000 all the people that Pm'd there old VC wallet before the 23rd of Jan will get coins on the relaunched version equal to their original balance with no exceptions?



i dont think coinut read the rules properly Sad

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
bitcoinrulzz
Sr. Member
****
Offline Offline

Activity: 360
Merit: 250



View Profile
February 09, 2017, 04:21:41 AM
Last edit: February 09, 2017, 05:07:48 AM by bitcoinrulzz
 #16



We all stand behind our DEV & the team. Go shit in your own BumbaCoin.



G E T       L O S T       S P A M M E R
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 10, 2017, 03:04:46 AM
 #17



We all stand behind our DEV & the team. Go shit in your own BumbaCoin.



G E T       L O S T       S P A M M E R

me thinks the sockpuppets are strong for VC Smiley


here's a post from 2014 asking about the pre-mine,

https://bitcointalk.org/index.php?topic=516183.msg5714562#msg5714562
Quote
SCAM COIN! STAY AWAY.
When people ask about how much premine is on well, then the coin creator deletes the question.
GREAT way to wait for launch without having to answer that question


What do  you have to say to your defense? Or are you going to delete this one too?


Deleted Post
« Sent to: Sw|ft on: Today at 05:15:58 PM »
   Reply with quoteReply with quote Remove this messageDelete
A reply of yours, quoted below, was deleted by the starter of a self-moderated topic. There are no rules of self-moderation, so this deletion cannot be appealed. Do not continue posting in this topic if the topic-starter has requested that you leave.

You can create a new topic if you are unsatisfied with this one. If the topic-starter is scamming, post about it in Scam Accusations.

Quote
No info on premine? Hey come on, tons of people have asked already and you avoid answering.

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
johnnysof
Hero Member
*****
Offline Offline

Activity: 534
Merit: 500


View Profile
February 10, 2017, 12:07:24 PM
 #18

This is really a strange coin looking quite fishy.
Big premine
No known exchanges or plans for them
Dev locked the old thread and the new one is self moderated
I had two posts asking why there is 2nd relaunch and about roadmaps, but with were deleted by the dev,
It looks like the dev allows only positive comments and funnily they come mostly from newbie accounts  Wink
nemgun
Hero Member
*****
Offline Offline

Activity: 882
Merit: 533



View Profile WWW
February 10, 2017, 12:36:50 PM
 #19

I am just amazed by the creativity of the devs who created the hidden premine, and, i am also amazed by Bumbacoin, the way he found this is just, impressive, really a good work.
I aleready saw this coin in the past, it is impressive to see that she is still alive, but Bumba is true, the devs shall explain more about the premine, what is it for, where it is stored.
bumbacoin (OP)
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 10, 2017, 01:00:14 PM
 #20

it certainly seems there's more than a couple of accounts operated by dev/team,

and with much protestation of innocence and good will (still no mention of pre-mine) the new thread is now locked
https://bitcointalk.org/index.php?topic=1756007.msg17799634#msg17799634


.
virtual coin richlist
http://84.200.210.130:3001/richlist

premine address
http://84.200.210.130:3001/address/VVx2Y6TLchaRAHphTde5ysqv7Y8mLVnuav


now the chain is over 2000 blocks, the premine is available to move ...

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
Pages: [1] 2  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!