Skip to content

Commit 368fc70

Browse files
nhestrompiajaybuidl
authored andcommitted
fix(web): price-fetching
1 parent f1ff5e6 commit 368fc70

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

web/src/hooks/useContractAddress.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ export const useContractAddress = <TAbi extends Abi>(
1515
};
1616

1717
export const usePNKAddress = () => {
18-
return useContractAddress<typeof pinakionV2ABI>(getPinakionV2)?.address;
18+
// return `ethereum:${useContractAddress<typeof pinakionV2ABI>(getPinakionV2)?.address}`;
19+
return "ethereum:0x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d";
1920
};
2021

2122
export const useWETHAddress = () => {
22-
return useContractAddress<typeof wethABI>(getWeth)?.address;
23+
// return `ethereum:${useContractAddress<typeof wethABI>(getWeth)?.address}`;
24+
return "ethereum:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2";
2325
};
2426

2527
export const usePNKFaucetAddress = () => {

0 commit comments

Comments
 (0)