Pages:
Author

Topic: ✪✪✪ VIRTUAL COIN ✪✪✪ | P2P VIRTUAL MONEY | VC | X11 | ReLaunch: Date Feb 2017 ✪✪ - page 2. (Read 192493 times)

legendary
Activity: 1834
Merit: 1006
That's right, there are many old investors who mined the previous VC.
We should focus on the current project and help dev. Together we are stronger.

I hope that will be soon going VC to exchange, it may be Yobit?
legendary
Activity: 1638
Merit: 1036
i agree that a reboot of the chain needs to use the 177 million coin premine to distribute coins to previous holders,

as joblessminer pointed out, we also did the same thing with bumba.
relaunched bumba2 with premine distributed to prior holders of bumba1.
i also recently participated in the B3 swap from one chain to another.

i fully support such a premine to be used to move balances to a new chain,

but as a new comer to Virtual Coin, there is a dearth of information on such a swap.
and if there is a swap, then discussion of the premine is necessary.

i look forward to further discussion of how such a swap will happen.




heh Smiley and also $1 Wink
full member
Activity: 644
Merit: 101
sr. member
Activity: 360
Merit: 250
bumbacoin, that's BS. you making decision by yourself to reboot...

I am associated with VC from last 3 years since launch & had been mining.
1st Coins are needed to honor & support all those users who had mined, they should not loose that.
2nd where does the bounty coins came from?
3rd wallets, exchange, promotion, marketing etc all requires coins.
4th, Maybe you never mined VC coin here this year, but what about many users like me who are mining last 2 weeks?

But I do suggest rest of them after the use above should be destroyed once coin is stable. Also suggest you only keep the portion you think you deserve, rest return back to dev.

I bet you will not return any part of the coins you got.
hero member
Activity: 592
Merit: 500
Any concerns please feel free to PM myself.

I have many questions man. However, I won't PM u since I've already PMed myself. I just sent a message to myself asking when virtual coin hardfork is scheduled to be deployed, and answered this question to myself. I told that no forks are supposed to happen until the mid march. Once I've done with talking to myself I started seeing 50 million supply in wallet RPC console. Was it a glitch or someone forked the source when I was busy sending PMs to myself.
sr. member
Activity: 644
Merit: 250
Hi!
example for Virtualcoin [VR]

stratum+tcp://theminingpool.mine.nu:6410 -u YOURWALLETHERE -p x

Port: 6410, VarDiff: 0.001-100


FEES LOWERED TO 0.5%

 Smiley Smiley  HAPPY MINNING !!  Smiley Smiley
legendary
Activity: 1638
Merit: 1036

From what I understand their was some issue in the code, dev is expected to release fix in the next version.
Also old chaps like me and other VC supporters who had mined old VC don't end up loosing all the mining done so far.
Your must have got it for the Mac wallet support?
Their is good possibility your 100k will drop to 100 with the next release, let's help him turn VC into success for everyone.


i dont understand what is happening with this coin.
apologies if my posts create FUD.

trawling through the thread i cant see discussion of this Huh??

and the new version does not modify anything of muchness in the code except reward schedules (including increasing the premine) so it certainly seems that any issues would have been best addressed before this was released ?
https://github.com/vcoin-z/virtualcoin/commit/4c8e9257b76b75b33c8e21aca02b82747b3b3aeb


well the issue is very easy to fix. Delete one line.
it certainly appears to be left there deliberately.

if this wants to be legit, the best thing to do would be to restart again with the code modified very slightly
AND
a block explorer Smiley


    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;
// remove this line           nSubsidy = pow (11.0, 6.0);
  }


sr. member
Activity: 473
Merit: 250
"Proof-of-Asset Protocol"


SPECIFICATIONS Old VC
PoW Scrypt X11 Algo
Block targets: every block
~3 million total coins
Initial difficulty: 1/2^10
Maturity time: 3
Target Spacing: 1.5 mins
Target Difficulty Retargets: VGW (Virtual Gravity Well)
BLOCK REWARDS
1 : 50
2> Block reward is controlled by: (1112.0 / (pow((dDiff+51.0)/6.0,2.0)))
 Additionally reward amount decline 20% every 17520 blocks.
[/quote]

From what I understand their was some issue in the code, dev is expected to release fix in the next version.
Also old chaps like me and other VC supporters who had mined old VC don't end up loosing all the mining done so far.
Your must have got it for the Mac wallet support?
Their is good possibility your 100k will drop to 100 with the next release, let's help him turn VC into success for everyone.
legendary
Activity: 1638
Merit: 1036
tl/dr

the first 100 blocks generated a total of 177,156,100 coins ??
(but the pic below does suggest a minor difference Wink)


what were they for i'm wondering ?
(i see no mention of this premine nor discussion of its purpose)





it's different or false again..?? Coin Supply VC 175 million..Huh?

SPECIFICATIONS Old VC
PoW Scrypt X11 Algo
Block targets: every block
~3 million total coins
Initial difficulty: 1/2^10
Maturity time: 3
Target Spacing: 1.5 mins
Target Difficulty Retargets: VGW (Virtual Gravity Well)
BLOCK REWARDS
1 : 50
2> Block reward is controlled by: (1112.0 / (pow((dDiff+51.0)/6.0,2.0)))
 Additionally reward amount decline 20% every 17520 blocks.
legendary
Activity: 1638
Merit: 1036
lmao.
QUESTION : how does the block reward work for this coin Huh
first hundred block reward does not seem to match the code.
https://github.com/vcoin-z/virtualcoin/blob/9.2.0/src/main.cpp#L1324
or i forked it also
https://github.com/bumbacoin/virtualcoin/blob/9.2.0/src/main.cpp#L1324


for some random reason dev sent me 100k VC.
i had looked at block rewards previously, and i obviously don't fully appreciate their subtlety.
but it appears on a cursory inspection that the max block reward is 50 coins, so for the life of me i dinna ken where 100k would've come from to be randomly sent to me.

so, lacking a block explorer. i restarted my daemon with -txindex. and what do you know, the 2nd block has a reward of 1.7 million coins..
in fact i checked a few, and my guess is the first hundred blocks all have a reward of 1.7 million coins.

lolllll.

$ vc getblockhash 2
00000ae78dc793126ce402a0f29c306a10841203ca64db321fcf647ca8467c04

$ vc getblock 00000ae78dc793126ce402a0f29c306a10841203ca64db321fcf647ca8467c04
{
    "hash" : "00000ae78dc793126ce402a0f29c306a10841203ca64db321fcf647ca8467c04",
    "confirmations" : 2087,
    "size" : 186,
    "height" : 2,
    "version" : 2,
    "merkleroot" : "d6235f5deb62e6ca23dfc9203ba1e0ee477d4088ea0cfb1286655a1de17ee8d7",
    "tx" : [
        "d6235f5deb62e6ca23dfc9203ba1e0ee477d4088ea0cfb1286655a1de17ee8d7"
    ],
    "time" : 1483982277,
    "nonce" : 106043,
    "bits" : "1e0ffff0",
    "difficulty" : 0.00024414,
    "previousblockhash" : "000000298e2128eec401430714db3f2307cca97095515b7db6fc1e1bd21b3268",
    "nextblockhash" : "00000244279a02ab4f24701eee130e77487f5e5666db28f16820ffe2f3bde621"
}

$ vc getrawtransaction d6235f5deb62e6ca23dfc9203ba1e0ee477d4088ea0cfb1286655a1de17ee8d7
01000000010000000000000000000000000000000000000000000000000000000000000000fffff fff0a520101062f503253482fffffffff010009695e1fa100002321032334dee83783497ec60687 654727893f81c5a5834a45f157d7d6e3abaff5115dac00000000

$ vc decoderawtransaction 01000000010000000000000000000000000000000000000000000000000000000000000000fffff fff0a520101062f503253482fffffffff010009695e1fa100002321032334dee83783497ec60687 654727893f81c5a5834a45f157d7d6e3abaff5115dac00000000
{
    "txid" : "d6235f5deb62e6ca23dfc9203ba1e0ee477d4088ea0cfb1286655a1de17ee8d7",
    "version" : 1,
    "locktime" : 0,
    "vin" : [
        {
            "coinbase" : "520101062f503253482f",
            "sequence" : 4294967295
        }
    ],
    "vout" : [
        {
            "value" : 1771561.00000000,
            "n" : 0,
            "scriptPubKey" : {
                "asm" : "032334dee83783497ec60687654727893f81c5a5834a45f157d7d6e3abaff5115d OP_CHECKSIG",
                "hex" : "21032334dee83783497ec60687654727893f81c5a5834a45f157d7d6e3abaff5115dac",
                "reqSigs" : 1,
                "type" : "pubkey",
                "addresses" : [
                    "VWwF9YVbDo1X2jkYKSp291H3ikebApN3c5"
                ]
            }
        }
    ]
}



there's a mention of block 100 in the main.cpp, so i figured the rewards probably switch around then. so i tried block 99

# 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"
                ]
            }
        }
    ]
}




EDIT.
i was pretty confused by the reward schedule, but after a bit of looking i realised it was reasonably straight forward, hidden in plain sight as it were

    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);
   }


mystery solved Smiley

            nSubsidy = pow (11.0, 6.0);

is 11^6 = 1771561
member
Activity: 88
Merit: 10
yes, indeed a great news.

Guys what exchange should we all approach to get VC listed? last time it got listed in 3-4 of them, at least we should get one for now.

I think if we can get VC listed on Bitfinex, DABTC or Coincheck that would be the best.
If we all agree Dev, lets all approach them.
sr. member
Activity: 360
Merit: 250
VirtualCoin is the best coin out their. If you support it, please update your signature to include VirtualCoin.

My Reasons:
# Well known name
# 3 years old Coin
# Seasoned Dev with lots of exp.
# Now great team to support it
# Linux, Windows & Mac Wallets, Android/IOS wallets soon.
# Lots of interest, logos etc.
# No forking issues since launch already last 2500 block.

# Still only 2500 blocks best time for new users to join VC & make money.
sr. member
Activity: 473
Merit: 250
"Proof-of-Asset Protocol"
yes, indeed a great news.

Guys what exchange should we all approach to get VC listed? last time it got listed in 3-4 of them, at least we should get one for now.
legendary
Activity: 1834
Merit: 1006
This is great news for users of Mac OS.

I hope that no one has a problem with port 80  Smiley
hero member
Activity: 882
Merit: 515
UPDATED DOWNLOAD

MAC OS Wallet:
https://drive.google.com/uc?export=download&id=0B5j8d4FSc7drNmo1Yi01N0sxa3c

Windows OS Wallet: https://drive.google.com/uc?export=download&id=0B0du_MpVWXexWHdkNG11SDVQbTA

.
.
.
.


*this will address issues with downloading as dropbox placed limit of 1GB per day & restrict new downloads till next day. Too many users downloaded wallet causing issues, the above link will resolve it.



hero member
Activity: 882
Merit: 515
Both Windows Wallet & MAC wallet submitted for CNET's Download approval.

Expecting Monday 16th for Go-live.
hero member
Activity: 882
Merit: 515
sr. member
Activity: 473
Merit: 250
"Proof-of-Asset Protocol"
Please to fix this : Detect Virus on new VC Wallet

https://virustotal.com/en/file/494924ff128b8fad825f7dde7d4980f1799303953b9fa9fe5578c1582c0448e7/analysis/1484151665/

VIRUS Detect..!!
AegisLab   Troj.Bitcoinminer.Xfumu!c   20170111
ESET-NOD32   a variant of Win32/BitCoinMiner.BJ potentially unsafe   20170111
Fortinet   Riskware/BitCoinMiner   20170111
K7AntiVirus   Unwanted-Program ( 004baab71 )   20170111
K7GW   Unwanted-Program ( 004baab71 )   20170111
McAfee   Artemis!C07BD0ED75A1   20170108
Rising   Malware.Generic!ny6HnbI7sfK@5 (thunder)   20170111
Sophos   Bitcoin Miner (PUA)   2017011

remove all virus from vc wallet is good think.

LOL, how come I don't see AegisLab, K7AntiVirus & K7GW using the link above after clicking "View Latest"?
sr. member
Activity: 473
Merit: 250
"Proof-of-Asset Protocol"
Thanks Dev, please ignore this spammer.  I already knew no virus in the wallet, I had reviewed the code myself.
Their are some users with support for the "other" coin that will do anything to discredit others.

That's just how things work here at bitcointalk, its more leg pulling, if you haven't cheated us in last 2-3 years.

These spammers will still mine the our coin while discouraging others in the hope of hitting big.

Please ignore them & lets focus on getting our VirtualCoin listed on good exchange, that will shut their mouth, please keep up with your good work  Wink Wink Wink Wink Wink Wink
hero member
Activity: 882
Merit: 515
Current status from Rising Antivirus.
Pages:
Jump to: