Bitcoin Forum
May 21, 2024, 01:17:02 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 539 540 541 542 543 544 545 546 547 548 549 550 551 552 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 ... 2269 »
  Print  
Author Topic: [ANN][LSK] Lisk | Blockchain Application Platform for JavaScript Developers  (Read 3073044 times)
djselery
Legendary
*
Offline Offline

Activity: 1386
Merit: 1001


View Profile
April 19, 2016, 02:58:28 PM
 #11761

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

Activity: 742
Merit: 500



View Profile
April 19, 2016, 03:00:54 PM
 #11762

NOW I AM. HAH!

hocus pocus... punk.

I am the 12.000th reply Cheesy

Hey how did you do that???  Grin Grin Grin
rtrtcrypto
Hero Member
*****
Offline Offline

Activity: 627
Merit: 500


View Profile
April 19, 2016, 03:02:06 PM
 #11763

I...AM...SATOSHI.

*actually, just deleted one of my older posts.


NOW I AM. HAH!

hocus pocus... punk.

I am the 12.000th reply Cheesy

Hey how did you that???  Grin Grin Grin
cointrader83
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500



View Profile
April 19, 2016, 03:02:39 PM
 #11764

I...AM...SATOSHI.

*actually, just deleted one of my older posts.


NOW I AM. HAH!

hocus pocus... punk.

I am the 12.000th reply Cheesy

Hey how did you that???  Grin Grin Grin

Hehe  Grin What a troll  Grin
rlh
Hero Member
*****
Offline Offline

Activity: 804
Merit: 1004


View Profile
April 19, 2016, 03:03:35 PM
Last edit: April 19, 2016, 03:21:54 PM by rlh
 #11765

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.

A Personal Quote on BTT from 2011:
"I'd be willing to make a moderate "investment" if the value of the BTC went below $2.00.  Otherwise I'll just have to live with my 5 BTC and be happy. :/"  ...sigh.  If only I knew.
Emerge
Legendary
*
Offline Offline

Activity: 854
Merit: 1000



View Profile
April 19, 2016, 03:04:40 PM
 #11766

Hey guys let's keep it on topic. We may have a huge amount of posts, but a huge part of that is complete bs Smiley
So yeah, let's just keep this straight discussion about Lisk, and let's try our best to read up before asking again
wasref
Hero Member
*****
Offline Offline

Activity: 555
Merit: 500


View Profile
April 19, 2016, 03:19:32 PM
 #11767

How funny LISK don't even have DAPPS javascript is not compatiable and this aint even FUD amazing the only real fud they have against ethereum is that solidity language they're using is not popular

there is a reason why vitalik didnt use JS for the back end because it wont work for their plan lisk can be coded to play games like hangman, free candy crusher or flipper remember FUN APPS not fun dapps

if you ask me they hyped up the coin for something they dont have

$5.9million for 1 year work nice wage maan
LiskHQ (OP)
Hero Member
*****
Offline Offline

Activity: 546
Merit: 509


Decentralized Application Platform


View Profile WWW
April 19, 2016, 03:26:39 PM
 #11768

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.

Lisk.io - Blockchain Application Platform
rtrtcrypto
Hero Member
*****
Offline Offline

Activity: 627
Merit: 500


View Profile
April 19, 2016, 03:29:35 PM
 #11769

I'm semi concerned about that too. But, I'm much more interested in seeing the project attempt to work through all of this and develop something meaningful. Further, I'm also really interested in seeing a roadmap and team update/tech update on the plans for the millions of dollars - what devs are being hired? What's the plan? Where is this going in the vision of the team in place currently.

Right now there is not much brain power focused towards LISK - reading through this thread shows that 99% of the people here just want absurdly crazy ROI at any cost. Very little talk is about development or use cases almost all of it is just plain "moon for moon's sake".

Curious to see what substance the team can put together for 5 million bucks.


How funny LISK don't even have DAPPS javascript is not compatiable and this aint even FUD amazing the only real fud they have against ethereum is that solidity language they're using is not popular

there is a reason why vitalik didnt use JS for the back end because it wont work for their plan lisk can be coded to play games like hangman, free candy crusher or flipper remember FUN APPS not fun dapps

if you ask me they hyped up the coin for something they dont have

$5.9million for 1 year work nice wage maan
mxhwr
Hero Member
*****
Offline Offline

Activity: 616
Merit: 500


View Profile
April 19, 2016, 03:34:15 PM
 #11770

I'm semi concerned about that too. But, I'm much more interested in seeing the project attempt to work through all of this and develop something meaningful. Further, I'm also really interested in seeing a roadmap and team update/tech update on the plans for the millions of dollars - what devs are being hired? What's the plan? Where is this going in the vision of the team in place currently.

Right now there is not much brain power focused towards LISK - reading through this thread shows that 99% of the people here just want absurdly crazy ROI at any cost. Very little talk is about development or use cases almost all of it is just plain "moon for moon's sake".

Curious to see what substance the team can put together for 5 million bucks.


How funny LISK don't even have DAPPS javascript is not compatiable and this aint even FUD amazing the only real fud they have against ethereum is that solidity language they're using is not popular

there is a reason why vitalik didnt use JS for the back end because it wont work for their plan lisk can be coded to play games like hangman, free candy crusher or flipper remember FUN APPS not fun dapps

if you ask me they hyped up the coin for something they dont have

$5.9million for 1 year work nice wage maan

if you ask me rtcrypto how did they raise all that. i wasnt here from the start so dont really want to go back 600 pages but did they have some marketing campaign going on how did they hype all this to raise so much. well as a trader i'm not happy i never bought as a investor/developer happy i didn't. i couldn't buy this at ICO price if i had the chance without seeing what they have planned and seeing through their double meanings
gembitz
Hero Member
*****
Offline Offline

Activity: 1834
Merit: 639


*Brute force will solve any Bitcoin problem*


View Profile
April 19, 2016, 03:38:41 PM
 #11771

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.

lol..there's no way a coin written in javascript will survive the strommin'.. yubikeys haxxors lol ..proofs?  Kiss

©2021*MY POSTS ARE STRICTLY FOR NOVELTY AND/OR PRESERVATION/COLLECTING PURPOSES ONLY!*It should not be regarded as investment/trading advice.*advocate to promote sharing and free software for the bitcoin community* #EFF #FSF #XTZ ===> START WITH NOTHING AND BUILD IT INTO SOMETHING!
SilverCondor
Sr. Member
****
Offline Offline

Activity: 247
Merit: 250


View Profile
April 19, 2016, 03:44:43 PM
 #11772

May LISK's price fall after ICO coins distribution and probably price dumping by ICO participants?
pabloangello
Legendary
*
Offline Offline

Activity: 1344
Merit: 1001


View Profile
April 19, 2016, 04:02:17 PM
 #11773

May LISK's price fall after ICO coins distribution and probably price dumping by ICO participants?

We dont know what LISK price is currently, we know only LISK-IOU price. You probably meant that second price. Sure it is very possible that LISK price (if started from LISK-IOU level) may fall after launch.

rlh
Hero Member
*****
Offline Offline

Activity: 804
Merit: 1004


View Profile
April 19, 2016, 04:15:21 PM
 #11774

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?

A Personal Quote on BTT from 2011:
"I'd be willing to make a moderate "investment" if the value of the BTC went below $2.00.  Otherwise I'll just have to live with my 5 BTC and be happy. :/"  ...sigh.  If only I knew.
LiskHQ (OP)
Hero Member
*****
Offline Offline

Activity: 546
Merit: 509


Decentralized Application Platform


View Profile WWW
April 19, 2016, 04:21:24 PM
 #11775

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.

Lisk.io - Blockchain Application Platform
bitbitch
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
April 19, 2016, 04:22:07 PM
 #11776

perhaps once the mainnet launches this thread should be closed with the last post being from LiskHQ with a link to lisk.chat
MaGNeT
Legendary
*
Offline Offline

Activity: 1526
Merit: 1002


Waves | 3PHMaGNeTJfqFfD4xuctgKdoxLX188QM8na


View Profile WWW
April 19, 2016, 04:26:06 PM
 #11777

perhaps once the mainnet launches this thread should be closed with the last post being from LiskHQ with a link to lisk.chat

Ofcourse not, this is a great place for discussion and getting attention to Lisk.
rtrtcrypto
Hero Member
*****
Offline Offline

Activity: 627
Merit: 500


View Profile
April 19, 2016, 04:41:22 PM
 #11778

They raised it because interest was very high for the project and because Ethereum was going through a massive pump (which I think is legitimate, I'm very bullish on Ether)... this led many people to hope that they could find the next moon rocket of x10+ returns. Timing really helped the LISK fundraising. Soon it will be time to put the funds to use and develop something truly meaningful, I'm excited to see what the team will do with the funds and what projects come out of this. The community is maybe a bit immature and mostly made up of moon kids, but, the team is serious in their desire to build something worthy of all this money raised.




I'm semi concerned about that too. But, I'm much more interested in seeing the project attempt to work through all of this and develop something meaningful. Further, I'm also really interested in seeing a roadmap and team update/tech update on the plans for the millions of dollars - what devs are being hired? What's the plan? Where is this going in the vision of the team in place currently.

Right now there is not much brain power focused towards LISK - reading through this thread shows that 99% of the people here just want absurdly crazy ROI at any cost. Very little talk is about development or use cases almost all of it is just plain "moon for moon's sake".

Curious to see what substance the team can put together for 5 million bucks.


How funny LISK don't even have DAPPS javascript is not compatiable and this aint even FUD amazing the only real fud they have against ethereum is that solidity language they're using is not popular

there is a reason why vitalik didnt use JS for the back end because it wont work for their plan lisk can be coded to play games like hangman, free candy crusher or flipper remember FUN APPS not fun dapps

if you ask me they hyped up the coin for something they dont have

$5.9million for 1 year work nice wage maan

if you ask me rtcrypto how did they raise all that. i wasnt here from the start so dont really want to go back 600 pages but did they have some marketing campaign going on how did they hype all this to raise so much. well as a trader i'm not happy i never bought as a investor/developer happy i didn't. i couldn't buy this at ICO price if i had the chance without seeing what they have planned and seeing through their double meanings
Poly#Crypto
Hero Member
*****
Offline Offline

Activity: 910
Merit: 508



View Profile
April 19, 2016, 04:43:49 PM
 #11779

perhaps once the mainnet launches this thread should be closed with the last post being from LiskHQ with a link to lisk.chat

Certainly not.
Lisk needs a broadly positioned community.
And along with many other possibilities, Bitcointalk is a great platform and many users are very familiar with it.
bitbitch
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
April 19, 2016, 04:48:06 PM
 #11780

perhaps once the mainnet launches this thread should be closed with the last post being from LiskHQ with a link to lisk.chat

Certainly not.
Lisk needs a broadly positioned community.
And along with many other possibilities, Bitcointalk is a great platform and many users are very familiar with it.

yeah, but there are far too many fudders on here who use spurious technical discussions to damage the rep of Lisk. i suggest they be funnelled to lisk.chat to be educated.

Pages: « 1 ... 539 540 541 542 543 544 545 546 547 548 549 550 551 552 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 ... 2269 »
  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!