docs icon indicating copy to clipboard operation
docs copied to clipboard

How to find the Quoter Contract of Sepolia Testnet?

Open liubin595338764 opened this issue 1 year ago • 5 comments

Hello, I am using the V3 SDK to getting a quote. It uses the 0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6 Quoter Contract on the Ethereum Mainnet for querying quotes.

However, I cannot find which Quoter Contract should be used on the Sepolia testnet?

Please kindly let me know.

// constants.ts
export const QUOTER_CONTRACT_ADDRESS =  '0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6'

// [quote.ts](https://github.com/Uniswap/examples/blob/main/v3-sdk/quoting/src/libs/quote.ts)
const quoterContract = new ethers.Contract(
  QUOTER_CONTRACT_ADDRESS,
  Quoter.abi,
  getProvider()
)

liubin595338764 avatar Jan 05 '24 08:01 liubin595338764