fix: clean up unwanted imports + check initial state for testnet
This commit is contained in:
parent
6b040dbfe1
commit
0d3d25d521
@ -8,7 +8,7 @@ import { ERROR, getAppMetadata } from "@walletconnect/utils";
|
|||||||
import * as encoding from "@walletconnect/encoding";
|
import * as encoding from "@walletconnect/encoding";
|
||||||
import { apiGetChainNamespace, ChainsMap } from "caip-api";
|
import { apiGetChainNamespace, ChainsMap } from "caip-api";
|
||||||
import { formatDirectSignDoc, stringifySignDocValues } from "cosmos-wallet";
|
import { formatDirectSignDoc, stringifySignDocValues } from "cosmos-wallet";
|
||||||
import { BigNumber, constants } from "ethers";
|
import { BigNumber } from "ethers";
|
||||||
|
|
||||||
import Banner from "./components/Banner";
|
import Banner from "./components/Banner";
|
||||||
import Blockchain from "./components/Blockchain";
|
import Blockchain from "./components/Blockchain";
|
||||||
@ -46,7 +46,6 @@ import Toggle from "./components/Toggle";
|
|||||||
import RequestModal from "./modals/RequestModal";
|
import RequestModal from "./modals/RequestModal";
|
||||||
import PairingModal from "./modals/PairingModal";
|
import PairingModal from "./modals/PairingModal";
|
||||||
import PingModal from "./modals/PingModal";
|
import PingModal from "./modals/PingModal";
|
||||||
import { setUncaughtExceptionCaptureCallback } from "process";
|
|
||||||
|
|
||||||
const SLayout = styled.div`
|
const SLayout = styled.div`
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -120,7 +119,7 @@ export default function App() {
|
|||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
const [pending, setPending] = useState(false);
|
const [pending, setPending] = useState(false);
|
||||||
const [fetching, setFetching] = useState(false);
|
const [fetching, setFetching] = useState(false);
|
||||||
const [isTestnet, setIsTestnet] = useState(true);
|
const [isTestnet, setIsTestnet] = useState(getInitialStateTestnet());
|
||||||
|
|
||||||
const [modal, setModal] = useState("");
|
const [modal, setModal] = useState("");
|
||||||
const [client, setClient] = useState<Client>();
|
const [client, setClient] = useState<Client>();
|
||||||
|
@ -2,7 +2,6 @@ import * as React from "react";
|
|||||||
import * as ReactDOM from "react-dom";
|
import * as ReactDOM from "react-dom";
|
||||||
import { createGlobalStyle } from "styled-components";
|
import { createGlobalStyle } from "styled-components";
|
||||||
|
|
||||||
import App from "./App";
|
|
||||||
import HooksApp from "./HooksApp";
|
import HooksApp from "./HooksApp";
|
||||||
import { globalStyle } from "./styles";
|
import { globalStyle } from "./styles";
|
||||||
const GlobalStyle = createGlobalStyle`
|
const GlobalStyle = createGlobalStyle`
|
||||||
|
Loading…
Reference in New Issue
Block a user