Bitcoin Forum
May 05, 2024, 02:43:05 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 [603] 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 ... 878 »
  Print  
Author Topic: [ANN][KMD][dPoW] Komodo - An Open, Composable Smart Chain Platform, Secured by B  (Read 1191689 times)
MrSunshine
Sr. Member
****
Offline Offline

Activity: 1181
Merit: 259


View Profile
September 24, 2017, 01:44:05 PM
 #12041

I've heard that KMD will reach 80k sat soon. Are their any upcoming news for the project?

Well there is a big event coming soon; their first DICO - (Decentralized Initial Coin offering). https://blog.komodoplatform.com/monaize-komodo-and-our-symbiotic-relationship-9f8647db5abe

This is huge.
1714876985
Hero Member
*
Offline Offline

Posts: 1714876985

View Profile Personal Message (Offline)

Ignore
1714876985
Reply with quote  #2

1714876985
Report to moderator
1714876985
Hero Member
*
Offline Offline

Posts: 1714876985

View Profile Personal Message (Offline)

Ignore
1714876985
Reply with quote  #2

1714876985
Report to moderator
1714876985
Hero Member
*
Offline Offline

Posts: 1714876985

View Profile Personal Message (Offline)

Ignore
1714876985
Reply with quote  #2

1714876985
Report to moderator
In order to achieve higher forum ranks, you need both activity points and merit points.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714876985
Hero Member
*
Offline Offline

Posts: 1714876985

View Profile Personal Message (Offline)

Ignore
1714876985
Reply with quote  #2

1714876985
Report to moderator
1714876985
Hero Member
*
Offline Offline

Posts: 1714876985

View Profile Personal Message (Offline)

Ignore
1714876985
Reply with quote  #2

1714876985
Report to moderator
Oceat
Sr. Member
****
Offline Offline

Activity: 2506
Merit: 368


View Profile
September 24, 2017, 05:50:37 PM
 #12042

I've heard that KMD will reach 80k sat soon. Are their any upcoming news for the project?
As i look at to their website, there is none so far.

Here's the link: https://www.investing.com/currencies/kmd-btc-news

3996
MrSunshine
Sr. Member
****
Offline Offline

Activity: 1181
Merit: 259


View Profile
September 24, 2017, 06:33:42 PM
 #12043

I've heard that KMD will reach 80k sat soon. Are their any upcoming news for the project?
As i look at to their website, there is none so far.

Here's the link: https://www.investing.com/currencies/kmd-btc-news

That is not the Komodo website, check it out here: https://komodoplatform.com/
Karto
Full Member
***
Offline Offline

Activity: 280
Merit: 100


View Profile
September 24, 2017, 07:57:35 PM
 #12044

I've heard that KMD will reach 80k sat soon. Are their any upcoming news for the project?
As i look at to their website, there is none so far.

Here's the link: https://www.investing.com/currencies/kmd-btc-news

That is not the Komodo website, check it out here: https://komodoplatform.com/

also can check news.supernet.org
PCMining
Full Member
***
Offline Offline

Activity: 305
Merit: 100


View Profile WWW
September 24, 2017, 07:58:20 PM
 #12045

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.io

Cratex 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 Offline

Activity: 1540
Merit: 1000


View Profile
September 24, 2017, 08:56:36 PM
 #12046


mrietschel
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
September 24, 2017, 09:22:17 PM
 #12047

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 Offline

Activity: 1540
Merit: 1000


View Profile
September 24, 2017, 09:28:28 PM
 #12048


Wapinter
Legendary
*
Offline Offline

Activity: 2632
Merit: 1026

Hire me for Bounty Management


View Profile
September 24, 2017, 11:42:30 PM
 #12049

Nice updates from KMD

ComputerGenie
Hero Member
*****
Offline Offline

Activity: 1092
Merit: 552


Retired IRCX God


View Profile
September 25, 2017, 12:45:01 AM
 #12050

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?

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
Full Member
***
Offline Offline

Activity: 476
Merit: 133


View Profile
September 25, 2017, 06:51:04 AM
 #12051

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?
microtaha
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
September 25, 2017, 07:18:21 AM
 #12052

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
codemanX
Full Member
***
Offline Offline

Activity: 658
Merit: 129



View Profile
September 25, 2017, 08:10:58 AM
 #12053

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?
diguyo
Full Member
***
Offline Offline

Activity: 274
Merit: 100


View Profile
September 25, 2017, 08:19:05 AM
 #12054

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
Hero Member
*****
Offline Offline

Activity: 1092
Merit: 552


Retired IRCX God


View Profile
September 25, 2017, 08:56:05 AM
 #12055

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

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
Full Member
***
Offline Offline

Activity: 476
Merit: 133


View Profile
September 25, 2017, 10:06:43 AM
 #12056

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

DosManos
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
September 25, 2017, 11:43:31 AM
 #12057

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 Offline

Activity: 3
Merit: 0


View Profile
September 25, 2017, 11:58:11 AM
 #12058


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
Full Member
***
Offline Offline

Activity: 160
Merit: 100


View Profile
September 25, 2017, 01:53:58 PM
 #12059

..
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 Offline

Activity: 33
Merit: 0


View Profile
September 25, 2017, 03:36:04 PM
 #12060

..
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.
Pages: « 1 ... 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 [603] 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 ... 878 »
  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!