forked from WTFAcademy/WTF-Dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update demo for add eip6963 and wallet connect
- Loading branch information
tingzhao.ytz
committed
Mar 29, 2024
1 parent
260361b
commit 6405852
Showing
7 changed files
with
268 additions
and
26 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
import { | ||
Address, | ||
ConnectButton, | ||
Connector, | ||
NFTCard, | ||
useAccount, | ||
} from "@ant-design/web3"; | ||
import { MetaMask, WagmiWeb3ConfigProvider } from "@ant-design/web3-wagmi"; | ||
import { Button, message } from "antd"; | ||
import { parseEther } from "viem"; | ||
import { | ||
createConfig, | ||
http, | ||
useReadContract, | ||
useWriteContract, | ||
useWatchContractEvent, | ||
} from "wagmi"; | ||
import { mainnet } from "wagmi/chains"; | ||
import { injected } from "wagmi/connectors"; | ||
|
||
const config = createConfig({ | ||
chains: [mainnet], | ||
transports: { | ||
[mainnet.id]: http(), | ||
}, | ||
connectors: [ | ||
injected({ | ||
target: "metaMask", | ||
}), | ||
], | ||
}); | ||
|
||
const CallTest = () => { | ||
const { account } = useAccount(); | ||
const result = useReadContract({ | ||
abi: [ | ||
{ | ||
type: "function", | ||
name: "balanceOf", | ||
stateMutability: "view", | ||
inputs: [{ name: "account", type: "address" }], | ||
outputs: [{ type: "uint256" }], | ||
}, | ||
], | ||
// Goerli test contract 0x418325c3979b7f8a17678ec2463a74355bdbe72c | ||
address: "0xEcd0D12E21805803f70de03B72B1C162dB0898d9", | ||
functionName: "balanceOf", | ||
args: [account?.address as `0x${string}`], | ||
}); | ||
const { writeContract } = useWriteContract(); | ||
|
||
useWatchContractEvent({ | ||
address: "0xEcd0D12E21805803f70de03B72B1C162dB0898d9", | ||
abi: [ | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: false, | ||
internalType: "address", | ||
name: "minter", | ||
type: "address", | ||
}, | ||
{ | ||
indexed: false, | ||
internalType: "uint256", | ||
name: "amount", | ||
type: "uint256", | ||
}, | ||
], | ||
name: "Minted", | ||
type: "event", | ||
}, | ||
], | ||
eventName: "Minted", | ||
onLogs() { | ||
message.success("new minted!"); | ||
}, | ||
}); | ||
|
||
return ( | ||
<div> | ||
{result.data?.toString()} | ||
<Button | ||
onClick={() => { | ||
writeContract( | ||
{ | ||
abi: [ | ||
{ | ||
type: "function", | ||
name: "mint", | ||
stateMutability: "payable", | ||
inputs: [ | ||
{ | ||
internalType: "uint256", | ||
name: "quantity", | ||
type: "uint256", | ||
}, | ||
], | ||
outputs: [], | ||
}, | ||
], | ||
address: "0xEcd0D12E21805803f70de03B72B1C162dB0898d9", | ||
functionName: "mint", | ||
args: [1], | ||
value: parseEther("0.01"), | ||
}, | ||
{ | ||
onSuccess: () => { | ||
message.success("Mint Success"); | ||
}, | ||
onError: (err) => { | ||
message.error(err.message); | ||
}, | ||
} | ||
); | ||
}} | ||
> | ||
mint | ||
</Button> | ||
</div> | ||
); | ||
}; | ||
|
||
export default function Web3() { | ||
return ( | ||
<WagmiWeb3ConfigProvider | ||
config={config} | ||
wallets={[MetaMask()]} | ||
eip6963={{ | ||
autoAddInjectedWallets: true, | ||
}} | ||
> | ||
<Address format address="0xEcd0D12E21805803f70de03B72B1C162dB0898d9" /> | ||
<NFTCard | ||
address="0xEcd0D12E21805803f70de03B72B1C162dB0898d9" | ||
tokenId={641} | ||
/> | ||
<Connector> | ||
<ConnectButton /> | ||
</Connector> | ||
<CallTest /> | ||
</WagmiWeb3ConfigProvider> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters