Bitcoin Forum
May 25, 2024, 12:36:01 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 ... 87 »
141  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: September 24, 2015, 08:49:09 PM
Lyth Alpha roadmap published: https://nxtforum.org/lith-the-nxt-mmo/lyth-development-announcement-%28alpha-spoilers-inside!%29/msg194809/#msg194809

https://trello.com/b/mq7u4KPB/lyth-roadmap
142  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: September 23, 2015, 12:08:42 PM
Lyth Development Announcement (alpha spoilers inside!)

https://nxtforum.org/lith-the-nxt-mmo/
143  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: September 21, 2015, 02:09:17 PM
http://edition.cnn.com/videos/world/2015/07/10/greece-island-tourism-woes-black-pkg.cnn

Guess what "digital currency" the mayor is talking about? Smiley

(Answer)
144  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NAUT] Nautiluscoin to Nxt-based Nautilus redemption process. on: September 17, 2015, 08:46:38 AM
If anyone has any questions about Nxt and the client, I am available to answer them, too. Smiley

Best of luck!
145  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: September 15, 2015, 07:46:57 AM
Eric Grill of http://coinoutletatm.com/ explaining how they use the NXT Messaging feature for recording their transactions.

https://www.youtube.com/watch?v=FN0gUIVYu2s&feature=youtu.be&t=10m36s

146  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: September 11, 2015, 01:23:54 PM
New Experimental Release of NXT 1.6.0E!


Upvote here: https://www.reddit.com/r/NXT/comments/3kjf34/new_experimental_release_160e/
Retweet here: https://twitter.com/NxtCommunity/status/642325905050857472

https://nxtforum.org/nrs-releases/nrs-v1-6-0e/

Quote
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Release 1.6.0e

https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.6.0e.zip

sha256:

e0a3eaca084fbe89cad5890ac9cb94a2e0c06bef5fe065c84702ff53e643aa4d  nxt-client-1.6.0e.zip

https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.6.0e.jar

sha256:

49281f76b855e218e4f69a60f8cba6aaa5c0deeb382615196f6f728e958a01e7  nxt-client-1.6.0e.jar

https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.6.0e.exe

The exe and jar packages must have a digital signature by "Stichting NXT".


This is an experimental release for testing only. Source code is not provided.


Change log:

This experimental release adds several major new features. It does not require
a hard fork, and update to the 1.6 branch will be completely optional even
after it is declared stable. 1.6 peers are compatible with 1.5 peers, but as
usual the database changes are not reversible, going back from 1.6 to 1.5
would require starting again from a 1.5 database.


Account ledger:

The account ledger feature provides a record of all recent changes to the
account balances (including NXT, asset, and currency balances), and the event
that caused each change. It is enabled by default for all account, but can be
set to track certain accounts only or be disabled completely, using the
nxt.ledgerAccounts property. By default records are kept for the last 30,000
blocks, this can be changed using the nxt.ledgerTrimKeep property.
The nxt.ledgerLogUnconfirmed property controls whether confirmed, unconfirmed,
or both types of changes are tracked.

The new APIs getAccountLedger and getAccountLedgerEntry are used to retrieve
account ledger records. Their parameters and response fields are documented in
the javadoc.

Account ledger events can also be followed using the existing eventRegister
and eventWait API.

Using account ledger events as an alternative to the getAccountTransactions or
getBlockchainTransactions API completely avoids the need to handle phased
transactions as a special case. Only changes to account balances that actually
happened, and at the time (block height) they happened, are recorded in the
account ledger. The account ledger also makes it easier to monitor an account
for changes that occurred as a result of past transactions (e.g. an AE order
being filled), or are result of dividend payment transactions, or block
forging fees.


Peer services:

Peers can advertise to other peers the set of services they provide, and
include this information when sharing peer addresses with each other. Currently
available services are Hallmark (being a hallmarked peer), and Prunable
(providing archival and retrieval service for expired prunable data).

To configure a peer to provide the Prunable service, nxt.maxPrunableLifetime
must be set to -1 and nxt.includeExpiredPrunable must be true (default). Such
a peer will then provide expired prunable data to other peers when requested.
If nxt.includeExpiredPrunable is false, the node will still keep prunable data
indefinitely (if nxt.maxPrunableLifetime is -1), but will not provide them to
others.

The services a peer provides are also exposed in the getBlockchainStatus and
getStatus APIs. The getPeers API accepts optional service parameter, to
filter the result based on desired provided service, and includes the services
each peer provides in the peer info.


Restore prunable data:

A peer configured with nxt.maxPrunableLifetime=-1, or any positive value
higher than the minimum of two weeks (1209600 seconds), when downloading the
blockchain from scratch, will automatically start requesting the missing
prunable parts (prunable plain/encrypted messages, and tagged data) from any
archival peers it finds on the network (those providing the Prunable service).

This task of requesting and restoring missing prunable data can also be
triggered using the new retrievePrunedDat debug API, for peers that already
have the full blockchain or need to be restarted during the download process.

(Note that when nxt.maxPrunableLifetime is set to a positive value, extend
tagged data transactions are ignored for the purpose of selecting which
pruned tagged data to retrieve, the timestamp on the original upload data
transaction is what is being used. To make sure all pruned data are retrieved,
set nxt.maxPrunableLifetime to -1, and if really needed set it back to the
desired value after the initial restore is complete.)

The getBlockchainTransactions API now accepts optional includeExpiredPrunable
parameter, to force including expired prunable parts in the response, if
available (default false).


Asset delete:

Asset transfers to the Genesis accounts are now treated as deleting the
corresponding number of shares, with the total asset quantity adjusted
accordingly. A new deleteAssetShares API has been added to perform this
function. At the next hard fork (1.7), asset transfers to Genesis will be
completely disallowed and the deleteAssetShares API will then create a new
AssetDelete transaction type, to achieve the same quantity reduction effect.


API additions:

A new getTaggedDataExtendTransactions API has been added, to retrieve all
tagged data extend transactions for a given tagged data upload transaction.

The getConstants API now also returns a list of all supported request types
and their properties.

The approveTransaction API accepts revealedSecretIsText boolean parameter,
default false, as a way of specifying whether revealedSecret is text or
binary. The old revealedSecretText parameter to submit the text value
directly is still supported.

Added encodeQRCode and decodeQRCode APIs, to handle the encoding and decoding
of QR image on the server side, instead of in javascript, using the ZXing java
QR processing library, version 3.2.1. This improves the generation and parsing
of QR codes used in offline transaction processing, images that failed to
decode correctly using javascript can now successfully be processed.

Allow attaching encrypted messages to accounts that don't yet have a public
key announced, as long as the public key is included in the same transaction
as a public key announcement attachment.


Several performance optimizations have been included in this release:

The last 10 blocks and the transactions in them are now cached in memory.
The unconfirmed transactions (up to nxt.maxUnconfirmedTransactions, default
2000) are also cached in memory.

Accounts with zero balance are now deleted from the account table, which
significantly reduces its size and should make queries for the balances of the
active accounts faster. Only public keys for such accounts, if available, are
permanently stored in the separate public_key table. Creation of new accounts
for one-time use, which is the practice of many exchanges and merchants,
should now be less of a burden for the database, as long as such accounts are
fully emptied after use.


Updated jetty to version 9.3.2. If unpacking on top of a previous installation,
delete the old lib subdirectory first.

This release will perform a database upgrade and rescan on first start.


-----BEGIN PGP SIGNATURE-----

iQIcBAEBCgAGBQJV8sIcAAoJENqvaxkWiP4ZvZQP/iWOYYj2PjqPp1OjtQt/nxbe
7sAUJBhISvc+NBSGCly53W34t/+QsPhE0eOoY9EZ6vvKqsvAXdDUFYdMKHbX2FZx
gni32IxFMmDb64HlaG07GFSWvXAPwA/+lJCeWwBVwnkF9HvLJaTpdmG4+u9howsb
OFeE6IAvHYAdEJLDpB27Fm3knQkTS4e0j3RJUtHt9DmREq0O+x4TByK1RnwAjQs2
NciTpIbKAN3T7OKzonES+5rQtXnp5pLulA7jw3QyfXTpIRu3DgKFXKobZbI8zHvK
2e2zGsrA7F267d6xYsPL1TjtqSKldxjuX0RP2zAd28yS0SNAll2Zq+4qFM4dPOBw
3jcbb3ecMySeJ7KI9SJxeq2PWA1ogLfs7/NvCAwLmgs7cPAmLgHE3LP/6HeL6ox2
Z/d/t+NvPHyTPh5DLXQ9q9rJNFKCWAd5NTmSyd4KZVbhm7/mVpWJwnH6CacE+8bX
4FDaA1uQh+4FVbzvBldlNGj7Q/mziNvz36cg0B3Dn/Bfgx04Bp3OPDhh+I/uU/Hw
i+d3lr73UZlYNHkwMdtkFNnJ/mITBe02SRwpo07UvCWPYCSso5OacNC2n9rHnCOc
Aqqy894h7WtNg60cFM4fBBC44UzMpECFIvOwCtOWEhzS8ES8S6Ly3nzYkp3RMOoq
NCZgq03lVoyf7Kkk7GPO
=7ack
-----END PGP SIGNATURE-----
147  Bitcoin / Bitcoin Discussion / Re: "Why I'm releasing a brainwallet cracker at DEFCON 23" on: September 02, 2015, 05:29:09 PM
Passphrase length does not matter. Passphrase language does not matter. All that matters is predictability. There is no way to measure the predictability of human-generated passphrases, but we can measure the predictability of random passphrases. So use random passphrases.

I'd like to bold this for emphasis.

If you'd use the entire King James Bible as a passphrase, it would be easy to crack.
148  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: September 02, 2015, 05:22:45 PM
I've been in contact with them for a few months now and also met some of their employees at Payexpo.
They actually ásked us to come Smiley

I see that Nick has been added, so that's good Smiley

Wow, great place to present Nxt to decision makers in finance. How did you bring Nxt to discussion?

I am happy to announce that NXT will be on a panel at the Barclay's Select Series events on the 15th of September: https://events.barclays.com/ehome/131090/298522/?categoryid=1101963


You will see my name still on the list, but I will be replaced on my request by Nick Grove of NXT2PAY, who will speak about NXT from the perspective of real use cases. Will be changed on the site, soon.

15:10 - 15:50     Panel discussion: Bitcoin and Virtual Currencies move mainstream
Tony Gallippi, Co-founder / Executive Chairman, Bitpay
Nicolas Cary, Chief Executive Officer, Blockchain
Bas Wisselink, Co-founder, NXT Foundation (This will be Nick!)
Tom Robinson, Chief Operating Officer, Elliptic Enterprises Ltd

The good thing about this is that Nick wears a suit much better than I ever could, too!
149  Bitcoin / Bitcoin Discussion / Re: "Why I'm releasing a brainwallet cracker at DEFCON 23" on: September 01, 2015, 04:35:33 PM
But my dog's name is still safe right?

Only if called 123abc
150  Bitcoin / Bitcoin Discussion / Re: "Why I'm releasing a brainwallet cracker at DEFCON 23" on: September 01, 2015, 03:48:16 PM
Wait, you take a dictionary, even an English one (even better if you are a foreigner so you use a foreign dictionary, but lets assume you use and English one) and you choose 12 random words of 6+ letters (even 5 letter words are OK but just to make sure) and you will have a random password with 128 bit+ entropy which is very safe. Of course, you write it down on a piece of paper.

The problem is that average people don't know that's done like this correctly and they use famous phrases and other crap instead.

As shown by this thread, people aren't very good with random-ness.
You should let the computer do this for you.

People are terrible in choosing passwords for themselves, I know that. But I kind of got from this thread that all brainwallets are doomed since they can be cracked with this software which is just not true if you have a strong and random password.

Concept of brainwallets works for NXT pretty well, OK they did have some hacks in the beginning, just because the users used famous phrases which you can look for with these kind of softwares very quickly and successfully. Now, when the users know what the strong password is and when they have option for client to choose it for them, brainwallets work well.
I almost forgot that NXT is a brainwallet per se.

I did some research some time ago but couldn't find how NXT hashes the passphrase which locks/unlocks the account.

Does anyone here know about it?

Is it just sha256(passphrase)? It can't be that easy...

I am sure it's not that easy, otherwise all people's NXT would just be gone. I have forwarded this thread to my good friend who's deeper with NXT, I am sure somebody will reply and let us know.

Cheers!

From the Nxt Whitepaper: https://www.dropbox.com/s/cbuwrorf672c0yy/NxtWhitepaper_v122_rev4.pdf

Quote
2.4.2 Accounts
Nxt implements a brain wallet as part of its design: all accounts are stored on
the network, with private keys for each possible account address directly derived
from each account’s passphrase using a combination of SHA256 and Curve25519
operations.
Each account is represented by a 64-bit number, and this number is expressed
as an account address using a Reed-Solomon14 error-correcting notation that
allows for detection of up to four errors in an account address, or correction of
up to two errors. This format was implemented in response to concerns that
a mistyped account address could result in tokens, aliases, or assets being irreversibly
transferred to erroneous destination accounts. Account addresses are
always prefaced by “NXT-”, making Nxt account addresses easily recognizable
and distinguishable from address formats used by other cryptocurrencies.
The Reed-Solomon-encoded account address associated with a secret passphrase
is generated as follows:

1. The secret passphrase is hashed with SHA256 to derive the account’s
private key.
2. The private key is encrypted with Curve25519 to derive the account’s
public key.
3. The public key is hashed with SHA256 to derive the account ID.
4. The first 64 bits of the account ID are the visible account number.
5. Reed-Solomon encoding of the visible account number, prefixed with “NXT-
”, generates the account address.

When an account is accessed by a secret passphrase for the very first time, it
is not secured by a public key. When the first outgoing transaction from an
account is made, the 256-bit public key derived from the passphrase is stored
on the blockchain, and this secures the account. The address space for public
keys (2256) is larger than the address space for account numbers (264), so there
is no one-to-one mapping of passphrases to account numbers and collisions are
possible. These collisions are detected and prevented in the following way: once
a specific passphrase is used to access an account, and that account is secured
by a 256-bit public key, no other public-private key pair is permitted to access
that account number.
151  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: September 01, 2015, 01:00:15 PM
I am happy to announce that NXT will be on a panel at the Barclay's Select Series events on the 15th of September: https://events.barclays.com/ehome/131090/298522/?categoryid=1101963


You will see my name still on the list, but I will be replaced on my request by Nick Grove of NXT2PAY, who will speak about NXT from the perspective of real use cases. Will be changed on the site, soon.

15:10 - 15:50     Panel discussion: Bitcoin and Virtual Currencies move mainstream
Tony Gallippi, Co-founder / Executive Chairman, Bitpay
Nicolas Cary, Chief Executive Officer, Blockchain
Bas Wisselink, Co-founder, NXT Foundation (This will be Nick!)
Tom Robinson, Chief Operating Officer, Elliptic Enterprises Ltd

The good thing about this is that Nick wears a suit much better than I ever could, too!
152  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: August 20, 2015, 09:04:23 PM
Drachmaeconnect project is organising Athena Model Contest in Greece in collaboration with Jetcoin:

Indiegogo campaign
https://www.indiegogo.com/projects/athena-model-contest-agistri-island-greece-tv-show#/story

Articles
http://www.forbes.com/sites/rogeraitken/2015/08/20/greek-crisis-agistri-islands-supermodel-tv-project-could-raise-fortunes-in-cryptocurrency-twist/
https://www.zapchain.com/a/NqFT37iLgl

About DrachmaeConnect
http://www.drachmae.money/en/
http://www.drachmaeconnect.com/
153  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: August 14, 2015, 11:59:20 AM
NXT NRS 1.5.15 released

https://nxtforum.org/nrs-releases/nrs-v1-5-15/

Quote
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Release 1.5.15

https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.5.15.zip

sha256:

474694e08ff2d9495aceff73a4ed9e276f4311d81695fd7eeaf94caba58d4764  nxt-client-1.5.15.zip

https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.5.15.jar

sha256:

3ede181a73a365a54cd8341d0925d1ebe899382e0b9df808a83ab0e82feee5d2  nxt-client-1.5.15.jar

https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.5.15.exe

The exe and jar packages must have a digital signature by "Stichting NXT".


Change log:

Full offline transaction signing support.

The purpose of this security feature is to allow users to sign transactions
without ever entering their passphrase on a workstation connected to the
internet, thus avoiding the risk of having their passphrase stolen by locally
installed malware such as key loggers or copy/paste loggers, or malicious
plugins.

As a prerequisite to using this feature, users should setup two workstations:

(1) online with up to date blockchain, on which transactions will be prepared;

(2) offline with Java and NXT installed, but without internet connection, and
without needing to have up to date blockchain, on which transactions will be
signed.

The nxt.isOffline=true parameter can be used on the offline machine to make
sure it doesn't even try to connect to peers or to listen on the peer port.

In addition, users should prepare either a web camera to scan QR codes, or a
USB stick to copy data between the workstations.

The following procedure should be followed:

On the online workstation - users can create a transaction without entering
their passphrase. Click on the "advanced" link, check the "Do Not Broadcast"
option, and then check the newly added "Do Not Sign" option that appears.
When "Do Not Sign" is checked, the passphrase field is cleared and disabled.

If the account submitting the transaction does not yet have its public key
announced, a separate input field appears, to allow entering the public key.

In response, the server returns the unsigned transaction JSON, and in case
there are no message attachments to be encrypted, also the unsigned
transaction bytes.

The client now displays the "Raw Transaction Details" modal with the unsigned
transaction JSON, and the unsigned transaction bytes (including a QR code
representing them), if those exist.

The unsigned transaction bytes do not include the prunable attachments,
however they can still be used for signing the transaction, and also for
broadcasting the transaction in case no prunable attachments exist.

Users can transfer the unsigned transaction bytes to the offline workstation
by scanning the QR code, or download the unsigned transaction JSON to a file
by clicking the download icon, and transfer it using a USB stick to the
offline workstation.

On the offline workstation - users should use the "Transaction Operations"
modal, "Sign Transaction" tab, to sign the unsigned transaction JSON, which
can be uploaded from a file.

In response, a signature field is displayed, with a QR code, and also the
signed transaction JSON which users can save to a file for transferring back
to the online workstation.

Back on the online workstation, users can scan the signature QR code into the
"Raw Transaction Details" modal signature field, and broadcast the
transaction. Alternatively, they can use the "Broadcast Transaction" tab of
the "Transaction Operations" modal to broadcast the transaction JSON copied
from the offline workstation.

A command line tool, sign.sh, has been provided, for signing transaction JSON
without needing to even have an Nxt server or a browser running.

Note that when the transaction to be signed includes a message to be encrypted,
the encryption is also performed on the offline workstation. However, when
generating the unsigned transaction JSON on the online workstation, if using
a remote node, the plain text content of the message must be sent to this node
in order for it to prepare the transaction JSON. Therefore, use a local
installation when preparing encrypted messages for offline signing, if the
content of the message is sensitive.

All tabs in the "Transaction Operations" modal that have both bytes and json
input fields need to have only one of them filled. If in doubt, using the json
is preferred, as it will work for all transactions. The bytes format is still
accepted, when possible, for backwards compatibility, and for transferring
using QR codes (as the json cannot fit in a QR representation).


Other changes:

The signTransaction API now also returns the full signed transaction JSON.

The calculateFullHash API now also accepts unsignedTransactionJSON parameter.

Added getLastTrades and getLastExchanges API, accepting a multivalue asset,
respectively currencies parameter, and returning an array containing the last
trade or exchange for each of those assets or currencies.

Added fullHashToId utility API.

Display warning when trying to issue an asset or currency with less than 2
or more than 6 decimals.

Display total value of currencies owned on dashboard. Set default leasing
period to the maximum allowed (32767) in the UI. Other UI improvements.

Updated jetty to version 9.2.13. If unpacking on top of existing installation,
delete the lib subdirectory first.


-----BEGIN PGP SIGNATURE-----

iQIcBAEBCgAGBQJVzbtBAAoJENqvaxkWiP4Z0foQAKfLOCOb7Hoem0sumRlWyvEX
D7jA/PeEW4TwqslP8wKSbj245hzadGLtEvugUAdAtf2oHRqFIGIOE3hOXPS5iuSd
Ofb95e9IRB+dwS9Pm/EjOqLf+TURoS5iCQgy7qEX/MZobWeDdUXM2Rq1+TPaKulk
4w8aYqNYD+jCyBTyOBp+lVbZPsiLTHmoHMmRlYjdERrv+ilQ1a2lRaqcMJTcFc3H
GrD1kEw9rD0U8NXG7lKpCT+APEUj/1SKI0OWV+3IBzfv9wCoGV7qzzPuZaE7En9G
UURi2lElVTAO21AkKPyycHtul7ZNUKh0zW41KMwMhuYZUiEJdhGjp0LSukHhWATg
UEHkjWU+78QjPX/8El+tewr7/fUy+UxerekvfyIVLjwBf6s05x7G3t7OyL5YH9+1
a9S/wQ+0rFCuUS5MB5dErJc6v9xuWSpj4aM7ELPSTX5PWpG+vs6DfrZkhcw6Pzec
mjP6lg6Z96PdbOfYsaQYma9JmdR+rr8j6xJwzI8XY0Du7nygLMpbRhiCUPyrwcw9
fdAvsGptimXrh03fCbCX+t0s3W+SO2rZXu0pokZKoApXsDxlUEm1ZMxwFi/103SV
+M1y/FRWWN5tB0YI3FXY8Dy+9enzocKUID77Xjkor/SnjF6uwJ5lnDNmjnpTEpk1
1TEKd68+ctKQ4HJtuzln
=tTB+
-----END PGP SIGNATURE-----
154  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: July 31, 2015, 04:39:28 PM
Looks good. It is more user-friendly now. There are two images which are not shown since of bitcointalk restrictions.

I helped Damelon with creating a fresh OP (openings post). Do you like it? Are there things missing or do you have other suggestions? Let me know!  Smiley

It's doing this quite randomly, it seems.
Looking for a solution.
155  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: July 22, 2015, 05:53:39 PM
https://nxtforum.org/nrs-releases/nrs-v1-5-14

Quote
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Release 1.5.14

https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.5.14.zip

sha256:

62611aa074b2cb61f1b7a7ee169a2772721367bd22d014d0469bb1d2b05c7c22  nxt-client-1.5.14.zip

https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.5.14.jar

sha256:

0c3b8c890d0aa0463ff228f308b7dfb69fe6a0a83802ff19e2bbbf1a6ae030f5  nxt-client-1.5.14.jar

https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.5.14.exe

The exe and jar packages must have a digital signature by "Stichting NXT".


Change log:

Using cached thread pool for blockchain download and event listeners threads,
resulting in better parallelism and faster blockchain download speeds.

The getAskOrders and getBidOrders APIs now accept an optional boolean
parameter showExpectedCancellations, default false, to show if any of the
orders returned are expected to be cancelled in the next block, based on the
content of the unconfirmed transactions pool and the phased transactions
expected to finish in the next block.

Expected order cancellations are now shown in the asset exchange UI.

The calculate hash modal can now be used for all supported hash algorithms.

Fixed handling of non-ascii characters in the filename for the
DownloadTaggedData API.

Fixed incorrect fees shown in the client for some phased transaction types.
Fixed missing approval button for phased transactions.

Load html page and modal before javascript for plugins.

Updated some translation files, added Turkish as experimental, status of
Catalan and Romanian translations changed to stable.

Updated jetty libraries to version 9.2.12. If unpacking on top of a previous
installation, delete the old lib directory first.

-----BEGIN PGP SIGNATURE-----

iQIcBAEBCgAGBQJVr8qHAAoJEFOhyXc7+e2Ae18P/Anx8agplMtdf1oqPV2yqxCJ
CwsOwhNmZJnecbIHML6cEU4nG/JMyviql74CfuN5AcG6YcZHHxtuEG+YpYyvbIiW
emowsmouNQprZusNnx8zHXWoao+Uq/OTgP9tQg/GPY5ftN73SddsJ8qV6dGj21WI
0xshx6L+TCBZDzhMYq/C6YctAcHn6LL+QLsVZ26gOjwHvLl6G9AOt24k2Ps7Yjbf
ZBIWebYy5bjs5OXhVbAb595SHD/tKIx+8yfifm4wfo2ob7v/iNmus2BADu3GzGIe
cserNOSP9qyDv3I7L2mBS3nR/tOQtXzTJ7hzfAhMq3D3lDve+6t4W+Rv8DfrMfyO
4l7Pc2nTtGqUyz7sYtjDWMQjFS1kb7RUajvumWkIVFA+POZAHdHBL7EG6Xne+xWO
QaXmeKNPu4qFqiHdVI3fexCLFOYcplK/ul2MBLynaiu736vBn+c/Lu6nOfm4B97G
gDeoa3eUisDLBi5peV/VAyYfUB3rWzjGGK3EZpsIOgi0mJh3zjgXu4yNvy6/gJk4
0s8gVPQ8RGr/RYqNfuPTl6u4ykBfNSbplFjWqphkSbLkZTLqa6bYh9CFkeCmH3VS
U1kQ4QP4FXeDx6OFZ5EMelDRh89Erea2zPXCMypW9IB/dvsZIwB8IXbfHPjaDfvP
Re3QDYMa9cAOKt4ykMlT
=6ZIz
-----END PGP SIGNATURE-----
156  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: July 21, 2015, 08:13:42 PM
What Debate? NXT Votes Unanimously to Add Coin Mixing Anonymity

http://cointelegraph.com/news/114915/what-debate-nxt-votes-unanimously-to-add-coin-mixing-anonymity
157  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: June 30, 2015, 12:09:16 PM
Drachmae project (which works with NXT via NXT2PAY platform) and NXT mentioned in the Daily Express.

http://www.express.co.uk/travel/articles/587781/Greece-holiday-cash-credit-card-advice-tourism-beach
158  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: June 27, 2015, 05:14:19 PM
For those not following the Supernet thread closely, this is an important message fron jl777. Bold is mine.

Quote
I'd like to know which supernet dev built the cryptocircuits wallet. That has got to be one of the sickest wallets I have ever seen. Whoever you are you did a great job.

Yeah I'd like to know too who thought it would be a good idea to put a web browser inside a wallet.

PS. Bob is just trying to pump the coin where he bought into his own ICO.
why do people keep linking this cryptocircuits to SuperNET?
I have no idea about anything cryptocircuits and SuperNET has nothing to do with it

James
Rumor has it that a supernet dev is part of the circuits dev team. Dont know how it started or who started it but that's word on the crypto block. Either way, the wallet is sick.  It's also not just the webview in the wallet. Its the 1st webview I've seen with audio and video capabilities. It also has a combination of unlocking panels which also unolck a bonus stake, also a 1st in crypto.

@illodin Instead of hating maybe you should check it out. Download the wallet, it costs nothing.
since anybody can start a rumor without any basis, there have been many projects that claimed some sort of SuperNET involvement without any basis. Even some fairly prominent ones.

With almost 800 in the SuperNET community and the stretching of the definition of "dev", it is possible for someone to signup in the SuperNET slack and then create an artificial association.

However, I can categorically state that no SuperNET core dev is involved with cryptocircuits. I make no assessment of this cryptocircuits as I havent event looked at it, but if they are actively spreading this sort of rumor, then you can make your own conclusions about this. Why doesnt the cryptocircuits make an official statement about non-involvement of a SuperNET dev? or disclose which person they are claiming is a SuperNET dev.

James
159  Alternate cryptocurrencies / Altcoin Discussion / Re: Nxt Marketplace & Freemarket - two decentralized ecommerce on: June 24, 2015, 09:19:48 PM
Uninteresting way to inject keywords into a thread

boo.
160  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: June 14, 2015, 03:07:02 PM
https://nxtforum.org/nrs-releases/nrs-v1-5-12/

Quote
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Release 1.5.12

https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.5.12.zip

sha256:

ac42f30dde2f84c624a78791befb44ed0f11dc8e456742388d410537914266f9  nxt-client-1.5.12.zip

https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.5.12.jar

sha256:

f29d6229f9a14ee37b217ffcf6484b7efcd16ac5ce714b64e968de7ceafd311e  nxt-client-1.5.12.jar

https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.5.12.exe



Change log:

Significantly reduced the number of threads used when WebSockets are enabled.
This should prevent the out of memory issues on some systems caused by
excessive number of native threads created.

Fixed important bugs in fork resolution during blockchain download.

Improved blockchain download speeds, reduce load on hallmarked nodes and avoid
slow peers during download.

Send event notifications when using the eventRegister and eventWait APIs only
after the database transaction has been committed, to make sure the changes
that triggered the event are visible at the time the event is emitted.

Added generateFileToken and decodeFileToken APIs, allowing creating and
verifying tokens for files.

Fixed file upload when using the test page.

The maximum file size accepted for upload can be restricted using the new
nxt.maxUploadFileSize property, default and minimum accepted value is 42 kB.


Client UI:

Fixed missing scrollbars in modals invoked from other modals.

Updated some translations. Added Romanian translation (experimental).

Updated bootstrap to version 3.3.4.


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBAgAGBQJVfWnUAAoJEFOhyXc7+e2AwsAQANXmvSdHq3fgU/NJdJzM/vhL
NtPB/lQsXcMrB38QUADwvgKe2EAWf6re4aabjpNnXmVKntvYE/vJR4EQXpiXLFok
rSoPsbBYkxt1JKvb1lhWY90dTk+uWoziBzVd+cXDSABzWQyfqZGojAKe9SYpFSMS
qyoaALkL859xT3SREg3aFeiJ9Kk+dLflUFBb7oGH/ez0Q/WFCHtA88+HFL4fM8ro
UskRNj9IMjkqsw3l5GN3RgzRbfHCO6KxFDLXa4zg7toS6Vo9eODs4GO8eFSvsxnb
5VxqihpCgZ9Yo0wTuvAkoR5me3AWHQoia2ms93Uowa3GN8eF7KC8AYvFr7mhxjT/
+PLX5kun/yyhHk58ks/T9Wzn2eZ6ApgLT6tOLvmUVo82DVWcP4GkX4s0IXlHslwc
JpbKBDe75d/n+GfsibvcWeK0eTsePcLIFW4z0DtaUuADdStatjsmWbwXqPwWmLWd
+THOlBAIVIvSolIAHOL1tWT0jWDrgJj0eedOPlhNE3tzav+9j1N5fpC1+tOqRFr9
kuQwyK48S8KSX16y6VMKv2FjRVF3hHZnQMnUgOlUYEuTVBfw9ltdgxdFU5ZSmbwv
srAcS1M/fAJpirEi3+KBe2WPvN68MEeKr+OB3qOw0Z6Jwmu7mJBcWtwiO11h990b
jVEO+JbQWvTJAX1hXAP/
=6jAr
-----END PGP SIGNATURE-----
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 ... 87 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!