aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/documentation/docs_home.tsx
blob: 5849a2a03cff2caadd8ad719494c8b1e23c2d28b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
import { ALink, colors, Link } from '@0x/react-shared';
import { ObjectMap } from '@0x/types';
import * as _ from 'lodash';
import * as React from 'react';
import { OverviewContent } from 'ts/components/documentation/overview_content';
import { NestedSidebarMenu } from 'ts/components/nested_sidebar_menu';
import { Button } from 'ts/components/ui/button';
import { DevelopersPage } from 'ts/pages/documentation/developers_page';
import { Dispatcher } from 'ts/redux/dispatcher';
import { Categories, Deco, Key, Package, ScreenWidths, TutorialInfo, WebsitePaths } from 'ts/types';
import { constants } from 'ts/utils/constants';
import { Translate } from 'ts/utils/translate';

const TUTORIALS: TutorialInfo[] = [
    {
        iconUrl: '/images/developers/tutorials/develop_on_ethereum.svg',
        description: Key.DevelopOnEthereumDescription,
        link: {
            title: Key.DevelopOnEthereum,
            to: `${WebsitePaths.Wiki}#Ethereum-Development`,
        },
    },
    {
        iconUrl: '/images/developers/tutorials/build_a_relayer.svg',
        description: Key.BuildARelayerDescription,
        link: {
            title: Key.BuildARelayer,
            to: `${WebsitePaths.Wiki}#Build-A-Relayer`,
        },
    },
    {
        iconUrl: '/images/developers/tutorials/0x_order_basics.svg',
        description: Key.OrderBasicsDescription,
        link: {
            title: Key.OrderBasics,
            to: `${WebsitePaths.Wiki}#Create,-Validate,-Fill-Order`,
        },
    },
    {
        iconUrl: '/images/developers/tutorials/use_shared_liquidity.svg',
        description: Key.UseNetworkedLiquidityDescription,
        link: {
            title: Key.UseNetworkedLiquidity,
            to: `${WebsitePaths.Wiki}#Find,-Submit,-Fill-Order-From-Relayer`,
        },
    },
    {
        iconUrl: '/images/developers/tutorials/integrate_0x_instant.svg',
        description: Key.Integrate0xInstantDescription,
        link: {
            title: Key.Integrate0xInstant,
            to: `${WebsitePaths.Wiki}#Get-Started-With-Instant`,
        },
    },
];

const CATEGORY_TO_PACKAGES: ObjectMap<Package[]> = {
    [Categories.ZeroExProtocolTypescript]: [
        {
            description:
                'A library for interacting with the 0x protocol. It is a high level package which combines a number of smaller specific-purpose packages such as [order-utils](https://0x.org/docs/order-utils) and [contract-wrappers](https://0x.org/docs/contract-wrappers).',
            link: {
                title: '0x.js',
                to: WebsitePaths.ZeroExJs,
            },
        },
        {
            description:
                'A Typescript starter project that will walk you through the basics of how to interact with 0x Protocol and trade of an SRA relayer',
            link: {
                title: '0x starter project',
                to: 'https://github.com/0xProject/0x-starter-project',
                shouldOpenInNewTab: true,
            },
        },
        {
            description:
                'Launch a 0x relayer in under a minute with Launch Kit. `0x-launch-kit` is an open-source, free-to-use 0x relayer template that you can use as a starting point for your own project.',
            link: {
                title: '0x launch kit',
                to: 'https://github.com/0xProject/0x-launch-kit',
                shouldOpenInNewTab: true,
            },
        },
        {
            description:
                'Reference documentation for the 0x smart contracts. Helpful for dApp developer wanting to integrate 0x at the smart contract level.',
            link: {
                title: '0x smart contracts',
                to: WebsitePaths.SmartContracts,
            },
        },
        {
            description:
                'An http & websocket client for interacting with relayers that have implemented the [Standard Relayer API](https://github.com/0xProject/standard-relayer-api)',
            link: {
                title: '@0x/connect',
                to: WebsitePaths.Connect,
            },
        },
        {
            description:
                'Typescript/Javascript wrappers of the 0x protocol Ethereum smart contracts. Use this library to call methods on the 0x smart contracts, subscribe to contract events and to fetch information stored in contracts.',
            link: {
                title: '@0x/contract-wrappers',
                to: WebsitePaths.ContractWrappers,
            },
        },
        {
            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',
                to: WebsitePaths.JSONSchemas,
            },
        },
        {
            description:
                'A set of utils for working with 0x orders. It includes utilities for creating, signing, validating 0x orders, encoding/decoding assetData and much more.',
            link: {
                title: '@0x/order-utils',
                to: WebsitePaths.OrderUtils,
            },
        },
        {
            description:
                "A daemon that watches a set of 0x orders and emits events when an order's fillability has changed. Can be used by a relayer to prune their orderbook or by a trader to keep their view of the market up-to-date.",
            link: {
                title: '@0x/order-watcher',
                to: WebsitePaths.OrderWatcher,
            },
        },
        {
            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',
                to: 'https://github.com/0xProject/0x-monorepo/tree/development/packages/sra-spec',
                shouldOpenInNewTab: true,
            },
        },
        {
            description:
                'Convenience package for buying assets represented on the Ethereum blockchain using 0x. In its simplest form, the package helps in the usage of the [0x forwarder contract](https://github.com/0xProject/0x-protocol-specification/blob/master/v2/forwarder-specification.md), which allows users to execute [Wrapped Ether](https://weth.io/) based 0x orders without having to set allowances, wrap Ether or own ZRX, meaning they can buy tokens with Ether alone. Given some liquidity (0x signed orders), it helps estimate the Ether cost of buying a certain asset (giving a range) and then buying that asset.',
            link: {
                title: '@0x/asset-buyer',
                to: WebsitePaths.AssetBuyer,
            },
        },
    ],
    [Categories.ZeroExProtocolPython]: [
        {
            description:
                "A library for interacting with 0x orders. Generate an orderHash, sign an order, validate it's signature and more.",
            link: {
                title: '0x-order-utils',
                to: 'https://pypi.org/project/0x-order-utils/',
                shouldOpenInNewTab: true,
            },
        },
        {
            description: 'A Standard Relayer API client',
            link: {
                title: '0x-sra-client',
                to: 'https://pypi.org/project/0x-sra-client/',
                shouldOpenInNewTab: true,
            },
        },
        {
            description: 'Package containing the addresses at which the 0x smart contracts have been deployed',
            link: {
                title: '0x-contract-addresses',
                to: 'https://pypi.org/project/0x-contract-addresses/',
                shouldOpenInNewTab: true,
            },
        },
        {
            description: 'Package containing the 0x smart contract compilation artifacts',
            link: {
                title: '0x-contract-artifacts',
                to: 'https://pypi.org/project/0x-contract-artifacts/',
                shouldOpenInNewTab: true,
            },
        },
        {
            description: '0x JSON schemas for those developing on top of 0x protocol',
            link: {
                title: '0x-json-schemas',
                to: 'https://pypi.org/project/0x-json-schemas/',
                shouldOpenInNewTab: true,
            },
        },
        {
            description: 'Demo project showing how to interact with the 0x smart contracts using Python',
            link: {
                title: '0x-contract-demo',
                to: 'https://github.com/0xProject/0x-monorepo/blob/development/python-packages/contract_demo/README.md',
                shouldOpenInNewTab: true,
            },
        },
    ],
    [Categories.Ethereum]: [
        {
            description:
                "This package allows you to generate TypeScript contract wrappers from ABI files. It's heavily inspired by Geth abigen but takes a different approach. You can write your custom handlebars templates which will allow you to seamlessly integrate the generated code into your existing codebase with existing conventions.",
            link: {
                title: 'abi-gen',
                to: 'https://github.com/0xProject/0x-monorepo/tree/development/packages/abi-gen',
                shouldOpenInNewTab: true,
            },
        },
        {
            description:
                'A collection of Typescript types that are useful when working on an Ethereum-based project (e.g RawLog, Transaction, TxData, SolidityTypes, etc...).',
            link: {
                title: 'ethereum-types',
                to: WebsitePaths.EthereumTypes,
            },
        },
        {
            description:
                'A wrapper around [solc-js](https://github.com/ethereum/solc-js) that adds smart re-compilation, ability to compile an entire project, Solidity version specific compilation, standard input description support and much more.',
            link: {
                title: '@0x/sol-compiler',
                to: WebsitePaths.SolCompiler,
            },
        },
        {
            description:
                'A Solidity code coverage tool. Sol-coverage uses transaction traces to figure out which lines of your code has been covered by your tests.',
            link: {
                title: '@0x/sol-coverage',
                to: WebsitePaths.SolCoverage,
            },
        },
        {
            description:
                'A Solidity profiler. Sol-profiler uses transaction traces to figure out line-by-line gas consumption.',
            link: {
                title: '@0x/sol-profiler',
                to: WebsitePaths.SolProfiler,
            },
        },
        {
            description:
                'A Solidity revert trace tool. Sol-trace prints human-readable revert trace whenever the revert happens.',
            link: {
                title: '@0x/sol-trace',
                to: WebsitePaths.SolTrace,
            },
        },
        {
            description:
                'A collection of subproviders to use with [web3-provider-engine](https://www.npmjs.com/package/web3-provider-engine) (e.g subproviders for interfacing with Ledger hardware wallet, Mnemonic wallet, private key wallet, etc...)',
            link: {
                title: '@0x/subproviders',
                to: WebsitePaths.Subproviders,
            },
        },
        {
            description:
                'A raw Ethereum JSON RPC client to simplify interfacing with Ethereum nodes. Also includes some convenience functions for awaiting transactions to be mined, converting between token units, etc...',
            link: {
                title: '@0x/web3-wrapper',
                to: WebsitePaths.Web3Wrapper,
            },
        },
    ],
    [Categories.CommunityMaintained]: [
        {
            description:
                'Node.js worker originally built for 0x Tracker which extracts 0x fill events from the Ethereum blockchain and persists them to MongoDB. Support for both V1 and V2 of the 0x protocol is included with events tagged against the protocol version they belong to.',
            link: {
                title: '0x Event Extractor',
                to: 'https://github.com/0xTracker/0x-event-extractor',
                shouldOpenInNewTab: true,
            },
        },
        {
            description:
                'Node.js worker built for 0x Tracker which performs various ETL tasks related to the 0x protocol trading data and other information used on 0x Tracker.',
            link: {
                title: '0x Tracker Worker',
                to: 'https://github.com/0xTracker/0x-tracker-worker',
                shouldOpenInNewTab: true,
            },
        },
        {
            description:
                "ERCdEX's Javascript SDK for trading on their relayer, as well as other Aquaduct partner relayers",
            link: {
                title: 'Aquaduct',
                to: 'https://www.npmjs.com/package/aqueduct',
                shouldOpenInNewTab: true,
            },
        },
        {
            description:
                'SDKs for automation using Aqueduct & ERC dEX. Aqueduct Server is a lightweight, portable and secure server that runs locally on any workstation. The server exposes a small number of foundational endpoints that enable working with the decentralized Aqueduct liquidity pool from any context or programming language.',
            link: {
                title: 'Aquaduct Server SDK',
                to: 'https://github.com/ERCdEX/aqueduct-server-sdk',
                shouldOpenInNewTab: true,
            },
        },
        {
            description: 'A node.js SDK for trading on the DDEX relayer',
            link: {
                to: 'https://www.npmjs.com/package/ddex-api',
                title: 'DDEX Node.js SDK',
                shouldOpenInNewTab: true,
            },
        },
        {
            description: "The ERCdEX Trade Widget let's any website provide token liquidity to it's users",
            link: {
                to: 'https://github.com/ERCdEX/widget',
                title: 'ERCdEX Widget',
                shouldOpenInNewTab: true,
            },
        },
        {
            description: "ERCdEX's Java SDK for trading on their relayer, as well as other Aquaduct partner relayers",
            link: {
                to: 'https://github.com/ERCdEX/java',
                title: 'ERCdEX Java SDK',
                shouldOpenInNewTab: true,
            },
        },
        {
            description: "ERCdEX's Python SDK for trading on their relayer, as well as other Aquaduct partner relayers",
            link: {
                to: 'https://github.com/ERCdEX/python',
                title: 'ERCdEX Python SDK',
                shouldOpenInNewTab: true,
            },
        },
        {
            description:
                'A set of command-line tools for creating command-line scripts for interacting with the Ethereum blockchain in general, and 0x in particular',
            link: {
                title: 'Massive',
                to: 'https://github.com/NoteGio/massive',
                shouldOpenInNewTab: true,
            },
        },
        {
            description: 'An open-source API-only Relayer written in Go',
            link: {
                to: 'https://github.com/NoteGio/openrelay',
                title: 'OpenRelay',
                shouldOpenInNewTab: true,
            },
        },
        {
            description:
                'A JavaScript Library for Interacting with OpenRelay.xyz and other 0x Standard Relayer API Implementations',
            link: {
                title: 'OpenRelay.js',
                to: 'https://github.com/NoteGio/openrelay.js',
                shouldOpenInNewTab: true,
            },
        },
        {
            description:
                'The Radar Relay SDK is a software development kit that simplifies the interactions with Radar Relay’s APIs',
            link: {
                title: 'Radar SDK',
                to: 'https://github.com/RadarRelay/sdk',
                shouldOpenInNewTab: true,
            },
        },
        {
            description:
                'The Ocean provides a simple REST API, WebSockets API, and JavaScript library to help you integrate decentralized trading into your existing trading strategy.',
            link: {
                title: 'The Ocean Javascript SDK',
                to: 'https://github.com/TheOceanTrade/theoceanx-javascript',
                shouldOpenInNewTab: true,
            },
        },
        {
            description: "Tokenlon SDK provides APIs for developers to trade of imToken's relayer",
            link: {
                to: 'https://www.npmjs.com/package/tokenlon-sdk',
                title: 'Tokenlon Javascript SDK',
                shouldOpenInNewTab: true,
            },
        },
        {
            description: 'A small library that implements the 0x order assetData encoding/decoding in Java',
            link: {
                to: 'https://github.com/wildnothing/asset-data-decoder',
                title: 'AssetData decoder library in Java',
                shouldOpenInNewTab: true,
            },
        },
    ],
};

export interface DocsHomeProps {
    location: Location;
    translate: Translate;
    screenWidth: ScreenWidths;
    tutorials: TutorialInfo[];
    categoryToPackages: ObjectMap<Package[]>;
    dispatcher: Dispatcher;
}

export interface DocsHomeState {}

export class DocsHome extends React.Component<DocsHomeProps, DocsHomeState> {
    public render(): React.ReactNode {
        const sectionNameToLinks: ObjectMap<ALink[]> = {
            'Starter guides': _.map(TUTORIALS, tutorialInfo => {
                return {
                    ...tutorialInfo.link,
                    title: this.props.translate.get(tutorialInfo.link.title as Key, Deco.Cap),
                };
            }),
            [Categories.ZeroExProtocolTypescript]: _.map(
                CATEGORY_TO_PACKAGES[Categories.ZeroExProtocolTypescript],
                pkg => pkg.link,
            ),
            [Categories.Ethereum]: _.map(CATEGORY_TO_PACKAGES[Categories.Ethereum], pkg => pkg.link),
            [Categories.CommunityMaintained]: _.map(
                CATEGORY_TO_PACKAGES[Categories.CommunityMaintained],
                pkg => pkg.link,
            ),
        };
        const mainContent = (
            <OverviewContent
                translate={this.props.translate}
                tutorials={TUTORIALS}
                categoryToPackages={CATEGORY_TO_PACKAGES}
            />
        );
        const isSmallScreen = this.props.screenWidth === ScreenWidths.Sm;
        const sidebar = (
            <NestedSidebarMenu
                sidebarHeader={isSmallScreen ? this._renderSidebarHeader() : undefined}
                sectionNameToLinks={sectionNameToLinks}
                shouldReformatMenuItemNames={false}
                screenWidth={this.props.screenWidth}
            />
        );
        return (
            <DevelopersPage
                mainContent={mainContent}
                sidebar={sidebar}
                location={this.props.location}
                screenWidth={this.props.screenWidth}
                translate={this.props.translate}
                dispatcher={this.props.dispatcher}
            />
        );
    }
    private _renderSidebarHeader(): React.ReactNode {
        const menuItems = _.map(constants.DEVELOPER_TOPBAR_LINKS, menuItemInfo => {
            return (
                <Link
                    key={`menu-item-${menuItemInfo.title}`}
                    to={menuItemInfo.to}
                    shouldOpenInNewTab={menuItemInfo.shouldOpenInNewTab}
                >
                    <Button
                        borderRadius="4px"
                        padding="0.4em 0.375em"
                        width="100%"
                        fontColor={colors.grey800}
                        fontSize="14px"
                        textAlign="left"
                    >
                        {this.props.translate.get(menuItemInfo.title as Key, Deco.Cap)}
                    </Button>
                </Link>
            );
        });
        return menuItems;
    }
} // tslint:disable:max-file-line-count