@0x/contracts-test-utils: Increase deployment numbers for dummy tokens.

This commit is contained in:
Lawrence Forman 2019-05-15 00:24:13 -04:00 committed by Amir Bandeali
parent 3381ab5093
commit d8fd61955c
2 changed files with 10 additions and 6 deletions

View File

@ -21,6 +21,10 @@
{
"note": "Inherit `OrderStatus` from `@0x/types`",
"pr": 1761
},
{
"note": "Update types for arbitrary fee tokens",
"pr": "TODO"
}
]
},

View File

@ -35,12 +35,12 @@ export const constants = {
DUMMY_TOKEN_DECIMALS: new BigNumber(18),
DUMMY_TOKEN_TOTAL_SUPPLY: new BigNumber(0),
NULL_BYTES: '0x',
NUM_DUMMY_ERC20_TO_DEPLOY: 3,
NUM_DUMMY_ERC721_TO_DEPLOY: 2,
NUM_ERC721_TOKENS_TO_MINT: 2,
NUM_DUMMY_ERC1155_CONTRACTS_TO_DEPLOY: 2,
NUM_ERC1155_FUNGIBLE_TOKENS_MINT: 3,
NUM_ERC1155_NONFUNGIBLE_TOKENS_MINT: 3,
NUM_DUMMY_ERC20_TO_DEPLOY: 4,
NUM_DUMMY_ERC721_TO_DEPLOY: 4,
NUM_ERC721_TOKENS_TO_MINT: 4,
NUM_DUMMY_ERC1155_CONTRACTS_TO_DEPLOY: 4,
NUM_ERC1155_FUNGIBLE_TOKENS_MINT: 4,
NUM_ERC1155_NONFUNGIBLE_TOKENS_MINT: 4,
NULL_ADDRESS: '0x0000000000000000000000000000000000000000',
UNLIMITED_ALLOWANCE_IN_BASE_UNITS: new BigNumber(2).pow(256).minus(1),
TESTRPC_PRIVATE_KEYS: _.map(TESTRPC_PRIVATE_KEYS_STRINGS, privateKeyString => ethUtil.toBuffer(privateKeyString)),