async quote(encodePath, tokenIn, tokenOut, amountIn, endPoint) {
const quoterContract = new ethers.Contract(
'0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6',
Quoter.abi,
this.getMainnetProvider(endPoint)
)
let tokenAmountIn = this.fromReadableAmount(amountIn, tokenIn.decimals).toString()
const quotedAmountOut = await quoterContract.callStatic.quoteExactInput(
encodePath,
tokenAmountIn
)
return this.toReadableAmount(quotedAmountOut, tokenOut.decimals)
}
May I ask what is the contract address of the quote contract in arbitration goerli? If not, how can I obtain the exchange rate between currencies?