Bitcoin Forum

Alternate cryptocurrencies => Announcements (Altcoins) => Topic started by: CovenDev on April 19, 2015, 03:38:34 AM



Title: [ANN] [COV] Coven Coin (old thread, locked, link to new thread in ann)
Post by: CovenDev on April 19, 2015, 03:38:34 AM
thread moved to: https://bitcointalk.org/index.php?topic=1032465.0


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: louiseth1 on April 19, 2015, 03:39:46 AM
Ann is pretty thin, but why not?

Prepping things up.

Edit; up! good coded daemon, auto compile script loves it! www.SuchPool.pw/cov (http://www.SuchPool.pw/cov)


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: minerpools on April 19, 2015, 03:42:16 AM
Wowowowowow  ninjaaaa

https://cov.minerpools.com

Compiling


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: whatdidshedo on April 19, 2015, 03:45:56 AM
Ann is pretty thin, but why not?

Prepping things up.

Edit; up! good coded daemon, auto compile script loves it! www.SuchPool.pw/cov (http://www.SuchPool.pw/cov)


this correct? 225

Current Block

on your pool


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: louiseth1 on April 19, 2015, 03:46:44 AM
Ann is pretty thin, but why not?

Prepping things up.

Edit; up! good coded daemon, auto compile script loves it! www.SuchPool.pw/cov (http://www.SuchPool.pw/cov)


this correct? 225

Current Block

on your pool

232 now, they are going very fast it seems.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: minerpools on April 19, 2015, 03:47:16 AM
Up and running!!


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: whatdidshedo on April 19, 2015, 03:47:37 AM
guy got all the big blocks lol


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: jimlite on April 19, 2015, 03:49:19 AM
I'm on it. Just happened to be around at the right time. Hashing at both pools for a bit.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: louiseth1 on April 19, 2015, 03:52:13 AM
guy got all the big blocks lol

We got most of them, but looks the ANN may be wrong, we're getting 45 BR


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: donnyespo on April 19, 2015, 03:53:09 AM
block rewards dont seem to be right, only 45 on block 250?


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: whatdidshedo on April 19, 2015, 03:53:31 AM
guy got all the big blocks lol

We got most of them, but looks the ANN may be wrong, we're getting 45 BR

ok i'm on it


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: TimC on April 19, 2015, 03:54:16 AM
block rewards dont seem to be right, only 45 on block 250?

I hit some block solo that were 50 COV so I would guess those must have been within the 100-200 range


I got in at block 9

{
"Blocks" : 9,
"Current Block Size" : 1000,
"Current Block Tx" : 0,
"Difficulty" : {
"Proof of Work" : 0.00783450,
"Proof of Stake" : 0.00390625,
"Search Interval" : 1
},
"Block Value" : 0,
"Net MH/s" : 0.00779091,
"Net Stake Weight" : 0.00000000,
"Errors" : "",
"Pooled Tx" : 0,
"Stake Weight" : {
"Minimum" : 0,
"Maximum" : 0,
"Combined" : 0
},
"Stake Interest" : 3000000,
"Testnet" : false
}


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Arie22 on April 19, 2015, 03:55:46 AM
ANN like CASHTAKER  ;D


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: jimlite on April 19, 2015, 03:56:08 AM
Dev,
Can you clearify block rewards in OP please, they are off.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: TimC on April 19, 2015, 04:01:25 AM
https://bitbucket.org/CovCOVEN/coven/src/16a50b850d8061f86c083641857635d651e319a9/src/main.cpp?at=master#cl-983

Code:
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 0 * COIN;
 
    if(pindexBest->nHeight < 100)
    {
        nSubsidy = 0 * COIN;
    }
        else if(pindexBest->nHeight < 200)
    {
        nSubsidy = 50 * COIN;
    }
        else if(pindexBest->nHeight < 400)
    {
        nSubsidy = 45 * COIN;
    }
        else if(pindexBest->nHeight < 600)
    {
        nSubsidy = 40 * COIN;
    }
        else if(pindexBest->nHeight < 800)
    {
        nSubsidy = 30 * COIN;
    }
        else if(pindexBest->nHeight < 1000)
    {
        nSubsidy = 20 * COIN;
    }
        else if(pindexBest->nHeight < 1200)
    {
        nSubsidy = 10 * COIN;
    }   
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);

    return nSubsidy + nFees;
}


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: whatdidshedo on April 19, 2015, 04:05:10 AM
guy got all the big blocks lol

We got most of them, but looks the ANN may be wrong, we're getting 45 BR


minerspool now hitting all ther block and i have no idea wgat i mined on yours it can't be so litlle i hit it hard but canceling now

i'll checxk later what i mined .. good luck


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: jimlite on April 19, 2015, 04:06:52 AM
Dev,
Thanks, and O.K. now that you posted correct rewards,
what is % POS? And any plans or better ANN coming?


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: minerpools on April 19, 2015, 04:08:39 AM
jesus guys please spread the hash, we need this to be balanced.

Do not mine all at one pool!!!!!


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CovenDev on April 19, 2015, 04:12:58 AM
Dev,
Thanks, and O.K. now that you posted correct rewards,
what is % POS? And any plans or better ANN coming?

rewards updated; POS = 3%; roadmap/ann to follow after successful POW period


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: louiseth1 on April 19, 2015, 04:15:01 AM
Dev, can you come up with a logo ? I got an empty square on my pool to fill in :P


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: louiseth1 on April 19, 2015, 04:16:01 AM
guy got all the big blocks lol

We got most of them, but looks the ANN may be wrong, we're getting 45 BR


minerspool now hitting all ther block and i have no idea wgat i mined on yours it can't be so litlle i hit it hard but canceling now

i'll checxk later what i mined .. good luck

We can see now, blocks started coming  slower so we can see the stats properly.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Cryptophile on April 19, 2015, 04:20:09 AM
rewards updated; POS = 3%; roadmap/ann to follow after successful POW period

Nice, short PoW!  I can dig it.

Can't wait to see what you guys have to show!


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: tx42 on April 19, 2015, 04:34:37 AM
Dev, can you come up with a logo ? I got an empty square on my pool to fill in :P

https://i.imgur.com/dNRy63h.jpg

I'm sure there is a coin logo in there somewhere.

[edit]

https://i.imgur.com/9ThC0Yy.png


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Starin on April 19, 2015, 04:38:14 AM
Mining some. Let's see what happens.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: tx42 on April 19, 2015, 04:56:06 AM

34,000 Total POW Coins


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: jimlite on April 19, 2015, 05:08:46 AM
Dev, can you come up with a logo ? I got an empty square on my pool to fill in :P

https://i.imgur.com/dNRy63h.jpg

I'm sure there is a coin logo in there somewhere.

[edit]

https://i.imgur.com/9ThC0Yy.png
No copyright infringements. You saw how well that went with Unreal coin.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: jasemoney on April 19, 2015, 05:24:40 AM
700 THash on minerpools


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Starin on April 19, 2015, 05:38:33 AM
700 THash on minerpools

Spread to suchpool.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: tx42 on April 19, 2015, 05:44:12 AM
Dev, can you come up with a logo ? I got an empty square on my pool to fill in :P

https://i.imgur.com/dNRy63h.jpg

I'm sure there is a coin logo in there somewhere.

[edit]

https://i.imgur.com/9ThC0Yy.png
No copyright infringements. You saw how well that went with Unreal coin.

Just some humor.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: rapta on April 19, 2015, 05:49:15 AM
Coven (COV) has been listed on CoinGather under the BTC market.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Starin on April 19, 2015, 05:57:01 AM
Hey. I made a quick logo for exchange sites etc. I can gladly improve it for your needs. Here is a preview.
Cost: 0.05 BTC

https://i.imgur.com/uFqftwb.png

I have psd's in high res.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: proletariat on April 19, 2015, 06:00:10 AM
Hey. I made a quick logo for exchange sites etc. I can gladly improve it for your needs. Here is a preview.
Cost: 0.05 BTC



I have psd's in high res.

Looks a lot like the current one


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Starin on April 19, 2015, 06:08:27 AM
Hey. I made a quick logo for exchange sites etc. I can gladly improve it for your needs. Here is a preview.
Cost: 0.05 BTC



I have psd's in high res.

Looks a lot like the current one

It was intentional. Since that was dev's design in mind, just made it more professional. I am open to advices. :)


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: proletariat on April 19, 2015, 06:13:45 AM
Hey. I made a quick logo for exchange sites etc. I can gladly improve it for your needs. Here is a preview.
Cost: 0.05 BTC



I have psd's in high res.

Looks a lot like the current one

It was intentional. Since that was dev's design in mind, just made it more professional. I am open to advices. :)

Here are some for inspiration

https://www.google.com/search?safe=off&biw=1920&bih=1063&tbm=isch&sa=1&q=typography+logos&oq=typography+logos&gs_l=img.3..0l3j0i7i30l7.10834.10834.0.11060.1.1.0.0.0.0.206.206.2-1.1.0.msedr...0...1c.1.64.img..0.1.204.1YIHQsiK9_0


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Starin on April 19, 2015, 06:16:05 AM
We need to spread hash more into suchpool. Please point your miners to suchpool.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: lihaidong198871 on April 19, 2015, 06:36:17 AM
need more information .dev~ ;)


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: tx42 on April 19, 2015, 06:49:33 AM
need more information .dev~ ;)

It looks like you will need to wait until the end of PoW. That's what it says in the ANN.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: tx42 on April 19, 2015, 07:28:25 AM

I was mining on both minerpools and suchpools, but my suchpools COV has not matured. I've already gotten a payout from minerpools, but I started mining on suchpools an hour earlier.
???


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Starin on April 19, 2015, 07:28:55 AM
Meh. Mining on suchpool now loses profit tbh.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: OVRGRO on April 19, 2015, 07:57:20 AM

I was mining on both minerpools and suchpools, but my suchpools COV has not matured. I've already gotten a payout from minerpools, but I started mining on suchpools an hour earlier.
???

each pool probably has their own confirmations until payout, in this case they appear to be different


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: WigitGetIt on April 19, 2015, 07:59:34 AM

I was mining on both minerpools and suchpools, but my suchpools COV has not matured. I've already gotten a payout from minerpools, but I started mining on suchpools an hour earlier.
???

each pool probably has their own confirmations until payout, in this case they appear to be different

yup

21 confirms at minerpools
120 confirms at suchpool


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Targetbit on April 19, 2015, 09:51:21 AM
a good exchange is needed and is critical to grow up. hash will be removed if you don't add some famous exchanges


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: shimlbit on April 19, 2015, 09:53:44 AM
there were 2 sha ninjas in the morning thats the problem..one got over 6 ph the other less than 1ph...thats the game
also only 1200 pow blocks


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Shkembe on April 19, 2015, 10:09:26 AM
I am watching this one...


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: OVRGRO on April 19, 2015, 10:36:59 AM
a good exchange is needed and is critical to grow up. hash will be removed if you don't add some famous exchanges

hash will be removed when pow is done...


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Black Mamba on April 19, 2015, 11:49:30 AM
How long is Proof Of Work?


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: OVRGRO on April 19, 2015, 12:35:30 PM
How long is Proof Of Work?
Specs:

blocks 1-100 : 0
Blocks 101-200: 50
blocks 200-400:45
blocks 400-600 :40
blocks 600-800 30
blocks 800-1000 20
blocks 1000-1200 :10

Supply 33k

Algrithm SHA256
Retarget 90s
POS/POW
Min Stake age 1h
Max Stake age 30d
Maturity 10 confirmations


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: lolwut on April 19, 2015, 12:59:28 PM
up on coinking.io


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: muddafudda on April 19, 2015, 01:22:29 PM
Winner! of the shittest announce post in altcoin history.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: WigitGetIt on April 19, 2015, 01:41:44 PM
up on coinking.io

Awesome.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CovenDev on April 19, 2015, 01:54:45 PM
We will be updating the ANN and releasing a wallet update with better images. Stay tuned!


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: WigitGetIt on April 19, 2015, 02:06:25 PM
We will be updating the ANN and releasing a wallet update with better images. Stay tuned!

Looking forward to it.  ;D


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: TomVelvetPaws on April 19, 2015, 02:23:30 PM
Checkin it out.I will add this one to my collection.Good Pools? Ninja Launch?Darknodes? Low Supply?  ;D

I do have a question though.It is aimed at Minerpools.I cant navigate through the site.Its why I haven't been doing some mining there.Seems to not be a hub page or nowhere to see the pools there.Only if there s a name of coin in front.Like 8bit.minerpools you get the idea.The "Pools" Slider on the website on the nav.Pane doesnt work but all else does.minerpools.com takes me to a 42 coin page.I have tried IE Firefox chrome and the same I have all recent updates on my system.

Core I7 3.5 gh
Nvidia M770  x2
OS.7 ult


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CovenDev on April 19, 2015, 05:32:27 PM
Announcement page updated; please update to new wallet; block explorer /other OS wallets/roadmap to be released next. 


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: jasemoney on April 19, 2015, 05:36:23 PM
Announcement page updated; please update to new wallet; block explorer /other OS wallets/roadmap to be released next. 
new wallet looks cool, would be nice to work on a build that doesnt have/(need?) a ton of extra files with it.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Starin on April 19, 2015, 05:39:05 PM
Announcement page updated; please update to new wallet; block explorer /other OS wallets/roadmap to be released next. 

Nice ann, nice logo and neat wallet. We need some attention from exchange sites now. :)


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Arie22 on April 19, 2015, 05:40:35 PM
Nice wallet DEV.. ;D


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CovenDev on April 19, 2015, 05:50:19 PM
POOLS UPDATE YOUR SOURCE CODE NOW!


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: shimlbit on April 19, 2015, 05:55:41 PM
how much % pos? and i cant see in the code when pos starts


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CovenDev on April 19, 2015, 06:03:50 PM
how much % pos? and i cant see in the code when pos starts
Its 3% and started on block 500, but wont be effective until all the nodes are updated.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: rhkazani1 on April 19, 2015, 06:07:59 PM
Has minerpools updated the source yet?


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: TimC on April 19, 2015, 06:10:40 PM
how much % pos? and i cant see in the code when pos starts


https://bitbucket.org/CovCOVEN/coven/src/8352244d9ea9222ecc6245645a3675c178befae1/src/main.h?at=master#cl-45

Code:
static const int MODIFIER_INTERVAL_SWITCH = 500;

https://bitbucket.org/CovCOVEN/coven/src/8352244d9ea9222ecc6245645a3675c178befae1/src/main.cpp?at=master#cl-2146

Code:
    if (IsProofOfWork() && nHeight > LAST_POW_BLOCK)
        return DoS(100, error("AcceptBlock() : reject proof-of-work at height %d", nHeight));
        
    if (IsProofOfStake() && nHeight < MODIFIER_INTERVAL_SWITCH)
        return DoS(100, error("AcceptBlock() : reject proof-of-stake at height %d", nHeight));

    // Check proof-of-work or proof-of-stake
    if (nBits != GetNextTargetRequired(pindexPrev, IsProofOfStake()))
        return DoS(100, error("AcceptBlock() : incorrect %s", IsProofOfWork() ? "proof-of-work" : "proof-of-stake"));


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Quietsucces on April 19, 2015, 06:16:50 PM
https://kiwiirc.com/client/irc.freenode.net/#Covencoin


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: proletariat on April 19, 2015, 06:18:37 PM
I just STAKED!!!  8)


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CovenDev on April 19, 2015, 06:18:40 PM
Has minerpools updated the source yet?
No, and they need to. Someone contact them. I can't reach them. But they need to update now.

Your staked block will be rejected until minerpools updates their source. (It makes pos effective)


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: tx42 on April 19, 2015, 06:21:54 PM
Has minerpools updated the source yet?
No, and they need to. Someone contact them. I can't reach them. But they need to update now.

Your staked block will be rejected until minerpools updates their source. (It makes pos effective)

I can't thank you enough for updating the ANN after I mined a ton of this.  :)


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: rhkazani1 on April 19, 2015, 06:30:05 PM
Has minerpools updated the source yet?
No, and they need to. Someone contact them. I can't reach them. But they need to update now.

Your staked block will be rejected until minerpools updates their source. (It makes pos effective)

But can I withdraw my coins from minerpools?


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: WigitGetIt on April 19, 2015, 06:30:10 PM
I have reached out to minerpools in IRC I am sure he will get it updated soon.

Nice work with the wallet.  ;D

Edit: Please Retweet: https://twitter.com/wigitgetit/status/589859674804989952

https://i.imgur.com/yfsDixp.png


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: louiseth1 on April 19, 2015, 06:36:52 PM
SuchPool is updated, and in order for the developper to have PoS fully functionning we need the new wallet applied everywhere.

The PoS blocks are forking due to the non-updated wallets, and since majority of the hash is running on an older wallet it's affecting the network.

Send some hash over here to stabilize the network with the new wallet version:
www.Suchpool.pw/cov



Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CovenDev on April 19, 2015, 06:44:02 PM
SuchPool is updated, and in order for the developper to have PoS fully functionning we need the new wallet applied everywhere.

The PoS blocks are forking due to the non-updated wallets, and since majority of the hash is running on an older wallet it's affecting the network.

Send some hash over here to stabilize the network with the new wallet version:
www.Suchpool.pw/cov


Please mine on www.suchpool.pw/cov (http://www.suchpool.pw/cov) until minerpools updates their source code. All pos blocks are being rejected because they have not updated.
If this continues the blockchain will stop on block 1200.
If you want to keep your coins. I really suggest mining on suchpool until this issue is resolved.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: minerpools on April 19, 2015, 06:49:42 PM
updating...

Covend wallet updated to latest version!


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CovenDev on April 19, 2015, 06:52:32 PM
updating...
Epic Thank you :)


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: rhkazani1 on April 19, 2015, 06:55:43 PM
updating...

Covend wallet updated to latest version!

Great, thanks!


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: WigitGetIt on April 19, 2015, 06:57:06 PM
updating...

Covend wallet updated to latest version!

Thanks minerpools.  ;D


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Starin on April 19, 2015, 08:29:18 PM
We need some atention from the exchange sites. YoBit where are you? :P


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: proletariat on April 19, 2015, 08:39:24 PM
"moneysupply" : 31480.17577361, @ block 983  :o


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CryptoTrout on April 19, 2015, 08:48:45 PM
Dev have you talked to C-Cex yet?


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Gladimor on April 19, 2015, 08:49:13 PM
"moneysupply" : 31480.17577361, @ block 983  :o

Yea, this coin is going to have an extremely low coin count :P

Just imagine if the dev ports masternodes to CovenCoin... 300 COV per node, max 100 MNs :D


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: OVRGRO on April 19, 2015, 09:07:38 PM
just removed 9,98x more coven with my first stake :) never has 0.01 coins felt so good

edit: looking like high 32,000 or low 33,000 total after POW, giggity


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: prospecta on April 19, 2015, 09:24:42 PM
170 for sale for 0.15 BTC if anyones keen, will list on Coingather if wanted.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: WigitGetIt on April 19, 2015, 10:23:28 PM
PoW is over at block 1200.  Finish mining at SuchPool https://www.suchpool.pw/cov/

https://i.imgur.com/W6V99fg.png


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: ozgr on April 19, 2015, 10:28:22 PM
c-cex,yobit?


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: danosphere on April 19, 2015, 10:35:46 PM
cmon, a lil bit more effort pls:

https://twitter.com/AltCoinInvestor/status/589919889848197120


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: proletariat on April 19, 2015, 10:41:11 PM
cmon, a lil bit more effort pls:

https://twitter.com/AltCoinInvestor/status/589919889848197120

HERE YOU GO

https://i.imgur.com/oA9d4hM.jpg


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Paycoinzzz on April 19, 2015, 10:45:41 PM
Photoshopping a screenshot is pretty low even for a FUD guy. Someone wants cheap COV.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CovenDev on April 19, 2015, 11:01:37 PM
Block Explorer should be up shortly; official Coven Coin twitter account = https://twitter.com/CovenCoin


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Gladimor on April 19, 2015, 11:07:48 PM
Block Explorer should be up shortly; official Coven Coin twitter account = https://twitter.com/CovenCoin

I re-tweeted you, and also tweeted my own thing at them ;)


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: YoBit on April 19, 2015, 11:13:55 PM
Dear Forum Members!

Coven Coin [COV] is listed on YoBit.net Exchange! ( Twitter: https://twitter.com/YobitExchange/status/589929289497346049 )

English: https://yobit.net/en/trade/COV/BTC
Chinese: https://yobit.net/cn/trade/COV/BTC
Russian: https://yobit.net/ru/trade/COV/BTC

Coven Dice: https://yobit.net/en/dice/COV

Our topic on BitcoinTalk: https://bitcointalk.org/index.php?topic=914975.0

https://yobit.net/i/small_logo.png

Logo img: https://yobit.net/i/small_logo.png


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: gdavis024 on April 19, 2015, 11:23:52 PM
Dear Forum Members!

Coven Coin [COV] is listed on YoBit.net Exchange! ( Twitter: https://twitter.com/YobitExchange/status/589929289497346049 )

English: https://yobit.net/en/trade/COV/BTC
Chinese: https://yobit.net/cn/trade/COV/BTC
Russian: https://yobit.net/ru/trade/COV/BTC

Coven Dice: https://yobit.net/en/dice/COV

Our topic on BitcoinTalk: https://bitcointalk.org/index.php?topic=914975.0

https://yobit.net/i/small_logo.png

Logo img: https://yobit.net/i/small_logo.png


Awesome thanks yobit!!


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: megabuxx on April 19, 2015, 11:53:31 PM
Block Explorer should be up shortly; official Coven Coin twitter account = https://twitter.com/CovenCoin

I'm waiting for the block explorer.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: rapta on April 20, 2015, 12:07:50 AM
Wallet updated on CoinGather


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CovenDev on April 20, 2015, 12:10:13 AM
Block Explorer should be up shortly; official Coven Coin twitter account = https://twitter.com/CovenCoin

I'm waiting for the block explorer.

Sorry for delay; should be up in the next few hours


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Gladimor on April 20, 2015, 12:49:22 AM
Block Explorer should be up shortly; official Coven Coin twitter account = https://twitter.com/CovenCoin

I'm waiting for the block explorer.

Sorry for delay; should be up in the next few hours

Any plans for a roadmap, dev? You didn't bother to reply to my PM  :D

A firm roadmap for your investors to see could basically 5-10x the current price.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: gilangIDR on April 20, 2015, 12:52:02 AM
Block Explorer should be up shortly; official Coven Coin twitter account = https://twitter.com/CovenCoin

I'm waiting for the block explorer.

Sorry for delay; should be up in the next few hours

Any plans for a roadmap, dev? You didn't bother to reply to my PM  :D

A firm roadmap for your investors to see could basically 5-10x the current price.

wait after POW end . and we can see and learn the roadmap  8) , 40 block again from now


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Gladimor on April 20, 2015, 01:21:43 AM
PoW has ended :D


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: xinbinbin on April 20, 2015, 01:44:05 AM
any news?


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: kevin1234a on April 20, 2015, 01:45:01 AM
PoW has ended :D

that was a quickest POW period in all released coins for this month


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: prospecta on April 20, 2015, 01:46:45 AM
PoW has ended :D

that was a quickest POW period in all released coins for this month

24 hour POW's were all the rage for a while last year.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Gladimor on April 20, 2015, 02:50:18 AM
I don't think that Bittrex will list this coin without a block explorer... it's one of their requirements  :)


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CryptoClub on April 20, 2015, 02:56:25 AM
Wallet looks nice there..


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: jasemoney on April 20, 2015, 02:56:29 AM
I don't think that Bittrex will list this coin without a block explorer... it's one of their requirements  :)

Block Explorer should be up shortly; official Coven Coin twitter account = https://twitter.com/CovenCoin



Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CovenDev on April 20, 2015, 04:05:22 AM
I don't think that Bittrex will list this coin without a block explorer... it's one of their requirements  :)

Block Explorer should be up shortly; official Coven Coin twitter account = https://twitter.com/CovenCoin



Yes, there is a Block Explorer , which is being done by a reliable and credible source,  http://getjumbucks.com/#resources . Simply awaiting delivery to post it along with other relative information. I apologize for the delay.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: prospecta on April 20, 2015, 06:06:59 AM
TIME TO DUMP THIS SHITTER TOO MANY OTHER HOT COINS AND NO GOOD EXCHANGE ADS

RED TEXT OF DOOM HAS SPOKEN.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: proletariat on April 20, 2015, 06:11:58 AM


Biggest troll in this thread right now is prospecta, I caught him in the box bragging about selling at 360k. he admits he is a troll, while he sits here and taunts the community. beware of people like this all over this bitcointalk forum.

https://i.imgur.com/dQcImYu.png


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: CryptoClub on April 20, 2015, 06:14:49 AM


Biggest troll in this thread right now is prospecta, I caught him in the box bragging about selling at 360k. he admits he is a troll, while he sits here and taunts the community. beware of people like this all over this bitcointalk forum.

https://i.imgur.com/dQcImYu.png

Yes, caution is advised. The other "hot" coins are overpriced.


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Black Mamba on April 20, 2015, 06:15:33 AM
TIME TO DUMP THIS SHITTER TOO MANY OTHER HOT COINS AND NO GOOD EXCHANGE ADS

RED TEXT OF DOOM HAS SPOKEN.





Pink suits you better!  :-*


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: prospecta on April 20, 2015, 06:24:31 AM
KEEP DUMPING THIS WILL BE WORTH NOTHING IN 24 HOURS!


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: megabuxx on April 20, 2015, 06:29:59 AM
KEEP DUMPING THIS WILL BE WORTH NOTHING IN 24 HOURS!

Where is your buy order at?


Title: Re: [ANN] [COV] Coven Coin [SHA256] [POW] [POS] [Ninja]
Post by: Black Mamba on April 20, 2015, 06:50:41 AM
DID YOU SELL TO EARLY???  :D :D  



https://i.imgur.com/eiQecEf.png


Title: Re: [ANN] [COV] Coven Coin (old thread locked, link to new thread in ann)
Post by: CovenDev on April 21, 2015, 09:45:54 AM
thread locked and  moved to https://bitcointalk.org/index.php?topic=1032465.0 (https://bitcointalk.org/index.php?topic=1032465.0)