Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modularized smart contract interact function util #5

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/dashboard/navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import Link from "next/link";
import { Fragment, useEffect, useState } from "react";
import { useAccount, useConnect, useDisconnect, useNetwork } from "wagmi";
import { Button } from "../button";
import { TransactionContext } from '../../components/web3Wrap'

const navigation = [
{ name: "Dashboard", href: Routes.dashboard.landing, current: true },
Expand Down
51 changes: 51 additions & 0 deletions src/components/web3Wrap.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import React, { useState, useEffect } from 'react'
import { ethers } from 'ethers'

export const TransactionContext = React.createContext({} as any);

export const TransactionProvider = ({ children }) => {
const [connectedAccount, setConnectedAccount] = useState(null)

const checkIfWalletConnected = async () => {
try {
if(!window.ethereum) return alert("Please install metamask")
console.log("check window ethereum: ", window.ethereum)
const accounts = await window.ethereum.request({ method: 'eth_accounts' })

if (accounts.length) {
setConnectedAccount(accounts[0]);
} else {
console.log('No accounts found')
}
console.log("Log accounts: ", accounts)
} catch (error) {
console.log(error)
}
}

// const checkIfWalletChanged = async () => {
// ethereum.on('accountsChanged', function (accounts) {
// getAccount();
// })
// }

useEffect(() =>{
checkIfWalletConnected()
},[connectedAccount])

const connectWallet = async () => {
try {
if(!window.ethereum) return alert("Please install metamask")
const accounts = await window.ethereum.request({ method: 'eth_requestAccounts' })
setConnectedAccount(accounts[0])
} catch (error) {
console.log(error)
throw new Error('No ethereum object.')
}
}
return (
<TransactionContext.Provider value={{ connectWallet, connectedAccount }}>
{children}
</TransactionContext.Provider>
)
}
7 changes: 1 addition & 6 deletions src/pages/dashboard/dao.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,7 @@ export default function Dao() {
address: contractAbi.DataDaoManager[3141].contractAddress as Address,
abi: contractAbi.DataDaoManager[3141].contractABI,
functionName: "createNewInstitutionDAO",
args: [
{
name: "FirstDAo",
initialOwners: ["0xa2D41d7e830F3a5c09ec04cC800BC2bA57665d6B"],
},
],
args: [ "FirstDAo", ["0xa2D41d7e830F3a5c09ec04cC800BC2bA57665d6B"]],
});

const { data, isLoading, isSuccess, write } = useContractWrite(config);
Expand Down
4 changes: 4 additions & 0 deletions src/utils/Web3AuthConnectorInstance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ const iconUrl = "https://web3auth.io/docs/contents/logo-ethereum.png";

export const Web3AuthConnectorInstance = (chains: Chain[]) => {
console.log("chain", chains);
console.log(
"process.env.NEXT_PUBLIC_WEB3_AUTH_CLIENT_ID",
process.env.NEXT_PUBLIC_WEB3_AUTH_CLIENT_ID
);
// Create Web3Auth Instance
const web3AuthInstance = new Web3Auth({
clientId: process.env.NEXT_PUBLIC_WEB3_AUTH_CLIENT_ID,
Expand Down
Loading