Commit f9fee446 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

contracts-bedrock: move DepositTx to core-utils (#2971)

This will allow the `DepositTx` class to be more easily
reusable across projects.
Co-authored-by: default avatarmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
parent 7e0c9b85
---
'@eth-optimism/contracts-bedrock': patch
'@eth-optimism/core-utils': patch
---
Move the `DepositTx` type to `core-utils`. This way it can be more easily used across projects
export * from './utils'
export * from './generateProofs'
export * from './constants'
export * from './utils'
export * from './generateProofs'
export * from './constants'
/*
* Copyright (c) 2022, OP Labs PBC (MIT License)
* https://github.com/ethereum-optimism/optimism
*/
import { task, types } from 'hardhat/config'
import { providers, utils, Wallet, Event } from 'ethers'
import dotenv from 'dotenv'
import 'hardhat-deploy'
import { DepositTx } from '../src'
import '@nomiclabs/hardhat-ethers'
import { DepositTx } from '@eth-optimism/core-utils'
dotenv.config()
......
......@@ -7,3 +7,4 @@ export * from './batch-encoding'
export * from './fees'
export * from './rollup-types'
export * from './op-node'
export * from './deposit-transaction'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment