10000 fixing footer · usecyclone/todo-privy@96afe55 · GitHub
[go: up one dir, main page]

Skip to content

Commit

Permalink
fixing footer
Browse files Browse the repository at this point in the history
  • Loading branch information
JeronimoC23 committed Mar 23, 2023
1 parent 72e6bc0 commit 96afe55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
15 changes: 1 addition & 14 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,8 @@ const style = {
};

const TRACKING_ID = String(process.env.REACT_APP_TRACKING_ID)
// const chains = [polygonMumbai];

// const projectId = String(process.env.REACT_APP_WC_PROJECT_ID)

// // Wagmi client
// const { provider } = configureChains(chains, [
// walletConnectProvider({ projectId: projectId }),
// ]);
// const wagmiClient = createClient({
// autoConnect: true,
// connectors: modalConnectors({ appName: "web3Modal", chains }),
// provider,
// });

// // Web3Modal Ethereum Client
// const ethereumClient = new EthereumClient(wagmiClient, chains);

export default function App() {
const [deployed, setDeployed] = React.useState(false);
Expand All @@ -62,6 +48,7 @@ export default function App() {
const handleClose = () => setOpen(false);
const { ready, authenticated, user, login } = usePrivy()


function requestDeployToGateway(address: string) {
const url = `${process.env.REACT_APP_GRAPHQL_GATEWAY_BASE_URL}/deploy`
const payload = {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function Footer(props:{ contractAddress: string | undefined}) {
<p>This is a example ToDo app that show the power of Cedalio's technology. This is only a demo app using a Testnet. <strong>All the information here is stored in a smart contract</strong>. If you want to learn more please clic here. Or if you have some feedback please feel free to reach out us!</p>
{props.contractAddress ?
<div className="address">
<p>Smart Contract Address: <a href={contractUrl} target='_blank' rel="noreferrer">0xdd86a634c8448e2c60984d7b74e42017293b8caf</a></p>
<p>Smart Contract Address: <a href={contractUrl} target='_blank' rel="noreferrer">{props.contractAddress}</a></p>
<img src="polygon.png" alt="polygon icon" />
</div>
: null}
Expand Down

0 comments on commit 96afe55

Please sign in to comment.
0