Fixed one small typo that broke the build - added the provisional router / smart contract address.

This commit is contained in:
StockiP
2022-11-05 19:44:58 +01:00
parent 90ef498adb
commit 264707d843
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ const App = () => {
<div className="green_gradient" /> <div className="green_gradient" />
<div className={styles.exchange}> <div className={styles.exchange}>
{account ? ( {account ? (
loading ? ( poolsLoading ? (
<Loader title="Loading pools, please wait!" /> <Loader title="Loading pools, please wait!" />
) : <Exchange pools = {pools}/> ) : <Exchange pools = {pools}/>
) : <Loader title="Please connect your wallet!"/>} ) : <Loader title="Please connect your wallet!"/>}

View File

@@ -1,6 +1,6 @@
import { Goerli } from "@usedapp/core"; import { Goerli } from "@usedapp/core";
export const ROUTER_ADDRESS = "[YOUR ADDRESS HERE]"; export const ROUTER_ADDRESS = "0x064E4De4400401bD78a3bC67EE76e059D443b978";
export const DAPP_CONFIG = { export const DAPP_CONFIG = {
readOnlyChainId: Goerli.chainId, readOnlyChainId: Goerli.chainId,