beguene
beguene
This will help user understand that the transaction can be viewed in details.
This fixes #329 and is building on top of https://github.com/hirosystems/explorer/pull/491 and https://github.com/hirosystems/stacks-blockchain-api/pull/412 The goal is to have an endpoint open for prometheus to **pull** metrics from the explorer server We...
This won't reduce the bundle size but will make our node_modules smaller, make yarn install faster and give us more clarity during development Unused dependencies * @emotion/cache * @reach/tooltip *...
In each file we should import just what is required. This will allow tree shaking during build and potentially reduce bundle size. instead of ```javascript import * as React from...
Our first render is heavily delayed and noticeable in slow connexions (slow 3g). This task is to investigate further what causes this delayed render and look the different way we...
We could remove the redirect in the nextjs [middleware](https://github.com/hirosystems/explorer/blob/main/src/pages/_middleware.ts#L11) to shave ~300ms off the first request and improve our SEO. below an example where it's ~590ms, but this can vary....
Ideally we should allow eslint to be run on production build Currently we have ``` eslint: { // Warning: Dangerously allow production builds to successfully complete even if // your...
Currently after running `yarn run lint:eslint` we have 213 problems (42 errors, 171 warnings) This task is to fix those 42 errors at least and setup correct rules for eslint.
Context: https://github.com/hirosystems/explorer/issues/784