diff --git a/assets/asset_metadata_spec.md b/assets/asset_metadata_spec.md index 374ee943e7..fce234711b 100644 --- a/assets/asset_metadata_spec.md +++ b/assets/asset_metadata_spec.md @@ -16,12 +16,14 @@ Additional fields may be added, but will be ignored by Ravencoin. "symbol": "LEMONADE", "name": "Lemonade Gift", - + "issuer": "Lemonade Stands, Inc.", "description": "This coin is worth one lemonade.", "description_mime": "text/x-markdown; charset=UTF-8", + + "keywords": "Lemonade, Lemonade Stand, Gift, Cold Drink", "type": "Points", @@ -68,6 +70,8 @@ All fields are optional. Clients, explorers, and wallets are not obligated to di **description_mime** - The mime type of the description. This may or may not be honored, depending on the client, explorer, etc. +**keywords** - helps describe an asset and allows it to be found easily Examples: "Lemonade, Cold Drink, Drinks" this will most likely be used by third party search engines. seperate keywords with commmas + **type** - The type that the qty of the token represents. Examples: (Tokens, Points, Shares, Tickets). This may or may not be displayed by the client. **website_url** - The website for this token. The client or software may or may not display this. diff --git a/src/chainparams.cpp b/src/chainparams.cpp index bf06e1a47d..8b450fc0de 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -1,5 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto -// Copyright (c) 2009-2016 The Raven Core developers +// Copyright (c) 2009-2016 The Bitcoin Core developers +// Copyright (c) 2017 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php.