• 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
hardhat.config.ts 279 Bytes
import { HardhatUserConfig } from 'hardhat/config'

import '@nomiclabs/hardhat-ethers'
import '@nomiclabs/hardhat-waffle'

const config: HardhatUserConfig = {
  paths: {
    sources: './test/test-contracts',
  },
  solidity: {
    version: '0.7.6',
  },
}

export default config