Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into dependabot/hex/phoe…
Browse files Browse the repository at this point in the history
…nix_html-3.3.3

* origin/master: (607 commits)
  6.3.0
  Hotfix for Optimism Ecotone batch blobs indexing (#9646)
  ERC-404 basic support (#9407)
  Add secondary coin and transaction stats (#9483)
  Fix zero balances coming via WS (#9510)
  Separate errors by type in EndpointAvailabilityObserver (#9511)
  Fix infinite retries for orphaned blobs (#9620)
  Reset missing ranges collector to max number after the cycle is done (#9635)
  Update CHANGELOG record
  Fix fetch_coin_balance query to compare between balances with values (#9638)
  Re-add missing blob transactions count (#9644)
  Fix no function clause matching in BENS.item_to_address_hash_strings/1 (#9640)
  Add last output root size counter (#9532)
  Rewrite query for token transfers on address to eliminate "or" (#9576)
  Don't insert pbo for not inserted blocks (#9629)
  zksync chain type support (#9631)
  Massive blocks fetcher (#9486)
  Release workflow for Gnosis chain
  Setup alternative hex.pm mirrors (#9622)
  Format .eex files
  ...
  • Loading branch information
fedor-ivn committed Mar 17, 2024
2 parents 6478a45 + 510bf9d commit 9ee7dff
Show file tree
Hide file tree
Showing 813 changed files with 54,684 additions and 18,584 deletions.
18 changes: 1 addition & 17 deletions .dialyzer-ignore
@@ -1,28 +1,12 @@
:0: Unknown function 'Elixir.ExUnit.Callbacks':'__merge__'/3
:0: Unknown function 'Elixir.ExUnit.CaseTemplate':'__proxy__'/2
:0: Unknown type 'Elixir.Map':t/0
:0: Unknown type 'Elixir.Hash':t/0
:0: Unknown type 'Elixir.Address':t/0
lib/ethereum_jsonrpc/rolling_window.ex:171
lib/explorer/smart_contract/solidity/publisher_worker.ex:1
lib/explorer/smart_contract/vyper/publisher_worker.ex:1
lib/explorer/smart_contract/solidity/publisher_worker.ex:8
lib/explorer/smart_contract/vyper/publisher_worker.ex:8
lib/block_scout_web/router.ex:1
lib/block_scout_web/schema/types.ex:31
lib/phoenix/router.ex:324
lib/phoenix/router.ex:402
lib/explorer/smart_contract/reader.ex:435
lib/explorer/exchange_rates/source.ex:139
lib/explorer/exchange_rates/source.ex:142
lib/indexer/fetcher/polygon_edge.ex:737
lib/indexer/fetcher/polygon_edge/deposit_execute.ex:140
lib/indexer/fetcher/polygon_edge/deposit_execute.ex:184
lib/indexer/fetcher/polygon_edge/withdrawal.ex:160
lib/indexer/fetcher/polygon_edge/withdrawal.ex:204
lib/indexer/fetcher/zkevm/transaction_batch.ex:116
lib/indexer/fetcher/zkevm/transaction_batch.ex:156
lib/indexer/fetcher/zkevm/transaction_batch.ex:252
lib/block_scout_web/views/api/v2/transaction_view.ex:431
lib/block_scout_web/views/api/v2/transaction_view.ex:472
lib/explorer/chain/transaction.ex:166
lib/explorer/chain/transaction.ex:171
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Expand Up @@ -24,8 +24,8 @@ body:
description: How the application has been deployed.
options:
- Docker-compose
- Helm charts (k8s)
- Manual from the source code
- Helm charts
- Docker
validations:
required: true
Expand Down Expand Up @@ -65,7 +65,7 @@ body:
attributes:
label: Backend version
description: The release version of the backend or branch/commit.
placeholder: v5.3.1
placeholder: v6.1.0
validations:
required: true

Expand Down
23 changes: 23 additions & 0 deletions .github/actions/setup-repo-and-short-sha/action.yml
@@ -0,0 +1,23 @@
name: 'Setup repo and calc short SHA commit'
description: 'Setup repo: checkout/login/extract metadata, Set up Docker Buildx and calculate short SHA commit'
inputs:
docker-username:
description: 'Docker username'
required: true
docker-password:
description: 'Docker password'
required: true
runs:
using: "composite"

steps:
- uses: actions/checkout@v4
- name: Setup repo
uses: ./.github/actions/setup-repo
with:
docker-username: ${{ inputs.docker-username }}
docker-password: ${{ inputs.docker-password }}

- name: Add SHORT_SHA env property with commit short sha
shell: bash
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
29 changes: 29 additions & 0 deletions .github/actions/setup-repo/action.yml
@@ -0,0 +1,29 @@
name: 'Setup repo'
description: 'Setup repo: checkout/login/extract metadata, Set up Docker Buildx'
inputs:
docker-username:
description: 'Docker username'
required: true
docker-password:
description: 'Docker password'
required: true
runs:
using: "composite"
steps:
- name: Check out the repo
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ inputs.docker-username }}
password: ${{ inputs.docker-password }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: blockscout/blockscout
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Expand Up @@ -10,7 +10,7 @@ updates:
directory: "/apps/block_scout_web/assets"
open-pull-requests-limit: 10
schedule:
interval: "weekly"
interval: "monthly"
ignore:
- dependency-name: "bootstrap"
- dependency-name: "web3"
Expand All @@ -20,4 +20,4 @@ updates:
directory: "/apps/explorer"
open-pull-requests-limit: 10
schedule:
interval: "weekly"
interval: "monthly"

0 comments on commit 9ee7dff

Please sign in to comment.