Bitcoin Forum
May 25, 2024, 05:35:21 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 »  All
  Print  
Author Topic: AwesomeMiner Coin Updater *Version 1.0.0* (Plugin)  (Read 16429 times)
Larvitar
Jr. Member
*
Offline Offline

Activity: 196
Merit: 1


View Profile
April 18, 2018, 11:50:11 AM
 #281

Is there any way you can add support for the following?

{ CoinFullName: "Graft", CoinShortName: "GRFT", Algo: "CryptoNight", BlockReward: 1718.7348, BlockTime: 120, BlockExplorer: "https://blockexplorer.graft.network/api/networkinfo"}

I believe the following 2 use the same software but if not if you could add those as well I'd appreciate it greatly. If I can only get one though Graft is absolutely the choice.

{ CoinFullName: "Stellite", CoinShortName: "XTL", Algo: "CryptoNight", BlockReward: 17962.55, BlockTime: 60, BlockExplorer: "https://explorer.stellite.cash/api/networkinfo"}
{ CoinFullName: "Haven", CoinShortName: "XHV", Algo: "CryptoNight", BlockReward: 32.4862 , BlockTime: 120, BlockExplorer: "https://explorer.havenprotocol.com/api/networkinfo"}

Much thanks, this plugin is huge for me.  Would love to be able to capitalize on some of these cryptonight coins when they surge by building a profit profile with them.
Maybe using a "minerpool" method (if possible) in sites like https://cryptoisme.com

I do use that site & https://www.cryptunit.com to find which coin is the most valuable but I'm having to manually enter their difficulty into awesome miner whenever I mine them.

I'd like for the coins values to auto update so that I can build a profit switching profile to do that for me.

Several of them seem to use similar explorer's so I'm hoping getting graft & the other 2 I listed added will allow me to then add some of the others.  But if not those are the 3 that I've been switching between the most lately so that would be a huge help alone.
Yeah. I see it often.

I think is possible to "pick" the diff/value from these sites to AM Coin Updater, but only soothaa can answer if it could be possible.
rbrcpa
Copper Member
Jr. Member
*
Offline Offline

Activity: 62
Merit: 1


View Profile
April 18, 2018, 07:52:04 PM
 #282

Is there any way you can add support for the following?

{ CoinFullName: "Graft", CoinShortName: "GRFT", Algo: "CryptoNight", BlockReward: 1718.7348, BlockTime: 120, BlockExplorer: "https://blockexplorer.graft.network/api/networkinfo"}

I believe the following 2 use the same software but if not if you could add those as well I'd appreciate it greatly. If I can only get one though Graft is absolutely the choice.

{ CoinFullName: "Stellite", CoinShortName: "XTL", Algo: "CryptoNight", BlockReward: 17962.55, BlockTime: 60, BlockExplorer: "https://explorer.stellite.cash/api/networkinfo"}
{ CoinFullName: "Haven", CoinShortName: "XHV", Algo: "CryptoNight", BlockReward: 32.4862 , BlockTime: 120, BlockExplorer: "https://explorer.havenprotocol.com/api/networkinfo"}

Much thanks, this plugin is huge for me.  Would love to be able to capitalize on some of these cryptonight coins when they surge by building a profit profile with them.
Maybe using a "minerpool" method (if possible) in sites like https://cryptoisme.com

I do use that site & https://www.cryptunit.com to find which coin is the most valuable but I'm having to manually enter their difficulty into awesome miner whenever I mine them.

I'd like for the coins values to auto update so that I can build a profit switching profile to do that for me.

Several of them seem to use similar explorer's so I'm hoping getting graft & the other 2 I listed added will allow me to then add some of the others.  But if not those are the 3 that I've been switching between the most lately so that would be a huge help alone.
Yeah. I see it often.

I think is possible to "pick" the diff/value from these sites to AM Coin Updater, but only soothaa can answer if it could be possible.

That would be ideal!

End of the day, all i'm trying to do is somehow get more of those cryptonote coins in awesome miner.
moppidoo
Jr. Member
*
Offline Offline

Activity: 348
Merit: 5


View Profile
April 21, 2018, 08:56:36 AM
 #283

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

Any chance you'd mind sharing this spreadsheet with me?  If it's not possible to add those explorers I'd be more than happy doing it this way too!

please give me some time mate, currently occupied with a few stuffs. I do find out a better way though, some pools such as BSOD.pw, included block difficulty in it's currencies api, this is even more accurate cause that api only returns stats on PoW block it is on, and it's current (grabbing from explorer's history blocks isn't, since it's previous blocks stats). I'll see if I can get my stuffs sorted out and send u a copy if u still want.
rbrcpa
Copper Member
Jr. Member
*
Offline Offline

Activity: 62
Merit: 1


View Profile
April 22, 2018, 05:21:27 AM
 #284

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

Any chance you'd mind sharing this spreadsheet with me?  If it's not possible to add those explorers I'd be more than happy doing it this way too!

please give me some time mate, currently occupied with a few stuffs. I do find out a better way though, some pools such as BSOD.pw, included block difficulty in it's currencies api, this is even more accurate cause that api only returns stats on PoW block it is on, and it's current (grabbing from explorer's history blocks isn't, since it's previous blocks stats). I'll see if I can get my stuffs sorted out and send u a copy if u still want.

Yes absolutely! That would be awesome.

No rush, just whenever you have time, I’d really appreciate it.
cod3gen
Member
**
Offline Offline

Activity: 311
Merit: 69

PowerMining.pw


View Profile WWW
April 22, 2018, 07:20:08 AM
 #285

Anyone experience wrong feedback on Xuma?

{ CoinFullName: "Xuma", CoinShortName: "XMX", Algo: "Quark", BlockReward: 45, BlockTime: 60, BlockExplorer: "http://explorer.xumacoin.org/ext/summary"}

Seems to be getting values that are roughly 1000x higher than they should in AM. Anyone with some ideas?

https://www.powermining.pw ⮚ Hit us with your power while mining for over 30 listed coinz in various algorithms! Get in touch on Discord: https://discord.gg/qSV6b9d
ruplikminer
Jr. Member
*
Offline Offline

Activity: 504
Merit: 3


View Profile
April 22, 2018, 07:31:05 AM
 #286

Anyone experience wrong feedback on Xuma?

{ CoinFullName: "Xuma", CoinShortName: "XMX", Algo: "Quark", BlockReward: 45, BlockTime: 60, BlockExplorer: "http://explorer.xumacoin.org/ext/summary"}

Seems to be getting values that are roughly 1000x higher than they should in AM. Anyone with some ideas?


I have this same problem with all the quark coins. Including Xuma
rbrcpa
Copper Member
Jr. Member
*
Offline Offline

Activity: 62
Merit: 1


View Profile
April 24, 2018, 05:08:49 PM
 #287

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

Any chance you'd mind sharing this spreadsheet with me?  If it's not possible to add those explorers I'd be more than happy doing it this way too!

please give me some time mate, currently occupied with a few stuffs. I do find out a better way though, some pools such as BSOD.pw, included block difficulty in it's currencies api, this is even more accurate cause that api only returns stats on PoW block it is on, and it's current (grabbing from explorer's history blocks isn't, since it's previous blocks stats). I'll see if I can get my stuffs sorted out and send u a copy if u still want.

FYI I tried to PM you but I'm listed as a newbie & it says you have to message me or change a setting to allow me to PM you.
Seanklei10
Newbie
*
Offline Offline

Activity: 74
Merit: 0


View Profile
April 27, 2018, 07:08:04 PM
 #288

@sootha, are you still supporting this plugin?
SiddFan
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
April 27, 2018, 11:26:34 PM
 #289


Most of CryptoNote explorers use same app..

Explorer URL than /api/networkinfo

Results are in this format :
{"data":{"alt_blocks_count":8,"block_size_limit":600000,"cumulative_difficulty":65737693053213,"current":true,"current_hf_version":2,"difficulty":4352118093,"fee_per_kb":63320000,"grey_peerlist_size":0,"hash_rate":36267650,"height":55340,"incoming_connections_count":34,"outgoing_connections_count":8,"start_time":1524667796,"status":true,"target":120,"target_height":55150,"testnet":false,"top_block_hash":"3b4535415d0be6af1738158100b6cb1143bf117119a7b3fb967d66dc74aeade7","tx_count":75169,"tx_pool_size":9,"tx_pool_size_kbytes":718238,"white_peerlist_size":1000},"status":"success"}

Can you integrate supoort for this kind ?
moppidoo
Jr. Member
*
Offline Offline

Activity: 348
Merit: 5


View Profile
April 28, 2018, 06:18:45 AM
 #290

Hi fellow AM'ers,

as to not hijack the thread but @soothaa's seemly less active lately, I'm sharing my crude version of the updater Excel macro enabled file

Pros:
Very customizable

Cons:
Super Duper crude....
Super Duper inefficient when running (suggest a dedicated machine to run this)
Need to know more about how to use powerquery (even the GUI part) in Excel
No error handling, if error occurred even with a disrupted internet, it simply will halt entire updating cause I don't know how to auto dismiss those dialogs. -__-

***
I'm sure some of you more geeky ones can come up with better/more efficient way to replicate the functionality, but that's all I can do for now as I'm not a programmer. All credit goes to @Soothaa for the original ideas.

You need to also have VBA enabled in excel and modify the module code...especially the part where it points to the AwesomeMiner API host to update the coins, I might post up a new post explain a bit on how to use it.

***
Link: https://k2s.cc/file/ae7c04469fa07/CoinAPIUpdater.xlsm (I hope it's ok for the link to file host, if not, mods pls let me know which is acceptable)
Virustotal Report: https://www.virustotal.com/#/file/31f8f47e8d6b223595ee47b4849fa919af8faa1137dce986965b99bd8e0e64f1/details
GoRdiE
Newbie
*
Offline Offline

Activity: 162
Merit: 0


View Profile
April 28, 2018, 08:29:01 AM
 #291

@moppidoo

Hi mopidoo, can you share your config.json on sootha AMCU?
moppidoo
Jr. Member
*
Offline Offline

Activity: 348
Merit: 5


View Profile
April 28, 2018, 10:45:14 AM
 #292

@moppidoo

Hi mopidoo, can you share your config.json on sootha AMCU?

sure thing! there are others that's been shared in previous pages that are lot more comprehensive and we all seem to have numbers off here and there (mining rewards some are dynamic, some are tiered) but anyway, here's mine:

Code:
{CoinFullName: "Muncoin", CoinShortName: "MUN", Algo: "Skein", BlockReward: 75, BlockTime: 150, BlockExplorer: "http://explorer.muncoin.info/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "SkeinCoin", CoinShortName: "SKC", Algo: "Skein", BlockReward: 1, BlockTime: 60, BlockExplorer: "http://xplorer.skeincoin.co/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Ultranote", CoinShortName: "XUN", Algo: "Skein", BlockReward: 150, BlockTime: 120, BlockExplorer: "http://alpha.ultranote.org:8117/stats", BlockExplorerType: "CryptoNote"}
{CoinFullName: "YenTen", CoinShortName: "YTN", Algo: "YescryptR16", BlockReward: 50, BlockTime: 120, BlockExplorer: "http://explorer.yenten.lolpool.club/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Argo Cash", CoinShortName: "ARGO", Algo: "Skein", BlockReward: 60, BlockTime: 60, BlockExplorer: "http://explorer.argocash.com/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "EthereumFuture", CoinShortName: "ETHF", Algo: "Nist5", BlockReward: 7.5, BlockTime: 90, BlockExplorer: "http://explorer.ethereumfuture.net/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Qbic", CoinShortName: "QBIC", Algo: "Neoscrypt", BlockReward: 10, BlockTime: 120, BlockExplorer: "http://explorer.qbic.io:3001/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Straks", CoinShortName: "STAK", Algo: "Lyra2REv2", BlockReward: 3.8, BlockTime: 60, BlockExplorer: "https://api.straks.info/v2/statistics/latest"}
{CoinFullName: "Machine Coin", CoinShortName: "MAC", Algo: "Timetravel", BlockReward: 25, BlockTime: 150, BlockExplorerType: "cryptoid"}

not a lot of coins, and ones with PoW/PoS hybrid doesn't work too well as documented in the previous 2~3 pages, so I'm just trying out.

Simple coins I use soothaa's, ones with PoS or seems less stable with explorers, I use mine to just grab pool's API for up to date difficulty.

***
PS. believe me, that MUNCoin I  didn't put it there, I deleted it several times and it just keep coming back ;p (yes, we all know it's skunk not skein), and yes, XUN is cryptonight..not skein either ;p

that being said...why don't I just put it here....silly me

Code:
{CoinFullName: "Muncoin", CoinShortName: "MUN", Algo: "Skunkhash", BlockReward: 75, BlockTime: 150, BlockExplorer: "http://explorer.muncoin.info/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "SkeinCoin", CoinShortName: "SKC", Algo: "Skein", BlockReward: 1, BlockTime: 60, BlockExplorer: "http://xplorer.skeincoin.co/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Ultranote", CoinShortName: "XUN", Algo: "Cryptonight", BlockReward: 150, BlockTime: 120, BlockExplorer: "http://alpha.ultranote.org:8117/stats", BlockExplorerType: "CryptoNote"}
{CoinFullName: "YenTen", CoinShortName: "YTN", Algo: "YescryptR16", BlockReward: 50, BlockTime: 120, BlockExplorer: "http://explorer.yenten.lolpool.club/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Argo Cash", CoinShortName: "ARGO", Algo: "Skein", BlockReward: 60, BlockTime: 60, BlockExplorer: "http://explorer.argocash.com/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "EthereumFuture", CoinShortName: "ETHF", Algo: "Nist5", BlockReward: 7.5, BlockTime: 90, BlockExplorer: "http://explorer.ethereumfuture.net/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Qbic", CoinShortName: "QBIC", Algo: "Neoscrypt", BlockReward: 10, BlockTime: 120, BlockExplorer: "http://explorer.qbic.io:3001/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Straks", CoinShortName: "STAK", Algo: "Lyra2REv2", BlockReward: 3.8, BlockTime: 60, BlockExplorer: "https://api.straks.info/v2/statistics/latest"}
{CoinFullName: "Machine Coin", CoinShortName: "MAC", Algo: "Timetravel", BlockReward: 25, BlockTime: 150, BlockExplorerType: "cryptoid"}
GoRdiE
Newbie
*
Offline Offline

Activity: 162
Merit: 0


View Profile
April 28, 2018, 11:01:23 AM
 #293

@moppidoo

Hi mopidoo, can you share your config.json on sootha AMCU?

sure thing! there are others that's been shared in previous pages that are lot more comprehensive and we all seem to have numbers off here and there (mining rewards some are dynamic, some are tiered) but anyway, here's mine:

Code:
{CoinFullName: "Muncoin", CoinShortName: "MUN", Algo: "Skein", BlockReward: 75, BlockTime: 150, BlockExplorer: "http://explorer.muncoin.info/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "SkeinCoin", CoinShortName: "SKC", Algo: "Skein", BlockReward: 1, BlockTime: 60, BlockExplorer: "http://xplorer.skeincoin.co/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Ultranote", CoinShortName: "XUN", Algo: "Skein", BlockReward: 150, BlockTime: 120, BlockExplorer: "http://alpha.ultranote.org:8117/stats", BlockExplorerType: "CryptoNote"}
{CoinFullName: "YenTen", CoinShortName: "YTN", Algo: "YescryptR16", BlockReward: 50, BlockTime: 120, BlockExplorer: "http://explorer.yenten.lolpool.club/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Argo Cash", CoinShortName: "ARGO", Algo: "Skein", BlockReward: 60, BlockTime: 60, BlockExplorer: "http://explorer.argocash.com/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "EthereumFuture", CoinShortName: "ETHF", Algo: "Nist5", BlockReward: 7.5, BlockTime: 90, BlockExplorer: "http://explorer.ethereumfuture.net/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Qbic", CoinShortName: "QBIC", Algo: "Neoscrypt", BlockReward: 10, BlockTime: 120, BlockExplorer: "http://explorer.qbic.io:3001/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Straks", CoinShortName: "STAK", Algo: "Lyra2REv2", BlockReward: 3.8, BlockTime: 60, BlockExplorer: "https://api.straks.info/v2/statistics/latest"}
{CoinFullName: "Machine Coin", CoinShortName: "MAC", Algo: "Timetravel", BlockReward: 25, BlockTime: 150, BlockExplorerType: "cryptoid"}

not a lot of coins, and ones with PoW/PoS hybrid doesn't work too well as documented in the previous 2~3 pages, so I'm just trying out.

Simple coins I use soothaa's, ones with PoS or seems less stable with explorers, I use mine to just grab pool's API for up to date difficulty.

***
PS. believe me, that MUNCoin I  didn't put it there, I deleted it several times and it just keep coming back ;p (yes, we all know it's skunk not skein), and yes, XUN is cryptonight..not skein either ;p

that being said...why don't I just put it here....silly me

Code:
{CoinFullName: "Muncoin", CoinShortName: "MUN", Algo: "Skunkhash", BlockReward: 75, BlockTime: 150, BlockExplorer: "http://explorer.muncoin.info/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "SkeinCoin", CoinShortName: "SKC", Algo: "Skein", BlockReward: 1, BlockTime: 60, BlockExplorer: "http://xplorer.skeincoin.co/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Ultranote", CoinShortName: "XUN", Algo: "Cryptonight", BlockReward: 150, BlockTime: 120, BlockExplorer: "http://alpha.ultranote.org:8117/stats", BlockExplorerType: "CryptoNote"}
{CoinFullName: "YenTen", CoinShortName: "YTN", Algo: "YescryptR16", BlockReward: 50, BlockTime: 120, BlockExplorer: "http://explorer.yenten.lolpool.club/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Argo Cash", CoinShortName: "ARGO", Algo: "Skein", BlockReward: 60, BlockTime: 60, BlockExplorer: "http://explorer.argocash.com/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "EthereumFuture", CoinShortName: "ETHF", Algo: "Nist5", BlockReward: 7.5, BlockTime: 90, BlockExplorer: "http://explorer.ethereumfuture.net/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Qbic", CoinShortName: "QBIC", Algo: "Neoscrypt", BlockReward: 10, BlockTime: 120, BlockExplorer: "http://explorer.qbic.io:3001/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Straks", CoinShortName: "STAK", Algo: "Lyra2REv2", BlockReward: 3.8, BlockTime: 60, BlockExplorer: "https://api.straks.info/v2/statistics/latest"}
{CoinFullName: "Machine Coin", CoinShortName: "MAC", Algo: "Timetravel", BlockReward: 25, BlockTime: 150, BlockExplorerType: "cryptoid"}

Thanks a lot, friend

Send you a PM  Wink Wink Wink
GoRdiE
Newbie
*
Offline Offline

Activity: 162
Merit: 0


View Profile
April 28, 2018, 11:07:30 AM
 #294

Code:
{coinFullName: "01Coin", CoinShortName: "ZOC", Algo: "NeoScrypt", BlockReward: 13, BlockTime: 150, BlockExplorer: "http://01coin.lchain.cc/ext/summary"}
{CoinFullName: "Absolute Coin", CoinShortName: "ABS", Algo: "Lyra2REv2", BlockReward: 6, BlockTime: 90, BlockExplorer: "http://www.explorer.absolute-coin.com/ext/summary"}
{coinFullName: "Agena", CoinShortName: "AGN", Algo: "NeoScrypt", BlockReward: 6, BlockTime: 90, BlockExplorer: "http://explorer.agenaproject.com/ext/summary"}
{CoinFullName: "Akroma", CoinShortName: "AKA", Algo: "Ethereum", BlockReward: 7, BlockTime: 10, BlockExplorer: "minerpool"}
{coinFullName: "ArchimedCoin", CoinShortName: "ARHM", Algo: "NeoScrypt", BlockReward: 3, BlockTime: 300, BlockExplorer: "http://explorer.archimedcoin.com/ext/summary"}
{CoinFullName: "Argo", CoinShortName: "ARGO", Algo: "Skein", BlockReward: 47.168, BlockTime: 60, BlockExplorer: "http://explorer.argocash.com/ext/summary"}
{CoinFullName: "Argo Cash", CoinShortName: "ARGO", Algo: "Skein", BlockReward: 60, BlockTime: 60, BlockExplorer: "http://explorer.argocash.com/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Banq", CoinShortName: "BANQ", Algo: "NeoScrypt", BlockReward: 3, BlockTime: 180, BlockExplorer: "http://128.199.42.147:3001/ext/summary"}
{CoinFullName: "Bash Coin", CoinShortName: "BASHC", Algo: "Skein", BlockReward: 8, BlockTime: 60, BlockExplorer: "http://bashcoin.lchain.cc/ext/summary"}
{CoinFullName: "BitcoinPrivate", CoinShortName: "BTCP", Algo: "Equihash", BlockReward: 6.25, BlockTime: 30, BlockExplorer: "https://explorer.btcprivate.org/api/status?q=getDifficulty"}
{CoinFullName: "BitcoinZ", CoinShortName: "BTCZ", Algo: "Equihash", BlockReward: 12500, BlockTime: 154, BlockExplorer: "http://btczexplorer.blockhub.info/ext/summary"}
{CoinFullName: "Bithold", CoinShortName: "BHD", Algo: "C11", BlockReward: 37, BlockTime: 90, BlockExplorer: "http://bithold.lchain.cc/ext/summary"}
{coinFullName: "Bitspace", CoinShortName: "BSX", Algo: "Nist5", BlockReward: 100, BlockTime: 60, BlockExplorerType: "cryptoid"}
{coinFullName: "Brofist", CoinShortName: "PEW", Algo: "NeoScrypt", BlockReward: 6, BlockTime: 120, BlockExplorer: "http://brofistcoin.lchain.cc/ext/summary"}
{CoinFullName: "BZL Coin", CoinShortName: "BZL", Algo: "Tribus", BlockReward: 1, BlockTime: 30}
{CoinFullName: "CelerCoin", CoinShortName: "CELER", Algo: "NeoScrypt", BlockReward: 2, BlockTime: 120, BlockExplorer: "http://explorer.celercoin.com/ext/summary"}
{CoinFullName: "Cerberus", CoinShortName: "CBS", Algo: "NeoScrypt", BlockReward: 5.4, BlockTime: 120, BlockExplorer: "http://exp.cerberuscoin.com/ext/summary"}
{CoinFullName: "Coin2fly", CoinShortName: "CTF", Algo: "NeoScrypt", BlockReward: 7.5, BlockTime: 150, BlockExplorer: "http://explorer.coin2fly.com/ext/summary"}
{coinFullName: "CoreZ", CoinShortName: "CRZ", Algo: "NeoScrypt", BlockReward: 8, BlockTime: 90, BlockExplorer: "http://explorer.corez.site:3001/ext/summary"}
{coinFullName: "Credits", CoinShortName: "CRDS", Algo: "argon2d-crds", BlockReward: 10, BlockTime: 128, BlockExplorer: "http://explorer.crds.co/ext/summary"}
{CoinFullName: "CriptoReal", CoinShortName: "CRS", Algo: "Lyra2z", BlockReward: 0.5, BlockTime: 120, BlockExplorer: "https://explorer.criptoreal.org/ext/summary"}
{CoinFullName: "CurveCoin", CoinShortName: "CURV", Algo: "Skein", BlockReward: 22.169, BlockTime: 90, BlockExplorer: "https://curve.uexplorer.me/api/chart/stat"}
{CoinFullName: "Desire", CoinShortName: "DSR", Algo: "NeoScrypt", BlockReward: 19, BlockTime: 150, BlockExplorer: "http://desire.lchain.cc/ext/summary"}
{CoinFullName: "Dynamic", CoinShortName: "DYN", Algo: "argon2d-dyn", BlockReward: 1, BlockTime: 128, BlockExplorer: "http://dyn.blocksandchain.com/ext/summary"}
{CoinFullName: "Dinero", CoinShortName: "DIN", Algo: "NeoScrypt", BlockReward: 16.5, BlockTime: 90, BlockExplorer: "http://explorer.dinerocoin.org/ext/summary"}
{coinFullName: "DixiCoin", CoinShortName: "DXC", Algo: "C11", BlockReward: 2, BlockTime: 60, BlockExplorer: "http://www.dixi.live/ext/summary"}
{CoinFullName: "Endorphin", CoinShortName: "END", Algo: "NeoScrypt", BlockReward: 5, BlockTime: 120, BlockExplorer: "http://exp.endorphin.network/ext/summary"}
{coinFullName: "Enixt", CoinShortName: "ENIX", Algo: "Skein", BlockReward: 8, BlockTime: 60, BlockExplorer: "http://enixt.lchain.cc/ext/summary"}
{CoinFullName: "EthereumFuture", CoinShortName: "ETHF", Algo: "Nist5", BlockReward: 8, BlockTime: 90, BlockExplorer: "http://explorer.ethereumfuture.net/ext/summary"}
{coinFullName: "Ferrum", CoinShortName: "FRM", Algo: "Skein", BlockReward: 7, BlockTime: 60}
{CoinFullName: "FolmCoin", CoinShortName: "FLM", Algo: "PHI", BlockReward: 30, BlockTime: 120, BlockExplorer: "http://explorer.folm.io/api/chart/stat"}
{CoinFullName: "Fonero", CoinShortName: "FNO", Algo: "CryptoNight", BlockReward: 25.9552, BlockTime: 120, BlockExplorer: "https://api-fno.easyhash.io/stats"}
{CoinFullName: "Galactrum", CoinShortName: "ORE", Algo: "Lyra2REv2", BlockReward: 5, BlockTime: 120, BlockExplorer: "https://explorer.galactrum.org/ext/summary"}
{CoinFullName: "GarlicCoin", CoinShortName: "GRLC", Algo: "Scrypt", BlockReward: 50, BlockTime: 40, BlockExplorer: "https://explorer.grlc-bakery.fun/ext/summary"}
{coinFullName: "GinCoin", CoinShortName: "GIN", Algo: "NeoScrypt", BlockReward: 10, BlockTime: 120, BlockExplorer: "https://explorer.gincoin.io/ext/summary"}
{CoinFullName: "Goa Coin", CoinShortName: "GOA", Algo: "NeoScrypt", BlockReward: 5, BlockTime: 150, BlockExplorer: "http://goa.altexplorer.co/ext/summary"}
{ CoinFullName: "Graft", CoinShortName: "GRFT", Algo: "CryptoNight", BlockReward: 1718.7348, BlockTime: 120, BlockExplorer: "https://blockexplorer.graft.network/api/networkinfo"}
{CoinFullName: "Guncoin", CoinShortName: "GUN", Algo: "NeoScrypt", BlockReward: 150, BlockTime: 120}
{CoinFullName: "HTKcoin", CoinShortName: "HTK", Algo: "X11", BlockReward: 3, BlockTime: 60, BlockExplorer: "http://explorer.hiddentalk.io/ext/summary"}
{CoinFullName: "Infinex", CoinShortName: "IFX", Algo: "Lyra2z", BlockReward: 5, BlockTime: 90, BlockExplorer: "http://explorer.infinex.info/ext/summary"}
{CoinFullName: "Innova", CoinShortName: "INN", Algo: "NeoScrypt", BlockReward: 10, BlockTime: 120, BlockExplorer: "http://explorer.innovacoin.info/ext/summary"}
{CoinFullName: "IntenseCoin", CoinShortName: "ITNS", Algo: "CryptoNight", BlockReward: 1422.852, BlockTime: 120, BlockExplorer: "http://192.124.18.154:8117/stats"}
{coinFullName: "IntermodalCoin", CoinShortName: "IMC", Algo: "C11", BlockReward: 10, BlockTime: 90, BlockExplorer: "http://explorer.intermodalcoin.online/ext/summary"}
{coinFullName: "JoltGas", CoinShortName: "JLG", Algo: "C11", BlockReward: 25, BlockTime: 210, BlockExplorer: "http://joltgas.lchain.cc/ext/summary"}
{CoinFullName: "LeviarCoin", CoinShortName: "XLC", Algo: "CryptoNight", BlockReward: 8.2822, BlockTime: 60, BlockExplorer: "https://leviarcoin.hashvault.pro/api/network/stats"}
{CoinFullName: "Lizus", CoinShortName: "LIZ", Algo: "Skein", BlockReward: 10.19, BlockTime: 60, BlockExplorer: "http://lizus.lchain.cc/ext/summary"}
{CoinFullName: "LuckyBit", CoinShortName: "LUCKY", Algo: "NeoScrypt", BlockReward: 1, BlockTime: 180, BlockExplorer: "http://178.62.73.188:3001/ext/summary"}
{CoinFullName: "Lunex", CoinShortName: "LUNEX", Algo: "Lyra2REv2", BlockReward: 3, BlockTime: 120, BlockExplorer: "http://explorer.lunexcrypto.com/ext/summary"}
{CoinFullName: "MagnetCoin", CoinShortName: "MAG", Algo: "X11", BlockReward: 100, BlockTime: 90, BlockExplorer: "http://35.202.4.153:3001/ext/summary"}
{CoinFullName: "MachineCoin", CoinShortName: "MAC", Algo: "Timetravel", BlockReward: 25, BlockTime: 2.5}
{CoinFullName: "Muncoin", CoinShortName: "MUN", Algo: "Skunkhash", BlockReward: 5, BlockTime: 150, BlockExplorer: "http://explorer.muncoin.info/ext/summary"}
{CoinFullName: "NativeAmerican", CoinShortName: "NAC", Algo: "Scrypt", BlockReward: 4, BlockTime: 240, BlockExplorer: "http://128.199.42.147:3001/ext/summary"}
{CoinFullName: "NevaCoin", CoinShortName: "NEVA", Algo: "Blake 2s", BlockReward: 5, BlockTime: 91}
{CoinFullName: "Nekonium", CoinShortName: "NUKO", Algo: "Ethereum", BlockReward: 7.5, BlockTime: 12, BlockExplorer: "minerpool"}
{CoinFullName: "Nihilo", CoinShortName: "NIHL", Algo: "NeoScrypt", BlockReward: 10, BlockTime: 120, BlockExplorer: "http://172.104.246.158/ext/summary"}
{CoinFullName: "Northern", CoinShortName: "NORT", Algo: "Xevan", BlockReward: 5, BlockTime: 60, BlockExplorer: "http://explorer.nort.network/ext/summary"}
{CoinFullName: "Nyx Coin", CoinShortName: "NYX", Algo: "NeoScrypt", BlockReward: 2, BlockTime: 120, BlockExplorer: "http://explorer.nyxcoin.org/ext/summary"}
{CoinFullName: "Onex Network", CoinShortName: "ONEX", Algo: "NeoScrypt", BlockReward: 5, BlockTime: 90, BlockExplorer: "http://explorer.onex.network:3001/ext/summary"}
{CoinFullName: "Pegascoin", CoinShortName: "PGC", Algo: "Ethereum", BlockReward: 25, BlockTime: 30, BlockExplorer: "minerpool"}
{coinFullName: "PesoCoin", CoinShortName: "PSO", Algo: "X11", BlockReward: 12.5, BlockTime: 120, BlockExplorer: "http://peso.network/ext/summary"}
{coinFullName: "PigeonCoin", CoinShortName: "PGN", Algo: "X16s", BlockReward: 5000, BlockTime: 60, BlockExplorer: "http://explorer.pigeoncoin.org/ext/summary"}
{coinFullName: "PulsarCoin", CoinShortName: "PLSR", Algo: "hmq1725", BlockReward: 10, BlockTime: 60, BlockExplorer: "http://pulsar.lchain.cc/ext/summary"}
{coinFullName: "PyroCoin", CoinShortName: "PYRO", Algo: "Lyra2z", BlockReward: 4, BlockTime: 120, BlockExplorer: "http://138.68.246.198:3001/ext/summary"}
{CoinFullName: "QbicCoin", CoinShortName: "QBIC", Algo: "NeoScrypt", BlockReward: 10, BlockTime: 120, BlockExplorer: "http://139.59.131.248:3001/ext/summary"}
{CoinFullName: "RaceCoin", CoinShortName: "RACE", Algo: "Lyra2REv2", BlockReward: 4.8, BlockTime: 90, BlockExplorer: "http://45.32.147.232:3001/ext/summary"}
{CoinFullName: "Rapture", CoinShortName: "RAP", Algo: "NeoScrypt", BlockReward: 2.97, BlockTime: 120, BlockExplorer: "http://explorer.our-rapture.com/ext/summary"}
{CoinFullName: "Ravencoin", CoinShortName: "RVN", Algo: "x16r", BlockReward: 5000, BlockTime: 60, BlockExplorer: "http://explorer.threeeyed.info/ext/summary"}
{CoinFullName: "Salencoin", CoinShortName: "SLN", Algo: "NeoScrypt", BlockReward: 7.5, BlockTime: 150, BlockExplorer: "http://explorer.salencoin.com/ext/summary"}
{coinFullName: "ScrivCoin", CoinShortName: "SCRIV", Algo: "Tribus", BlockReward: 4.8, BlockTime: 30, BlockExplorer: "http://explorer.scriv.network/ext/summary"}
{CoinFullName: "Shield B2S", CoinShortName: "XSH", Algo: "Blake 2s", BlockReward: 125, BlockTime: 60, BlockExplorer: "http://188.226.178.216:3001/ext/summary"}
{CoinFullName: "Shield Lyra2REv2", CoinShortName: "XSH", Algo: "Lyra2REv2", BlockReward: 125, BlockTime: 60, BlockExplorer: "http://blockstats.pw/shield/api/"}
{CoinFullName: "Shield X17", CoinShortName: "XSH", Algo: "x17", BlockReward: 125, BlockTime: 60, BlockExplorer: "http://blockstats.pw/shield/api/"}
{CoinFullName: "SkeinCoin", CoinShortName: "SKC", Algo: "Skein", BlockReward: 2, BlockTime: 60, BlockExplorer: "http://xplorer.skeincoin.co/ext/summary"}
{CoinFullName: "SnowGem", CoinShortName: "SNG", Algo: "Equihash", BlockReward: 19, BlockTime: 60, BlockExplorer: "https://explorer.snowgem.org/ext/summary"}
{coinFullName: "Sparks", CoinShortName: "SPK", Algo: "NeoScrypt", BlockReward: 9, BlockTime: 120, BlockExplorer: "http://sparks.lchain.cc/ext/summary"}
{CoinFullName: "Stellite", CoinShortName: "XTL", Algo: "CryptoNight", BlockReward: 17962.55, BlockTime: 60, BlockExplorer: "https://explorer.stellite.cash/api/networkinfo"}
{CoinFullName: "Haven", CoinShortName: "XHV", Algo: "CryptoNight", BlockReward: 32.4862 , BlockTime: 120, BlockExplorer: "https://explorer.havenprotocol.com/api/networkinfo"}
{CoinFullName: "Stone Coin", CoinShortName: "STONE", Algo: "NeoScrypt", BlockReward: 6, BlockTime: 120, BlockExplorer: "http://stonecrypto.org/ext/summary"}
{CoinFullName: "STRAKS", CoinShortName: "STAK", Algo: "Lyra2REv2", BlockReward: 3.8, BlockTime: 60, BlockExplorer: "https://api.straks.info/v2/statistics/latest"}
{CoinFullName: "TajCoin", CoinShortName: "TAJ", Algo: "Blake 2s", BlockReward: 99, BlockTime: 180}
{CoinFullName: "Taler", CoinShortName: "TLR", Algo: "Lyra2z", BlockReward: 50, BlockTime: 300, BlockExplorer: "http://taler-explorer.online/ext/summary"}
{coinFullName: "TransendCoin", CoinShortName: "TSC", Algo: "Xevan", BlockReward: 23, BlockTime: 180, BlockExplorer: "https://explorer.transendcoin.com/ext/summary"}
{CoinFullName: "Tune Coin", CoinShortName: "TUN", Algo: "NeoScrypt", BlockReward: 5, BlockTime: 90, BlockExplorer: "http://explorer.tunecrypto.io/ext/summary"}
{CoinFullName: "UFO", CoinShortName: "UFO", Algo: "NeoScrypt", BlockReward: 625, BlockTime: 90}
{coinFullName: "UltimaCoin", CoinShortName: "ULT", Algo: "Skein", BlockReward: 0.6, BlockTime: 30, BlockExplorer: "https://ult.blockrex.info/ext/summary"}
{CoinFullName: "Ultranote", CoinShortName: "XUN", Algo: "Skein", BlockReward: 150, BlockTime: 120, BlockExplorer: "http://alpha.ultranote.org:8117/stats"}
{CoinFullName: "Urals Coin", CoinShortName: "URALS", Algo: "Xevan", BlockReward: 40, BlockTime: 180, BlockExplorer: "http://exp.uralscoin.info:3001/ext/summary"}
{coinFullName: "Victorium", CoinShortName: "VIC", Algo: "Ethereum", BlockReward: 6.25, BlockTime: 30, BlockExplorer: "minerpool"}
{CoinFullName: "Virtus", CoinShortName: "VRT", Algo: "Tribus", BlockReward: 12, BlockTime: 60, BlockExplorer: "http://213.183.45.119:3001/ext/summary"}
{CoinFullName: "Whalecoin", CoinShortName: "WHALE", Algo: "Ethereum", BlockReward: 3.06, BlockTime: 20, BlockExplorer: "minerpool"}
{CoinFullName: "Xhimera", CoinShortName: "XHM", Algo: "Xevan", BlockReward: 1.98, BlockTime: 360, BlockExplorer: "https://xhimera.info/ext/summary"}
{CoinFullName: "Xuma", CoinShortName: "XMX", Algo: "Quark", BlockReward: 50, BlockTime: 60, BlockExplorer: "http://explorer.xumacoin.org/ext/summary"}
{CoinFullName: "YenTen", CoinShortName: "YTN", Algo: "YescryptR16", BlockReward: 50, BlockTime: 120, BlockExplorer: "http://explorer.yenten.lolpool.club/ext/summary", BlockExplorerType: "Iquidus"}
{CoinFullName: "Zacacoin", CoinShortName: "ZACA", Algo: "Scrypt", BlockReward: 4, BlockTime: 60, BlockExplorer: "http://explorer.zacacoin.com/ext/summary"}
{CoinFullName: "Zcoin", CoinShortName: "XZC", Algo: "Lyra2z", BlockReward: 28, BlockTime: 557, BlockExplorer: "https://explorer.zcoin.io/ext/summary"}
{CoinFullName: "Zero", CoinShortName: "ZER", Algo: "Equihash", BlockReward: 10, BlockTime: 120, BlockExplorer: "https://zeroexplorer.forgetop.com/ext/summary"}
{CoinFullName: "ZexCoin", CoinShortName: "ZEX", Algo: "X11", BlockReward: 4, BlockTime: 120, BlockExplorer: "http://explorer.zexcoin.org/ext/summary"}

My config.json

thanks to all of this thread and of course to @soothaa


it would be nice to update it among all  Grin
SiddFan
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
April 29, 2018, 11:26:40 PM
 #295

Are the lines :
{CoinFullName: "Stellite", CoinShortName: "XTL", Algo: "CryptoNight", BlockReward: 17962.55, BlockTime: 60, BlockExplorer: "https://explorer.stellite.cash/api/networkinfo"}
{CoinFullName: "Haven", CoinShortName: "XHV", Algo: "CryptoNight", BlockReward: 32.4862 , BlockTime: 120, BlockExplorer: "https://explorer.havenprotocol.com/api/networkinfo"}

working for you ??
GoRdiE
Newbie
*
Offline Offline

Activity: 162
Merit: 0


View Profile
April 30, 2018, 01:36:10 AM
 #296

Are the lines :
{CoinFullName: "Stellite", CoinShortName: "XTL", Algo: "CryptoNight", BlockReward: 17962.55, BlockTime: 60, BlockExplorer: "https://explorer.stellite.cash/api/networkinfo"}
{CoinFullName: "Haven", CoinShortName: "XHV", Algo: "CryptoNight", BlockReward: 32.4862 , BlockTime: 120, BlockExplorer: "https://explorer.havenprotocol.com/api/networkinfo"}

working for you ??


Not working. Good point
SiddFan
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
April 30, 2018, 07:04:23 AM
 #297

{CoinFullName: "Graft", CoinShortName: "GRFT", Algo: "CryptoNight", BlockReward: 1718.7348, BlockTime: 120, BlockExplorer: "https://graft.hashvault.pro/api/network/stats"}
{CoinFullName: "Stellite", CoinShortName: "XTL", Algo: "CryptoNight", BlockReward: 17962.55, BlockTime: 60, BlockExplorer: "https://stellite.hashvault.pro/api/network/stats"}
{CoinFullName: "Haven", CoinShortName: "XHV", Algo: "CryptoNight", BlockReward: 32.4862 , BlockTime: 120,  BlockExplorer: "https://haven.hashvault.pro/api/network/stats"}

This works (Using HashVault API,, all soins that this pool supports).. but XHV is not listed on any Exchange CoinUpdater queries so again no help..
pogadaev
Copper Member
Newbie
*
Offline Offline

Activity: 201
Merit: 0


View Profile
April 30, 2018, 07:09:15 AM
 #298

tell me where to find the api https://minerpool.net Huh??
GoRdiE
Newbie
*
Offline Offline

Activity: 162
Merit: 0


View Profile
April 30, 2018, 12:45:50 PM
 #299

{CoinFullName: "Graft", CoinShortName: "GRFT", Algo: "CryptoNight", BlockReward: 1718.7348, BlockTime: 120, BlockExplorer: "https://graft.hashvault.pro/api/network/stats"}
{CoinFullName: "Stellite", CoinShortName: "XTL", Algo: "CryptoNight", BlockReward: 17962.55, BlockTime: 60, BlockExplorer: "https://stellite.hashvault.pro/api/network/stats"}
{CoinFullName: "Haven", CoinShortName: "XHV", Algo: "CryptoNight", BlockReward: 32.4862 , BlockTime: 120,  BlockExplorer: "https://haven.hashvault.pro/api/network/stats"}

This works (Using HashVault API,, all soins that this pool supports).. but XHV is not listed on any Exchange CoinUpdater queries so again no help..


Ok. Thanks a lot and... UPDATED config.json  Wink
Larvitar
Jr. Member
*
Offline Offline

Activity: 196
Merit: 1


View Profile
April 30, 2018, 01:48:07 PM
 #300

{CoinFullName: "Graft", CoinShortName: "GRFT", Algo: "CryptoNight", BlockReward: 1718.7348, BlockTime: 120, BlockExplorer: "https://graft.hashvault.pro/api/network/stats"}
{CoinFullName: "Stellite", CoinShortName: "XTL", Algo: "CryptoNight", BlockReward: 17962.55, BlockTime: 60, BlockExplorer: "https://stellite.hashvault.pro/api/network/stats"}
{CoinFullName: "Haven", CoinShortName: "XHV", Algo: "CryptoNight", BlockReward: 32.4862 , BlockTime: 120,  BlockExplorer: "https://haven.hashvault.pro/api/network/stats"}

This works (Using HashVault API,, all soins that this pool supports).. but XHV is not listed on any Exchange CoinUpdater queries so again no help..
Thanks a lot!

It doesn't work with Cryptonight-V7/Heavy algorithm config?
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!