Show Posts
|
Pages: [1] 2 »
|
The 2nd node is alive: addnode=node.digigreencoin.com The node is currently still syncing, but should be fully up-to-date shortly. It is running on the latest source code version 4.2.1.0. @George5, if you still have any DOPE to share, please just DM me  . Thx & Cheers
|
|
|
Great.  Is there any chance of releasing a new, working Windows client soon? Thx.
|
|
|
Thx.
I joined Discord but your link over there also seems to be not working. Easyupload says: FILE NOT FOUND
Additionally which exact S9I firmware should I flash first as in the discussions various versions are mentioned. Which one exactly is recommended?
Thx a lot.
|
|
|
Hello,
I still have an older S9I 14.5T laying around and would give the mod a try but all the links are no longer working.
Can you please kindly provide the links to the needed S9I firmware and to your mod file.
Thx a lot.
|
|
|
Hi,
I have 2 PC's using the same wallet file but suspect something is wrong.
Looks like your first wallet is on a wrong chain. All those stakes will be invalid on the good chain. You need to delete everything in your appdata/dopecoin directory EXCEPT for wallet.dat Then start the wallet with -rescan option and let it sync from scratch. This should bring you back to the right chain. If syncing from scratch takes too much time, you can use this blockchain snapshot: https://mega.nz/#!hMY3AC5C!CPDaTJ4rh-Gm_8vjjHSzG_23rYS2Ivn6o-VS-xvWugoAnd like Dr Charles said, don't try to sync the same wallet on different machines  That's what probably caused the fork. Thx a lot. I deleted everything in my appdata/dopecoin directory EXCEPT for wallet.dat and peers.dat. Then started the wallet with -rescan option and currently let it sync from scratch. I know that I can't stake on two machines for the same wallet/addresses. But, can I just stake on my first machine only and only start the wallet in parallel also on my second machine (without unlock)? The reason is that my main wallet (first machine) is running 24/7 on a VM inside a NAS but I don't have always access to it. So I also want have the wallet on a second machine to just see the current coin / transaction details and to ensure the VM not died  . Thx again. Cheers, JMan
|
|
|
Hi,
I have 2 PC's using the same wallet file but suspect something is wrong. Both Windows PC's are on wallet version: "v4.0.0.5-dope".
But:
- First PC is staking like hell (30 coins almost every minute). These coins are shown as confirmed after a while. (Current block shown is 593200) - Second PC is not showing all transaction from the first PC and shows completely different balance, stake, total, etc.. (Current block shown is 602043) (If I stake on that PC it's much slower.)
I think something is wrong. Again both PC's using the same wallet version and a the same wallet file. Dope addresses in the wallet are identical on both PC's. I actually setup the second PC yesterday with a copy of the wallet file from the first PC (copy was made just yesterday). Then I let the second PC reload the complete blockchain from dopecoin network.
I would like to know which PC is correct and what's the best to cleanup. By the way: checkwallet shows no errors on both PC's.
Thx a lot for your help.
Regards,
JMan
|
|
|
Hey Coinyguys , After: response = getResponse(uri, "apisign", sign, params) check first what's in the response variable. The following 2 lines are only added to correct/modify the reponse to be able to be parsed with the JsonConverter. tempString = Mid(response, InStr(response, "["), Len(response) - InStr(response, "[")) tempString = Replace(tempString, ":null", ":""null""") I never tried to place Buy / Sell / Cancel orders. As such I don't know how the response of such requests looks like. Best is you just temporary write the context of the variables "response" and "tempString" in 2 seperate Excel cells and then you see what I do to modify the Bittrex response for the JsonConverter. Then you can compare the Bittrex response format for normal get* with your Buy / Sell / Cancel orders. Hope this helps. Good Luck.
|
|
|
Hi, I got it working long time ago but did not yet much use it  . What I finally used was the JSON Converter for VBA module from (c) Tim Hall - https://github.com/VBA-tools/VBA-JSONto easy get the JSON data pumped into Excel cells. My initial problem was with the correct request signing and building the correct http request. After solving that it was easy. After importing the JSON Converter for VBA module this is my macro working demo code for Excel itself. It's raw code without nice formating, etc. but it should help you. Good luck. FYI: You need to ensure that in the Excel VBA Editor the following Tool-References are enabled: - Microsoft Scripting Runtime - Microsoft WinHTTP Services, version 5.1 Public Sub getopenorders()
Dim apikey As String Dim apisecret As String Dim uri As String Dim sign As String Dim response As String Dim params As String Dim json As Object Dim tempString As String Dim Item As Dictionary Dim key As Variant Dim c As Integer Dim r As Integer Dim rv As Integer
apikey = "THIS IS YOUR BITTREX API KEY" apisecret = "THIS IS YOUR BITTREX API SECRET"
uri = "https://bittrex.com/api/v1.1/public/getmarketsummaries"
params = "?" + "apikey=" + apikey + "&nonce=" + getNonce sign = createSignature(apisecret, uri + params) response = getResponse(uri, "apisign", sign, params) tempString = Mid(response, InStr(response, "["), Len(response) - InStr(response, "[")) tempString = Replace(tempString, ":null", ":""null""")
Set json = JsonConverter.ParseJson(tempString)
r = 2 rv = 3 c = 1
Sheets(1).Cells.ClearContents
For Each Item In json For Each key In Item.keys() Sheets(1).Cells(r, c).value = key Sheets(1).Cells(rv, c).value = Item(key) c = c + 1 Next rv = rv + 1 c = 1 Next
MsgBox ("Update from Bittrex done.")
End Sub
Function getResponse(ByVal pURL As String, sendVarKey As String, sendVarValue As String, params As String) As String Dim oRequest As WinHttp.WinHttpRequest Set oRequest = GetHttpObj("POST", pURL + params, False, sendVarKey, sendVarValue) oRequest.send "" getResponse = oRequest.responseText End Function
Public Function GetHttpObj(httpMethod As String, uri As String, async As Boolean, _ sendVarKey As String, sendVarValue As String, _ Optional contentType As String = "application/json") As WinHttp.WinHttpRequest Dim httpObj As New WinHttp.WinHttpRequest With httpObj .Open httpMethod, uri, async .setRequestHeader "origin", "pamsXL" .setRequestHeader "User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)" .setRequestHeader "Connection", "keep-alive" .setRequestHeader "Content-type", contentType .setRequestHeader "cache-control", "no-cache" End With httpObj.setRequestHeader sendVarKey, sendVarValue Set GetHttpObj = httpObj End Function
Private Function createSignature(keyString As String, url As String) As String createSignature = sha512(keyString, url) End Function
Private Function sha512(ByVal keyString As String, ByVal str As String) As String
Dim encode As Object, encrypt As Object, s As String, _ privateStringBytes() As Byte, b() As Byte, privateKeyBytes() As Byte Set encode = CreateObject("System.Text.UTF8Encoding") Set encrypt = CreateObject("System.Security.Cryptography.HMACSHA512") privateKeyBytes = encode.Getbytes_4(keyString) privateStringBytes = encode.Getbytes_4(str) encrypt.key = privateKeyBytes b = encrypt.ComputeHash_2((privateStringBytes)) sha512 = ByteArrayToHex(b)
Set encode = Nothing Set encrypt = Nothing
End Function
Private Function ByteArrayToHex(ByRef ByteArray() As Byte) As String Dim l As Long, strRet, Val As String For l = LBound(ByteArray) To UBound(ByteArray) Val = Hex$(ByteArray(l)) If Len(Val) <> 2 Then Val = "0" & Val End If strRet = strRet & Val Next l ByteArrayToHex = LCase(strRet) End Function
Function getNonce() As String getNonce = CStr(DateDiff("S", "1/1/1970", Now())) End Function
|
|
|
Hi, I'm trying to get the Bittrex API 1.1 working in Excel but for whatever reason I don't get it right  . There seems to be something wrong in they way I calculate the signature. I'm getting the follwing error: {"success":false,"message":"INVALID_SIGNATURE","result":null} This is my current Macro code: Public Sub getopenorders()
Dim apikey As String Dim apisecret As String Dim uri As String Dim sign As String Dim response As String Dim params As String
'For Debugging Range("B3").Value = "" Range("B4").Value = "" Range("B5").Value = ""
apikey = "BITTREX API KEY" apisecret = "BITTREX API SECRET" uri = "https://bittrex.com/api/v1.1/market/getopenorders" params = "?" + "apikey=" + apikey + "&nonce=" + getNonce sign = createSignature(apisecret, uri + params) response = getResponse(uri, "apisign", sign, params)
Range("B3").Value = response
End Sub
Function getResponse(ByVal pURL As String, sendVarKey As String, sendVarValue As String, params As String) As String Dim oRequest As WinHttp.WinHttpRequest Set oRequest = GetHttpObj("POST", pURL + params, False, sendVarKey, sendVarValue) oRequest.send "" getResponse = oRequest.responseText End Function
Public Function GetHttpObj(httpMethod As String, uri As String, async As Boolean, _ sendVarKey As String, sendVarValue As String, _ Optional contentType As String = "application/json") As WinHttp.WinHttpRequest Dim httpObj As New WinHttp.WinHttpRequest With httpObj .Open httpMethod, uri, async .setRequestHeader "origin", "pamsXL" .setRequestHeader "User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)" .setRequestHeader "Connection", "keep-alive" .setRequestHeader "Content-type", contentType .setRequestHeader "cache-control", "no-cache" End With
Range("B4").Value = uri Range("B5").Value = sendVarValue httpObj.setRequestHeader sendVarKey, sendVarValue
Set GetHttpObj = httpObj End Function
Private Function createSignature(keyString As String, url As String) As String createSignature = sha512(keyString, url) End Function
Private Function sha512(ByVal keyString As String, ByVal str As String) As String
Dim encode As Object, encrypt As Object, s As String, _ t() As Byte, b() As Byte, privateKeyBytes() As Byte Set encode = CreateObject("System.Text.UTF8Encoding") Set encrypt = CreateObject("System.Security.Cryptography.HMACSHA512") s = keyString privateKeyBytes = decodeBase64(s)
encrypt.Key = privateKeyBytes t = encode.Getbytes_4(str) b = encrypt.ComputeHash_2((t)) s = tob64(b) sha512 = Replace(s, vbLf, "") Set encode = Nothing Set encrypt = Nothing
End Function
Private Function tob64(ByRef arrData() As Byte) As String
Dim objXML As MSXML2.DOMDocument60 Dim objNode As MSXML2.IXMLDOMElement
Set objXML = New MSXML2.DOMDocument60
Set objNode = objXML.createElement("b64") objNode.DataType = "bin.base64" objNode.nodeTypedValue = arrData tob64 = objNode.Text
Set objNode = Nothing Set objXML = Nothing
End Function
Private Function decodeBase64(ByVal strData As String) As Byte() Dim objXML As MSXML2.DOMDocument60 Dim objNode As MSXML2.IXMLDOMElement Set objXML = New MSXML2.DOMDocument60 Set objNode = objXML.createElement("b64") objNode.DataType = "bin.base64" objNode.Text = strData decodeBase64 = objNode.nodeTypedValue Set objNode = Nothing Set objXML = Nothing End Function
Function getNonce() As String getNonce = CStr(DateDiff("S", "1/1/1970", Now())) End Function
Thanks a lot for your help.
|
|
|
I'm looking for some opinions on names for the DopeCoin branded merchant platform. So far I have: DopeShoppers.com DopeMarket.com DopeHeads.com Dopay.com lol .... DopePimps.com Shop4Dope.com Dopeys.com Go ahead suggest some or pick some  my-dope.com is also still free 
|
|
|
Ok, I've updated the nodes I can using the new faststart pack anybody stuck below block 800,000 please download the new fast start pack to catch up and get on the right chain, after fast start you may need to do a "repairwallet" in the console to get all your coins back that were staked on the wrong chain
Hi, where can I download the fast start pack. Link on the first page still points to the April version and I stuck at around 60% block updates  . Thx. Can someone please help out here  . Thx a lot. I'm hoping aaron_m can help you out. Let me know if you get contacted by him. Hi, I contacted aaron_m via PM. Will wait for his answer. Would be great if he can help me out. Once my problem is solved I will donate 250k to the Dev team. Great work so far guys.  JMan777 sup! I'll reach out to him to see if we can't get this solved . Thanks for your contribution of 250k! I'll add that to the tally toward our DOPE branded merchant system. Aaron_m helped me out yesterday. Thx a lot. I kept my promise. You received 250k at 4X1GCKWxMGeJVNomE7CYDNjy4CQr3gqqkL for your future development. Thx again.
|
|
|
Ok, I've updated the nodes I can using the new faststart pack anybody stuck below block 800,000 please download the new fast start pack to catch up and get on the right chain, after fast start you may need to do a "repairwallet" in the console to get all your coins back that were staked on the wrong chain
Hi, where can I download the fast start pack. Link on the first page still points to the April version and I stuck at around 60% block updates  . Thx. Can someone please help out here  . Thx a lot. I'm hoping aaron_m can help you out. Let me know if you get contacted by him. Hi, I contacted aaron_m via PM. Will wait for his answer. Would be great if he can help me out. Once my problem is solved I will donate 250k to the Dev team. Great work so far guys. 
|
|
|
Ok, I've updated the nodes I can using the new faststart pack anybody stuck below block 800,000 please download the new fast start pack to catch up and get on the right chain, after fast start you may need to do a "repairwallet" in the console to get all your coins back that were staked on the wrong chain
Hi, where can I download the fast start pack. Link on the first page still points to the April version and I stuck at around 60% block updates  . Thx. Can someone please help out here  . Thx a lot.
|
|
|
Ok, I've updated the nodes I can using the new faststart pack anybody stuck below block 800,000 please download the new fast start pack to catch up and get on the right chain, after fast start you may need to do a "repairwallet" in the console to get all your coins back that were staked on the wrong chain
Hi, where can I download the fast start pack. Link on the first page still points to the April version  . Thx.
|
|
|
Hi, once the Dev team has some spare time  , please look into the following issue: If you have a lot of transactions (e.g. from POS, every few seconds) the Windows wallet (v3.0.0.3-supr) will get slower and slower when catching up. It seems to be related to multi-threading. When you set the affinity of the wallet process just to a single core it is working perfectly and the wallet is responding normal. Once you assign 2 or more CPU cores it's almost not longer usable. At least on my PC. I know you can send the coins to yourself to cleanup the POS transactions into bigger pieces but can someone please tell me the limit for a single transaction. How many million dope in one transaction is safe ?  Thx for investigating and your replies. Cheers JMan7777
|
|
|
Hi,
I have a question.
I was mining for Dope v2 until the coin swap at dope.suprnova.cc . I had my miner stopped before the swap date and did the coin swap for most of my coins at Bittrex.
Unfortunately I forgot few v2 coins at the dope.suprnova.cc account (auto payout limit was not yet reached). I then withdraw-ed those old coins to my old v2 wallet on 12.Nov.2014. I have also the TX number but my v2 wallet is not synchronizing anymore since the swap date, so I'm not able to see those v2 coins and I cannot convert them into v3 coins.
Can someone please advice.
Thx guys.
Please no trolling on this question. Dev's are great ! Full stop.
Cheers JMan
|
|
|
--- WARNING ---Do not mine at their official pool ( http://pool.dopecoin.com). I used to mine there and I lost my coins (about 360,000 dopes) when I requested a manual payout (no Txid either) to my AllCoin account. Sent an email to support two weeks ago, but never got a reply... Mark my words....mine at your own risk there. --- WARNING --- Mining to an exchange is bad practice. Stop doing it. Pools and exchanges sometimes have errors/bugs. It is best to mine to your wallet sending out automatic payments every hour. Just cause a pool had a problem and doesn't respond to support for a week doesn't mean they are a scam. --------------- I didn't mine directly to the exchange. Pool sudenly stoped making auto payouts and when I requested a manual payout after a few days, my coins sent somewhere else than my account, but my pool balance became zero.... Not reply to a support ticket, show how serious devs are. I never used the word SCAM, but after that how can you be sure that they aren't..? DONT MINE THERE UNTIL DEVS SHOW THEY CARE ABOUT MINERS...No email was ever received, and the fault was because you asked for too many coins in one transaction (too many small inputs), this not only caused your transaction to fail, but caused the whole payment system to crash. Your coins have now been sent manually in smaller transactions. Thx a lot aaron_m. You fixed my payouts too. To dionlouk : Just be nice and ask for help. Not just scream. Dope guys are nice and they helped you as you can see.
|
|
|
Pool payouts fixed, somebody tried to do a large manual withdraw, more than the wallet could do in a single transaction (too many inputs), so it caused all payouts to stall. I got no alerts or messages so had no idea it had stalled.
You can use the main node also, Now there is a clear path I'll also set up a few more nodes.
addnode=pool.dopecoin.com
Are there problems with the auto payout (Debit_AP)? I see at the pool that there was a successful auto payout to my wallet ( 4Vtnro5WsGAArcxEZfSCed983pWGkdQH6R ) but in the wallet the coins never arrived  . When I check the blockchain via DopeCoin explorer it says: Address not seen on the network to my wallet address  . Would be nice if someone from the dev team can check. Would not like to loose the coins. Thx a lot. PM me for my details if needed.
|
|
|
Hi michelem, got some problem to send you PM. Find below the stats. I just removed my pools data  . {"summary":[{"STATUS":[{"STATUS":"S","When":1407151177,"Code":11,"Msg":"Summary","Description":"bfgminer 4.6.0"}],"SUMMARY":[{"Elapsed":7570,"MHS av":30.403,"MHS 20s":27.114,"Found Blocks":55,"Getworks":227,"Accepted":2577,"Rejected":127,"Hardware Errors":131,"Utility":20.425,"Discarded":282310,"Stale":0,"Get Failures":0,"Local Work":286617,"Remote Failures":0,"Network Blocks":173,"Total MH":230154.9377,"Diff1 Work":47.32202148,"Work Utility":0.375,"Difficulty Accepted":45.47311397,"Difficulty Rejected":1.54916382,"Difficulty Stale":0,"Best Share":32.77024645,"Device Hardware%":4.8254,"Device Rejected%":3.2737,"Pool Rejected%":3.2945,"Pool Stale%":0,"Last getwork":1407151175}],"id":1}],"devs":[{"STATUS":[{"STATUS":"S","When":1407151177,"Code":9,"Msg":"1 PGA(s)","Description":"bfgminer 4.6.0"}],"DEVS":[{"PGA":0,"Name":"ZUS","ID":0,"Enabled":"Y","Status":"Alive","Device Elapsed":7588,"MHS av":30.331,"MHS 20s":31.001,"MHS rolling":31.001,"Accepted":2577,"Rejected":127,"Hardware Errors":131,"Utility":20.425,"Stale":0,"Last Share Pool":0,"Last Share Time":1407151176,"Total MH":230154.9377,"Diff1 Work":47.32202148,"Work Utility":0.374,"Difficulty Accepted":45.47311397,"Difficulty Rejected":1.54916382,"Difficulty Stale":0,"Last Share Difficulty":0.07647705,"Last Valid Work":1407151175,"Device Hardware%":4.8254,"Device Rejected%":3.2737}],"id":1}],"pools":[{"priority":0,"url":"REMOVED","active":true,"user":"REMOVED","pass":false,"stats":[{"start_time":false,"accepted":2577,"rejected":127,"shares":4081,"stop_time":false,"stats_id":1}],"stats_id":1,"alive":1},{"priority":1,"url":"REMOVED","active":false,"user":"REMOVED","pass":false,"stats":[{"start_time":false,"accepted":0,"rejected":0,"shares":0,"stop_time":false,"stats_id":1}],"stats_id":1,"alive":1},{"priority":2,"url":"REMOVED","active":false,"user":"REMOVED","pass":false,"stats":[{"start_time":false,"accepted":0,"rejected":0,"shares":0,"stop_time":false,"stats_id":1}],"stats_id":1,"alive":1},{"priority":3,"url":"stratum+tcp:\/\/multi.ghash.io:3333","active":false,"user":"michelem.minera","pass":false,"stats":[{"start_time":false,"accepted":0,"rejected":0,"shares":0,"stop_time":false,"stats_id":1}],"stats_id":1,"alive":1}],"id":1} Cheers JMan7777
|
|
|
Hi dopecoindude, sounds promising  . Good luck. I hope the new dev team can start working soon. I still mining at the official pool "pool.dopecoin.com" and it would be nice if the backend problems shown on the pool site are gone soon: We are investingating issues in the backend. Your shares and hashrate are safe and we will fix things ASAP. Payouts disabled, you will not receive any coins to your offline wallet for the time being Otherwise nobody sooner or later will continue mining and donating  . Cheers JMan777
|
|
|
|