Bitcoin Forum
May 09, 2024, 10:16:41 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: 1 2 3 4 5 [All]
  Print  
Author Topic: Nxt Monetary System launched: Now on Nxt Testnet!  (Read 8436 times)
Damelon (OP)
Legendary
*
Offline Offline

Activity: 1092
Merit: 1010



View Profile
December 17, 2014, 04:23:28 PM
Last edit: December 17, 2014, 04:42:17 PM by Damelon
 #1

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.

Member of the Nxt Foundation | Donations: NXT-D6K7-MLY6-98FM-FLL5T
Join Nxt Slack! https://nxtchat.herokuapp.com/
Founder of Blockchain Workspace | Personal Site & Blog
The trust scores you see are subjective; they will change depending on who you have in your trust list.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Istanbul34
Full Member
***
Offline Offline

Activity: 232
Merit: 100


View Profile
December 17, 2014, 04:34:54 PM
 #2

This release will definitely change the Cryptocurrency landscape.
barbierir
Hero Member
*****
Offline Offline

Activity: 515
Merit: 502



View Profile WWW
December 17, 2014, 04:40:16 PM
 #3

It is one of those things that you don't know exactly what it will be good for but, at the same time, you sense that it's great and that people will find many ingenious and useful applications  Cool  crowdfunding is only the first one

◈▣ KOMODO ● Set Your Ideas Free ▣◈
.......AN ECOSYSTEM FOR NATIVE BLOCKCHAINS.......
Blockchain Generator | Decentralized Crowdfunding | Decentralized Exchange | Bitcoin Security | Zero-Knowledge Proofs | Blockchain Interoperability | Scalable Infrastructure
habraken
Sr. Member
****
Offline Offline

Activity: 251
Merit: 250


View Profile
December 17, 2014, 05:42:41 PM
 #4

Use for loyalty points/tokens? Smiley
Less technical skills required than when you have to create/clone your own crypto.
Hollowman338
Legendary
*
Offline Offline

Activity: 1246
Merit: 1000



View Profile
December 17, 2014, 05:51:00 PM
 #5

Why not just use NXT itself?  What utility will this feature provide?
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
December 17, 2014, 06:05:10 PM
 #6

Why not just use NXT itself?  What utility will this feature provide?

Decentralization2
tyz
Legendary
*
Offline Offline

Activity: 3360
Merit: 1531



View Profile
December 17, 2014, 06:57:03 PM
 #7



NXT is pure innovation!
fullhouse
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250


View Profile
December 17, 2014, 07:01:57 PM
 #8

i will get some testnet coin , let's see what will happen then

Damelon (OP)
Legendary
*
Offline Offline

Activity: 1092
Merit: 1010



View Profile
December 17, 2014, 07:06:15 PM
 #9

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

Member of the Nxt Foundation | Donations: NXT-D6K7-MLY6-98FM-FLL5T
Join Nxt Slack! https://nxtchat.herokuapp.com/
Founder of Blockchain Workspace | Personal Site & Blog
fullhouse
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250


View Profile
December 17, 2014, 07:12:58 PM
 #10

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
thanks , will join the communication soon

crimi
Full Member
***
Offline Offline

Activity: 147
Merit: 100


View Profile
December 17, 2014, 07:21:27 PM
 #11

Made my own currency and started minting. To see the monetary system in action is damn cool.
sniveling
Sr. Member
****
Offline Offline

Activity: 719
Merit: 250


View Profile
December 17, 2014, 07:31:37 PM
 #12

How long until it's on the main net?
martismartis
Legendary
*
Offline Offline

Activity: 1162
Merit: 1005


View Profile
December 17, 2014, 07:45:38 PM
 #13

Just reposting from nxt forum:

GJ devs, open node here:

http://5.196.1.215:6876/index.html

If you want to play with it but don't have the time to setup one.
Damelon (OP)
Legendary
*
Offline Offline

Activity: 1092
Merit: 1010



View Profile
December 17, 2014, 07:45:59 PM
 #14

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.

Member of the Nxt Foundation | Donations: NXT-D6K7-MLY6-98FM-FLL5T
Join Nxt Slack! https://nxtchat.herokuapp.com/
Founder of Blockchain Workspace | Personal Site & Blog
BitSwe
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
December 17, 2014, 07:46:12 PM
 #15

Cool, I'll keep my eyes on this one ...
Labteck
Sr. Member
****
Offline Offline

Activity: 311
Merit: 250


View Profile
December 17, 2014, 07:57:21 PM
 #16

Cool! when will go real NXT?

▄████████████████████████████████████████████████████████▄
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
████████████████████  █████████████████████████████████████
███████████████████  ██████████████████████████████████████
██████████████████  ███████████████████████████████████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
 ▀███████████████████████████████████████████████████████▀
       VIORCOIN[by_conty] ▄████████████████████████████████████████████████████████▄
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
████████████████████  █████████████████████████████████████
███████████████████  ██████████████████████████████████████
██████████████████  ███████████████████████████████████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████
 ▀███████████████████████████████████████████████████████▀
        Make International Calls
      Cheap and More Secure
th4o
Member
**
Offline Offline

Activity: 588
Merit: 10


View Profile
December 17, 2014, 07:59:37 PM
 #17

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.


Have a look at the config file. There's a section for minting. After that start minter.sh/bat

It's quite easy Smiley
McDoxy1
Full Member
***
Offline Offline

Activity: 134
Merit: 100


View Profile
December 17, 2014, 09:05:54 PM
 #18

Very cool Smiley
Damelon (OP)
Legendary
*
Offline Offline

Activity: 1092
Merit: 1010



View Profile
December 17, 2014, 09:10:26 PM
 #19

OK, for those confused by "minting"

You need to fill out the following in nxt-default.properties file

#### MINT ####

# Address of the NXT server to which the mint worker submits its transactions (default: localhost)
nxt.mint.serverAddress=localhost

# Specify a mintable currency code
nxt.mint.currencyCode=Coin shortcode

# Secret phrase for the minting account, this secret phrase is sent to the host specified by
# nxt.mint.serverAddress therefore do not specify secret phrase of an account with lots of funds
nxt.mint.secretPhrase=your passphrase

# Number of units to mint per transaction
# The minting difficulty grows linearly with the number of units per mint
nxt.mint.unitsPerMint=1 < no idea exactly what does yet. I left it at 1.

# The initial nonce used for minting
# Set to 0 to start with a random nonce
nxt.mint.initialNonce=0 < left this at 0, too

# Number of concurrency threads used for minting
# Set to 0 allocate one thread per processor core
nxt.mint.threadPoolSize=0 < same

# When set to false mint transactions are not submitted when a hash is solved.
# Set this value to true to perform actual minting
nxt.mint.isSubmitted=true

You then, with Nxt running, need to run either mint.bat or mint.sh.

And voila, you are minting.

If anyone can tell us more about the parameters, that would be nice.  Smiley

Member of the Nxt Foundation | Donations: NXT-D6K7-MLY6-98FM-FLL5T
Join Nxt Slack! https://nxtchat.herokuapp.com/
Founder of Blockchain Workspace | Personal Site & Blog
Equate
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


View Profile
December 17, 2014, 09:14:42 PM
 #20

NXT never ceases to amaze me , good job guys.
stenkross
Sr. Member
****
Offline Offline

Activity: 330
Merit: 250



View Profile
December 17, 2014, 09:40:01 PM
 #21

Interesting
Damelon (OP)
Legendary
*
Offline Offline

Activity: 1092
Merit: 1010



View Profile
December 17, 2014, 09:59:06 PM
 #22

UPDATE

https://nxtforum.org/nrs-releases/nrs-v1-4-1e/

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

Release 1.4.1e

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

sha256:

2777a11b701170d7decc01bb82a9049abc37bd293374f852d1810c8195d9842b  nxt-client-1.4.1e.zip


Change log:

This is a bugfix release following 1.4.0e.

Fixed Currency Exchange Booth not working. Fixed currency decimals issue.

Fixed minor bugs in MS transaction validation.

Show total alias count in aliases page. Alias deletion and dividend payment
UI fixes.


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

iQIcBAEBAgAGBQJUkfhFAAoJEFOhyXc7+e2AlyQQAOUQHpZc+03kvf0aVQIy45oU
XtHKlt98PwjSKW0MdzyKXXTohdMFTHKR3vvaSRMFqVu+Bvf8ZCL1liLD/J0kidO9
E2AxCvcvAnNKwcNlJQPZjLsboR7aACHG1qwrICOXYeYuBBLrqlUx6UuPjFZdBHXB
BszYDcxpIZ8thUwa/dPhTVdq9Q0AmKoPMME/Jq0OH2tfM3SJEMRI4NkWQbQ8YjmB
1xCt8Z2aplKIJGYmo8pvxZBXvo52N277EKXBnZfn55LoHjIQL3hX4WMBc3GwshhA
9mvJNyMsS4ZTRREH2ZjwiVsu2p+sZ53JBzwhXSpzm2R6LoUrrVA9E6h0ZzKWSj/c
yFvkZjAvGobmmZ6a1kzAiRGKLildkpS2CIDOyy32NMHL9yu538jbbmMvtVVAr1oM
uZehyJxwym+49t0F6dtjwj60nbfYgJoEjXcdidyby+0AQOBHcx+uvhz1easxtsMd
1SgkJ77EdwntK1hXM1Dkx24vA6jABkjihZyBMn3IKQvaSToZFRPe9RXMdqtu+Or6
QmAoXuvy+65I361J6m0wbB1yFvpTgPlOdBAnRr/rx85v3Z+QnNBm6ApmIirINNy7
hRtsvdv6REnI/L8MJdjyGV63nfsuOFqiP32I50cy8XhiO87Cxtpr1SZCHXyk6t5V
iO9Z9Cznf748wQC1TW3u
=TfLA
-----END PGP SIGNATURE-----

Member of the Nxt Foundation | Donations: NXT-D6K7-MLY6-98FM-FLL5T
Join Nxt Slack! https://nxtchat.herokuapp.com/
Founder of Blockchain Workspace | Personal Site & Blog
bitcoinpaul
Hero Member
*****
Offline Offline

Activity: 910
Merit: 1000



View Profile
December 17, 2014, 10:01:15 PM
 #23

Interesting

Indeed.
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 17, 2014, 10:23:57 PM
 #24

I would like to see people breaking the testnet!
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 17, 2014, 10:27:34 PM
 #25

Why not just use NXT itself?  What utility will this feature provide?

Different properties than NXTs.
Different use-cases than NXTs.
Diversification.

Ah yes, and brings a bit of sidechain flair to Nxt. Wink
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 17, 2014, 10:30:44 PM
 #26

Use for loyalty points/tokens? Smiley
Less technical skills required than when you have to create/clone your own crypto.

Exactly. Have a read here: http://nxter.org/nxt-for-financial-experts-local-groups-and-cryptofans/
frohlocke
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
December 17, 2014, 10:43:42 PM
 #27

This should put NXT on everybodies radar!
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 17, 2014, 10:46:43 PM
 #28

This should put NXT on everybodies radar!

Indeed. I would love to know what entrepreneurs will make out of it. They always come up with some crazy ideas no computer scientist and programmer could have come up with.
Kora
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
December 17, 2014, 10:47:35 PM
 #29

Exciting times!

ORA will be launching as an MS currency in the not too distant future!

For details, and to join in the discussion please follow the links in my signature!

All are welcome!!

Patrik90
Member
**
Offline Offline

Activity: 65
Merit: 10


View Profile
December 17, 2014, 10:48:29 PM
 #30

This is incredible !! NXT is the most innovative coin ever Smiley
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 17, 2014, 10:50:50 PM
 #31

ORA will be launching as an MS currency in the not too distant future!

Oh, I did not know that. How come?

What do you further plan on top of ORA? Will it have some special properties?
PL_CoinTrader
Full Member
***
Offline Offline

Activity: 226
Merit: 100



View Profile
December 17, 2014, 11:01:58 PM
 #32

wow. this looks so promising. Amazing work guys!

DISCIPLINA — The First Blockchain For HR & Education
From core developers of Cardano, PoS minting, unique Web Of Trust & Privacy algorithms. Be the first, join us!
  WEBSITE  TELEGRAM  ANN  BOUNTY  LINKEDIN  WHITEPAPER  Referral Program 5%
Kora
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
December 17, 2014, 11:05:07 PM
 #33

Exciting times!

ORA will be launching as an MS currency in the not too distant future!

For details, and to join in the discussion please follow the links in my signature!

All are welcome!!

Oh, I did not know that. How come?

We decided that MS system has everything we needed, and no real disadvantages.

At the moment we're working on a proposal suggested by coinsolidation (bitmark dev) to let holders of dead & dying alt coin 'burn' their coins in exchange for ORA coins.

ORA has been trading on the NXT AE for some time now, but ORA stakes were initially distributed for FREE or in exchange for people contributing effort, and we want to continue with that 'vibe', and letting alt coin holders burn effectively worthless coins in exchange for ORA lets us increase our community size, and it doesn't require us taking money from people, but does offer a method that prevents abuse. It might also compensate some people in a small way for 2014 losses.

There's still a lot of details to work out, and we welcome opinions from ALL comers!

ORA community is very small, but still active Smiley

Daedelus
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
December 17, 2014, 11:07:36 PM
 #34

Chuck, am I right to think that other properties can be added in the future? Depending on what people want/dream up?
abuelau
Hero Member
*****
Offline Offline

Activity: 750
Merit: 500


www.coinschedule.com


View Profile
December 17, 2014, 11:14:05 PM
 #35

This is very exciting! Even my grandmother can create a new and secure crypto currency now.

Excellent work! Smiley

Know what's happening in cryptoworld: www.coinschedule.com
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 17, 2014, 11:21:14 PM
 #36

This is very exciting! Even my grandmother can create a new and secure crypto currency now.

Excellent work! Smiley

Haha, exactly. Let me know when she does. Wink
Kora
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
December 17, 2014, 11:21:24 PM
 #37

ORA will be launching as an MS currency in the not too distant future!

What do you further plan on top of ORA? Will it have some special properties?

We're still working on that, and actively taking suggestions. The core ORA team have been brain storming for quite a while, and it's like our holy grail, "what will people use ORA for, what problems does it solve, how does it make people's lives better?".

We're working on the assumption that we don't necessarily have to have all the answers before we proceed, as long as it's really really obvious to everyone that we're NOT a scam or joke, and so investing time & effort into ORA isn't going to be a bad experience. I think after more than 6 months, with no IPO/ICO etc it should be obvious that we're serious about this project, and our invitation to everyone and anyone to join ORA is sincere.

We don't have ALL the answers (or even the majority of them) but we have built a decent community framework so far, and that gives me confidence that over time new people will join ORA, and some of those people WILL have great ideas!!

ORA is a starfish, no leader, just a trajectory Smiley

riceberry
Hero Member
*****
Offline Offline

Activity: 491
Merit: 500



View Profile
December 17, 2014, 11:23:56 PM
 #38

very cool and exciting Smiley
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 17, 2014, 11:26:08 PM
 #39

Chuck, am I right to think that other properties can be added in the future? Depending on what people want/dream up?

That is true. However as with every decentralized currency (which those Nxt Currencies will be), they start with a social contract. That is, people will only have faith in the newly created currency when they can trust the stability and adherence to the social contract of the currency.

Currencies of the MS are not supposed to change once they are created AND in production.

Only new currencies would enjoy new properties later introduce than those initial ones.


But yes, people are free to suggest and to shape the decentralized nature of the Nxt economy platform.
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 17, 2014, 11:28:16 PM
 #40

Exciting times!

ORA will be launching as an MS currency in the not too distant future!

For details, and to join in the discussion please follow the links in my signature!

All are welcome!!

Oh, I did not know that. How come?

We decided that MS system has everything we needed, and no real disadvantages.

Nice. That would I call a satisfied customer!

Credits go to the devs.

At the moment we're working on a proposal suggested by coinsolidation (bitmark dev) to let holders of dead & dying alt coin 'burn' their coins in exchange for ORA coins.

ORA has been trading on the NXT AE for some time now, but ORA stakes were initially distributed for FREE or in exchange for people contributing effort, and we want to continue with that 'vibe', and letting alt coin holders burn effectively worthless coins in exchange for ORA lets us increase our community size, and it doesn't require us taking money from people, but does offer a method that prevents abuse. It might also compensate some people in a small way for 2014 losses.

There's still a lot of details to work out, and we welcome opinions from ALL comers!

ORA community is very small, but still active Smiley

Yes, the social contract of ORA will be very important for its future.
msin
Legendary
*
Offline Offline

Activity: 1470
Merit: 1004


View Profile
December 17, 2014, 11:28:59 PM
 #41

This is going to be the most interesting Nxt feature thus far, truly unique and a thousand possibilities.  Can't wait to try it out (updating TestNet client)
mkmen
Full Member
***
Offline Offline

Activity: 157
Merit: 100



View Profile
December 17, 2014, 11:29:50 PM
 #42

Crowdfunding in completely transparent and decentralized way? Sounds like a great use case to me, more ideas will come, I'm sure.

I don't really understand the PoW minting inside PoS currency, but hey, old habits die hard I guess.
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 17, 2014, 11:30:12 PM
 #43

ORA will be launching as an MS currency in the not too distant future!

What do you further plan on top of ORA? Will it have some special properties?

We're still working on that, and actively taking suggestions. The core ORA team have been brain storming for quite a while, and it's like our holy grail, "what will people use ORA for, what problems does it solve, how does it make people's lives better?".

We're working on the assumption that we don't necessarily have to have all the answers before we proceed, as long as it's really really obvious to everyone that we're NOT a scam or joke, and so investing time & effort into ORA isn't going to be a bad experience. I think after more than 6 months, with no IPO/ICO etc it should be obvious that we're serious about this project, and our invitation to everyone and anyone to join ORA is sincere.

We don't have ALL the answers (or even the majority of them) but we have built a decent community framework so far, and that gives me confidence that over time new people will join ORA, and some of those people WILL have great ideas!!

ORA is a starfish, no leader, just a trajectory Smiley

I look forward to your suggestions and conclusions. I guess ORA could be a blueprint currency when MS is released on the mainnet. Others could be inspired for their own currencies.
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 17, 2014, 11:35:39 PM
 #44

Crowdfunding in completely transparent and decentralized way? Sounds like a great use case to me, more ideas will come, I'm sure.

Indeed. People should know about this. I wrote an [img=http://nxter.org/nxt-for-financial-experts-local-groups-and-cryptofans/]http://article[/img] but I think we need to address directly the people who need such a crowdfunding platform. There are so many people out there and when I talk to them and explain all of this, they simply say:

"Why does nobody know about this?"

And I am like: "??" I do not know what to answer then.

I don't really understand the PoW minting inside PoS currency, but hey, old habits die hard I guess.

Cheesy Sure but all people are welcome.
freenxt.org
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
December 17, 2014, 11:57:09 PM
 #45

Very nice, I have to get some more testnet to test it out now!
youyou_
Hero Member
*****
Offline Offline

Activity: 596
Merit: 500


View Profile
December 18, 2014, 12:20:01 AM
 #46

hope this will point that NXT is very superior to many coins
lucky88888
Sr. Member
****
Offline Offline

Activity: 404
Merit: 250


https://nxtforum.org/


View Profile
December 18, 2014, 12:24:50 AM
 #47

interesting, will test to see how its like!

Fuck Mt.Gox! Fuck Mintpal! Fuck Bter! FUCK kyc! Protect yourself use MGW! SUPERNET!
Recommended ASSET ->InstantDex : Lead Dev Jl777 (decentralized multi currency instant exchange)
Recommended ASSET -> Jinn : Lead Dev Come-from-Beyond (ternary processors!)
https://nxtforum.org/news-and-announcements/(ann)-jinn/
ThomasVeil
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
December 18, 2014, 12:33:06 AM
 #48

This is going to be the most interesting Nxt feature thus far, truly unique and a thousand possibilities.

My thought too! Hope it is flexible enough so that the MS coins can get unique features and innovations.
Curious to see the POW system working.
foxbitcoin
Sr. Member
****
Offline Offline

Activity: 593
Merit: 250



View Profile
December 18, 2014, 12:41:34 AM
 #49

Very nice ,That really is HUGE
Juicemixer
Member
**
Offline Offline

Activity: 82
Merit: 10


View Profile
December 18, 2014, 12:48:18 AM
 #50


At the moment we're working on a proposal suggested by coinsolidation (bitmark dev) to let holders of dead & dying alt coin 'burn' their coins in exchange for ORA coins.


I have so many worthless coins to burn. If you pull this off I'll be all over this ORA coin.
Kora
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
December 18, 2014, 01:09:37 AM
 #51


At the moment we're working on a proposal suggested by coinsolidation (bitmark dev) to let holders of dead & dying alt coin 'burn' their coins in exchange for ORA coins.


I have so many worthless coins to burn. If you pull this off I'll be all over this ORA coin.

Great attitude, music to my ears Smiley

freenxt.org
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
December 18, 2014, 02:19:51 AM
 #52

This is going to be awesome. I am already preparring. Please dont release before 2015 so I can enjoy new years eve and family before all the squatting starts Cheesy
slothbag
Sr. Member
****
Offline Offline

Activity: 369
Merit: 250



View Profile
December 18, 2014, 03:04:58 AM
 #53

Very interesting concept.. Nxt is still searching for its niche in the crypto world, with so many features its bound to find one soon!
msin
Legendary
*
Offline Offline

Activity: 1470
Merit: 1004


View Profile
December 18, 2014, 04:25:45 AM
 #54

Very interesting concept.. Nxt is still searching for its niche in the crypto world, with so many features its bound to find one soon!

That's a very good point.  I think the success of Nxt AE has filled a void but I expect MS to really take off, it's an original BCNext idea.
LiQio
Legendary
*
Offline Offline

Activity: 1181
Merit: 1002



View Profile
December 18, 2014, 05:36:57 AM
 #55

Just reposting from nxt forum:

GJ devs, open node here:

http://5.196.1.215:6876/index.html

If you want to play with it but don't have the time to setup one.


Cool, thanks!

(As a reminder, don't use your real password testers)
Daedelus
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
December 18, 2014, 08:04:15 AM
 #56

@ChuckOne

Cool. I have a suggestion for a new property, someone was asking about it on Nxtforum. We have provision for those that want a POW coin but someone asked about POS+Inflation i.e. the supply is inflated at a set (or variable I suppose, like BTC) rate over time. I don't like inflation coins (I don't like POW either  Grin) but lots of other people do.

So, does MS currently cover the scenarios:

1a) "I want a POS coin that has 1min blocktime, each block issues new coins that give an annual percentage inflation of X%"

and

1b) "I want a POS coin that has 1min blocktime, each block issues new coins that give an annual percentage inflation of A% for the X years, then reducing A-B% for the next Y years." < option of variable or linear reductions rate would probably be good


I looked at the spec and I didn't think it did. Maybe a the first new property after initial release?
Este Nuno
Legendary
*
Offline Offline

Activity: 826
Merit: 1000


amarha


View Profile
December 18, 2014, 09:53:35 AM
 #57

Awesome stuff!

Looking forward to ORA on the MS too.  Smiley
ShroomsKit_Disgrace
Legendary
*
Offline Offline

Activity: 952
Merit: 1000

Yeah! I hate ShroomsKit!


View Profile
December 18, 2014, 10:31:45 AM
 #58

This could be huge for cryptos.
qqNxt
Full Member
***
Offline Offline

Activity: 468
Merit: 100



View Profile
December 18, 2014, 12:29:45 PM
 #59

Did someone say decentralized crowd funding platform?

You can say that again!  Grin
NoobKidOnTheBlock
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


FLY DONATION ADDRESS IN SIGNATURE


View Profile
December 18, 2014, 03:19:26 PM
 #60

So is this pretty much a way to make your own coins? or what is the deal with this?

 

▇▇▇

▇▇


▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇▇
...
............NoobKidOnThe.BLOCK.....
 
LiQio
Legendary
*
Offline Offline

Activity: 1181
Merit: 1002



View Profile
December 18, 2014, 03:27:06 PM
 #61

So is this pretty much a way to make your own coins? or what is the deal with this?

Excactly, issue your own currency. Secured by the NXT network.

In depth info here: https://bitbucket.org/JeanLucPicard/nxt/issue/205/monetary-system-documenation
NoobKidOnTheBlock
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


FLY DONATION ADDRESS IN SIGNATURE


View Profile
December 18, 2014, 03:27:52 PM
 #62

So is this pretty much a way to make your own coins? or what is the deal with this?

Excactly, issue your own currency. Secured by the NXT network.

In depth info here: https://bitbucket.org/JeanLucPicard/nxt/issue/205/monetary-system-documenation
Thanks I have an amazing idea for a coin and had no idea how to make one so I will be on top of this one for sure Smiley Cheers Mate Wink

 

▇▇▇

▇▇


▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇▇
...
............NoobKidOnThe.BLOCK.....
 
msin
Legendary
*
Offline Offline

Activity: 1470
Merit: 1004


View Profile
December 18, 2014, 04:12:56 PM
 #63

So is this pretty much a way to make your own coins? or what is the deal with this?

Excactly, issue your own currency. Secured by the NXT network.

In depth info here: https://bitbucket.org/JeanLucPicard/nxt/issue/205/monetary-system-documenation
Thanks I have an amazing idea for a coin and had no idea how to make one so I will be on top of this one for sure Smiley Cheers Mate Wink

Make sure you read the documentation on the different options for coin creation, it allows some very interesting scenarios.
NoobKidOnTheBlock
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


FLY DONATION ADDRESS IN SIGNATURE


View Profile
December 18, 2014, 05:26:07 PM
 #64

So is this pretty much a way to make your own coins? or what is the deal with this?

Excactly, issue your own currency. Secured by the NXT network.

In depth info here: https://bitbucket.org/JeanLucPicard/nxt/issue/205/monetary-system-documenation
Thanks I have an amazing idea for a coin and had no idea how to make one so I will be on top of this one for sure Smiley Cheers Mate Wink

Make sure you read the documentation on the different options for coin creation, it allows some very interesting scenarios.
Thanks Mate I will be for sure to do that Smiley

 

▇▇▇

▇▇


▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇▇
...
............NoobKidOnThe.BLOCK.....
 
msin
Legendary
*
Offline Offline

Activity: 1470
Merit: 1004


View Profile
December 18, 2014, 06:28:16 PM
 #65

So is this pretty much a way to make your own coins? or what is the deal with this?

Excactly, issue your own currency. Secured by the NXT network.

In depth info here: https://bitbucket.org/JeanLucPicard/nxt/issue/205/monetary-system-documenation
Thanks I have an amazing idea for a coin and had no idea how to make one so I will be on top of this one for sure Smiley Cheers Mate Wink

Make sure you read the documentation on the different options for coin creation, it allows some very interesting scenarios.
Thanks Mate I will be for sure to do that Smiley

No worries, definitely recommend testing on Testnet if you can, that way you can be ready to launch your coin when it goes live.
NoobKidOnTheBlock
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


FLY DONATION ADDRESS IN SIGNATURE


View Profile
December 18, 2014, 06:32:03 PM
 #66

So is this pretty much a way to make your own coins? or what is the deal with this?

Excactly, issue your own currency. Secured by the NXT network.

In depth info here: https://bitbucket.org/JeanLucPicard/nxt/issue/205/monetary-system-documenation
Thanks I have an amazing idea for a coin and had no idea how to make one so I will be on top of this one for sure Smiley Cheers Mate Wink

Make sure you read the documentation on the different options for coin creation, it allows some very interesting scenarios.
Thanks Mate I will be for sure to do that Smiley

No worries, definitely recommend testing on Testnet if you can, that way you can be ready to launch your coin when it goes live.
Really appreciate the help from all of you here on this thread I'm most definitely gonna take a good long hard look into it for sure :-)

 

▇▇▇

▇▇


▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇▇
...
............NoobKidOnThe.BLOCK.....
 
opticalcarrier
Full Member
***
Offline Offline

Activity: 238
Merit: 100



View Profile
December 18, 2014, 10:07:40 PM
 #67

Why not just use NXT itself?  What utility will this feature provide?

Different properties than NXTs.
Different use-cases than NXTs.
Diversification.

Ah yes, and brings a bit of sidechain flair to Nxt. Wink

glad Im not the only one who saw that.  and with the way BTC seems to be foundering on the subject, my guess is MS will come out long before sidechains do
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 18, 2014, 10:13:49 PM
 #68

Did someone say decentralized crowd funding platform?

You can say that again!  Grin

decentralized crowd funding platform
NoobKidOnTheBlock
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


FLY DONATION ADDRESS IN SIGNATURE


View Profile
December 18, 2014, 11:15:59 PM
 #69

So quick question what would it cost to make my own coin through this Nxt Monetary System? Any specs lingering around I could look at?

 

▇▇▇

▇▇


▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇
▇▇▇▇▇▇
...
............NoobKidOnThe.BLOCK.....
 
msin
Legendary
*
Offline Offline

Activity: 1470
Merit: 1004


View Profile
December 19, 2014, 12:12:28 AM
 #70

So quick question what would it cost to make my own coin through this Nxt Monetary System? Any specs lingering around I could look at?

It depends on if you want to have your coin backed by Nxt (locked), but if you don't it's as cheap at 40Nxt

https://bitbucket.org/JeanLucPicard/nxt/issue/205/monetary-system-documenation (scroll down to Fees)
ThomasVeil
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
December 19, 2014, 02:22:44 AM
 #71

I don't really see why it would be better for crowdfunding than the Asset exchange... or digital good store if you prefer a stable price.
msin
Legendary
*
Offline Offline

Activity: 1470
Merit: 1004


View Profile
December 19, 2014, 05:46:45 AM
 #72

I don't really see why it would be better for crowdfunding than the Asset exchange... or digital good store if you prefer a stable price.

Because you can set a block height so if your target crowdfunding Nxt goal isn't reached, the MS coin isn't created and everyone gets their money back (called Reservable).  With Assets, people buy the Assets and their money is gone regardless if the target is reached. 
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 19, 2014, 05:55:35 PM
 #73

I don't really see why it would be better for crowdfunding than the Asset exchange... or digital good store if you prefer a stable price.

Because you can set a block height so if your target crowdfunding Nxt goal isn't reached, the MS coin isn't created and everyone gets their money back (called Reservable).  With Assets, people buy the Assets and their money is gone regardless if the target is reached. 

We also need to check how certain features will get used out in the wild. Smiley
VanBreuk
Sr. Member
****
Offline Offline

Activity: 460
Merit: 250



View Profile
December 19, 2014, 09:48:26 PM
 #74

I don't really see why it would be better for crowdfunding than the Asset exchange... or digital good store if you prefer a stable price.

Because you can set a block height so if your target crowdfunding Nxt goal isn't reached, the MS coin isn't created and everyone gets their money back (called Reservable).

Something like this would have saved people a fortune lost in IPOs for undelivered coins.
visual111
Hero Member
*****
Offline Offline

Activity: 493
Merit: 500


View Profile
December 20, 2014, 07:22:06 PM
 #75

I don't really see why it would be better for crowdfunding than the Asset exchange... or digital good store if you prefer a stable price.

Because you can set a block height so if your target crowdfunding Nxt goal isn't reached, the MS coin isn't created and everyone gets their money back (called Reservable).  With Assets, people buy the Assets and their money is gone regardless if the target is reached. 

that is pretty neat






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





INTRODUCING WAVES
ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM







Hollowman338
Legendary
*
Offline Offline

Activity: 1246
Merit: 1000



View Profile
December 20, 2014, 07:42:58 PM
 #76

I don't really see why it would be better for crowdfunding than the Asset exchange... or digital good store if you prefer a stable price.

Because you can set a block height so if your target crowdfunding Nxt goal isn't reached, the MS coin isn't created and everyone gets their money back (called Reservable).

Something like this would have saved people a fortune lost in IPOs for undelivered coins.


Would have saved me some BTC (I knew I was gambling so it didn't bother me much)
msin
Legendary
*
Offline Offline

Activity: 1470
Merit: 1004


View Profile
December 21, 2014, 04:00:44 PM
 #77

How customizable will MS coins be when it goes live on testnet?  I know we have a few set options like POW and Coin Mixing, but will we be able to add advanced features via API or will more options just be added by devs in future releases?
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 21, 2014, 04:27:09 PM
 #78

How customizable will MS coins be when it goes live on testnet?  I know we have a few set options like POW and Coin Mixing, but will we be able to add advanced features via API or will more options just be added by devs in future releases?

Right now, we go for a "just to be added by devs".

But:

Chuck, am I right to think that other properties can be added in the future? Depending on what people want/dream up?

That is true. However as with every decentralized currency (which those Nxt Currencies will be), they start with a social contract. That is, people will only have faith in the newly created currency when they can trust the stability and adherence to the social contract of the currency.

Currencies of the MS are not supposed to change once they are created AND in production.

Only new currencies would enjoy new properties later introduce than those initial ones.


But yes, people are free to suggest and to shape the decentralized nature of the Nxt economy platform.
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 21, 2014, 04:30:50 PM
 #79

I don't really see why it would be better for crowdfunding than the Asset exchange... or digital good store if you prefer a stable price.

Because you can set a block height so if your target crowdfunding Nxt goal isn't reached, the MS coin isn't created and everyone gets their money back (called Reservable).

Something like this would have saved people a fortune lost in IPOs for undelivered coins.


Would have saved me some BTC (I knew I was gambling so it didn't bother me much)

What brings us to the question why invest in a currency in the first place? Investing in an asset on the Nxt Asset Exchange makes sense to support the venture behind it. But why did you invest in currencies?
ChuckOne
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

☕ NXT-4BTE-8Y4K-CDS2-6TB82


View Profile
December 21, 2014, 04:38:05 PM
 #80

Why not just use NXT itself?  What utility will this feature provide?

Different properties than NXTs.
Different use-cases than NXTs.
Diversification.

Ah yes, and brings a bit of sidechain flair to Nxt. Wink

glad Im not the only one who saw that.  and with the way BTC seems to be foundering on the subject, my guess is MS will come out long before sidechains do

Indeed.

We also cover use-cases that otherwise would have people required to wait for Ethereum. So, people can use Nxt and get started with their local currency project.

Nxt might not offer a 100% flexible solution but it is flexible enough to cover 90% of the use-cases.
Daedelus
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
December 28, 2014, 06:41:26 PM
 #81

Nxt continues to set the bar...  Grin

Monetary System goes live on the mainnet at block 330000

This will be a hard fork, upgrade to the latest version 1.4.5 before block 330000 or be left on a fork.


Whoop  Grin


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

Release 1.4.5

[Go to https://nxtforum.org/nrs-releases/nrs-v1-4-5]

sha256:
[deleted]

Change log:

Enable Monetary System at block 330000. This is a hard fork, therefore everybody
should upgrade to 1.4.5 or later before that.

If upgrading from 1.3.x, read the 1.4.0e and later changelogs for the important
changes and new features introduced in the 1.4 series.


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

iQIcBAEBAgAGBQJUoBwLAAoJEFOhyXc7+e2A4dMQAPNhZNnbA4UbnD0lt8tg/4Yw
mPt3qaRKYnNIregbuGWWvXVU6uEJCDXSaYMhMYV5gZBPZRn6fQWyR5BVqA0kBhBg
9PLuasfJmxCVrrDeJYkB7D2SqxjOrIEJroIYkzuqyFw6u7ZccemXcs+t392XqOS2
CMyZFFtrPSM5mPmyzPPsGj2HsDP8dUNySyUhPvcGn+QgvW3BuFsp4UdJs8GbHsBG
4qQYphH4nYSBGTAm0SoAzNsFYTP/juxFch9bCdXFABVmvYZsaCDeH9fUah6MZkD2
e+nPy102DyfjBjhx8HkwT3OBHnT2fZM0aIf5WJ06L9kL1MdPP0hLPdJz+8YGl+kI
ymdRTbRVM0MYWOoNhdhm2m31KNKVysqEO1B1YqyCEDt6P4yeQAl+x/3YjpxQ0pPw
cT9QW+X+SLhB88hyazGIlDXTapv3J5DWOTD/mWjvJ6FSm/8I/rpAwBYl6wr6jnUz
5gpT95MyHBrPAhzpvU+GL3ZCpWnOqk29t7AAWlg0E02cAobB8TeZX2R2FJchmBYI
+yL88GpC0R+RzMXm/WQchMPlRLDj9JTNTSIoiJZTs5UmdxWsDJcmo4uYfzjGvmCl
XjUoTwrT5RtE4dcQDrZi09eldD0PWdxyKwQANOYFWq/frzhnA5t9MO5xfnM9spUx
c7CIa1ZwibXB3LZAJ+wU
=Q6Qi
-----END PGP SIGNATURE-----
frohlocke
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
December 29, 2014, 02:23:24 PM
 #82

WOW that was fast!
kseistrup
Hero Member
*****
Offline Offline

Activity: 566
Merit: 500


Unselfish actions pay back better


View Profile WWW
December 31, 2014, 12:01:52 AM
 #83

Monetary System goes live on the mainnet at block 330000

We're at block 321435 right now, so that's in 8565 blocks (6-9 days) — exciting!

Klaus Alexander Seistrup
Daedelus
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
January 02, 2015, 10:45:52 PM
 #84

Testers still busy at work, upgrade to version 1.4.6 to ensure a smooth transition.

If you want to test Monetary System so you know how to use it on launch day, see here >>> https://nxtforum.org/general-discussion/%28core%29-hardfork-on-330000

Monetary System goes live roughly 10th January, block 330000



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

Release 1.4.6
[removed, see https://nxtforum.org/nrs-releases/nrs-v1-4-6/ for Jean-Luc's message]

sha256:

[removed]


Change log:

Set MS block to 330000 in the UI too, so that the MS features menu appears
after that height.

Enforce that currency exchange offer expiration height is after the current
blockchain height.

Refactoring of the UI html, splitting index.html into multiple files.

Added offer and transfer links to currency exchange booth UI.

This release will perform a rescan on testnet only, with a rollback to block
159305.


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

iQIcBAEBAgAGBQJUpV+xAAoJEFOhyXc7+e2AMTcQAJbtNTaGqJ5tnICd43KgXhM0
FfCQ6LdByjXiZlSc7ME8orEjH9yTOGIjsXbpGD13Z43ma6rj0zYcXoJRILutaikx
CZeVQ02OUpJDqw0W01TA9OgXQ0TRqpjmv3//+R9P/wbSec2koeMDxWFq8H3ZUw1K
+ITWnH7uQFT8RfBoN2oRlhN5tGX7eOxblzS5Mfcn///farKcfcHQCruYwrHVIbeg
AvLK0/bIJaiVi5uR73/HznNkwlqipGi2NNdWL1POJ/BdwptGqVSQOadT0zzUuPqp
zYSmO3nx1sXBtgNn+ZJ4hFvR+qwz8T/o49ddRCMWzow1q7H4uzjRL4EA4m4azUVh
+Pg/s6z1EBPRRR+GnsKnX2mm1n+LVAKhT+w60a1Ma/lh6aPes0UDZd/btRRcSw4V
b/whKyaZ60uacwjcULtCRtADhj/rdeVM4eog8CR3b+aLExinEGlcynwdnUoqFjBn
W+Hzy6bhG2VTP2a79lFlb//CH7qLUpM70t4npAyNTxI3BCniHm2ynN6XY3wrBsot
bgFeoA7Sw7wk47AH3Tnp4XoTK5E4X//751H44rUYNtOj1EeTJjCVtvCqfL5Bmckl
YmELXS7rudGvUaVHeiZNCiM8Cj4RTcKbt8h0T9SM11tcvgsAYHB+auRZtorqjFkw
BoFMhcrcoI/wE6bhMcrt
=ey9U
-----END PGP SIGNATURE-----
box0211
Full Member
***
Offline Offline

Activity: 165
Merit: 101


View Profile
January 11, 2015, 04:21:51 AM
 #85

this just went live it seems... alot of MS coins out now it. this can totally help out small community altcoins.
UberNifty
Full Member
***
Offline Offline

Activity: 168
Merit: 100

AltcoinWarrior.com


View Profile WWW
January 13, 2015, 10:48:34 AM
 #86

Here's a handy guide to get you up to speed quick on the NXT Monetary System: https://drive.google.com/file/d/0B8paJFYHGv0QVDN2dXFaRTBFeFE/view?usp=sharing Enjoy!

"Remember, the blockchain is truth..."
Daedelus
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
February 16, 2015, 03:49:03 PM
 #87

Title could be updated to show Monetary System is now live  Wink

Pow mining, trustless crowd funding, stores of value and secure retail vouchers are now all available and, more importantly,  being used.
ShroomsKit_Disgrace
Legendary
*
Offline Offline

Activity: 952
Merit: 1000

Yeah! I hate ShroomsKit!


View Profile
February 23, 2015, 06:16:09 PM
 #88

How is MS doing? Any good (or bad) news? I am quite disconnected these days.
Daedelus
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
February 23, 2015, 09:39:51 PM
 #89

How is MS doing? Any good (or bad) news? I am quite disconnected these days.

Wolf0, well known in the the mining world it seems for custom settings/mining software, is quite involved. Check out his posts here or on nxtforum. Also ScripterRon on Nxtforum has written a GPU minter. Seems to be popular with a growing group, I guess speculating on the future value of the 'first mover' MSCoins. If such a thing exists   Grin
farl4web
Legendary
*
Offline Offline

Activity: 1205
Merit: 1000



View Profile
July 28, 2015, 05:29:55 PM
 #90

Nxt Academy raised 578.232 NXT with a crowdfunding coin on de Monetary System. Crowdfunding on the Nxt blockchain with the monetary system, cool!

You can start from 40NXT to start your own cryptocoin!! Even mining is possible in Nxt Client (CPU).
Pages: 1 2 3 4 5 [All]
  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!