We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1ff5e6 commit 368fc70Copy full SHA for 368fc70
web/src/hooks/useContractAddress.tsx
@@ -15,11 +15,13 @@ export const useContractAddress = <TAbi extends Abi>(
15
};
16
17
export const usePNKAddress = () => {
18
- return useContractAddress<typeof pinakionV2ABI>(getPinakionV2)?.address;
+ // return `ethereum:${useContractAddress<typeof pinakionV2ABI>(getPinakionV2)?.address}`;
19
+ return "ethereum:0x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d";
20
21
22
export const useWETHAddress = () => {
- return useContractAddress<typeof wethABI>(getWeth)?.address;
23
+ // return `ethereum:${useContractAddress<typeof wethABI>(getWeth)?.address}`;
24
+ return "ethereum:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2";
25
26
27
export const usePNKFaucetAddress = () => {
0 commit comments