-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fbccc75
commit 91cee07
Showing
7 changed files
with
281 additions
and
6 deletions.
There are no files selected for viewing
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,92 @@ | ||
import { Address, ConnectButton, Connector, NFTCard } 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 } 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 result = useReadContract({ | ||
abi: [ | ||
{ | ||
type: 'function', | ||
name: 'totalSupply', | ||
stateMutability: 'view', | ||
inputs: [], | ||
outputs: [{ name: 'supply', type: 'uint256' }], | ||
}, | ||
], | ||
address: '0xEcd0D12E21805803f70de03B72B1C162dB0898d9', | ||
functionName: 'totalSupply', | ||
}); | ||
const { writeContract } = useWriteContract(); | ||
|
||
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 () => { | ||
return ( | ||
<WagmiWeb3ConfigProvider config={config} wallets={[MetaMask()]}> | ||
<Address format address="0xEcd0D12E21805803f70de03B72B1C162dB0898d9" /> | ||
<NFTCard address="0x79fcdef22feed20eddacbb2587640e45491b757f" tokenId={8540} /> | ||
<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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.