• Georgios Konstantopoulos's avatar
    Import contracts (#18) · 2ff18bb4
    Georgios Konstantopoulos authored
    * feat: add contracts
    
    * fix: configure tsconfig and replace build => dist
    
    * chore: remove CI files
    
    * chore: use monorepo tslint / prettier
    2ff18bb4
bytes32.ts 197 Bytes
/* External Imports */
import { ethers } from 'ethers'

export const DUMMY_BYTES32: string[] = Array.from(
  {
    length: 10,
  },
  (_, i) => {
    return ethers.utils.keccak256(`0x0${i}`)
  }
)