Pages:
Author

Topic: [ANN][SHA-256][21coin] ULTRA RARE 21 COIN - NOW IN CRYPTORUSH.IN - 3 EXCHANGES! - page 6. (Read 55749 times)

sr. member
Activity: 812
Merit: 250
Senseless chart without trading activity.
hero member
Activity: 518
Merit: 500
legendary
Activity: 3556
Merit: 1126
21 Coin Hasher Pool runs at only 1% fee PPLNS:

http://21c.hasher.ca

Happy Hashing!
member
Activity: 112
Merit: 10


Why join Coinpool.de?
Backups every 60 minutes of the databases and wallets to protect your earnings.
All servers with a DDoS protection.
Low fees
Get bonuses in our special offers
Stratum Vardiff
Fast servers Xeon 4 x 3,2Ghs 32 GB Ram, SSD
Manual and auto payout
10+ Mining pools out of one Hand (SHA and scrypt)



http://21.coinpool.de

i'm joint now !!! thx for info. Grin
sr. member
Activity: 812
Merit: 250
The coin is dead mate, honestly. There are just a few dreamer, but obviously nothing and nobody seriously, even the dev don't do anything to promote the coin.

Wait a few weeks more and the price ic 1:1 to BTC, or even lesser.
hero member
Activity: 826
Merit: 1000
see my profile

There are two problems I see with this.:

Code:
Network H/s:
Method not found(Error Code: -32601)

quite obvious, isn't it?


And secondly, is it really impossible to look up addresses with that type of block explorer?
Don't you find that incredibly frustrating?   Wink


hero member
Activity: 518
Merit: 500
legendary
Activity: 1050
Merit: 1000
if u guys want this coin to hit big exchange like cryptsy or mintpal .... you have to start collecting a bribe.

and do just as 42 coin did .... they bribe cryptsy ... then dev dumped premine ...
newbie
Activity: 44
Merit: 0
Thanks Proteu5! Smiley
But this is how http://nr1.co.in rolls! Smiley Once we get a pool to work, we share the knowledge!
We only just started, but we'll try to get a Git repository up and running soon, until then sharing the code on the forum for each specific coin will do.
Also please, any improvements and/or suggestions are also welcome!
newbie
Activity: 52
Merit: 0
Hi all!
I wanted to give the community the settings to add P2Pool nodes for 21coin.
You can download and install Rav3nPL's p2pool-rav from GitHub: https://github.com/Rav3nPL/p2pool-rav
Just add the following code sections at the end of each networks.py file.

In p2pool-rav/p2pool/bitcoin/networks.py add:

Code:
   twentyone=math.Object(
        P2P_PREFIX='21212121'.decode('hex'),
        P2P_PORT=21213,
        ADDRESS_VERSION=3,
        RPC_PORT=21212,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            '21coinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 0.00000001*100000000 if height < 1500 else 0.0021*100000000 if height == 212 else 0.0021*100000000 if height == 2122 else 0.0021*100000000 if height == 21212 else 0.0021*100000000 if height == 212121 else 0.0021*100000000 if height == 2121212 else 0.000021*100000000,
        POW_FUNC=data.hash256,
        BLOCK_PERIOD=126, # s
        SYMBOL='21',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], '21coin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/21coin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.21coin'), '21coin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://bitalchemy.net/21coin/',
        ADDRESS_EXPLORER_URL_PREFIX='http://bitalchemy.net/21coin/',
        TX_EXPLORER_URL_PREFIX='http://bitalchemy.net/21coin/',
        SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**32 - 1),
        DUMB_SCRYPT_DIFF=1,
        DUST_THRESHOLD=0.001e8,
    ),

And in p2pool-rav/p2pool/networks.py add:

Code:
   twentyone=math.Object(
        PARENT=networks.nets['twentyone'],
        SHARE_PERIOD=25, # seconds
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=10, # blocks
        IDENTIFIER='1212121212121212'.decode('hex'), ## If this value is changed the P2Pool won't sync with other nodes
        PREFIX='2121212121212121'.decode('hex'), ## If this value is changed the P2Pool won't sync with other nodes
        P2P_PORT=21022, ## If this value is changed the P2Pool won't sync with other nodes
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**32 - 1,
        PERSIST=False,
        WORKER_PORT=21021, ## IMPORTANT: Don't forget to open this port on your Firewall!
        ## Add your pool in the line below, e.g.:
        ## BOOTSTRAP_ADDRS='nr1.co.in yourpool.com '.split(' '),
        ## or should you not have a domain name use your IP address, e.g.:
        ## BOOTSTRAP_ADDRS='nr1.co.in 123.156.123.232 '.split(' '),
        BOOTSTRAP_ADDRS='nr1.co.in'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool',
        VERSION_CHECK=lambda v: True,
    ),

Please don't hesitate to ask if you need some support.

@Ruggero There is a shortage of good people around these days. Cheers for going out of your way to post this!
sr. member
Activity: 336
Merit: 250
New to 21 here. Send me some 21 if you have extra. Thanks.

2DUXfHcjq2X5q8SveCkYPNrETiGcr1mJ9w
newbie
Activity: 44
Merit: 0
Hi all!
I wanted to give the community the settings to add P2Pool nodes for 21coin.
You can download and install Rav3nPL's p2pool-rav from GitHub: https://github.com/Rav3nPL/p2pool-rav
Just add the following code sections at the end of each networks.py file.

In p2pool-rav/p2pool/bitcoin/networks.py add:

Code:
   twentyone=math.Object(
        P2P_PREFIX='21212121'.decode('hex'),
        P2P_PORT=21213,
        ADDRESS_VERSION=3,
        RPC_PORT=21212,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            '21coinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 0.00000001*100000000 if height < 1500 else 0.0021*100000000 if height == 212 else 0.0021*100000000 if height == 2122 else 0.0021*100000000 if height == 21212 else 0.0021*100000000 if height == 212121 else 0.0021*100000000 if height == 2121212 else 0.000021*100000000,
        POW_FUNC=data.hash256,
        BLOCK_PERIOD=126, # s
        SYMBOL='21',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], '21coin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/21coin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.21coin'), '21coin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://bitalchemy.net/21coin/',
        ADDRESS_EXPLORER_URL_PREFIX='http://bitalchemy.net/21coin/',
        TX_EXPLORER_URL_PREFIX='http://bitalchemy.net/21coin/',
        SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**32 - 1),
        DUMB_SCRYPT_DIFF=1,
        DUST_THRESHOLD=0.001e8,
    ),

And in p2pool-rav/p2pool/networks.py add:

Code:
   twentyone=math.Object(
        PARENT=networks.nets['twentyone'],
        SHARE_PERIOD=25, # seconds
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=10, # blocks
        IDENTIFIER='1212121212121212'.decode('hex'), ## If this value is changed the P2Pool won't sync with other nodes
        PREFIX='2121212121212121'.decode('hex'), ## If this value is changed the P2Pool won't sync with other nodes
        P2P_PORT=21022, ## If this value is changed the P2Pool won't sync with other nodes
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**32 - 1,
        PERSIST=False,
        WORKER_PORT=21021, ## IMPORTANT: Don't forget to open this port on your Firewall!
        ## Add your pool in the line below, e.g.:
        ## BOOTSTRAP_ADDRS='nr1.co.in yourpool.com '.split(' '),
        ## or should you not have a domain name use your IP address, e.g.:
        ## BOOTSTRAP_ADDRS='nr1.co.in 123.156.123.232 '.split(' '),
        BOOTSTRAP_ADDRS='nr1.co.in'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool',
        VERSION_CHECK=lambda v: True,
    ),

Please don't hesitate to ask if you need some support.
sr. member
Activity: 504
Merit: 250


Why join Coinpool.de?
Backups every 60 minutes of the databases and wallets to protect your earnings.
All servers with a DDoS protection.
Low fees
Get bonuses in our special offers
Stratum Vardiff
Fast servers Xeon 4 x 3,2Ghs 32 GB Ram, SSD
Manual and auto payout
10+ Mining pools out of one Hand (SHA and scrypt)



http://21.coinpool.de
newbie
Activity: 52
Merit: 0
@21 Coin Devs, any thoughts on implementing the Kimoto Gravity Well to the coins source? It can be outfitted to SHA-256.
legendary
Activity: 1456
Merit: 1018
HoneybadgerOfMoney.com Weed4bitcoin.com
Btw...where are to the moon?

Price is in BTC 20ASK 34BID, haha. Funny...where are the believer which want buy cheap coins? Your chance...but i guess just blablabla. Nobody believe in this dead coin. Grin
Dead? It has a lot more miners than then other coins...

I was the majority miner on ispace.co.uk for a few days (~ 75% of the hashrate) but I'm switching back to btc now.  I'll be buying up some of the 21 coin available too for anticipation of a higher price at some point.
legendary
Activity: 1456
Merit: 1018
HoneybadgerOfMoney.com Weed4bitcoin.com
The number 1 problem with 21 coin is lack of a serious market exchange! Without a larger exchange (cryptorush, cryptorush have a trade volume that is too small!) 21 coin is useless!!!!
Cryptsy won't enable trading of  21 coin because the Admins who run cryptsy do not have 21 coin of their own tof sell. Why else isnt 21 coin (and for that matter 66 coin) traded on crytpsy?

ftfy
legendary
Activity: 1323
Merit: 1000
Problem n1 of 21 coin is market exchange! If not exist a exchange serious(not cryptorush, cryptorush have volume trade too small) 21 coin is useless!!!!
Cryptsy no trade 21 coin Admin cryptsy: not have 21 coin for sell? Why 21 coin (and 66 coin crytpsy no trade? Why?
sr. member
Activity: 812
Merit: 250
Miner for what? There is no market for the coins, as you can see on the exchange price.
hero member
Activity: 635
Merit: 500
BlasterKVs the king of xbox modding
Btw...where are to the moon?

Price is in BTC 20ASK 34BID, haha. Funny...where are the believer which want buy cheap coins? Your chance...but i guess just blablabla. Nobody believe in this dead coin. Grin
Dead? It has a lot more miners than then other coins...
sr. member
Activity: 812
Merit: 250
Btw...where are to the moon?

Price is in BTC 20ASK 34BID, haha. Funny...where are the believer which want buy cheap coins? Your chance...but i guess just blablabla. Nobody believe in this dead coin. Grin
Pages:
Jump to: