|
|
|
@ -61,6 +61,7 @@ const searchNFTItems = async ({ limit, offset }: SearchNFTItemsParams) => {
|
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
console.log(`returning nft_items`) |
|
|
|
|
return data.nft_items |
|
|
|
|
} catch (e) { |
|
|
|
|
console.log("error fetch items", e) |
|
|
|
@ -72,9 +73,9 @@ const portion = 500
|
|
|
|
|
|
|
|
|
|
const fetchTonSite = async (url: string) => { |
|
|
|
|
try { |
|
|
|
|
const urlToFetch = `http://${url}/` |
|
|
|
|
const urlToFetch = `http://${url}.run/` |
|
|
|
|
// вот здесь ошибка с get-запросом в .ton сайты
|
|
|
|
|
const response = await axios.get(urlToFetch, { |
|
|
|
|
proxy: getTonProxy(), |
|
|
|
|
timeout: 30000 |
|
|
|
|
}) |
|
|
|
|
if (!response.data) { |
|
|
|
@ -83,6 +84,7 @@ const fetchTonSite = async (url: string) => {
|
|
|
|
|
} |
|
|
|
|
return url |
|
|
|
|
} catch (e) { |
|
|
|
|
//console.log("throwing excep")
|
|
|
|
|
// console.log('restart fetch domains',e)
|
|
|
|
|
throw url |
|
|
|
|
} |
|
|
|
|