Bitcoin Forum
June 21, 2024, 11:15:09 PM *
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 ... 87 »
261  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Nxt Monetary System launched: Now on Nxt Testnet! on: December 17, 2014, 07:45:59 PM
Made my own currency and started minting. To see the monetary system in action is damn cool.

I've not yet figured out how to mint.
Could you maybe explain to less technically adept people (me)?  Grin

How long until it's on the main net?

Depends on how well this test goes, probably.
We've heard no firm dates yet, but maybe the development manager ChuckOne can tell us.
262  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Nxt Monetary System launched: Now on Nxt Testnet! on: December 17, 2014, 07:06:15 PM
i will get some testnet coin , let's see what will happen then

For more info specific to using this release, please keep an eye on https://nxtforum.org/nrs-releases/nrs-v1-4-0e/

It's still in testing, so things are less intuitive than they will be in the stable release.  Smiley
263  Alternate cryptocurrencies / Announcements (Altcoins) / Nxt Monetary System launched: Now on Nxt Testnet! on: December 17, 2014, 04:23:28 PM
Hello people,

Beware Wall-of-Text below...

tl;dr version:
The Nxt Monetary System is a feature so distinct that I think it merits a separate topic.
Wíth the Monetary System, it becomes possible to issue Nxt backed currencies on top of the Nxt blockchain. These currencies can either work as a PoS currency ór a PoW currency.
The currencies are created by "locking" a certain amount of Nxt as collateral for all the coins subsequently released. Below, you can read the several parameters that can be set for these currencies, as well as several possible use cases for this feature of Nxt.

The Monetary System is currently running on the Nxt Testnet, so if you want to have a test drive, and even better: go on a bughunt, please join us and fiddle around with it.

How to use TestNet!
CHECK THIS VERY WELL!

1. Download last NRS release into some folder, say "testnxt". Version 1.4.0e can be found here: https://nxtforum.org/nrs-releases/nrs-v1-4-0e/
2. Unzip the archive, and go to folder testnxt\nxt\conf
3. Edit file nxt.properties: find the string nxt.isTestnet=false, and change it to nxt.isTestnet=true
4. Navigate to testnxt\nxt\, and start run.bat (windows) or ./run.sh (linux).
5. Open http://localhost:6876/ in your browser.
6. Request TestNxt in this thread: https://nxtforum.org/testnet/some-testnxt-to-test-asset-exchange/
7. Happy fiddling (and testing)

Overview

The "Currency" entity is the basic building block of the NXT Monetary System, currency has a unique name and code and uniqueness is guaranteed by the protocol, currencies can be deleted and their code can be reused under certain conditions.

The total currency supply is divisible into currency units. Like assets, currency units supports decimal positions implemented as a client side feature. The maximum number of currency units which can be issued per currency is similar to NXT i.e. 10^9 * 10^8. The actual maximum units supply is set by the currency issuer. The currency issuer is the account which issues the currency and pays the issuance fee. The issuer is responsible for setting the currency properties and in some configurations has additional control over the currency usage. Like asset balance, currency units can be transferred between accounts.

Currency Properties


The currency entity supports several properties. Properties can be mixed and matched in various ways to compose the currency type. The currency type then controls the inner workings of the currency. The list of available currency properties is as follows:
EXCHANGEABLE - the currency can be exchanged with NXT. Holders of the currency can publish an exchange offer specifying the buy and sell rate of the currency much the same as banks or currency exchanges publish their exchange rates . Each account can publish only a single exchange offer at any given time. Exchange offers has an expiry block after which they are no longer in effect. Buyers and sellers can issue exchange requests to match published exchange offers. Unlike asset bid/ask orders, exchange requests are not saved, they are either executed immediately (fully or partially) or not executed at all. A match of exchange offer with a buy or sell exchange request creates an exchange entity which represents the transfer of currency units in return to NXT balance and causes the relevant account balances to update. Issuing an exchange offer reduces the NXT and currency balance of the offer temporary as long as the exchange offer is in effect. Exchange offers also specify the limit on the number of exchanged units which can be larger than the number of units offered. When a buy exchange request matches an exchange offer the number of units offered for sell is reduced and the number of units offered to buy is increased as long as the limit has not been reached. Once the exchange limit of an exchange offer has been reached, This exchange offer can no longer be used.
CONTROLLABLE - currency property suitable for currencies which need to track an external entity. It imposes the following limitations on the currency (1) Currency can be transferred only to/from the issuer account (2) only the issuer account can publish exchange offers. The issuer account can issue a large (practically infinite) supply of units in advance, then transfer units to accounts or offer to exchange units to reflect actual transactions which takes place in an external system. The large supply of units in the issuer account can be used to mimic the effect of creating units out of nowhere to support features such as creating new units and interest payments.
RESERVABLE - currency units are not issued immediately. Instead the currency issuer sets a block height at which the currency is to be issued and a limit of NXT per unit needed in order to issue the currency. Currency "founders" then spend their NXT to reserve their currency stake. If the amount of NXT per unit needed in order to issue the currency is not reserved before reaching the block height the issuance is cancelled and funds are returned minus fees. If the required reserve is allocated, the currency is issued and units are split between founders according to their proportional stake of invested NXT. In case of rounding, leftovers are sent to the issuer account. See below discussion of usage scenarios for Reservable currency.
CLAIMABLE - currency units of resereable currency can later be claimed at the same NXT per unit rate reached when reserving the currency. The ability to claim a currency at a certain rate imposes some practical limits on the rates in which users would want to exchange it. However claimable currency can also be exchanged if only for the purpose of exchanging the whole currency supply so that the currency can be deleted.
MINTABLE - currency can be minted using proof of work algorithms much the same as Bitcoin. Unlike Bitcoin mining, minting currency does not secure the network (this is done by NXT). Minting is used solely for creating new currency units and serve as the only mechanism to increase the number of available units after the currency issuance.
NON_SHUFFLEABLE - this property indicates that in the future this currency cannot participate in coin shuffling. By default currencies are allowed to participate in shuffling.
Properties are combined into an Integer bit mask designated as the Currency type.

Currency Exchange
For exchangeable currency, each currency holder account, can publish a single exchange offer specifying the buy rate and sell rate vs NXT and the number of units she is willing to exchange (which cannot exceed her available currency units and NXT balance). Users can observe all currency exchange offers (intuitively similar to fiat exchange offices) and try to match them with buy/sell exchange requests. An exchange offer has an expiration height as well as a limit on the total number of units which can be exchanged. When units are bought from an exchange offer the number of units to sell increases automatically and vise versa. The publisher can also limit the total transaction volume of currency units traded for a specific exchange offer.

Deleting a Currency
Since the available currency codes are limited to 3, 4 or 5 uppercase letters, the total number of codes is limited to 26^3 + 26^4 + 26^5 - 1 = 12355927 unique values (The code "NXT" is reserved), it is likely that some of these codes will have value by themselves. Therefore deleting a currency is possible under certain conditions depending on the currency type. Users may re-issue or delete a currency and then issue a new currency with the same code but with different properties. In order to delete or re-issue a currency an account must poses all the currency units (and additional conditions apply based on the currency type)

Creating new Currency Units
The only way to create new currency units after issuing a currency is using proof of work minting. Other methods of creating units are susceptible to denial of service attacks and/or sock puppets and are therefore not allowed. The controlable currency type provides a partial solution for creating new units, by allowing the currency issuer account to treat her supply as a treasury and only consider units outside of this account as the total currency supply. This approach requires users to trust the currency issuer which can increase the currency supply at any time.

Minting
Users can issue minting requests in order to mint additional currency units. Each minting request triggers a hash calculation based on the submitted data and the currency hash algorithm. The resulting hash code is compared to the target value derived from the current currency difficulty. Minimal and maximal currency difficulty values and minting algorithm are specified when issuing the currency and cannot be changed later. The expected number of hash calculations (i.e. difficulty) of minting the first unit is 2^minDifficulty while the difficulty of minting the last unit is 2^maxDifficulty. Difficulty increases linearly from min to max based on the ratio between the current number of units and the total supply. Difficulty increases linearly with the number of units minted per CurrencyMint request, small minters can mint only a few units per request while large minters can mint large number of units per request. The number of units per minting request is limited to 1/10000 of the total unit supply. Minting is limited to a single minting transaction per block/account/currency. Currency issuers can specify initial supply of units as a "pre-mint" supply assigned to the issuer account then use crowd funding by making the currency RESERVABLE and EXCHANGEABLE. Once the currency becomes active the delta between the current supply (pre-minted and reserved) and total supply can be minted. The NRS provides a Java based, reference implementation mInter, which can be used for minting. In practice we expect users to enhance this minter to calculate hash codes using their Asics or GPUs, trying to match the current target, and once solving a hash, submit a currency mint transaction (thus paying a fee).
If indeed the hash code is smaller than the target the currency units are credited to the sender account.

Store of Value
The combination of RESERVABLE and CLAIMABLE properties can be used to allocate initial value for a currency by locking NXT. Once the currency is issued the reserved NXT are locked and the only way to release them is to claim back the currency units in return to NXT. This provides the currency a value based on the locked NXT balance. Note: locked NXT do not participate in forging, therefore, in theory its possible that large amount of NXT becomes locked as currency store of value thus reducing the amount of NXT used for securing the network, we are aware of this problem and we'll monitor it closely. We do not expect this to become a major problem any time soon.

Crowd Funding
The combination of RESERVABLE and (not CLAIMABLE) properties can be used for crowd funding, in this configuration the NXT balance reserved by founders, is not locked, instead it is sent to the currency issuer account once the currency becomes active. The issuer can use these NXT for its operations and the founders cannot claim back their currency units, only exchange it based on the published exchange offers.

Fees
Currency issuance fee is based on the length of the currency code.
3 Letters - 25000 NXT
4 Letters - 1000 NXT
5 Letters - 40 NXT
Re-issuing an existing currency with different properties costs 40 NXT regardless of the number of letters. All other currency transaction (as of today) has a fee on 1 NXT.
264  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: December 17, 2014, 10:08:00 AM
NEW EXPERIMENTAL RELEASE: https://nxtforum.org/nrs-releases/nrs-v1-4-0e/

New features:

Monetary System.
Dividend payment transaction.
Delete alias transaction.
Message pattern in AccountInfo.


This is the experimental release to test the new Monetary System major feature.

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

Release 1.4.0e

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

sha256:

9322c03f7e9ddc97278de25a4f14006f00d0c88974c10fabef8d3f031f1aa668  nxt-client-1.4.0e.zip


Change log:

This is the experimental release to test the new Monetary System major feature.
It is enabled on testnet, and those running testnet nodes should upgrade to this
release, even if they don't plan to use the MS features, otherwise will be left
on a fork. This release is also possible to run on main net, but is not to be
considered stable for production use there. The Monetary System block is not yet
defined for main net.


New features:

Monetary System.
See https://bitbucket.org/JeanLucPicard/nxt/issue/205/monetary-system-documentation
for a detailed description.
See https://bitbucket.org/JeanLucPicard/nxt/issue/207/mint-worker-utility for a
description of the MintWorker tool for currency minting.

Dividend payment transaction. Asset issuers can make a dividend payment to all
asset holders with a single transaction. Required parameters are the blockchain
height at which asset holders shares will be counted (must be less than 1440
blocks in the past), and the amount to be paid per share.

Delete alias transaction. The owner of an alias can now delete it completely,
thus making the alias available for anyone to reserve again if desired.

Message pattern in AccountInfo. An account owner can set a regular expression
pattern in the AccountInfo for his account, using the setAccountInfo API.
Once such a pattern has been set, incoming transactions to this account are only
accepted if they contain a plain text message which matches this pattern. The
syntax follows the java.util.regex.Pattern specification.


API changes:

After MS block, adding a public key announcement when sending a transaction to
an account without a public key will be optional.

Added withMessage boolean parameter to getAccountTransactions and
getAccountTransactionIds APIs, to return only transactions having a message
attachment, either non-encrypted or decryptable by the account.

Added optional includeLessors, includeAssets, and includeCurrencies boolean
parameters to getAccount API. Set to false when retrieving those data is not
needed, in order to improve the getAccount performance.

After MS block, sending messages, selling aliases, and leasing balances, to the
Genesis account, will be disallowed.

The popOff debug API now allows pop off of more than max rollback number of
blocks, triggering a full rescan in such case.


Internal changes:

After the Monetary System block, the order in which transactions in a block are
executed will be determined by the block forger, instead of by id, default being
by arrival time at the forger's node.

Improvements in blockchain download to prevent getting stuck on the wrong fork.
Nodes will download blocks in batches of not more than 719 blocks at a time
from a single peer, and after each such batch will verify  with
nxt.numberOfForkConfirmations other peers (default 5) if this is the best
fork, before continuing, unless the downloaded batch is of less than 10 blocks.

Rescan status is now saved in the database, to prevent the database from being
left in an inconsistent state when a rescan fails or is interrupted. Once a
rescan has been scheduled, it will be triggered again at restart, until it
completes successfully.

Improvements in the processing of unconfirmed transactions.

This release will perform a rescan on first start.


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

iQIcBAEBAgAGBQJUkN/4AAoJEFOhyXc7+e2ApfoQAIL+QkyZ1zvFXBy2D+u+onCS
4tzVxDmiCz0RNUvICq8XwNhLHxSt7v5FA22XRvX+tFECCiede0WOnVtK/FcSfpVI
J2mDJMLUQu13esXSUHPBu/yYbJIsD4/2eL71TNEmreXV6Hk65Eo6WErf5S6vovnK
XtAQpdpfziJ6mIeTWM7HxReJL7Ddv3w+l4b3qTESU/4aB16iE+1TFvt7z0lCF7AE
n4+0ZckzngB5SkaTPty7nguwwm9eLsPaqu5NdjEQszAclz8KxEchtRRDXEA3xSBE
FNAmS7qhcDgymR7C3sy/Rbk/dhF7m5hcDm48kyMbJOH/zeR6QoLBm8oSYA42QkaC
Ha9FitjIxUCnVWWui+mpcZEjXfpYqFGR+EoI+/AARbHdi3ezrxcfBFWLaZj96iEG
Lp8dx04kgvNxJoPd4kMHaviKSJG+uaav9/qaMRONq5nN5VcxVRmLqHFuQ1UplVvi
1UBie7hTjPMUTX7S03n+f0bZFMUdz6tSs64qcNBYv4yqMX9ycRrJ9DhvsvYHwFpt
PML1rE4bI6x8oeEOePo4TkoyjFNT1Ngz3x6etblkTrfeZk58uaUYbjzlL3J/OUuG
UIUS/uGyMaWuoaytR4aj8hPI2q2wIRXMKyD92sHDuXoa9u1MwFGoHHa4eOuLrsTt
fDATqlU/6JvTnXUnao7p
=tZtE
-----END PGP SIGNATURE-----
265  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: December 16, 2014, 03:45:36 PM
which way will i obtain profit from lease balance - pool will send me automatically each week ?

With the nxtcrypto pool you need to send a message:

Quote
To claim your earnings, simply send an AM (can be empty or put whatever you want in there) to the pool account 1460178482 and after this AM has 1440 comfirmations, your confirmed earnings will be sent to you, minus NXT transfer fee.

http://pool.nxtcrypto.org/howto.html

You can do this easily within your client by sending an empty message to account NXT-K5KL-23DJ-3XLK-22222 (which is account 1460178482)

ok, thank
so i should send AM before my leasing time time run out or after my leasing period expire

Any time is fine.
They will send the funds when you want even when your lease time has expired Smiley

Do remember that it will take 1440 blocks for them to send this, that's about 1,5 days.
266  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: December 14, 2014, 08:22:49 PM
which way will i obtain profit from lease balance - pool will send me automatically each week ?

With the nxtcrypto pool you need to send a message:

Quote
To claim your earnings, simply send an AM (can be empty or put whatever you want in there) to the pool account 1460178482 and after this AM has 1440 comfirmations, your confirmed earnings will be sent to you, minus NXT transfer fee.

http://pool.nxtcrypto.org/howto.html

You can do this easily within your client by sending an empty message to account NXT-K5KL-23DJ-3XLK-22222 (which is account 1460178482)
267  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: December 14, 2014, 08:19:43 PM
NEW RELEASE

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

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

Release 1.3.5

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

sha256:

53ae6b17052024e7f1b8d1eba898f4e67f7f4ccf5dc80a6edc89aded826c9a76  nxt-client-1.3.5.zip


Change log:

Added getDGSTagCount API, allow getDGSGoodsCount and getDGSPurchaseCount to be
used also to get total goods or purchase counts.

Added completed parameter to getDGSGoodsPurchases, getDGSGoodsPurchaseCount,
getDGSPurchaseCount, getDGSPurchases, to allow querying for completed purchases
only. Added withPublicFeedbacksOnly parameter to getDGSPurchaseCount.

Secondary sort of search results after sorting by relevance, by timestamp if
for any seller, or by name and then by timestamp if for a single seller.

Improved performance of Marketplace page, show counts for goods in stock only.

Increased default purchase delivery deadline to 168 hours (1 week).

Include full peer info in getPeers API if includePeerInfo=true, to avoid having
to do a separate getPeer request for each peer.

Include cumulativeDifficulty in the block JSON.

Allow transaction signing in signTransaction to skip the validation of the
transaction bytes being signed, if an optional validate=false parameter is added.
This would be useful when signing transaction bytes on a machine that doesn't have
the full blockchain downloaded, which normally prevents validation.

Allow sending messages with no recipient.

Automatically blacklist peers with version older than 1.2.0.

UI improvements of the API /test page.

Changed nxt-default.properties to enable MVCC by default, to avoid database lock
timeout errors.

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


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

iQIcBAEBAgAGBQJUjemsAAoJEFOhyXc7+e2AwEUQANRwB9y5VUSwehTGJNMQZBm1
OS4cdXTZaWK9KkpIjoxv9qtbVhs0wb6zxZa3czLKVycB/DSENn0mTPldO5qXAYwh
5jV7iGT5+eQf//1+4FrV08Ha7IM0Dd2HbhP4hRMkbVLVLpfWgcMaCubsEgxImZqe
ySi8g0gsXn8hA9xERq2P439bdEo8rc6u9U4dsgBrAPEsN9Abing58WfLt41TzPgZ
9D+lKgUEgXfdoWyT0Km6S3OzLa97YkS8IzvpFgvVERNZSli1VX0+UYND/FNMW/ux
JtpN6U8y7REps9IUQSASlXeNe8wDu9/w9wq9pUmyOIQWBy3wcVkP4UBH970tBmhq
mD6rtX9weqEQxC5ygYwwi9ur2/F8dlxmowUv55N44/1CthdxFYTTKRstpIBncwPP
FFmviuZgfuDCu55f5rx1yJ6RsGcOgX/MpNBB0Nd3VBvLLMyt3eTtzelhRB7wRa4b
/xepB7v/G+WUDWWPAJMhDKBzcF/lihSwgRr/qJe+RVEipIP8+NHVCp4u+jWj3pdk
1SFBAO9wuSbkY4eJxTT8FbHIvYadZ/zISY5R8V/zhBDYNvJsiB9zO5NqmMA2aB0L
5Hwb5zlnGS0fHHJV1RvJBpFtopqFhjT8Z9nUVzZvRnVzLr6CG1lgG+HxXsZH76D3
3OBrfMYB5ylzqu7mFPy0
=ye+5
-----END PGP SIGNATURE-----
268  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: December 13, 2014, 11:40:05 AM
recommend me some nxt forging pool

https://nxtforum.org/leasing-pools/ < gives an overview of available pools.

Nxtcrypto is a good one, I agree Smiley
269  Alternate cryptocurrencies / Altcoin Discussion / Re: NXT vs BitsharesX on: December 12, 2014, 12:00:06 PM
IMO NXT is aimed more at the cyptocurrency community, with the new Monetary System designed to allow altcoins to be built on top of NXT quite easily.

Bitshares is aimed more at the world outside of the crypto community with support for the digital dollar and other pegged currencies.

Why make this distinction at all? It's not really a valid one.
If the crypto community has any future, it will be by merging into commerce anyway, so this point is rather moot in the long term. Smiley

Also, the MS is nót aimed at creating alt-coins at all. It's aimed at creating tokens that have many other uses beyond being "coins", just as the Asset Exchange is not aimed at creating "shares", but rather at creating easily trading tokens of another kind.

Don't mistake the label for the substance.
270  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: December 10, 2014, 10:34:48 AM
Stuck on 1.3.1

Every time I open my wallet I get a message recommending an upgrade from my current version 1.3.1 to 1.3.4.
But when I download the upgrade and reopen the wallet it reverts to 1.3.1. Can anyone please offer some advice?


Do you use the windows client from http://nxtra.org/nxt-wallet/? It Includes 1.3.1 and the auto-update feature didn't work for me too!

I finally gave up and downloaded the supernet client. It's working well!  Grin

But you can also run the original client very easy, because you have already java installed:
Download the latest version from nxtforum.org banner. Compare the hashes. Unpack to c:\nxt. Start run.bat. Open internet explorer and go to "localhost:7876". Wait until the blockchain downloaded. Enjoy.

Many thanks for the advice. At least I know that the update feature is broken. But I really don't want to run a wallet in a browser. Paranoid no doubt. But I don't feel comfortable leaving it open, and in any case I clear it every time I visit a web page. So I'll stick with the outdated wallet until a new version is made available to download.

Why not use: http://www.mofowallet.com/

It's completely up to date, even offers a wallet.dat function, you can use it to check your account without even entering the phrase if needed etc. Smiley
Seems like just the thing you are looking for.
271  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: December 06, 2014, 04:07:06 PM
For those not able or willing to attend the Expo, here is my talk: https://www.youtube.com/watch?v=eEcU-Whfc7g&feature=youtu.be

Hej Bas,

its realy nice to see how you growing with NXT too  Grin  , if we take a look to the first NXT community update videos and to the videos now there is a big(huge) diffrenz  Cheesy ,  one another year and we will see you only in suites  Grin ,  dont get me wrong ,  i like that! and the transformation shows how NXT is growing more and more.

But pls! dont change your mind and remember where you come from!

Best Regards Bas!!!  Wink we believe in you.!

Thanks for your kind words Smiley
I am lucky enough to finally have the equipment to make quality possible. That's half the work right there: tools.

Don't worry about me changing all that much. I'm a means to an end guy. Don't look all that sharp in a suit, but will wear one if needed.

Presentations are fun, though. I get to be on stage again, and after 15 years in the theatre, that's just what I love to do Smiley
Expect more videos in the future.
272  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: December 06, 2014, 12:01:11 AM
For those not able or willing to attend the Expo, here is my talk: https://www.youtube.com/watch?v=eEcU-Whfc7g&feature=youtu.be
273  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Pre-ANN][NOXT] - NobleNXT Proposal/Whitepaper - Noble's 1st Colored Coin on: December 02, 2014, 11:28:55 AM
Just want to wave to y'all from the Nxt side and congratulate you on your project Smiley

Looking forward to seeing all your plans bear fruit!
274  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: November 25, 2014, 10:38:23 PM
https://blog.ethereum.org/2014/11/25/proof-stake-learned-love-weak-subjectivity/

Nice article by Vitalik Buterin about PoS.

275  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: November 24, 2014, 12:02:28 PM


 Grin

Happy bidet, Nxt!

276  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: November 20, 2014, 03:00:07 PM
Release 1.3.4

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

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

Release 1.3.4

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

sha256:

1ea2e9f1241fc5e64bf55b58058c8937ece0c558e06d0ab0c163e5270a362965  nxt-client-1.3.4.zip


Change log:

This release is focused on improving the Nxt Marketplace (Digital Goods
Store) by adding search and browse capabilities.

Implemented full text search using the Lucene library, as supported by H2.
Table columns currently indexed are asset.name, asset.description,
goods.name, goods.tags, goods.description. A rebuild of the search index
can be forced using the luceneReindex debug API.

The full text search query parameter supports the standard Lucene syntax, which
makes AND, OR, phrase queries, or wildcard queries possible. The default
query operator is OR, to do an AND search need to specify AND between keywords
explicitly.

Added searchAssets API which takes a query parameter and returns assets
having name or description matching the query.

Added searchDGSGoods API which takes a query parameter and returns goods
having name, tags, or description matching the query. The results can also
be restricted to a specific seller, goods in stock only, or goods with a
specific tag only.

getDGSPurchases API now takes an optional withPublicFeedbacksOnly parameter.
If true, results are filtered to include only purchases with public feedbacks.

Added getDGSGoodsPurchases API to retrieve purchases for a specific goods,
optionally those with public feedbacks only.

Added getDGSTags API returning all DGS Goods tags, sorted by number of goods
in stock with that tag and total number of goods with that tag. Takes an optional
inStockOnly parameter, default true, to retrieve tags for goods in stock only.
At most three tags per goods are used, tags longer than 20 characters or shorter
than 3 are ignored, and the parsing of tags is done using the Lucene
StandardAnalyzer.

Show purchase counts and public feedback counts in all API responses returning
Goods JSON, unless includeCounts parameter is false.

Include total numbers of Goods, Purchases, and Tags in the getState API.

Added getAccountAssetCount, getAliasCount, getDGSGoodsCount,
getDGSGoodsPurchaseCount, getDGSPurchaseCount APIs, to be able to retrieve the
corresponding total counts directly.

To populate the tags table in the database, a blockchain rescan will be done at
first start.

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


UI changes:

The Marketplace page now shows a listing of tag keywords, ordered by number of
goods in stock with that tag. Clicking on each tag brings the list of goods
having that tag. Searching for goods is now possible using keywords from the
goods name, description, or tags. The list of goods also display the number of
completed purchases, and for goods with a public feedback available, a link to
display that feedback.



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

iQIcBAEBAgAGBQJUbftbAAoJEFOhyXc7+e2AmnIP/3/ZUPGZt2QiTnJ/OEoJRWlq
WyYF19IewwTsof+uDyCNLbCCv/RQ98VGbFXOoRABQ/O/Nr3+Z9zP6d7eilRtUN19
E0OvOnbsy5ez38WRl93gmGjDyGkr0PaUVsDMsiWTH77JQ4DIlDEY9sigq79IlcMA
Wplf/3sg1ImFteFxfNwkbJCCZQ/dha8MgHAUOoWC3ALasGfbhiib4FbFptbZIP9y
0yToYZewAc3TXkXdN1pjGLaGTRiE9EjavBYyb2B9aEXO0Ienp1CG9gJ2bmayKOw2
nMxoVVBe8SwgY9FNa2mXhHw2EDYYaG2IlMKARnBzH5w41OYaLEj6h3xcakFefOR8
N3qTAybMuJcv27BVEjtgKJPv2f7d/9+tFwSK8sZaCR6SlbApeEqNpaAucuIXcq7R
Oea//f1ibq6VvAWfhUKRxS1RDpmzitOv+qup6lqpJWuM2yNY3mSD7rZShnSttSvz
8WbJ7Eh6lMJl6N4dTWW9+msR+9giW1ijIDfHnB1utFH3/4Y8RawS0QK385mZzofs
H3bhDzkoiP/0inKj3ePxosrrNeiRwXq+2NWY9YiWhYfzt9FJ2HJnCt2ja87yNDnV
3hDVhpdc8dYGvtQctnjxJ7Y0QS9x/99z3FtgHjyuunA97Eaf38SQNmKm849lr4ca
2HEOxB43JL7O29tWOhLV
=DEBV
-----END PGP SIGNATURE-----
277  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: November 20, 2014, 02:09:30 PM
http://www.theregister.co.uk/2014/11/20/lohan_sponsor_nxt/?mt=1416492571138
278  Alternate cryptocurrencies / Altcoin Discussion / Re: Invest in OpenBazaar? on: November 19, 2014, 03:48:31 PM
Are we getting our own Moneroman in Nxt now? Sad
279  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NXT] Nxt - Official Thread on: November 17, 2014, 07:06:35 PM
First update on development of our upcoming MMO Lyth!
280  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: MMO Project Lyth. Let's Build an Emergent Trade Game on the Blockchain on: November 17, 2014, 07:05:46 PM
Our fundraiser is over.
Thanks to everyone who believes in the project.

Here is a first update on the development of the game.
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 ... 87 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!