Bitcoin Forum
May 24, 2024, 01:58:31 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 »
  Print  
Author Topic: [ANN][SHA-256][21coin] ULTRA RARE 21 COIN - NOW IN CRYPTORUSH.IN - 3 EXCHANGES!  (Read 55692 times)
coinpool_de
Sr. Member
****
Offline Offline

Activity: 504
Merit: 250


View Profile
February 26, 2014, 08:48:33 PM
 #601



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
ruggero
Newbie
*
Offline Offline

Activity: 44
Merit: 0


View Profile WWW
February 27, 2014, 12:14:21 PM
 #602

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.
hasar
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
February 27, 2014, 08:04:58 PM
 #603

New to 21 here. Send me some 21 if you have extra. Thanks.

2DUXfHcjq2X5q8SveCkYPNrETiGcr1mJ9w

I AM A DNOTES FANS THE COIN ABOVE ALL OTHERS.
Proteu5
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile
February 27, 2014, 08:07:18 PM
 #604

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!
ruggero
Newbie
*
Offline Offline

Activity: 44
Merit: 0


View Profile WWW
February 28, 2014, 09:14:49 AM
 #605

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!
kahir
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
February 28, 2014, 09:25:30 AM
 #606

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 ...
RobRoy
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


View Profile
February 28, 2014, 09:38:39 AM
 #607

http://coinminer.net:19999/

fee: 0%

Happy mining!
drakoin
Hero Member
*****
Offline Offline

Activity: 826
Merit: 1000

see my profile


View Profile
February 28, 2014, 10:47:10 AM
 #608


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



no sign of a signature
giletto
Sr. Member
****
Offline Offline

Activity: 812
Merit: 250



View Profile
February 28, 2014, 12:36:40 PM
 #609

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.


                           █████
                       █████████████
                    █████████████
                ██████████████        █████
             █████████████        ████████████
         ██████████████        █████████████
      █████████████        █████████████       ██████
      ██████████        ████████████           ██████
      ███████       █████████████       ███    ██████
      ███████    █████████████       ██████    ██████
      ████████████████████       ██████████    ██████
      █████████████████       █████████████    ██████
      █████████████       █████████████        ██████
      ██████████       █████████████           ██████
      ███████      ██████████████       ███    ██████
      ██████    █████████████       ███████    ██████
      ██████    ██████████       ██████████    ██████
      ██████    ██████        █████████████    ██████
      ██████    ███       █████████████        ██████
      ██████           █████████████       ██████████
      ██████       █████████████        █████████████
                █████████████       █████████████
             ████████████        █████████████
                 ████         ████████████
                          █████████████
                        ███████████
                           █████
Ferrum Network • Interoperability Network for Financial Applications
GDECOIN
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 28, 2014, 07:19:40 PM
 #610



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

BTC   : 1G9cAAPAuVZcYAnMko8XLnvmxt3xief9wS
LTC    : LMvNpJNfYgCyVZzcopnWcHS9YBFeK6TegY







https://cryptocointalk.com/topic/4392-new-cash-mooncoin-dogecoin-faucet/
crackfoo
Legendary
*
Offline Offline

Activity: 3486
Merit: 1126



View Profile WWW
February 28, 2014, 07:47:43 PM
 #611

21 Coin Hasher Pool runs at only 1% fee PPLNS:

http://21c.hasher.ca

Happy Hashing!

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
RobRoy
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


View Profile
February 28, 2014, 07:49:52 PM
 #612

http://coinminer.net:19999/

fee:0%

Happy mining!
giletto
Sr. Member
****
Offline Offline

Activity: 812
Merit: 250



View Profile
March 01, 2014, 01:27:29 PM
 #613

Senseless chart without trading activity.


                           █████
                       █████████████
                    █████████████
                ██████████████        █████
             █████████████        ████████████
         ██████████████        █████████████
      █████████████        █████████████       ██████
      ██████████        ████████████           ██████
      ███████       █████████████       ███    ██████
      ███████    █████████████       ██████    ██████
      ████████████████████       ██████████    ██████
      █████████████████       █████████████    ██████
      █████████████       █████████████        ██████
      ██████████       █████████████           ██████
      ███████      ██████████████       ███    ██████
      ██████    █████████████       ███████    ██████
      ██████    ██████████       ██████████    ██████
      ██████    ██████        █████████████    ██████
      ██████    ███       █████████████        ██████
      ██████           █████████████       ██████████
      ██████       █████████████        █████████████
                █████████████       █████████████
             ████████████        █████████████
                 ████         ████████████
                          █████████████
                        ███████████
                           █████
Ferrum Network • Interoperability Network for Financial Applications
Marty19
Hero Member
*****
Offline Offline

Activity: 725
Merit: 500



View Profile WWW
March 01, 2014, 06:56:40 PM
 #614

*** 0% Fees *** Stratum *** Vardiff ***

Free pool mining available at iSpace Mining Pools

http://ispace.co.uk

Smiley

bitcoin-world.de
Full Member
***
Offline Offline

Activity: 192
Merit: 100

bitcoin-world.de - The european information source


View Profile WWW
March 01, 2014, 08:30:07 PM
 #615

dont support this kind of coins! tomorrow there will come 33 coin then 44 coin and next week 88 coin. What the fuck is going on ? You make all the community like shit
giletto
Sr. Member
****
Offline Offline

Activity: 812
Merit: 250



View Profile
March 01, 2014, 08:46:54 PM
 #616

dont support this kind of coins! tomorrow there will come 33 coin then 44 coin and next week 88 coin. What the fuck is going on ? You make all the community like shit
Don't worry about this. The shitcoins die automatically. Wink


                           █████
                       █████████████
                    █████████████
                ██████████████        █████
             █████████████        ████████████
         ██████████████        █████████████
      █████████████        █████████████       ██████
      ██████████        ████████████           ██████
      ███████       █████████████       ███    ██████
      ███████    █████████████       ██████    ██████
      ████████████████████       ██████████    ██████
      █████████████████       █████████████    ██████
      █████████████       █████████████        ██████
      ██████████       █████████████           ██████
      ███████      ██████████████       ███    ██████
      ██████    █████████████       ███████    ██████
      ██████    ██████████       ██████████    ██████
      ██████    ██████        █████████████    ██████
      ██████    ███       █████████████        ██████
      ██████           █████████████       ██████████
      ██████       █████████████        █████████████
                █████████████       █████████████
             ████████████        █████████████
                 ████         ████████████
                          █████████████
                        ███████████
                           █████
Ferrum Network • Interoperability Network for Financial Applications
Neotox
Legendary
*
Offline Offline

Activity: 1120
Merit: 1000


Free & Fast Neotox Escrow http://bit.ly/1OGVykp


View Profile WWW
March 02, 2014, 06:20:45 AM
 #617

it is a good coin if promoted and managed well

Available
PM me to rent this space.
giletto
Sr. Member
****
Offline Offline

Activity: 812
Merit: 250



View Profile
March 02, 2014, 06:56:33 AM
 #618

Yeah, IF! But as you can see here...nobody care.


                           █████
                       █████████████
                    █████████████
                ██████████████        █████
             █████████████        ████████████
         ██████████████        █████████████
      █████████████        █████████████       ██████
      ██████████        ████████████           ██████
      ███████       █████████████       ███    ██████
      ███████    █████████████       ██████    ██████
      ████████████████████       ██████████    ██████
      █████████████████       █████████████    ██████
      █████████████       █████████████        ██████
      ██████████       █████████████           ██████
      ███████      ██████████████       ███    ██████
      ██████    █████████████       ███████    ██████
      ██████    ██████████       ██████████    ██████
      ██████    ██████        █████████████    ██████
      ██████    ███       █████████████        ██████
      ██████           █████████████       ██████████
      ██████       █████████████        █████████████
                █████████████       █████████████
             ████████████        █████████████
                 ████         ████████████
                          █████████████
                        ███████████
                           █████
Ferrum Network • Interoperability Network for Financial Applications
drakoin
Hero Member
*****
Offline Offline

Activity: 826
Merit: 1000

see my profile


View Profile
March 02, 2014, 09:26:47 PM
 #619

With these settings, you see sha256 at the top of coinwarz:

http://www.coinwarz.com/cryptocurrency/?sha256HashRate=10000&sha256Power=100.00&sha256PowerCost=0.35&scryptHashRate=1.00&scryptPower=5000.00&scryptPowerCost=1.0000&sha256Check=true&scryptCheck=true&e=Vircurex

I wanted a comparison if the 64000 difficulty is high or low - and it's somewhere in the middle.

So there ARE people mining this, and even MUCH more than other sha256 coins.



Still, I think it would be nice for this to have a different, second block explorer, and the first one be repaired:

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

no sign of a signature
giletto
Sr. Member
****
Offline Offline

Activity: 812
Merit: 250



View Profile
March 03, 2014, 04:16:22 AM
 #620

So there ARE people mining this, and even MUCH more than other sha256 coins.
To mine a coin increase only the quantity of the coins, but not the value.


                           █████
                       █████████████
                    █████████████
                ██████████████        █████
             █████████████        ████████████
         ██████████████        █████████████
      █████████████        █████████████       ██████
      ██████████        ████████████           ██████
      ███████       █████████████       ███    ██████
      ███████    █████████████       ██████    ██████
      ████████████████████       ██████████    ██████
      █████████████████       █████████████    ██████
      █████████████       █████████████        ██████
      ██████████       █████████████           ██████
      ███████      ██████████████       ███    ██████
      ██████    █████████████       ███████    ██████
      ██████    ██████████       ██████████    ██████
      ██████    ██████        █████████████    ██████
      ██████    ███       █████████████        ██████
      ██████           █████████████       ██████████
      ██████       █████████████        █████████████
                █████████████       █████████████
             ████████████        █████████████
                 ████         ████████████
                          █████████████
                        ███████████
                           █████
Ferrum Network • Interoperability Network for Financial Applications
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 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!