Switch out whitepaper with 0x protocol specification

This commit is contained in:
Fabio Berger 2018-12-06 14:10:35 +00:00
parent a699a12161
commit dcad94df4c
9 changed files with 10 additions and 3 deletions

View File

@ -3,7 +3,6 @@
This repository contains our website and [0x Portal DApp][portal-url] (over-the-counter exchange), facilitating trustless over-the-counter trading of Ethereum-based tokens using 0x protocol. This repository contains our website and [0x Portal DApp][portal-url] (over-the-counter exchange), facilitating trustless over-the-counter trading of Ethereum-based tokens using 0x protocol.
[website-url]: https://0xproject.com/ [website-url]: https://0xproject.com/
[whitepaper-url]: https://0xproject.com/pdfs/0x_white_paper.pdf
[portal-url]: https://0xproject.com/portal [portal-url]: https://0xproject.com/portal
## Contributing ## Contributing

View File

@ -67,6 +67,7 @@
"BLOG": "博客", "BLOG": "博客",
"FORUM": "论坛", "FORUM": "论坛",
"CONNECT": "0x 连接", "CONNECT": "0x 连接",
"PROTOCOL_SPECIFICATION": "protocol specification",
"WHITEPAPER": "白皮书", "WHITEPAPER": "白皮书",
"WIKI": "维基", "WIKI": "维基",
"WEB3_WRAPPER": "Web3Wrapper", "WEB3_WRAPPER": "Web3Wrapper",

View File

@ -69,6 +69,7 @@
"BLOG": "blog", "BLOG": "blog",
"FORUM": "forum", "FORUM": "forum",
"CONNECT": "0x Connect", "CONNECT": "0x Connect",
"PROTOCOL_SPECIFICATION": "protocol specification",
"WHITEPAPER": "whitepaper", "WHITEPAPER": "whitepaper",
"WIKI": "wiki", "WIKI": "wiki",
"WEB3_WRAPPER": "Web3Wrapper", "WEB3_WRAPPER": "Web3Wrapper",

View File

@ -67,6 +67,7 @@
"BLOG": "블로그", "BLOG": "블로그",
"FORUM": "포럼", "FORUM": "포럼",
"CONNECT": "0x Connect", "CONNECT": "0x Connect",
"PROTOCOL_SPECIFICATION": "protocol specification",
"WHITEPAPER": "백서", "WHITEPAPER": "백서",
"WIKI": "위키", "WIKI": "위키",
"WEB3_WRAPPER": "Web3Wrapper", "WEB3_WRAPPER": "Web3Wrapper",

View File

@ -67,6 +67,7 @@
"BLOG": "Блог", "BLOG": "Блог",
"FORUM": "Форум", "FORUM": "Форум",
"CONNECT": "0x Connect", "CONNECT": "0x Connect",
"PROTOCOL_SPECIFICATION": "protocol specification",
"WHITEPAPER": "Whitepaper", "WHITEPAPER": "Whitepaper",
"WIKI": "Вики", "WIKI": "Вики",
"WEB3_WRAPPER": "Web3Wrapper", "WEB3_WRAPPER": "Web3Wrapper",

View File

@ -68,6 +68,7 @@
"BLOG": "blog", "BLOG": "blog",
"FORUM": "foro", "FORUM": "foro",
"CONNECT": "0x Connect", "CONNECT": "0x Connect",
"PROTOCOL_SPECIFICATION": "protocol specification",
"WHITEPAPER": "documento técnico", "WHITEPAPER": "documento técnico",
"WIKI": "wiki", "WIKI": "wiki",
"WEB3_WRAPPER": "Web3Wrapper", "WEB3_WRAPPER": "Web3Wrapper",

View File

@ -53,8 +53,8 @@ const usefulLinksToLinkInfo: ALink[] = [
shouldOpenInNewTab: true, shouldOpenInNewTab: true,
}, },
{ {
title: Key.Whitepaper, title: Key.ProtocolSpecification,
to: WebsitePaths.Whitepaper, to: constants.URL_PROTOCOL_SPECIFICATION,
shouldOpenInNewTab: true, shouldOpenInNewTab: true,
}, },
]; ];

View File

@ -496,6 +496,7 @@ export enum Key {
GetInTouch = 'GET_IN_TOUCH', GetInTouch = 'GET_IN_TOUCH',
LearnMore = 'LEARN_MORE', LearnMore = 'LEARN_MORE',
GetStarted = 'GET_STARTED', GetStarted = 'GET_STARTED',
ProtocolSpecification = 'PROTOCOL_SPECIFICATION',
} }
export enum SmartContractDocSections { export enum SmartContractDocSections {

View File

@ -81,6 +81,8 @@ export const constants = {
URL_GITHUB_ORG: 'https://github.com/0xProject', URL_GITHUB_ORG: 'https://github.com/0xProject',
URL_GITHUB_WIKI: 'https://github.com/0xProject/wiki', URL_GITHUB_WIKI: 'https://github.com/0xProject/wiki',
URL_FORUM, URL_FORUM,
URL_PROTOCOL_SPECIFICATION:
'https://github.com/0xProject/0x-protocol-specification/blob/master/v2/v2-specification.md',
URL_METAMASK_CHROME_STORE: 'https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn', URL_METAMASK_CHROME_STORE: 'https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn',
URL_METAMASK_FIREFOX_STORE: 'https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/', URL_METAMASK_FIREFOX_STORE: 'https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/',
URL_COINBASE_WALLET_IOS_APP_STORE: 'https://itunes.apple.com/us/app/coinbase-wallet/id1278383455?mt=8', URL_COINBASE_WALLET_IOS_APP_STORE: 'https://itunes.apple.com/us/app/coinbase-wallet/id1278383455?mt=8',