Skip to content

Commit ad6d10e

Browse files
committed
Use proper case for getParentBaseFeeEstimate
1 parent 62285f3 commit ad6d10e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/actions/getParentBaseFeeEstimate.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ import { Chain, PublicClient, ReadContractReturnType, Transport } from 'viem';
22
import { arbGasInfo } from '../contracts';
33

44
type ArbGasInfoABI = typeof arbGasInfo.abi;
5-
export type GetParentbaseFeeEstimateParameters = void;
5+
export type GetParentBaseFeeEstimateParameters = void;
66

7-
export type GetParentbaseFeeEstimateReturnType = ReadContractReturnType<
7+
export type GetParentBaseFeeEstimateReturnType = ReadContractReturnType<
88
ArbGasInfoABI,
99
'getL1BaseFeeEstimate'
1010
>;
1111

12-
export async function getParentbaseFeeEstimate<TChain extends Chain | undefined>(
12+
export async function getParentBaseFeeEstimate<TChain extends Chain | undefined>(
1313
client: PublicClient<Transport, TChain>,
14-
): Promise<GetParentbaseFeeEstimateReturnType> {
14+
): Promise<GetParentBaseFeeEstimateReturnType> {
1515
return client.readContract({
1616
abi: arbGasInfo.abi,
1717
functionName: 'getL1BaseFeeEstimate',

0 commit comments

Comments
 (0)