diff options
author | Fabio B <kandinsky454@protonmail.ch> | 2018-11-22 01:06:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-22 01:06:32 +0800 |
commit | 327311788809267a250e99f4af2a7544024bc842 (patch) | |
tree | 66a52a9dafda539feba630af3c388189754133b9 /packages/website/ts/pages/documentation/docs_home.tsx | |
parent | 8ea2eb9102058a03d96e488507c71db0cc082356 (diff) | |
parent | 61b3305af3a7a599f83370aa8ebe8157738506fb (diff) | |
download | dexon-0x-contracts-327311788809267a250e99f4af2a7544024bc842.tar.gz dexon-0x-contracts-327311788809267a250e99f4af2a7544024bc842.tar.zst dexon-0x-contracts-327311788809267a250e99f4af2a7544024bc842.zip |
Merge pull request #1301 from 0xProject/feature/migrationsDocRef
Add Migrations Doc Ref
Diffstat (limited to 'packages/website/ts/pages/documentation/docs_home.tsx')
-rw-r--r-- | packages/website/ts/pages/documentation/docs_home.tsx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/website/ts/pages/documentation/docs_home.tsx b/packages/website/ts/pages/documentation/docs_home.tsx index e3328f3fa..f68d2892f 100644 --- a/packages/website/ts/pages/documentation/docs_home.tsx +++ b/packages/website/ts/pages/documentation/docs_home.tsx @@ -109,6 +109,14 @@ const CATEGORY_TO_PACKAGES: ObjectMap<Package[]> = { }, { description: + "A package to deploy the 0x protocol's system of smart contracts to the testnet of your choice", + link: { + title: '@0x/migrations', + to: WebsitePaths.Migrations, + }, + }, + { + description: 'A collection of 0x-related JSON-schemas (incl. SRA request/response schemas, 0x order message format schema, etc...)', link: { title: '@0x/json-schemas', @@ -133,6 +141,23 @@ const CATEGORY_TO_PACKAGES: ObjectMap<Package[]> = { }, { description: + 'A tiny utility library for getting known deployed contract addresses for a particular network.', + link: { + title: '@0x/contract-addresses', + to: 'https://www.npmjs.com/package/@0x/contract-addresses', + shouldOpenInNewTab: true, + }, + }, + { + description: 'Smart contract compilation artifacts for the latest version of the 0x protocol.', + link: { + title: '@0x/contract-artifacts', + to: 'https://www.npmjs.com/package/@0x/contract-artifacts', + shouldOpenInNewTab: true, + }, + }, + { + description: 'Contains the Standard Relayer API OpenAPI Spec. The package distributes both a javascript object version and a json version.', link: { title: '@0x/sra-spec', |