Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
7bdcd47
chore: Allow disabling contract creation internal transaction associa…
vbaranov Mar 10, 2026
ef67079
Update CHANGELOG
vbaranov Mar 10, 2026
407eabc
chore(deps-dev): bump credo from 1.7.15 to 1.7.16 (#13937)
dependabot[bot] Mar 10, 2026
43ef7e2
fix: Allow disabling contract creation internal transaction associati…
vbaranov Mar 10, 2026
1520639
Update CHANGELOG
vbaranov Mar 10, 2026
f6e81f9
fix: `confirm_otp` after `OpenApiSpex` integration (#14098)
sl1depengwyn Mar 10, 2026
0007494
chore(deps): bump phoenix_live_view from 1.1.24 to 1.1.26 (#14095)
dependabot[bot] Mar 10, 2026
ee00026
chore(deps): bump telemetry from 1.3.0 to 1.4.1 (#14092)
dependabot[bot] Mar 10, 2026
bb591e6
chore(deps): bump ex_cldr from 2.47.0 to 2.47.1 (#14096)
dependabot[bot] Mar 10, 2026
32e27d1
chore(deps): bump ecto_sql from 3.13.4 to 3.13.5 (#14093)
dependabot[bot] Mar 10, 2026
dd36bdb
feat: FHE operations and tags (#13742)
l0gun0v Mar 11, 2026
24b47ed
Add INDEXER_FHE_OPERATIONS_ENABLED to common-blockscout.env
vbaranov Mar 11, 2026
3f7283e
Improved PR template description
vbaranov Mar 12, 2026
a8fc3e6
fix: state changes handle ERC-7984; nil tx.value (#14101)
sl1depengwyn Mar 12, 2026
08bd9ea
fix: add missing query params in user ops swagger spec (#14104)
k1rill-fedoseev Mar 12, 2026
e1ff982
fix: Add dependency between heavy internal transactions migrations (#…
Qwerty5Uiop Mar 13, 2026
732ec4e
Update CHANGELOG
vbaranov Mar 13, 2026
7337a80
chore: Return automatic chromedriver version definition (#14108)
vbaranov Mar 13, 2026
e937983
Bump version to 10.0.6
vbaranov Mar 16, 2026
d62abc1
fix: Zetachain internal txs fetching error (#14122)
vbaranov Mar 16, 2026
ea81934
chore(deps): bump phoenix_live_view from 1.1.26 to 1.1.27 (#14129)
dependabot[bot] Mar 17, 2026
efe5f6f
chore(deps): bump ex_cldr_units from 3.20.1 to 3.20.2 (#14127)
dependabot[bot] Mar 17, 2026
09d36f7
feat: add search by token address hash in /api/v2/tokens (#14102)
Glencorse033 Mar 17, 2026
0c3773a
chore(deps): bump ymlr from 5.1.4 to 5.1.5 (#14125)
dependabot[bot] Mar 18, 2026
8bd0600
chore(deps): bump absinthe from 1.9.0 to 1.9.1 (#14126)
dependabot[bot] Mar 18, 2026
308b7ae
feat: KeyCloak integration (#14068)
sl1depengwyn Mar 19, 2026
d1b3f9a
fix: Fix pending ops migration overflow by adaptive batching and chun…
vbaranov Mar 20, 2026
1299561
fix: authentication provider token redis key (#14137)
sl1depengwyn Mar 20, 2026
9ffbf6b
fix: Don't insert PTO for non-traceable transactions (#14133)
Qwerty5Uiop Mar 20, 2026
7d669c7
fix: Notify.check_auth0 for Keycloak and Dynamic (#14146)
sl1depengwyn Mar 23, 2026
0175ee3
feat: add validation for IPFS links before sending requests to gatewa…
Glencorse033 Mar 24, 2026
fee34c2
feat: add ENS and metadata preloading in block channel (#12074)
fedor-ivn Mar 24, 2026
78e9c5a
Allow manually trigger main CI
vbaranov Mar 24, 2026
3eb34f6
Remove custom branches from main CI workflow
vbaranov Mar 24, 2026
21f7ef4
fix: Fix token transfers block_consensus setting (#14005)
Qwerty5Uiop Mar 24, 2026
26f6aa2
chore: Add token transfer consensus sanitizer (#14144)
Qwerty5Uiop Mar 24, 2026
9eead37
fix: Allow fetching of stale token balances (#14154)
GimluCom Mar 25, 2026
e546c95
chore: Stabilize various flaky tests (#14149)
vbaranov Mar 25, 2026
6f26cd1
fix: sync GraphQL language enum with SmartContract schema (#14109)
dylantirandaz Mar 26, 2026
0b59ff2
Add info about recents releases to CHANGELOG
vbaranov Mar 26, 2026
299d3f9
fix: celo election rewards csv export (#14160)
sl1depengwyn Mar 27, 2026
fecacf7
fix: keycloak address displaying (#14155)
sl1depengwyn Mar 27, 2026
1551160
Merge remote-tracking branch 'upstream/master' into upstream-sync-202…
hanzo-dev Mar 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .agents/skills/elixir-credo-predicate-naming/SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
name: elixir-credo-predicate-naming
description: "Use when working on Elixir code with Credo predicate naming warnings, boolean helper functions, or renaming functions that start with is_. Prevents violations like: Predicate function names should not start with 'is' and should end in a question mark."
---

# Elixir Credo Predicate Naming

Use this skill to prevent and fix predicate naming violations in Elixir.

## Rules

- Predicate functions must end with `?`.
- Predicate functions must not start with `is_`.
- Prefer names like `valid_*?`, `enabled_*?`, `has_*?`, `can_*?`, `matches_*?`, or `<noun>_*?`.

## Refactor Workflow

1. Find predicate functions named like `is_*?`.
2. Rename each one to a Credo-compliant name that still reads clearly.
3. Update all call sites in the same module and across the codebase.
4. Keep arity unchanged unless behavior intentionally changes.
5. Run a focused Credo check for edited files.

## Naming Guidance

- `is_valid_zrc2_transfer_log?/4` -> `valid_zrc2_transfer_log?/4`
- `is_enabled?/1` -> `enabled?/1`
- `is_erc20_transfer?/2` -> `erc20_transfer?/2`
- `is_contract_verified?/1` -> `contract_verified?/1`

## Safety Checks

- Preserve semantics during rename.
- Verify no stale references remain.
- If the function is part of a public API, rename consistently and update docs/specs.

## Verification Commands

```bash
mix credo path/to/file.ex
mix test
```

## Expected Result

No Credo findings for predicate naming in updated files.
16 changes: 1 addition & 15 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,12 @@ on:
push:
branches:
- master
- production-arbitrum
- production-core
- production-eth-sepolia
- production-filecoin
- production-fuse
- production-optimism
- production-immutable
- production-iota
- production-lukso
- production-rsk
- production-sokol
- production-xdai
- production-zkevm
- production-zksync
- staging-l2
paths-ignore:
- "CHANGELOG.md"
- "**/README.md"
- "docker/*"
- "docker-compose/*"
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, labeled]
branches:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
env:
OTP_VERSION: '27.3.4.6'
ELIXIR_VERSION: '1.19.4'
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6

jobs:
matrix-builder:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-arbitrum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-celo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
API_GRAPHQL_MAX_COMPLEXITY: 10400
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-eth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-filecoin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-fuse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-gnosis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-optimism.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-polygon-zkevm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-rootstock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-scroll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-zilliqa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-zksync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-custom-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-every-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
env:
OTP_VERSION: '27.3.4.6'
ELIXIR_VERSION: '1.19.4'
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-arbitrum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: arbitrum
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-celo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: optimism-celo
API_GRAPHQL_MAX_COMPLEXITY: 10400
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: poa
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-eth-sepolia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: eth-sepolia
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-eth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: ethereum
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-filecoin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: filecoin
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-fuse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: fuse
steps:
- uses: actions/checkout@v5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: xdai
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-l2-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: optimism-l2-advanced
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-lukso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: lukso
steps:
- uses: actions/checkout@v5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: optimism
steps:
- uses: actions/checkout@v5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: optimism
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-optimism.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: optimism
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-rootstock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: rsk
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-scroll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: scroll
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-zetachain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: zetachain
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-zilliqa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: zilliqa
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-zkevm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: zkevm
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-zksync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
DOCKER_CHAIN_NAME: zksync
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-old-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Push Docker image to GitHub Container Registry
runs-on: build
env:
RELEASE_VERSION: 10.0.1
RELEASE_VERSION: 10.0.6
steps:
- uses: actions/checkout@v5
- name: Setup repo
Expand Down
Loading
Loading