Fix package.json
This commit is contained in:
@@ -4,6 +4,7 @@ const DUMMY_TOKEN_NAME = '';
|
||||
const DUMMY_TOKEN_SYMBOL = '';
|
||||
const DUMMY_TOKEN_DECIMALS = 18;
|
||||
const DUMMY_TOKEN_TOTAL_SUPPLY = 0;
|
||||
const TESTRPC_INITIAL_BALANCE_HEX = parseInt('100000000000000000000', 16);
|
||||
|
||||
export const constants = {
|
||||
INVALID_OPCODE: 'invalid opcode',
|
||||
@@ -14,22 +15,21 @@ export const constants = {
|
||||
MAX_TOKEN_APPROVE_GAS: 60000,
|
||||
DUMMY_TOKEN_ARGS: [DUMMY_TOKEN_NAME, DUMMY_TOKEN_SYMBOL, DUMMY_TOKEN_DECIMALS, DUMMY_TOKEN_TOTAL_SUPPLY],
|
||||
TESTRPC_PORT: 8545,
|
||||
TESTRPC_INITIAL_BALANCE_HEX: parseInt('100000000000000000000', 16),
|
||||
TESTRPC_ACCOUNTS: [
|
||||
{
|
||||
balance: this.TESTRPC_INITIAL_BALANCE_HEX,
|
||||
balance: TESTRPC_INITIAL_BALANCE_HEX,
|
||||
secretKey: ethUtil.sha3('secret0'),
|
||||
},
|
||||
{
|
||||
balance: this.TESTRPC_INITIAL_BALANCE_HEX,
|
||||
balance: TESTRPC_INITIAL_BALANCE_HEX,
|
||||
secretKey: ethUtil.sha3('secret1'),
|
||||
},
|
||||
{
|
||||
balance: this.TESTRPC_INITIAL_BALANCE_HEX,
|
||||
balance: TESTRPC_INITIAL_BALANCE_HEX,
|
||||
secretKey: ethUtil.sha3('secret2'),
|
||||
},
|
||||
{
|
||||
balance: this.TESTRPC_INITIAL_BALANCE_HEX,
|
||||
balance: TESTRPC_INITIAL_BALANCE_HEX,
|
||||
secretKey: ethUtil.sha3('secret3'),
|
||||
},
|
||||
],
|
||||
|
Reference in New Issue
Block a user