Bitcoin Forum
June 23, 2024, 08:52:47 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [ANN][MINEABLE TOKEN] 0xCATE - ERC20 TOKEN, BUT WITH POW.  (Read 276 times)
croTek4 (OP)
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


the Cat-a-clysm.


View Profile
May 07, 2018, 12:33:02 PM
Last edit: May 07, 2018, 04:17:16 PM by croTek4
 #1

We have a pool open to everyone wanting to mine Catether, one of the first mineable ERC20 Token !
It follows the new EIP918 Standard.
Come and get it ! http://www.catether.org:3000


0xCA7E

*heavy breathing*

Catether is an open source mineable ERC20 Token, powered by Cates.


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 07, 2018, 04:16:22 PM
 #2

So, no one wants to get a grasp at the first mineable ERC20 tokens on Earth ?
We already have like 300 miners in less than 48 Hours, just check this out ! It's a rocket, people are pulling out their giant rigs from Ethereum and Nicehash to mine with us.

Come and get some before it's too late !

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

Activity: 661
Merit: 250


View Profile
May 07, 2018, 05:01:13 PM
 #3

Pool Fee %: 15 Roll Eyes
Lio78
Newbie
*
Offline Offline

Activity: 35
Merit: 0


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

Pool Fee %: 15 Roll Eyes

Not so good...

And I cannot follow my stats in this pool.
WhyMe
Sr. Member
****
Offline Offline

Activity: 661
Merit: 250


View Profile
May 07, 2018, 05:22:36 PM
Last edit: May 07, 2018, 05:38:46 PM by WhyMe
 #5

Pool Fee %: 15 Roll Eyes

Not so good...

And I cannot follow my stats in this pool.
For me it works, but i really don't know what I'm testing Cheesy

How can we specify custom diff ?
croTek4 (OP)
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


the Cat-a-clysm.


View Profile
May 07, 2018, 09:25:16 PM
 #6

@lio78 @WhyMe

Unlike other kinds of cryptocurrencies, in order to mine tokens, you must send transactions, and they are quite expensive in gas. All in all, you'd need more than a few Ethers to run a pool for one month; and since we didn't do any ICO, nor our tokens have any price on any market yet, we're basically giving you this for free, at Catether Network's expenses  Embarrassed

So, the pool fees are the only thing that could, maybe, reimburse us; we will reduce the fess drastically once it becomes profitable to own a pool; until then, this is our only security. You can still solo mine, though, however you will have to pay for the gas

You don't have to specify custom diff, vardiff is enabled automatically and adjust to your hashrate Smiley

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

Activity: 661
Merit: 250


View Profile
May 07, 2018, 10:03:54 PM
 #7

Defaut vardiff is too high.
We can see big hashrates with lots of shares sent at low fixed diff, that is possible with nvidia miner I suppose.
I'm using the AMD miner with very poor fixed diff possibility, and the minimal value is already too high.
croTek4 (OP)
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


the Cat-a-clysm.


View Profile
May 10, 2018, 10:54:13 PM
 #8

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

Activity: 35
Merit: 0


View Profile
May 11, 2018, 04:43:45 AM
 #9

@lio78 @WhyMe

Unlike other kinds of cryptocurrencies, in order to mine tokens, you must send transactions, and they are quite expensive in gas. All in all, you'd need more than a few Ethers to run a pool for one month; and since we didn't do any ICO, nor our tokens have any price on any market yet, we're basically giving you this for free, at Catether Network's expenses  Embarrassed

So, the pool fees are the only thing that could, maybe, reimburse us; we will reduce the fess drastically once it becomes profitable to own a pool; until then, this is our only security. You can still solo mine, though, however you will have to pay for the gas

You don't have to specify custom diff, vardiff is enabled automatically and adjust to your hashrate Smiley


thanks for the explanation.
Pages: [1]
  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!