laconicd/tests-solidity/suites/staking/test/helpers/constants.js
Brett Sun c9639c3860
tests: add solidity test suites (#487)
* tests: add solidity test suite

* tests: remove require strings

* Update tests-solidity/init-test-node.sh

* Update tests-solidity/init-test-node.sh

Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
2020-09-01 17:16:28 -04:00

11 lines
303 B
JavaScript

const { bn, bigExp } = require('@aragon/contract-helpers-test/numbers')
const DEFAULT_STAKE_AMOUNT = bigExp(120, 18)
module.exports = {
DEFAULT_STAKE_AMOUNT,
DEFAULT_LOCK_AMOUNT: DEFAULT_STAKE_AMOUNT.div(bn(3)),
EMPTY_DATA: '0x',
ZERO_ADDRESS: '0x' + '0'.repeat(40),
ACTIVATED_LOCK: '0x01'
}