Author

Topic: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] - page 1017. (Read 2375939 times)

legendary
Activity: 1274
Merit: 1006
the number are a little off for nvidia

tell me which cards / algo, ty
x11/keccak and neoscrypt for the gtx980
(need to check for keccak though)

with what miner/setup are you getting 3,5 MH/s with R9 280X?
legendary
Activity: 1750
Merit: 1005
Just a heads up:

You can sell your personal stuff or buy other people's items and pay / get paid in XMG.

Cointopay marketplace

https://cointopay.com/M_MarketOverview.jsp

Select the item you wish to buy (no matter which currency appears), enter your details and select Magi as payment option.
Or simply create your own offer and sell items you want to get rid of.

Cryptopia marketplace

https://www.cryptopia.co.nz/MarketPlace?categoryId=0¤cyId=30&locationId=0&sortBy=Title&searchTerm=&type=All%20Items

Currently no items are offered. Be the first one who places any orders and sell your stuff for XMG.

Whats the status of Betasharex? People have their coins back?
legendary
Activity: 1750
Merit: 1005
Yea Coinmagi group is on page two. Few more members and Magi will enter page one!
 Smiley
http://socialcrypto.net/groups/all?filter=popular&offset=10
legendary
Activity: 1400
Merit: 1050
the number are a little off for nvidia

tell me which cards / algo, ty
x11/keccak and neoscrypt for the gtx980
(need to check for keccak though)
legendary
Activity: 1190
Merit: 1009
Coin of the Magi!
Is it possible to increase the transfer limit (back to what it was), it is a bit ennoying how it is (especially as I don't know what is the limit but I know that I had to split some deposit and even while transfering to one address in my wallet)

Is that something "Transaction creation failed" error? if so that could be due to a large number of inputs used to create transaction especially when sending a big amount of coins.
member
Activity: 85
Merit: 10
the number are a little off for nvidia

tell me which cards / algo, ty
legendary
Activity: 1400
Merit: 1050
member
Activity: 85
Merit: 10
legendary
Activity: 1750
Merit: 1005
member
Activity: 85
Merit: 10
legendary
Activity: 1750
Merit: 1005

Hm, what do you need? Let me know specs so that I can make a custom API call if you want?

A custom API (json?) that returns the current difficulty and the reward ?

My goal is to add XMG on my site  Smiley

What kind of website do you mean amigo?
legendary
Activity: 1400
Merit: 1050
Is it possible to increase the transfer limit (back to what it was), it is a bit ennoying how it is (especially as I don't know what is the limit but I know that I had to split some deposit and even while transfering to one address in my wallet)
member
Activity: 85
Merit: 10

Alright, we need a little figure on this. What needed are recent 2000 blocks' difficulty and also noticed the block time used in calculation too. So most straightforward is to access the wallet's api then; either, let me look into hosting a JSON API in my server to access block value.

Are you trying to add a mining calculator? http://www.altcoinprofitability.com


The second option is better for me, if u can host a JSON API with a private key for example.. then i will add your coin on my website  Smiley Smiley Smiley
legendary
Activity: 1190
Merit: 1009
Coin of the Magi!
I just thought of a simple way to calculate average diff. You can simply sum up diff of past 100 blocks and then divide it by 100, which is a simple average. This way won't differ much than the actual value; this method should be better than using the diff-V2 since for mining calculator, the more stable value, the better.
legendary
Activity: 1190
Merit: 1009
Coin of the Magi!
Will this work for you?

Code:
getnewblockvaluebynumber 174196

Code:
{
"flags" : "proof-of-work",
"difficulty" : 2.40458289,
"difficulty-V2" : 1.66967352,
"blockvalue" : 12.39547783
}

difficulty is the actual value; difficulty-V2 is the value calculated by https://github.com/magi-project/magi/blob/master/src/main.cpp#L968, i.e., rDiff as in the formula I posted.

it's perfect but i am looking for a way witout wallet...

We must have the difficulty data to feed into the formula, what's alternative you'd use to access difficulty? Once we can get that, it would be easy by using https://github.com/magi-project/magi/blob/master/src/main.cpp#L968

A pool with JSON API

Alright, we need a little figure on this. What needed are recent 2000 blocks' difficulty and also noticed the block time used in calculation too. So most straightforward is to access the wallet's api then; either, let me look into hosting a JSON API in my server to access block value.

Are you trying to add a mining calculator? http://www.altcoinprofitability.com

Code:
getminingbykhps 100

Code:
{
"hashrate (kh/s)" : 100.00000000,
"difficulty" : 1.26654813,
"difficulty(aver)" : 2.29402066,
"blockvalue" : 2.52426217,
"mining (XMG)" : {
"1 hour" : 0.09223161,
"1 day" : 2.21355856,
"1 week" : 15.49490990
}

just another option.
member
Activity: 85
Merit: 10
Will this work for you?

Code:
getnewblockvaluebynumber 174196

Code:
{
"flags" : "proof-of-work",
"difficulty" : 2.40458289,
"difficulty-V2" : 1.66967352,
"blockvalue" : 12.39547783
}

difficulty is the actual value; difficulty-V2 is the value calculated by https://github.com/magi-project/magi/blob/master/src/main.cpp#L968, i.e., rDiff as in the formula I posted.

it's perfect but i am looking for a way witout wallet...

We must have the difficulty data to feed into the formula, what's alternative you'd use to access difficulty? Once we can get that, it would be easy by using https://github.com/magi-project/magi/blob/master/src/main.cpp#L968

A pool with JSON API
legendary
Activity: 1190
Merit: 1009
Coin of the Magi!
Will this work for you?

Code:
getnewblockvaluebynumber 174196

Code:
{
"flags" : "proof-of-work",
"difficulty" : 2.40458289,
"difficulty-V2" : 1.66967352,
"blockvalue" : 12.39547783
}

difficulty is the actual value; difficulty-V2 is the value calculated by https://github.com/magi-project/magi/blob/master/src/main.cpp#L968, i.e., rDiff as in the formula I posted.

it's perfect but i am looking for a way witout wallet...

We must have the difficulty data to feed into the formula, what's alternative you'd use to access difficulty? Once we can get that, it would be easy by using https://github.com/magi-project/magi/blob/master/src/main.cpp#L968
member
Activity: 85
Merit: 10

Hm, what do you need? Let me know specs so that I can make a custom API call if you want?

A custom API (json?) that returns the current difficulty and the reward ?

My goal is to add XMG on my site  Smiley

Will this work for you?

Code:
getnewblockvaluebynumber 174196

Code:
{
"flags" : "proof-of-work",
"difficulty" : 2.40458289,
"difficulty-V2" : 1.66967352,
"blockvalue" : 12.39547783
}

difficulty is the actual value; difficulty-V2 is the value calculated by https://github.com/magi-project/magi/blob/master/src/main.cpp#L968, i.e., rDiff as in the formula I posted.

it's perfect but i am looking for a way witout wallet...
legendary
Activity: 1190
Merit: 1009
Coin of the Magi!

Hm, what do you need? Let me know specs so that I can make a custom API call if you want?

A custom API (json?) that returns the current difficulty and the reward ?

My goal is to add XMG on my site  Smiley

Will this work for you?

Code:
getnewblockvaluebynumber 174196

Code:
{
"flags" : "proof-of-work",
"difficulty" : 2.40458289,
"difficulty-V2" : 1.66967352,
"blockvalue" : 12.39547783
}

difficulty is the actual value; difficulty-V2 is the value calculated by https://github.com/magi-project/magi/blob/master/src/main.cpp#L968, i.e., rDiff as in the formula I posted.
legendary
Activity: 1190
Merit: 1009
Coin of the Magi!
did you tried with this or was miner app this ? asking for just being sure
http://sourceforge.net/projects/coinmagi/files/m-miner/wolf-m7m-cpuminer-V2/
Spexx's compilation might be better: http://coinmagi.org/files/magi-miner/Spexx-package/
(I hosted these in our site)
Jump to: