import { MetaMaskInpageProvider } from '@metamask/providers'; export interface Window { ethereum: MetaMaskInpageProvider; } export interface IRinkebyEtherScanResult { LastBlock: string; SafeGasPrice: string; ProposeGasPrice: string; FastGasPrice: string; suggestBaseFee: string; gasUsedRatio: string; } export interface IRinkebyEtherScan { status: string; message: string; result: IRinkebyEtherScanResult; } //# sourceMappingURL=ethereum.d.ts.map