Bitcoin Forum
June 30, 2024, 01:57:05 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: [ANN][MINEABLE ERC20 TOKEN] 0xCATE - CatEther, Free transactions for everyone.  (Read 848 times)
croTek4 (OP)
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


the Cat-a-clysm.


View Profile
May 04, 2018, 06:38:00 PM
Last edit: May 31, 2018, 12:04:38 PM by croTek4
 #1


0xCA7E

*heavy breathing*

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


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

    AMD GPU Miner software  [Windows]    :https://github.com/mining-visualizer/MVis-tokenminer/releases
 NVIDIA GPU Miner software  [Linux]     :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

Catether is an open source mineable ERC20 Token, powered by Cates.
croTek4 (OP)
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


the Cat-a-clysm.


View Profile
May 04, 2018, 08:55:28 PM
 #2

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 Smiley

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

Catether is an open source mineable ERC20 Token, powered by Cates.
Saugani
Member
**
Offline Offline

Activity: 672
Merit: 35

#BUIDL team to become delegates-validator


View Profile WWW
May 05, 2018, 07:28:25 AM
 #3

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  Huh

Asgeirsk
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile
May 05, 2018, 05:38:57 PM
 #4

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  Huh

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..
EatMyPoopiePies
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
May 06, 2018, 01:51:04 AM
 #5

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!
DBProductions
Jr. Member
*
Offline Offline

Activity: 68
Merit: 1


View Profile
May 06, 2018, 02:01:59 AM
 #6

How can I mine this coin? Ive never mined...
croTek4 (OP)
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


the Cat-a-clysm.


View Profile
May 06, 2018, 03:50:04 AM
 #7

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

Catether is an open source mineable ERC20 Token, powered by Cates.
emmaeducatorxx
Newbie
*
Offline Offline

Activity: 107
Merit: 0


View Profile
May 06, 2018, 03:52:57 AM
 #8

This one seems actually quite interesting. Will be mining this on release.
EatMyPoopiePies
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
May 06, 2018, 05:24:57 PM
 #9

This one seems actually quite interesting. Will be mining this on release.

It has been released.  Smiley
Jocolyn
Newbie
*
Offline Offline

Activity: 150
Merit: 0


View Profile
May 06, 2018, 06:20:18 PM
 #10

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?
croTek4 (OP)
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


the Cat-a-clysm.


View Profile
May 07, 2018, 12:03:51 PM
 #11

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 Smiley

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

Catether is an open source mineable ERC20 Token, powered by Cates.
Saugani
Member
**
Offline Offline

Activity: 672
Merit: 35

#BUIDL team to become delegates-validator


View Profile WWW
May 10, 2018, 07:18:22 AM
 #12

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  Huh

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.

croTek4 (OP)
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


the Cat-a-clysm.


View Profile
May 10, 2018, 10:56:39 PM
 #13

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  Huh

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 Smiley

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 !   Grin

Catether is an open source mineable ERC20 Token, powered by Cates.
croTek4 (OP)
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


the Cat-a-clysm.


View Profile
May 14, 2018, 05:45:03 PM
 #14

We've been officially listed on Enclaves.io !

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

Join the Cate-A-Clysm :3

Catether is an open source mineable ERC20 Token, powered by Cates.
visax
Newbie
*
Offline Offline

Activity: 322
Merit: 0


View Profile
May 15, 2018, 07:16:20 AM
 #15

Hello dev,

Reserved indonesian translate.
ikhub
Jr. Member
*
Offline Offline

Activity: 143
Merit: 2


View Profile
May 15, 2018, 07:27:58 AM
 #16

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?
croTek4 (OP)
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


the Cat-a-clysm.


View Profile
May 15, 2018, 07:29:33 AM
 #17

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 !

Catether is an open source mineable ERC20 Token, powered by Cates.
croTek4 (OP)
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


the Cat-a-clysm.


View Profile
May 15, 2018, 07:34:58 AM
 #18

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". Cheesy

Catether is an open source mineable ERC20 Token, powered by Cates.
visax
Newbie
*
Offline Offline

Activity: 322
Merit: 0


View Profile
May 15, 2018, 07:42:19 AM
 #19

Dev, i already send you message
so, are you reading my message or nothing?
croTek4 (OP)
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


the Cat-a-clysm.


View Profile
May 15, 2018, 07:53:19 AM
 #20

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 Smiley
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

Catether is an open source mineable ERC20 Token, powered by Cates.
Pages: [1] 2 »  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!