• smartcontracts's avatar
    feat[message-relayer]: relay tx generator (#952) · 86708bb5
    smartcontracts authored
    * feat[message-relayer]: relay tx generator
    
    * whoops, I burned our infura key
    
    * fix minor bug
    
    * add comments
    
    * add more comments and clean stuff up
    
    * add empty test descriptions
    
    * add tests
    
    * move smock to dev deps
    
    * chore: add changeset
    
    * minor cleanup to merkle tree proof function
    
    * use bignumber math to avoid nested await
    
    * use a better interface
    
    * minor fixes and simplifications
    86708bb5
setup.ts 303 Bytes
/* External Imports */
import chai = require('chai')
import Mocha from 'mocha'
import { solidity } from 'ethereum-waffle'
import chaiAsPromised from 'chai-as-promised'

chai.use(solidity)
chai.use(chaiAsPromised)
const should = chai.should()
const expect = chai.expect

export { should, expect, Mocha }