Author

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

sr. member
Activity: 644
Merit: 292
hero member
Activity: 515
Merit: 502
I finally decide to install iguana app to try to access my KMD from ICO, downloaded the windows version from supernet, but after finished installation and trying to run the program, it said that the version is not compatible to my windows (currently runnning on win7 32bit). Is there something I missed?

Try to install this, 32bit version: https://www.microsoft.com/en-nz/download/details.aspx?id=48145
legendary
Activity: 2632
Merit: 1462
Yes, I'm an asshole
I finally decide to install iguana app to try to access my KMD from ICO, downloaded the windows version from supernet, but after finished installation and trying to run the program, it said that the version is not compatible to my windows (currently runnning on win7 32bit). Is there something I missed?
sr. member
Activity: 1078
Merit: 310
AKA RJF - Member since '13
I think we are going to be stuck in holding patten for a while. There are some large holders of this coin. Is there a way to look at the rich list?
That's the thing, most of the KMDs are in the wallet earning interest. There is maybe about 1% of KMD out there being traded in exchanges. We have to think of a better way to gain wider acceptance and popularity , maybe get Andreas Antonopoulos to write a book about KMD. OR if anybody can write a book about KMD (mastering KMD)  and publish it on Amazon .  So far there are books about bitcoin , and ethereum. Just an Idea.

What would publishing a book on KMD achieve?

One word: EXPOSURE
legendary
Activity: 1176
Merit: 1134
There was a bugfix released today for komodod to solve a problem with having more than 1000 utxo in the wallet.

It was crashing in the logging code, so after it completed the processing it died in the logging code.

A bit embarassing, but we didnt have any tests with wallets having 1000+ utxo and it was in the new 5% APR code.

If you are running native komodod and have a large number of utxo, it is good to update. It is a local change only and does not affect consensus.

from ~/komodo/src:
./komodo-cli stop
git pull
make
./komodod &

The above will stop komodod, get the new code, build and launch
hero member
Activity: 515
Merit: 502
People, this is the kind of conversations that miss by not joining our Slack  Cheesy

Quote
jl777: I had been battling against how to best implement the LP logic. I finally stumbled onto the right solution, at least I am not having "writer's block", which I get when I am trying to do things the wrong way. Until this latest iteration, I was trying to do it a bit backwards, ie. have the client side auction trigger a balancing trade. I wont get into why that is backwards, just try to write it that way and you will see.
Anyway, now I am on the right path and it involves running a full market maker on an exchange so that it is in realtime making the spread on that exchange. Then when a DEX request comes in, it can just adjust the net positions as appropriate and the marketmaker will automatically balance the total exposure (once the bugs are fixed). Another advantage is that the LP marketmaker is a pure external application that calls iguana API so wont affect any non-LP deployments. This separation also makes things a lot easier. I expect some minor changes will be needed in the iguana API to support this, but the layering achieved will be well worth it. To allow a low risk operating mode, I will need to add a special case of a very low activity market maker, but that will be after the normal marketmaker is solid to answer the obvious question, yes, it means that part of the iguana release will include a fully functional market maker for supported exchanges as a side effect of this. Running an active marketmaker will have the usual risks, so it is not for everyone

pondsea: So the lp wont need the currency on hand and could just buy or sell via the exchanges

jl777: it would need to have both sides locally and on the exchange, otherwise how could it do the trades?

pondsea: Ah yeah no api to withdraw from exchange :stuck_out_tongue: How can we improve the security aide of things if we need to hold big amounts of btc/alts to be able to function as a LP? Unless there could be 2 modes? 1 is live/instant but for less spread there is a 2nd option where a contract is setup and the LP has say 24 hours to send the funds? LP still buys/sells at the rate from the exchanges but has to process the withdrawal manually

jl777: I dont like it, adds a lot of trust to the process,  the "instant" will still need to wait for BTC confirms, which isnt instant nowadays, so maybe most people will use it in 0-conf mode with smaller amounts. Since the marketmaker will be part of the iguana desktop app (I am assuming), we will decentralize the marketmaking and anybody can make a market with their parameters via GUI

pondsea: cool :slightly_smiling_face:

jl777: It wont be an advanced market maker, just something you can set your risk capital limits, profit margin and activity level. As long as price doesnt move big distance to never come back to it, you end up making the specified profit margin liquidity of a coin is part of its value, so KMD whales would be motivated to use part of their capital for the marketmaker and incremental losses/profits wont really matter much compared to a whale's capital the first non-braindead version is live on bittrex now doesnt even check available balance or orderstatus yet and already 500+ lines of code. no wonder I didnt want to put this into iguana itself

pondsea: I could be a lab rat if you need someone to test it :grin: Once it is easy enough to run lol

jl777: Actually if you can trade against it on trex to make sure it isnt too easy to manipulate, that would help. It is trading about 0.1 BTC with a 1 % spread. If there is already a bid that is higher or ask that is lower, it doesnt post a quote

pondsea: Will have a look when i get home.

mark81: @jl777 do you mean next iguana app version or iguana core  will be including market maker function?  If iguana app (idex)  would have this function build into in gui level it would draw lot of attention torwards komodo and supernet tech.

jl777: It is a standalone app, so not directly in the core, but it does use iguana core. I assume the desktop iguana app would be able to run it without much problems in order to do LP nodes properly a functioning market maker is required, so it seems it will be part of the iguana app

grewalsatinder: yep, I’ll be including that as a part of EasyDEX GUI :slightly_smiling_face:

jl777: so far it is breaking even but that is due to my setting its profit margin to match the bittrex commissions and there is no DEX side trading yet, that side should be a bit more profitable than the bittrex side, though I could set the profit margin to any arbitrary level, it is good to have KMD spreads at below 0.5% as that makes it one of the lowest spreads out of all the bittrex coins. I am surprised at how many trades it has done (almost 30) in a bit over 12 hours. The following are the current config variables internally:
char *base = "KMD", *rel = "BTC", *name = "komodo", *exchange = "bittrex";
char *apikey = "xxx";
char *apisecret = "ttt";
double profitmargin = 0.0025;
double maxexposure = 1.; // maximum risk level in BTC
double incrratio = 0.1; // max size of each order relative to maxexposure
double start_BTC = 3.15 + 0.10404197;
double start_KMD = 20000 + 1000;

Probably a few more before I am done, already past 700 lines in just a day and a bit and still need to complete the interface to DEX side of things

mark81: To use such tech would be good to make user invest directly to komodo by holding funds on iguana app.  Not much but that would not come for free of work that devs have done.  Also using it would cost fees in komodo.  What you think ?

jl777: yes they need to have matching funds on the iguana side, or it wont work

mark81: I am thinking this tech beyond komodo to other altcoins.  What if iguana market maker becomes cheapest bot technology for market?

jl777: considering that it is free, seems it wins on the cost front

mark81: Yes but thats why user have to invest directly to komodo to get that feature in works?

jl777: the iguana side needs to be funded for the LP code to work

mark81: Plus pay fees with komodo..

jl777: cant enforce that. Just getting liquidity into DEX is adequate compensation, not need to monetize it

mark81: How about users that want to play with centralized exchanges? You have said that supernet should get fees of its services.  So why not allow to use market maker as bot feature on centralized exchanges and get money coming in that way.

jl777: the current bot is using bittrex on one side and DEX on the other

mark81: Tech could introduced free to world first but after period to start monetization.

jl777: by running it the bot node makes incremental profits on the DEX side, so profit motive would be enough to get most all of the market maker bots actively supporting iguana DEX by working via basilisk mode it will be very lightweight to run an LP node. Clearly the more money an LP node can make, the more people will run it, so I intend to make it make money from the DEX also, which will get liquidity coming into DEX and once iguana DEX has real liquidity, then its other advantages makes it a powerful force in the market

mark81: Ok,  cant argue your points.  You have figured thinks pretty well forward :+1: These kind of conversations only drive to one conclusion - - > i must by more komodo and soon!

legendary
Activity: 1176
Merit: 1134
So will this be part of the  iguana core? Also will you be able to market make other currencies on Bittrex? Maybe polinex when KMD trades on it?
Not part of the iguana core, but part of the iguana app.

any iguana supported currency can be activated

also additional exchanges can be supported and when poloniex adds KMD, of course support for it will be added
sr. member
Activity: 632
Merit: 250
I think we are going to be stuck in holding patten for a while. There are some large holders of this coin. Is there a way to look at the rich list?
That's the thing, most of the KMDs are in the wallet earning interest. There is maybe about 1% of KMD out there being traded in exchanges. We have to think of a better way to gain wider acceptance and popularity , maybe get Andreas Antonopoulos to write a book about KMD. OR if anybody can write a book about KMD (mastering KMD)  and publish it on Amazon .  So far there are books about bitcoin , and ethereum. Just an Idea.

What would publishing a book on KMD achieve?
Good Question. By riding the waves of Bitcoin popularity using keyword such as " bitcoin" and "Cryptocurrency" on amazon ebook and utilizing title such as " Why KMD will be the next Bitcoin and better?" and publishing the ebook for free on amazon. The book will rise in sales rank. At least everybody on this community can use their amazon account to download the free book to help jump start the Amazon best seller rank on the book. (Also writing review and maybe even added it the Amazon wishlist).  Just for info,  currently the book "Mastering Bitcoin" rank 27512 on amazon best seller rank in books category, so that's really good. ( Considering books category has millions of titles).
Also maybe using affiliate marketing. (if somebody bought KMD through the link, the referrer will get a few KMDs.) This is an old trick to launch product. But this is just a thought, of course.
hero member
Activity: 518
Merit: 500
Hi, I wanted to transfer from my ico to bittrex but the bittrex took a very long time generating my KMD address (about half an hour now). Did anyone have the same issue when they generate a new address for kmd in bittrex?
I assume by ICO you mean kmd
stored in your ico dashboard.If that is the case,can we move our kmd from ICO dashboard to exchange directly?
Can someone please elaborate on the procedure?
sr. member
Activity: 784
Merit: 253
Set Your Ideas Free
3rdstryker asked on Slack what we have been up to. Here's a quick summary:

- marketing team is building back-links to supernet.org
- website team is building a new homepage, then roadmap, then team page
- content team is writing, article about Zcoin/Zcash coming, and then there's couple updates lined up about Iguana market making, Iguana roadmap, and recent team hires
- James made some new DEX API that will make the basilisk mode faster, and its implementation delayed the new release
- Iguana GUI team is trying to get the new release out that will fix a lot of the bugs users are having. It might also have the PAX assets there
- Vanbreuk is working on the NXT asset -> Komodo assetchain gateway
- ca333 is working on a surprise which we will announce once it's wrapped into a nice package

Vanbreuk made a follow up:
Quote from: Vanbreuk
Now pending on a custom piece of coding to use Iguana in Basilisk mode for Nxt > komodo redeems
James will finish it once his current work stage in DEX is done.

We are looking forward of sharing more updates and finally getting the new Iguana release out with more features!
sr. member
Activity: 282
Merit: 260
experimenting with multiple lotsizes, so now the spread is even tighter at 0.2%
and there are higher lotsizes available at higher spreads

I expect this setup will actually make a bit of profits while still maintaining super low bid/ask spread

unless some problems are found on this side of the DEX marketmaker, I think it is good enough for the DEX side to plug into.

I also made it so you can have all the parameters in the command line invocation with argv[1] being a stringified JSON object. As new exchanges are supported, more and more DEX market makers can be deployed for more and more coins, all providing liquidity into the native iguana DEX



it is nice to hear your notice. KMD will hit 0.0003btc in March ,2017. I just have bought some KMD because it's under ICO price.
This is a good chance to keep more cheap KMDs for long time.
I feel the same like Golem,and after this period will be Poloniex.Price will spike again on June with Supernet meetup.Hodl
sr. member
Activity: 255
Merit: 250
experimenting with multiple lotsizes, so now the spread is even tighter at 0.2%
and there are higher lotsizes available at higher spreads

I expect this setup will actually make a bit of profits while still maintaining super low bid/ask spread

unless some problems are found on this side of the DEX marketmaker, I think it is good enough for the DEX side to plug into.

I also made it so you can have all the parameters in the command line invocation with argv[1] being a stringified JSON object. As new exchanges are supported, more and more DEX market makers can be deployed for more and more coins, all providing liquidity into the native iguana DEX



it is nice to hear your notice. KMD will hit 0.0003btc in March ,2017. I just have bought some KMD because it's under ICO price.
This is a good chance to keep more cheap KMDs for long time.
newbie
Activity: 1
Merit: 0
Grin Grin Grin i see buy walls with ico money!!! hmmm from 40 btc buy support ..30+ are from ico funds....pathetic...as ico withdraws proceed price will crash....and combined with btc rally .... ico investors will lose big.... Angry

Where can i get some of them drugs you are smoking?

oh big mister pondsea, you the wise man of the wisest. must not aske ~ the tings dolores taking in is not 4 smoke ~ hard ~  Lips sealed Lips sealed Lips sealed

~ignore the evil not veritas truth - veneg fake master the badest VIII~  Angry  for evil i sent Kiss
sr. member
Activity: 282
Merit: 260
legendary
Activity: 1428
Merit: 1000
Grin Grin Grin i see buy walls with ico money!!! hmmm from 40 btc buy support ..30+ are from ico funds....pathetic...as ico withdraws proceed price will crash....and combined with btc rally .... ico investors will lose big.... Angry

Where can i get some of them drugs you are smoking?
sr. member
Activity: 644
Merit: 292
Does the price will rise dramatically or remains so between 10-12 cents?
sr. member
Activity: 420
Merit: 250
 Grin Grin Grin i see buy walls with ico money!!! hmmm from 40 btc buy support ..30+ are from ico funds....pathetic...as ico withdraws proceed price will crash....and combined with btc rally .... ico investors will lose big.... Angry
legendary
Activity: 1428
Merit: 1000
I think we are going to be stuck in holding patten for a while. There are some large holders of this coin. Is there a way to look at the rich list?
That's the thing, most of the KMDs are in the wallet earning interest. There is maybe about 1% of KMD out there being traded in exchanges. We have to think of a better way to gain wider acceptance and popularity , maybe get Andreas Antonopoulos to write a book about KMD. OR if anybody can write a book about KMD (mastering KMD)  and publish it on Amazon .  So far there are books about bitcoin , and ethereum. Just an Idea.

What would publishing a book on KMD achieve?
Jump to: