import { ethers } from "ethers"; export type RpcProvider = ethers.JsonRpcProvider; export type Contract = ethers.Contract; export type ContractRunner = ethers.ContractRunner; export type Interface = ethers.Interface; export type WalletV6 = ethers.Signer | ethers.Wallet; export type EvmWallet = WalletV6; export type Transaction = ethers.Transaction; export type TransactionResponse = ethers.TransactionResponse & { depositTxVerificationSignature?: string; }; export type TransactionRequest = ethers.TransactionRequest; export type GasData = { gasLimit: string; gasPrice?: string; maxPriorityFeePerGas?: string; maxFeePerGas?: string; };