Bitcoin Forum
June 23, 2024, 06:37:50 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 [34] 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 ... 315 »
661  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Financial_Privacy/SuperNET_Core/InstantDEX/PAX/Divs on: September 15, 2016, 07:55:24 AM
posted technical updates: https://bitcointalk.org/index.php?topic=1605144.msg16245305#msg16245305
662  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 14, 2016, 07:57:16 PM
I forgot to mention that I think I have the bitcoin backstop protection hooked in!

Just a stub and wont actually do anything until I get the messaging activated, but given a dataset of notarized blockhashes, any block that tries to replace any notarized block (or earlier), will simply get rejected as being an invalid block.

To my thinking, if it is rejected, then it wont ever be able to trigger a reorg of any depth and when the first non-notarized block along that reorging chain appears, then it would reorg to that point.

For dPoW the bulk of the work is in the voting process to elect the notary nodes and getting this election result properly ratified and onto the blockchain. Without a deterministic list of notaries at every blockheight, well, let's just say that we need to have a list of notary addresses that can be precisely calculated as of any blockheight. Not just in realtime (that's the easy part), but at any time.

Given such a list, then the data needed to verify that the notary seal is valid will be available.

I am fixing iguana bugs as the top priority to make sure we can get a stable release out sooner rather than later and only working on the dPoW coding after I am caught up. Sometimes the two overlap, ie iguana support for TAZ and KMD, as now I can integrate iguana into the notary nodes at the localhost layer. This means they dont need to be compiled or linked together and allows for a lot more flexibility. It also minimizes the chance of any bugs in the iguana codebase from directly affecting komodo. We have been testing iguana for a while, but it is a rather large codebase and it is better to design things to handle the iguana side dropping out.

With komodo relying on the equihash PoW to make blocks the old fashioned way, as long as the presence of notarized blocks can be made seamless, then we get the best of both worlds. Enhanced security when the notary nodes are up to date and current, normal security when they are not.
663  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 14, 2016, 07:38:45 PM
On the other side of iguana, I added support for syncing to TAZ (zcash testnet) and KMD (komodo testnet)

Due to the protected funds, basilisk mode wont be able to work with them. Also, iguana just cant handle all the zkp code, so while theoretically it would be possible for basilisk support on the transparent output side, it is not a priority for now. That will have to wait for new staff that can work on extending basilisk to the non-bitcoin protocols.

I dont yet interpret the protected transaction data, so the account balances will likely not match for now.

 
664  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 14, 2016, 03:35:45 PM


As soon as a new coin has a few iguana full nodes running and connected to the supernet, then all basilisk nodes will be able to add that coin and have a local wallet without needing the blockchain locally.

Will the option to add coins for basilisk just appear? Ie: once enough full nodes of a new coin are running, will the basilisk user wake up one day and see a new button or option to add  this new coin that the user was unaware of before?


Thanks. Sounds exciting.
you would need to git pull the GUI repo to get an updated html

maybe in the future we will fully automate the process, but for now safer to manually add and test new coins as they are validated.

Of course, if you just go into the GUI html, it is easy enough to add a new coin if you have all the magic parameters for the addcoin API
665  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 14, 2016, 10:55:31 AM
On the iguana side, I have basilisk mode into testing now. Basilisk nodes rely on iguana full nodes to provide public information data about the blockchain. Currently the following remote calls are supported:

getinfo - returns standard getinfo
balances - returns the balance and listunspent data and spend data for array of addresses
value - returns the value, spend script and unspent status of a specific txid/vout

It might not seem like enough, but from the above, a basilisk node is able to construct a functioning listunspent and from that it constructs the higher level RPC calls, such as sendtoaddress. All the signing is done locally and each vin is verified with multiple peers to have the correct value. Since a spoofed vin will either just not get a valid signatures, the only damage a hostile node can do is provide an unspent with an incorrect value and making a baslisk node overspend. That is why each vin's value is verified as a final step before signing.

I have 10 servers running BTCD (most of the time) as a long term test to make sure they all stay in sync. I also am running a pair of servers with BTC, LTC, DOGE, SYS and GMC. So those coin's should work in basilisk mode.

Current GUI mostly supports basilisk mode as the API is the same for either mode as is the RPC layer, however some things like sync status tend to jump around with the getinfo data coming from different remote iguana nodes.

As soon as a new coin has a few iguana full nodes running and connected to the supernet, then all basilisk nodes will be able to add that coin and have a local wallet without needing the blockchain locally.
666  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 14, 2016, 10:38:22 AM
I started work on the komodo testnet yesterday evening.

Testnet is live.

https://github.com/jl777/komodo

the end of readme has the instructions to get a komodo TESTNET node running.

The coin supply is changed, and the ICO allocation is done with the first mined block. This minimizes the code changes needed to support ICO purchases stakes as they will be distributed via normal payment transactions.

Currently it just has the hooks in for dPoW, however the mining reward is set to 3 KMD per block and due to lack of nodes, the blocks take a bit longer than 1 minute, but with more nodes it should end up averaging 1 minute.

It is running in the no-notary nodes fallback, which uses the same PoW as zcash. This ensures that no matter what happens to the notary nodes, the blockchain will keep advancing. When the notary nodes are present, the blocks will be more regular and it will provided the bitcoin enhanced security.

This testnet is subject to being reset at anytime (already did that 4 times), so if you are running a node, please check here to see if a new testnet is live. Also of note is that even though it is a testnet, just use the mainnet settings for the builds. There will be a new genesis, port changes, etc. prior to the real mainnet.

Since komodo will run with a dual method for block creation, when the notary node method is ready, it will be compatible with the prior blocks that just used the PoW method. I probably will have to make some breaking hardfork changes along the way, but it is possible that soon after the official zcash is ready I can make the actual komodo chain live.

For now, I want to get the process of going from the zcash pure fork to komodo solved, so there are no surprises when the time for the real mainnet is here.

I want to make as few changes to the zcash baseline as possible and so far the changes have been just to constants, strings, "komodo" message, and an if statement calling a komodo_blockcheck just before the equihash block validator is called. Of course there will also need to be a change to the reorg consensus code to check for notarized blockhash, but with the message handler and the block check handler in a komodo.h include file, I can code in C all that logic without getting slowed down by C++.

You can already start testing the zero knowledge protected transactions by following the instructions from "Getting Testcoins" section in the middle of https://github.com/zcash/zcash/wiki/Beta-Guide

The komodo addresses use the same prefix as BTCD, so it will start with 'R', but the protected coins use the same prefix as the zcash so it will start with 'tn'

If you need some test coins, just post your address here
667  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SuperNET trades on Poloniex as UNITY, asset id 12071612744977229797 on: September 13, 2016, 05:29:05 AM
Hey jl777, my organization is the new steward of Boolberry

At one point in time SuperNet owned a 3.7% stake in Boolberry, and it was up for integration into the SuperNet DEX

I would like to talk about resuming this project.

One of our main goals is a robust OTC market, and Supernet would be in line with that goal


If BBR can support a 2of2 multisig using secp256k1 pubkeys, then it will fit into the DEX atomic swap protocol. Not sure the feasibility of this, but that would be the easiest way to add non-bitcoin protocol coins
668  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 11, 2016, 11:11:20 AM
Hi James, there is any minimum amount of KMD that needs to be held in order to get stakes? Or any amount is good? (i.e. even 1 token)

What is required instead, in order to become a node? If it is a minimum amount of tokens, how many?

Cheers
There will be two independent ways of staking. The peercoin utxo based and the chances of winning a block depends on the amount of KMD in each utxo along with its coinage. The older it is, the higher chance it has to win, so eventually even small amounts will be able to win a block. Of course, a 1 satoshi utxo will probably never win a block, regardless of how old it is.

The issue of the utxo based staking is that you need to have many utxo if you have a large balance and this creates bloat and starts taking a fair amount of resources to stake. However, it is the time tested way for a decentralized staking and I prefer to use such time tested methods.

The other method is the NXT style that is based on total effective balance. That is the method the notary nodes will use and it wont matter how many utxo you have, though if you are spending them and it is not old enough, it wont have the staking power. There will be a bundle boundary balance that serves as a maximum possible and it is adjusted by any balance changes. This avoids attacks based on moving funds all around to addresses that would win a block. Also after an address gets a payout, it will need to "recharge". This will allow smaller addresses to win blocks.

With approx 1440 blocks per day, 1/1440'th total supply will on average win 1 block per day. So a balance of approx 2000 KMD should get staked once per month. And however long it takes, all the interest will then be paid out.

Anyway, the exact details are still subject to change, but I am working to allow people to passively earn 5% per year without having to do anything, but if so inclined would be able to proactively stake on their node.

So with the first method, would it be more advantageous to have smaller balances across multiple addresses?

In the second method, it looks like it would be best to have everything in one wallet. How long does it take to "recharge"?
the odds are theoretically the same regardless of how it is split. however connectivity issues might make it so it is better to have multiple utxo so you dont miss out on a block due to bad connection

however, the notary node staking will have priority, so the single large address balance will have the slight edge as far as compounding
669  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 11, 2016, 10:51:34 AM
Hi James, there is any minimum amount of KMD that needs to be held in order to get stakes? Or any amount is good? (i.e. even 1 token)

What is required instead, in order to become a node? If it is a minimum amount of tokens, how many?

Cheers
There will be two independent ways of staking. The peercoin utxo based and the chances of winning a block depends on the amount of KMD in each utxo along with its coinage. The older it is, the higher chance it has to win, so eventually even small amounts will be able to win a block. Of course, a 1 satoshi utxo will probably never win a block, regardless of how old it is.

The issue of the utxo based staking is that you need to have many utxo if you have a large balance and this creates bloat and starts taking a fair amount of resources to stake. However, it is the time tested way for a decentralized staking and I prefer to use such time tested methods.

The other method is the NXT style that is based on total effective balance. That is the method the notary nodes will use and it wont matter how many utxo you have, though if you are spending them and it is not old enough, it wont have the staking power. There will be a bundle boundary balance that serves as a maximum possible and it is adjusted by any balance changes. This avoids attacks based on moving funds all around to addresses that would win a block. Also after an address gets a payout, it will need to "recharge". This will allow smaller addresses to win blocks.

With approx 1440 blocks per day, 1/1440'th total supply will on average win 1 block per day. So a balance of approx 2000 KMD should get staked once per month. And however long it takes, all the interest will then be paid out.

Anyway, the exact details are still subject to change, but I am working to allow people to passively earn 5% per year without having to do anything, but if so inclined would be able to proactively stake on their node.
670  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 11, 2016, 10:01:17 AM
I have a new question about the 5% inflation of Komodo: do only the notary nodes earn this staking revenue? Or anyone that participate in the network? Though the latters don't help confirming blocks.

Everyone that holds KMD, will automatically get staked.

Great!  Grin
keep in mind the protected funds (zero knowledge) wont be able to be staked as there is no way to know the balances for those funds.

I am working on a way where people can stake as normal so they can make sure they will earn staking under their control, or they can just let the notary nodes stake for them. Keep in mind, if your total balance is low then it could be that you wont get many blocks at all, regardless if your node is staking directly or you let notaries do it.

The advantage to this dual nature is that even in the unlikely event that something happens to all the notary nodes, the network will still be able to generate blocks. That way we get a fully decentralized node by node staking, with the elected notary nodes staking as an overlay. Not sure I can get both to play nice with each other yet, but so far it is looking promising



James do you need to move funds into and out of a protected funds wallet/address? Is that how it will work?
There are transparent funds (normal bitcoin) and protected funds (zero knowledge)

You can of course transact using transparent funds
You can also transact using protected funds
You can convert transparent to protected
You can convert protected to transparent
671  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 11, 2016, 09:55:14 AM
I have a new question about the 5% inflation of Komodo: do only the notary nodes earn this staking revenue? Or anyone that participate in the network? Though the latters don't help confirming blocks.

Everyone that holds KMD, will automatically get staked.

Great!  Grin
keep in mind the protected funds (zero knowledge) wont be able to be staked as there is no way to know the balances for those funds.

I am working on a way where people can stake as normal so they can make sure they will earn staking under their control, or they can just let the notary nodes stake for them. Keep in mind, if your total balance is low then it could be that you wont get many blocks at all, regardless if your node is staking directly or you let notaries do it.

The advantage to this dual nature is that even in the unlikely event that something happens to all the notary nodes, the network will still be able to generate blocks. That way we get a fully decentralized node by node staking, with the elected notary nodes staking as an overlay. Not sure I can get both to play nice with each other yet, but so far it is looking promising

There are three types of gains:
3 KMD blockreward
staking 5% APR
txfees

the staking rewards goes to the address with the winning balance. The blockrewards are reserved for the notary nodes. I am leaning toward the node that stakes getting the txfees, so that would be a slight incentive to directly stake.
672  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 10, 2016, 11:02:19 AM
I find all of this very interesting and the tech is promising.

However, I was not involved in and know nothing about SUPERnet or BTCD, so much of this thread is quite confusing for me.

I am finding it hard to make sense of the different angles here and to understand what I should do to maximise my value if I want to invest a decent amount of BTC into this.

Should I be buying BTCDs now to hold and exchange? how/where should I hold them? What's this business about dividends and getting some free stake in SUPERnet?

Really, if you want people like me to invest a lot of btc then you need to make it very clear for us exactly what we need to do now to get the max value from our investment.

If we get to the ICO and I find out that I could have got a few advantages by doing things differently (buying BTCD now etc) then it will put me off investing at all as I will feel I missed the real opportunity on offer - and many like me will feel the same.

I hope you'll make it very clear for those who have no knowledge of BTCD or SUPERnet exactly what they need to do now. If you want to attract 10's of thousands of btc then you will need to attract a lot of fresher blood than just your usual crowd. I applaud you not giving preferential treatment to BTCD holders. You are right, I would not invest a single btc if preference had been given. But don't forget, I also won't invest if I feel that I missed the boat on anything, and I know nothing about any of the other projects or income possibilities that are mentioned in this thread, they are not explained properly, so it leaves newcomers feeling very confused.

Please produce an idiot-proof guide for new btc investors with no previous knowledge of your other projects.

What should I be doing now if I want to get involved and get the most bang for my buck?

Thanks, good work, the scope and implications for the project are indeed fascinating.
If you are able to get BTCD at below the implied price, then that would be the most cost effective way. However, BTCD doesnt have a lot of inventory for sale, as there only seems to be ~50BTC available at or below the implied price + bonus

The first day 25% bonus for BTC investors wont have any liquidity issues and will get the best BTC based price without any complications.

Of course, any BTCD you can pick up below .00425 will be better by the ave early bird bonus for the ICO. Likely ~10%. But the lack of liquidity will make it hard to get any very large amounts. In a sense BTCD is an ICO token with a very early bird bonus
673  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 09, 2016, 04:55:26 AM
Hi James
 I see mention of jl777hodl. I own a few hundred but I don't really get it so to speak they have a current value of between 3/4 nxt, which is bugger all. Can you give any heads up about what's happening with this asset

Cheers Jon  Cool
The problem is that the NXT AE's liquidity has really dried up due to circumstances beyond my control. So instead of trading at some reasonable price that reflects the true value of its holdings, it doesnt really trade at all. I warned them. I made a lot of noise about this. I predicted this would happen if they went ahead with their splitting the coin plan, but I was ignored. And I could no longer justify spending my time enhancing NXT.

The split with NXT is what convinced me that I had to create my own platform that I can trust to not be changing beneath my feet if it suits the interests of the primary coin holders. Derived crypto has no protection against the hardfork attack where the devs and large stakeholders agree to transfer value from the addons, like assets.

To solve this I am making assetchains, a blockchain secured by itself using PoS of itself. Now before you start accusing me of starting another project, this one was forced onto me by the NXT situation and I designed a solution that fits into the SuperNET roadmap.

Now the problem with a PoS chain with very few nodes is that it will be very weak and I would not feel it secure enough. So what is needed is a way to enhance the security of assetchains.

Hence dPoW

Before any trolls try to say I did the same thing to BTCD, I remind them that NXT assets had literally millions of dollars worth trading on it before they changed the fundamental future value of what assets are denominated in and without any way to get back onto the main value coin. Of course they are nice enough to support a slave chain at the mercy of the mainchain if you pay a 50% tax. This would be similar to the NASDAQ saying that instead of trading in USD, they are changing to the Argentine peso, except for a while it will trade as it if was (half EUR + YEN), except for the time where it is ...

All NXT asset holders had to become like advanced forex traders and instead of highly predictable currencies like the USD, GBP, lira, peso, they would be denominated in an ever changing base value whose price had no history and was totally unpredictable. It didnt take a genius to realized that to properly price assets in such chaos would be beyond the skills of most the existing assetholders. All they would see is crazy overnight 4x revaluations and 80% drops and that is if the prices did the logical thing! If nobody is trading something and it revalues, then it cant help but be mispriced. And globally mispricing all assets in the market and saying that its the assets fault if they stay mispriced. They are causing financial harm to basically everyone that invested in my assets and I couldnt do anything about it. I just couldnt deal with it anymore and left NXT.

There are no assets denominated in BTCD. Also, even if there was, I would have allowed assets to become denominated in KMD. It matters what currency you trade against.

Oh, the true native DEX will allow trading of all the assetchains directly against BTC, and each other.

So that is what is happening with jl777hodl and many other assets.

I can also talk about why InstantDEX is not yet. Originally I designed it based on NXT, then all the blockchain messages became temporary which is not good for financial records that I wanted to use it for. The permanent messages costs went up 5x and what was already on the high side for fees of 5 NXT due to the number of transactions, would have cost 25NXT. That is more than the cost of using bitcoin!

Rather than release it with an nonviable pricing, I decided to wait to port it on top of iguana. Of course, to get some product release pump, I could have released it, but that is not who I am. If the non-technical aspects of the tech make it non-viable, I wont release it just to be able to say I released it.
674  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 08, 2016, 07:21:37 PM
(9) Multigateways

MGW | ID: 10524562908394749924 | More Info | ACTIVE
mgwBTC (Bitcoin) | ID: 4551058913252105307 | More Info | PHASING OUT
mgwBTC (Bitcoin) | ID: 17554243582654188572 | More Info | ACTIVE
mgwBTCD (Bitcoindark) | ID: 11060861818140490423 | More Info | UNDER MAINTENANCE
mgwLTC (Litecoin) | ID: 2881764795164526882 | More Info | UNDER MAINTENANCE
mgwBC (Blackcoin) | ID: 7117580438310874759 | More Info | ACTIVE
mgwVIA (Viacoin) | ID: 275548135983837356 | More Info | UNDER MAINTENANCE
mgwDOGE (Dogecoin) | ID: 2303962892272487643 | More Info | ACTIVE
mgwDRK (Darkcoin) | ID: 17353118525598940144 | More Info | UNDER MAINTENANCE

I don't post much here and even less in order to reply to FUD, and I think james is able to address other accusations perfectly by himself, but when browsing quickly I saw this part of your quote, digging up for convenience an old abandoned topic in nxtforum, I could not refrain myself. If you pasted this, you seem to have little clue about what you're saying, or if you really do have a clue, you do not seem to care about what you post. I think I am qualified to reply because I have been coordinating the Multigateway service for quite a long time now.

The Multigateway working in Nxt Asset Exchange is perfectly fine and working, thank you. The mgwCOIN assets were development assets that were swapped over a year ago for the superCOIN assets that have been used since, through the MGW v2 server code, and are still being used, most specially superBTC and superBTCD. You can find the current assets information in the Multigateway information website. The multi-wallet GUI to deposit and withdraw supported coins is SuperNET Lite. Here you have the source code and the downloads and releases information. The client side is currently developed by tosch taking from the first SuperNET Lite release in 2015.

Maybe Iguana will make the current incarnation of the Multigateway obsolete. Maybe the Multigateway in Nxt will morph to a new tool under new development hands. There's a lot of things changing, the pace is speeding up, and it is difficult to predict how everything will work next year, but quoting the MGW as an "abandoned project" is ridiculous and simply false. James moved on to develop other projects when the MGW was stable, and in spite of the disagreements between james and the Nxt developers, SuperNET has been keeping the MGW infrastructure up for a long time and maintaning a useful tool for the SuperNET/Nxt community.

tl:dr, check your sources. Otherwise you are hurting any credibility you may have.
claiming MGW is abandoned, jl777hodl is failed when it has accumulated 600+ BTC from just one of its holdings, and other desperate FUD, it does seem that somebody is in a panic mode.

on the one hand "jl777hodl is a failure"
on the other hand it has 200 siafund worth over 600 BTC

on the one hand "MGW is abandoned"
on the other hand MGW has been in service for years as described above

on the one hand "jl777 starts project after project"
on the other hand jl777 has be focussed on iguana for the last 10 months

anyway, iguana was having some windows compatibility issues and so I ported the entire 100,000 line codebase into visual studio, today. I guess I am just too slow and I should have been able to do it in 4 hrs? My only excuse is I dont even have a windows machine and had to do it remotely, power went out for a few hours and I dont use windows. that is why it took all day

So let us stop this nonsense about me not finishing projects. Porting iguana to visual studio would have been a month+ project for most devs. So does it count against me that I started the port iguana to visual studio project today and finished it today?
675  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 08, 2016, 02:28:46 PM

An announcement regarding BTCD Swap rate and bonuses


There has been a lot of discussions about the BTCD swap rate, and whatever the 0.00532 BTC/BTCD rate is enough.

As the community was waiting for the coming announcement, the BTCD price had already climbed near this price. Once the announcement went live, the price had already reached its 'ceiling'. What made things look even worse was the ICO bonus system for BTC investors. Those bonuses would further lower the KMD share BTCD investors would get in the swap. In other words, some people felt that BTC investors have a significant edge, because they have the bonus system and the BTCD holders feel like they didn't get one.

To solve this, the allocation of BTCD in the ICO will be saved from dillution by applying the average bonus the BTC investors got to the swap rate.

Example: Lets say 10000 BTC are collected and 1000 BTC in early investor bonus was taken. That means the average bonus is 10%. This brings the BTCD swap rate to 0,005852.



Very nice move. This was the kind of additional extra I wanted to achieve for BTCD holders.
Will blog about this within the next 2 weeks.


Crypti holders were offered 1300 BTC buyout, and 14000 BTC was raised for Lisk.  Crypti swappers got less than 9% of Lisk supply

BTCD holders will be getting ~7000 BTC buyout.  Even if maximum 30000 BTC is raised for Komodo, that would still be 20%+ of supply going to BTCD holders.

It's a good deal, I'm happy with it.

I don't see any Crypti holders complaining anymore, now that the BTC value of their holdings is up 350%+ through the Lisk conversion

Market cap of btcd is currently ~5k btc, so not bad.
What happens to the komodo left after the year has finished? Inevitably many will not be swapped.
working capital
676  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Financial_Privacy/SuperNET_Core/InstantDEX/PAX/Divs on: September 08, 2016, 12:57:16 PM
Well, I'm getting happier and happier each day. If you guys keep holder's bonus on top of that, I'll go cheer-leading too.
max raise (not very easy to achieve) is required, plus community needs to agree on the exact percentage allocation of the bonus.
677  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 08, 2016, 12:36:15 PM
I know jl777 is a famous developer. But can someone summarize how many ICOs he launched and how many he delivered? I read somewhere that he likes to abandon projects.

I think a better way to put it is that JL takes on too many projects and 95% of the projects that he announces get indefinitely postponed or cancelled because another ground-breaking idea pops in his head. I think its a bit of ADD. edit - nothing personal intended only observational claim here Undecided

Your observational skills need improvements. I only see a lot of dedicated work by James for a project that is very large in scope and has a long list of things to do in order to have all gears in place. Of course things must wait for their turn because others are first on the list. That is normal development, or how could it be different? I can't remember projects cancelled by James, on the contrary there were related third party projects that failed and James had to work more to make up for them.
Thanks for the observation.

The following is the list of projects I have started since last November when the NXT situation threw a monkey wrench into things by drastically changing its fee structure and everything else:

iguana

Now does iguana have more than a single function. Well yes. Maybe that is what confuses some people, they hear about all these different things that iguana does and cant imagine it is all just one thing.

Separately, an update on my "failed" asset jl777hodl which is a holding fund with 200 siafunds, which appears to be worth over 600 BTC in addition to other assets. Some rumors that siafunds will start trading on poloniex soon, and if its price goes above 5BTC each, then jl777hodl would have gone from 0 to 1000+ BTC. Considering it never did an ICO and I just funded it with my personal holdings, it is a good result.

I also invented the MGW, multigateway, which issues a proxy asset to represent native cryptos 1:1. The multigateway automatically accepts deposits into a multisig address and returns the corresponding asset. Redeems are also automatic and a destination address can be any valid coin address. This has been around for over 2 years and to me it seems to invalidate the claim that I never finish anything.

MGW + NXT AE was doing a tokenized DEX, which allows decentralized trading via the AE. Now we are finally seeing alternate implementations of this tech. 2 years later. I also see the trolls proudly posting lists of the dozen+ proxy assets I issued for MGW to support their claim I am doing an ICO every day. The truth is these assets and many others are just issued with a fee and they are kept around until some deposits are made. Not exactly the millions of dollars of free money I supposedly raised from asset sales.

I have also invested in a variety of other projects. Additionally I freely help other projects when they ask. Now maybe my problem is I post about things that are not just about iguana, but if you think about it, if I am posting about things then I am not coding.


678  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 08, 2016, 03:39:13 AM
Can you explain the dPoW fees? For example, you say money is needed for that.

Aren't you talking about Bitcoin tx fees here which current optimum is 70 sat per byte or about 17,920sat per tx which is currently about $.10USD.

thanks

yes, but calculate the cost at 33 signers

also for planning purposes I need to account for the possibility of the 1MB blocks filling up and a fee market being created that boosts the txfees significantly
679  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 07, 2016, 01:35:48 PM
What is the minimum quantity of BTC that needs to be raised to make the project viable?
It depends on what level of the project you mean. There are the mission critical parts, like paying for bitcoin fees and notary nodes.

1000 would be enough for a reduced bitcoin notarization frequency and smaller number of notary nodes, but not a lot of development.

5000 would allow to have the fastest bitcoin notarization frequency, all 64 notary nodes and staff up a group of C coders and GUI devs fulltime for some years

10000 would allow having many LP nodes all fully funded for the lowest trading spreads and many liquid trading pairs

Above this would allow a warchest that can make opportunistic trades, arbitrages and other means to generate working capital and set up a very long term organization of the above. Along with some large scale marketing. Of course, even at the lower funds raised we will be doing marketing, but with a limited budget.

680  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KMD][dPoW] Komodo ICO - Zero Knowledge Privacy Secured by Bitcoin on: September 07, 2016, 11:40:56 AM
Many of those assets were dividends, however the case of cryptocard is very disappointing. Jl777 launched that fundraiser on the btcd thread, collected 10k btcd from memory when it was worth a lot more, but now he says that was coinomat project. Jl777 converted all his cryptocard assets into WAVES, then sasha mentions after the waves ico ends that coinomat business will likely be sold (who would buy coinomat?), and definitely not part of WAVES. The cryptocard asset was a fail, and jl777 raised considerable funds, and dumped his own assets, probably knowing sasha's intentions to abandon it. Please correct if that is wrong, but either way, I can understand and accept much of jl777's past record, but cryptocard is a black mark imo. Jl777 started cryptocard, raised the funds, subcontracted sasha and coinomat, then adandoned the project and bailed to waves, probably with insider knowledge, leaving bagholders still thinking an anon debit card is still being worked on. Much is forgivable with jl777, but the cryptocard affair reflects poorly on jl777 and sasha.
The cryptocard has been completed for over a year as much as it ever would and even paid out a few dividends. while it is true is has been a disappointment, everybody had the chance to convert cryptocard into WAVES. That was public knowledge and available for all.

I had no insider knowledge of the status of coinomat and in fact I still hold millions of coinomat assets. My understanding is that coinomat business is being converted into a WAVES oriented one, which makes sense to me and why I continue to hold millions of coinomat assets. This is not any bailout behavior.

I think it is quite unfair that you accuse me of wrongdoing for swapping a disappointing asset using the same method available to everyone. Was I supposed to not do the swap? If so, then other people would accuse me of not doing what I should have. I believe all the amounts raised would have been recouped via the WAVES swap, at least very close to it, so a disappointment, but not a disaster.



If you didn't have insider knowledge on sasha's plan for the cryptocard, then I accept that. It was a failed project so far, and I think you have to accept it was one of yours, so when I learnt you had swapped it didn't look good to me, and the other day you said it was a 'coinomat' project, and I don't think the investors ever thought that. It looked like you were subcontracting coinomat to do the card that would then be plugged into the btcd ecosystem by you. I apologise if I offended, but for smaller investors like myself there's always the fear that 'insiders' are working things out behind the scenes to their own benefit at the expense of regular investors. If you and sasha never discussed his likely abandoning of it, then I believe you, but imo it was your project, and maybe you could argue in favor of him incorporating cryptocard into waves in some form.
I am not aware of any plans to cancel the crypto card. and certainly if he is planning this I would be against that.

I did coordinate this, so in that sense I was involved, but the banking environment changed from bad to horrible during the project and the best could be done was done. As I am not expert in fiat banking, I need to rely on others for such things

thank you for your understanding.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 [34] 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 ... 315 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!