Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document restrictions on start command's first parameter #482

Open
fbiville opened this issue Jan 14, 2022 · 1 comment
Open

Document restrictions on start command's first parameter #482

fbiville opened this issue Jan 14, 2022 · 1 comment
Labels
documentation Improvements or additions to documentation

Comments

@fbiville
Copy link
Contributor

fbiville commented Jan 14, 2022

I just spent hours scratching my head trying to understand why my server would not start and always get the error:

Unable to locate executable file: [...]

The file is actually there and is executable.

      - uses: cypress-io/github-action@v2
        env:
          [...]
          DEBUG: '@cypress/github-action'
        with:
          [...]
          path: e2e
          start: ../some/executable/script

It turns out io.which from @actions/io, called by this GitHub action, refuses to parse executable paths from relative script files. I assume this is for security reasons (actual source):

  if (tool.includes(path.sep)) {
    return []
  }

I believe the documentation of start should clearly state that scripts cannot be executed like this.

As a workaround, I ran:

      - uses: cypress-io/github-action@v2
        env:
          [...]
          DEBUG: '@cypress/github-action'
        with:
          [...]
          path: e2e
          start: sh ../some/executable/script

and it works just fine.

@fbiville fbiville changed the title Document restrictions on start command Document restrictions on start command's first parameter Jan 17, 2022
@jakemwood
Copy link

Can confirm this is also an issue with the build: argument.

@MikeMcC399 MikeMcC399 added the documentation Improvements or additions to documentation label Nov 6, 2023
wmitsuda added a commit to otterscan/otterscan that referenced this issue Nov 25, 2023
wmitsuda added a commit to otterscan/otterscan that referenced this issue Nov 27, 2023
* Remove explicit node setup

* First attempt to make devnet tests use the standard cypress github action

* Make names shorter; cant read them on github UI

* Attempt to fix quotes

* Attempt #2

* Attempt #3

* Attempt #4: see cypress limitations cypress-io/github-action#482

* Remove manual node setup

* Proper golang cache setup

* Beautify script
rrw-zilliqa pushed a commit to Zilliqa/otterscan that referenced this issue Jan 31, 2024
* Remove explicit node setup

* First attempt to make devnet tests use the standard cypress github action

* Make names shorter; cant read them on github UI

* Attempt to fix quotes

* Attempt #2

* Attempt #3

* Attempt #4: see cypress limitations cypress-io/github-action#482

* Remove manual node setup

* Proper golang cache setup

* Beautify script
rrw-zilliqa added a commit to Zilliqa/otterscan that referenced this issue Feb 1, 2024
* Bump @types/react from 18.2.33 to 18.2.34 (#1446)

* Add meta tag to prevent phone number detection on iOS (#1448)

* Use ABI of verified contracts to decode function selectors (#1443)

* Use ABI of verified contracts to decode function selectors

* Add address parameter to use4Bytes function doc

* Apply Sourcify color to MethodName component

* Disable tab/route for now; feature will be postponed to the next release (#1451)

* Remove old gitcoin link

* Bump erigon version

* Bump version

* Bump vite-imagetools from 6.2.1 to 6.2.4 (#1479)

* Bump @testing-library/react from 14.0.0 to 14.1.2 (#1480)

* Bump prettier from 3.0.3 to 3.1.0 (#1478)

* Bump prettier-plugin-organize-imports from 3.2.3 to 3.2.4 (#1476)

* Bump react-intersection-observer from 9.5.2 to 9.5.3 (#1475)

* Bump @types/react from 18.2.34 to 18.2.37 (#1467)

* Bump sb to 7.5.3

* Bump @types/react-highlight from 0.12.7 to 0.12.8 (#1462)

* Bump @types/react-blockies from 1.4.3 to 1.4.4 (#1464)

* Bump @types/react-dom from 18.2.14 to 18.2.15 (#1468)

* Bump @types/react-syntax-highlighter from 15.5.9 to 15.5.10 (#1463)

* Bump @types/jest from 29.5.7 to 29.5.8 (#1470)

* Bump prettier-plugin-tailwindcss from 0.5.6 to 0.5.7 (#1469)

* Using --link as an attempt to optimize build times

* Add Cypress e2e tests and GA workflow (#1481)

* Add Cypress e2e tests and GA workflow

* Add Cypress project ID and enable test recording

* Separate devnet and mainnet e2e tests

* Remove extra brace set

* Use job outputs to decide secret availability

* Add run commands for mainnet and devnet E2E tests

* Add names to check-secrets steps

* Add workflow_dispatch trigger

* Add Action testing for cypress-e2e-tests-2

* Use 127.0.0.1 instead of localhost

* Remove extra branch from push trigger

* Add testing docs

* Bump @vitejs/plugin-react-swc from 3.4.1 to 3.5.0 (#1484)

* Bump @types/react from 18.2.37 to 18.2.38 (#1491)

* Bump typescript from 5.2.2 to 5.3.2 (#1489)

* Bump @types/jest from 29.5.8 to 29.5.10 (#1493)

* Bump @types/react-dom from 18.2.15 to 18.2.17 (#1494)

* Bump vite-plugin-rewrite-all from 1.0.1 to 1.0.2 (#1485)

* Bump react-router-dom from 6.18.0 to 6.20.0 (#1495)

* Better use ci instead of install

* Bump cypress from 13.5.0 to 13.6.0 (#1498)

* Remove commify from raw decoded uints (#1486)

* Enable e2e test runs on branches named feature/**

* Bump vite from 4.5.0 to 5.0.2 (#1499)

* Bump vite from 4.5.0 to 5.0.2

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.5.0 to 5.0.2.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.0.2/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Remove vite-plugin-rewrite-all dependency

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: sealer3 <125761775+sealer3@users.noreply.github.com>

* Use gha cache

* Add --link to everything else

* Improve e2e workflow execution (#1502)

* Remove explicit node setup

* First attempt to make devnet tests use the standard cypress github action

* Make names shorter; cant read them on github UI

* Attempt to fix quotes

* Attempt #2

* Attempt #3

* Attempt #4: see cypress limitations cypress-io/github-action#482

* Remove manual node setup

* Proper golang cache setup

* Beautify script

* Smoke tests (#1503)

* Automate vitalik address navigation smoketest

* Increase timeout for slow page load

* Enable video

* Trying to fix timeouts

* Delete video for successful attempts

* Add wait for page load

* Bump sb to 7.6.1

* Bump vite from 5.0.2 to 5.0.4 (#1518)

* Bump @types/react from 18.2.38 to 18.2.39 (#1512)

* Bump vite-imagetools from 6.2.4 to 6.2.5 (#1506)

* Bump node to v20.10.0 in order to avoid nodejs/node#50136 (#1528)

* Bump @fortawesome/fontawesome-svg-core from 6.4.2 to 6.5.0 (#1517)

* Bump @fortawesome/free-regular-svg-icons from 6.4.2 to 6.5.0 (#1516)

* Bump @fortawesome/free-solid-svg-icons from 6.4.2 to 6.5.0 (#1520)

* Bump @fortawesome/free-brands-svg-icons from 6.4.2 to 6.5.0 (#1522)

* Prevent SectionHighlighter from truncating by default (#1504)

* Remove truncate class from HighlighterBox

* Prevent bytes length label from being selected

* Enable static network discovery (#1529)

* Bump react-helmet-async from 1.3.0 to 2.0.1 (#1492)

* Show parameter names for Sourcify verified contracts in traces (#1473)

* Use checksummed addresses in Token Balances tab (#1477)

* Bump @types/react from 18.2.39 to 18.2.42 (#1567)

* Bump postcss from 8.4.31 to 8.4.32 (#1563)

* Bump sb to 7.6.3 (#1568)

* Bump tspeg from 3.3.0 to 3.3.1 (#1535)

* Bump react-router-dom from 6.20.0 to 6.20.1 (#1564)

* Bump @adobe/css-tools from 4.3.1 to 4.3.2 (#1543)

* Bump @fortawesome/free-brands-svg-icons from 6.5.0 to 6.5.1 (#1550)

* Bump @fortawesome/free-solid-svg-icons from 6.5.0 to 6.5.1 (#1553)

* Add icon and selector to contract error types (#1542)

* Bump @fortawesome/free-regular-svg-icons from 6.5.0 to 6.5.1 (#1556)

* Bump @fortawesome/fontawesome-svg-core from 6.5.0 to 6.5.1 (#1555)

* Bump vite-imagetools from 6.2.5 to 6.2.7 (#1566)

* Bump @testing-library/jest-dom from 6.1.4 to 6.1.5 (#1548)

* Bump react-helmet-async from 2.0.1 to 2.0.3 (#1549)

* Add Prettier workflow (#1559)

* Add Prettier workflow

* Run prettier on entire repo

* Opt out of Storybook telemetry

* Add building to the workflow

* Use the Sourcify web server by default (#1544)

* Don't replace the @ symbol in Sourcify sources (#1558)

* Bump vite from 5.0.4 to 5.0.5 (#1569)

* Use .nvmrc for determining node version (#1570)

* Add e2e test for tx page navigation (#1561)

* Bump vite from 5.0.5 to 5.0.6 (#1574)

* Bump tailwindcss from 3.3.5 to 3.3.6 (#1573)

* Bump actions/setup-go from 4 to 5 (#1578)

* Bump prettier-plugin-tailwindcss from 0.5.7 to 0.5.9 (#1575)

* Bump @types/react-syntax-highlighter from 15.5.10 to 15.5.11 (#1577)

* Bump @types/jest from 29.5.10 to 29.5.11 (#1572)

* Bump cypress from 13.6.0 to 13.6.1 (#1571)

* Bump chart.js from 4.4.0 to 4.4.1 (#1576)

* Add array entry interface and FunctionParamInput redesign (#1471)

* Add array entry interface and FunctionParamInput redesign

* Add extra vertical spacing for Remove buttons

* Fix variable array entry spacing

* Align all buttons

* Use same margin for Add Element as for Query

* Add arrays to ParamDeclaration

* Add more spacing between items and ParamDeclarations

* Add space between parameters of the same function

* Align ParamDeclaration text with Remove button text

* Add e2e test for Read Contract array inputs

* Add mainnet Read Contract test

* Shorten step name

* Display uint256 values with unselectable commas (#1594)

* Display uint256 values with unselectable commas

* Add DisplayInteger story

* Update decimalHint type

* Remove shadow hint

* Bump @types/react from 18.2.42 to 18.2.45 (#1601)

* Bump typescript from 5.3.2 to 5.3.3 (#1587)

* Bump sb to 7.6.4 (#1604)

* Bump vite from 5.0.6 to 5.0.9 (#1602)

* Fix duplicate github actions execution (#1605)

* Remove feature/** branch to avoid duplicate jobs execution

* Also remove it from e2e workflow

* Bump ts-node from 10.9.1 to 10.9.2 (#1592)

* Bump prettier from 3.1.0 to 3.1.1 (#1598)

* Bump actions/upload-artifact from 3 to 4 (#1606)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Temporarily disable arm64 docker builds to debug ga issue (#1615)

* Revert "Temporarily disable arm64 docker builds to debug ga issue (#1615)" (#1618)

This reverts commit 394419b.

* Bump @types/react-dom from 18.2.17 to 18.2.18 (#1617)

Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) from 18.2.17 to 18.2.18.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

---
updated-dependencies:
- dependency-name: "@types/react-dom"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump vite from 5.0.9 to 5.0.10 (#1611)

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.0.9 to 5.0.10.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.0.10/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Attempt to separate amd64/arm64 builds (#1619)

* Bump react-router-dom from 6.20.1 to 6.21.0 (#1603)

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.20.1 to 6.21.0.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.0/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @fontsource/space-grotesk from 5.0.15 to 5.0.16 (#1589)

Bumps [@fontsource/space-grotesk](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/space-grotesk) from 5.0.15 to 5.0.16.
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/google/space-grotesk/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/space-grotesk)

---
updated-dependencies:
- dependency-name: "@fontsource/space-grotesk"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @fontsource/fira-code from 5.0.15 to 5.0.16 (#1586)

Bumps [@fontsource/fira-code](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/fira-code) from 5.0.15 to 5.0.16.
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/google/fira-code/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/fira-code)

---
updated-dependencies:
- dependency-name: "@fontsource/fira-code"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @fontsource/roboto-mono from 5.0.15 to 5.0.16 (#1588)

Bumps [@fontsource/roboto-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/roboto-mono) from 5.0.15 to 5.0.16.
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/google/roboto-mono/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/roboto-mono)

---
updated-dependencies:
- dependency-name: "@fontsource/roboto-mono"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump sb to 7.6.5 (#1620)

* Add copy button to token addresses on Token Balances page (#1596)

* Add copy button to token addresses on Token Balances page

* Remove superfluous class name

* Use TransactionAddressWithCopy instead

* Bump tailwindcss from 3.3.6 to 3.4.0 (#1631)

Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 3.3.6 to 3.4.0.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.3.6...v3.4.0)

---
updated-dependencies:
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump sb to 7.6.6 (#1633)

* Bump react-helmet-async from 2.0.3 to 2.0.4 (#1627)

Bumps [react-helmet-async](https://github.com/staylor/react-helmet-async) from 2.0.3 to 2.0.4.
- [Release notes](https://github.com/staylor/react-helmet-async/releases)
- [Commits](https://github.com/staylor/react-helmet-async/commits)

---
updated-dependencies:
- dependency-name: react-helmet-async
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Reactivate blocks rewarded support (#1636)

* Revert "Disable tab/route for now; feature will be postponed to the next release (#1451)"

This reverts commit ff4f1e0.

* Rename method

* Reactivate blocks rewarded support; added block fees column

* Update README (#1637)

* Revert "Attempt to separate amd64/arm64 builds (#1619)" (#1638)

This reverts commit aac8d4d.

* Bump version (#1640)

* Fix typo: show as '0 contracts'

* Use checksummed addresses in contract lists

* Add toggle for non-view functions in Read Contract

* Attempt to fix docker ga

* Add setup qemu

* Debug error on npm ci

* Bump @types/react from 18.2.45 to 18.2.46

Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 18.2.45 to 18.2.46.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

---
updated-dependencies:
- dependency-name: "@types/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump cypress from 13.6.1 to 13.6.2

Bumps [cypress](https://github.com/cypress-io/cypress) from 13.6.1 to 13.6.2.
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.6.1...v13.6.2)

---
updated-dependencies:
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump sb to 7.6.7

* Bump @testing-library/user-event from 14.5.1 to 14.5.2

Bumps [@testing-library/user-event](https://github.com/testing-library/user-event) from 14.5.1 to 14.5.2.
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](testing-library/user-event@v14.5.1...v14.5.2)

---
updated-dependencies:
- dependency-name: "@testing-library/user-event"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump web-vitals from 3.5.0 to 3.5.1

Bumps [web-vitals](https://github.com/GoogleChrome/web-vitals) from 3.5.0 to 3.5.1.
- [Changelog](https://github.com/GoogleChrome/web-vitals/blob/main/CHANGELOG.md)
- [Commits](GoogleChrome/web-vitals@v3.5.0...v3.5.1)

---
updated-dependencies:
- dependency-name: web-vitals
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump prettier-plugin-tailwindcss from 0.5.9 to 0.5.10

Bumps [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) from 0.5.9 to 0.5.10.
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.5.9...v0.5.10)

---
updated-dependencies:
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump react-router-dom from 6.21.0 to 6.21.1

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.21.0 to 6.21.1.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.1/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Break overflowing words in Read Contract error messages

* Use 3 pending columns in Blocks Rewarded table

* Bump vite-imagetools from 6.2.7 to 6.2.9

Bumps [vite-imagetools](https://github.com/JonasKruckenberg/imagetools) from 6.2.7 to 6.2.9.
- [Release notes](https://github.com/JonasKruckenberg/imagetools/releases)
- [Commits](https://github.com/JonasKruckenberg/imagetools/commits)

---
updated-dependencies:
- dependency-name: vite-imagetools
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump @testing-library/jest-dom from 6.1.5 to 6.2.0

Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 6.1.5 to 6.2.0.
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.1.5...v6.2.0)

---
updated-dependencies:
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump postcss from 8.4.32 to 8.4.33

Bumps [postcss](https://github.com/postcss/postcss) from 8.4.32 to 8.4.33.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.32...8.4.33)

---
updated-dependencies:
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump vite from 5.0.10 to 5.0.11

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.0.10 to 5.0.11.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.0.11/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Make creation tx hash responsive and truncated

* Bump tailwindcss from 3.4.0 to 3.4.1

Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 3.4.0 to 3.4.1.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.1/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.0...v3.4.1)

---
updated-dependencies:
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump prettier-plugin-tailwindcss from 0.5.10 to 0.5.11

Bumps [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) from 0.5.10 to 0.5.11.
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.5.10...v0.5.11)

---
updated-dependencies:
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Prevent address tab page titles from being overwritten

The AddressMainPage was overwriting the page title with the address page title.

* Show user notices and dev docs in decoded functions

* Add function signature and docs toggle to params table

* Move dev and user docs to Transaction Action section

* Add HelpButton component and apply to function docs

* Simplify component return

* Bump @headlessui/react from 1.7.17 to 1.7.18

Bumps [@headlessui/react](https://github.com/tailwindlabs/headlessui/tree/HEAD/packages/@headlessui-react) from 1.7.17 to 1.7.18.
- [Release notes](https://github.com/tailwindlabs/headlessui/releases)
- [Changelog](https://github.com/tailwindlabs/headlessui/blob/main/packages/@headlessui-react/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/headlessui/commits/@headlessui/react@v1.7.18/packages/@headlessui-react)

---
updated-dependencies:
- dependency-name: "@headlessui/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump react-router-dom from 6.21.1 to 6.21.2

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.21.1 to 6.21.2.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.2/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump prettier from 3.1.1 to 3.2.4

Bumps [prettier](https://github.com/prettier/prettier) from 3.1.1 to 3.2.4.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.1.1...3.2.4)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Prettier 3.2 now interprets tsconfig.json as jsonc

* Bump @types/react from 18.2.46 to 18.2.48 (#1693)

Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 18.2.46 to 18.2.48.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

---
updated-dependencies:
- dependency-name: "@types/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump cypress from 13.6.2 to 13.6.3 (#1699)

Bumps [cypress](https://github.com/cypress-io/cypress) from 13.6.2 to 13.6.3.
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.6.2...v13.6.3)

---
updated-dependencies:
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump storybook from 7.6.7 to 7.6.9 (#1694)

* Bump storybook from 7.6.7 to 7.6.9

Bumps [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) from 7.6.7 to 7.6.9.
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.9/code/lib/cli)

---
updated-dependencies:
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump other dependencies

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Willian Mitsuda <wmitsuda@gmail.com>

* Bump storybook from 7.6.9 to 7.6.10 (#1708)

* Bump storybook from 7.6.9 to 7.6.10

Bumps [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) from 7.6.9 to 7.6.10.
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.10/code/lib/cli)

---
updated-dependencies:
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump all sb components

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Willian Mitsuda <wmitsuda@gmail.com>

* Bump autoprefixer from 10.4.16 to 10.4.17 (#1709)

Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 10.4.16 to 10.4.17.
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.16...10.4.17)

---
updated-dependencies:
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump vite from 5.0.11 to 5.0.12 (#1712)

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.0.11 to 5.0.12.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.0.12/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.0.12/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump react-router-dom from 6.21.2 to 6.21.3 (#1713)

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.21.2 to 6.21.3.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.3/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* New attempt to fix docker (#1714)

* Try to split runners (#1715)

* New attempt to fix docker

* Split runners

* Fix (#1716)

* Docker fix 4 (#1717)

* More fixes

* Fix prettier

* Show function signatures (#1681)

* Move function signature above params table

* Show function signature above input params table

* Add blockquote around function docs and increase vertical spacing

* Use keys in FunctionSignature param declarations

* Bump ts-jest from 29.1.1 to 29.1.2 (#1719)

Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 29.1.1 to 29.1.2.
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.1.1...v29.1.2)

---
updated-dependencies:
- dependency-name: ts-jest
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @testing-library/jest-dom from 6.2.0 to 6.3.0 (#1721)

Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 6.2.0 to 6.3.0.
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.2.0...v6.3.0)

---
updated-dependencies:
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add withdrawals count to epoch page (#1724)

* Add withdrawals count to epoch page

* Handle pre-Capella block responses properly

* Show withdrawals on slot page (#1725)

* Show withdrawals on slot page

* Move withdrawal details row into its own component

* Use TransactionAddress to show selection highlighting

* Add hex-to-zil and fix API calls (#1)

* Add hex-to-zil button

Fix copy button to display new address

Made changes according to comments

* Update image name in Docker publish action (#2)

* Remove publish to GHCR (#3)

* Show contract bytecode in Contract tab (#8)

Co-authored-by: sealer3 <125761775+sealer3@users.noreply.github.com>

* Display Scilla contract source (#9)

* Add ability to view DS Blocks (#13)

* Changed Runtime Context to contain Zilliqa object

* Reformatted code so that all Pending components are together

* Added basic components for DS Blocks

* Implemented polling for most recent DS Block

* Added function to convert to Otterscan timestamp format

* Added detailed DS Block page

* Added ability to search for DS Blocks using search bar

* Added DS Block List page

* (fix) Make otterscan build again.

* US-322: Can now decode scilla logs. (#16)

* (feat) Scilla log decodes now work.

* (fix) US-322: Fix package-lock.json

* (fix) fix compile issues

* (feat) Show raw receipts.

* (feat) A bit more resilience to improperly formatted receipts.

* (fix) Reverse priority of scilla and EVM log entry decodes
      so that we don't accidentally think any appropriately-formatted EVM log
      is a Scilla log (may need changing back)
(feat) Now understands forwarded errors from EVM contracts that call Scilla
(feat) Can now filter out empty blocks.

* (fix) Remove debugging
(fix) Suppress "no key" warning in decoded scilla params
(fix) update package-lock.json
(fix) ignore .vite directory (working dir)

* (fix) Fix builds.

* (fix) remove publish to github - we can't publish otterscan's images :-)

* (fix) Fix use of invalid variable in AddressTransactionResults.tsx
(fix) Update package-lock.json

* (fix) Make otterscan compile again
(fix) In-line address converter and copy icons

* (fix) Better spacing for address display
(fix) More API fixes

* Update ethers.

* (fix) the obligatory prettier run.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: sealer3 <125761775+sealer3@users.noreply.github.com>
Co-authored-by: Willian Mitsuda <wmitsuda@gmail.com>
Co-authored-by: lucac-zilliqa <137715422+lucac-zilliqa@users.noreply.github.com>
Co-authored-by: James Hinshelwood <JamesHinshelwood@users.noreply.github.com>
rrw-zilliqa added a commit to Zilliqa/otterscan that referenced this issue Mar 28, 2024
* Bump @types/react from 18.2.33 to 18.2.34 (#1446)

* Add meta tag to prevent phone number detection on iOS (#1448)

* Use ABI of verified contracts to decode function selectors (#1443)

* Use ABI of verified contracts to decode function selectors

* Add address parameter to use4Bytes function doc

* Apply Sourcify color to MethodName component

* Disable tab/route for now; feature will be postponed to the next release (#1451)

* Remove old gitcoin link

* Bump erigon version

* Bump version

* Bump vite-imagetools from 6.2.1 to 6.2.4 (#1479)

* Bump @testing-library/react from 14.0.0 to 14.1.2 (#1480)

* Bump prettier from 3.0.3 to 3.1.0 (#1478)

* Bump prettier-plugin-organize-imports from 3.2.3 to 3.2.4 (#1476)

* Bump react-intersection-observer from 9.5.2 to 9.5.3 (#1475)

* Bump @types/react from 18.2.34 to 18.2.37 (#1467)

* Bump sb to 7.5.3

* Bump @types/react-highlight from 0.12.7 to 0.12.8 (#1462)

* Bump @types/react-blockies from 1.4.3 to 1.4.4 (#1464)

* Bump @types/react-dom from 18.2.14 to 18.2.15 (#1468)

* Bump @types/react-syntax-highlighter from 15.5.9 to 15.5.10 (#1463)

* Bump @types/jest from 29.5.7 to 29.5.8 (#1470)

* Bump prettier-plugin-tailwindcss from 0.5.6 to 0.5.7 (#1469)

* Using --link as an attempt to optimize build times

* Add Cypress e2e tests and GA workflow (#1481)

* Add Cypress e2e tests and GA workflow

* Add Cypress project ID and enable test recording

* Separate devnet and mainnet e2e tests

* Remove extra brace set

* Use job outputs to decide secret availability

* Add run commands for mainnet and devnet E2E tests

* Add names to check-secrets steps

* Add workflow_dispatch trigger

* Add Action testing for cypress-e2e-tests-2

* Use 127.0.0.1 instead of localhost

* Remove extra branch from push trigger

* Add testing docs

* Bump @vitejs/plugin-react-swc from 3.4.1 to 3.5.0 (#1484)

* Bump @types/react from 18.2.37 to 18.2.38 (#1491)

* Bump typescript from 5.2.2 to 5.3.2 (#1489)

* Bump @types/jest from 29.5.8 to 29.5.10 (#1493)

* Bump @types/react-dom from 18.2.15 to 18.2.17 (#1494)

* Bump vite-plugin-rewrite-all from 1.0.1 to 1.0.2 (#1485)

* Bump react-router-dom from 6.18.0 to 6.20.0 (#1495)

* Better use ci instead of install

* Bump cypress from 13.5.0 to 13.6.0 (#1498)

* Remove commify from raw decoded uints (#1486)

* Enable e2e test runs on branches named feature/**

* Bump vite from 4.5.0 to 5.0.2 (#1499)

* Bump vite from 4.5.0 to 5.0.2

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.5.0 to 5.0.2.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.0.2/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Remove vite-plugin-rewrite-all dependency

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: sealer3 <125761775+sealer3@users.noreply.github.com>

* Use gha cache

* Add --link to everything else

* Improve e2e workflow execution (#1502)

* Remove explicit node setup

* First attempt to make devnet tests use the standard cypress github action

* Make names shorter; cant read them on github UI

* Attempt to fix quotes

* Attempt #2

* Attempt #3

* Attempt #4: see cypress limitations cypress-io/github-action#482

* Remove manual node setup

* Proper golang cache setup

* Beautify script

* Smoke tests (#1503)

* Automate vitalik address navigation smoketest

* Increase timeout for slow page load

* Enable video

* Trying to fix timeouts

* Delete video for successful attempts

* Add wait for page load

* Bump sb to 7.6.1

* Bump vite from 5.0.2 to 5.0.4 (#1518)

* Bump @types/react from 18.2.38 to 18.2.39 (#1512)

* Bump vite-imagetools from 6.2.4 to 6.2.5 (#1506)

* Bump node to v20.10.0 in order to avoid nodejs/node#50136 (#1528)

* Bump @fortawesome/fontawesome-svg-core from 6.4.2 to 6.5.0 (#1517)

* Bump @fortawesome/free-regular-svg-icons from 6.4.2 to 6.5.0 (#1516)

* Bump @fortawesome/free-solid-svg-icons from 6.4.2 to 6.5.0 (#1520)

* Bump @fortawesome/free-brands-svg-icons from 6.4.2 to 6.5.0 (#1522)

* Prevent SectionHighlighter from truncating by default (#1504)

* Remove truncate class from HighlighterBox

* Prevent bytes length label from being selected

* Enable static network discovery (#1529)

* Bump react-helmet-async from 1.3.0 to 2.0.1 (#1492)

* Show parameter names for Sourcify verified contracts in traces (#1473)

* Use checksummed addresses in Token Balances tab (#1477)

* Bump @types/react from 18.2.39 to 18.2.42 (#1567)

* Bump postcss from 8.4.31 to 8.4.32 (#1563)

* Bump sb to 7.6.3 (#1568)

* Bump tspeg from 3.3.0 to 3.3.1 (#1535)

* Bump react-router-dom from 6.20.0 to 6.20.1 (#1564)

* Bump @adobe/css-tools from 4.3.1 to 4.3.2 (#1543)

* Bump @fortawesome/free-brands-svg-icons from 6.5.0 to 6.5.1 (#1550)

* Bump @fortawesome/free-solid-svg-icons from 6.5.0 to 6.5.1 (#1553)

* Add icon and selector to contract error types (#1542)

* Bump @fortawesome/free-regular-svg-icons from 6.5.0 to 6.5.1 (#1556)

* Bump @fortawesome/fontawesome-svg-core from 6.5.0 to 6.5.1 (#1555)

* Bump vite-imagetools from 6.2.5 to 6.2.7 (#1566)

* Bump @testing-library/jest-dom from 6.1.4 to 6.1.5 (#1548)

* Bump react-helmet-async from 2.0.1 to 2.0.3 (#1549)

* Add Prettier workflow (#1559)

* Add Prettier workflow

* Run prettier on entire repo

* Opt out of Storybook telemetry

* Add building to the workflow

* Use the Sourcify web server by default (#1544)

* Don't replace the @ symbol in Sourcify sources (#1558)

* Bump vite from 5.0.4 to 5.0.5 (#1569)

* Use .nvmrc for determining node version (#1570)

* Add e2e test for tx page navigation (#1561)

* Bump vite from 5.0.5 to 5.0.6 (#1574)

* Bump tailwindcss from 3.3.5 to 3.3.6 (#1573)

* Bump actions/setup-go from 4 to 5 (#1578)

* Bump prettier-plugin-tailwindcss from 0.5.7 to 0.5.9 (#1575)

* Bump @types/react-syntax-highlighter from 15.5.10 to 15.5.11 (#1577)

* Bump @types/jest from 29.5.10 to 29.5.11 (#1572)

* Bump cypress from 13.6.0 to 13.6.1 (#1571)

* Bump chart.js from 4.4.0 to 4.4.1 (#1576)

* Add array entry interface and FunctionParamInput redesign (#1471)

* Add array entry interface and FunctionParamInput redesign

* Add extra vertical spacing for Remove buttons

* Fix variable array entry spacing

* Align all buttons

* Use same margin for Add Element as for Query

* Add arrays to ParamDeclaration

* Add more spacing between items and ParamDeclarations

* Add space between parameters of the same function

* Align ParamDeclaration text with Remove button text

* Add e2e test for Read Contract array inputs

* Add mainnet Read Contract test

* Shorten step name

* Display uint256 values with unselectable commas (#1594)

* Display uint256 values with unselectable commas

* Add DisplayInteger story

* Update decimalHint type

* Remove shadow hint

* Bump @types/react from 18.2.42 to 18.2.45 (#1601)

* Bump typescript from 5.3.2 to 5.3.3 (#1587)

* Bump sb to 7.6.4 (#1604)

* Bump vite from 5.0.6 to 5.0.9 (#1602)

* Fix duplicate github actions execution (#1605)

* Remove feature/** branch to avoid duplicate jobs execution

* Also remove it from e2e workflow

* Bump ts-node from 10.9.1 to 10.9.2 (#1592)

* Bump prettier from 3.1.0 to 3.1.1 (#1598)

* Bump actions/upload-artifact from 3 to 4 (#1606)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Temporarily disable arm64 docker builds to debug ga issue (#1615)

* Revert "Temporarily disable arm64 docker builds to debug ga issue (#1615)" (#1618)

This reverts commit 394419b.

* Bump @types/react-dom from 18.2.17 to 18.2.18 (#1617)

Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) from 18.2.17 to 18.2.18.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

---
updated-dependencies:
- dependency-name: "@types/react-dom"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump vite from 5.0.9 to 5.0.10 (#1611)

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.0.9 to 5.0.10.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.0.10/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Attempt to separate amd64/arm64 builds (#1619)

* Bump react-router-dom from 6.20.1 to 6.21.0 (#1603)

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.20.1 to 6.21.0.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.0/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @fontsource/space-grotesk from 5.0.15 to 5.0.16 (#1589)

Bumps [@fontsource/space-grotesk](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/space-grotesk) from 5.0.15 to 5.0.16.
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/google/space-grotesk/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/space-grotesk)

---
updated-dependencies:
- dependency-name: "@fontsource/space-grotesk"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @fontsource/fira-code from 5.0.15 to 5.0.16 (#1586)

Bumps [@fontsource/fira-code](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/fira-code) from 5.0.15 to 5.0.16.
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/google/fira-code/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/fira-code)

---
updated-dependencies:
- dependency-name: "@fontsource/fira-code"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @fontsource/roboto-mono from 5.0.15 to 5.0.16 (#1588)

Bumps [@fontsource/roboto-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/roboto-mono) from 5.0.15 to 5.0.16.
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/google/roboto-mono/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/roboto-mono)

---
updated-dependencies:
- dependency-name: "@fontsource/roboto-mono"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump sb to 7.6.5 (#1620)

* Add copy button to token addresses on Token Balances page (#1596)

* Add copy button to token addresses on Token Balances page

* Remove superfluous class name

* Use TransactionAddressWithCopy instead

* Bump tailwindcss from 3.3.6 to 3.4.0 (#1631)

Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 3.3.6 to 3.4.0.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.3.6...v3.4.0)

---
updated-dependencies:
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump sb to 7.6.6 (#1633)

* Bump react-helmet-async from 2.0.3 to 2.0.4 (#1627)

Bumps [react-helmet-async](https://github.com/staylor/react-helmet-async) from 2.0.3 to 2.0.4.
- [Release notes](https://github.com/staylor/react-helmet-async/releases)
- [Commits](https://github.com/staylor/react-helmet-async/commits)

---
updated-dependencies:
- dependency-name: react-helmet-async
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Reactivate blocks rewarded support (#1636)

* Revert "Disable tab/route for now; feature will be postponed to the next release (#1451)"

This reverts commit ff4f1e0.

* Rename method

* Reactivate blocks rewarded support; added block fees column

* Update README (#1637)

* Revert "Attempt to separate amd64/arm64 builds (#1619)" (#1638)

This reverts commit aac8d4d.

* Bump version (#1640)

* Fix typo: show as '0 contracts'

* Use checksummed addresses in contract lists

* Add toggle for non-view functions in Read Contract

* Attempt to fix docker ga

* Add setup qemu

* Debug error on npm ci

* Bump @types/react from 18.2.45 to 18.2.46

Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 18.2.45 to 18.2.46.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

---
updated-dependencies:
- dependency-name: "@types/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump cypress from 13.6.1 to 13.6.2

Bumps [cypress](https://github.com/cypress-io/cypress) from 13.6.1 to 13.6.2.
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.6.1...v13.6.2)

---
updated-dependencies:
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump sb to 7.6.7

* Bump @testing-library/user-event from 14.5.1 to 14.5.2

Bumps [@testing-library/user-event](https://github.com/testing-library/user-event) from 14.5.1 to 14.5.2.
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](testing-library/user-event@v14.5.1...v14.5.2)

---
updated-dependencies:
- dependency-name: "@testing-library/user-event"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump web-vitals from 3.5.0 to 3.5.1

Bumps [web-vitals](https://github.com/GoogleChrome/web-vitals) from 3.5.0 to 3.5.1.
- [Changelog](https://github.com/GoogleChrome/web-vitals/blob/main/CHANGELOG.md)
- [Commits](GoogleChrome/web-vitals@v3.5.0...v3.5.1)

---
updated-dependencies:
- dependency-name: web-vitals
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump prettier-plugin-tailwindcss from 0.5.9 to 0.5.10

Bumps [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) from 0.5.9 to 0.5.10.
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.5.9...v0.5.10)

---
updated-dependencies:
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump react-router-dom from 6.21.0 to 6.21.1

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.21.0 to 6.21.1.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.1/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Break overflowing words in Read Contract error messages

* Use 3 pending columns in Blocks Rewarded table

* Bump vite-imagetools from 6.2.7 to 6.2.9

Bumps [vite-imagetools](https://github.com/JonasKruckenberg/imagetools) from 6.2.7 to 6.2.9.
- [Release notes](https://github.com/JonasKruckenberg/imagetools/releases)
- [Commits](https://github.com/JonasKruckenberg/imagetools/commits)

---
updated-dependencies:
- dependency-name: vite-imagetools
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump @testing-library/jest-dom from 6.1.5 to 6.2.0

Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 6.1.5 to 6.2.0.
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.1.5...v6.2.0)

---
updated-dependencies:
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump postcss from 8.4.32 to 8.4.33

Bumps [postcss](https://github.com/postcss/postcss) from 8.4.32 to 8.4.33.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.32...8.4.33)

---
updated-dependencies:
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump vite from 5.0.10 to 5.0.11

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.0.10 to 5.0.11.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.0.11/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Make creation tx hash responsive and truncated

* Bump tailwindcss from 3.4.0 to 3.4.1

Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 3.4.0 to 3.4.1.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.1/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.0...v3.4.1)

---
updated-dependencies:
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump prettier-plugin-tailwindcss from 0.5.10 to 0.5.11

Bumps [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) from 0.5.10 to 0.5.11.
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.5.10...v0.5.11)

---
updated-dependencies:
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Prevent address tab page titles from being overwritten

The AddressMainPage was overwriting the page title with the address page title.

* Show user notices and dev docs in decoded functions

* Add function signature and docs toggle to params table

* Move dev and user docs to Transaction Action section

* Add HelpButton component and apply to function docs

* Simplify component return

* Bump @headlessui/react from 1.7.17 to 1.7.18

Bumps [@headlessui/react](https://github.com/tailwindlabs/headlessui/tree/HEAD/packages/@headlessui-react) from 1.7.17 to 1.7.18.
- [Release notes](https://github.com/tailwindlabs/headlessui/releases)
- [Changelog](https://github.com/tailwindlabs/headlessui/blob/main/packages/@headlessui-react/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/headlessui/commits/@headlessui/react@v1.7.18/packages/@headlessui-react)

---
updated-dependencies:
- dependency-name: "@headlessui/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump react-router-dom from 6.21.1 to 6.21.2

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.21.1 to 6.21.2.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.2/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump prettier from 3.1.1 to 3.2.4

Bumps [prettier](https://github.com/prettier/prettier) from 3.1.1 to 3.2.4.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.1.1...3.2.4)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Prettier 3.2 now interprets tsconfig.json as jsonc

* Bump @types/react from 18.2.46 to 18.2.48 (#1693)

Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 18.2.46 to 18.2.48.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

---
updated-dependencies:
- dependency-name: "@types/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump cypress from 13.6.2 to 13.6.3 (#1699)

Bumps [cypress](https://github.com/cypress-io/cypress) from 13.6.2 to 13.6.3.
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.6.2...v13.6.3)

---
updated-dependencies:
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump storybook from 7.6.7 to 7.6.9 (#1694)

* Bump storybook from 7.6.7 to 7.6.9

Bumps [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) from 7.6.7 to 7.6.9.
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.9/code/lib/cli)

---
updated-dependencies:
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump other dependencies

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Willian Mitsuda <wmitsuda@gmail.com>

* Bump storybook from 7.6.9 to 7.6.10 (#1708)

* Bump storybook from 7.6.9 to 7.6.10

Bumps [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) from 7.6.9 to 7.6.10.
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.10/code/lib/cli)

---
updated-dependencies:
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump all sb components

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Willian Mitsuda <wmitsuda@gmail.com>

* Bump autoprefixer from 10.4.16 to 10.4.17 (#1709)

Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 10.4.16 to 10.4.17.
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.16...10.4.17)

---
updated-dependencies:
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump vite from 5.0.11 to 5.0.12 (#1712)

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.0.11 to 5.0.12.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.0.12/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.0.12/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump react-router-dom from 6.21.2 to 6.21.3 (#1713)

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.21.2 to 6.21.3.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.3/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* New attempt to fix docker (#1714)

* Try to split runners (#1715)

* New attempt to fix docker

* Split runners

* Fix (#1716)

* Docker fix 4 (#1717)

* More fixes

* Fix prettier

* Show function signatures (#1681)

* Move function signature above params table

* Show function signature above input params table

* Add blockquote around function docs and increase vertical spacing

* Use keys in FunctionSignature param declarations

* Bump ts-jest from 29.1.1 to 29.1.2 (#1719)

Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 29.1.1 to 29.1.2.
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.1.1...v29.1.2)

---
updated-dependencies:
- dependency-name: ts-jest
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @testing-library/jest-dom from 6.2.0 to 6.3.0 (#1721)

Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 6.2.0 to 6.3.0.
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.2.0...v6.3.0)

---
updated-dependencies:
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add withdrawals count to epoch page (#1724)

* Add withdrawals count to epoch page

* Handle pre-Capella block responses properly

* Show withdrawals on slot page (#1725)

* Show withdrawals on slot page

* Move withdrawal details row into its own component

* Use TransactionAddress to show selection highlighting

* Add hex-to-zil and fix API calls (#1)

* Add hex-to-zil button

Fix copy button to display new address

Made changes according to comments

* Update image name in Docker publish action (#2)

* Remove publish to GHCR (#3)

* Show contract bytecode in Contract tab (#8)

Co-authored-by: sealer3 <125761775+sealer3@users.noreply.github.com>

* Display Scilla contract source (#9)

* Add ability to view DS Blocks (#13)

* Changed Runtime Context to contain Zilliqa object

* Reformatted code so that all Pending components are together

* Added basic components for DS Blocks

* Implemented polling for most recent DS Block

* Added function to convert to Otterscan timestamp format

* Added detailed DS Block page

* Added ability to search for DS Blocks using search bar

* Added DS Block List page

* (fix) Make otterscan build again.

* US-322: Can now decode scilla logs. (#16)

* (feat) Scilla log decodes now work.

* (fix) US-322: Fix package-lock.json

* (fix) fix compile issues

* (feat) Show raw receipts.

* (feat) A bit more resilience to improperly formatted receipts.

* (fix) Reverse priority of scilla and EVM log entry decodes
      so that we don't accidentally think any appropriately-formatted EVM log
      is a Scilla log (may need changing back)
(feat) Now understands forwarded errors from EVM contracts that call Scilla
(feat) Can now filter out empty blocks.

* (fix) Remove debugging
(fix) Suppress "no key" warning in decoded scilla params
(fix) update package-lock.json
(fix) ignore .vite directory (working dir)

* (fix) Fix builds.

* (fix) remove publish to github - we can't publish otterscan's images :-)

* (fix) Fix use of invalid variable in AddressTransactionResults.tsx
(fix) Update package-lock.json

* (fix) Make otterscan compile again
(fix) In-line address converter and copy icons

* (fix) Better spacing for address display
(fix) More API fixes

* Update ethers.

* (fix) the obligatory prettier run.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: sealer3 <125761775+sealer3@users.noreply.github.com>
Co-authored-by: Willian Mitsuda <wmitsuda@gmail.com>
Co-authored-by: lucac-zilliqa <137715422+lucac-zilliqa@users.noreply.github.com>
Co-authored-by: James Hinshelwood <JamesHinshelwood@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

3 participants