Bitcoin Forum
April 20, 2024, 01:52:35 AM *
News: Latest Bitcoin Core release: 26.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 »  All
  Print  
Author Topic: [ANN] - Coppercoin - [COPPER] - Hybrid Cryptocoin PoW + PoS  (Read 27690 times)
fancy2973
Full Member
***
Offline Offline

Activity: 365
Merit: 100



View Profile
July 17, 2018, 06:55:49 PM
 #221

Yes, This project looks abandoned. There is nothing alive any more. I tried to send mail to contact also but no answer.

The only known contact is the Coppercoin user here and he/she is relatively silent. I’ve asked on multiple occasions how to help the community.




Is there a way we can keep the project going without him? Seem like mining is working OK, the big question is staking (when, how, where?). Maybe someone more technologically savvy can review the code and try to figure things out?

If the source code is publicly accessible then yes. If updates need to be done and nobody has access it's impossible to keep the network alive.

▬▬▬▬▬▬▌   Vulcan Forged    ▐▬▬▬▬▬▬
▬▬▬▬▬▬▌    Telegram   ▌    Discord      ▌     Twitter      ▐▬▬▬▬▬▬
▬▬▬▬▬▬▬▬▬▬▬▬▬▬  DISCOVER   ▬▬▬▬▬▬▬▬▬▬▬▬▬▬
1713577955
Hero Member
*
Offline Offline

Posts: 1713577955

View Profile Personal Message (Offline)

Ignore
1713577955
Reply with quote  #2

1713577955
Report to moderator
1713577955
Hero Member
*
Offline Offline

Posts: 1713577955

View Profile Personal Message (Offline)

Ignore
1713577955
Reply with quote  #2

1713577955
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
SirMario
Newbie
*
Offline Offline

Activity: 1
Merit: 1


View Profile
July 31, 2018, 12:49:18 AM
Merited by Flapmin (1)
 #222

Hello All,

Not that any of you know who I am or care, however I have dire news for anyone even remotely invested in this coin. 

Short story is they did a botch job with the code for this coin. I, like others, were expecting the reward to halve at some point. So I looked around to see when that might occur.
Result: It won't ever halve.  200 coins is hardcoded PoW reward forever, well not forever, PoS will pick up at block 1,000,000. but by then, Max supply will have been hit.

Do some simple math and realize that 1,000,000 * 200 = 200 mil  which is far in excess of the stated 84mil max coin cap.

Working backwards you find:
84,000,000 / 200 = 420,000
 
This means we run out of rewards (PoW&PoS) on block 420,000 with no intervention.
current block : ~289,000

Please correct me if i'm wrong. but in a few months we will be mining empty PoW blocks. And PoS will have a 0% a year return, since we will hit max supply long before the millionth block.

Github open source code: https://github.com/coppercoinet/Coppercoin

open /src/main.h

There you will see the max coin supply:
(line 50)  static const int64_t MAX_MONEY = 84000000 * COIN;

And in /src/main.cpp
(Line 1000 -> 1009)
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 200 * COIN;

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);

    return nSubsidy + nFees;
}


Now, we could fix this. But I cannot edit this fork.


Solution (as proposed by me, so feel free to chime in)

Start havling the coin ASAP. so we don't max out half way through the initial PoW phase.
Do this by setting up a variable to track how often we halve, then add the logic into the function which sets mining rewards.

In Main.H
Add a static variable to keep track of our halving.
static const int REWARD_HALVE = 800000;   //80,000 POW reward halves every 80k blocks



In Main.CPP
(Replace the function defined above line 1000->1009 with this)
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 200 * COIN;
 
    int halvings = (nHeight - 220000) / REWARD_HALVE;   //(-220,000) to account for current block height. since this is a botch job)
 
    // Force block reward to zero when right shift is undefined.
    if (halvings >= 64)
        return nFees;

 
    // Subsidy is cut in half every 80,000 blocks which will occur approximately every 1.8 months.
    nSubsidy >>= halvings;
       
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);
 
    return nSubsidy + nFees;
}


This will cause the mining reward to halve at the 300kth block. meaning instead of 200 copper you will start earning 100 copper per block.

Then it'll halve to 50 per block in another 80k blocks.

This means the remaining PoW phase will look like this:

POW reward      Block        Max coins that reward
200               300000           60000000
50                  80000             4000000
100                80000             8000000
25                  80000             2000000
12.5               80000             1000000
6.25               80000               500000
3.125             80000               250000
1.5625            80000               125000
0.78125          80000                 62500
0.390625        80000                 31250
                1,020,000         75,968,750 coins (well slightly less but oh well)


This will leave the PoS at 3% for close to 4 years.

POS
Year 1   78,247,812.50
Year 2   80,595,246.88
Year 3   83,013,104.28
Year 4   85,503,497.41 //Hit max somewhere before the end of year 4. From then on only transaction fees as reward for PoS mining.



So, there is your solution. But the devs are afk. So this coin will likely fall flat on it's face in a few months when those blocks start churning out 0's.
Merratzz
Full Member
***
Offline Offline

Activity: 367
Merit: 100


View Profile
August 01, 2018, 04:43:43 AM
 #223

MM Mining Power
Mine alt-coins and Payout in Bitcoin!

Port: 3433
User: Your Coin Payout wallet address
Password: c=Coin You want Payout
Fee: 0.69%
Payout: Every 45 Minutes

ADDRESS

PORT IS ON 3433
Set in Password -p c=Coin,d=Diff
Code:
-a scrypt -o stratum+tcp://mastermining.net:3433 -u wallet_payoutCoins_address -p c=BTC,d=524288
For Payout in COPPER
Code:
-a scrypt -o stratum+tcp://mastermining.net:3433 -u COPPER_address -p c=COPPER
Royal Jelly
Jr. Member
*
Offline Offline

Activity: 336
Merit: 2

ECOSTART


View Profile
August 01, 2018, 04:52:02 AM
 #224

Hello All,

Not that any of you know who I am or care, however I have dire news for anyone even remotely invested in this coin. 

Short story is they did a botch job with the code for this coin. I, like others, were expecting the reward to halve at some point. So I looked around to see when that might occur.
Result: It won't ever halve.  200 coins is hardcoded PoW reward forever, well not forever, PoS will pick up at block 1,000,000. but by then, Max supply will have been hit.

Do some simple math and realize that 1,000,000 * 200 = 200 mil  which is far in excess of the stated 84mil max coin cap.

Working backwards you find:
84,000,000 / 200 = 420,000
 
This means we run out of rewards (PoW&PoS) on block 420,000 with no intervention.
current block : ~289,000

Please correct me if i'm wrong. but in a few months we will be mining empty PoW blocks. And PoS will have a 0% a year return, since we will hit max supply long before the millionth block.

Github open source code: https://github.com/coppercoinet/Coppercoin

open /src/main.h

There you will see the max coin supply:
(line 50)  static const int64_t MAX_MONEY = 84000000 * COIN;

And in /src/main.cpp
(Line 1000 -> 1009)
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 200 * COIN;

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);

    return nSubsidy + nFees;
}


Now, we could fix this. But I cannot edit this fork.


Solution (as proposed by me, so feel free to chime in)

Start havling the coin ASAP. so we don't max out half way through the initial PoW phase.
Do this by setting up a variable to track how often we halve, then add the logic into the function which sets mining rewards.

In Main.H
Add a static variable to keep track of our halving.
static const int REWARD_HALVE = 800000;   //80,000 POW reward halves every 80k blocks



In Main.CPP
(Replace the function defined above line 1000->1009 with this)
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 200 * COIN;
 
    int halvings = (nHeight - 220000) / REWARD_HALVE;   //(-220,000) to account for current block height. since this is a botch job)
 
    // Force block reward to zero when right shift is undefined.
    if (halvings >= 64)
        return nFees;

 
    // Subsidy is cut in half every 80,000 blocks which will occur approximately every 1.8 months.
    nSubsidy >>= halvings;
       
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);
 
    return nSubsidy + nFees;
}


This will cause the mining reward to halve at the 300kth block. meaning instead of 200 copper you will start earning 100 copper per block.

Then it'll halve to 50 per block in another 80k blocks.

This means the remaining PoW phase will look like this:

POW reward      Block        Max coins that reward
200               300000           60000000
50                  80000             4000000
100                80000             8000000
25                  80000             2000000
12.5               80000             1000000
6.25               80000               500000
3.125             80000               250000
1.5625            80000               125000
0.78125          80000                 62500
0.390625        80000                 31250
                1,020,000         75,968,750 coins (well slightly less but oh well)


This will leave the PoS at 3% for close to 4 years.

POS
Year 1   78,247,812.50
Year 2   80,595,246.88
Year 3   83,013,104.28
Year 4   85,503,497.41 //Hit max somewhere before the end of year 4. From then on only transaction fees as reward for PoS mining.



So, there is your solution. But the devs are afk. So this coin will likely fall flat on it's face in a few months when those blocks start churning out 0's.

Hard to believe, can only monitor further developments. Mine copper, it's unique but can it last long?

E C O S T A R T | WE CREATE A CRYPTOCURRENCY FOR OUR PLANET
https://eco-start.com/
psycodad
Legendary
*
Offline Offline

Activity: 1604
Merit: 1564


精神分析的爸


View Profile
August 01, 2018, 07:13:38 AM
 #225

Hello All,

Not that any of you know who I am or care, however I have dire news for anyone even remotely invested in this coin. 

Short story is they did a botch job with the code for this coin. I, like others, were expecting the reward to halve at some point. So I looked around to see when that might occur.
Result: It won't ever halve.  200 coins is hardcoded PoW reward forever, well not forever, PoS will pick up at block 1,000,000. but by then, Max supply will have been hit.

Do some simple math and realize that 1,000,000 * 200 = 200 mil  which is far in excess of the stated 84mil max coin cap.

Working backwards you find:
84,000,000 / 200 = 420,000
 
This means we run out of rewards (PoW&PoS) on block 420,000 with no intervention.
current block : ~289,000

Please correct me if i'm wrong. but in a few months we will be mining empty PoW blocks. And PoS will have a 0% a year return, since we will hit max supply long before the millionth block.

Github open source code: https://github.com/coppercoinet/Coppercoin

open /src/main.h

There you will see the max coin supply:
(line 50)  static const int64_t MAX_MONEY = 84000000 * COIN;

And in /src/main.cpp
(Line 1000 -> 1009)
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 200 * COIN;

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);

    return nSubsidy + nFees;
}


Now, we could fix this. But I cannot edit this fork.


Solution (as proposed by me, so feel free to chime in)

Start havling the coin ASAP. so we don't max out half way through the initial PoW phase.
Do this by setting up a variable to track how often we halve, then add the logic into the function which sets mining rewards.

In Main.H
Add a static variable to keep track of our halving.
static const int REWARD_HALVE = 800000;   //80,000 POW reward halves every 80k blocks



In Main.CPP
(Replace the function defined above line 1000->1009 with this)
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 200 * COIN;
 
    int halvings = (nHeight - 220000) / REWARD_HALVE;   //(-220,000) to account for current block height. since this is a botch job)
 
    // Force block reward to zero when right shift is undefined.
    if (halvings >= 64)
        return nFees;

 
    // Subsidy is cut in half every 80,000 blocks which will occur approximately every 1.8 months.
    nSubsidy >>= halvings;
       
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);
 
    return nSubsidy + nFees;
}


This will cause the mining reward to halve at the 300kth block. meaning instead of 200 copper you will start earning 100 copper per block.

Then it'll halve to 50 per block in another 80k blocks.

This means the remaining PoW phase will look like this:

POW reward      Block        Max coins that reward
200               300000           60000000
50                  80000             4000000
100                80000             8000000
25                  80000             2000000
12.5               80000             1000000
6.25               80000               500000
3.125             80000               250000
1.5625            80000               125000
0.78125          80000                 62500
0.390625        80000                 31250
                1,020,000         75,968,750 coins (well slightly less but oh well)


This will leave the PoS at 3% for close to 4 years.

POS
Year 1   78,247,812.50
Year 2   80,595,246.88
Year 3   83,013,104.28
Year 4   85,503,497.41 //Hit max somewhere before the end of year 4. From then on only transaction fees as reward for PoS mining.



So, there is your solution. But the devs are afk. So this coin will likely fall flat on it's face in a few months when those blocks start churning out 0's.

While I agree with you that the coin is heavily broken in many aspects, I would like to point out that you probably misinterpret how the int64_t MAX_MONEY = setting is working. Check it by grepping the sources for MAX_MONEY and you will see where it is used.

AFAICS MAX_MONEY does not limit the supply in any way, but does actually just limit what the largest sendable amount on the network can be. The supply limit is only enforced through the reward function you quoted and therefor currently there is no limit at all IMHO.

That is, reward will be 200 until eternity.


vegascoinpool
Member
**
Offline Offline

Activity: 223
Merit: 12


View Profile
August 05, 2018, 01:44:59 PM
 #226

I asked above, but will again... what would it take to effect a takeover here? What’s involved?

I like this coin. I have a lot of it. Would love to create some community here, and if the lead dev is MIA what can we do without him?

Thoughts?
kreatoralex
Hero Member
*****
Offline Offline

Activity: 1257
Merit: 501


View Profile
September 04, 2018, 06:00:13 AM
 #227

Can someone from the community take over the development of the coin?

HotSwapp
Newbie
*
Offline Offline

Activity: 214
Merit: 0


View Profile WWW
September 05, 2018, 03:22:52 PM
 #228


LuckyAltcoin.com Pool

Coppercoin mining is still available on LuckyAltcoin.com. Please use our COPPER dedicated port of 3439. It definitely still has a chance with it being listed on cryptopia already.

Code:
-o stratum+tcp://pool.luckyaltcoin.com:3439 -u <WALLET_ADDRESS> -p c=COPPER

NODES

Flapmin
Sr. Member
****
Offline Offline

Activity: 532
Merit: 251



View Profile
September 15, 2018, 05:41:09 AM
 #229

Hello All,

ommited


So, there is your solution. But the devs are afk. So this coin will likely fall flat on it's face in a few months when those blocks start churning out 0's.

staking weight shows true ... max money is knon not to work .

it may be a simple as the grammar used in the main.cpp also and i only took a quick look

 im not finding proper linking to the end of pow .

too bad  its scyypt and pos and not stupid inflated . there was a commit about 9 months ago.
im getting decent mining at the home pool it was abandoned also.
attempts to set up my own pool in the past also yielded zero blocks ..

the real question is are the devs around . will it indeed start staking at block 1 million if max money is bs .
if the devs are really gone as in dont give a shit we should get a group going and fix it so at least pos does indeed start working at block 1 million ...
 this thing dont move fast though thats still like 18 months out.
if that the intention then cool ....if they are mia and never to return ....it would be nice to get the 3%

Flapmin
Sr. Member
****
Offline Offline

Activity: 532
Merit: 251



View Profile
September 15, 2018, 07:55:45 AM
 #230

Can someone from the community take over the development of the coin?

I like mining this one ... i cant tell if things are going as planned or if the devs bounced . getting it fixed is no biggie the issues is having a team to tend to it .
its not a little thing to be responsible for a community.... do we have a way to find out what the deal is .
maybe a email someone can make with a 30 day on it we can send to every place the dev team left contact info

maybe this is the intention for things to be as they are 
vegascoinpool
Member
**
Offline Offline

Activity: 223
Merit: 12


View Profile
September 17, 2018, 03:15:44 AM
 #231

Can someone from the community take over the development of the coin?

I like mining this one ... i cant tell if things are going as planned or if the devs bounced . getting it fixed is no biggie the issues is having a team to tend to it .
its not a little thing to be responsible for a community.... do we have a way to find out what the deal is .
maybe a email someone can make with a 30 day on it we can send to every place the dev team left contact info

maybe this is the intention for things to be as they are 

Their intentions aren't known because they've communicated nothing. I think it was a hobby or project for the devs, and they appear to have moved on. I'm not a dev or programmer, so I'm not sure what's involved in taking over... but I'd love to help do so if there was a way. I hold a very large number of these coins and could help finance some parts.
sherm77
Jr. Member
*
Offline Offline

Activity: 95
Merit: 1


View Profile WWW
October 15, 2018, 10:40:57 PM
Last edit: October 16, 2018, 01:14:33 AM by sherm77
 #232

I'm mining coppercoin on Nerdlabs pool:  http://167.99.11.100/stats - I'm just getting into mining of coppercoin, don't have any just yet, but it looks like it certainly needs a dev team.

I'll help out where I can, I'm not a dev, but I can do servers, domains and infrastructure stuff.
sherm77
Jr. Member
*
Offline Offline

Activity: 95
Merit: 1


View Profile WWW
October 19, 2018, 03:00:34 PM
 #233

What can we do to do a takeover as a community and develop this coin?  First thing is get the POS fixed, that will create a lot of value in the coin.  I'd be happy to help where I can.

Still mining coppercoin on the Nerdlabs pool.
sherm77
Jr. Member
*
Offline Offline

Activity: 95
Merit: 1


View Profile WWW
October 19, 2018, 10:34:06 PM
 #234

Hello Coppercoin enthusiasts!

I just sent this email to the only contact information that exists for the Coppercoin dev team with an intention to take over Coppercoin development efforts, promotion & more exchanges & such.  I definitely want to solicit your help and assistance where your strengths are.  I have a dev team that is ready to assist in bringing the Coppercoin wallets, POS staking & associated code up-to-date and get the staking working properly.  I'll be creating a Discord channel for community involvement. 

If I'm going about this the wrong way, please let me know.

BTW, there has been a ton of activity on Cryptopia for Coppercoin in the last 24 hours, last time I looked, over $117K in volume!

Email I sent:

"Hi!

I see that Coppercoin has not been developed or any communication from the devs who did so much work last year in over 6 months.  I am stating my intention to take over Coppercoin development along with a dev team and community involvement.

Please let me know if you still want to be involved or if you have a problem with this intention.  All we want is active work on the coin, wallet, POS & subsystems.

Thanks for your time!

Sherman"
sherm77
Jr. Member
*
Offline Offline

Activity: 95
Merit: 1


View Profile WWW
October 23, 2018, 10:56:12 PM
 #235

Well, no contact with the original dev yet.  I suspected this might be the case, but we'll wait a couple more weeks to be sure that there's no interest there.

In the meantime, here's a few things that I will do:

  • Create a Discord channel called Coppercoin Working Group - that's what it will be, for discussion on the next steps for Coppercoin and resolving the present problems
  • Procure a few domain names that will be used in the near future for the new Coppercoin site & for official email
  • Create a Twitter account for announcements & marketing, etc

This won't be a one-man show and we will come up with solutions based on community consensus.  There's a lot to discuss and decide on, and we'll need everyone's help.  I realize that everyone isn't a developer, web guru or pool operator.  We need those, but enthusiasts and those with Coppercoin's best interests in mind are welcome and come prepared to make a difference.

As far as Discord, we will have a general chat channel, mining and such.  Later down the road, we might have some giveaways, but I'm not planning on doing a bunch of airdrops or such, but that's up to the community if that's desired.  Getting, the POS working is the first priority, since it's never worked.

BTW, Coppercoin is still a bargain on Cryptopia.  Someone sold off quite a bit the other day.  Sad to say they will miss out on staking, but everyone has different ideas and priorities.

sherm77
Jr. Member
*
Offline Offline

Activity: 95
Merit: 1


View Profile WWW
October 23, 2018, 11:49:44 PM
 #236

A few things have been accomplished in the last hour:

  • coppercoin.tech & coppercoin.online have been paid for.  Unfortunately, most of all of the regular domains have already been taken for coppercoin
  • We have a new Discord server at:   https://discord.gg/zQyDaHz

I won't be on Discord 24/7, but during my waking hours, I will try to be around.  Don't be disappointed in the beginning, I'm the only one there, so the next person will be #2, and so on.  We'll have a bunch before long.

I haven't created or run a Discord server before, so if you have experience and want to help, let me know.
sherm77
Jr. Member
*
Offline Offline

Activity: 95
Merit: 1


View Profile WWW
October 24, 2018, 03:09:07 PM
 #237

Ok, the last few things have been done.  Twitter & email accounts.

Twitter:  https://twitter.com/Coppercoin77

Email that comes to me:  coppercoinadmin@coppercoin.tech

Email that forwards to the coppercoin.tech email address:  coppercoinlead@gmail.com (Google has a problem with 'admin' being in the username)

Let's go forward from here!

Sherman

PS.  We'll be working on another ANN when we get things worked out and a path going forward with roadmaps and plans.
annapapo
Newbie
*
Offline Offline

Activity: 61
Merit: 0


View Profile
October 24, 2018, 05:26:26 PM
 #238

I would be very careful if you are thinking of investing in Coppercoin.  Cryptopia has been delisting low-volume coins left and right lately.  They just did a mass delisting of 69 coins without any warning this month.  Many coins similar to Coppercoin were delisted, such as Polishcoin.  Cryptopia is the only place that Coppercoin trades, so if they decide to delist it, it will instantly become worthless without any notice.  If you try to invest in Coppercoin thinking that you can just HODL for the long haul, think again.  You may be holding a bag of worthless shitcoins that cannot even be traded for one satoshi after it gets delisted in a few months.  Heed my warning.  I was holding a substantial amount of six different coins that got delisted by Cryptopia and I lost over 1.5 BTC worth of alt-coins in one day because they permanently shut off the trade markets without any prior notice at all.

If you believe in Coppercoin and you just want to develop it as a fun project, fine.  But keep in mind that if you actually invest any of your BTC in Coppercoin, then you are at the mercy of Cryptopia, and then you're going to have to get down on your knees and beg them to keep it listed.  If you just want to mine as much as you can and dump it immediately as long as it is still trading, then go ahead.
sherm77
Jr. Member
*
Offline Offline

Activity: 95
Merit: 1


View Profile WWW
October 24, 2018, 05:38:26 PM
 #239

Thanks for the words of wisdom.  We're trying to fix a broken coin left to languish by the original dev.  Nothing would surprise me at this point.  Cryptopia isn't the only exchange out there and we can get listed at many. No begging will be done or needed.  I personally want to get this coin fixed for all of those that have invested in it and expected the POS to work.

Seeing that we have about 25% of available Coppercoins on Cryptopia, then means a lot of people are simply mining & holding.  We'll stay the course and when we take over the coin, then we'll work on getting it on other exchanges and bring in new features and such.

Are you willing to help make Coppercoin better and keep it on Cryptopia?
annapapo
Newbie
*
Offline Offline

Activity: 61
Merit: 0


View Profile
October 24, 2018, 06:01:14 PM
 #240

I would like to try to keep it on Cryptopia, but I don't know what I can do.  They already delisted Polishcoin, which still had a smoothly working blockchain and block explorer.  Since I am holding a bunch of Polishcoin I was going to contact them about that first and see if there is any way I can save that listing.  If I find out any information that would be applicable to Coppercoin, I will post it here.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 [12] 13 14 15 16 17 »  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!