diff --git a/README.md b/README.md index ddc86ce8..a82c0e70 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,9 @@ This can only work for verified contracts. `Smart-contracts` endpoint in blocksc [Blockscout being open-source and having a token balances sdk](https://stackoverflow.com/a/79314977/13943679) -### BlockScout +[BlockScout Chains](https://www.blockscout.com/chains-and-projects) + +### BlockScout Bugs and Feature Requests - [BlockScout Tx API Feedback request](https://blockscout.canny.io/feedback/p/what-is-the-meaning-behind-tx-api-outputs) @@ -55,7 +57,9 @@ This can only work for verified contracts. `Smart-contracts` endpoint in blocksc - [Add Explicit Pagination in get requests](https://blockscout.canny.io/feature-requests/p/add-explicit-pagination-in-get-requests) -- [BlockScout Chains](https://www.blockscout.com/chains-and-projects) +#### Rest API Bugs + +[Duplciate transactions](https://blockscout.canny.io/feedback/p/duplicate-variables-when-fetching-transactions) and linked [rest api issue in docs](https://github.com/blockscout/docs/issues/366) ### Etherscan diff --git a/with-tailwindcss-app/package.json b/with-tailwindcss-app/package.json index c961dc52..951fe02b 100644 --- a/with-tailwindcss-app/package.json +++ b/with-tailwindcss-app/package.json @@ -9,7 +9,7 @@ "prettier:write": "prettier --write \"**/*.{ts,tsx}\"" }, "dependencies": { - "@evmexplorer/blockscout": "0.0.15", + "@evmexplorer/blockscout": "0.0.16", "@evmexplorer/uniswap": "0.0.6", "@evmexplorer/utility": "0.0.5", "@headlessui/react": "^2.2.0", diff --git a/with-tailwindcss-app/pages/transactions/[network]/[hash].tsx b/with-tailwindcss-app/pages/transactions/[network]/[hash].tsx index 1cedf200..1c785ae7 100644 --- a/with-tailwindcss-app/pages/transactions/[network]/[hash].tsx +++ b/with-tailwindcss-app/pages/transactions/[network]/[hash].tsx @@ -120,9 +120,11 @@ export const TransactionPage: NextPage = () => { {parseNumber(hashData.blockNumber)}

-

- {new Date(transactionData.timestamp).toLocaleString()} -

+ {transactionData.timestamp && ( +

+ {new Date(transactionData.timestamp).toLocaleString()} +

+ )}
diff --git a/with-tailwindcss-app/public/sitemap-0.xml b/with-tailwindcss-app/public/sitemap-0.xml index 70da70c9..3c249832 100644 --- a/with-tailwindcss-app/public/sitemap-0.xml +++ b/with-tailwindcss-app/public/sitemap-0.xml @@ -1,18 +1,18 @@ -https://evmexplorer.com2025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explorer2025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/Aave2025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/Aerodrome Finance2025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/Compound2025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/ENS Domains2025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/ERC202025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/Uniswap2025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/Overnight Finance2025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/PancakeSwap2025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/ERC7212025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/ERC11552025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/OP Governance2025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/Velodrome Finance2025-01-06T03:50:22.461Zdaily0.7 -https://evmexplorer.com/explore/Token Sets2025-01-06T03:50:22.461Zdaily0.7 +https://evmexplorer.com2025-01-10T17:50:36.739Zdaily0.7 +https://evmexplorer.com/explorer2025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/Aave2025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/Aerodrome Finance2025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/Compound2025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/ENS Domains2025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/ERC202025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/Uniswap2025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/Overnight Finance2025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/PancakeSwap2025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/ERC7212025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/ERC11552025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/OP Governance2025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/Velodrome Finance2025-01-10T17:50:36.740Zdaily0.7 +https://evmexplorer.com/explore/Token Sets2025-01-10T17:50:36.740Zdaily0.7 \ No newline at end of file diff --git a/with-tailwindcss-app/yarn.lock b/with-tailwindcss-app/yarn.lock index fe1a1464..f31be0f1 100644 --- a/with-tailwindcss-app/yarn.lock +++ b/with-tailwindcss-app/yarn.lock @@ -344,10 +344,10 @@ "@ethersproject/properties" "^5.7.0" "@ethersproject/strings" "^5.7.0" -"@evmexplorer/blockscout@0.0.15": - version "0.0.15" - resolved "https://registry.yarnpkg.com/@evmexplorer/blockscout/-/blockscout-0.0.15.tgz#4e98ce2d187854804d71cc8391bcb8a6ece3beb5" - integrity sha512-hjrynEz+Czkd3Ao6r5ibKj04Dv8vTmXYmyim5B/3F7hbonavXZp/igyIG2QmH7bMn9Gt7Uog/5T9/P3TbxdHjQ== +"@evmexplorer/blockscout@0.0.16": + version "0.0.16" + resolved "https://registry.yarnpkg.com/@evmexplorer/blockscout/-/blockscout-0.0.16.tgz#fbb8580352b2652494def2df38241befa6178650" + integrity sha512-xZsyMfiwMn0WSKw3UzA65nBo03hmCFx2RkbhqKqL1p0Qu9IflaZWcYbX8TRE8RBW2AqNhA79LLPr5ao7fEx9nQ== "@evmexplorer/blockscout@^0.0.12": version "0.0.12"