Author

Topic: [ANN][KMD][dPoW] Komodo - An Open, Composable Smart Chain Platform, Secured by B - page 275. (Read 1192056 times)

full member
Activity: 476
Merit: 133
I'm sitting home using my laptop and want to send zcash to my friend using Zcash wallet....can someone tell me how using Zcash wallet hide my IP address so it stays anonymous?
IP obsfucation is not built into any coin
you would need to use tor
full member
Activity: 183
Merit: 100
I'm sitting home using my laptop and want to send zcash to my friend using Zcash wallet....can someone tell me how using Zcash wallet hide my IP address so it stays anonymous?
sr. member
Activity: 282
Merit: 260
Come on whales,do something....I need a Ferrari soon Grin
hero member
Activity: 1029
Merit: 712
..
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.

Not false at all.  I'm currently doing some work for a large global bank that has over 100,000 Windows desktops and tens of thousands of Windows servers.

They also have large numbers of Linux servers, but the Windows estate is non-trivial and runs many mission critical systems.
hero member
Activity: 1092
Merit: 552
Retired IRCX God
by that "logic", all apps should be written in and run with java (and nothing else)  Roll Eyes
full member
Activity: 266
Merit: 100
..
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.

raspberry p , routers , most servers , satellite  Cheesy
newbie
Activity: 33
Merit: 0
..
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.
full member
Activity: 160
Merit: 100
..
does anyone think banks run their terminals on windows?! lol

No, but the vast majority of their users do.
newbie
Activity: 3
Merit: 0

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.
full member
Activity: 224
Merit: 100
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 :|
full member
Activity: 476
Merit: 133
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...
Code:
          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:
Quote
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?

Quote from: komodo.conf
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

hero member
Activity: 1092
Merit: 552
Retired IRCX God
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...
Code:
          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:
Quote
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?

Quote from: komodo.conf
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
full member
Activity: 274
Merit: 100
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.
full member
Activity: 658
Merit: 129
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 Kiss
When will the interest claim will be available for the Ledger Nano S? That would be really nice, does somebody has an update?
newbie
Activity: 25
Merit: 0
Komodo (KMD) Price Ticker - Chrome browser extension

Extension Features:
1. Notify you if price goes higher or lower
2. Handle over 33 currency as such BTC/USD/EUR/GBP/INR.
3. Handle multiple precision
4. Quicklinks (MarketCap/Explorer/Twitter)
5. Able to monitor the fiat equivalent of your wealth in KMD instead of the price (100 KMD = $180)
6. Allow you to select the refresh rate from 10s to once every 4 hours.


Checkout: https://chrome.google.com/webstore/detail/komodo-kmd-price-ticker/jilmeemdnlicfnfilfmgoidbhfbolcpm

Source code: https://github.com/microtaha/dash-price
full member
Activity: 476
Merit: 133
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...
Code:
          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:
Quote
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?
hero member
Activity: 1092
Merit: 552
Retired IRCX God
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...
Code:
          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:
Quote
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?
legendary
Activity: 2688
Merit: 1026
Hire me for Bounty Management
Jump to: