Pages:
Author

Topic: AwesomeMiner Coin Updater *Version 1.0.0* (Plugin) - page 14. (Read 16440 times)

hero member
Activity: 1151
Merit: 528
Thanks for this program, very useful.
Anyone know how to get Stipend (SPD) to work? The explorers

https://spd.overemo.com/
http://explorer.stipend.me/

merge (average or something, who cares) PoS and PoW difficulties making it useless.

yiimp can cough up the correct current difficulty in json, but it's for ALL coins, and this coin updater app doesn't know how to handle that to find what we need (yet).
ex: http://api.bsod.pw/api/currencies/

This shows the correct 24 hr diff, but no api: https://altmix.org/coins/58-Stipend

I have this for stipend:

{CoinFullName: "Stipend", CoinShortName: "SPD", Algo: "C11", BlockReward: 15, BlockTime: 90, BlockExplorer: "http://explorer.stipend.me/ext/summary", BlockExplorerType: "Iquidus"}


...which is totally useless. Stop and think about what you're doing. Look at the data. It's clearly returning proof of stake difficulty most of the time.
It's not marked from what I see as PoS.. are you telling me that it sometimes returns PoW and sometimes PoS in the "difficulty" field? If so that is monumentally stupid on their part...
full member
Activity: 245
Merit: 105
Thanks for this program, very useful.
Anyone know how to get Stipend (SPD) to work? The explorers

https://spd.overemo.com/
http://explorer.stipend.me/

merge (average or something, who cares) PoS and PoW difficulties making it useless.

yiimp can cough up the correct current difficulty in json, but it's for ALL coins, and this coin updater app doesn't know how to handle that to find what we need (yet).
ex: http://api.bsod.pw/api/currencies/

This shows the correct 24 hr diff, but no api: https://altmix.org/coins/58-Stipend

I have this for stipend:

{CoinFullName: "Stipend", CoinShortName: "SPD", Algo: "C11", BlockReward: 15, BlockTime: 90, BlockExplorer: "http://explorer.stipend.me/ext/summary", BlockExplorerType: "Iquidus"}


...which is totally useless. Stop and think about what you're doing. Look at the data. It's clearly returning proof of stake difficulty most of the time.

Yep you're right.  Basically any Iquidus explorer for the updater will not be accurate if the coin is POW/POS right now I suppose.  There must be a way to exclude the POS difficulty.  Thanks for pointing it out.
jr. member
Activity: 348
Merit: 5
Thanks for this program, very useful.
Anyone know how to get Stipend (SPD) to work? The explorers

https://spd.overemo.com/
http://explorer.stipend.me/

merge (average or something, who cares) PoS and PoW difficulties making it useless.

yiimp can cough up the correct current difficulty in json, but it's for ALL coins, and this coin updater app doesn't know how to handle that to find what we need (yet).
ex: http://api.bsod.pw/api/currencies/

This shows the correct 24 hr diff, but no api: https://altmix.org/coins/58-Stipend

Currently using Excel web query import hack...filter out all PoS rows @ https://spd.overemo.com/ then averaging the remaining blocks.....set the macro to run every 2 min or so...grab price from exchange api in similar fashion but with json import, parse the query to AM from excel to update the coin...worked for me for JoltGas (JLG)...

I'm totally no good at programming and maths, so this is a rather lame way to implement but .... not bad for temporary patch work ;p

**something like this


Code:
Sub TestJLG()
Dim objHTTP     As Object
Dim URL         As String
Dim Data        As String
Dim replyTXT
Dim URLConcat As String
Dim cellxIndex As Integer
Dim cellTicker As Integer
Dim cellName As Integer
Dim cellAlgo As Integer
Dim cellReward As Integer
Dim cellDiff As Integer
Dim cellBTC As Integer

cellTicker = 17
cellName = 20
cellAlgo = 8
cellReward = 11
cellDiff = 2
cellBTC = 5

cellxIndex = 1

URLConcat = "http://localhost:17790/api/coins/" & Cells(cellTicker, cellxIndex).Value & "?name=" & Cells(cellName, cellxIndex).Value & "&algorithm=" & Cells(cellAlgo, cellxIndex).Value & "&reward=" & Cells(cellReward, cellxIndex).Value & "&difficulty=" & Cells(cellDiff, cellxIndex).Value & "&btc=" & Cells(cellBTC, cellxIndex).Value

Set objHTTP = CreateObject("MSXML2.ServerXMLHTTP")
URL = URLConcat
objHTTP.Open "POST", URL, False
objHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
objHTTP.send ("")

cellxIndex = 2

URLConcat = "http://localhost:17790/api/coins/" & Cells(cellTicker, cellxIndex).Value & "?name=" & Cells(cellName, cellxIndex).Value & "&algorithm=" & Cells(cellAlgo, cellxIndex).Value & "&reward=" & Cells(cellReward, cellxIndex).Value & "&difficulty=" & Cells(cellDiff, cellxIndex).Value & "&btc=" & Cells(cellBTC, cellxIndex).Value

Set objHTTP = CreateObject("MSXML2.ServerXMLHTTP")
URL = URLConcat
objHTTP.Open "POST", URL, False
objHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
objHTTP.send ("")

Application.OnTime Now + TimeValue("00:00:30"), "TestJLG"

End Sub

currently trying to work out a way to cache the json locally so I don't get blocked from the api if the list of coins grows
newbie
Activity: 1
Merit: 0
Lastly, in appears you do not support the Insight api?

I second the possibility for insight api support.
member
Activity: 113
Merit: 10
Thanks for this program, very useful.
Anyone know how to get Stipend (SPD) to work? The explorers

https://spd.overemo.com/
http://explorer.stipend.me/

merge (average or something, who cares) PoS and PoW difficulties making it useless.

yiimp can cough up the correct current difficulty in json, but it's for ALL coins, and this coin updater app doesn't know how to handle that to find what we need (yet).
ex: http://api.bsod.pw/api/currencies/

This shows the correct 24 hr diff, but no api: https://altmix.org/coins/58-Stipend

I have this for stipend:

{CoinFullName: "Stipend", CoinShortName: "SPD", Algo: "C11", BlockReward: 15, BlockTime: 90, BlockExplorer: "http://explorer.stipend.me/ext/summary", BlockExplorerType: "Iquidus"}


...which is totally useless. Stop and think about what you're doing. Look at the data. It's clearly returning proof of stake difficulty most of the time.
full member
Activity: 245
Merit: 105
Thanks for this program, very useful.
Anyone know how to get Stipend (SPD) to work? The explorers

https://spd.overemo.com/
http://explorer.stipend.me/

merge (average or something, who cares) PoS and PoW difficulties making it useless.

yiimp can cough up the correct current difficulty in json, but it's for ALL coins, and this coin updater app doesn't know how to handle that to find what we need (yet).
ex: http://api.bsod.pw/api/currencies/

This shows the correct 24 hr diff, but no api: https://altmix.org/coins/58-Stipend

I have this for stipend:

{CoinFullName: "Stipend", CoinShortName: "SPD", Algo: "C11", BlockReward: 15, BlockTime: 90, BlockExplorer: "http://explorer.stipend.me/ext/summary", BlockExplorerType: "Iquidus"}
member
Activity: 113
Merit: 10
Thanks for this program, very useful.
Anyone know how to get Stipend (SPD) to work? The explorers

https://spd.overemo.com/
http://explorer.stipend.me/

merge (average or something, who cares) PoS and PoW difficulties making it useless.

yiimp can cough up the correct current difficulty in json, but it's for ALL coins, and this coin updater app doesn't know how to handle that to find what we need (yet).
ex: http://api.bsod.pw/api/currencies/

This shows the correct 24 hr diff, but no api: https://altmix.org/coins/58-Stipend
hero member
Activity: 1151
Merit: 528
I know that's not ideal, but i encountered lots of explorer that dont give me the summary page.
In that case cant you implement to get /getdifficulty only?
I'll add it to my list
hero member
Activity: 1151
Merit: 528
Hi buddy,

I am adding denarius to the list. But I get an error about the block explorer not being supported. But I think it is supproted.

https://denariusexplorer.org/ext/summary

May you look into it?

thanks!
Ugh looks like they changed the API - the difficulty is broken out into a PoW and a PoS section..

Looks like denarius is on CryptoChainz - you don't need to fill out the block explorer section then.

Ok I left denarius in teh config without block explorer. It works but it reports completely wrong value http://prntscr.com/itviaj

It's open since a couple of hours but still reports wrong value....
CryptoChainz is not as immediate - just verified that they're both correct
jr. member
Activity: 504
Merit: 3
Hi buddy,

I am adding denarius to the list. But I get an error about the block explorer not being supported. But I think it is supproted.

https://denariusexplorer.org/ext/summary

May you look into it?

thanks!
Ugh looks like they changed the API - the difficulty is broken out into a PoW and a PoS section..

Looks like denarius is on CryptoChainz - you don't need to fill out the block explorer section then.

Ok I left denarius in teh config without block explorer. It works but it reports completely wrong value http://prntscr.com/itviaj

It's open since a couple of hours but still reports wrong value....
newbie
Activity: 12
Merit: 0
I know that's not ideal, but i encountered lots of explorer that dont give me the summary page.
In that case cant you implement to get /getdifficulty only?
hero member
Activity: 1151
Merit: 528
Hi buddy,

I am adding denarius to the list. But I get an error about the block explorer not being supported. But I think it is supproted.

https://denariusexplorer.org/ext/summary

May you look into it?

thanks!
Ugh looks like they changed the API - the difficulty is broken out into a PoW and a PoS section..

Looks like denarius is on CryptoChainz - you don't need to fill out the block explorer section then.
hero member
Activity: 1151
Merit: 528
What do you have set for your Quark hash rate in the profit profile? I'm guessing 10GH/s which is a lot for Quark...my 1x 1080TI gets about 55Mh/s

Yes, 10 GH/s.
But baikal x10 runs quark at 10 GH/s, that's why I set that value.
Other coins using skein (5 GH/s) are correctly updated.
I will add another 10 GH/s coin and let you know.
Thank you.


It is a bug with Awesome miner it looks like with Quark specifically. As a test, try setting instacash to a different algo and set that algo to 10GH/s like you have. It will calculate profit with more realistic numbers. Sootha's plugin is pulling all the data in correctly (value and difficulty)
Thanks for debugging that for me - don't think I'd have figured that one out.
jr. member
Activity: 504
Merit: 3
Hi buddy,

I am adding denarius to the list. But I get an error about the block explorer not being supported. But I think it is supproted.

https://denariusexplorer.org/ext/summary

May you look into it?

thanks!
full member
Activity: 374
Merit: 101
What do you have set for your Quark hash rate in the profit profile? I'm guessing 10GH/s which is a lot for Quark...my 1x 1080TI gets about 55Mh/s

Yes, 10 GH/s.
But baikal x10 runs quark at 10 GH/s, that's why I set that value.
Other coins using skein (5 GH/s) are correctly updated.
I will add another 10 GH/s coin and let you know.
Thank you.


It is a bug with Awesome miner it looks like with Quark specifically. As a test, try setting instacash to a different algo and set that algo to 10GH/s like you have. It will calculate profit with more realistic numbers. Sootha's plugin is pulling all the data in correctly (value and difficulty)


Bingo!

Thank you very much.

(changed to qubit, correct values)
newbie
Activity: 74
Merit: 0
What do you have set for your Quark hash rate in the profit profile? I'm guessing 10GH/s which is a lot for Quark...my 1x 1080TI gets about 55Mh/s

Yes, 10 GH/s.
But baikal x10 runs quark at 10 GH/s, that's why I set that value.
Other coins using skein (5 GH/s) are correctly updated.
I will add another 10 GH/s coin and let you know.
Thank you.


It is a bug with Awesome miner it looks like with Quark specifically. As a test, try setting instacash to a different algo and set that algo to 10GH/s like you have. It will calculate profit with more realistic numbers. Sootha's plugin is pulling all the data in correctly (value and difficulty)
full member
Activity: 374
Merit: 101
What do you have set for your Quark hash rate in the profit profile? I'm guessing 10GH/s which is a lot for Quark...my 1x 1080TI gets about 55Mh/s

Yes, 10 GH/s.
But baikal x10 runs quark at 10 GH/s, that's why I set that value.
Other coins using skein (5 GH/s) are correctly updated.
I will add another 10 GH/s coin and let you know.
Thank you.
newbie
Activity: 74
Merit: 0
Maybe I'm doing something wrong, but with ICH I get huge values.
My config.json:

{CoinFullName: "InstaCash", CoinShortName: "ICH", Algo: "Quark", BlockReward: 7.5, BlockTime: 30, BlockExplorer: "http://instacash.network/ext/summary", BlockExplorerType: "Iquidus"}

After updating, I should earn 0.375 BTC/day (10 GH/s Quark), instead of 0.0015.

That's cool, :-)
but I can't find where I'm failing.  Other coins seem to be working correctly.
I'm using latest release of both AM and AM plugin.
Thank you.
Did you let it run 10-15 minutes for the averaging to settle the values?

Yes, I didn't stop the plugin, currently it's still at 0.321 BTC/day.
I added 5 coins, ICH is the only wrong.

What do you have set for your Quark hash rate in the profit profile? I'm guessing 10GH/s which is a lot for Quark...my 1x 1080TI gets about 55Mh/s
full member
Activity: 374
Merit: 101
Maybe I'm doing something wrong, but with ICH I get huge values.
My config.json:

{CoinFullName: "InstaCash", CoinShortName: "ICH", Algo: "Quark", BlockReward: 7.5, BlockTime: 30, BlockExplorer: "http://instacash.network/ext/summary", BlockExplorerType: "Iquidus"}

After updating, I should earn 0.375 BTC/day (10 GH/s Quark), instead of 0.0015.

That's cool, :-)
but I can't find where I'm failing.  Other coins seem to be working correctly.
I'm using latest release of both AM and AM plugin.
Thank you.
Did you let it run 10-15 minutes for the averaging to settle the values?

Yes, I didn't stop the plugin, currently it's still at 0.321 BTC/day.
I added 5 coins, ICH is the only wrong.
hero member
Activity: 1151
Merit: 528
Maybe I'm doing something wrong, but with ICH I get huge values.
My config.json:

{CoinFullName: "InstaCash", CoinShortName: "ICH", Algo: "Quark", BlockReward: 7.5, BlockTime: 30, BlockExplorer: "http://instacash.network/ext/summary", BlockExplorerType: "Iquidus"}

After updating, I should earn 0.375 BTC/day (10 GH/s Quark), instead of 0.0015.

That's cool, :-)
but I can't find where I'm failing.  Other coins seem to be working correctly.
I'm using latest release of both AM and AM plugin.
Thank you.
Did you let it run 10-15 minutes for the averaging to settle the values?
Pages:
Jump to: