Bitcoin Forum
June 17, 2024, 03:35:16 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | POW+POS | 0.10.6.3 - New Self Moderated Thread on: September 17, 2019, 08:52:21 AM
0.17.0.3 worked stable, with 0.17.0.4 there are again problems. The wallets loose over the day 3-4 times their blockchain. There are already more than 51% nodes 0.17.0.4 in the chain, but not all are correct recognized. And there are again crashing wallets, not so often like with 0.17.0.1, but it happens again.

And MN is always online, but only sometime got rewards. in 7.3 MN rewards was good, continous. In 7.4 not continous...
2  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][P2POOL] p2pool nodes on p2p-usa.xyz(Chicago) on: September 11, 2019, 05:56:59 PM
Hello Operator,
can you share Myriad Argon2d p2pool settings on github or send me in email?
Please! I need this info Smiley
my email: online.jobs.news@gmail.com

i tried to create myriad/Argon2d settings, but don't work...

i try in p2pool/network/myriad_argon2d.py:

from p2pool.bitcoin import networks

# CHAIN_LENGTH = number of shares back client keeps
# REAL_CHAIN_LENGTH = maximum number of shares back client uses to compute payout
# REAL_CHAIN_LENGTH must always be <= CHAIN_LENGTH
# REAL_CHAIN_LENGTH must be changed in sync with all other clients
# changes can be done by changing one, then the other

PARENT = networks.nets['myriad_argon2d']
SHARE_PERIOD = 15 # seconds
CHAIN_LENGTH = 24*60*60//15 # shares
REAL_CHAIN_LENGTH = 24*60*60//15 # shares
TARGET_LOOKBEHIND = 200 # shares
SPREAD = 60 # blocks
IDENTIFIER = '22b421519e6007d1'.decode('hex')
PREFIX = '228b7bd6c223f853'.decode('hex')
P2P_PORT = 10890
MIN_TARGET = 0
MAX_TARGET = 2**256//10000 - 1
PERSIST = True
WORKER_PORT = 6002
BOOTSTRAP_ADDRS = 'nz.nutty.one'.split(' ')
VERSION_CHECK = lambda v: None if 90216 <= v else 'Myriad version too old. Upgrade to 0.9.2.16 or newer!'
ALGORITHM = 'Argon2d'


and in p2pool/bitcoin//network/myriad_argon2d.py:


import os
import platform

from twisted.internet import defer

from .. import data, helper
from p2pool.util import pack


P2P_PREFIX = 'af4576ee'.decode('hex')
P2P_PORT = 10888
ADDRESS_VERSION = 50
RPC_PORT = 10889
RPC_CHECK = defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            (yield helper.check_genesis_block(bitcoind, '00000ffde4c020b5938441a0ea3d314bf619eff0b38f32f78f7583cffa1ea485')) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        ))
SUBSIDY_FUNC = lambda height: 1000*100000000 >> (height + 1)//967680
POW_FUNC = lambda data: pack.IntType(256).unpack(__import__('argon2d_hash').getHash(data, 80))
BLOCK_PERIOD = 300 # s
SYMBOL = 'XMY'
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'myriadcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/myriadcoin/') if platform.system() == 'Darwin'$
BLOCK_EXPLORER_URL_PREFIX = 'http://insight-myr.cryptap.us/block/'
ADDRESS_EXPLORER_URL_PREFIX = 'http://insight-myr.cryptap.us/address/'
TX_EXPLORER_URL_PREFIX = 'http://insight-myr.cryptap.us/tx/'
SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//10000 - 1)
DUMB_SCRYPT_DIFF = 2**16
DUST_THRESHOLD = 0.001e8

Thanks,
 Joe
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | POW+POS | 0.10.6.3 - New Self Moderated Thread on: September 11, 2019, 01:29:23 PM
Wow! Thank you so much to both F0nzy and AggroHead! @AggroHead I'm pretty new in command only interface and unix/linux OS. I didn’t know that the client file needs to be in bin folder. Also i was in wrong directory  Grin Anyways, it's working now. Should I make a systemd service in order to start automatically in case of power outrage? My PC will start automatically in such case.

Hi, glad to help Smiley

yes, you can create a systemd service like this: /etc/systemd/system/quarkMN1.service:
[Unit]
Description=quarkcoin MN1 service
After=network.target
 [Service]
User=root
Group=root
Type=forking
#PIDFile=/root/.quarkcoin/quarkd.pid
ExecStart=/root/bin/quarkd_MN1.sh
ExecStop=/root/bin/quark-cli_MN1.sh stop
Restart=always
PrivateTmp=true
TimeoutStopSec=60s
TimeoutStartSec=10s
StartLimitInterval=120s
StartLimitBurst=5
 [Install]
WantedBy=multi-user.target

Then /root/bin/quarkd_MN1.sh:
#!/bin/bash
quarkd -daemon -conf=/root/.quarkcoin_MN1/quarkcoin.conf -datadir=/root/.quarkcoin_MN1 $*

quark-cli_MN1.sh:
#!/bin/bash
quark-cli -conf=/root/.quarkcoin_MN1/quarkcoin.conf -datadir=/root/.quarkcoin_MN1 $*

start service:
systemctl start quarkMN1

and set in crontab: crontab -e
@reboot systemctl start quarkMN1

and if you don't want to corrupt database when restart, create a link to: /etc/rc6.d
@K99_stop_nodes (without extension), from /root/bin/stop_nodes.sh:
contain stop masternode command: systemctl stop quarkMN1

and you are really ready with your masternode!

4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | POW+POS | 0.10.6.3 - New Self Moderated Thread on: September 09, 2019, 06:37:15 AM
Hello all! I have recently stuble across your coin and read all the pages in this threat. It’s very interesting and cool so I want to participate. I want to host a masternode on Ubuntu server but there is so little information and can’t figure it out. Things like quarkcoin deamon and such... Is there any guides or at least some more information? It will be great!

Hello,
it's easy, than 1x1 Smiley

In windows:
 - Download wallet, create an address, name it: MN1
 - Send exactly 10000 QRK to this address
 - Wait 15 confirmations
 - generate masternode key, and outputs in wallet debug window: (with this commands: masternode genkey, masternode outputs)
 - exit from wallet
 - create masternode.conf file in the QuakCoin directory, and put in this information (replace with your MN information):
mn1 127.0.0.2:13721 93HaYBVUCYjEMeeH1Y4sBGLALQZE1Yc1K64xiqgX37tGBDQL8Xg 2bcd3c84c84f87eaa86e4e56834c92927a07f9e18718810b92e0d0324456a67c 0
 - start wallet, in masternodes you will see masternode record
 
Create an ubuntu VPS, with minimum 4GB ram:
 - install QRK wallet
 - create .quarkcoin directory in your root or home
 - create quarkcoin.conf in this direcdtory
 - put into the config file your masternode data
 - start wallet, wait while syncronized
 - when ready in windows wallet start your masternode
 - ready, wait rewards
 - send some QRK to my wallet: QZnw4QtVkmCQiJz3YpTzrWNjERKTngU1Ri Smiley

it's all!

Ubuntu quarkcoin.conf example:
Example:

server=1
listen=1
daemon=1

txindex=1
masternode=1
externalip=93.104.214.182
masternodeprivkey=7F2rNf7RtChq6BCqJBdt4oVnB1spWquZ5BZBquMp8Cd7E1rDwtE

#orig
addnode=120.243.239.150
addnode=120.243.240.171
addnode=120.78.154.47
...


Check your masternode:
quarkcoin-cli masternode status

if it's ok, then output:
{
    "vin" : "CTxIn(COutPoint(bd0611a90f, 1), scriptSig=)",
    "service" : "93.104.214.182:13721",
    "pubkey" : "QRdg2MYzNNKZdmVbeZp3rWQ2yGazU8JSdd",
    "status" : "Masternode successfully started"
}

5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | POW+POS | 0.10.6.3 - New Self Moderated Thread on: September 09, 2019, 06:24:17 AM
Hi,
from FreiExchange.com i cannot withdraw my Quarks, page say "Withdraw address not valid".

I wrote to support, and they say:
"There is a issue after the last upgrade of wallet from the quark team so we are investigating it as we speak"

Can you send the latest wallet to them?

Thanks,


I just opend a support-call too, they are working on issue.
They use newest wallet 0.10.7.3

Great,
now it's works!
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | POW+POS | 0.10.6.3 - New Self Moderated Thread on: September 08, 2019, 05:20:03 PM
Hi,
from FreiExchange.com i cannot withdraw my Quarks, page say "Withdraw address not valid".

I wrote to support, and they say:
"There is a issue after the last upgrade of wallet from the quark team so we are investigating it as we speak"

Can you send the latest wallet to them?

Thanks,
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | POW+POS | 0.10.6.3 - New Self Moderated Thread on: August 12, 2019, 08:07:57 AM
Hello!
I created a masternode and it's run and online. I got some rewards (~50), but after spent 9hours and got nothing.
Checked masternode status, it's online (in control wallet and in masternode pc).
What's wrong?

Thanks!
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][TELOS] MASTERNODE Transcendence blockchain POS POStorage POfComputing on: July 24, 2019, 08:51:34 PM
maybe need to delete old blockchain data folder, and downlad new bootstrap.
Links in discord.
My wallet is in sync!
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ARO] | Arionum | CPU+GPU+Masternode | PHP Based |Decentralized Revolution on: May 14, 2019, 09:15:02 AM
Hello, i want to introduce a new pool system: arionum. tk

Separate mining endpoint for CPU, GPU and SOLO users!

Secure HTTPS connection, 40% miner, 60% Historic reward system.

Come and join, no registration needed.

Sorry, i cannot paste pool link Sad
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!