From 9f72ebd67d01e7fa179fac0fb440356b9623f832 Mon Sep 17 00:00:00 2001 From: Shane Jonas Date: Mon, 20 Oct 2025 10:21:30 -0400 Subject: [PATCH] fix: use ethers package name --- docs/flashbots-auction/quick-start.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/flashbots-auction/quick-start.mdx b/docs/flashbots-auction/quick-start.mdx index 93e4cfc3..89195dd7 100644 --- a/docs/flashbots-auction/quick-start.mdx +++ b/docs/flashbots-auction/quick-start.mdx @@ -55,7 +55,7 @@ Next, you need a means to communicate with the Flashbots network. The Flashbots ```ts -const ethers = require("ethers.js"); +const { ethers } = require("ethers"); const { FlashbotsBundleProvider, } = require("@flashbots/ethers-provider-bundle"); @@ -217,7 +217,7 @@ Now that we have a private key to identify ourselves with and a Flashbots provid ```js -const ethers = require("ethers.js"); +const { ethers } = require("ethers"); const { FlashbotsBundleProvider, } = require("@flashbots/ethers-provider-bundle");