bytes32.ts 197 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/* External Imports */
import { ethers } from 'ethers'

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