Bitcoin Forum
May 25, 2024, 02:53:56 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2]
21  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: January 16, 2015, 08:10:07 PM
Does anyone know how many XMG coins are approximately mined per 24hrs at this time?

Today I got some time to play with RPC and got some interesting numbers:

DateTotal Coins GeneratedPOWPOSTotal BlocksPOW BlocksPOS Blocks
15.01.20155355.04309628 XMG5335.32580438 XMG19.71729190 XMG1363453910
14.01.20156582.57954466 XMG6560.94729596 XMG21.63224870 XMG1356444912

More days:
http://xmg.makejar.com/xmg-per-day/

Sorry for spamming the Magi thread so often, I'm just trying to be useful  Wink

nice info!
22  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: January 16, 2015, 10:58:25 AM
Quartx, i don't think you need to move coins that often around, only when it says you do not have any mature coins around. Maybe the more experienced people can answer your question on the long time for the staking rewards.

I suspect it could be that you've moved your coins so much that they will take a longer time to age. I think there are a few post on staking in this thread, you can try searching for them.
23  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: January 16, 2015, 10:24:47 AM
How would one go about "staking" coins?

There was discussion about this recently. Essentially, moving coins around creates transactions. These transactions will be staked a few days later. See this posting:-

https://bitcointalk.org/index.php?topic=735170.msg10016863#msg10016863



So all I have to do is to move coins from one address to another and after a few days I will have rewards from staking depending on the the amount of coins I stake or move around?

Yep, that's the ticket. I run two wallets (on two old junk-pile Pentiums) and regularly move a few hundred XMG around. Make sure that you do not "send" coins while the wallet is showing an amount "in stake". One little tip here is that after you have sent some coins, you must remember to unlock the wallet for staking again afterwards (which is a bit of a pain actually but there we are).


So I finally got some XMG in my wallet, and I did the move A B [amount] in the post above.

Just want to know, how will I know when it is staking? Any UI indication? If it is indeed staking, max period I can leave my wallet offline? (or not open at all), how would I know the stake rewards (after how many days, console method or otherwise)?

you can check if you're staking by the UI by looking at the bottom right hand corner with the two pickaxe, if you mouse over them it will tell you an estimate of how long before you'll be rewarded for staking
24  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: January 12, 2015, 10:49:43 PM
So we can run two different wallets on one pc to solve the issue above? How do we go about allowing two wallets to exist on the same pc?
No need of two wallets (you can't run two either); simply send over 500 XMG six times (assuming total 3000 XMG) to one or different addresses.

ah ok, so basically setup another receiving address in the same wallet. I got confused by the statement above. havoc of jet lag making my brain dumb
25  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: January 12, 2015, 05:51:12 PM
So we can run two different wallets on one pc to solve the issue above? How do we go about allowing two wallets to exist on the same pc?
26  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi |1st PoS-II |1st PoM | M7M CPU only [Poloniex] [Bittrex] on: December 29, 2014, 08:06:51 AM
nice, glad to see magi getting more and more accepted!

lets get more votes on https://www.cryptsy.com/coinvotes
27  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: December 23, 2014, 06:26:54 AM

nah, in their support question, they specifically said network resource. Which is why i was kinda puzzled and wanted to see if others got blocked for the same reason.
28  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: December 23, 2014, 03:31:53 AM
Does anyone have issues with digitalocean disabling the droplet due to high network usage issue?

[VPS mining guide]

Register your VPS through the following referral link to support this project:
Digitalocean: https://www.digitalocean.com/?refcode=0881d086fee6
VULTR: http://www.vultr.com/?ref=6812659
Through the referral link, Digitalocean gives free credit which allows free VPS service.

This guild covers VPS setting up, compiling cpuminer and running pool or solo mining.

1) Set up a VPS server.

2) Get the login information from the email received (IP and password), typically
Code:
ssh root@IP
This is a command to ssh login the VPS. You'lll need to figure out ssh, for example, http://www.putty.org/ for windows.

3) Once login, copy and paste the following commands (you can choose different username than magi)
Code:
adduser magi
follow instructions to set up a user (only need to create password)

Code:
/usr/sbin/visudo
edit this section (add line"magi ..."):
Quote
## User privilege specification
root    ALL=(ALL:ALL) ALL
magi   ALL=(ALL:ALL) ALL

4) Exit and ssh again with (i.e., regular user login rather prior root user)
Code:
ssh magi@IP

5) Upgrade and install packages:
Code:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install git screen automake build-essential libboost-all-dev libdb5.1-dev libdb5.1++-dev libminiupnpc-dev libcurl4-openssl-dev libgmp-dev
(input your password if asking)

6) This is a need if you choose 512 M memory during VPS creation
Code:
sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile

Turn on swap permanently by adding it to the fstab file:
Code:
sudo nano /etc/fstab
 /swapfile       none    swap    sw      0       0

DON'T do the following steps unless you know what they mean:
Code:
sudo swapon -s
sudo swapoff /swapfile
sudo rm /swapfile

7) Compile cpuminer (copy and past following command)
Code:
cd
git clone https://github.com/noncepool/m7magi-cpuminer-v2
cd m7magi-cpuminer-v2
./autogen.sh
CFLAGS="-O3" ./configure
make
sudo cp minerd /usr/local/bin
(notice any errors, let me know if you stuck somewhere)

8-) Pool mining
We need put the miner a screen session so it will run even when we logout VPS:
Code:
screen -S magi
To use Nonce-pool:
Code:
minerd -o stratum+tcp://mine2.magi.nonce-pool.com:4090 -u <username> -p <password>
To use Suprnova pool:
Code:
minerd -o stratum+tcp://xmg.suprnova.cc:7128 -u <username> -p <password>
<username> and <password> are the worker and password you setup in the pool (check the pool website for info; ask me if you don't know how to set it up)
Press “CTRL+a” and then press “D” to detach from the screen session (get back to prior command line). Under regular command line you can check if the screen section is alive:
Code:
screen -ls
If you remember (i.e., magi), simply issue
Code:
screen -r magi
to back to the mining screen. You logout/login to check if the mining is still going on.
Quote
Press “CTRL+A+D”;
Code:
exit
ssh magi@IP
screen -r magi

Basically you're done pool mining! [screen shot]


If you interested to solo mining, please continue reading.

9) Compile and run Magi wallet
Code:
cd
git clone https://github.com/magi-project/magi
cd magi/src
make -f makefile.unix
Create a conf file which should be in the folder: ~/.magi (magi is the user we created)
(magi.conf is not necessary, unless you will sole mine; use more complicated pass as you like)
Code:
cd ~/.magi
emacs magi.conf
emacs is text edit tool, use any you like. save the following content:
Quote
daemon=1
server=1
rpcport=8232
rpcallowip=127.0.0.1
rpcuser=rpcuser
rpcpassword=rpcpass

Code:
cd ~/magi/src
./magid &
The last command runs the daemon.

10) Solo mining
Code:
./minerd --url http://127.0.0.1:8232 --user rpcuser --pass rpcpass --threads <number of threads>
8232 is rpcport, rpcuser and rpcpass are user and password you set in magi.conf
set <number of threads> to a number, matching with the threads of your needs.
29  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi |1st PoS-II |1st PoM | M7M CPU only [Poloniex] [Bittrex] on: December 20, 2014, 03:07:23 AM
https://www.digitalocean.com/

free $10 credit for vps mining for those interested.

Please don't do refcode spamming in this thread. Additionally Digital Ocean isn't the best choice for VPS mining. You get more power at Vultr.com for the same amount of $ and can also pay with BTC. Anyway, thanks for your suggestion.

When suggesting VPS mining, please also link to the VPS mining guide located here https://bitcointalk.org/index.php?topic=735170.msg8800103#msg8800103

sorry, just removed the ref code, just thought i could share the credits after they sent me another $5 after i deactivated it.
30  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi |1st PoS-II |1st PoM | M7M CPU only [Poloniex] [Bittrex] on: December 13, 2014, 03:29:25 AM
Hi Spexx thanks for clarifing and it's really great work on the miner!

To clarify if i'm running the minerd from command line i should use this minerd --url http://127.0.0.1:8232/ --user test --pass x --threads 4 --quiet?
31  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi |1st PoS-II |1st PoM | M7M CPU only [Poloniex] [Bittrex] on: December 12, 2014, 11:32:03 PM
well this is weird, i managed to get it running of sorts. Now it's just saying

[2014-12-12 21:42:24] 1 miner threads started, using 'm7mhash' algorithm.
[2014-12-12 21:42:24] No payout address provided, switching to getwork

Am i missing a step somewhere during the set up of the config file?

I suggest to post what you have done (minerd, conf file, full command, etc) so that others can trouble shoot for you.

Sorry, this is my conf file atm

addnode=66.55.90.58
addnode=107.107.52.31
addnode=162.243.219.192
daemon=1
server=1
rpcport=8232
rpcuser=test
rpcpassword=x
rpcallowip=127.0.0.1

for minerd i'm running it using minerd --url http://127.0.0.1:8232/ --user test --pass x --threads 4

I'm using the mining set created by spexx

edit: oops, it's now showing that it is hashing but should i be concern that it says this "[2014-12-13 07:36:25] No payout address provided, switching to getwork" ?
32  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi |1st PoS-II |1st PoM | M7M CPU only [Poloniex] [Bittrex] on: December 12, 2014, 01:44:14 PM
well this is weird, i managed to get it running of sorts. Now it's just saying

[2014-12-12 21:42:24] 1 miner threads started, using 'm7mhash' algorithm.
[2014-12-12 21:42:24] No payout address provided, switching to getwork

Am i missing a step somewhere during the set up of the config file?
33  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi |1st PoS-II |1st PoM | M7M CPU only [Poloniex] [Bittrex] on: December 11, 2014, 07:18:16 AM
having some issues with solo mining. Anyone able to advise why i'm see this error? I've set it up to run off default and wallet is opening and running.

the error is "HTTP request failed: The requested URL returned error: 500 Internal Server Error"
 json_rpc_call failed, retry after 10 seconds
34  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Magi |1st PoS-II |1st PoM | M7M CPU only [Poloniex] [Bittrex] on: December 05, 2014, 02:09:37 AM
bit late to ask, but is the POS giveaway still happening on http://magi.nonce-pool.com/?
35  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Magi |1st PoS-II | 1st PoM | Fair Distr | M7M CPU only [Tor wallet] on: October 30, 2014, 11:27:15 AM
Does anyone know what's is Debit_AP and TXFee charged by suprnova? I had thought we already paid the fee to them via the 1%?
36  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Magi |1st PoS-II | 1st PoM | Fair Distr |Tor| M7M CPU only [HARDFORK] on: October 30, 2014, 03:01:37 AM
Just a noob question, for XMG wallet can i use the same address between different computers? i have a few computers that i will switch around during mining depending on where i am, so it would be nice if i can bring the same wallet around.
you just need to keep your wallet.dat on an usb drive (the main problem though will be to resync all the time...)

thanks, guess that will be a pain or i can just send the coins to wherever i'm heading to next.
37  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Magi |1st PoS-II | 1st PoM | Fair Distr |Tor| M7M CPU only [HARDFORK] on: October 30, 2014, 02:46:27 AM
Just a noob question, for XMG wallet can i use the same address between different computers? i have a few computers that i will switch around during mining depending on where i am, so it would be nice if i can bring the same wallet around.
38  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [Proof of Mining Campaign] [XMG] Magi | 1st PoS-II | Tor | M7M CPU only on: October 30, 2014, 12:29:26 AM

does this allows us to mine at both pools at the same time?

Yes, but you have to run two instances, pointing to different pools, basically that halves your hash rate (total will be the same).

thanks joelao for clearing that up.
39  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [Proof of Mining Campaign] [XMG] Magi | 1st PoS-II | Tor | M7M CPU only on: October 29, 2014, 02:57:23 PM

does this allows us to mine at both pools at the same time?
Pages: « 1 [2]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!