We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{ error: { message: 'Invalid params', code: -32700 } }
Thus, if called getUserStats() works without any issues.
getUserStats()
import { FlashbotsBundleProvider } from "@flashbots/ethers-provider-bundle"; export const getUserStats = async (flashbotsProvider: FlashbotsBundleProvider) => { const [userStats] = await Promise.all([flashbotsProvider.getUserStatsV2()]); return userStats; } Where const provider = new providers.JsonRpcProvider(process.env.ETHEREUM_RPC_URL, chainID); const authSigner = generateRandomWallet(); const flashbotsProvider = await FlashbotsBundleProvider.create( provider, // a normal ethers.js provider, to perform gas estimiations and nonce lookups authSigner // ethers.js signer wallet, only for signing request payloads, not transactions )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
{ error: { message: 'Invalid params', code: -32700 } }
Thus, if called
getUserStats()
works without any issues.The text was updated successfully, but these errors were encountered: