Pages:
Author

Topic: [ANN] [FIRE] - Firecoin - NEW DEV- PoS 1%- 97K Max+ Thread Moved - page 5. (Read 29079 times)

legendary
Activity: 1932
Merit: 1003
Pretty sure your dev has moved onto here:  https://bitcointalk.org/index.php?topic=675509.0

Shit! If he did move there.

Come on, BCT should have showed an IP address on each user post.

Looking at the code, it is based on the changes I proposed in TECH, so I am even more certain it is the same person.

Same exact formula, first two blocks are the premine, and PoS starts the second PoW ends.  Formula for a scamtastic failure.

It's the work of this guy.  https://www.facebook.com/carsen.klock  Guess, he didn't land the $6000/month graphic design job so he's going get it by launching a bunch of pump and dump coins. 

Just curious how do you guys know this? Not saying you are not right.

Look at my previous posts.  Some have been deleted due to self moderating threads. The guy has tells, I have an eye for detail.  Also, noticed how active he was before his coin gets listed on an exchange and once it's listed, he's nowhere to be found after he dumps them.  He's done this with every single coin he created. Hypes it up and dumps it.  He's also horrible at math. The guy has been wrong with the total amount of coins on all of his coins, even this one.  Pretty sure he sat next to the Asian kid in math class to get by high school.  lol
hero member
Activity: 826
Merit: 500
Pretty sure your dev has moved onto here:  https://bitcointalk.org/index.php?topic=675509.0

Shit! If he did move there.

Come on, BCT should have showed an IP address on each user post.

Looking at the code, it is based on the changes I proposed in TECH, so I am even more certain it is the same person.

Same exact formula, first two blocks are the premine, and PoS starts the second PoW ends.  Formula for a scamtastic failure.

It's the work of this guy.  https://www.facebook.com/carsen.klock  Guess, he didn't land the $6000/month graphic design job so he's going get it by launching a bunch of pump and dump coins. 

Just curious how do you guys know this? Not saying you are not right.
legendary
Activity: 1932
Merit: 1003
Pretty sure your dev has moved onto here:  https://bitcointalk.org/index.php?topic=675509.0

Shit! If he did move there.

Come on, BCT should have showed an IP address on each user post.

Looking at the code, it is based on the changes I proposed in TECH, so I am even more certain it is the same person.

Same exact formula, first two blocks are the premine, and PoS starts the second PoW ends.  Formula for a scamtastic failure.

It's the work of this guy.  https://www.facebook.com/carsen.klock  Guess, he didn't land the $6000/month graphic design job so he's going get it by launching a bunch of pump and dump coins. 
full member
Activity: 140
Merit: 100
Would it be possible to do randomly chancing pos % so people would keep their wallet open in order to catch those high percentages?
Should be possible, not sure if it's needed though.  It would be fun to try to make random 100% blocks so that over a year it's like 10%...  seems like a lot of work for not much reward though.


Probably noticed the source code fork...  Nothing here of course, just twitter...
sr. member
Activity: 392
Merit: 250

Shit! If he did move there.

Come on, BCT should have showed an IP address on each user post.

Looking at the code, it is based on the changes I proposed in TECH, so I am even more certain it is the same person.

Same exact formula, first two blocks are the premine, and PoS starts the second PoW ends.  Formula for a scamtastic failure.
At least the "dev" is good at speech.Smiley
full member
Activity: 140
Merit: 100
Pretty sure your dev has moved onto here:  https://bitcointalk.org/index.php?topic=675509.0

Shit! If he did move there.

Come on, BCT should have showed an IP address on each user post.

Looking at the code, it is based on the changes I proposed in TECH, so I am even more certain it is the same person.

Same exact formula, first two blocks are the premine, and PoS starts the second PoW ends.  Formula for a scamtastic failure.
full member
Activity: 140
Merit: 100
I think the firecoin whitepaper that was suppose to be released yesterday was used for isiscoin.  lol

http://www.isiscoin.info/Isiscoin-Whitepaper.pdf
So they are one dev?

I posted this and it got deleted, so probably...

Quote
It would be reassuring to know what regular user the dev IS on the forum, obviously not actually a noob.

All the scammiest coins are put out with these noob accounts - easy to walk away without anyone knowing who to contact.

We don't need your real identity, that would be pointless here anyhow, but to trust that you aren't a fraudulent scam coin dev jumping from coin to coin, at least tell us about your previous work(s).
legendary
Activity: 3248
Merit: 1070
Sigh... i wish that these forums would add an option to register as DEV and make it significally harder to make multiple accounts. Let's wait for a day and then i vote for a fork.

you can, you know ignore every coin with newbie dev, as long as miner will mine it, newbie dev will produce more shit
full member
Activity: 140
Merit: 100
you should fork this and reduce the slow confirmations...

Forked but I have not submitted a pull request to the "dev" yet.

This is a big change to the fundamental ideas behind the coin...

I say we bump the PoS reward to 10% so there is at least SOME incentive to stake, drop PoW reward on the floor and keep it going long-term.  I tried keeping with the original ideas of TECHcoin when forking, but the original ideas were the failure point, as it seems this coin has them too.  I know the coin total will grow a lot faster than originally proposed, but it should stabilize the usability, and therefore is a reasonable trade off.  Best to do it all in one shot so there aren't a series of updates.

What I propose (let me know if these changes are correct for what I want it to do please)

https://github.com/edn247/Firecoin/compare/patch-1

Change base PoW reward to 0.05 coins from 5 coins:
967  -    int64_t nSubsidy = 5 * COIN;
967  +    int64_t nSubsidy = 0.05 * COIN;

Change last PoW block from 4k to 400M:
29  -static const int LAST_POW_BLOCK = 4000;
29  +static const int LAST_POW_BLOCK = 400000000;

Change PoS reward to 10%
 (thinking having this reduce over time may be wise, will work on figuring how to make that work
 [first attempt: after a year /10, so back to 1%]
https://github.com/edn247/Firecoin/commit/de5a340bca2233f45ca6f26f222007b0ba69cb4a)

39  -static const int64_t COIN_YEAR_REWARD = 1 * CENT; // 1% per year
40  -static const int64_t MAX_MINT_PROOF_OF_STAKE = 0.01 * COIN;   // 1% annual interest
39  +static const int64_t COIN_YEAR_REWARD = 10 * CENT; // 10% per year
40  +static const int64_t MAX_MINT_PROOF_OF_STAKE = 0.1 * COIN;   // 10% annual interest

Thoughts on these and any other changes you think would help this coin are appreciated.  Let's make this a community effort and discuss!
sr. member
Activity: 392
Merit: 250

You can look through the post history of the "authors". The writing styles are very similar!  Smiley  Cool

I call these scam coins promise coins. Yeah, we'll put that feature in later after we dump on you
Just hypes
newbie
Activity: 34
Merit: 0

You can look through the post history of the "authors". The writing styles are very similar!  Smiley  Cool

I call these scam coins promise coins. Yeah, we'll put that feature in later after we dump on you
sr. member
Activity: 392
Merit: 250
I think the firecoin whitepaper that was suppose to be released yesterday was used for isiscoin.  lol

http://www.isiscoin.info/Isiscoin-Whitepaper.pdf
So they are one dev?
legendary
Activity: 1932
Merit: 1003
I think the firecoin whitepaper that was suppose to be released yesterday was used for isiscoin.  lol

http://www.isiscoin.info/Isiscoin-Whitepaper.pdf
newbie
Activity: 59
Merit: 0

Shit! If he did move there.

Come on, BCT should have showed an IP address on each user post.
full member
Activity: 140
Merit: 100
Pretty sure your dev has moved onto here:  https://bitcointalk.org/index.php?topic=675509.0

+1

I vote for a drastic fork.  I'll try to sort this mess out, to the best of my skills.
full member
Activity: 126
Merit: 100
One thing that devs need to learn: They need to actively comment on their own threads if they want their coin to gain satoshis. Devs tend to dump it too early. They would make triple even 10X if they stay active in the thread.
newbie
Activity: 24
Merit: 0
The dev has not add bittrex to op yet after more than a day.No hope.Just another piece of Chinese shitcoin.I'm out
sr. member
Activity: 392
Merit: 250
The dev has not add bittrex to op yet after more than a day.No hope.Just another piece of Chinese shitcoin.I'm out!
Pages:
Jump to: