aboutsummaryrefslogtreecommitdiffstats
path: root/packages/migrations/src/utils/token_info.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-09-05 03:54:48 +0800
committerGitHub <noreply@github.com>2018-09-05 03:54:48 +0800
commit3524efc41cacbd1de8f7006d231e21b9f55f2509 (patch)
treeb5dc877cb930c3b2c5e4a4cdd5877912f3c312f1 /packages/migrations/src/utils/token_info.ts
parent01210c291c23aae19d201557118f39a8bd970ca0 (diff)
parent192d4b4dbfa3b3e8a1cc73d4f3e0e11074e3ae6b (diff)
downloaddexon-sol-tools-3524efc41cacbd1de8f7006d231e21b9f55f2509.tar
dexon-sol-tools-3524efc41cacbd1de8f7006d231e21b9f55f2509.tar.gz
dexon-sol-tools-3524efc41cacbd1de8f7006d231e21b9f55f2509.tar.bz2
dexon-sol-tools-3524efc41cacbd1de8f7006d231e21b9f55f2509.tar.lz
dexon-sol-tools-3524efc41cacbd1de8f7006d231e21b9f55f2509.tar.xz
dexon-sol-tools-3524efc41cacbd1de8f7006d231e21b9f55f2509.tar.zst
dexon-sol-tools-3524efc41cacbd1de8f7006d231e21b9f55f2509.zip
Merge pull request #1055 from 0xProject/deployment/2.0.0-beta-testnet/ropsten
Ropsten/Kovan Contract deployment
Diffstat (limited to 'packages/migrations/src/utils/token_info.ts')
-rw-r--r--packages/migrations/src/utils/token_info.ts18
1 files changed, 16 insertions, 2 deletions
diff --git a/packages/migrations/src/utils/token_info.ts b/packages/migrations/src/utils/token_info.ts
index 7975c2174..200f94896 100644
--- a/packages/migrations/src/utils/token_info.ts
+++ b/packages/migrations/src/utils/token_info.ts
@@ -2,6 +2,20 @@ import { BigNumber, NULL_BYTES } from '@0xproject/utils';
import { ERC20Token, ERC721Token } from '../types';
+export const etherTokenByNetwork: { [networkId: number]: { address: string } } = {
+ 3: {
+ address: '0xc778417e063141139fce010982780140aa0cd5ab',
+ },
+ 4: {
+ address: '0xc778417e063141139fce010982780140aa0cd5ab',
+ },
+ 42: {
+ address: '0xd0a1e359811322d97991e03f863a0c30c2cf029c',
+ },
+ 50: {
+ address: '',
+ },
+};
export const erc20TokenInfo: ERC20Token[] = [
{
name: 'Augur Reputation Token',
@@ -42,7 +56,7 @@ export const erc20TokenInfo: ERC20Token[] = [
export const erc721TokenInfo: ERC721Token[] = [
{
- name: 'CryptoKitties',
- symbol: 'CK',
+ name: '0xen ERC721',
+ symbol: '0xen',
},
];