Pages:
Author

Topic: [ANN] Extremecoin (EXC) - MANDATORY UPGRADE VERSION 1.5 (Kimoto Gravity Well) - page 38. (Read 97213 times)

full member
Activity: 140
Merit: 100
What's the latest on getting this coin on an exchange?

Cryptsy has been punishing premined coins. I wouldn't hold my breath if I were you.
member
Activity: 67
Merit: 10
A %-based transaction fee is probably the wrong direction, and might actually *reduce* the net fees. Small txns (ie. most of them) will be paying less than the current fixed amount, and large transactions will be throttled in some degree, (because users will “think twice” about sending big amounts if it costs an extra %). I don't know that a coin penalizing large transfers is very sensible -- large transfers are actually preferred because they involve less processing and database overhead in the blockchain.

Also, the bitcoin txn fee is already “proportional” - relative to the computational complexity of the transaction, as it should be. In other words, if it has to assemble a 100 coin payment out of a bunch of 0.05 inputs you got, then the txfee is higher than if you already had a 100 coin input sitting there ready to go. That's why sometimes it gives you a warning and multiplies the base fee.  It might be very tricky to keep this important property, while making the total amount a percent too. You might end up with code that multiplies the *percent*, and for a complex txn suddenly wants to charge not just 1% but 10%!

I don't see the txnfee code as a good area for tinkering. Any such changes must be carefully tested on the testnet, including for extra large and small amounts.



If you want to try something reasonable and new, then fund mining with a 5% inflation after the initial 4M issue - no other fast-issue coin is doing that. So after the first 2 months, you want 5% more issued per year. From 4M, that's 200000 coins, across 105120 blocks/year, so let the final block reward stay constant at 2 coins, instead of going all the way to 0. That gives you an inflation rate of 5.256% per year going to the miners, and with only 4M issued, it can run for many years. (and actually with a constant 2 coins, the effective rate is scaling down -- i.e. after about 20 years, when there are 8M coins out, the inflation is only about 2.5%.   (If instead you want to keep the *rate* constant, then the 2 coin reward has to increase a bit into the future, which is a bit more complicated.)

(Note: if you do set an inflation minting, you need to increase MAX_MONEY - it should be very high; the limiting happens in the minting protocol. If you figure on 200,000 coins per year for 1000 years, then max money should be 200M + 4M)
legendary
Activity: 999
Merit: 1000
What's the latest on getting this coin on an exchange?

Probably best to wait more than 1.5 days?
member
Activity: 99
Merit: 10
What's the latest on getting this coin on an exchange?
hero member
Activity: 1232
Merit: 683
Tontogether | Save Smart & Win Big
Farming this interesting! Smiley
sr. member
Activity: 414
Merit: 251
Probably a happy medium in there somewhere.

Fees on all transactions prevent spam, % is fairest method, a fee cap for sizeable transactions ?
hero member
Activity: 924
Merit: 1005
Product Marketing & Promotion / Software Developer
Well the current fee system with Bitcoin is terrible too. 0.01 fee is a lot to pay and becomes out of proportion for small payments e.g 0.25 BTC.

Under the 1% or 0.1% fee system sending smaller amounts get an in proportion fee. This has not really been explored before so I imagine there will be a few version releases of this coin, improving it and adjusting it acording to community feedback.
sr. member
Activity: 363
Merit: 250
The important client update is being worked on and will fix the block reward issue, add a transaction fee percentage system, checkpoints and custom Icon's just for a more unique look. No coins will be lost, there will be no fork, the blockchain is going to stay just how it is and continue to run.

Thanks.

Aren't percentage transaction fees everything that we've been trying to get away from with crypto?  If i wanted to use a online payment system with percentage transaction fees i would just use paypal.  This is a terrible solution.
hero member
Activity: 924
Merit: 1005
Product Marketing & Promotion / Software Developer
The important client update is being worked on and will fix the block reward issue, add a transaction fee percentage system, checkpoints and custom Icon's just for a more unique look. No coins will be lost, there will be no fork, the blockchain is going to stay just how it is and continue to run.

Thanks.
hero member
Activity: 924
Merit: 1005
Product Marketing & Promotion / Software Developer
Sorry to point out, but ExtremeCoin has nothing new -- the entire idea is already in progress with IFC InfiniteCoin for several months, with a more reasonable accelerated mining schedule and a proper halving scaledown. IFC has already a large community, and building many markets and developments, and has been trading for a good while and widely distributed. So what is the point in duplicating all that - your efforts would probably be better spent contributing over there.

Further, and my main reason for posting: ExtremeCoin does not appear to implement your stated 4M limit, and will need a hard fork asap. Right now, the block reward is constant at 200, with no provision for throttling at 4M. It will continue allocating coins past 4M and/or break at that point. You set MAX_MONEY to 4M, but afaik, that is an error check, not a limiting device. Instead, the limiting is supposed to happen in main.cpp, where it currently says:

Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
int64 nSubsidy = 200 * COIN;
return nSubsidy + nFees;
}

At minimum you need something like:

Code:
if (nHeight < (4000000 / 200)) nSubsidy= 200 * COIN
else nSubsidy = 0;
However, a sudden drop like that would produce market shock, so a gradual scaledown is better.
So then you are back to basically duplicating IFC.

Well, if you continue with this coin, please look to a fix asap.
And if this happens to go forward, you and any vested miners please set aside a sizable bonus for me, for saving your bacon here Smiley


Now this is what I am talking about and this is why a love this community and have been involved in Crypto's for three years. This user, did not have to pick out this major problem in this first version of Extremecoin and even though he clearly supports Infinitecoin (I fact I do, I have 1000 LTC's worth of them lol) he still helps out.

So thank you for this and I will be having at look at your sig for a donation address :-)

When I come across something like this, I don't see it a a problem or a bad thing but a chance to find and figure out a solution, its one of the best ways to better one's self, I believe.

Extremecoin Version 1.1 is around the corner with many new changes, basic solutions added for when the blocks do dry out, they still will do.

However we change the code, your current coins will not be effected and in around 2 months, the block reward will still run dry, maybe such not as suddenly as one block mines 200 and the next 0.

So its not really 100% like Infinitecoin, as that coins block reward will last a lot longer than two months.

What is new about this coin is that we are going to find out what happens about the block reward when it ends, that is the main point, to see if the coin can continue passed this major event, that most coins will get to at some stage.
member
Activity: 67
Merit: 10
Sorry to point out, but ExtremeCoin has nothing new -- the entire idea is already in progress with IFC InfiniteCoin for several months, with a more reasonable accelerated mining schedule and a proper halving scaledown. IFC has already a large community, and building many markets and developments, and has been trading for a good while and widely distributed. So what is the point in duplicating all that - your efforts would probably be better spent contributing over there.

Further, and my main reason for posting: ExtremeCoin does not appear to implement your stated 4M limit, and will need a hard fork asap. Right now, the block reward is constant at 200, with no provision for throttling at 4M. It will continue allocating coins past 4M and/or break at that point. You set MAX_MONEY to 4M, but afaik, that is an error check, not a limiting device. Instead, the limiting is supposed to happen in main.cpp, where it currently says:

Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
int64 nSubsidy = 200 * COIN;
return nSubsidy + nFees;
}

At minimum you need something like:

Code:
if (nHeight < (4000000 / 200)) nSubsidy= 200 * COIN
else nSubsidy = 0;
However, a sudden drop like that would produce market shock, so a gradual scaledown is better.
So then you are back to basically duplicating IFC.

Well, if you continue with this coin, please look to a fix asap.
And if this happens to go forward, you and any vested miners please set aside a sizable bonus for me, for saving your bacon here Smiley
hero member
Activity: 924
Merit: 1005
Product Marketing & Promotion / Software Developer
Just started new extreme pool

http://extreme.netcoin.pl
Fee is 1%

Looking for some crew to join (and test it)

I will mine on your pool, probably tonight for a good 12 hours and if everything is fine and the payouts work, I will add it to the OP and the website.

Thanks for your support of this coin.
hero member
Activity: 924
Merit: 1005
Product Marketing & Promotion / Software Developer
The price of owning every single coin in a Crypto-Currency at just 20 Bitcoins, it does not matter if it is even for this coin, for any crypto that price is so cheap.............

I stand by my offer.  As an investor, I believe this coin has little value due to it's EXTREME pump 'n dump nature.  The price of crypto is dictated by the traders who buy and sell, not by the dev who created the coin.

This coin will subject to frequent 51% attacks in roughly 2 months.  You obviously have little to no plan for what will happen at the end of the two months.  The silly posts you've been making in your own coin launch thread, clearly display you have absolutely no solid plan for how to deal with the major problem this coin has.

At that point you would be lucky if you could get 0.2BTC for all the Extreme coins out there, let alone 20BTC.

I thought you did not launch this coin to make money from it ? It's just an experiment, right ?
But you think it has real value, more then 2k USD.
You're contradicting yourself. If it's just a fun experiment, then 20 BTC is a huge price. Value comes from utility, not from the simple fact that technically it's a cryptocurrency.
I wouldn't even call this a currency, more a crypto experiment.
Agreed.


I love that term "pump and dump" it probably one of the worst ways to trade, if you have massive amount of any coin, you don't just dump them in one go and then crash the market, you sell them in smaller chunks, then maybe buy back if it dips, to get a little bit extra. Pump and dump was originally used by some of the first coin developers I think, the ones with the over 1 million coin premine.

P&D would apply if the coins were still going to be getting made for 50 years. If you P&D this one, then you are just dumping them into somebody else's wallet, just moving the 4 Million coins around, regardless of there value.

I like to think of this coin as a research coin but also a chance to see if it can continue past the block reward cutoff and still be viable for trade etc.

I am working on the next version of this coin, with the aim to try and address the lack of miners after the block rewards stop problem.
sr. member
Activity: 317
Merit: 250
Just started new extreme pool

http://extreme.netcoin.pl
Fee is 1%

Looking for some crew to join (and test it)
hero member
Activity: 924
Merit: 1005
Product Marketing & Promotion / Software Developer

The price of owning every single coin in a Crypto-Currency at just 20 Bitcoins, it does not matter if it is even for this coin, for any crypto that price is so cheap.............

I thought you did not launch this coin to make money from it ? It's just an experiment, right ?

But you think it has real value, more then 2k USD.

You're contradicting yourself. If it's just a fun experiment, then 20 BTC is a huge price. Value comes from utility, not from the simple fact that technically it's a cryptocurrency.

I wouldn't even call this a currency, more a crypto experiment.

I am not doing this to make profit of it, I still stand by what I said.

However I imagine that most of the people mining this coin would like to make some profit and try to get a general feel for the worth of what they are mining.

I have said it so many times but I will again. I make my money in the Crypto side of things, with BTC to USD and smaller trades with other Alt-coins but never my own.

I don't and never will make a coin for personal profit, in fact right now I am making a loss from Extremecoin due to the website hosting for it but I except that loss as this is my hobby and I enjoy it.
sr. member
Activity: 363
Merit: 250
The price of owning every single coin in a Crypto-Currency at just 20 Bitcoins, it does not matter if it is even for this coin, for any crypto that price is so cheap.............

I stand by my offer.  As an investor, I believe this coin has little value due to it's EXTREME pump 'n dump nature.  The price of crypto is dictated by the traders who buy and sell, not by the dev who created the coin.

This coin will subject to frequent 51% attacks in roughly 2 months.  You obviously have little to no plan for what will happen at the end of the two months.  The silly posts you've been making in your own coin launch thread, clearly display you have absolutely no solid plan for how to deal with the major problem this coin has.

At that point you would be lucky if you could get 0.2BTC for all the Extreme coins out there, let alone 20BTC.

I thought you did not launch this coin to make money from it ? It's just an experiment, right ?
But you think it has real value, more then 2k USD.
You're contradicting yourself. If it's just a fun experiment, then 20 BTC is a huge price. Value comes from utility, not from the simple fact that technically it's a cryptocurrency.
I wouldn't even call this a currency, more a crypto experiment.
Agreed.
legendary
Activity: 1274
Merit: 1050

The price of owning every single coin in a Crypto-Currency at just 20 Bitcoins, it does not matter if it is even for this coin, for any crypto that price is so cheap.............

I thought you did not launch this coin to make money from it ? It's just an experiment, right ?

But you think it has real value, more then 2k USD.

You're contradicting yourself. If it's just a fun experiment, then 20 BTC is a huge price. Value comes from utility, not from the simple fact that technically it's a cryptocurrency.

I wouldn't even call this a currency, more a crypto experiment.
hero member
Activity: 924
Merit: 1005
Product Marketing & Promotion / Software Developer
I am brain storming lots of ways to keep people mining even after the block reward has gone.

The first is a fixed percentage transaction fee, which is much more fair than a fixed one of say 0.01, as what happens if you want to send someone 0.01, they end up getting nothing from you and the miners get it instead.

The next could be to make a P2Pool with which the miners on that pool can receive random bonus reward from users of EXC who donate and the sendmany idea.

The last one which is more of a question, is if all the people mining EXC right now, don't sell or get rid of their coins or think they might be worth more in the future, would they not mine, even just with a little bit of their hashing power just to help keep the chain running and receive random transaction fee's in the process as a little bonus?

There are a lot of questions as this has never really been done before but it does need to be figured out, as this is going to happen at some point to almost every Crypto-Currency we have at some point in the future.
member
Activity: 99
Merit: 10
Where did all of the hashing power go?
member
Activity: 99
Merit: 10
Naive question, but is the only point of committing a DDoS attack to just f with someone?
Pages:
Jump to: