Bitcoin Forum

Alternate cryptocurrencies => Announcements (Altcoins) => Topic started by: croTek4 on May 04, 2018, 06:38:00 PM



Title: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: croTek4 on May 04, 2018, 06:38:00 PM

0xCA7E

*heavy breathing*

CatEther is an open source mineable ERC20 Token,
meaning it's only obtainable through Proof of Work.

https://www.catether.org/ (https://www.catether.org/)
Discord : https://discordapp.com/invite/XBRaEcW (https://discordapp.com/invite/XBRaEcW)
Telegram Supurr'-group : https://t.me/joinchat/G0Ya5ErA1rGcFaDFbtcBJA (https://t.me/joinchat/G0Ya5ErA1rGcFaDFbtcBJA)

CATETHER WILL GO LIVE ON CATURDAY NIGHT (May 5th), AT 10PM UTC:

NVIDIA GPU Miner software [Windows] :https://bitbucket.org/LieutenantTofu/cosmic-v3/downloads/ (https://bitbucket.org/LieutenantTofu/cosmic-v3/downloads/)
    AMD GPU Miner software  [Windows]    :https://github.com/mining-visualizer/MVis-tokenminer/releases (https://github.com/mining-visualizer/MVis-tokenminer/releases)
 NVIDIA GPU Miner software  [Linux]     :http://mike.rs/0xbitcoin-linux-2018-04-04.zip (http://mike.rs/0xbitcoin-linux-2018-04-04.zip)                        

Why CatEther ?

CatEther introduces a new mechanic: "Proof of Use". Short version: transfers fees are covered with newly created CATEs.
Long version : Each time you make a transfer, or use the "transferFrom" delegated transfer function, it will mint 1 CATE to the address from which the transaction comes from.
Since it always costs around the same gas price (but not the same GWei price), depending on the gas price of your transaction... It either costs, or gives you money.
In practice, one Cate will always be pegged to, or under the median gas price of the Ethereum network, multiplied by 42000 (that's the gas cost of sending CATEs).
The Ethereum miners are basically selling CATEs, now.

"A Cat-aclysm on Ethereum network" - New York Times

Also, you can use that feature to make micro-transactions at every transfer you make. A great way to create some savings without thinking about it, or,
donate to the Research against Cancer each time you buy a coffee... possibilities are endless.

One of my next project will be to create a game that takes advantage of that token, to make the first viable (cash-wise) game on the Ethereum platform.
A free-to-play game, not a " 'free'-to-play-if-you're-already-holding-10000-ETH-because-who-gives-a-f*ck-about-0.00005ETH-at-that-point-eh" game.
Free as in really free. (Take that, Cryptokitties)

No ICO.

"Don't fucking move" - the SEC Board

There will be no ICO whatsoever, just mining. You come, you mine it, you get tokens. Or, you make empty transactions to yourself, and buy your tokens to a 42000gas/Cate price.
Fun fact: anyone can buy tokens this way... transaction "Mining", may I say. Anyway, it's the first kind of mining experience that will never, ever, require you to have costly hardware.
Broadcast transactions to the Ethereum network, get your reward. You don't even need CATEs to start with, you can just send a transaction of 0 CATE, it works.
It's fucking weird, but really, it's harmless. When you think about this, it still costs gas to do so, so, there are no real "free" money, just a very funny way to distribute new tokens.

The more people use the contract, the more stable that transaction economy will be. At one point, it will really cover a significant portion of your transfer fees at any time.

"Purrfect." - Vitalik Buterin

Block rewards
We like Dogecoin. After all, between memes, we understand each other. But halving is kinda harsh for a mining community, so, it will be slightly better.
Let's take a look at the source code :

Code:
//There's no limit to the coin supply
    //reward follows more or less the same emmission rate as Dogecoins'. 5 minutes per block / 105120 block in one year (roughly)
    function getMiningReward() public constant returns (uint) {
        bytes32 digest = solutionForChallenge[challengeNumber];
        if(epochCount > 160000) return (50000   * 10**uint(decimals) );                                   //  14.4 M/day / ~ 1.0B Tokens in 20'000 blocks (coin supply @100'000th block ~ 150 Billions)
        if(epochCount > 140000) return (75000   * 10**uint(decimals) );                                   //  21.6 M/day / ~ 1.5B Tokens in 20'000 blocks (coin supply @100'000th block ~ 149 Billions)
        if(epochCount > 120000) return (125000  * 10**uint(decimals) );                                  //  36.0 M/day / ~ 2.5B Tokens in 20'000 blocks (coin supply @100'000th block ~ 146 Billions)
        if(epochCount > 100000) return (250000  * 10**uint(decimals) );                                  //  72.0 M/day / ~ 5.0B Tokens in 20'000 blocks (coin supply @100'000th block ~ 141 Billions) (~ 1 year elapsed)
        if(epochCount > 80000) return  (500000  * 10**uint(decimals) );                                   // 144.0 M/day / ~10.0B Tokens in 20'000 blocks (coin supply @ 80'000th block ~ 131 Billions)
        if(epochCount > 60000) return  (1000000 * 10**uint(decimals) );                                  // 288.0 M/day / ~20.0B Tokens in 20'000 blocks (coin supply @ 60'000th block ~ 111 Billions)
        if(epochCount > 40000) return  ((uint256(keccak256(digest)) % 2500000) * 10**uint(decimals) );   // 360.0 M/day / ~25.0B Tokens in 20'000 blocks (coin supply @ 40'000th block ~  86 Billions)
        if(epochCount > 20000) return  ((uint256(keccak256(digest)) % 3500000) * 10**uint(decimals) );   // 504.0 M/day / ~35.0B Tokens in 20'000 blocks (coin supply @ 20'000th block ~  51 Billions)
                               return  ((uint256(keccak256(digest)) % 5000000) * 10**uint(decimals) );                         // 720.0 M/day / ~50.0B Tokens in 20'000 blocks
    }

So, Here's how it goes :
Block Time: 5 minutes
Supply cap: None. (150 Billion tokens after 18 Months)
Era time: 20 000 blocks (around 69 days. sexy)
Number of Eras : 9 (a Cate haz 9 liefs)
Rewards : Completely random until block 60'000th, fixed thereafter.

Era 1: Between 0 and 4 999 999 CATEs/block (720.0M /day)
Era 2: Between 0 and 3 499 999 CATEs/block (504.0M /day)
Era 3: Between 0 and 2 499 999 CATEs/block (360.0M /day)
Era 4: 1 000 000 CATEs/block (288.0M /day)
Era 5: 500 000 CATEs/block (144.0M /day)
Era 6: 250 000 CATEs/block (72.0M /day)
Era 7: 125 000 CATEs/block (36.0M /day)
Era 8: 75 000 CATEs/block (21.6M /day)
Era 9 and above: 50 000 CATEs/block (14.4M /day , 5.25B/year)

There is a pre-mine of 1 337 Million Cates.

As we don't do an ICO, but Catether Foundation needs funds to make its project work on the long-term, we need investments.
Running a mining pool costs Ethers and $, as there's need for servers and gas to make the Mint transactions. So, yeah, we will premine what would be
less than 1% of the total supply of the token in 1year.
We will use theses tokens to cover the expanses of running a pool for everyone to mine for free (solo-mining costs gas, on the Ethereum platform),
Make Grand Prizes, tournaments, bounties... Do things that any community would want to see. All the other Tokens have theses mechanics in place, why not us ?
We want people who use Cates to know this token won't be manipulated by shady investors that controls most of the coin's supply. Here, Mining rewards defines everything. We have a precise goal: make transactions free.

"One more token like this and I'm on the dole." - John Mc Affee


Title: Re: [ANN][MINEABLE TOKEN] 0xCATE - Catether, Free transactions for everyone.
Post by: croTek4 on May 04, 2018, 08:55:28 PM
Hey. I just created a page for Cat Ether on ConcourseQ and you can find it here https://concourseq.io/Q/Cat_Ether
ConcourseQ is a collaborative due diligence community that researches and reviews ICOs. It's all community sourced and you can join-in and engage in the discussion. See you there!
PS: If you have any questions about filling any the info, feel free to ask us in our discord group: https://discord.gg/j8RBAwB


Oh, that's pretty sweet, thanks !

Indeed, we are in deep need of coverage. To get that coverage, we need a thriving community, and to get a thriving community, you need coverage. That's kind of a never-ending issue, fortunately we'll manage to get a userbase to start from :)

However we aren't an ICO, there are no token sale or whatsoever. Instead, you can mine, or mint tokens through transactions. :)


Title: Re: [ANN][MINEABLE TOKEN] 0xCATE - Catether, Free transactions for everyone.
Post by: Saugani on May 05, 2018, 07:28:25 AM
Hi...

What the Cates?
This 0xCate use mineable or Token guys?

What the algo hashing?
This using on network ethereum if there to mineable. Please I don’t no for your project  ???


Title: Re: [ANN][MINEABLE TOKEN] 0xCATE - Catether, Free transactions for everyone.
Post by: Asgeirsk on May 05, 2018, 05:38:57 PM
Hi...

What the Cates?
This 0xCate use mineable or Token guys?

What the algo hashing?
This using on network ethereum if there to mineable. Please I don’t no for your project  ???

Its a mineable token. The algo is similar to Keccak-256 and will be mined from Ethereum network (yes, that is right).

There are miners available, but no pools yet afaik..


Title: Re: [ANN][MINEABLE TOKEN] 0xCATE - Catether, Free transactions for everyone.
Post by: EatMyPoopiePies on May 06, 2018, 01:51:04 AM
I was expecting to see a bit more people posting here.
Solo mining (currently there are no pools) is going well, but I see a bunch of people having issues understanding how to get started. Due to this, I am pasting the guide that has been shared and pinned on Telegram below.

Quote
- Download the Mining software from the link on the official website, or the official Bitcointalk thread.
- launch the miner
- type "account new"
it should prompt you and ask to set a new password. Enter a password (be careful, there are no double checks. If you fail this and enter a password you then don't know where you fucked up, go to the Troubleshoot step)

- type "contract select 0x8f7dbf90e71285552a687097220e1035c2e87639" , 0xXXXXX being the Catether's smart contract address
- type "config web3provider https://mainnet.infura.io/gmXEVo5luMPUGPqg"     (it's an "L" lowercase, not a " i " uppercase 🙂)

solo mining :
- type "config gasprice X". (X should be between 3 and 11 Gwei; check on ethgasstation.info for more precision
- type "account list". Write down the public address that shows up as "selected account"
- send some Ether on the address that shows up above.
- type "mine cuda"   (Solo-mining with a CPU won't work, unless you're the most lucky guy on earth, ahah)

pool mining:
- type "pool select http://#####.com:###" (this should be the address provided by your pool)
- type "pool mine cuda", or "pool mine" if you don't have a GPU (I wouldn't recommend to mine with your CPU, though, it's inefficient)


troubleshooting :
- go in ~/AppData/Roaming/.0xbitcoin/0xbtcminerstore/ and delete the vaultdata file. Go back to step one.

I hope this helps a few people and I look forward to seeing everyone on Discord/Telegram!


Title: Re: [ANN][MINEABLE TOKEN] 0xCATE - Catether, Free transactions for everyone.
Post by: DBProductions on May 06, 2018, 02:01:59 AM
How can I mine this coin? Ive never mined...


Title: Re: [ANN][MINEABLE TOKEN] 0xCATE - Catether, Free transactions for everyone.
Post by: croTek4 on May 06, 2018, 03:50:04 AM
How can I mine this coin? Ive never mined...

Hi there !

Just join our Discord channel, or our Telegram there. We're always there to help people getting started !
Ca't wait to see you there :3


Title: Re: [ANN][MINEABLE TOKEN] 0xCATE - Catether, Free transactions for everyone.
Post by: emmaeducatorxx on May 06, 2018, 03:52:57 AM
This one seems actually quite interesting. Will be mining this on release.


Title: Re: [ANN][MINEABLE TOKEN] 0xCATE - Catether, Free transactions for everyone.
Post by: EatMyPoopiePies on May 06, 2018, 05:24:57 PM
This one seems actually quite interesting. Will be mining this on release.

It has been released.  :)


Title: Re: [ANN][MINEABLE TOKEN] 0xCATE - Catether, Free transactions for everyone.
Post by: Jocolyn on May 06, 2018, 06:20:18 PM
Who are the teams in this project ? is there any bounty in this project besides social media ? Could you give us more information about it?


Title: Re: [ANN][MINEABLE TOKEN] 0xCATE - Catether, Free transactions for everyone.
Post by: croTek4 on May 07, 2018, 12:03:51 PM
Who are the teams in this project ? is there any bounty in this project besides social media ? Could you give us more information about it?


Of course ! The team is, at the moment, really small. It's just two people: me and another Dev'. We really want to do a laid-back token, with straightforward mechanics. Since we released our Cates only a few days ago, we didn't have the time to do any significant progress on social media;

since we didn't make any ICO, we also don't have a lot of funds for this project. Instead, we have a small premined compared to the soon-to-be coin supply, and it will help us to pay for media coverage, marketing, more releases, more projects built around this one :)

There really are a lot of opportunities with a system that makes transaction fees close to 0 !
Spread the word :)


Title: Re: [ANN][MINEABLE TOKEN] 0xCATE - Catether, Free transactions for everyone.
Post by: Saugani on May 10, 2018, 07:18:22 AM
Hi...

What the Cates?
This 0xCate use mineable or Token guys?

What the algo hashing?
This using on network ethereum if there to mineable. Please I don’t no for your project  ???

Its a mineable token. The algo is similar to Keccak-256 and will be mined from Ethereum network (yes, that is right).

There are miners available, but no pools yet afaik..


Today, when to launched of pool mine guys?
So, do you have detail explorer or reward block.


Title: Re: [ANN][MINEABLE TOKEN] 0xCATE - Catether, Free transactions for everyone.
Post by: croTek4 on May 10, 2018, 10:56:39 PM
Hi...

What the Cates?
This 0xCate use mineable or Token guys?

What the algo hashing?
This using on network ethereum if there to mineable. Please I don’t no for your project  ???

Its a mineable token. The algo is similar to Keccak-256 and will be mined from Ethereum network (yes, that is right).

There are miners available, but no pools yet afaik..


Today, when to launched of pool mine guys?
So, do you have detail explorer or reward block.

Our pool is available at http://www.catether.org:3000 , come join us :)

For the ones wondering what Cate is currently trying to achieve in the short-to-mid term, in that order :
- Find a way to keep our pool up and running so that mining can be accessible for anyone. This really is our main concern.
- Release a whitepaper explaining all the inner workings of 0xCATE, and its consequences on the Transaction Market.
- Apply to more exchanges, keep spreading the word about our community
- Contact NGOs and charitable foundations (e.g. research Against Cancer, Doctors without borders, etc), and ask them to create an Ether Address so that we can actually make the Donation feature useful. Cate is also about donating for a better world.
- Keep building a community from that
- Release our first product (that would be a quite simple game), that would distribute all the earning to the aforemented NGOs and charitable foundations.
- More marketing
- Build the first DEX on Ethereum that would be free of any fees. It would also be free to use at that point, or at the very least, cheaper than any other DEX since you get refunded in Cates each time you interact with the contract.
- We'll see later for what's next
We also though about revamping our visual identity, as going full-on meme can actually hurt us in the mid-to-long term.
We first thought it would be a good idea, since memes can spread fast, but in the end, maybe we went too far.

We're on a short schedule !   ;D


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: croTek4 on May 14, 2018, 05:45:03 PM
We've been officially listed on Enclaves.io !

https://www.enclaves.io/trade/0xCATE

Join the Cate-A-Clysm :3


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: visax on May 15, 2018, 07:16:20 AM
Hello dev,

Reserved indonesian translate.


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: ikhub on May 15, 2018, 07:27:58 AM
Very unfair launch in an effort to perhaps give an upper edge to some. The miner available is only for window 64, what about the ones who are still using 32?


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: croTek4 on May 15, 2018, 07:29:33 AM
We've been officially listed on Enclaves.io !

https://www.enclaves.io/trade/0xCATE

Join the Cate-A-Clysm :3
lol, mineable tokens and doesn't use Claymore.
I found the information in the pool that I have to use MVIs token  miner to mine 0xCATE.
So, can I use Claymore to mine this one, dev?
Thanks for your answers and guideline in advance.

Since all the calculations and hashes are done accordingly to the smart-contract implementation, it isn't compatible with Claymore as of now. Maybe, in the near future, will they add our specific algorithm to Claymore. In the meantime, some freelance developers helped us to create a full-CUDA/C++ miner that takes advantage of the superior power of GPUs.
Just use the MVIs, or CosmiC miner; hit us up on Discord if you struggle, we will gladly help you !


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: croTek4 on May 15, 2018, 07:34:58 AM
Very unfair launch in an effort to perhaps give an upper edge to some. The miner available is only for window 64, what about the ones who are still using 32?

Actually, compared to any other cryptocurrency, whose either used an ICO as a way to launch their tokens, or doing weird airdrops that end up distributing all the tokens to only a handful of people taking advantage of Sybil Attack vulnerabilities and such, we're pretty proud of the current, already very even distribution.

Technically, in the long-term, you won't even need any kind of hardware to get Cates: you will just have to send a transaction to the network, and will be funded with Cates (just 1 Cate, but still; you won't need any sort of hardware to get that one.)

In the longterm, once the number of transactions go past the 20tx/s threshold, there will be more Cates created by this feature than with Proof-of-Work, making it a fairer, more broadly distributed supply, from which anyone could "tap off". :D


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: visax on May 15, 2018, 07:42:19 AM
Dev, i already send you message
so, are you reading my message or nothing?


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: croTek4 on May 15, 2018, 07:53:19 AM
Dev, i already send you message
so, are you reading my message or nothing?

Hello Visax ! Sorry for not getting back to you sooner;

Please feel free to make an Indonesian version of this thread ; let me know when you've finished :)
There aren't bounties at this moment, but we're doing progress in that regard; since we didn't have funds from a "standard" (but mostly flawed and corrupted) ICO, it's all done with faith and determination ! Our community grows stronger each day, feel free to take part of this adventure


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: croTek4 on May 15, 2018, 08:14:23 AM
Since all the calculations and hashes are done accordingly to the smart-contract implementation, it isn't compatible with Claymore as of now. Maybe, in the near future, will they add our specific algorithm to Claymore. In the meantime, some freelance developers helped us to create a full-CUDA/C++ miner that takes advantage of the superior power of GPUs.
Just use the MVIs, or CosmiC miner; hit us up on Discord if you struggle, we will gladly help you !
Hey dev,
Would you mind considering to add mining profit calculator into the website of 0xCATE project, please.
I would like to know about the potential profitability before start mining.
Thank you.

Will do ! We're still trying to have a working Stats website witch would monitor the current state of 0xCATE;
we will add a mining profitability calculator; currently, you can still evaluate it by looking at the Contract on Etherscan. In the "Read Contract" section, pick up the difficulty number, and divide it by 50. It will give you the current Network hashrate (or, at least, a close approximation). Then, divide your hashrate by this number, and you will have the fraction of the daily 720M minted tokens that you can expect to earn :)
One GTX1080 yields around 800-1000MH/s, depending on the quality of the card; an RX570 will yield around 350MH/s. Hope it helped !


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: cattano on May 15, 2018, 08:24:20 AM
I was thinking about CatEther game product, hopefully there will be some interesting game that will born from it, although it's all free.
Being a free game should be able to give impression to the people, that a free game is still have it's own pride and value, without removing the quality of the game itself.


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: croTek4 on May 15, 2018, 08:30:27 AM
I was thinking about CatEther game product, hopefully there will be some interesting game that will born from it, although it's all free.
Being a free game should be able to give impression to the people, that a free game is still have it's own pride and value, without removing the quality of the game itself.

You've read into my mind, ahah

To a bigger extent, we're also aiming at creating a decentralized exchange that will use CatEther as a way to reduce the transaction fees, thus, the trading fees. It will definitely take us some time to release such infrastructure, and the level of required security in such DAO is more-than-critical.

So, first, we will do something that is less critical in terms of security, thus, a video-game. Something that isn't like Cryptokitty, or any other "game" that are just like Beany-Babies.online ;)


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: koralan on May 15, 2018, 08:37:36 AM
I read the project and found that people could save some money by simply transferring money or using the "transferFrom" transfer function. As such, your transactions are free. The amount of CATE you accumulate can be profitable for the transaction.
When involved in this platform, the opportunity is more for us. I like and look forward to the free CatEther product.


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: croTek4 on May 15, 2018, 09:46:20 AM
I read the project and found that people could save some money by simply transferring money or using the "transferFrom" transfer function. As such, your transactions are free. The amount of CATE you accumulate can be profitable for the transaction.
When involved in this platform, the opportunity is more for us. I like and look forward to the free CatEther product.

In practice, 0xCATE price won't be higher than the median value of a transaction. But yeah, also in practice, it should cover a significant amount of your transfer fees. In some best-case scenarios, it could even be profitable to do 0xCATE transactions in itself, filling each blocks with low-gas-price transactions.

It has two consequences: first, since Ethereum blocks can get bigger over time, depending on whether they are filled or not, 0xCATE will help in making Ethereum's throughput higher. And since there will be more transactions, it will reduce the price of transfers (since the "offer" of available tx/s will increase). As a result, more 0xCATE will be minted through transactions, which will make us enter in a feedback loop that will both make Transactions cheaper, and coin supply higher. In the end, transactions will still be free, but there will be more coins in circulation, at a same, or lower price.

When we reach the "target price" (a.k.a. transaction cost), both token price and transaction price will start to slowly decrease, at the rate of the 0xCATE emission rate. Since the number of tx/s on Earth grows at about 8%/year, if we do nothing, Ethereum gas price should increase by the same amount. However, since 0xCate has a similar inflation-%-rate, it will make everything more stable. :)


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: voBits Exchange on May 15, 2018, 09:55:37 AM
Interesting project and hope that its sustain its value over time


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: ottogary on May 15, 2018, 09:56:10 AM
This was said that CatEther will be live at 5th of may, does it means the token already available to be trade?
Which market has this loken listed right now?


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: croTek4 on May 15, 2018, 10:02:01 AM
This was said that CatEther will be live at 5th of may, does it means the token already available to be trade?
Which market has this loken listed right now?

Yep ! You can trade it on Enclaves.io : https://www.enclaves.io/trade/0xCATE

Also, you can check out the 0xCATE smartcontract on Etherscan, the source-code is available and everything :)
https://etherscan.io/token/0x8f7dbf90e71285552a687097220e1035c2e87639


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: guystyles on June 02, 2018, 04:12:38 AM
Why don't you guys contact the cryptokitties team, and work with them, instead of trying to compete with them?


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: croTek4 on June 06, 2018, 12:06:07 PM
Why don't you guys contact the cryptokitties team, and work with them, instead of trying to compete with them?

Because we actually don't compete with there, 0xCATE is a totally independent token, working solely through Proof of Work and Proof of Use.
There might be games revolved around 0xCATE in the near future, stay tuned for more infos !
Join our Discord channel, as all the activity is there  ;D


Title: Re: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.
Post by: tillerthekiller on June 07, 2018, 02:29:16 PM
I'm into this one!