Pages:
Author

Topic: ... (Read 63866 times)

sr. member
Activity: 328
Merit: 250
...
October 24, 2015, 07:09:34 AM
I remember EMO and its smiling logo at Mintpal.

Any community? thread?

Is it listed anywhere now?
hero member
Activity: 714
Merit: 500
November 25, 2014, 01:56:43 PM
http://EmotiCoin.com
for sale PM me offers.....
legendary
Activity: 1106
Merit: 1000
The future is bright with DigiByte.
October 28, 2014, 08:20:25 AM
http://blocks.emoticoin.org/ does not point to a block explorer, so that service is currently down.

kreibitch does not know what he is doing himself. So let him be.
newbie
Activity: 31
Merit: 0
October 27, 2014, 01:46:04 PM
http://blocks.emoticoin.org/ does not point to a block explorer, so that service is currently down.
sr. member
Activity: 280
Merit: 250
Hexagon Dev
October 16, 2014, 10:43:59 AM
Can you elaborate a bit more as there is no Exchanges, did you fix the difficulty adjustment and forks ?

No, just pool is working again, website too and all the services.
legendary
Activity: 1554
Merit: 1001
October 13, 2014, 01:45:26 PM
Emoticoin is alive AGAIN!  Smiley

Can you elaborate a bit more as there is no Exchanges, did you fix the difficulty adjustment and forks ?
sr. member
Activity: 280
Merit: 250
Hexagon Dev
October 13, 2014, 01:19:46 PM
... again  Cool
member
Activity: 84
Merit: 10
October 03, 2014, 03:47:03 AM
SUCH FAIL!  Tongue  Tongue  Tongue
sr. member
Activity: 280
Merit: 250
Hexagon Dev
August 15, 2014, 02:34:31 PM
The block chain stopped working again... Wallet stuck as well...
I have some coin in my wallet but it stuck at the pending mode... I can see but it is not yet in the wallet exactly... How to deal with it ?

Blockchain works OK.
sr. member
Activity: 280
Merit: 250
Hexagon Dev
August 15, 2014, 02:33:56 PM
Dear EMO
Dear http://pool.emoticoin.org
For along times, 5,286,269.809218 haven been not confirmed and payout to my wallet? What 's happend?
Can you payout to me, I want to use this coins for anniversary?
Pls and thank!

Hi, block time is really huge. You have to be patient.
sr. member
Activity: 280
Merit: 250
Hexagon Dev
August 10, 2014, 02:39:03 PM
If someone wants to buy emoticoin.com send me a pm Wink
Dev interested? Foundation interested??

No, im not interested. EMO stays on emoticoin.org, no need for other domains.
legendary
Activity: 1106
Merit: 1000
The future is bright with DigiByte.
August 07, 2014, 05:59:54 AM
The block chain stopped working again... Wallet stuck as well...
I have some coin in my wallet but it stuck at the pending mode... I can see but it is not yet in the wallet exactly... How to deal with it ?
hero member
Activity: 714
Merit: 500
August 07, 2014, 03:56:38 AM
If someone wants to buy emoticoin.com send me a pm Wink
Dev interested? Foundation interested??
newbie
Activity: 4
Merit: 0
August 04, 2014, 05:04:53 PM
Dear EMO
Dear http://pool.emoticoin.org
For along times, 5,286,269.809218 haven been not confirmed and payout to my wallet? What 's happend?
Can you payout to me, I want to use this coins for anniversary?
Pls and thank!
legendary
Activity: 1106
Merit: 1000
The future is bright with DigiByte.
August 02, 2014, 06:51:00 PM
Hi, EMO blockchain works again: http://blocks.emoticoin.org/

Please everyone - write an email to MintPal so they can put our EMO / LTC market back!

Thank you.

Too late.
sr. member
Activity: 280
Merit: 250
Hexagon Dev
August 01, 2014, 08:31:41 AM
Hi, EMO blockchain works again: http://blocks.emoticoin.org/

Please everyone - write an email to MintPal so they can put our EMO / LTC market back!

Thank you.
newbie
Activity: 31
Merit: 0
July 27, 2014, 09:05:15 PM
It occurs to me that people may still have their coins on MintPal and need an Emoticoin wallet to withdraw to.  Or maybe you just want something more powerful than the windows gui client.  To set up your own command line Linux EmotiCoin wallet online, here is a simple how-to:

  • Google for a Digital Ocean promo code.  Usually you can get $10 off.
  • Sign up here for an easy to use VPS: https://www.digitalocean.com/
  • Create a $5/month droplet for Ubuntu 14.04 x64
  • Sign in as root with ssh (PuTTY for example), and paste in the following code:

Code:
sudo fallocate -l 4G /swapfile;sudo chmod 600 /swapfile;sudo mkswap /swapfile;sudo swapon /swapfile; sudo echo "/swapfile none swap sw 0 0" >> /etc/fstab
echo 'export EMOTICOIN=$HOME/emoticoin/src' >> .bashrc
export EMOTICOIN=$HOME/emoticoin/src
echo "alias stop_make='cd $EMOTICOIN; ./emoticoind stop; make -f makefile.unix'" >> ~/.bashrc
echo "alias start_tail='cd $EMOTICOIN; ./emoticoind -daemon; tail -f ~/.emoticoin/debug.log'" >> ~/.bashrc
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install -y libboost-all-dev libminiupnpc-dev miniupnpc make libdb++-dev git tmux g++ libssl-dev pwgen

The first line gets you a swap file so you won't run out of memory while compiling.  The rest of it is aliases and installing dependencies.  Now type
Code:
tmux
so that you will have a tmux session going.  Then use this snippet to grab the source, compile it, and create a simple emoticoin.conf:

Code:
git clone https://github.com/emoticoiners/emoticoin
stop_make
mkdir ~/.emoticoin; echo "rpcuser=emoticoinrpc
rpcpassword=`pwgen -s 44 1`">~/.emoticoin/emoticoin.conf
start_tail

Now you will be watching it boot up and sync with the network.  Since we used the emoticoiners fork instead of the official repo, we should have good seeds for it to bootstrap the network with.  When you get bored of watching the logs, you can ctrl-c to get out of this live view of the debug log, or hit ctrl-b c to create another tmux window (google tmux for more info on how to switch between tmux windows and so forth).  In either case, you will end up in the emoticoin/src directory.  You can type
Code:
./emoticoind help
for a full list of command line api calls.

Since it is in a tmux session, if you disconnect you can always use
Code:
tmux attach
to get back to it.

If you have a windows gui client, you can export your private keys (I forget how) resulting in a long string starting with an M.  To add this to your linux wallet, use ./emoticoin importprivkey
If you want to output a private key (e.g. to print out in case your wallet crashes, or migrate your coins to a different wallet without a transaction), use ./emoticoind dumpprivkey
.

Addresses in emoticoin start with a 6, currently, due to a typo in the original source.  I know how to change the code to allow it to start with an E instead, however there is a risk of wallet corruption if people upgrading don't know what they are doing.  So instead my plan is to provide a tool that acts as an overlay without affecting wallets.  This gist shows how the basic transformation can be done with a nodejs library called coinstring (from the cryptocoinjs project).
newbie
Activity: 31
Merit: 0
July 26, 2014, 10:39:36 PM
I have 500 million EMO send me any BTC you like, but do the payment first. So contact me in private if you want to.

Okay, I have sent you a PM.

I can see that the withdrawal limit of 50000000 that Mintpal has is going to be a headache as it will require 10 transactions to complete (and you have to click a confirm link and wait several minutes each time).  I sent them an email requesting to remove the limit or increase it by a factor of 10.  If you have your coins in an emoticoin wallet of your own already, shouldn't be a problem.

Edit:  Apparently EMO has an 84 million coin limit hardcoded in, so increasing more than that is not possible.  Currently, the max has been changed to 80 million.

However, I currently have some code I am working on for the next hardfork, and it will have 990 million as the limit instead.  It will also have target interval set to 1 minute.  Needs some testing/review.

Anyone who wants to get in touch, I am in #emoticoiners on freenode.
legendary
Activity: 1106
Merit: 1000
The future is bright with DigiByte.
July 26, 2014, 08:11:27 AM
I have 500 million EMO send me any BTC you like, but do the payment first. So contact me in private if you want to.
newbie
Activity: 31
Merit: 0
July 25, 2014, 08:03:57 PM
Mintpal has removed EMO from the LTC market.  They told me when I emailed that they will most likely never add it back because the blockchain remained dead for several weeks last month, and it "hasn't done anything special" since it started.  All of the other exchanges listed on the emoticoin website have dropped it as well.

I am retaining some small hope for this little coin despite its tarnished reputation.  So if anyone is selling, I am interested in buying in BTC at a ratio of 10 billion to 1  (i.e. I will pay 1 satoshi per 100 EMO).  PM me if interested.  I can buy up to 1 BTC worth, first come first serve.

You will be able to withdraw from MintPal for 2 weeks.  However, transactions will probably be extremely slow to confirm in the mean time so they will have zero confirmations for hours, perhaps days, maybe forever.  To get around this, I will give you an emoticoin address to send to and you can withdraw straight to it (or send from your wallet).  Once the transaction is out on the network, I will check the quality of the transaction to make sure there is no funny business, and send you the corresponding bitcoin amount after that.

I'm planning to set up a forum, and possibly even an exchange for this coin.  If you think that is a worthy goal, you can send some EMO to motivate me at:
6F2bAPuyG1qESEQPdiF3SBWcvQv53KzthQ
Pages:
Jump to: