Bitcoin Forum
May 22, 2024, 01:10:44 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Would you support next generation Virtual Coin with ASIC resistant code?
Yes (mining & trading) - 202 (81.8%)
Mining only - 30 (12.1%)
Trading only - 13 (5.3%)
No - 2 (0.8%)
Total Voters: 247

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 52 53 54 55 56 57 58 59 60 61 62 63 64 ... 131 »
  Print  
Author Topic: ✪✪✪ VIRTUAL COIN ✪✪✪ | P2P VIRTUAL MONEY | VC | X11 | ReLaunch: Date Feb 2017 ✪✪  (Read 192473 times)
v.coinz (OP)
Hero Member
*****
Offline Offline

Activity: 882
Merit: 515


View Profile
April 12, 2014, 05:43:28 PM
 #261

Update:-

Please use SPH-MINER from (https://bitcointalk.org/index.php?topic=475795.0;all)

The reason their was issue in the original Windows client sync was error in the code, causing it to randomly award blocks, it had some beta test code still left.

Please disregard the wallet.dat file included, it was meant was beta testing. Please DO NOT USE this wallet.dat file on live system.

Follow these steps...
delete old virtualcoin.exe file.
delete virtualcoin folder from roaming.
LOCATION OF THE FOLDER...

C:\Documents and Settings\[windows username]\Application data\Virtualcoin (XP)

C:\Users\[windows username]\Appdata\Roaming\Virtualcoin (Vista and 7)


Now run the new virtualcoin file.

Wait for it to sync (takes about 1-2 mins)


Will add new pools, as well go along.


kondiomir
Legendary
*
Offline Offline

Activity: 1568
Merit: 1000


Twitter @Acimirov


View Profile
April 12, 2014, 05:50:48 PM
 #262

So.. we the people who helped to test initial wallet are screwed ?
My solo mining time is lost  ?

Not fair guys. NOT FAIR!!
hellscabane
Legendary
*
Offline Offline

Activity: 896
Merit: 1000



View Profile
April 12, 2014, 05:51:52 PM
 #263

yep dev should update original post and delete exchange, so confusing and feels amateurish...especially after releasing the coin three times, now it's time to settle and make things clear...
Precisely, the OP needs to clarify things in the first post and also make arrangements to fix things at agx.io. After all, VC got promotion from agx.io and also used one of the campaigns that the website was running. If this really is serious, that should be addressed.
v.coinz (OP)
Hero Member
*****
Offline Offline

Activity: 882
Merit: 515


View Profile
April 12, 2014, 06:00:36 PM
 #264

So.. we the people who helped to test initial wallet are screwed ?
My solo mining time is lost  ?

Not fair guys. NOT FAIR!!


The beta testing was for testing only. It was set to reset before launch as mentioned in the earlier post about beta release.

The interest & mining in Virtual Coin had increased many folds since last launch, hash rate now had past 700MH & it is beyond expectation. Rewards code needs to be updated to reflect that, please allow some time, we will further optimized the code in next few days.
hankrules
Hero Member
*****
Offline Offline

Activity: 673
Merit: 500


View Profile
April 12, 2014, 06:04:15 PM
 #265

Dev, how does virtual gravity well work?

            ▄▄████▄▄
        ▄▄██████████████▄▄
      ███████████████████████▄▄
      ▀▀█████████████████████████
██▄▄       ▀▀█████████████████████
██████▄▄        ▀█████████████████
███████████▄▄       ▀▀████████████
███████████████▄▄        ▀████████
████████████████████▄▄       ▀▀███
 ▀▀██████████████████████▄▄
     ▀▀██████████████████████▄▄
▄▄        ▀██████████████████████▄
████▄▄        ▀▀██████████████████
█████████▄▄        ▀▀█████████████
█████████████▄▄        ▀▀█████████
██████████████████▄▄        ▀▀████
▀██████████████████████▄▄
  ▀▀████████████████████████
      ▀▀█████████████████▀▀
           ▀▀███████▀▀



.SEMUX
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
  Semux uses .100% original codebase.
  Superfast with .30 seconds instant finality.
  Tested .5000 tx per block. on open network
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
v.coinz (OP)
Hero Member
*****
Offline Offline

Activity: 882
Merit: 515


View Profile
April 12, 2014, 06:25:39 PM
 #266

Dev, how does virtual gravity well work?
In simple terms, difficulty is changed every block based on hashrate from last block. It is similar to Dark Well Wave or Komoto Well Gravity.
v.coinz (OP)
Hero Member
*****
Offline Offline

Activity: 882
Merit: 515


View Profile
April 12, 2014, 06:38:10 PM
 #267

New Update planned at  Block 1000 & up




Coders/developers, please help in optimizing the below code for reward, would like inputs so we can increase reward per block based on difficulty.
Below is just a draft & a starting point.

 
Code:
       if(nHeight >= 1000) {
            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 = 25;
                if (nSubsidy < 5) nSubsidy = 5;
            } else {
                nSubsidy = (1112.0 / (pow((dDiff+51.0)/6.0,2.0)));
                if (nSubsidy > 500) nSubsidy = 50;
                if (nSubsidy < 25) nSubsidy = 5;
            }
        } else {
            nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
            if (nSubsidy > 500) nSubsidy = 50;
            if (nSubsidy < 1) nSubsidy = 1;
        }

Any feedback, suggestions are welcome Smiley
idcweb
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
April 12, 2014, 09:06:04 PM
 #268

http://vc.520cn.com

Chinese Pool PPLNS

1% pool fee

e1ghtSpace
Legendary
*
Offline Offline

Activity: 1526
Merit: 1001


Crypto since 2014


View Profile WWW
April 12, 2014, 09:45:35 PM
 #269

Guys can someone please help me with mega? It says starting but it doesn't load.
e1ghtSpace
Legendary
*
Offline Offline

Activity: 1526
Merit: 1001


Crypto since 2014


View Profile WWW
April 12, 2014, 09:57:34 PM
 #270

Guys can someone please help me with mega? It says starting but it doesn't load.
Never mind, it was a problem with chrome. I used Internet Explorer and it downloads fine.
hankrules
Hero Member
*****
Offline Offline

Activity: 673
Merit: 500


View Profile
April 12, 2014, 11:05:07 PM
 #271

Trying to figure out what you are going for here, but to start...

Code:
       if(nHeight >= 1000) {
            if((nHeight >= 101 && dDiff > 75) || nHeight >= 1000) {   ///wouldn't this always evaluate to true because of the line above it?
                // 222000/(((x+2600)/9)^2)
                nSubsidy = (222000.0 / (pow((dDiff+2600.0)/9.0,2.0)));
                if (nSubsidy > 25) nSubsidy = 25;
                if (nSubsidy < 5) nSubsidy = 5;
            } else {
                nSubsidy = (1112.0 / (pow((dDiff+51.0)/6.0,2.0)));
                if (nSubsidy > 500) nSubsidy = 50;
                if (nSubsidy < 25) nSubsidy = 5;
            }
        } else {
            nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
            if (nSubsidy > 500) nSubsidy = 50;
            if (nSubsidy < 1) nSubsidy = 1;
        }

Any feedback, suggestions are welcome Smiley

            ▄▄████▄▄
        ▄▄██████████████▄▄
      ███████████████████████▄▄
      ▀▀█████████████████████████
██▄▄       ▀▀█████████████████████
██████▄▄        ▀█████████████████
███████████▄▄       ▀▀████████████
███████████████▄▄        ▀████████
████████████████████▄▄       ▀▀███
 ▀▀██████████████████████▄▄
     ▀▀██████████████████████▄▄
▄▄        ▀██████████████████████▄
████▄▄        ▀▀██████████████████
█████████▄▄        ▀▀█████████████
█████████████▄▄        ▀▀█████████
██████████████████▄▄        ▀▀████
▀██████████████████████▄▄
  ▀▀████████████████████████
      ▀▀█████████████████▀▀
           ▀▀███████▀▀



.SEMUX
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
  Semux uses .100% original codebase.
  Superfast with .30 seconds instant finality.
  Tested .5000 tx per block. on open network
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
v.coinz (OP)
Hero Member
*****
Offline Offline

Activity: 882
Merit: 515


View Profile
April 12, 2014, 11:48:41 PM
 #272

Trying to figure out what you are going for here, but to start...

Code:
       if(nHeight >= 1000) {
            if((nHeight >= 101 && dDiff > 75) || nHeight >= 1000) {   ///wouldn't this always evaluate to true because of the line above it?
                // 222000/(((x+2600)/9)^2)
                nSubsidy = (222000.0 / (pow((dDiff+2600.0)/9.0,2.0)));
                if (nSubsidy > 25) nSubsidy = 25;
                if (nSubsidy < 5) nSubsidy = 5;
            } else {
                nSubsidy = (1112.0 / (pow((dDiff+51.0)/6.0,2.0)));
                if (nSubsidy > 500) nSubsidy = 50;
                if (nSubsidy < 25) nSubsidy = 5;
            }
        } else {
            nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
            if (nSubsidy > 500) nSubsidy = 50;
            if (nSubsidy < 1) nSubsidy = 1;
        }

Any feedback, suggestions are welcome Smiley

it would be something like...
 
Code:
       

if(nHeight >= 1000)
{
                nSubsidy = (222000.0 / (pow((dDiff+2600.0)/9.0,2.0)));
                if (nSubsidy > 25) nSubsidy = 250; // increase from 25 to 250 per block
                if (nSubsidy < 5) nSubsidy = 50; // increase from 5 to 50 per block
}
else {
                nSubsidy = (1112.0 / (pow((dDiff+51.0)/6.0,2.0)));
                if (nSubsidy > 500) nSubsidy = 50;
                if (nSubsidy < 25) nSubsidy = 5;
      }
}
fartbags
Legendary
*
Offline Offline

Activity: 1190
Merit: 1004


View Profile
April 13, 2014, 12:42:21 AM
 #273

Something seems to be wrong with this coin.

v.coinz (OP)
Hero Member
*****
Offline Offline

Activity: 882
Merit: 515


View Profile
April 13, 2014, 12:50:21 AM
 #274

VirtualCoin Exchange Update

Got an update from AGX exchange, they are in the process of enabling VC/BTC trading, please wait for further update before depositing your VC coins.
altcoin2014
Newbie
*
Offline Offline

Activity: 48
Merit: 0


View Profile
April 13, 2014, 03:42:22 AM
 #275

Holy shit, why is this coin network hashrate passed 800MH, it's not even 24hrs since launch & so many users already mining it. I can't recall any coin getting that popular in the past, coin is on fire lol.

It's time that this coin also gets listed on btc-e and Vircurex as well.



why their is so much buzz???
bitcoinrulzz
Sr. Member
****
Offline Offline

Activity: 360
Merit: 250



View Profile
April 13, 2014, 04:22:41 AM
 #276

Holy shit, why is this coin network hashrate passed 800MH, it's not even 24hrs since launch & so many users already mining it. I can't recall any coin getting that popular in the past, coin is on fire lol.

It's time that this coin also gets listed on btc-e and Vircurex as well.



why their is so much buzz???

I am also mining since yesterday, holds very promising future. I like the support for QR CODE in Windows Client.
How do we use that feature?
e1ghtSpace
Legendary
*
Offline Offline

Activity: 1526
Merit: 1001


Crypto since 2014


View Profile WWW
April 13, 2014, 04:34:00 AM
 #277

Holy shit, why is this coin network hashrate passed 800MH, it's not even 24hrs since launch & so many users already mining it. I can't recall any coin getting that popular in the past, coin is on fire lol.

It's time that this coin also gets listed on btc-e and Vircurex as well.



why their is so much buzz???

I am also mining since yesterday, holds very promising future. I like the support for QR CODE in Windows Client.
How do we use that feature?
I right clicked on a wallet in the "receive" tab and clicked "show QR code" and a QR code came up. I guess you scan it with a phone or whatever to see the address and sent coins to it.
luckygenough56
Legendary
*
Offline Offline

Activity: 1526
Merit: 1012



View Profile
April 13, 2014, 05:03:40 AM
 #278

Holy shit, why is this coin network hashrate passed 800MH, it's not even 24hrs since launch & so many users already mining it. I can't recall any coin getting that popular in the past, coin is on fire lol.

It's time that this coin also gets listed on btc-e and Vircurex as well.



why their is so much buzz???

lol it's x11 nub, 800mh/s is nothing, barely 400 miners if u take 2 Mh/s average per gpu
laughyboy
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
April 13, 2014, 07:49:56 AM
 #279

Update:-

Please use SPH-MINER from (https://bitcointalk.org/index.php?topic=475795.0;all)

The reason their was issue in the original Windows client sync was error in the code, causing it to randomly award blocks, it had some beta test code still left.

Please disregard the wallet.dat file included, it was meant was beta testing. Please DO NOT USE this wallet.dat file on live system.

Follow these steps...
delete old virtualcoin.exe file.
delete virtualcoin folder from roaming.
LOCATION OF THE FOLDER...

C:\Documents and Settings\[windows username]\Application data\Virtualcoin (XP)

C:\Users\[windows username]\Appdata\Roaming\Virtualcoin (Vista and 7)


Now run the new virtualcoin file.

Wait for it to sync (takes about 1-2 mins)


Will add new pools, as well go along.




download link for windows wallet doesn't work... ive been unable to get mine to sync and have had no help from yourself or the users here after many posts. Ive deleted the roaming folder and want to replace the wallet but cant download it....
ex_mac
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250


"Proof-of-Asset Protocol"


View Profile
April 13, 2014, 07:53:27 AM
 #280

Hi all,
new pool:
https://cpu-pool.net/vc/

tested, work fine ...

Welcome ...

|
 
 
50
|
 




                       ▄
           ▄▄▄▄▄▄███████
▄▄▄▄█████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████

█████████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████
▀▀▀▀█████  █████████████
           ▀▀▀▀▀▀███████
                       ▀
|
 
 
$1,5 M
|



        ▄▄▄█████████▄▄▄
      ▄█████▀▀███▀▀█████▄
    ▄███▀     ███     ▀███▄
   ████       ███       ████
  ███▀                   ▀███
 ███▀                     ▀███
▄██▀       █████████       ▀██▄
███                         ███
███        █████████        ███
███                         ███
▀██▄       █████████       ▄██▀
 ███▄                     ▄███
  ███▄                   ▄███
   ████       ███       ████
    ▀███▄     ███     ▄███▀
      ▀█████▄▄███▄▄█████▀
        ▀▀▀█████████▀▀▀
|
 
|
 
<>
<>
<>
<>
 
GITHUB
TWITTER
YOUTUBE
FACEBOOK
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 52 53 54 55 56 57 58 59 60 61 62 63 64 ... 131 »
  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!