Bitcoin Forum
May 05, 2024, 01:07:02 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  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 »
621  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 19, 2016, 06:10:40 PM
lisk states they have dapps and that youl be able to build dapps at launch when you clearly can't and liskHQ confirmed this indirectly.

Please, don't spread lies. You are making up things. You said that Bitcoin isn't decentralized. You obviously don't know what that word means. Smiley
622  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 19, 2016, 04:21:24 PM
Almost! The public key is hashed again using SHA-256 and then the first 8 bytes of the hash are reversed. The account ID is then the decimal representation of those 8 bytes.

Ok, thanks.  I have my code working.

Please explain what "BIP39" means?  If I generate my own accounts from random character strings, will this cause any issue?  What are the limitations enforced by BIP39?

https://github.com/bitcoinjs/bip39 Smiley

This enforces extremely secure passphrases.
623  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 19, 2016, 03:26:39 PM
Attention delegates: Make sure your pass is strong. A trusted delegate was hacked last night and lost his testnet lisk(stealing fake coins  yay!) He did not have a secure pass. Seems the coins were transferred to an account named pangu.

This can't happen on the mainnet, because we are enforcing BIP39 passphrases in the UI. Smiley

Quote from: Github Source
Code:

//Lines 260-265
private.openAccount = function (secret, cb) {
var hash = crypto.createHash('sha256').update(secret, 'utf8').digest();
var keypair = ed.MakeKeypair(hash);

self.setAccountAndGet({publicKey: keypair.publicKey.toString('hex')}, cb);
}


//Lines 268-280
Accounts.prototype.generateAddressByPublicKey = function (publicKey) {
var publicKeyHash = crypto.createHash('sha256').update(publicKey, 'hex').digest();
var temp = new Buffer(8);
for (var i = 0; i < 8; i++) {
temp[i] = publicKeyHash[7 - i];
}

var address = bignum.fromBuffer(temp).toString() + 'L';
if (!address) {
throw Error("wrong publicKey " + publicKey);
}
return address;
}

EDIT:

Please let me know if I'm understanding this correctly.  To get a Lisk address, all I do is take the SHA-256 hash of the secret key, derive the Ed25519 pub/priv-key pair and then convert the first 7 bytes of the pub-key to a long?  What is the "cb" parameter?  I see it passed around everywhere and I also see that some method is named that.  I can't readily find it's definition.

Almost! The public key is hashed again using SHA-256 and then the first 8 bytes of the hash are reversed. The account ID is then the decimal representation of those 8 bytes.
624  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 19, 2016, 01:15:35 PM
Whoa, easy there. Just asking a legitimate question. So are you saying nobodys Lisk is currently showing in thier wallets and that as soon as the work is complete the balances will show?

Can somebody else please verify this?

Thanks in Advance.

Hey,

As soon as we launch the LISK will be visible in your account. Right now, nobody has access to his LISK. Smiley
625  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 19, 2016, 12:52:37 PM
I replied to that StackOverflow post: http://ethereum.stackexchange.com/questions/2104/how-does-lisk-differ-from-ethereum/3176#3176

It may not be the most technical answer, but Oliver is busy coding. He doesn't have the time to defend Lisk from people who are just trying to discredit it. As we said at the beginning of Lisk, just wait and see. We can talk all day, but at the end of the day our results will speak for themselves.

To me one of her key points is the FUD about Lisk dapp zip files.  She is saying that because Lisk dapp files are not permanent fixtures on the Lisk mainchain (as ETH dapps are on the ETH mainchain), how do you know you are loading a clean Lisk dapp from a zip file you get from elsewhere?  This is actually a valid point.  So...does the capability exist now in Lisk to put in the main Lisk blockchain during dapp registration an MD5 hash or similar for the offchain Lisk dapp zip file?  Can such a capability be added?  Is should such a capability needed?  (I think yes...)

A dapp dev can put a hash in the dapp description field and the users can control the hash before using the dapp. However, this is not feasible or elegant. Long-term I would like to introduce a "version scheme" into the dapp store. That means for every update the dapp developer has to upload a hash to the blockchain and before launching the dapp the Lisk client checks if the hash is correct. It's just a thought right now, but I'm pretty certain that we will implement something like that later on.

It's kind of ironic that as soon as I posted the response on StackOverflow there are immediately a few trolls here.  Grin
626  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 19, 2016, 10:25:35 AM

Looks like the Co-Founder of MyEtherWallet.com is trying hard to smear Lisk to keep her ETH wallet business from collapsing.

Someone please respond on stackexchange to defend Lisk and let us know so we can upvote your answer.

https://i.imgur.com/Zlugkmr.png

https://i.imgur.com/e7dQ3RP.png



I replied to that StackOverflow post: http://ethereum.stackexchange.com/questions/2104/how-does-lisk-differ-from-ethereum/3176#3176

It may not be the most technical answer, but Oliver is busy coding. He doesn't have the time to defend Lisk from people who are just trying to discredit it. As we said at the beginning of Lisk, just wait and see. We can talk all day, but at the end of the day our results will speak for themselves.
627  Alternate cryptocurrencies / Altcoin Discussion / Re: how does lisk differ from ethereum on: April 19, 2016, 10:24:12 AM
I replied to that StackOverflow post: http://ethereum.stackexchange.com/questions/2104/how-does-lisk-differ-from-ethereum/3176#3176
628  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 19, 2016, 08:43:52 AM
Lisk claims you can they have dapps yet they dont store the code on the blockchain they store it in a zip file and just link it to the chain. wow did anyone know this? how does that make it decentralized app

Bitcoin isn't decentralized as well, right? We also mentioned, that in the future we will support decentralized technologies like IPFS. Smiley

of course bitcoin isn't decentralized, so currently at launch you wont have dapps

Sorry, but what are you saying? Smiley


you should really moderate this thread doesnt look appealing for a $5.9million coin

You do see that I post less and less here, right? We are all on our own forum and chat. Bitcointalk is just noise at this point of time. Serious discussions are somewhere else.
629  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 19, 2016, 08:34:04 AM
Lisk claims you can they have dapps yet they dont store the code on the blockchain they store it in a zip file and just link it to the chain. wow did anyone know this? how does that make it decentralized app

Bitcoin isn't decentralized as well, right? We also mentioned, that in the future we will support decentralized technologies like IPFS. Smiley
630  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 18, 2016, 01:47:32 PM
How can I get Lisk coins for the testnet?  Thanks.  Also, I did participate in the ICO.  Is there away to redeem testnet coins from my ICO address?

https://faucet.lisk.io/, if that doesn't work send me a PM with your testnet Lisk address.
631  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 17, 2016, 05:09:50 PM
http://jaypalter.ca/2016/04/top-blockchain-influencers/

Jay Palter declared Lisk as the 95th most influential organisation of 2016.




you will be speaking on in Mai at the congress, right?

Which congress?
632  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 17, 2016, 04:40:37 PM
http://jaypalter.ca/2016/04/top-blockchain-influencers/

Jay Palter declared Lisk as the 95th most influential organisation of 2016.


633  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 17, 2016, 03:47:45 PM
bullshit crap topic...no news nothin to read here only bullcrap..i am also heading to lisk forum website.



That is giving it credit. LISKHQ must come here and cringe, I scanned last few pages and I will never be coming back here. A thread taken over by teenagers who have no clue and should go back to school to learn a thing or two. Disgraceful.

Nothing we can do about. Best to go to our forum or chat. Smiley
634  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 17, 2016, 11:31:41 AM
I said it before: I think, we need a "Lisk – technical discussion an announcements" thread and let the kiddies take over this one.

We are taking all discussions to our forum and chat. Everyone who is looking for serious discussions should head there. Lisk needs to create his own community, outside of Bitcointalk. This is extremely important. Therefore, please head over there.



Thanks. Smiley
635  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 17, 2016, 11:02:25 AM
Dark Lisk will be partner for LISK  Grin

No.
636  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 17, 2016, 08:19:43 AM
Hi,DEV,I have joined the QQ group of LISK ,is there a Lisk Team member in that group?

Whick QQ group you joined in? Max in the main QQ group: 538750004
Yes,I see ,But he is offline most of the times. Grin

Hey, it was 2AM. I'm online in QQ from time to time. Smiley
637  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 16, 2016, 02:48:16 PM



All links and current admins


Added to the OP. Thanks! Smiley
638  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 15, 2016, 01:01:15 PM
Seychelles lol.
Max got best friends in seycheles. Get you conclusions....

Oh, and we are from Panama. Wink

http://www.whois.com/whois/lisk.io


Whois protection is mandatory today. Especially if you announce a project on Bitcointalk.
639  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 15, 2016, 12:47:09 PM
Quote
MAX!!! ARE YOU ACTUALLY ENDORSING THE LISK.FUND THING?

SO YOU ARE ENCOURAGING PEOPLE TO TRADE LISK BEFORE ITS OFFICIAL LAUNCH???

WTF?Huh?

THAT IS REALLY DISRESPECTFUL AND A SLAP ACROSS THE FACE TO ALL OF US WHO PARTICIPATED IN THE ICO!!!!

Lisk is not even launched yet. They can only trade LISK after launch. Doesn't matter if we talk about exchanges or about the lisk.fund team. I'm just stating that they are honest.
640  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LISK] Lisk | ICO | Decentralized Application & Sidechain Platform on: April 15, 2016, 12:39:10 PM
To be delegate, is it mandatory to have his LISK software on a VPS (in practice, I know that in theory it's not) ?

Yes, or on a dedicated server.


Very well could be.
Stay away.

Some kind of trap in https://Lisk.Fund ?
It looks suspiciously

It's not a trap. It's a serious site, I know the owners.


@liskHq

Is there anyway to buy or earn lisk?

and where is lisk windows wallet? i made a account on lisk website,is that the final wallet?

We are not launched yet. Please wait until launch, then you can buy Lisk and download a Windows Lisk client.


What % of UNCLAIMED accounts hold less than .25 BTC initial investment?
What about UNVERIFIED?

We aren't getting 100%, obviously, as some were test accounts and test amounts. I had one such account myself and will not validate that one. (Or claim it for that matter).
What are the latest pass phrase generation / verification numbers?

Completed exchanges ~> 8490
Completed exchanges / claimed and validated ~> 7554
Completed exchanges / claimed but still unvalidated ~> 672
Completed exchanged unclaimed ~> 264

We already said that we won't delay the release again because of the low validation rates. The numbers are already MUCH better than before.
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!