forked from cerc-io/laconicd-deprecated
c9639c3860
* 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>
11 lines
303 B
JavaScript
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'
|
|
}
|