Pages:
Author

Topic: [ANN] Emerald - EMD, a great cryptocurrency | Version 1.3 released! - page 6. (Read 108085 times)

member
Activity: 130
Merit: 10
I think, it would be good to add some links to the EMD exchanges at the 1st message...
sr. member
Activity: 294
Merit: 250
OBFUSCODE.NET offers Emerald-mining now!

The obfuscode.net multipool is proud to support Emerald crypto-currency for mining now.

http://emd.obfuscode.net
stratum+tcp://obfuscode.net:3348

We Offer:
  • vardiff
  • proportional sharing
  • dedicated hardware
  • highspeed uplink
  • no fees for early adopters
  • various altcoins to mine on demand

Happy Mining!
full member
Activity: 210
Merit: 100
LION Devloper, Graphics Designer!
im having this problem:

 Testing bitcoind P2P connection to '127.0.0.1:12127'...
...taking a while. Common reasons for this include all of bitcoind's connection slots being used...

i copied the codes as u paste it but it not working, any help ?

I don't know what operating system you have on your computer, but, I think that something program has already taken this port. I work in Linux.
If your operation system is Linux, too - you should use the command:
Code:
netstat -natp |grep 12127
Output will show the name of the program using the port:
Code:
tcp        0      0 0.0.0.0:12127           0.0.0.0:*               LISTEN      4652/emerald-qt 
tcp6       0      0 :::12127                :::*                    LISTEN      4652/emerald-qt
(On my computer it's emerald-qt)
You can remove this program or change the port used by it.
Also you can change the port that uses emerald.
There is parameter "port"in the file emerald.conf:
Code:
rpcuser=YourRpcName
rpcpassword=YourRpcPassword
listen=1
daemon=1
server=1
rpcallowip=127.0.0.1
rpcallowip=192.168.0.*
rpcport=12128
port=12127
addnode=198.199.90.252
addnode=24.6.21.198
addnode=108.27.249.69

 And in file ~/p2pool-emd/p2pool/bitcoin/networks.py it's:
Code:
P2P_PORT=12127,


Thanks, it works
full member
Activity: 210
Merit: 100
LION Devloper, Graphics Designer!
Is there a focal point for the EMD community other than this thread? I have some products I may like to promote exclusively through EMD for payment in the future.

I think this is it for EMD currently, post here seems best for now, and I can add you to the site perhaps to.
(http://emeraldcoin.info/)


any exchange ?


http://emeraldcoin.info/emd-exchanges/

Cryptsy:   https://www.cryptsy.com/

Coins-E:    https://www.coins-e.com/



Thanks
legendary
Activity: 1652
Merit: 1057
bigtimespaghetti.com
Is there a focal point for the EMD community other than this thread? I have some products I may like to promote exclusively through EMD for payment in the future.

I think this is it for EMD currently, post here seems best for now, and I can add you to the site perhaps to.
(http://emeraldcoin.info/)


any exchange ?


http://emeraldcoin.info/emd-exchanges/

Cryptsy:   https://www.cryptsy.com/

Coins-E:    https://www.coins-e.com/



Great, I'll let you know when I have a product.
legendary
Activity: 1308
Merit: 1011
im having this problem:

 Testing bitcoind P2P connection to '127.0.0.1:12127'...
...taking a while. Common reasons for this include all of bitcoind's connection slots being used...

i copied the codes as u paste it but it not working, any help ?

I don't know what operating system you have on your computer, but, I think that something program has already taken this port. I work in Linux.
If your operation system is Linux, too - you should use the command:
Code:
netstat -natp |grep 12127
Output will show the name of the program using the port:
Code:
tcp        0      0 0.0.0.0:12127           0.0.0.0:*               LISTEN      4652/emerald-qt 
tcp6       0      0 :::12127                :::*                    LISTEN      4652/emerald-qt
(On my computer it's emerald-qt)
You can remove this program or change the port used by it.
Also you can change the port that uses emerald.
There is parameter "port"in the file emerald.conf:
Code:
rpcuser=YourRpcName
rpcpassword=YourRpcPassword
listen=1
daemon=1
server=1
rpcallowip=127.0.0.1
rpcallowip=192.168.0.*
rpcport=12128
port=12127
addnode=198.199.90.252
addnode=24.6.21.198
addnode=108.27.249.69

 And in file ~/p2pool-emd/p2pool/bitcoin/networks.py it's:
Code:
P2P_PORT=12127,
member
Activity: 85
Merit: 10
Is there a focal point for the EMD community other than this thread? I have some products I may like to promote exclusively through EMD for payment in the future.

I think this is it for EMD currently, post here seems best for now, and I can add you to the site perhaps to.
(http://emeraldcoin.info/)


any exchange ?


http://emeraldcoin.info/emd-exchanges/

Cryptsy:   https://www.cryptsy.com/

Coins-E:    https://www.coins-e.com/

legendary
Activity: 1652
Merit: 1057
bigtimespaghetti.com
Is there a focal point for the EMD community other than this thread? I have some products I may like to promote exclusively through EMD for payment in the future.
full member
Activity: 210
Merit: 100
LION Devloper, Graphics Designer!
full member
Activity: 210
Merit: 100
LION Devloper, Graphics Designer!
legendary
Activity: 1308
Merit: 1011
having a working block explorer,

Very well.
I  have my own emerald p2pool http://dr-nona.office-on-the.net:12125
But I couldn't to find adresses of working block explorer.

I have taken p2pool Rav3nPL as a base
Code:
git clone https://github.com/Rav3nPL/p2pool-rav.git p2pool-emd

And added settings for emerald
To ~/p2pool-emd/p2pool/networks.py
Code:
    emerald=math.Object(
        PARENT=networks.nets['emerald'],
        SHARE_PERIOD=5, # seconds target spacing
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares coinbase maturity
        SPREAD=60, # blocks
        IDENTIFIER='e40ef614eeebb395'.decode('hex'),
        PREFIX='502f757a499bf612'.decode('hex'),
        P2P_PORT=46857,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=12125,
        BOOTSTRAP_ADDRS='dr-nona.office-on-the.net'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-sawa',
        VERSION_CHECK=lambda v: True,
    ),
To ~/p2pool-emd/p2pool/bitcoin/networks.py
Code:
    emerald=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=12127,
        ADDRESS_VERSION=34,
        RPC_PORT=12128,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'emeraldaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 5*31499000 >> (height + 1)//3110400,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=20, # s
        SYMBOL='EMD',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'emerald') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/emerald/') if platform.system() == 'Darwin' else os.path.expanduser('~/.emerald'), 'emerald.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://127.0.0.1:12125/static/',
        ADDRESS_EXPLORER_URL_PREFIX='http://127.0.0.1:12125/static/',
TX_EXPLORER_URL_PREFIX='http://127.0.0.1:12125/static/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
        DUST_THRESHOLD=1e8,
    ),
It works.
But it would be better to specify a block explorer address here:
Code:
        BLOCK_EXPLORER_URL_PREFIX='http://127.0.0.1:12125/static/',
        ADDRESS_EXPLORER_URL_PREFIX='http://127.0.0.1:12125/static/',
TX_EXPLORER_URL_PREFIX='http://127.0.0.1:12125/static/',
I would be glad if I'll get help in solving this problem.
Thanks.

Anyone can mine in my pool http://dr-nona.office-on-the.net:12125 or connect your pool to my taking these settings.
When it's hard to mine other coins I switch to my pool for mining this fine emerald Smiley
member
Activity: 85
Merit: 10
Thanks,
lots of people expect instant success with coins, but its a long term opportunity,
Emerald has a lot going for it, currently only 5,000,000 mined with a total cap of 31,499,000,
It has a slow and steady block release rate which will be a bonus down the line,
As well as this it has a fairly wide distribution as it's been on the market at cheap prices for a long time,

Simple tech needs include:
getting the wallets up and functioning,
having a working blockchain,
having a working block explorer,
getting it onto coinmarketcap finally,

I'll work on sorting out the website and then focus on merchant acquisition,
the plan will be to find a local or online emerald dealer willing to accept emd for real emeralds,
get their business some emd as a starting stake, create them a website specifically for emd and ask them not to accept other coins,
then get some trades started and blog about it, generate some good pr,
more buyers and miners should enter the market,
hopefully long term emerald will become a solid coin for everyone's coin portfolio,

If these steps work for emerald then we can go about repairing other coins in the future,
crypto's a fantastic invention, and the coins deserve more time and effort put into them, creating solid financial products or services, assets which can't be easily manipulated by large banks and financial institutions.

to help out in any way email me at:  [email protected]


http://www.emeraldcoin.info


hero member
Activity: 504
Merit: 500
Thanks for the new pool and wallet links, i've added them to the new website: http://emeraldcoin.info/

I'm gonna get a friend to design it a bit better when he has the time, and we'll work on some other ideas to help create more value for emd,
its a decent old coin with a good name so happy to contribute what i can, its a long term project but will check back here, and add any extra links if anyone posts anything.

^^^ That is the guy responsible for helping keep the coin alive... He is who you want to support, to get value added back to the coin. He is the one extending the greatest effort. Join his team. From this point forward, Emerald should start to rise again. With real value.
member
Activity: 85
Merit: 10
Thanks for the new pool and wallet links, i've added them to the new website: http://emeraldcoin.info/

I'm gonna get a friend to design it a bit better when he has the time, and we'll work on some other ideas to help create more value for emd,
its a decent old coin with a good name so happy to contribute what i can, its a long term project but will check back here, and add any extra links if anyone posts anything.
hero member
Activity: 826
Merit: 501
in defi we trust
But what about the premine? How much is still there?

Why do you think he had the block-chain explorer removed.

As I believe his quote to another coin was... "Like your coin, ice is melt" (Like Ice, he has, and is still destroying any value this coin could have had.)

That's ok, I am over any desire to take this coin anyways. Had a look at the screwed-up code, and it would require re-writing the whole coin from scratch. So, I will not be the one to do the take-over. Too much to be done, with no real potential for reward.

This coin, and most others below 1-diff will dropped from cryptsy in the up-coming months. He will have to manually find people that want to buy his crap after that. Sadly, so will anyone still mining the coin.

If this is the situation , the the coin is beyond repaid. Better starting all over from 0.
hero member
Activity: 504
Merit: 500
But what about the premine? How much is still there?

Why do you think he had the block-chain explorer removed.

As I believe his quote to another coin was... "Like your coin, ice is melt" (Like Ice, he has, and is still destroying any value this coin could have had.)

That's ok, I am over any desire to take this coin anyways. Had a look at the screwed-up code, and it would require re-writing the whole coin from scratch. So, I will not be the one to do the take-over. Too much to be done, with no real potential for reward.

This coin, and most others below 1-diff will dropped from cryptsy in the up-coming months. He will have to manually find people that want to buy his crap after that. Sadly, so will anyone still mining the coin.
hero member
Activity: 673
Merit: 506
I might be wrong about the difficulty.  I am not mining on the new fork, just going by the information available on the thread.  I don't think I am wrong about Cryptsy.  I think they are still on the original fork.  So what value do your new coins have?  Can you exchange them anywhere?
https://bitcointalk.org/index.php?topic=495693.new#new
Cryptsy and other exchanges will have to move to the new chain anyway....
hero member
Activity: 826
Merit: 501
in defi we trust
Lots of tiny hoarders...

All the hoppers left. Looking into taking-over this coin by force now. lol.

First thing being locked-out will be the abandoned devs coins, so those don't come back on the market. Why, because I think we can all agree that his premine is not being used to do anything other than pay his rent.

Lols,

But what about the premine? How much is still there?
newbie
Activity: 40
Merit: 0
I might be wrong about the difficulty.  I am not mining on the new fork, just going by the information available on the thread.  I don't think I am wrong about Cryptsy.  I think they are still on the original fork.  So what value do your new coins have?  Can you exchange them anywhere?
hero member
Activity: 673
Merit: 506
I still mine EMD when nothing else looks great, although at 5 coins per block and a price around 500-700 satoshi, there are a lot of better things to mine.  If the price goes down, this coin would be worthless.

As for a hard fork, some devs just commandeered Galaxycoin, creating a new fork and implementing KGW.  Difficulty shot way up, making it unprofitable.  I probably won't be mining that any more.  As far as I can tell, Cryptsy is still on the old fork.  Probably going to sell what I have and abandon the coin.  Damn shame.  It took an unusual amount of work to get that coin working right. 

I would recommend not forking this coin too.  Whatever the original dev hoarded is water under the bridge.  If you like the coin, mine it.  If not, mine something else, or make your own coin.  There is no shortage of coins to mine.
Your information about Galaxycoin is not correct, the new devs implemented KGW with the new wallet, diff is below 1 most of the day while the old fork/chain is above 6.
Pages:
Jump to: