Author

Topic: [ANN] Ethereum: Welcome to the Beginning - page 827. (Read 2007101 times)

legendary
Activity: 1078
Merit: 1000
Will DAO refund to both chains?
Not to eth. Only to forked eth. That was the whole point of the fork.

Don't confuse people

Exchanges show eth and etc
Only one exchange decided to rename eth to etc. Other exchanges will do the right thing when they start trading both chains.

This kind of trolling could lead to people losing money. Please stop it.

you losing money ?

No, but those sending eth or etc to a wrong account, because becoin is in a trolling mood, might (Believe me, I know becoin, he does not care about eth nor etc).

pls be so kind and stop picking on single users if you have a thing with ihm sort it ouside of this thread.

and i think people collect info befor they invest and find out what is eth and what is etc offering.
then decide which way to go

here an article http://bitcoinist.net/ethereum-classic-jumps-into-top-10-altcoins-in-less-than-a-day/
legendary
Activity: 1554
Merit: 1014
Make Bitcoin glow with ENIAC
Any comments from ETH dev? I believe he  can contact Poloniex and force them to shutdown ETC, no? In fact ETC is just a empty box, a dead coin as there is no team, no dev, no nothing, only the thief with his $50M. Correct?

No, in fact it seems like devs are leaning towards supporting etc development. I haven't seen any final word on it though.

Edit:

Any comments from ETH dev? I believe he  can contact Poloniex and force them to shutdown ETC, no? In fact ETC is just a empty box, a dead coin as there is no team, no dev, no nothing, only the thief with his $50M. Correct?

Stop lying

It was a question.
legendary
Activity: 2912
Merit: 1060
Any comments from ETH dev? I believe he  can contact Poloniex and force them to shutdown ETC, no? In fact ETC is just a empty box, a dead coin as there is no team, no dev, no nothing, only the thief with his $50M. Correct?

Stop lying
member
Activity: 98
Merit: 10
Any comments from ETH dev? I believe he  can contact Poloniex and force them to shutdown ETC, no? In fact ETC is just a empty box, a dead coin as there is no team, no dev, no nothing, only the thief with his $50M. Correct?
legendary
Activity: 3431
Merit: 1233
Will DAO refund to both chains?
Not to eth. Only to forked eth. That was the whole point of the fork.

Don't confuse people

Exchanges show eth and etc
Only one exchange decided to rename eth to etc. Other exchanges will do the right thing when they start trading both chains.

This kind of trolling could lead to people losing money. Please stop it.

you losing money ?

No, but those sending eth or etc to a wrong account, because becoin is in a trolling mood, might (Believe me, I know becoin, he does not care about eth nor etc).

Don't confuse people

Exchanges show non-forked eth today appreciated 39.9% against forked eth. Only forkers are losing money.
legendary
Activity: 1554
Merit: 1014
Make Bitcoin glow with ENIAC
Will DAO refund to both chains?
Not to eth. Only to forked eth. That was the whole point of the fork.

Don't confuse people

Exchanges show eth and etc
Only one exchange decided to rename eth to etc. Other exchanges will do the right thing when they start trading both chains.

This kind of trolling could lead to people losing money. Please stop it.

you losing money ?

No, but those sending eth or etc to a wrong account, because becoin is in a trolling mood, might (Believe me, I know becoin, he does not care about eth nor etc).
legendary
Activity: 2030
Merit: 1076
A humble Siberian miner
Guys, can I change the place where all Ethereum blockchain is stored? My C: drive is almost full...

I heard that since Mist v0.7.5 there is a way to change the folder path, is it --datadir flag? Should I piont it directrly to geth.exe (I heard also that Mist won't start if I started geth separately before)? Or does Mist itself somehow "Pass custom CLI options to the Ethereum node"? Then how does it work?
legendary
Activity: 1078
Merit: 1000
and this too i marked the one line tht i dont understand. what does this mean?
http://vitalik.ca/files/ees_document_draft1.html
Abstraction:

In Ethereum protocol development, one of the major overriding philosophies is the notion of abstraction: that the protocol itself should be as simple as possible, and as much as possible should be implemented in contract code instead of through hard protocol rules. Targets for abstraction include:

    Account security (see https://github.com/ethereum/EIPs/issues/86)
    The transaction state transition function (ie. the rules by which a transaction is processed)
    Ether (ie. make ether into a ERC 20 token just like the others)
    Logs / events

The purpose of abstraction is the following:

    Lower attack surface and lower core code complexity
    The ability to more easily hardfork the public chain protocol to different protocol rules, as it can be done simply by swapping out contract code
    The ability to more easily swap out different rulesets on a test network or private implementation
    The ability to switch between different rules on a per-application or per-user level (eg. some users want their accounts secured by ECDSA, some prefer Lamport for quantum-proofness, and in some private chain use cases industry or national standards require the use of specific forms of cryptography; the goal of EIP 86 is to support all of this)

EES may want to implement some of these abstraction features ahead of schedule.
legendary
Activity: 1078
Merit: 1000
hi i was reading vitalics new page vitalik.ca

and this about consens i dotn understnd
can one of yu ?
Currently, the Ethereum clients support proof of work consensus. There is a desire to modularize the consensus algorithm in such a way that it will be possible to also use proof of stake (Casper), as well as private chain-specific consensus algorithms, with likely initial targets being PBFT and DPOS (essentially a round robin consensus algorithm). The first step is to determine exactly what the "interface" for a consensus algorithm "class" should look like.

A possible sketch of the interface is as follows:

    submitTransaction(tx): submit a transaction to a participating node. The node will attempt to include it in a block, or vote for it, or perform the equivalent operation in the consensus algorithm.
    sendMessage(msg, node_id): send a message to another node.
    broadcastMessage(msg): broadcast a message.
    getMostRecent(conf_level): get the most recent block that satisfies a given confirmation level. In proof of work or DPOS, conf_level would represent the number of confirmations, so it would return the nth last block in the chain; in PBFT confirmation is binary (ie. final confirmation is instant) so it always returns the most recent confirmed block.

Note that public chain consensus also requires an incentivization model, ie. a way to reward consensus participants who perform well and possibly penalize participants who perform badly. We two abstract this by providing two options:

    A function finalize that gets automatically called after processing every transaction in a block, which makes modifications to the state and may use the block as input.
    A function initialize that gets automatically called before processing every transaction in a block, which makes modifications to the state and may use the block as input.

Note that either finalize or initialize may simply consist of a call to some standard contract with the block header as data; the Ethereum public chain plans to move to such an approach in the long term. In consortium chains, there is no need to use these functions for incentivization; however, they may be useful for other purposes (eg. to automatically run scheduled operations). Hence, because the utility of these operations is not strictly related to consensus incentivization, they should not be viewed as part of the consensus interface; rather, they should be viewed as transaction processing rules.

In a private chain context, there are three consensus algorithms that make the most sense:

    Proof of authority - essentially, one client with one particular private key makes all of the blocks
    PBFT (or some other traditional byzantine-fault-tolerant consensus algorithm)
    DPOS (or some other chain-based limited-validator consensus algorithm)
legendary
Activity: 3192
Merit: 1509

"But let’s make it clear that we (the ethereum developers) have never abandoned the old chain. We never forked the chain. We have implemented a switch in our client to give users a choice to fork if they want to and that’s all. The "Ethereum Classic" chain is just as much our child as the forked one, and if both of them survive (which is the users’ choice, not ours), then I intend to take care of them equally in the future too."

There might be people in Vitalik's inner circle that does not agree in the hard fork. If those people leave where will they run? Yes, the original Ethereum chain. It is the one immutable, original, real chain. I fear for him because when everyone is truly shaken they might throw him out in the cold.
legendary
Activity: 1078
Merit: 1000
Will DAO refund to both chains?
Not to eth. Only to forked eth. That was the whole point of the fork.

Don't confuse people

Exchanges show eth and etc
Only one exchange decided to rename eth to etc. Other exchanges will do the right thing when they start trading both chains.

This kind of trolling could lead to people losing money. Please stop it.

you losing money ?
sr. member
Activity: 504
Merit: 250
The real world you created by forcing "consensus" with the illusion of democracy. In the real world those votes get thrown out. Look what has happened here.

No, the real world where sometimes you don't get it your way. The non-fork did not have enough support. Get over it. Enjoy the new alt.

The real world where sometimes you don't get your way goes the same for you as it does me.

The "non-fork" vote obviously has more support than you guys are willing to admit to.

If the vote was done in a fair and democratic way then this chain wouldn't have survived long enough to get added to Poloniex in the first place.

ETC is literally the exact same coin that had a billion dollar market cap a week ago. With developers saying they are going to support it still. If you want to dump yours, then dump. None of us care. We'll just buy it and profit later. If you're so convinced that ETC isn't going to survive then stop spamming the thread whining about us. Go do something more productive. I know I am. lol

Yes, I was surprised to see BTCDrak, Samson Mow and Barry Silbert suddenly take an interest in the lowly world of non-btc smart contracts. Beyond that it's not much that surprised me about it. Maybe that Poloniex decided to take on a dying chain, but they will have to explain themselves to the regulatory authorities if things go awry. Not me.

My whole point of engaging in this discussion was to prevent bitpop and a couple of others from wrecking the thread. I don't mind if you discuss etc news and price movements on this thread, but don't come here and try to disrupt the one place at bct where I can find some stuff and talk about Ethereum. This should not be a Ethereum Classic only thread. Bitpop has one of those. Whether or not it should be an Ethereum only thread will have to be up to the mods or thread starter.

Also, if you come to any thread with screaming inaccuracies you shouldn't be surprised if those are addressed.

So, address them then. I posted many links verifying everything I said. I don't speak from a position of ignorance.

Nothing I have "screamed" has been inaccurate. I have linked the reporting and you can easily follow the links to see the source in every situation.

Major mining pools have said they did not support it. Exchanges have said they did not support it. Pools said they were forced. exchanges said they were forced.

Where is you addressing these so-called inaccuracies? Nowhere. You've just shilled ETH and tried to discredit ETC, but you can't discredit ETC without discrediting ETH. It's developed by the same damn people.
sr. member
Activity: 269
Merit: 250
To be honest, I don't like ETH since it has been modified just to make DAO holders happy.
legendary
Activity: 2856
Merit: 1075
lol all those waiting for $10- ETH, lol keep waiting, if ETH goes anywhere near $10, before/after fork, spork,no fork ...it will be scooped up and never be sold so cheap ever again.

$9.80 per eth!

Now scoop up you shit premined coin to 20 usd idiot mrpumperits  Grin

lol how long did that last ....haha  Tongue Tongue Tongue Tongue

hero member
Activity: 744
Merit: 500
After forking eth has all features of a shit coin: premined, centralized and useless  Grin
hero member
Activity: 840
Merit: 1000
Perryl...etc is mining at a loss btw

Relax, we don't really need any more proof that you're just making stuff up and repeating random soundbites with no real knowledge, facts, numbers, or anything else of value.


Hahaa I know brother...I think what we have here is a goddamn parrot lol
do you hold eth? why are you here? lol i hold both coins so i can say what i want about my investments  Tongue
as for my above statement about mining at a loss, that is a fact m8  Tongue
is there a link to a mining calculator....eth and etc...thought I saw I screen shot of one on this thread.

also as I posted on etc thread....eth chain is growing faster than etc chain...I think that matters...yes?
4,513 blocks ahead...and hash rate is around 120ghs.....like a third of yesterday hash at peak


http://calc.wolfchange.com/mining_calculator_ethereum%20classic

And no, the length of the chain doesn't matter here.
thanks for that...looks like mining is pretty much on par with eth...maybe a few percentage points more.
so it is profitable
legendary
Activity: 1554
Merit: 1014
Make Bitcoin glow with ENIAC
Will DAO refund to both chains?
Not to eth. Only to forked eth. That was the whole point of the fork.

Don't confuse people

Exchanges show eth and etc
Only one exchange decided to rename eth to etc. Other exchanges will do the right thing when they start trading both chains.

This kind of trolling could lead to people losing money. Please stop it.
legendary
Activity: 3654
Merit: 8909
https://bpip.org
do you hold eth? why are you here? lol i hold both coins so i can say what i want about my investments  Tongue
as for my above statement about mining at a loss, that is a fact m8  Tongue

Show us the numbers.
no...go find out yourself ,lol


I already did in the post above. Clearly not a loss and roughly on par with ETH. What are your numbers?
Jump to: