Bitcoin Forum
June 08, 2024, 12:49:32 AM *
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]
261  Alternate cryptocurrencies / Altcoin Discussion / Re: What coins are best for noobs? on: July 06, 2016, 03:50:31 PM
Try MonetaryUNit(MUE)

It's quark you can do with your CPU or GPU and the diff still low. Also you can exchange through Bittrex.

262  Economy / Service Discussion / Re: nicehash on: July 06, 2016, 03:41:05 PM
Also I discovered using nicehash that they have bots. So they will control the standard and the fixed price around the earnings of the pools. SO YOU NEVER MAKE ANY PROFIT
 
It's sad but true. And Miningrentals it's expensive. They resale Nicehash power for 3 or 5X the Nicehash price so watchout!!


Its cheaper just buy the coins by a exchange website and gamble if they will increase the price BUT AVOID NICEHASH just if you really need some hash power for some new coin otherwise you are going to lose money
263  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: July 06, 2016, 02:54:04 PM
Yeah the price it's getting better!
I wish we could see more people mining MUE. As much the diff increase the prices will tend to increase too
Everyday someone DUMP coins to the price around 0.30 that will not help to keep the price higher just saying


WE NEED MUE IN MORE MINING POOLS!!

thank you
264  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BTQ] BitQuark | Super secure hashing | CPU mining on: July 05, 2016, 11:40:36 AM
Anybody knows why the android wallet get stuck on the block 1.199.999 Huh

265  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BTQ] BitQuark | Super secure hashing | CPU mining on: July 04, 2016, 11:55:08 PM
Hey also my android wallet does not work!! Do you have any peers?


266  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: July 04, 2016, 07:48:48 PM
https://github.com/MonetaryUnit/MUE-Src/releases/download/v1.0.10.8/bootstrap-block_1400000.tar.gz

That's the link until the block 1.400.000 still missing more the 200.000 but will help sync faster for you!!

Always check here
https://github.com/MonetaryUnit/MUE-Src/releases
267  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BTQ] BitQuark | Super secure hashing | CPU mining on: July 02, 2016, 08:02:12 AM
no bittrex??
They have a really good volume everyday!!

I would help buying more coins using the bittrex like 1 BTC with you add the coin there!!
THANK YOU
268  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: July 01, 2016, 02:15:36 AM
I just put this node online

http://p2pool.siweb.co:8963
269  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: June 29, 2016, 07:08:31 AM


Easy, get the full p2pool software from https://github.com/Neisklar/p2pool-quarkcoin

edit p2pool/networks.py and add

Code:
    monetaryunit=math.Object(
        PARENT=networks.nets['monetaryunit'],
        SHARE_PERIOD=15, # seconds
        NEW_SHARE_PERIOD=15, # seconds
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=50, # shares //with that the pools share diff is adjusting faster, important if huge hashing power comes to the pool
        SPREAD=10, # blocks
        NEW_SPREAD=10, # blocks
        IDENTIFIER='5c7a81f69913bc6f'.decode('hex'),
        PREFIX='81efcdd399ef137b'.decode('hex'),
        P2P_PORT=29963,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=8963,
        BOOTSTRAP_ADDRS='p2pool.e-pool.net'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool',
        VERSION_CHECK=lambda v: True,
    ),


and in p2pool/bitcoin/networks.py  add:

Code:
    monetaryunit=math.Object(
        P2P_PREFIX='04050504'.decode('hex'),
        P2P_PORT=19963,
        ADDRESS_VERSION=15,
        RPC_PORT=9963,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'monetaryunitaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 40*100000000 >> (height + 1)//320001,
        BLOCKHASH_FUNC=lambda data: pack.IntType(256).unpack(__import__('quark_hash').getPoWHash(data)),
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('quark_hash').getPoWHash(data)),
        BLOCK_PERIOD=40, # s
        SYMBOL='MUE',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'monetaryunit') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/monetaryunit/') if platform.system() == 'Darwin' else os.path.expanduser('~/.monetaryunit'), 'monetaryunit.conf'),
        BLOCK_EXPLORER_URL_PREFIX='https://chainz.cryptoid.info/mue/block.dws?',
        ADDRESS_EXPLORER_URL_PREFIX='https://chainz.cryptoid.info/mue/address.dws?',
        TX_EXPLORER_URL_PREFIX='https://chainz.cryptoid.info/mue/tx.dws?',
        SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**20 - 1),
        DUMB_SCRYPT_DIFF=1,
        DUST_THRESHOLD=0.001e8,
    ),


I keep getting this error when try to connect to the stratum server Error: Extranonce2 size is 2 (minimum is 4).
How can I change this??


Thanks you so much to share this information
270  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: June 28, 2016, 07:36:53 PM
 Grin Grin really hot

buying more now!! The network hashrate increased a lot it's been harder to get coins mining  Cry Cry
271  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: June 28, 2016, 06:38:25 AM
I couldn't find any information about a p2pool for MonetaryUnit
I would like to build one p2p node but just don't have online any information.

272  Bitcoin / Mining speculation / Re: Any increased profitability from merged mining? on: June 03, 2016, 04:53:20 AM
To do merge mining, you either have to do it yourself (you CAN run P2Pool but you can't be a member OF a pool), *OR* the pool itself has to do merge mining (I get a large number of DOGE from the Litecoin pool I work with, small bonus not a big help though).




Where do you mine LTC? I was mining on coinotron.com but I felt just losing time and money only.

273  Alternate cryptocurrencies / Pools (Altcoins) / P2pool vs regular pool on: June 03, 2016, 04:24:43 AM
Hi everyone this is my first post here in the forum.
I have been read a lot of posts here.

Right now I am mining Feathercoin using p2pool the payouts are better than the regular pool.

Is it true? why people are not mining over the p2pool? Just the regular pools are easier? Even you just need to connect to a node?


Thanks everyoneee
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 [14]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!