Author

Topic: | Nxt | Blockchain Platform | Proof of Stake | Official - page 202. (Read 941260 times)

legendary
Activity: 1470
Merit: 1004
tyz
legendary
Activity: 3360
Merit: 1533
Congrats TwinWinNerD for the good start!
Some more such cools apps along with good promotion will boost Nxt.

We got a cool article for NXTBubble:

http://www.coinssource.com/nxtbubble-bursts-the-scene/
hero member
Activity: 560
Merit: 500
It's Raining releases haha.

Thanks for the updates always nice to see the updates here as well!

sr. member
Activity: 406
Merit: 250
Just a minor typo I found on the official site at Nxt.org:

http://nxt.org/about/asset-exchange/

The first link on the bottom links to nextblocks.info which isn't a valid site. The correct domain is nxtblocks.info (note the missing "e").

Also, what's up with DGEX? This is the message that I get:

legendary
Activity: 1092
Merit: 1010
NRS v1.4.18 - Mainnet Release!

https://nxtforum.org/nrs-releases/nrs-v1-4-18/

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

Release 1.4.18

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

sha256:

05e0357f092e372daa03885489b00255bdf4821c797763e1aac04bfcc2fcacf8  nxt-client-1.4.18.zip


Change log:

This is a bugfix release. Everyone is required to update.

Set the content type to "text/plain; charset=UTF-8" when sending http requests
to peers. This is an important bug fix, as the incorrect encoding of outgoing
blocks and transactions containing some Unicode characters can prevent their
propagation and lead to forks.


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBAgAGBQJVVZedAAoJEFOhyXc7+e2AyDIP/3VZVodJOO6YAZqLGYIzxxkO
K+TQPhz1Avrq82eWUr/UbN1aAlEU9+cyAkj2Nx4af+lTu/UpR7yKWVStDHtQvwCp
9lvPxtrFhNj4IpYb0MyYRpFBEVsZysfEWR1/zD2kt7Xdw/AJVp9+ICkyYXOy6Fyt
T5zCDdghGAoo6ML9w6G226rvlg+ytDCuGlNeh+sYFKQyD2Dqmm2t2N6rUCO9oHlc
dm30pVFLtHdta5UIChrNFrUnpEQ5pTUXXNh+R3cgLMWUYozeHgEfrRC15ctfj4MA
tusQ3u9Zz1L7pXeLR8Cz1RI0g5PJ44OWx5ZuFHA2r9Le785k21ofiGivL3S01ows
JFwv88mQYTDGnh3XxPKMOVK2nGWbMScC+e/y4k6HUh+grUs5x+7PF837BBsEzIwc
7IFd3vztJOvjQea/DrRxpAFDKziPJLXu5E005T/lX97PvDafyLJXfHkn/m5ZUAns
/x1NoOk1NRTdAYVfd1zMXVmGp+aw9vdDEkdsuj1y8JLobW3m7DGrPqoMGqjOUgpI
Kxs/KY9u/oJAPHehIKwR3ggWJPIUxHfFk4sFinF/+e7qvtVrcbKoxLVPHz34dxRs
4cJmITCnFr21rW05nPzFjpd7Jyyprhy8dn1zgkxV2qZTdjjeWbIx1obKTF61e75Y
Zr1/+bJLrojA+cEa6Juc
=I4Us
-----END PGP SIGNATURE-----
legendary
Activity: 1512
Merit: 1004
Great,1.5.7e coming.
mplemented parallel blockchain download. Cool
legendary
Activity: 1092
Merit: 1010
Release 1.5.7e

https://nxtforum.org/nrs-releases/nrs-v1-5-7e

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

Release 1.5.7e

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

sha256:

a5e318ee4422a46f1347891b2b71be7553739b1b768398b82696a011fe2b6d05  nxt-client-1.5.7e.zip


This is a development release for testing only. Source code is not provided.


Change log:

This is an experimental release. It is a required update for all testnet nodes,
but is also possible to run on main net.

Added WebSockets support in the peer to peer networking. When connecting to
peers that do not support WebSockets, HTTP is still used. WebSockets can be
disabled by setting nxt.useWebSockets to false (default is enabled).

Implemented parallel blockchain download. After Constants.PHASING_BLOCK (not
yet set on main net), blocks and transactions data will be requested from
multiple peers in parallel, in batches of 36 blocks (when more than 36 blocks
need to be downloaded), instead of downloading up to 720 blocks from the
single blockchain feeder peer. This is expected to reduce the time for full
blockchain download, once most nodes upgrade to support the parallel download
protocol.

Added file upload using multipart form requests to the UploadTaggedData,
ExtendTaggedData and VerifyTaggedData APIs. Added upload file button to the
corresponding forms on the /test page.

Added DownloadTaggedData API, to download tagged data as a file.

Added optional includeData boolean parameter to all GetTaggedData APIs, default
true, to allow omitting the actual data from the result for saving bandwith,
since it can now be retrieved separately using the DownloadTaggedData API.

Improved search by tags. Improved validation of tagged data.

Added includeEffectiveBalance to getAccount and getBalance API, default true.
If false, effective balance and guaranteed balance are not included in the
response, which should improve performance for these APIs.

Added HexConvert utility API.

Improved GetConstants JSON to include an alternative transaction type JSON
representation.

Peers in the nxt.wellKnownPeers list are always kept connected, regardless of
the number of connected public peers or the total number of know peers.

Added GetInboundPeers API, to return all peers that have sent a request to this
peer in the last 30 min.

Added inbound, inboundWebSocket, and outboundWebSocket boolean fields to the
Peer JSON returned by the getPeer and getPeers APIs, to show the inbound status
of each peer and whether it has established an inbound or outbound websocket
connections to this node.

Limit the total number of inbound or outbound connections, using the properties
nxt.maxNumberOfInboundConnections and nxt.maxNumberOfOutboundConnections,
defaults 250 and 50 respectively. The nxt.maxNumberOfConnectedPublicPeers value
cannot exceed the nxt.maxNumberOfOutboundConnections value (if it does, it is
set to nxt.maxNumberOfOutboundConnections).

The getAccountTransactions and getAccountTransactionIds APIs have been
restricted to always return only the non-phased transactions. Those APIs have
also been deprecated and will be removed in 1.6. The getBlockchainTransactions
API should be used instead, which has the same behavior but returns both phased
and non-phased transactions (by default, unless either phasedOnly or
nonPhasedOnly parameters is specified).
Do not simply replace getAccountTransactions with getBlockchainTransactions in
your client code without an understanding of how phased transactions work and
without being prepared to handle them correctly.

Added links to the Wiki documentation for each API request from the /test page.
The links are autogenerated and thus work only for the wiki sections following
the same hash tag pattern, but most of them currently do.

The JavaScript NRS.sendRequest() function no longer accepts a callback function
as its second parameter. Instead, when sending a request with no data, specify
the value {} as the second parameter and the callback function as the third
parameter.

Client UI improvements:

Implemented client side signing of the tagged data transactions.

Added File Upload form, accessible from the settings menu. Allow extending a
tagged data transaction from the transaction info modal.

Integration of current status of client translations for new 1.5 features,
new "experimental" state for languages with translation status at 40-50%+,
added Czech, Greek, Hindi translations in experimental state, updated translation
state for other languages (Beta: 70-80%+, Stable: 90-95%+).


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBAgAGBQJVVR4kAAoJEFOhyXc7+e2AhfAP/0TVI6e1ahbCUBAmn/EOAc8s
9TLMf+S6y2peECY0xSxPkIlFbwiTrEXGAeDgXq5kSq1T7n9zkBLzSXNMK6GNDC1P
wOXBj2YKFCWkqcJB1wBOejyLKx3/95QuUZsoVnhJy1JkSGllGG1dVnc0fiaXhTEw
+Gbse61O539bJJNV53j2xhAt24ztLsJVtvw3MZxFSuqOfKpxdyQ7FcLaElUqNQ+e
jBUyICejisLgRUm9y7rxS+iKZeVAyuSszPKzD/O03Zt31YJXNI66VXYaX/+x7sTx
UZ3F36dL42L6GM085XPCBYpnEVG++D+f0KcmhZCGb0tCssS9XnJ3D0wHMmCAUZQH
5sNgEkpwroAyk/0Q6W7c88JFXY+XxkqKJ3oYcxw+FUV5BZwYvbjV0y624yMQijU5
0mPE2+D+cHD+iJ7ji337+CX3JTrMc4pVQ8p78AMIqFOsEAhGJ7Frgu5z0c5zfi0M
JUfIWFx0UFEd38eRmMC0XeqncI7aRn6OrKQThbPsKnCD8iQBYy3c9JwfW0i2Q8kG
6fT5LGZGNWSaO9CI502EgqZzgtS++jQ4zijGunsizEJ9bPaXAeyXI+Wmnpo510Mn
qxkARVVq4W8IVUkdUoVjFvEYSRPjb+gE4u3gnGuiOK0wm7mJZI/yQsAkeJ15Rvaf
LwnUsHHXFMZV2icRl7OY
=wqid
-----END PGP SIGNATURE-----
legendary
Activity: 1092
Merit: 1010
Enjoy our new video: https://vimeo.com/127270358

Share, share, share Smiley
hero member
Activity: 574
Merit: 500
I get the feeling that the next release is much more complicated than recent releases.

People with tehcnical/software background (and enthusiastic, interested intermediates Wink ) are requested to spend an hour our two looking into this thread...

https://nxtforum.org/general-discussion/(core)-edge-cases-for-1-5-6e

... and helping out where they can. It is good for all in the long run. Get on testnet and find out how phasing works and then break it  Grin

Thanks in advance  Smiley
hero member
Activity: 574
Merit: 500
hero member
Activity: 574
Merit: 500
There is a 300BTC buy on the MGW for @ 33xx sats. I think we are being manipulated down so that can get filled.

Im sure it will rebound after that happens  Roll Eyes

About the MGW is there a web page or a service
where users could check the prices (trades) or is the necessary for
users to install some kind of application or NXT wallet ?!

Thanks.


http://multigateway.org/


Also you can check prices at nxtreporting.com

Be sure you have the correct MGW asset ID before buying anything, published by Multigateway. Otherwise, anyone could create a "mgwBTC" asset and then try and sell it to you. If you hadn't checked it had the right ID, you might even buy it  Grin
legendary
Activity: 1736
Merit: 1001
There is a 300BTC buy on the MGW for @ 33xx sats. I think we are being manipulated down so that can get filled.

Im sure it will rebound after that happens  Roll Eyes

About the MGW is there a web page or a service
where users could check the prices (trades) or is the necessary for
users to install some kind of application or NXT wallet ?!

Thanks.


http://multigateway.org/
hero member
Activity: 574
Merit: 500
Why all the talk about price all of a sudden? Nxt is still within the same bounds in the crypto market it has been for a couple of months. Seems strange.
legendary
Activity: 1428
Merit: 1000
At least a big buy wall that would stop the downtrend for some time  Grin Seriously, it looks really like someone manipulates the price in order to get into the buy wall.

There is a 300BTC buy on the MGW for @ 33xx sats. I think we are being manipulated down so that can get filled.

Im sure it will rebound after that happens  Roll Eyes

Well then, thanks God for a wall!! Smiley I hope it just doesn't get pulled when people byte in! Cheesy

He has been waiting for a long time...and tired of waiting....thus the dump  Grin
hero member
Activity: 798
Merit: 1000
Move On !!!!!!
At least a big buy wall that would stop the downtrend for some time  Grin Seriously, it looks really like someone manipulates the price in order to get into the buy wall.

There is a 300BTC buy on the MGW for @ 33xx sats. I think we are being manipulated down so that can get filled.

Im sure it will rebound after that happens  Roll Eyes

Well then, thanks God for a wall!! Smiley I hope it just doesn't get pulled when people byte in! Cheesy
tyz
legendary
Activity: 3360
Merit: 1533
Do you mean something like Nxtreporting.com  Huh
You can see all trades, buy and sell walls regarding mgwBTC asset there.
http://nxtreporting.com/?as=17554243582654188572

There is a 300BTC buy on the MGW for @ 33xx sats. I think we are being manipulated down so that can get filled.

Im sure it will rebound after that happens  Roll Eyes

About the MGW is there a web page or a service
where users could check the prices (trades) or is the necessary for
users to install some kind of application or NXT wallet ?!

Thanks.

tyz
legendary
Activity: 3360
Merit: 1533
At least a big buy wall that would stop the downtrend for some time  Grin Seriously, it looks really like someone manipulates the price in order to get into the buy wall.

There is a 300BTC buy on the MGW for @ 33xx sats. I think we are being manipulated down so that can get filled.

Im sure it will rebound after that happens  Roll Eyes
hero member
Activity: 1110
Merit: 534
There is a 300BTC buy on the MGW for @ 33xx sats. I think we are being manipulated down so that can get filled.

Im sure it will rebound after that happens  Roll Eyes

About the MGW is there a web page or a service
where users could check the prices (trades) or is the necessary for
users to install some kind of application or NXT wallet ?!

Thanks.
Jump to: