Bitcoin Forum
May 28, 2024, 01:13:38 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 [30] 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 ... 489 »
581  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic - Uncensored Discussion Thread on: July 29, 2016, 07:18:15 AM
Ethf hasn't decided either. Our community will do forks if needed that don't change balances.
582  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic - Uncensored Discussion Thread on: July 29, 2016, 07:05:33 AM
I don't see anything here that's been "censored" there

Exactly! all information was displayed on that thread and its no secret ETC is forked i don't think someone can hide that.
This will just confuse the rest of the users or is this set to confuse users and divide the ETC community again?


Yeah op needs to keep the op updated if he wants to run this
583  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 29, 2016, 06:02:33 AM
http://www.forbes.com/sites/francescoppola/2016/07/28/ethereum-the-battle-of-the-chains

http://www.etcminer.com/

Now we just need cnn like Homero
584  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic - Uncensored Discussion Thread on: July 29, 2016, 05:52:57 AM
I don't see anything here that's been "censored" there
585  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 29, 2016, 12:41:55 AM
This is how you get to appdata. Then rename ethereum and mist. $ is probably wrong since it's an eth wallet

https://youtu.be/dpNQROj5oec

Don't go to Minecraft
586  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 28, 2016, 08:22:14 PM
I have some Ether from before the fork. I use https://www.myetherwallet.com. I can download the JSON file there. But how can I use it with my wallet? I have installed the wallet and clicked NO, so i'm on the correct fork. I tried to edit the current wallet-file and put the data of the downloaded JSON from myetherwallet.com in there. After that I can see my balance, but I can't send ETC. It gives an error. Something with version 2 of the wallet and it needs to be version 3. Anyone can help me out?

Maybe try https://elaineo.github.io/etherwallet/
587  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 28, 2016, 07:51:24 PM
BTCE

Latest news:
27/07/16    Ethereum Classic   

Ethereum Classic

27.07.16 19:52 from admin
Dear Clients!

BTC-e’s official standpoint on this issue is as follows: Ethereum Classic in the current circumstances is a scam. The Ethereum community decided to implement the hardfork in order to switch to the new chain. All major pools and exchanges (including BTC-e) did exactly that.

On the second day after the start of ETC trading BTC-e received a notification from Poloniex, saying that we need to secure the ETCs in our ETH wallet. At the time of notification, most of these coins have already been sent to Poloniex by our users. So there were almost none of these coins in our wallet.

We continue to receive requests from our customers demanding to return the ETCs that are supposedly deposited in our ETH wallet. We cannot do that for the reason specified above.

Anyone, who purports that we sent the coins to Poloniex in order to sell them, can check all the transactions on blockchain. All transactions are recorded and it is easy to trace the sender and the volumes of coins sent.

Best Regards,
BTC-e Team

That's disgusting. So they lost them and we're the scam?

The scam was vitalik selling premined eth for 36,000 btc then forking out immutability. That was false advertising.
588  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 28, 2016, 07:47:23 PM
Could someone provide some info regarding running an ETC node.

What is the best way to set it up and how much resources does it consume on average (cpu, ram...).

Edit: For a headless linux server.



3,9 % CPU of 1 Core and 1050 MB Ram (with 512 MB Cache) but this node also a pool node.
A standalone node without mining would use 1 - 2 % CPU of 1 Core

Could you or someone else give a short guide on how to set up a node only in cli? No gui, no wallet.

I must say I am confused what exactly I need (mist, geth...?)

I'm trying to setup cli too with https://github.com/ethereumproject/go-ethereum/releases

But I can't figure out how to make it run in the background.

My bitcoin node runs great and I can use bitcoin-cli to talk to it. I don't know how to do that in geth

Join https://www.reddit.com/r/EthereumClassic/comments/4uwjad/1410_first_stable_release_of_the_ethereum_classic/

geth hasn't the daemon function

you could use an upstart script like that :

Code:
# geth - Ethereum Classic
# filename gethetc.conf
description "geth instance for Ethereum Classic"

env DAEMON=/home/<user>/<path to geth-binary>
env PARAM=' --fast --oppose-dao-fork'
env NAME=gethethclassic

start on filesystem or runlevel [2345]
stop on runlevel [!2345]

setuid <user>
setgid <user>

kill signal INT

respawn
respawn limit 10 5
umask 022

pre-start script
        test -x $DAEMON || { stop; exit 0; }
end script

# Start
script
        #test -f /etc/default/$NAME && . /etc/default/$NAME
        exec $DAEMON $PARAM
end script


change <user> to the userid that should run geth
change <path to geth> to path where geth is located

copy file with sudo cp gethetc.conf /etc/init/

now you could run
start gethetc
stop gethetc
restart gethetc

to monitor you could
tailf /var/log/upstart/gethetc.log

(STRG + c to cancel logfile view)
or you could run under same user like geth

geth attach

or you use screen

first install it
sudo apt-get install screen

screen -S gethetc       # this will start a second session could leave it with STRG A and the D while STRG keeped pressed
to reconnect to screen session
screen -r gethetc

thats it

Thanks
589  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 28, 2016, 07:46:44 PM
Could someone provide some info regarding running an ETC node.

What is the best way to set it up and how much resources does it consume on average (cpu, ram...).

Edit: For a headless linux server.



3,9 % CPU of 1 Core and 1050 MB Ram (with 512 MB Cache) but this node also a pool node.
A standalone node without mining would use 1 - 2 % CPU of 1 Core

Could you or someone else give a short guide on how to set up a node only in cli? No gui, no wallet.

I must say I am confused what exactly I need (mist, geth...?)

I'm trying to setup cli too with https://github.com/ethereumproject/go-ethereum/releases

But I can't figure out how to make it run in the background.

My bitcoin node runs great and I can use bitcoin-cli to talk to it. I don't know how to do that in geth

Join https://www.reddit.com/r/EthereumClassic/comments/4uwjad/1410_first_stable_release_of_the_ethereum_classic/

wait... you want to be leading the fork and you don't know this???

My role is this thread
590  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 28, 2016, 07:46:27 PM
I would like to help with development, I am not a senior dev of any language but rather a jack of many (C++, nodejs, php...)  I do DevOps as a daily job, I will also offer resources for the Ethereum classic projects, so if you need anything like a server, compiling, maintaining please PM me.


Please join us https://www.reddit.com/r/EthereumClassic/comments/4u4o61/call_for_action_what_can_i_do_to_help_ethereum/
591  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 28, 2016, 07:27:48 PM
Could someone provide some info regarding running an ETC node.

What is the best way to set it up and how much resources does it consume on average (cpu, ram...).

Edit: For a headless linux server.



3,9 % CPU of 1 Core and 1050 MB Ram (with 512 MB Cache) but this node also a pool node.
A standalone node without mining would use 1 - 2 % CPU of 1 Core

Could you or someone else give a short guide on how to set up a node only in cli? No gui, no wallet.

I must say I am confused what exactly I need (mist, geth...?)

I'm trying to setup cli too with https://github.com/ethereumproject/go-ethereum/releases

But I can't figure out how to make it run in the background.

My bitcoin node runs great and I can use bitcoin-cli to talk to it. I don't know how to do that in geth

Join https://www.reddit.com/r/EthereumClassic/comments/4uwjad/1410_first_stable_release_of_the_ethereum_classic/
592  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 28, 2016, 05:54:06 PM
https://www.etc-eth.com/  why did you remove the compare hashrate? now this is unpleasant information?

I think he's trying to get a reliable source try http://fork.ethstats.net
593  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 28, 2016, 05:50:33 PM
This was the fairest launch I've seen. Etc creators held mo etc and no premine. I had neither eth or etc. Not many launches ever paid the competition directly. Even clams was difficult.

We could have reset the blockchain but we didn't. We hedged and paid eth holders for free. Smart ones supported us and got a free hedge.
594  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 28, 2016, 08:10:07 AM
https://www.bitfinex.com/pages/stats
595  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 28, 2016, 05:41:19 AM
@bitpop

could you please explain why my posting with poolinfos are deleted from here ?
Seems to be no other pool offer was deleted.

Is this the behavior to act with a supporter of ETC ?

I still see this https://bitcointalk.org/index.php?topic=1559630.msg15731248#msg15731248

Quote from: Bitcoin Forum
A reply of yours, quoted below, was deleted by a Bitcoin Forum moderator. Posts are most frequently deleted because they are off-topic, though they can also be deleted for other reasons. In the future, please avoid posting things that need to be deleted.

Quote
etc.coinpool.biz

0.25 % Mining-Fee
All Rewards payed incl. Uncle-Rewards
no TX-Fee
0.5 ETC min payout / runs every 2 hrs.
DDOS Protected
Stratum & GetWork support (except QTMiner, there is a possible multi-Share Attack)

Wasn't me
596  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 28, 2016, 05:23:22 AM
50 etc is way too much
597  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 28, 2016, 04:39:43 AM
@bitpop

could you please explain why my posting with poolinfos are deleted from here ?
Seems to be no other pool offer was deleted.

Is this the behavior to act with a supporter of ETC ?

I still see this https://bitcointalk.org/index.php?topic=1559630.msg15731248#msg15731248
598  Bitcoin / Project Development / Re: Poloniex Lending Bot Service on: July 27, 2016, 02:59:31 PM
I like the service, but there is no way I will be paying 10% of my interest for it, unless you can show me that using your website will net me more than I can get by doing it manually.  I had read that back on Bitfinex the bot there was able to increase interest by roughly 15% or so, but I would need some proof to show that this is possible.  Obviously its a good idea, I just wouldn't be willing to pay that much for it when I can lend myself.

EDIT:  Trying it out now, will update once my funds hit my Polo account.

If you miss manually lending for 10% of the days then it pays for itself
599  Bitcoin / Project Development / Re: Poloniex Lending Bot Service on: July 27, 2016, 02:30:47 PM
Cool service
600  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: July 27, 2016, 01:18:02 PM
Lisk developer joining us https://twitter.com/IOHK_Charles/status/758277705766989830

Bitfinex imminent http://blog.bitfinex.com/announcements/ethereum-classic-launch/
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 [30] 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 ... 489 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!