constants.ts 435 Bytes
Newer Older
1 2
import { ethers } from 'ethers'

kf's avatar
kf committed
3 4 5 6
export const DUMMY_MESSAGE = {
  target: '0x' + '11'.repeat(20),
  sender: '0x' + '22'.repeat(20),
  message: '0x' + '33'.repeat(64),
7 8 9 10 11 12 13 14 15 16
  messageNonce: ethers.BigNumber.from(1234),
  value: ethers.BigNumber.from(0),
  minGasLimit: ethers.BigNumber.from(5678),
}

export const DUMMY_EXTENDED_MESSAGE = {
  ...DUMMY_MESSAGE,
  logIndex: 0,
  blockNumber: 1234,
  transactionHash: '0x' + '44'.repeat(32),
kf's avatar
kf committed
17
}