Skip to content

Commit

Permalink
fix: UD resolve API URL
Browse files Browse the repository at this point in the history
  • Loading branch information
creamwhip authored Aug 8, 2023
1 parent cfafbe1 commit 6d9ea3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const TxHistoriesItem = ({
const reverseUD = async (search_value: String) => {
if (!search_value) return search_value;

const API_URL = 'https://resolve.unstoppabledomains.com/reverse/';
const API_URL = 'https://api.unstoppabledomains.com/resolve/reverse/';
const API_KEY1 = process.env.NEXT_PUBLIC_UD_API_KEY;
try {
var res = await axios.get(API_URL + search_value, {
Expand Down

1 comment on commit 6d9ea3e

@vercel
Copy link

@vercel vercel bot commented on 6d9ea3e Aug 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.