diff options
author | Fabio Berger <me@fabioberger.com> | 2017-12-20 06:28:18 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-12-20 06:28:18 +0800 |
commit | 484312e677d1f1f1b280cdada92acddf5effd525 (patch) | |
tree | 713c69e926fefa4953fa80fa98bc903ba94f6da3 | |
parent | 0dc517808334e83fa07ed08aef859d598ad4c91e (diff) | |
download | dexon-sol-tools-484312e677d1f1f1b280cdada92acddf5effd525.tar dexon-sol-tools-484312e677d1f1f1b280cdada92acddf5effd525.tar.gz dexon-sol-tools-484312e677d1f1f1b280cdada92acddf5effd525.tar.bz2 dexon-sol-tools-484312e677d1f1f1b280cdada92acddf5effd525.tar.lz dexon-sol-tools-484312e677d1f1f1b280cdada92acddf5effd525.tar.xz dexon-sol-tools-484312e677d1f1f1b280cdada92acddf5effd525.tar.zst dexon-sol-tools-484312e677d1f1f1b280cdada92acddf5effd525.zip |
Remove etherToken from smart contract docs
-rw-r--r-- | packages/website/ts/containers/smart_contracts_documentation.tsx | 3 | ||||
-rw-r--r-- | packages/website/ts/types.ts | 1 | ||||
-rw-r--r-- | packages/website/ts/utils/configs.ts | 3 |
3 files changed, 0 insertions, 7 deletions
diff --git a/packages/website/ts/containers/smart_contracts_documentation.tsx b/packages/website/ts/containers/smart_contracts_documentation.tsx index e32abaea9..34092748b 100644 --- a/packages/website/ts/containers/smart_contracts_documentation.tsx +++ b/packages/website/ts/containers/smart_contracts_documentation.tsx @@ -29,7 +29,6 @@ const docsInfoConfig: DocsInfoConfig = { Sections.Exchange, Sections.TokenRegistry, Sections.ZRXToken, - Sections.EtherToken, Sections.TokenTransferProxy, ], }, @@ -42,13 +41,11 @@ const docsInfoConfig: DocsInfoConfig = { TokenTransferProxy: Sections.TokenTransferProxy, TokenRegistry: Sections.TokenRegistry, ZRXToken: Sections.ZRXToken, - EtherToken: Sections.EtherToken, }, visibleConstructors: [ Sections.Exchange, Sections.TokenRegistry, Sections.ZRXToken, - Sections.EtherToken, Sections.TokenTransferProxy, ], convertToDocAgnosticFormatFn: doxityUtils.convertToDocAgnosticFormat.bind(doxityUtils), diff --git a/packages/website/ts/types.ts b/packages/website/ts/types.ts index be8aea832..e4b05367f 100644 --- a/packages/website/ts/types.ts +++ b/packages/website/ts/types.ts @@ -669,7 +669,6 @@ export enum SmartContractDocSections { TokenTransferProxy = 'TokenTransferProxy', TokenRegistry = 'TokenRegistry', ZRXToken = 'ZRXToken', - EtherToken = 'EtherToken', } // tslint:disable:max-file-line-count diff --git a/packages/website/ts/utils/configs.ts b/packages/website/ts/utils/configs.ts index 69be5d082..4ae40d715 100644 --- a/packages/website/ts/utils/configs.ts +++ b/packages/website/ts/utils/configs.ts @@ -26,21 +26,18 @@ export const configs = { [SmartContractDocSections.Exchange]: '0x12459c951127e0c374ff9105dda097662a027093', [SmartContractDocSections.TokenTransferProxy]: '0x8da0d80f5007ef1e431dd2127178d224e32c2ef4', [SmartContractDocSections.ZRXToken]: '0xe41d2489571d322189246dafa5ebde1f4699f498', - [SmartContractDocSections.EtherToken]: '0x2956356cd2a2bf3202f771f50d3d14a367b48070', [SmartContractDocSections.TokenRegistry]: '0x926a74c5c36adf004c87399e65f75628b0f98d2c', }, [Networks.ropsten]: { [SmartContractDocSections.Exchange]: '0x479cc461fecd078f766ecc58533d6f69580cf3ac', [SmartContractDocSections.TokenTransferProxy]: '0x4e9aad8184de8833365fea970cd9149372fdf1e6', [SmartContractDocSections.ZRXToken]: '0xa8e9fa8f91e5ae138c74648c9c304f1c75003a8d', - [SmartContractDocSections.EtherToken]: '0xc00fd9820cd2898cc4c054b7bf142de637ad129a', [SmartContractDocSections.TokenRegistry]: '0x6b1a50f0bb5a7995444bd3877b22dc89c62843ed', }, [Networks.kovan]: { [SmartContractDocSections.Exchange]: '0x90fe2af704b34e0224bf2299c838e04d4dcf1364', [SmartContractDocSections.TokenTransferProxy]: '0x087Eed4Bc1ee3DE49BeFbd66C662B434B15d49d4', [SmartContractDocSections.ZRXToken]: '0x6ff6c0ff1d68b964901f986d4c9fa3ac68346570', - [SmartContractDocSections.EtherToken]: '0x05d090b51c40b020eab3bfcb6a2dff130df22e9c', [SmartContractDocSections.TokenRegistry]: '0xf18e504561f4347bea557f3d4558f559dddbae7f', }, }, |