Commit 14062b12 authored by Kelvin Fichter's avatar Kelvin Fichter

feat: L2Provider test scaffold

parent 2b743678
/* 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