Skip to content

Commit

Permalink
Update backend link
Browse files Browse the repository at this point in the history
  • Loading branch information
portdeveloper committed Mar 13, 2024
1 parent 30f3d9e commit a617119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nextjs/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const Home: NextPage = () => {
const fetchAbiFromHeimdall = async (contractAddress: string) => {
setIsFetchingAbi(true);
try {
const response = await fetch(`https://heimdall-api-cool-frog-2068.fly.dev/${network}/${contractAddress}`);
const response = await fetch(`https://heimdall-api.fly.dev/${network}/${contractAddress}`);
const abi = await response.json();
setContractAbi(abi);
setIsAbiAvailable(true);
Expand Down

0 comments on commit a617119

Please sign in to comment.