|
|
|
Karto
|
|
September 24, 2017, 07:57:35 PM |
|
also can check news.supernet.org
|
|
|
|
PCMining
|
|
September 24, 2017, 07:58:20 PM |
|
Hey guys, I just finished my nomp based KMD Pool. Pool fee: 0.1% http://88.253.8.58:8080/stratum+tcp://88.253.8.58:3857 user: wallet pass: x
|
https://www.cratex.ioCratex is international cryptocurrency trade platform and best place to buy, sell, trade and learn about crypto (0.1% trade fee, minimal withdrawal fees, fast deposits).
|
|
|
yassin54
Legendary
Offline
Activity: 1540
Merit: 1000
|
|
September 24, 2017, 08:56:36 PM |
|
|
|
|
|
mrietschel
Newbie
Offline
Activity: 3
Merit: 0
|
|
September 24, 2017, 09:22:17 PM |
|
there is a nice bonus on the MNZ dICO when using KMD, however i am wondering which wallet i should be using for that, as the agama doesn't seem to be stable?
|
|
|
|
yassin54
Legendary
Offline
Activity: 1540
Merit: 1000
|
|
September 24, 2017, 09:28:28 PM |
|
|
|
|
|
Wapinter
Legendary
Offline
Activity: 2716
Merit: 1026
Hire me for Bounty Management
|
|
September 24, 2017, 11:42:30 PM |
|
Nice updates from KMD
|
|
|
|
ComputerGenie
|
|
September 25, 2017, 12:45:01 AM |
|
OK, so I'm trying to auth from one pc (192.168.1.5 has my personal adapter) to another (192.168.1.8 has the daemon), using VB... Dim webRequest1 As HttpWebRequest = WebRequest.Create("http://192.168.1.8:4455") webRequest1.Credentials = New NetworkCredential("MyUser", "MyPass") webRequest1.ContentType = "application/json-rpc" Dim auth As String = "MyUser" & ":" & "MyPass" auth = Convert.ToBase64String(Encoding.Default.GetBytes(auth)) webRequest1.Headers("Authorization") = "Basic " & auth
webRequest1.Method = "POST" Dim joe As New JObject() joe.Add(New JProperty("jsonrpc", "1.0")) joe.Add(New JProperty("id", "pcheck")) joe.Add(New JProperty("method", "getbalance") 'joe.Add(New JProperty("params", "[]")) Dim s As String = JsonConvert.SerializeObject(joe) Dim bytearray As Byte() = Encoding.UTF8.GetBytes(s) webRequest1.ContentLength = bytearray.Length Dim datastream As Stream = webRequest1.GetRequestStream() datastream.Write(bytearray, 0, bytearray.Length) datastream.Close()
Dim webResponse1 As WebResponse = webRequest1.GetResponse() Dim returnstream As Stream = webResponse1.GetResponseStream() Dim rreader As StreamReader = New StreamReader(returnstream, Encoding.UTF8) Dim responsestring As String = rreader.ReadToEnd() TextBox3.Text = responsestring And I end up with: System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 192.168.1.8:4455 ...[edited for forum brevity]... Unable to connect to the remote server It's not a firewall issue, it's not a rpcallow issue, and it's not any obvious code issue that I can see (it works with 20+ other wallets, 3 of which are equihash wallets). Any Ideas?
|
If you have to ask "why?", you wouldn`t understand my answer. Always be on the look out, because you never know when you'll be stalked by hit-men that eat nothing but cream cheese....
|
|
|
jl777B
|
|
September 25, 2017, 06:51:04 AM |
|
OK, so I'm trying to auth from one pc (192.168.1.5 has my personal adapter) to another (192.168.1.8 has the daemon), using VB... Dim webRequest1 As HttpWebRequest = WebRequest.Create("http://192.168.1.8:4455") webRequest1.Credentials = New NetworkCredential("MyUser", "MyPass") webRequest1.ContentType = "application/json-rpc" Dim auth As String = "MyUser" & ":" & "MyPass" auth = Convert.ToBase64String(Encoding.Default.GetBytes(auth)) webRequest1.Headers("Authorization") = "Basic " & auth
webRequest1.Method = "POST" Dim joe As New JObject() joe.Add(New JProperty("jsonrpc", "1.0")) joe.Add(New JProperty("id", "pcheck")) joe.Add(New JProperty("method", "getbalance") 'joe.Add(New JProperty("params", "[]")) Dim s As String = JsonConvert.SerializeObject(joe) Dim bytearray As Byte() = Encoding.UTF8.GetBytes(s) webRequest1.ContentLength = bytearray.Length Dim datastream As Stream = webRequest1.GetRequestStream() datastream.Write(bytearray, 0, bytearray.Length) datastream.Close()
Dim webResponse1 As WebResponse = webRequest1.GetResponse() Dim returnstream As Stream = webResponse1.GetResponseStream() Dim rreader As StreamReader = New StreamReader(returnstream, Encoding.UTF8) Dim responsestring As String = rreader.ReadToEnd() TextBox3.Text = responsestring And I end up with: System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 192.168.1.8:4455 ...[edited for forum brevity]... Unable to connect to the remote server It's not a firewall issue, it's not a rpcallow issue, and it's not any obvious code issue that I can see (it works with 20+ other wallets, 3 of which are equihash wallets). Any Ideas? what is on port 4455?
|
|
|
|
|
codemanX
|
|
September 25, 2017, 08:10:58 AM |
|
The price had already exploded before it corrected again. In advance to the awaited presentation. Alone that the price rose from under $ 1 to almost $ 4 within a short time, shows the potential of the project. In addition, of course, the great cooperation with the English online bank. I also think that the current price is a good entry price. James and his team work without much attention and deliver regularly. I have been buying small quantities for some time and hold them. In addition, the% 5 interest rate is also unique in the crypto world, which alone should justify an investment. I’m buying more KMD,very cheap yet.Price will explode soon or later,only wait the moment When will the interest claim will be available for the Ledger Nano S? That would be really nice, does somebody has an update?
|
|
|
|
diguyo
|
|
September 25, 2017, 08:19:05 AM |
|
Nice updates guys, I'm feeling good about this project again. I was initially surprised that the Monaize news was all that was going to be revealed and the 'big' news was actually something that had already leaked, but was shockingly presented riddled with audio issues and seemingly from someones shed/garage? You've pulled it together well and the future looks bright again, good work. Just don't ruin it with another amateur announcement.
|
|
|
|
ComputerGenie
|
|
September 25, 2017, 08:56:05 AM |
|
OK, so I'm trying to auth from one pc (192.168.1.5 has my personal adapter) to another (192.168.1.8 has the daemon), using VB... Dim webRequest1 As HttpWebRequest = WebRequest.Create("http://192.168.1.8:4455") webRequest1.Credentials = New NetworkCredential("MyUser", "MyPass") webRequest1.ContentType = "application/json-rpc" Dim auth As String = "MyUser" & ":" & "MyPass" auth = Convert.ToBase64String(Encoding.Default.GetBytes(auth)) webRequest1.Headers("Authorization") = "Basic " & auth
webRequest1.Method = "POST" Dim joe As New JObject() joe.Add(New JProperty("jsonrpc", "1.0")) joe.Add(New JProperty("id", "pcheck")) joe.Add(New JProperty("method", "getbalance") 'joe.Add(New JProperty("params", "[]")) Dim s As String = JsonConvert.SerializeObject(joe) Dim bytearray As Byte() = Encoding.UTF8.GetBytes(s) webRequest1.ContentLength = bytearray.Length Dim datastream As Stream = webRequest1.GetRequestStream() datastream.Write(bytearray, 0, bytearray.Length) datastream.Close()
Dim webResponse1 As WebResponse = webRequest1.GetResponse() Dim returnstream As Stream = webResponse1.GetResponseStream() Dim rreader As StreamReader = New StreamReader(returnstream, Encoding.UTF8) Dim responsestring As String = rreader.ReadToEnd() TextBox3.Text = responsestring And I end up with: System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 192.168.1.8:4455 ...[edited for forum brevity]... Unable to connect to the remote server It's not a firewall issue, it's not a rpcallow issue, and it's not any obvious code issue that I can see (it works with 20+ other wallets, 3 of which are equihash wallets). Any Ideas? what is on port 4455? datadir=/media/Storage/CoinData/Komodo/ rpcuser=MyUser rpcpassword=MyPass daemon=1 rpcport=4455 port=14455 rpcallowip=127.0.0.1 rpcallowip=192.168.1.0/24 rpcallowip=192.168.1.5 rpcallowip=192.168.1.8 rpcallowip=192.168.1.16 blocknotify=/usr/local/bin/blocknotify 127.0.0.1:7119 komodo %s rpcbind=127.0.0.1 server=1 txindex=1 rpcworkqueue=64 maxconnections=25
|
If you have to ask "why?", you wouldn`t understand my answer. Always be on the look out, because you never know when you'll be stalked by hit-men that eat nothing but cream cheese....
|
|
|
jl777B
|
|
September 25, 2017, 10:06:43 AM |
|
OK, so I'm trying to auth from one pc (192.168.1.5 has my personal adapter) to another (192.168.1.8 has the daemon), using VB... Dim webRequest1 As HttpWebRequest = WebRequest.Create("http://192.168.1.8:4455") webRequest1.Credentials = New NetworkCredential("MyUser", "MyPass") webRequest1.ContentType = "application/json-rpc" Dim auth As String = "MyUser" & ":" & "MyPass" auth = Convert.ToBase64String(Encoding.Default.GetBytes(auth)) webRequest1.Headers("Authorization") = "Basic " & auth
webRequest1.Method = "POST" Dim joe As New JObject() joe.Add(New JProperty("jsonrpc", "1.0")) joe.Add(New JProperty("id", "pcheck")) joe.Add(New JProperty("method", "getbalance") 'joe.Add(New JProperty("params", "[]")) Dim s As String = JsonConvert.SerializeObject(joe) Dim bytearray As Byte() = Encoding.UTF8.GetBytes(s) webRequest1.ContentLength = bytearray.Length Dim datastream As Stream = webRequest1.GetRequestStream() datastream.Write(bytearray, 0, bytearray.Length) datastream.Close()
Dim webResponse1 As WebResponse = webRequest1.GetResponse() Dim returnstream As Stream = webResponse1.GetResponseStream() Dim rreader As StreamReader = New StreamReader(returnstream, Encoding.UTF8) Dim responsestring As String = rreader.ReadToEnd() TextBox3.Text = responsestring And I end up with: System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 192.168.1.8:4455 ...[edited for forum brevity]... Unable to connect to the remote server It's not a firewall issue, it's not a rpcallow issue, and it's not any obvious code issue that I can see (it works with 20+ other wallets, 3 of which are equihash wallets). Any Ideas? what is on port 4455? datadir=/media/Storage/CoinData/Komodo/ rpcuser=MyUser rpcpassword=MyPass daemon=1 rpcport=4455 port=14455 rpcallowip=127.0.0.1 rpcallowip=192.168.1.0/24 rpcallowip=192.168.1.5 rpcallowip=192.168.1.8 rpcallowip=192.168.1.16 blocknotify=/usr/local/bin/blocknotify 127.0.0.1:7119 komodo %s rpcbind=127.0.0.1 server=1 txindex=1 rpcworkqueue=64 maxconnections=25 pushed fix to dev branch, it was grabbing the -rpcport after the command line args were processed but before the .conf file was
|
|
|
|
DosManos
|
|
September 25, 2017, 11:43:31 AM |
|
Nice updates guys, I'm feeling good about this project again. I was initially surprised that the Monaize news was all that was going to be revealed and the 'big' news was actually something that had already leaked, but was shockingly presented riddled with audio issues and seemingly from someones shed/garage? You've pulled it together well and the future looks bright again, good work. Just don't ruin it with another amateur announcement.
You can not kill a good idea with "amateur announcement" people need to stop taking things so seriously this project does more than most of the projects and we need to say thanks for that instead of seeking what to judge :|
|
|
|
|
blacklamb
Newbie
Offline
Activity: 3
Merit: 0
|
|
September 25, 2017, 11:58:11 AM |
|
Thanks for this post. I’m a newbie with an interest in the Komodo project and this is probably the best explanation I’ve found.
|
|
|
|
zzwensel11
|
|
September 25, 2017, 01:53:58 PM |
|
.. does anyone think banks run their terminals on windows?! lol
No, but the vast majority of their users do.
|
░▒▓█ / / /X42/ / / WELCOME TO FEELESS FUTURE! █▓▒░
|
|
|
Im a pickle Morty
Newbie
Offline
Activity: 33
Merit: 0
|
|
September 25, 2017, 03:36:04 PM |
|
.. does anyone think banks run their terminals on windows?! lol
No, but the vast majority of their users do. False. Android, Iphones phones = linux Any touchpad = linux Apple Ios = linux Chromebook = linux Kindle = linux Most of you already use linux and don't even know. Running financial software on windows is madness. Stop the madness. Think of the children.
|
|
|
|
|