Author

Topic: [ANN] MonetaryUnit [MUE] - POS. MasterNodes. Funding. Governance. Services. Devs - page 136. (Read 450689 times)

full member
Activity: 162
Merit: 100
 
now is   time for panic buying   Grin Grin Grin
legendary
Activity: 1652
Merit: 1001
Don't look at my signature!
my MU wallet can't sync..anyone can help..??some nodes please
Is this a PC wallet or the Android wallet?

You could try these:
addnode=104.131.87.192
addnode=104.236.101.122
addnode=104.236.152.29
addnode=120.164.46.118
addnode=151.249.96.73
addnode=167.114.208.68
addnode=175.33.51.90
addnode=178.19.158.219
addnode=185.11.194.235
addnode=185.22.141.40
addnode=198.27.81.114
addnode=198.27.81.25
addnode=212.227.249.163
addnode=24.54.255.214
addnode=27.34.24.33
addnode=36.79.135.64
addnode=5.189.144.97
addnode=51.254.199.21
addnode=54.89.21.44
addnode=67.193.83.131
addnode=73.226.22.158
addnode=73.9.181.217
addnode=77.185.223.139
addnode=77.249.199.235
addnode=79.172.215.68
addnode=93.126.80.151
addnode=98.201.53.225
sr. member
Activity: 364
Merit: 260
--- ChainWorks Industries ---
hi all ...

i have been trying to put together a couple of quark pools built on mpos and stratum-mining / stratum ( python ) - and the error that plagues this setup is an rpc type of error for block updating ...

i have been told a few times that running a nomp or unomp backend for stratum will work with the newer bitcoin based coins - but that is not the aim of the project we have undertaken for the suite of products in our ecosystem ...

is there anyone out there that CAN help with the python stratum issue of reading these newer daemons and working alongside them? ...

if so - please message me and we can definitely work something out ...

the unomp pool project is part of our project base also - but it is a completely different area and project system altogether ...

so help with the python stratum side will be very much appreciated ...

the quark based pools ( mpos / python stratum ) is the current one we are on - and even though the pools are currently internal and at alpha stage in testing - we will probably open them to the public for beta testing in a couple of weeks time ...

the pool system ( not necessarily these pools or any specific build of pool ) will be permanent fixtures in our ecosystem - hence the reason why we want to alpha and beta test them to their fullest extent ... as well as build the different structures ( mpos - unomp - yiimp - others ) for pools and create an array of systems to work with - so that the best method of mining can be simplified into a unified mining system ...

this also mean that those pools that become a permanent fixture within the permanent pool structure of our ecosystem - will have the accompanying support structure also ... ie - nodes - block explorers - stats - etc ... so if the devs of the coin wish to hardcode the nodes into the system - it can be done so via dns ( as we setup FULL nodes for all our projects ) - so no more 'addnode' and 'connect' issues ... it will connect directly and sync the moment you open the wallet ...

we have a new thread shortly with all the details of our own projects - and the projects we support ...

this of course will be under our umbrella of projects we currently have running ...

any help and paid work is very welcome and negotiable ...

#crysx
full member
Activity: 273
Merit: 100
hero member
Activity: 532
Merit: 500
Offer escrow, receive negative trust
Just buying in, seems I missed out on a lot of news regarding MUE...cheap price right now. Regretting I sold the XEM I bought in at ~70 sat, so now I'm scooping up every coin I can....at least, I'm scooping up all the cheap coins that look promising. And holding this time Tongue
hero member
Activity: 830
Merit: 500
my MU wallet can't sync..anyone can help..??some nodes please
hero member
Activity: 840
Merit: 500
Twitter: @FedKassad

what http://www.muegs.com/? nor start this year? Huh
I'm hoping for a launch this year, thing is like most of us Roslinpl has to balance work, life, friends etc and then fit in the time to develop muegs ....so, let's be patient and let him work his magic Wink

Or he's too busy buying mue before he releases the news? Smiley

I am joking, he looks like a nice guy.
legendary
Activity: 2548
Merit: 1009
Leading Crypto Sports Betting & Casino Platform
good volume today Smiley
keep hold i don't sell for under 200 sat Smiley
legendary
Activity: 1652
Merit: 1001
Don't look at my signature!

what http://www.muegs.com/? nor start this year? Huh
I'm hoping for a launch this year, thing is like most of us Roslinpl has to balance work, life, friends etc and then fit in the time to develop muegs ....so, let's be patient and let him work his magic Wink
legendary
Activity: 2548
Merit: 1009
Leading Crypto Sports Betting & Casino Platform
i see Buy wall Smiley
good signal  Cool
Last time for cheap MUE
legendary
Activity: 2548
Merit: 1009
Leading Crypto Sports Betting & Casino Platform
i think not long time ago price will jump 100 sat or more Grin
full member
Activity: 273
Merit: 100
 Grin Grin really hot

buying more now!! The network hashrate increased a lot it's been harder to get coins mining  Cry Cry
newbie
Activity: 12
Merit: 0
$MUE is hot...better buy now before the moon  Roll Eyes Cool
full member
Activity: 162
Merit: 100
legendary
Activity: 2548
Merit: 1009
Leading Crypto Sports Betting & Casino Platform
now just hold...
now price really cheap good time for buy...  Smiley
legendary
Activity: 1652
Merit: 1001
Don't look at my signature!
hero member
Activity: 619
Merit: 501
https://www.massict.com/
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.




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,
    ),
full member
Activity: 273
Merit: 100
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.

sr. member
Activity: 679
Merit: 254
Looks like the target prices in 200 satoshi not achieved and fail
sr. member
Activity: 364
Merit: 260
--- ChainWorks Industries ---
hi all ...

ill be getting involved soon - mining is good ...

#crysx
Jump to: