forked from steemit/condenser
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,51 @@ | ||
// sometimes it's impossible to use html tags to style coin name, hence usage of _UPPERCASE modifier | ||
export const APP_NAME = "Steemit"; | ||
export const APP_NAME = 'Steemit'; | ||
// sometimes APP_NAME is written in non-latin characters, but they are needed for technical purposes | ||
// ie. "Голос" > "Golos" | ||
export const APP_NAME_LATIN = "Steemit"; | ||
export const APP_NAME_UPPERCASE = "STEEMIT"; | ||
export const APP_ICON = "steem"; | ||
export const APP_NAME_LATIN = 'Steemit'; | ||
export const APP_NAME_UPPERCASE = 'STEEMIT'; | ||
export const APP_ICON = 'steem'; | ||
// FIXME figure out best way to do this on both client and server from env | ||
// vars. client should read $STM_Config, server should read config package. | ||
export const APP_DOMAIN = "steemit.com"; | ||
export const LIQUID_TOKEN = "Steem"; | ||
export const APP_DOMAIN = 'steemit.com'; | ||
export const LIQUID_TOKEN = 'Steem'; | ||
// sometimes it's impossible to use html tags to style coin name, hence usage of _UPPERCASE modifier | ||
export const LIQUID_TOKEN_UPPERCASE = "STEEM"; | ||
export const VESTING_TOKEN = "STEEM Power"; | ||
export const INVEST_TOKEN_UPPERCASE = "STEEM POWER"; | ||
export const INVEST_TOKEN_SHORT = "SP"; | ||
export const DEBT_TOKEN = "STEEM DOLLAR"; | ||
export const CURRENCY_SIGN = "$"; | ||
export const WIKI_URL = ""; // https://wiki.golos.io/ | ||
export const LANDING_PAGE_URL = "https://steem.io/"; | ||
export const TERMS_OF_SERVICE_URL = "https://" + APP_DOMAIN + "/tos.html"; | ||
export const PRIVACY_POLICY_URL = "https://" + APP_DOMAIN + "/privacy.html"; | ||
export const WHITEPAPER_URL = "https://steem.io/SteemWhitePaper.pdf"; | ||
export const LIQUID_TOKEN_UPPERCASE = 'STEEM'; | ||
export const VESTING_TOKEN = 'STEEM Power'; | ||
export const INVEST_TOKEN_UPPERCASE = 'STEEM POWER'; | ||
export const INVEST_TOKEN_SHORT = 'SP'; | ||
export const DEBT_TOKEN = 'STEEM DOLLAR'; | ||
export const CURRENCY_SIGN = '$'; | ||
export const WIKI_URL = ''; // https://wiki.golos.io/ | ||
export const LANDING_PAGE_URL = 'https://steem.io/'; | ||
export const TERMS_OF_SERVICE_URL = 'https://' + APP_DOMAIN + '/tos.html'; | ||
export const PRIVACY_POLICY_URL = 'https://' + APP_DOMAIN + '/privacy.html'; | ||
export const WHITEPAPER_URL = 'https://steem.io/SteemWhitePaper.pdf'; | ||
|
||
// these are dealing with asset types, not displaying to client, rather sending data over websocket | ||
export const LIQUID_TICKER = "STEEM"; | ||
export const VEST_TICKER = "VESTS"; | ||
export const DEBT_TICKER = "SBD"; | ||
export const DEBT_TOKEN_SHORT = "SD"; | ||
export const LIQUID_TICKER = 'STEEM'; | ||
export const VEST_TICKER = 'VESTS'; | ||
export const DEBT_TICKER = 'SBD'; | ||
export const DEBT_TOKEN_SHORT = 'SD'; | ||
|
||
// application settings | ||
export const DEFAULT_LANGUAGE = "en"; // used on application internationalization bootstrap | ||
export const DEFAULT_CURRENCY = "USD"; | ||
export const ALLOWED_CURRENCIES = ["USD"]; | ||
export const DEFAULT_LANGUAGE = 'en'; // used on application internationalization bootstrap | ||
export const DEFAULT_CURRENCY = 'USD'; | ||
export const ALLOWED_CURRENCIES = ['USD']; | ||
export const FRACTION_DIGITS = 2; // default amount of decimal digits | ||
export const FRACTION_DIGITS_MARKET = 3; // accurate amount of deciaml digits (example: used in market) | ||
|
||
// meta info | ||
export const TWITTER_HANDLE = "@steemit"; | ||
export const SHARE_IMAGE = "https://" + | ||
export const TWITTER_HANDLE = '@steemit'; | ||
export const SHARE_IMAGE = 'https://' + | ||
APP_DOMAIN + | ||
"/images/steemit-share.png"; | ||
export const TWITTER_SHARE_IMAGE = "https://" + | ||
'/images/steemit-share.png'; | ||
export const TWITTER_SHARE_IMAGE = 'https://' + | ||
APP_DOMAIN + | ||
"/images/steemit-twshare.png"; | ||
export const SITE_DESCRIPTION = "Steemit is a social media platform where everyone gets paid for " + | ||
"creating and curating content. It leverages a robust digital points system, called Steem, that " + | ||
"supports real value for digital rewards through market price discovery and liquidity"; | ||
'/images/steemit-twshare.png'; | ||
export const SITE_DESCRIPTION = 'Steemit is a social media platform where everyone gets paid for ' + | ||
'creating and curating content. It leverages a robust digital points system, called Steem, that ' + | ||
'supports real value for digital rewards through market price discovery and liquidity'; | ||
|
||
// various | ||
export const SUPPORT_EMAIL = "support@" + APP_DOMAIN; | ||
export const SUPPORT_EMAIL = 'support@' + APP_DOMAIN; |