/* External Imports */
import { ethers } from 'ethers'
import { defaultAccounts } from 'ethereum-waffle'
export const FORCE_INCLUSION_PERIOD_SECONDS = 600
export const DEFAULT_ACCOUNTS = defaultAccounts
export const DEFAULT_ACCOUNTS_HARDHAT = defaultAccounts.map((account) => {
return {
balance: ethers.BigNumber.from(account.balance).toHexString(),
privateKey: account.secretKey,
}
})
export const OVM_TX_GAS_LIMIT = 10_000_000
export const RUN_OVM_TEST_GAS = 20_000_000
-
smartcontracts authored
* pkg: Add batch submitter * chore(batch-submitter): fix configs * chore(batch-submitter): use latest smock * fix: use latest typescript * chore: disable prettier in incompat lines Long term fixed by switching to eslint * perf: only test packages that have changed since master https://github.com/lerna/lerna/tree/main/core/filter-options\#--since-refCo-authored-by:
Georgios Konstantopoulos <me@gakonst.com>
550a2f69