From 52646ee4e39941aaaf3cdab74b7ff5b265588201 Mon Sep 17 00:00:00 2001 From: Typo Fix Bot Date: Sun, 31 May 2026 20:21:12 +0000 Subject: [PATCH] fix: add missing ethers import in flashblocks Ethers.js example --- docs/base-chain/flashblocks/app-integration.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/base-chain/flashblocks/app-integration.mdx b/docs/base-chain/flashblocks/app-integration.mdx index d7b417fe8..20ea39e1f 100644 --- a/docs/base-chain/flashblocks/app-integration.mdx +++ b/docs/base-chain/flashblocks/app-integration.mdx @@ -167,6 +167,8 @@ console.log(`Time difference: ${confirmTime - submissionTime}ms`); ### [Ethers](https://github.com/ethers-io/ethers.js) ```jsx +import { ethers } from "ethers"; + const providerA = new ethers.JsonRpcProvider( "https://sepolia.base.org" );