Commit 0f5c810a authored by smartcontracts's avatar smartcontracts Committed by GitHub

Merge pull request #1910 from ethereum-optimism/sc/l2-provider-scaffold

feat: L2Provider test scaffold
parents 3079a26a 14062b12
/* eslint-disable @typescript-eslint/no-empty-function */
import './setup'
describe('L2Provider', () => {
describe('getL1GasPrice', () => {
it('should query the GasPriceOracle contract', () => {})
})
describe('estimateL1Gas', () => {
it('should query the GasPriceOracle contract', () => {})
})
describe('estimateL1GasCost', () => {
it('should multiply the estimated L1 gas cost by the L1 gas price', () => {})
})
describe('estimateL2GasCost', () => {
it('should multiply the estimated L2 gas cost by the L1 gas price', () => {})
})
describe('estimateTotalGasCost', () => {
it('should be the sum of the L1 and L2 gas cost estimates', () => {})
})
})
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