-
Notifications
You must be signed in to change notification settings - Fork 0
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
[pull] master from blockscout:master #1
base: master
Are you sure you want to change the base?
Commits on Aug 6, 2024
-
feat: support for
:celo
chain type (#10564)* feat: indexing of Celo transactions (#10275) * feat(json-rpc): support celo-specific fields in transactions * chore: add new chain type to matrix builder * feat: add celo-specific fields to transactions schema * chore: add "celo" to `cspell.json` * chore: fix formatting * refactor: improve naming for celo fields and ignore `ethCompatible` field * chore: add block fetcher test for celo fields * feat: add celo core contract abis * feat: add a cache for core celo contracts * feat: treat celo native token transfers as token transfers * fix: update `cspell.json` with celo words * fix(dialyzer): pattern can never match the type * fix: update `cspell.json` with celo words * feat: move `CELO_NETWORK` env to config * feat: parse native Celo token transfers from internal transactions * feat: add token balances fetching * refactor: remove `dbg` and organize code better * fix: start TokenBalance fetcher * fix: start token balance fetcher * fix: typo in log message * fix: missing fields in celo transaction token transfer * refactor: remove `AbiHandler` in favour of hardcoded pieces of abi * refactor: native token transfers from internal transactions fether * feat: implement parsing of token transfers for traceable rpc node * feat: fetch address coin balances after erc20 celo token transfers * feat: add `gas_token` to transaction response in api v2 * feat: index tokens specified as `feeCurrency` * chore: fix credo warnings * chore: decrease log level to debug * chore: fix cspell warnings * refactor: apply suggestions * fix: handle case when `gas_token` is not loaded * dbg * chore: expect contract calls in celo fetcher test * fix: compile errors for celo view on default chain type * chore: remove unused import * refactor: move `celo_gas_tokens` to chain type imports * refactor: apply suggestions * fix: swap arguments in `put_if_present` * fix: indexer tests * refactor: always include `gas_token` to the response * feat: add `gas_token` to all transaction-related endpoints * feat: celo core contracts with historical data * fix: `uncles` field is expected but not present in RPC node response * fix: credo & format * fix: define `CELO_CORE_CONTRACTS` in tests * fix: put `gas_token` under `celo` section * refactor: move token transfers filtering from `TokenTotalSupplyUpdater` to `Transform.TokenTransfers` * feat: add workflow to publish docker image * refactor: apply suggestions by @nikitosing * chore: add docs and specs * fix: malformed import * fix: publish image for celo * fix: ci build for celo * feat: index celo epoch transactions (#9944) * feat(json-rpc): support celo-specific fields in transactions * chore: add new chain type to matrix builder * feat: add celo-specific fields to transactions schema * chore: add "celo" to `cspell.json` * chore: fix formatting * refactor: improve naming for celo fields and ignore `ethCompatible` field * chore: add block fetcher test for celo fields * feat: add celo core contract abis * feat: add a cache for core celo contracts * feat: treat celo native token transfers as token transfers * fix: update `cspell.json` with celo words * fix(dialyzer): pattern can never match the type * fix: update `cspell.json` with celo words * feat: move `CELO_NETWORK` env to config * feat: parse native Celo token transfers from internal transactions * feat: add token balances fetching * refactor: remove `dbg` and organize code better * fix: start TokenBalance fetcher * fix: start token balance fetcher * fix: typo in log message * fix: missing fields in celo transaction token transfer * refactor: remove `AbiHandler` in favour of hardcoded pieces of abi * refactor: native token transfers from internal transactions fether * feat: implement parsing of token transfers for traceable rpc node * feat: fetch address coin balances after erc20 celo token transfers * feat: add `gas_token` to transaction response in api v2 * feat: index tokens specified as `feeCurrency` * chore: fix credo warnings * chore: decrease log level to debug * chore: fix cspell warnings * refactor: apply suggestions * fix: handle case when `gas_token` is not loaded * dbg * chore: expect contract calls in celo fetcher test * fix: compile errors for celo view on default chain type * chore: remove unused import * refactor: move `celo_gas_tokens` to chain type imports * refactor: apply suggestions * fix: swap arguments in `put_if_present` * fix: indexer tests * refactor: always include `gas_token` to the response * feat: add `gas_token` to all transaction-related endpoints * feat: celo core contracts with historical data * fix: `uncles` field is expected but not present in RPC node response * fix: credo & format * fix: define `CELO_CORE_CONTRACTS` in tests * fix: put `gas_token` under `celo` section * refactor: move token transfers filtering from `TokenTotalSupplyUpdater` to `Transform.TokenTransfers` * feat: add workflow to publish docker image * refactor: apply suggestions by @nikitosing * chore: add docs and specs * fix: malformed import * feat: add pending epoch operations table * refactor: fix format * feat: add transformers for epoch events * feat: add query to stream pending epoch block operations * fix: call to renamed function * fix: add factory method for pending epoch block operation * feat: add utils for logs parsing * feat: add schemas for epoch rewards and election rewards * fix: rename transformer according to event name * feat: implement epoch rewards fetcher * feat: fetch and import epoch logs * feat: improve epoch rewards fetcher 1. Do not fetch logs -- use the ones stored in DB 2. Import epochs to the database 3. Configure fetcher in runtime.exs * feat: add epoch helper functions * activated_validator_group_vote.ex * feat: add task to fetch core contracts * feat: fetch core contract events in the task * fix: merge artifacts * refactor: logs requests and reduce scope of epoch logs request * chore: fix formatting, credo warning, etc. * feat: fetch epoch rewards in one sql query * feat: fetch validator group votes (historical data and on demand) * refactor: rename fields and replace all entries on conflict * feat: validator group votes fetcher * fix: put each topic in a separate request * feat: fetch voter rewards * refactor: split epoch fetcher to multiple modules * feat: send epoch blocks for async fetching from block fetcher * chore: fix credo and formatting issues * fix: dialyzer warnings * fix: add on demand fetch of group votes * fix: failed explorer and indexer tests * fix: block fetcher tests * fix: match error in epoch logs * feat: add env to manage logs batch size when fetching validator group votes * fix: Add `ssl_opts` for Celo repo * fix: add `disabled?` predicate to supervisor config * fix: return empty list when `getPaymentDelegation` is not available * fix: validate the case when there is no voter rewards for an epoch * fix: formatting * fix: import `put_if_present/3` * fix: do not treat genesis block as an epoch block * fix: some of the fetcher tests * dbg * chore: remove commented code * chore: canonical disable flag env name * fix: run test only for celo chain type * fix: add explicit `wait_ for_tasks` in token instance realtime test * fix: set missing `CELO_CORE_CONTRACTS` env * fix: rollback token instance realtime test * chore: remove debug artifact * chore: add docs for new tables * perf: remove unused fields from `celo_validator_group_votes` table * fix: add on_exit clause * refactor: use `remove/3` function for migration rollback possibility * refactor: extract celo core contracts environment variable setup into a separate function * chore: add new vars to `common-blockscout.env` file * chore: add specs and docs for new modules and functions * refactor: eliminate unused import warnings * fix: credo warning * feat: API for celo epoch rewards and fees breakdown (#10308) * feat(json-rpc): support celo-specific fields in transactions * chore: add new chain type to matrix builder * feat: add celo-specific fields to transactions schema * chore: add "celo" to `cspell.json` * chore: fix formatting * refactor: improve naming for celo fields and ignore `ethCompatible` field * chore: add block fetcher test for celo fields * feat: add celo core contract abis * feat: add a cache for core celo contracts * feat: treat celo native token transfers as token transfers * fix: update `cspell.json` with celo words * fix(dialyzer): pattern can never match the type * fix: update `cspell.json` with celo words * feat: move `CELO_NETWORK` env to config * feat: parse native Celo token transfers from internal transactions * feat: add token balances fetching * refactor: remove `dbg` and organize code better * fix: start TokenBalance fetcher * fix: start token balance fetcher * fix: typo in log message * fix: missing fields in celo transaction token transfer * refactor: remove `AbiHandler` in favour of hardcoded pieces of abi * refactor: native token transfers from internal transactions fether * feat: implement parsing of token transfers for traceable rpc node * feat: fetch address coin balances after erc20 celo token transfers * feat: add `gas_token` to transaction response in api v2 * feat: index tokens specified as `feeCurrency` * chore: fix credo warnings * chore: decrease log level to debug * chore: fix cspell warnings * refactor: apply suggestions * fix: handle case when `gas_token` is not loaded * dbg * chore: expect contract calls in celo fetcher test * fix: compile errors for celo view on default chain type * chore: remove unused import * refactor: move `celo_gas_tokens` to chain type imports * refactor: apply suggestions * fix: swap arguments in `put_if_present` * fix: indexer tests * feat: add pending epoch operations table * feat: add several celo core contracts * refactor: fix format * feat: add new core contract default addresses * feat: add transformers for epoch events * feat: add query to stream pending epoch block operations * fix: call to renamed function * fix: add factory method for pending epoch block operation * feat: add utils for logs parsing * feat: add schemas for epoch rewards and election rewards * fix: rename transformer according to event name * feat: implement epoch rewards fetcher * feat: fetch and import epoch logs * feat: improve epoch rewards fetcher 1. Do not fetch logs -- use the ones stored in DB 2. Import epochs to the database 3. Configure fetcher in runtime.exs * fix: remove duplicated module attribute * feat: add epoch helper functions * activated_validator_group_vote.ex * feat: tmp * refactor: always include `gas_token` to the response * feat: add `gas_token` to all transaction-related endpoints * feat: celo core contracts with historical data * fix: `uncles` field is expected but not present in RPC node response * fix: credo & format * fix: define `CELO_CORE_CONTRACTS` in tests * fix: put `gas_token` under `celo` section * refactor: move token transfers filtering from `TokenTotalSupplyUpdater` to `Transform.TokenTransfers` * feat: add workflow to publish docker image * refactor: apply suggestions by @nikitosing * chore: add docs and specs * fix: malformed import * feat: add pending epoch operations table * refactor: fix format * feat: add transformers for epoch events * feat: add query to stream pending epoch block operations * fix: call to renamed function * fix: add factory method for pending epoch block operation * feat: add utils for logs parsing * feat: add schemas for epoch rewards and election rewards * fix: rename transformer according to event name * feat: implement epoch rewards fetcher * feat: fetch and import epoch logs * feat: improve epoch rewards fetcher 1. Do not fetch logs -- use the ones stored in DB 2. Import epochs to the database 3. Configure fetcher in runtime.exs * feat: add epoch helper functions * activated_validator_group_vote.ex * feat: add task to fetch core contracts * feat: fetch core contract events in the task * fix: merge artifacts * refactor: logs requests and reduce scope of epoch logs request * chore: fix formatting, credo warning, etc. * feat: fetch epoch rewards in one sql query * feat: fetch validator group votes (historical data and on demand) * refactor: rename fields and replace all entries on conflict * feat: validator group votes fetcher * fix: put each topic in a separate request * feat: fetch voter rewards * fix: merge artifacts * feat: add epoch rewards in block api response * fix: merge artifacts * feat: add base fee breakdown in block api response * feat: add aggregated election rewards to block api response * perf: use replica when querying epoch rewards * feat: endpoint for paginated election rewards * feat: endpoint for paginated election rewards for address * chore: rename `rewards` to `distributions` * fix: add missing reward type to API error message * refactor: split epoch fetcher to multiple modules * feat: send epoch blocks for async fetching from block fetcher * chore: fix credo and formatting issues * fix: dialyzer warnings * fix: add on demand fetch of group votes * fix: failed explorer and indexer tests * fix: block fetcher tests * chore: remove unused module * fix: sort election rewards by block number * fix: match error in epoch logs * feat: add env to manage logs batch size when fetching validator group votes * fix: credo and formatting warnings * fix: cspell errors * fix: dialyzer errors * fix: Add `ssl_opts` for Celo repo * fix: add missing preloads and make more explicit api response for block * fix: add `disabled?` predicate to supervisor config * fix: return empty list when `getPaymentDelegation` is not available * fix: validate the case when there is no voter rewards for an epoch * fix: formatting * fix: add missing preload * refactor: more robust fees breakdown logic for the case of fee handler * fix: formatting * refactor: move epoch information to the separate endpoint * fix: import `put_if_present/3` * fix: formatting * fix: do not treat genesis block as an epoch block * fix: some of the fetcher tests * dbg * chore: remove commented code * chore: canonical disable flag env name * fix: run test only for celo chain type * fix: add explicit `wait_ for_tasks` in token instance realtime test * fix: set missing `CELO_CORE_CONTRACTS` env * fix: rollback token instance realtime test * chore: remove debug artifact * chore: add `@docs` and `@specs` * fix: missing core contracts var in tests * feat: extend `tabs-counters` endpoint with election rewards count * refactor: move dead address to `Explorer.Chain.SmartContract` * perf: clause with simplified queries in the case of `amount == 0` and/or `block_number == 0` * fix: it comes that `NotLoaded` clause is not redundant actually... * fix: add missing preload in `BlockScoutWeb.AddressChannel` * chore: unset `CELO_CORE_CONTRACTS` in tests * chore: add missing specs * fix: `paginate` clause when `amount == 0` * refactor: move `paging_options/2` to `Explorer.Chain.Celo.ElectionReward` * refactor: avoid using virtual field for block number. * fix: remove redundant condition in the query * chore: clarify `@spec` * chore: fix credo warning * chore: remove `fi-celo` from branches that trigger ci * fix: merge artifacts * fix: remove todo comment
Configuration menu - View commit details
-
Copy full SHA for 6c07246 - Browse repository at this point
Copy the full SHA 6c07246View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ab691d - Browse repository at this point
Copy the full SHA 3ab691dView commit details
Commits on Aug 7, 2024
-
fix: Sanitize topic value before making db query (#10481)
* Sanitize topic value before making db query * Process review comment
Configuration menu - View commit details
-
Copy full SHA for 25339b9 - Browse repository at this point
Copy the full SHA 25339b9View commit details -
fix: Fetch contract methods decoding candidates sorted by inserted_at (…
…#10529) * Fetch contract methods decoding candidates sorted by inserted_at * Add contract_methods inserted_at B-tree index
Configuration menu - View commit details
-
Copy full SHA for 0f7aba6 - Browse repository at this point
Copy the full SHA 0f7aba6View commit details -
feat: No rate limit API key (#10515)
* feat: No rate limit API key * Refactor, add tests * Add tests
Configuration menu - View commit details
-
Copy full SHA for 678b544 - Browse repository at this point
Copy the full SHA 678b544View commit details
Commits on Aug 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 343b159 - Browse repository at this point
Copy the full SHA 343b159View commit details -
Configuration menu - View commit details
-
Copy full SHA for 259a143 - Browse repository at this point
Copy the full SHA 259a143View commit details -
Configuration menu - View commit details
-
Copy full SHA for a13d43f - Browse repository at this point
Copy the full SHA a13d43fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1fd2a8f - Browse repository at this point
Copy the full SHA 1fd2a8fView commit details
Commits on Aug 12, 2024
-
chore: Add API endpoint for OP batch blocks (#10566)
* API endpoint for OP batch blocks * Minor refactoring * mix format --------- Co-authored-by: POA <33550681+poa@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for c846237 - Browse repository at this point
Copy the full SHA c846237View commit details
Commits on Aug 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7c4753d - Browse repository at this point
Copy the full SHA 7c4753dView commit details -
Configuration menu - View commit details
-
Copy full SHA for af88ab5 - Browse repository at this point
Copy the full SHA af88ab5View commit details -
feat: Add DELETE /api/v2/import/token-info method (#10580)
* feat: Add DELETE /api/v2/import/token-info method * Process review comments * Unify params case * Fix test * Fix test
Configuration menu - View commit details
-
Copy full SHA for ebc99bf - Browse repository at this point
Copy the full SHA ebc99bfView commit details -
feat: Add token decimals to token transfers CSV export (#10589)
* Add token decimals to token transfers CSV export * Fix tests * Process review comments
Configuration menu - View commit details
-
Copy full SHA for f4540a3 - Browse repository at this point
Copy the full SHA f4540a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 63805db - Browse repository at this point
Copy the full SHA 63805dbView commit details -
fix: Fix internal transaction validation (#10443)
* Fix internal transaction validation * Add parsing function clause for failed internal transaction, add logging of to internal transaction changeset validation
Configuration menu - View commit details
-
Copy full SHA for 8382c35 - Browse repository at this point
Copy the full SHA 8382c35View commit details
Commits on Aug 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 96c37ff - Browse repository at this point
Copy the full SHA 96c37ffView commit details -
feat: more descriptive status for Arbitrum message for the transactio…
…n view (#10593) * more descriptive status for message in transaction view * fix dialyzer issue
Configuration menu - View commit details
-
Copy full SHA for 6caf814 - Browse repository at this point
Copy the full SHA 6caf814View commit details -
feat: Add /api/v2/proxy/metadata/addresses endpoint (#10585)
* Init * feat: Add /api/v2/proxy/metadata/addresses endpoint * Process review comments
Configuration menu - View commit details
-
Copy full SHA for c9ddc19 - Browse repository at this point
Copy the full SHA c9ddc19View commit details -
feat: Add method name to transactions CSV export (#10579)
* feat: Add method name to transactions CSV export * Add doc
Configuration menu - View commit details
-
Copy full SHA for 5785ea8 - Browse repository at this point
Copy the full SHA 5785ea8View commit details
Commits on Aug 15, 2024
-
feat: enhance /api/v2/smart-contracts/:hash API endpoint (#10558)
* feat: enhance /api/v2/smart-contracts/:hash API endpoint * Refactor implementation fetch * Refactoring address controller * Process review comment * Fix address overview template * Update apps/block_scout_web/lib/block_scout_web/controllers/api/v2/address_controller.ex Co-authored-by: nikitosing <32202610+nikitosing@users.noreply.github.com> --------- Co-authored-by: nikitosing <32202610+nikitosing@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8eb6f08 - Browse repository at this point
Copy the full SHA 8eb6f08View commit details -
feat: Integrate Cryptorank API (#10550)
* feat: Integrate Cryptorank API * Fix config * Fix tests * Process review comments * Add guard * def -> defp * Process review comments * Fix
Configuration menu - View commit details
-
Copy full SHA for ec2e25b - Browse repository at this point
Copy the full SHA ec2e25bView commit details -
chore: Upgrade WS client (#10407)
* chore: Upgrade WS client * Websocket client refactoring
Configuration menu - View commit details
-
Copy full SHA for 8101bfc - Browse repository at this point
Copy the full SHA 8101bfcView commit details
Commits on Aug 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4fbbb3f - Browse repository at this point
Copy the full SHA 4fbbb3fView commit details -
chore: Shrink internal transactions (#10567)
* chore: Shrink internal transactions * Optimize shrink internal transactions migration * Shrink internal transactions refactoring * Fix internal transactions input shrink * Update apps/explorer/lib/explorer/migrator/shrink_internal_transactions.ex Co-authored-by: Victor Baranov <baranov.viktor.27@gmail.com> * Update apps/ethereum_jsonrpc/lib/ethereum_jsonrpc.ex Co-authored-by: Victor Baranov <baranov.viktor.27@gmail.com> * Shrink internal transactions function docs --------- Co-authored-by: Victor Baranov <baranov.viktor.27@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5d98e8b - Browse repository at this point
Copy the full SHA 5d98e8bView commit details -
feat: Support smart-contract verification in zkSync (#10500)
* db changes for zksync smart-contract verification support * Update SmartContract model * Pass zk_compiler_version value in API v1/v2 endpoints * Extend sc verification config with config for zk compilers * Fix constructor arguments saving * Enhance api/v2/smart-contracts/verification/config for zkSync * Process review comments * creationMatch -> runtimeMatch * Fix merging conflicts * Finishing touches
Configuration menu - View commit details
-
Copy full SHA for c4a13a7 - Browse repository at this point
Copy the full SHA c4a13a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for ab2445d - Browse repository at this point
Copy the full SHA ab2445dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0009cae - Browse repository at this point
Copy the full SHA 0009caeView commit details -
Configuration menu - View commit details
-
Copy full SHA for cfb1fba - Browse repository at this point
Copy the full SHA cfb1fbaView commit details
Commits on Aug 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 33225b5 - Browse repository at this point
Copy the full SHA 33225b5View commit details -
Configuration menu - View commit details
-
Copy full SHA for a9c2a08 - Browse repository at this point
Copy the full SHA a9c2a08View commit details
Commits on Aug 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1164445 - Browse repository at this point
Copy the full SHA 1164445View commit details -
Configuration menu - View commit details
-
Copy full SHA for da88e66 - Browse repository at this point
Copy the full SHA da88e66View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6789774 - Browse repository at this point
Copy the full SHA 6789774View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ddac13 - Browse repository at this point
Copy the full SHA 2ddac13View commit details
Commits on Aug 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 012fbcc - Browse repository at this point
Copy the full SHA 012fbccView commit details
Commits on Aug 22, 2024
-
fix: Better detection IPFS links in NFT metadata fetcher (#10638)
* fix: Better detection IPFS links in NFT metadata fetcher * Fix tests * Remove bypass from tests
Configuration menu - View commit details
-
Copy full SHA for 1b3f84b - Browse repository at this point
Copy the full SHA 1b3f84bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e7f14c3 - Browse repository at this point
Copy the full SHA e7f14c3View commit details -
fix: Fix bug in update_replaced_transactions query (#10634)
* fix: Fix bug in update_replaced_transactions query * Fix condition for error
Configuration menu - View commit details
-
Copy full SHA for 8a65bb0 - Browse repository at this point
Copy the full SHA 8a65bb0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9498d11 - Browse repository at this point
Copy the full SHA 9498d11View commit details -
Make Dockerfile use specified user with uid/gid (#10070)
* Make Dockerfile use specified user with uid/gid * Disable password access for blockscout user Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> * Use chown during final copy --------- Co-authored-by: Kirill Fedoseev <kirill@blockscout.com>
Configuration menu - View commit details
-
Copy full SHA for 89ca542 - Browse repository at this point
Copy the full SHA 89ca542View commit details -
fix: Change default shrink internal_transactions table migration para…
…ms (#10644) * Update CHANGELOG * fix: Change default parameters for Shrink internal_transactions table migration * Update CHANGELOG
Configuration menu - View commit details
-
Copy full SHA for e02978c - Browse repository at this point
Copy the full SHA e02978cView commit details -
Configuration menu - View commit details
-
Copy full SHA for d731fe6 - Browse repository at this point
Copy the full SHA d731fe6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d94d09 - Browse repository at this point
Copy the full SHA 4d94d09View commit details
Commits on Aug 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6bf68ba - Browse repository at this point
Copy the full SHA 6bf68baView commit details
Commits on Aug 26, 2024
-
fix:
nil
inOrderedCache
(#10647)* fix: `nil` in `OrderedCache` * Update CHANGELOG --------- Co-authored-by: Viktor Baranov <baranov.viktor.27@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1093584 - Browse repository at this point
Copy the full SHA 1093584View commit details -
fix:
nil
inOrderedCache
(#10647)* fix: `nil` in `OrderedCache` * Update CHANGELOG --------- Co-authored-by: Viktor Baranov <baranov.viktor.27@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7eac1ed - Browse repository at this point
Copy the full SHA 7eac1edView commit details -
Configuration menu - View commit details
-
Copy full SHA for da3fd04 - Browse repository at this point
Copy the full SHA da3fd04View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9fc0ab3 - Browse repository at this point
Copy the full SHA 9fc0ab3View commit details -
fix: logs list serialization (#10565)
* fix: logs factory usage * fix: type conversions * chore: mix format * fix: log factory
Configuration menu - View commit details
-
Copy full SHA for 3d4f9cb - Browse repository at this point
Copy the full SHA 3d4f9cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for ec1493e - Browse repository at this point
Copy the full SHA ec1493eView commit details
Commits on Aug 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2c72aee - Browse repository at this point
Copy the full SHA 2c72aeeView commit details -
Configuration menu - View commit details
-
Copy full SHA for b4b8ecf - Browse repository at this point
Copy the full SHA b4b8ecfView commit details
Commits on Aug 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 54bc32d - Browse repository at this point
Copy the full SHA 54bc32dView commit details -
Configuration menu - View commit details
-
Copy full SHA for cd1f130 - Browse repository at this point
Copy the full SHA cd1f130View commit details
Commits on Sep 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7c1be46 - Browse repository at this point
Copy the full SHA 7c1be46View commit details -
chore(deps-dev): bump @babel/preset-env in /apps/block_scout_web/asse…
…ts (#10680) Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.24.7 to 7.25.4. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.25.4/packages/babel-preset-env) --- updated-dependencies: - dependency-name: "@babel/preset-env" 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>
Configuration menu - View commit details
-
Copy full SHA for a495d77 - Browse repository at this point
Copy the full SHA a495d77View commit details -
chore(deps): bump gettext from 0.25.0 to 0.26.1 (#10657)
Bumps [gettext](https://github.com/elixir-gettext/gettext) from 0.25.0 to 0.26.1. - [Changelog](https://github.com/elixir-gettext/gettext/blob/main/CHANGELOG.md) - [Commits](elixir-gettext/gettext@v0.25.0...v0.26.1) --- updated-dependencies: - dependency-name: gettext 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>
Configuration menu - View commit details
-
Copy full SHA for 6220d31 - Browse repository at this point
Copy the full SHA 6220d31View commit details -
chore(deps): bump cldr_utils from 2.28.0 to 2.28.1 (#10625)
Bumps [cldr_utils](https://github.com/elixir-cldr/cldr_utils) from 2.28.0 to 2.28.1. - [Release notes](https://github.com/elixir-cldr/cldr_utils/releases) - [Changelog](https://github.com/elixir-cldr/cldr_utils/blob/main/CHANGELOG.md) - [Commits](https://github.com/elixir-cldr/cldr_utils/commits) --- updated-dependencies: - dependency-name: cldr_utils 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>
Configuration menu - View commit details
-
Copy full SHA for 855bca0 - Browse repository at this point
Copy the full SHA 855bca0View commit details -
chore(deps): bump luxon in /apps/block_scout_web/assets (#10683)
Bumps [luxon](https://github.com/moment/luxon) from 3.4.4 to 3.5.0. - [Changelog](https://github.com/moment/luxon/blob/master/CHANGELOG.md) - [Commits](moment/luxon@3.4.4...3.5.0) --- updated-dependencies: - dependency-name: luxon 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>
Configuration menu - View commit details
-
Copy full SHA for ccef29b - Browse repository at this point
Copy the full SHA ccef29bView commit details -
chore(deps): bump postgrex from 0.19.0 to 0.19.1 (#10622)
Bumps [postgrex](https://github.com/elixir-ecto/postgrex) from 0.19.0 to 0.19.1. - [Release notes](https://github.com/elixir-ecto/postgrex/releases) - [Changelog](https://github.com/elixir-ecto/postgrex/blob/master/CHANGELOG.md) - [Commits](elixir-ecto/postgrex@v0.19.0...v0.19.1) --- updated-dependencies: - dependency-name: postgrex 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>
Configuration menu - View commit details
-
Copy full SHA for a7ee1ce - Browse repository at this point
Copy the full SHA a7ee1ceView commit details -
fix: Truncate token symbol in Explorer.Chain.PolygonZkevm.BridgeL1Tok…
…en (#10688) Co-authored-by: POA <33550681+poa@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for b1e942f - Browse repository at this point
Copy the full SHA b1e942fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 58fcb0c - Browse repository at this point
Copy the full SHA 58fcb0cView commit details -
chore(deps-dev): bump @babel/core in /apps/block_scout_web/assets (#1…
…0679) Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.24.7 to 7.25.2. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.25.2/packages/babel-core) --- updated-dependencies: - dependency-name: "@babel/core" 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>
Configuration menu - View commit details
-
Copy full SHA for 2e905c0 - Browse repository at this point
Copy the full SHA 2e905c0View commit details -
chore(deps): bump core-js in /apps/block_scout_web/assets (#10684)
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.37.1 to 3.38.1. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/commits/v3.38.1/packages/core-js) --- updated-dependencies: - dependency-name: core-js 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>
Configuration menu - View commit details
-
Copy full SHA for a970a99 - Browse repository at this point
Copy the full SHA a970a99View commit details -
chore(deps-dev): bump webpack in /apps/block_scout_web/assets (#10671)
Bumps [webpack](https://github.com/webpack/webpack) from 5.93.0 to 5.94.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](webpack/webpack@v5.93.0...v5.94.0) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d2dde38 - Browse repository at this point
Copy the full SHA d2dde38View commit details -
chore(deps): bump @fortawesome/fontawesome-free (#10681)
Bumps [@fortawesome/fontawesome-free](https://github.com/FortAwesome/Font-Awesome) from 6.5.2 to 6.6.0. - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md) - [Commits](FortAwesome/Font-Awesome@6.5.2...6.6.0) --- updated-dependencies: - dependency-name: "@fortawesome/fontawesome-free" 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>
Configuration menu - View commit details
-
Copy full SHA for 480b763 - Browse repository at this point
Copy the full SHA 480b763View commit details -
chore(deps-dev): bump postcss in /apps/block_scout_web/assets (#10682)
Bumps [postcss](https://github.com/postcss/postcss) from 8.4.39 to 8.4.42. - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](postcss/postcss@8.4.39...8.4.42) --- updated-dependencies: - dependency-name: postcss 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>
Configuration menu - View commit details
-
Copy full SHA for 72ed84b - Browse repository at this point
Copy the full SHA 72ed84bView commit details -
chore(deps): bump telemetry from 1.2.1 to 1.3.0 (#10656)
Bumps [telemetry](https://github.com/beam-telemetry/telemetry) from 1.2.1 to 1.3.0. - [Changelog](https://github.com/beam-telemetry/telemetry/blob/main/CHANGELOG.md) - [Commits](beam-telemetry/telemetry@v1.2.1...v1.3.0) --- updated-dependencies: - dependency-name: telemetry 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>
Configuration menu - View commit details
-
Copy full SHA for 1a179bb - Browse repository at this point
Copy the full SHA 1a179bbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 22f3ff9 - Browse repository at this point
Copy the full SHA 22f3ff9View commit details
Commits on Sep 3, 2024
-
chore(deps): bump recon from 2.5.5 to 2.5.6 (#10695)
Bumps [recon](https://github.com/ferd/recon) from 2.5.5 to 2.5.6. - [Changelog](https://github.com/ferd/recon/blob/master/CHANGELOG.md) - [Commits](ferd/recon@2.5.5...2.5.6) --- updated-dependencies: - dependency-name: recon 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>
Configuration menu - View commit details
-
Copy full SHA for 53f79f6 - Browse repository at this point
Copy the full SHA 53f79f6View commit details -
chore(deps): bump ex_cldr_units from 3.17.1 to 3.17.2 (#10621)
Bumps [ex_cldr_units](https://github.com/elixir-cldr/cldr_units) from 3.17.1 to 3.17.2. - [Release notes](https://github.com/elixir-cldr/cldr_units/releases) - [Changelog](https://github.com/elixir-cldr/cldr_units/blob/main/CHANGELOG.md) - [Commits](https://github.com/elixir-cldr/cldr_units/commits/v3.17.2) --- updated-dependencies: - dependency-name: ex_cldr_units 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>
Configuration menu - View commit details
-
Copy full SHA for 0dab988 - Browse repository at this point
Copy the full SHA 0dab988View commit details -
chore(deps): bump ex_cldr from 2.40.0 to 2.40.1 (#10623)
Bumps [ex_cldr](https://github.com/elixir-cldr/cldr) from 2.40.0 to 2.40.1. - [Release notes](https://github.com/elixir-cldr/cldr/releases) - [Changelog](https://github.com/elixir-cldr/cldr/blob/main/CHANGELOG.md) - [Commits](elixir-cldr/cldr@v2.40.0...v2.40.1) --- updated-dependencies: - dependency-name: ex_cldr 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>
Configuration menu - View commit details
-
Copy full SHA for a88ad33 - Browse repository at this point
Copy the full SHA a88ad33View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a9e24f - Browse repository at this point
Copy the full SHA 0a9e24fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b28ff3 - Browse repository at this point
Copy the full SHA 4b28ff3View commit details -
Configuration menu - View commit details
-
Copy full SHA for b049e7c - Browse repository at this point
Copy the full SHA b049e7cView commit details -
Configuration menu - View commit details
-
Copy full SHA for dcf88c0 - Browse repository at this point
Copy the full SHA dcf88c0View commit details
Commits on Sep 4, 2024
-
feat: Celo API updates (#10629)
* fix: use atom for matching the `:chain_type` * feat: add celo epoch number to `/api/v2/stats` response * chore: display base fee in wei * feat: add token info to base fee section * fix: process review comments
Configuration menu - View commit details
-
Copy full SHA for acd60fb - Browse repository at this point
Copy the full SHA acd60fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4732c01 - Browse repository at this point
Copy the full SHA 4732c01View commit details -
fix: allow disabling group votes fetcher independently of epoch block…
… fetcher (#10673) * fix: allow disabling group votes fetcher independently of epoch block fetcher * fix: add address and group to primary key * chore: add new var to `common-blockscout.env`
Configuration menu - View commit details
-
Copy full SHA for f6f703c - Browse repository at this point
Copy the full SHA f6f703cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 40961e3 - Browse repository at this point
Copy the full SHA 40961e3View commit details
Commits on Sep 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 11d6a2e - Browse repository at this point
Copy the full SHA 11d6a2eView commit details
Commits on Sep 9, 2024
-
chore(deps): bump redix from 1.5.1 to 1.5.2 (#10738)
Bumps [redix](https://github.com/whatyouhide/redix) from 1.5.1 to 1.5.2. - [Changelog](https://github.com/whatyouhide/redix/blob/main/CHANGELOG.md) - [Commits](whatyouhide/redix@v1.5.1...v1.5.2) --- updated-dependencies: - dependency-name: redix 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>
Configuration menu - View commit details
-
Copy full SHA for 21b9572 - Browse repository at this point
Copy the full SHA 21b9572View commit details -
chore(deps): bump cldr_utils from 2.28.1 to 2.28.2 (#10737)
Bumps [cldr_utils](https://github.com/elixir-cldr/cldr_utils) from 2.28.1 to 2.28.2. - [Release notes](https://github.com/elixir-cldr/cldr_utils/releases) - [Changelog](https://github.com/elixir-cldr/cldr_utils/blob/main/CHANGELOG.md) - [Commits](https://github.com/elixir-cldr/cldr_utils/commits/v2.28.2) --- updated-dependencies: - dependency-name: cldr_utils 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>
Configuration menu - View commit details
-
Copy full SHA for 3132cc7 - Browse repository at this point
Copy the full SHA 3132cc7View commit details
Commits on Sep 10, 2024
-
feat: support for filecoin native addresses (#10468)
* feat: implement `Ecto` type for filecoin address * fix: use proper hashing algorithm for checksum * refactor: avoid hardcoding * feat: add `NativeAddress.ID` type * chore: add `alias Blake2.Blake2b` to fix credo * feat: implement `Ecto` type for filecoin address * chore: rename id address module * feat: fix formatting * feat: add a table for pending address operations * feat: add filecoin fields to addresses relation * feat: create pending operation when new address is imported * feat: implement filecoin native address fetcher * chore: remove merge artifacts * fix: cspell * fix: alias in `native_address_test.exs` * fix: cspell * fix: lock address and corresponding operation for update * feat: trigger async fetch of address info from block fetcher * fix: compilation deadlock * fix: add fetcher supervisor case * feat: add migrator * fix: create pending address operation even if the address exists * feat: render filecoin address info in API v2 views * fix: user controller test * feat: add gauge metric for pending address operations * feat: save http error code for failed fetches * chore: rename fetcher * fix: rebase artifacts * chore: list migrator envs in `common-blockscout.env` * chore: process review comments by @vbaranov * chore: migrate from `blake2_elixir` to `blake2` package * chore: reduce log level to `debug` * chore: set infinity timeout for gauge metric query * refactor: remove redundant `Multi` in filling migration
Configuration menu - View commit details
-
Copy full SHA for e12b010 - Browse repository at this point
Copy the full SHA e12b010View commit details -
feat: Add
INDEXER_OPTIMISM_L1_DEPOSITS_TRANSACTION_TYPE
env variable (#10674) * fix: Use latest block when safe is not determined for OP chains * Add INDEXER_OPTIMISM_L1_DEPOSITS_TX_TYPE env for OP Deposits indexing module * Small refactoring * Fix specs for get_logs function --------- Co-authored-by: POA <33550681+poa@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for a47893d - Browse repository at this point
Copy the full SHA a47893dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9244546 - Browse repository at this point
Copy the full SHA 9244546View commit details
Commits on Sep 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5934c4f - Browse repository at this point
Copy the full SHA 5934c4fView commit details -
Configuration menu - View commit details
-
Copy full SHA for eeee120 - Browse repository at this point
Copy the full SHA eeee120View commit details -
Configuration menu - View commit details
-
Copy full SHA for b55cc8e - Browse repository at this point
Copy the full SHA b55cc8eView commit details
Commits on Sep 12, 2024
-
fix: Avoid key violation error in
Indexer.Fetcher.Optimism.TxnBatch
(……#10752) * fix: Remove key violation error from Indexer.Fetcher.Optimism.TxnBatch fetcher * Update cspell.json --------- Co-authored-by: POA <33550681+poa@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 85ecef9 - Browse repository at this point
Copy the full SHA 85ecef9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 014a126 - Browse repository at this point
Copy the full SHA 014a126View commit details -
chore(deps): bump path-to-regexp and express (#10756)
Bumps [path-to-regexp](https://github.com/pillarjs/path-to-regexp) and [express](https://github.com/expressjs/express). These dependencies needed to be updated together. Updates `path-to-regexp` from 0.1.7 to 0.1.10 - [Release notes](https://github.com/pillarjs/path-to-regexp/releases) - [Changelog](https://github.com/pillarjs/path-to-regexp/blob/master/History.md) - [Commits](pillarjs/path-to-regexp@v0.1.7...v0.1.10) Updates `express` from 4.19.2 to 4.21.0 - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/4.21.0/History.md) - [Commits](expressjs/express@4.19.2...4.21.0) --- updated-dependencies: - dependency-name: path-to-regexp dependency-type: indirect - dependency-name: express dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 889d511 - Browse repository at this point
Copy the full SHA 889d511View commit details
Commits on Sep 13, 2024
-
perf: Improve performance of transactions list page (#10734)
* perf: Improve performance of the transactions list page * Update apps/explorer/lib/explorer/chain/transaction.ex Co-authored-by: Qwerty5Uiop <105209995+Qwerty5Uiop@users.noreply.github.com> * Mix format * Update apps/explorer/lib/explorer/chain/smart_contract/proxy.ex Co-authored-by: Qwerty5Uiop <105209995+Qwerty5Uiop@users.noreply.github.com> * Refactoring * Process review comment * Second refactoring * Revert latest refactoring * Fix nil address_hash * Update apps/explorer/lib/explorer/chain/transaction.ex Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> * Remove credo comment * Update apps/explorer/lib/explorer/chain/smart_contract/proxy.ex Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> * tuple list to map --------- Co-authored-by: Qwerty5Uiop <105209995+Qwerty5Uiop@users.noreply.github.com> Co-authored-by: Kirill Fedoseev <kirill@blockscout.com>
Configuration menu - View commit details
-
Copy full SHA for 680bb09 - Browse repository at this point
Copy the full SHA 680bb09View commit details
Commits on Sep 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5469933 - Browse repository at this point
Copy the full SHA 5469933View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ce08ee - Browse repository at this point
Copy the full SHA 8ce08eeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5afe65b - Browse repository at this point
Copy the full SHA 5afe65bView commit details
Commits on Sep 20, 2024
-
chore(deps): bump ex_abi from 0.8.0 to 0.8.1 (#10780)
Bumps [ex_abi](https://github.com/poanetwork/ex_abi) from 0.8.0 to 0.8.1. - [Release notes](https://github.com/poanetwork/ex_abi/releases) - [Changelog](https://github.com/poanetwork/ex_abi/blob/master/CHANGELOG.md) - [Commits](poanetwork/ex_abi@0.8.0...0.8.1) --- updated-dependencies: - dependency-name: ex_abi 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>
Configuration menu - View commit details
-
Copy full SHA for 3a33a70 - Browse repository at this point
Copy the full SHA 3a33a70View commit details -
chore(deps): bump plug_cowboy from 2.7.1 to 2.7.2 (#10782)
Bumps [plug_cowboy](https://github.com/elixir-plug/plug_cowboy) from 2.7.1 to 2.7.2. - [Changelog](https://github.com/elixir-plug/plug_cowboy/blob/master/CHANGELOG.md) - [Commits](elixir-plug/plug_cowboy@v2.7.1...v2.7.2) --- updated-dependencies: - dependency-name: plug_cowboy 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>
Configuration menu - View commit details
-
Copy full SHA for 930ef01 - Browse repository at this point
Copy the full SHA 930ef01View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a3f29e - Browse repository at this point
Copy the full SHA 0a3f29eView commit details -
fix: Allow string IDs in JSON RPC requests (#10759)
* fix: Allow string IDs in JSON RPC requests * Remove duplicated line * Do not try convert hex to string - return it as is * Fix sanitize_error else option for Poison
Configuration menu - View commit details
-
Copy full SHA for 74e68ad - Browse repository at this point
Copy the full SHA 74e68adView commit details -
Configuration menu - View commit details
-
Copy full SHA for f3e5520 - Browse repository at this point
Copy the full SHA f3e5520View commit details -
fix: revisited approach to choose L1 blocks to discover missing Arbit…
…rum batches (#10757) * revisited way to choose blocks for missing batches * credo issue addressed
Configuration menu - View commit details
-
Copy full SHA for c6fff8e - Browse repository at this point
Copy the full SHA c6fff8eView commit details -
fix: get rid of heavy DB query to start Arbitrum missed messages disc…
…overy process (#10767) * simplified approach to start discovery * function comment improved
Configuration menu - View commit details
-
Copy full SHA for f0ef80b - Browse repository at this point
Copy the full SHA f0ef80bView commit details -
fix: proper handling of old batches on Arbitrum Nova (#10786)
* AnyTrust old certificates support * proper calculation the block range size * don't exclude the block 0 from the boundaries search
Configuration menu - View commit details
-
Copy full SHA for e680905 - Browse repository at this point
Copy the full SHA e680905View commit details -
Configuration menu - View commit details
-
Copy full SHA for 78ebdf8 - Browse repository at this point
Copy the full SHA 78ebdf8View commit details -
fix: Preload additional sources for bytecode twin smart-contract (#10692
Configuration menu - View commit details
-
Copy full SHA for 26a8899 - Browse repository at this point
Copy the full SHA 26a8899View commit details -
fix: decode addresses as checksummed (#10777)
* fix: decode addresses as checksummed * chore: fix failing tests
Configuration menu - View commit details
-
Copy full SHA for 45c8368 - Browse repository at this point
Copy the full SHA 45c8368View commit details -
Configuration menu - View commit details
-
Copy full SHA for dd6b1c9 - Browse repository at this point
Copy the full SHA dd6b1c9View commit details
Commits on Sep 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 547032e - Browse repository at this point
Copy the full SHA 547032eView commit details -
Configuration menu - View commit details
-
Copy full SHA for bb1c194 - Browse repository at this point
Copy the full SHA bb1c194View commit details -
Configuration menu - View commit details
-
Copy full SHA for b80a27c - Browse repository at this point
Copy the full SHA b80a27cView commit details -
Configuration menu - View commit details
-
Copy full SHA for fa00acf - Browse repository at this point
Copy the full SHA fa00acfView commit details -
chore(deps-dev): bump exvcr from 0.15.1 to 0.15.2 (#10814)
Bumps [exvcr](https://github.com/parroty/exvcr) from 0.15.1 to 0.15.2. - [Release notes](https://github.com/parroty/exvcr/releases) - [Changelog](https://github.com/parroty/exvcr/blob/master/CHANGELOG.md) - [Commits](parroty/exvcr@v0.15.1...v0.15.2) --- updated-dependencies: - dependency-name: exvcr 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>
Configuration menu - View commit details
-
Copy full SHA for 29a0429 - Browse repository at this point
Copy the full SHA 29a0429View commit details -
chore(deps): bump con_cache from 1.1.0 to 1.1.1 (#10815)
Bumps [con_cache](https://github.com/sasa1977/con_cache) from 1.1.0 to 1.1.1. - [Changelog](https://github.com/sasa1977/con_cache/blob/master/CHANGELOG.md) - [Commits](sasa1977/con_cache@1.1.0...1.1.1) --- updated-dependencies: - dependency-name: con_cache 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>
Configuration menu - View commit details
-
Copy full SHA for f7a434d - Browse repository at this point
Copy the full SHA f7a434dView commit details
Commits on Sep 24, 2024
-
feat: Add Blackfort validators (#10744)
* feat: Add Blackfort validators * Finishing touches * Add missing specs, docs, pre-release workflow for Blackfort * Remove blocks_validated --------- Co-authored-by: Victor Baranov <baranov.viktor.27@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 629620b - Browse repository at this point
Copy the full SHA 629620bView commit details
Commits on Sep 25, 2024
-
chore(deps): bump ecto from 3.11.2 to 3.12.3 (#10739)
* chore(deps): bump ecto from 3.11.2 to 3.12.3 Bumps [ecto](https://github.com/elixir-ecto/ecto) from 3.11.2 to 3.12.3. - [Release notes](https://github.com/elixir-ecto/ecto/releases) - [Changelog](https://github.com/elixir-ecto/ecto/blob/master/CHANGELOG.md) - [Commits](elixir-ecto/ecto@v3.11.2...v3.12.3) --- updated-dependencies: - dependency-name: ecto dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Fix dialyzer --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Viktor Baranov <baranov.viktor.27@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b6aef21 - Browse repository at this point
Copy the full SHA b6aef21View commit details -
chore(deps): bump elliptic and web3 in /apps/block_scout_web/assets (#…
…10690) Bumps [elliptic](https://github.com/indutny/elliptic) to 6.5.7 and updates ancestor dependency [web3](https://github.com/ChainSafe/web3.js). These dependencies need to be updated together. Updates `elliptic` from 6.5.4 to 6.5.7 - [Commits](indutny/elliptic@v6.5.4...v6.5.7) Updates `web3` from 1.10.4 to 4.12.1 - [Release notes](https://github.com/ChainSafe/web3.js/releases) - [Changelog](https://github.com/web3/web3.js/blob/4.x/CHANGELOG.md) - [Commits](web3/web3.js@v1.10.4...v4.12.1) --- updated-dependencies: - dependency-name: elliptic dependency-type: indirect - dependency-name: web3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 96bca66 - Browse repository at this point
Copy the full SHA 96bca66View commit details -
chore: Add primary key to address_tags table (#10818)
* chore: Add primary key to address_tags table * Remove create_chainlink_oracle_tag/0 function as it is unused
Configuration menu - View commit details
-
Copy full SHA for d95332f - Browse repository at this point
Copy the full SHA d95332fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3fffd46 - Browse repository at this point
Copy the full SHA 3fffd46View commit details -
chore(deps): bump dataloader from 2.0.0 to 2.0.1 (#10781)
Bumps [dataloader](https://github.com/absinthe-graphql/dataloader) from 2.0.0 to 2.0.1. - [Changelog](https://github.com/absinthe-graphql/dataloader/blob/main/CHANGELOG.md) - [Commits](absinthe-graphql/dataloader@v2.0.0...v2.0.1) --- updated-dependencies: - dependency-name: dataloader 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>
Configuration menu - View commit details
-
Copy full SHA for f5aecf1 - Browse repository at this point
Copy the full SHA f5aecf1View commit details
Commits on Sep 27, 2024
-
chore: Remove old UI from base Docker image (#10828)
* chore: Remove old UI from base Docker image * Rename Dockerfile with old UI
Configuration menu - View commit details
-
Copy full SHA for 5e4b8d8 - Browse repository at this point
Copy the full SHA 5e4b8d8View commit details -
fix: Repair /metrics endpoint (#10813)
* fix: Repair /metrics endpoint * Return back change in the application.ex
Configuration menu - View commit details
-
Copy full SHA for e897070 - Browse repository at this point
Copy the full SHA e897070View commit details -
feat: (celo) include token information in API response for address ep…
…och rewards (#10831) * chore: add missing spec and doc * feat: include token information in API response for address epoch rewards
Configuration menu - View commit details
-
Copy full SHA for fae80f7 - Browse repository at this point
Copy the full SHA fae80f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 23b994d - Browse repository at this point
Copy the full SHA 23b994dView commit details -
fix: filecoin stucked pending address operations (#10832)
* chore: log database related errors * fix: do not buffer failed operations * fix: do not hardcode Beryx API Filecoin mainnet base url
Configuration menu - View commit details
-
Copy full SHA for 435bba7 - Browse repository at this point
Copy the full SHA 435bba7View commit details -
Configuration menu - View commit details
-
Copy full SHA for cffc536 - Browse repository at this point
Copy the full SHA cffc536View commit details -
chore: bump elixir to 1.17.3 and Erlang OTP to 27.1 (#10284)
* fix: qemu arm build * ci: remove arm build workaround * chore: bump elixir stack to 1.17.1 * chore: fix dialyzer * chore: update pr ref * chore: bump elixir stack to 1.17.2 * chore: fix range warnings * fix: test * chore: bump elixir stack to 1.17.3 * chore: fix warnings
Configuration menu - View commit details
-
Copy full SHA for 2e6ce2c - Browse repository at this point
Copy the full SHA 2e6ce2cView commit details -
feat: add verbosity to GraphQL token transfers query (#10770)
* feat: GraphQL query for token transfers with verbose token, transaction, and block info * feat: extend GraphQL schema to support legacy `tokenTransferTxs` query * fix: cspell warnings * chore: add spec and doc for `token_transfers_by_address_hash/4` * chore: remove duplicate function declaration * fix: do not treat examples as doctests
Configuration menu - View commit details
-
Copy full SHA for e66d345 - Browse repository at this point
Copy the full SHA e66d345View commit details -
feat: Address scam badge flag (#10763)
* Address badges * Pass badges preload in all controllers related to address * Process review comments: redesign routes * Changes to fit specified requirements * Hide scam addresses from search based on the flag at the backend * Refactoring based on review comments * Update apps/block_scout_web/lib/block_scout_web/controllers/api/v2/address_badge_controller.ex Co-authored-by: nikitosing <32202610+nikitosing@users.noreply.github.com> * Update apps/block_scout_web/lib/block_scout_web/controllers/api/v2/address_badge_controller.ex Co-authored-by: nikitosing <32202610+nikitosing@users.noreply.github.com> * Add addresses filtering * Hide scam tokens from the lists --------- Co-authored-by: nikitosing <32202610+nikitosing@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 12517db - Browse repository at this point
Copy the full SHA 12517dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for ad1ce1f - Browse repository at this point
Copy the full SHA ad1ce1fView commit details
Commits on Sep 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 083966a - Browse repository at this point
Copy the full SHA 083966aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 57a027f - Browse repository at this point
Copy the full SHA 57a027fView commit details -
chore(deps-dev): bump credo from 1.7.7 to 1.7.8 (#10850)
Bumps [credo](https://github.com/rrrene/credo) from 1.7.7 to 1.7.8. - [Release notes](https://github.com/rrrene/credo/releases) - [Changelog](https://github.com/rrrene/credo/blob/master/CHANGELOG.md) - [Commits](rrrene/credo@v1.7.7...v1.7.8) --- updated-dependencies: - dependency-name: credo 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>
Configuration menu - View commit details
-
Copy full SHA for 6882d3d - Browse repository at this point
Copy the full SHA 6882d3dView commit details -
chore(deps): bump bamboo from 2.3.0 to 2.3.1 (#10849)
Bumps [bamboo](https://github.com/thoughtbot/bamboo) from 2.3.0 to 2.3.1. - [Release notes](https://github.com/thoughtbot/bamboo/releases) - [Changelog](https://github.com/beam-community/bamboo/blob/main/CHANGELOG.md) - [Commits](beam-community/bamboo@v2.3.0...v2.3.1) --- updated-dependencies: - dependency-name: bamboo 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>
Configuration menu - View commit details
-
Copy full SHA for 41703b6 - Browse repository at this point
Copy the full SHA 41703b6View commit details
Commits on Oct 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 36e6f83 - Browse repository at this point
Copy the full SHA 36e6f83View commit details -
Configuration menu - View commit details
-
Copy full SHA for ea9e806 - Browse repository at this point
Copy the full SHA ea9e806View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6647fe3 - Browse repository at this point
Copy the full SHA 6647fe3View commit details
Commits on Oct 2, 2024
-
chore(deps-dev): bump eslint in /apps/block_scout_web/assets (#10863)
Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 8.57.1. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](eslint/eslint@v8.57.0...v8.57.1) --- updated-dependencies: - dependency-name: eslint 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>
Configuration menu - View commit details
-
Copy full SHA for 2277fbe - Browse repository at this point
Copy the full SHA 2277fbeView commit details -
chore(deps): bump solc from 0.8.26 to 0.8.27 in /apps/explorer (#10864)
Bumps [solc](https://github.com/ethereum/solc-js) from 0.8.26 to 0.8.27. - [Commits](ethereum/solc-js@v0.8.26...v0.8.27) --- updated-dependencies: - dependency-name: solc 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>
Configuration menu - View commit details
-
Copy full SHA for 95d1397 - Browse repository at this point
Copy the full SHA 95d1397View commit details -
chore(deps-dev): bump sass in /apps/block_scout_web/assets (#10862)
Bumps [sass](https://github.com/sass/dart-sass) from 1.77.8 to 1.79.4. - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.77.8...1.79.4) --- updated-dependencies: - dependency-name: sass 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>
Configuration menu - View commit details
-
Copy full SHA for ba5a900 - Browse repository at this point
Copy the full SHA ba5a900View commit details -
chore(deps-dev): bump autoprefixer in /apps/block_scout_web/assets (#…
…10854) Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 10.4.19 to 10.4.20. - [Release notes](https://github.com/postcss/autoprefixer/releases) - [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md) - [Commits](postcss/autoprefixer@10.4.19...10.4.20) --- 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>
Configuration menu - View commit details
-
Copy full SHA for 6750895 - Browse repository at this point
Copy the full SHA 6750895View commit details -
chore(deps): bump sweetalert2 in /apps/block_scout_web/assets (#10857)
Bumps [sweetalert2](https://github.com/sweetalert2/sweetalert2) from 11.12.4 to 11.14.1. - [Release notes](https://github.com/sweetalert2/sweetalert2/releases) - [Changelog](https://github.com/sweetalert2/sweetalert2/blob/main/CHANGELOG.md) - [Commits](sweetalert2/sweetalert2@v11.12.4...v11.14.1) --- updated-dependencies: - dependency-name: sweetalert2 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>
Configuration menu - View commit details
-
Copy full SHA for 9b4e0c2 - Browse repository at this point
Copy the full SHA 9b4e0c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for ebd97a2 - Browse repository at this point
Copy the full SHA ebd97a2View commit details -
chore(deps-dev): bump mini-css-extract-plugin (#10859)
Bumps [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) from 2.9.0 to 2.9.1. - [Release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases) - [Changelog](https://github.com/webpack-contrib/mini-css-extract-plugin/blob/master/CHANGELOG.md) - [Commits](webpack-contrib/mini-css-extract-plugin@v2.9.0...v2.9.1) --- updated-dependencies: - dependency-name: mini-css-extract-plugin 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>
Configuration menu - View commit details
-
Copy full SHA for b5f4ab8 - Browse repository at this point
Copy the full SHA b5f4ab8View commit details -
chore(deps): bump url in /apps/block_scout_web/assets (#10858)
Bumps [url](https://github.com/defunctzombie/node-url) from 0.11.3 to 0.11.4. - [Commits](defunctzombie/node-url@v0.11.3...v0.11.4) --- updated-dependencies: - dependency-name: url 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>
Configuration menu - View commit details
-
Copy full SHA for 360375a - Browse repository at this point
Copy the full SHA 360375aView commit details -
chore(deps-dev): bump webpack in /apps/block_scout_web/assets (#10860)
Bumps [webpack](https://github.com/webpack/webpack) from 5.94.0 to 5.95.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](webpack/webpack@v5.94.0...v5.95.0) --- updated-dependencies: - dependency-name: webpack 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>
Configuration menu - View commit details
-
Copy full SHA for d5a2a0a - Browse repository at this point
Copy the full SHA d5a2a0aView commit details -
chore(deps-dev): bump postcss in /apps/block_scout_web/assets (#10855)
Bumps [postcss](https://github.com/postcss/postcss) from 8.4.42 to 8.4.47. - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](postcss/postcss@8.4.42...8.4.47) --- updated-dependencies: - dependency-name: postcss 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>
Configuration menu - View commit details
-
Copy full SHA for c3765c9 - Browse repository at this point
Copy the full SHA c3765c9View commit details -
chore(deps): bump mixpanel-browser in /apps/block_scout_web/assets (#…
…10861) Bumps [mixpanel-browser](https://github.com/mixpanel/mixpanel-js) from 2.54.1 to 2.55.1. - [Release notes](https://github.com/mixpanel/mixpanel-js/releases) - [Changelog](https://github.com/mixpanel/mixpanel-js/blob/master/CHANGELOG.md) - [Commits](mixpanel/mixpanel-js@v2.54.1...v2.55.1) --- updated-dependencies: - dependency-name: mixpanel-browser 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>
Configuration menu - View commit details
-
Copy full SHA for afdcc0a - Browse repository at this point
Copy the full SHA afdcc0aView commit details
Commits on Oct 3, 2024
-
feat: Arbitrum L1-to-L2 messages with hashed message id (#10751)
* initial implementation * Finalized approach to handle messages with hashed id * Documentation updated * code review comments addressed * Clarify plain message ID check documentation
Configuration menu - View commit details
-
Copy full SHA for c876863 - Browse repository at this point
Copy the full SHA c876863View commit details -
Configuration menu - View commit details
-
Copy full SHA for e162362 - Browse repository at this point
Copy the full SHA e162362View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c17f34 - Browse repository at this point
Copy the full SHA 2c17f34View commit details
Commits on Oct 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e22b45f - Browse repository at this point
Copy the full SHA e22b45fView commit details -
feat: api for querying mud systems abi (#10829)
* feat: api for querying mud systems abi * chore: doc fixes
Configuration menu - View commit details
-
Copy full SHA for addc633 - Browse repository at this point
Copy the full SHA addc633View commit details -
feat: Add metadata info to tx interpreter request (#10823)
* feat: Add metadata info to tx interpreter request * Fix credo
Configuration menu - View commit details
-
Copy full SHA for bbd20a8 - Browse repository at this point
Copy the full SHA bbd20a8View commit details -
feat: Send archive balances requests to trace url (#10820)
* feat: Send archive balances requests to trace url * Fix fetch coin balances tests
Configuration menu - View commit details
-
Copy full SHA for c3005aa - Browse repository at this point
Copy the full SHA c3005aaView commit details -
feat: Token transfers list API endpoint (#10801)
* feat: Token transfers list API endpoint * Add filter by token type * Process review comments * Refactor to flatten batched token transfers * Enrich with tests for batch token transfers * Remove IO.inspect from the test
Configuration menu - View commit details
-
Copy full SHA for 903cbe3 - Browse repository at this point
Copy the full SHA 903cbe3View commit details -
chore: ability to work with Blockscout code base within a VSCode devc…
…ontainer (#10838) Introduce dev container for streamlined Blockscout development - Add .devcontainer setup with pre-configured Elixir, Phoenix, and Node.js - Include PostgreSQL service in docker-compose.yml - Configure VS Code extensions and settings in devcontainer.json - Add bs script for common development tasks - Provide .blockscout_config.example for easy configuration - Enable GitHub Codespaces support for cloud-based development This change aims to reduce setup time, ensure consistency across environments, and allow developers to focus on core development tasks.
Configuration menu - View commit details
-
Copy full SHA for 3a8e9f4 - Browse repository at this point
Copy the full SHA 3a8e9f4View commit details
Commits on Oct 9, 2024
-
chore(deps): bump comeonin from 5.4.0 to 5.5.0 (#10888)
Bumps [comeonin](https://github.com/riverrun/comeonin) from 5.4.0 to 5.5.0. - [Changelog](https://github.com/riverrun/comeonin/blob/master/CHANGELOG.md) - [Commits](riverrun/comeonin@v5.4.0...v5.5.0) --- updated-dependencies: - dependency-name: comeonin 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>
Configuration menu - View commit details
-
Copy full SHA for 1866353 - Browse repository at this point
Copy the full SHA 1866353View commit details -
chore(deps): bump ecto_sql from 3.12.0 to 3.12.1 (#10887)
Bumps [ecto_sql](https://github.com/elixir-ecto/ecto_sql) from 3.12.0 to 3.12.1. - [Changelog](https://github.com/elixir-ecto/ecto_sql/blob/master/CHANGELOG.md) - [Commits](elixir-ecto/ecto_sql@v3.12.0...v3.12.1) --- updated-dependencies: - dependency-name: ecto_sql 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>
Configuration menu - View commit details
-
Copy full SHA for 93a0657 - Browse repository at this point
Copy the full SHA 93a0657View commit details -
fix: do not include unrelated token transfers in
tokenTransferTxs
(#……10889) * fix: do not include unrelated token transfers in `tokenTransferTxs` * fix: increase `API_GRAPHQL_MAX_COMPLEXITY` for celo instances * chore: add spec and doc
Configuration menu - View commit details
-
Copy full SHA for 6a22f3a - Browse repository at this point
Copy the full SHA 6a22f3aView commit details
Commits on Oct 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f9b3521 - Browse repository at this point
Copy the full SHA f9b3521View commit details -
Configuration menu - View commit details
-
Copy full SHA for f597adf - Browse repository at this point
Copy the full SHA f597adfView commit details
Commits on Oct 14, 2024
-
chore(deps): bump bcrypt_elixir from 3.1.0 to 3.2.0 (#10886)
Bumps [bcrypt_elixir](https://github.com/riverrun/bcrypt_elixir) from 3.1.0 to 3.2.0. - [Changelog](https://github.com/riverrun/bcrypt_elixir/blob/master/CHANGELOG.md) - [Commits](riverrun/bcrypt_elixir@v3.1.0...v3.2.0) --- updated-dependencies: - dependency-name: bcrypt_elixir 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>
Configuration menu - View commit details
-
Copy full SHA for 8424798 - Browse repository at this point
Copy the full SHA 8424798View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7573eb3 - Browse repository at this point
Copy the full SHA 7573eb3View commit details -
Configuration menu - View commit details
-
Copy full SHA for e702e93 - Browse repository at this point
Copy the full SHA e702e93View commit details -
Configuration menu - View commit details
-
Copy full SHA for e778ec1 - Browse repository at this point
Copy the full SHA e778ec1View commit details -
Fix env. variables link in README.md (#10898)
Co-authored-by: Siegi Skalla <s.skalla@cryptix.ag>
Configuration menu - View commit details
-
Copy full SHA for 6042b40 - Browse repository at this point
Copy the full SHA 6042b40View commit details
Commits on Oct 16, 2024
-
chore: Reverse internal transactions fetching order (#10912)
* chore: Reverse internal transactions fetching order * Add env var for internal transactions fetching order
Configuration menu - View commit details
-
Copy full SHA for 7d763c0 - Browse repository at this point
Copy the full SHA 7d763c0View commit details -
chore: Set user agent to metadata requests (#10834)
* chore: Set user agent to metadata requests * Add backend version to User-agent
Configuration menu - View commit details
-
Copy full SHA for f71a4cc - Browse repository at this point
Copy the full SHA f71a4ccView commit details -
Configuration menu - View commit details
-
Copy full SHA for a44488c - Browse repository at this point
Copy the full SHA a44488cView commit details
Commits on Oct 17, 2024
-
feat: Open access to re-fetch metadata button for token instances wit…
…hout metadata initially fetched (#10878) * feat: Open access to re-fetch metadata button for token instances without metadata initially fetched * Adjust existing test * Refactor tests * Add corresponding test to BlockScoutWeb.API.V2.TokenControllerTest module
Configuration menu - View commit details
-
Copy full SHA for 02792f7 - Browse repository at this point
Copy the full SHA 02792f7View commit details -
feat: EIP-7702 support (#10870)
* feat: return `authorizationList` for EIP-7702 transactions in `/transactions/:tx_hash` response (#10776) * feat: support EIP-7702 transactions * fix: handle invalid signatures * fix: save authority * Update apps/block_scout_web/lib/block_scout_web/views/api/v2/transaction_view.ex Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> * Update apps/explorer/lib/explorer/chain/signed_authorization.ex Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> * Update apps/indexer/lib/indexer/block/fetcher.ex Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> * fix: remove set_code_transaction from @allowed_type_labels * Update apps/explorer/lib/explorer/chain/import/runner/signed_authorizations.ex Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> * fix: move signed_authorization to a separate module * add todo --------- Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> * feat: support EIP-7702 in `/address/:address` endpoint (#10799) * feat: support EIP-7702 transactions * fix: handle invalid signatures * fix: save authority * Update apps/block_scout_web/lib/block_scout_web/views/api/v2/transaction_view.ex Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> * Update apps/explorer/lib/explorer/chain/signed_authorization.ex Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> * Update apps/indexer/lib/indexer/block/fetcher.ex Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> * fix: remove set_code_transaction from @allowed_type_labels * feat: add EIP-7702 support to /address/:address endpoint * fix: refactor fetch? * fix: move get_implementation_address_hash_string_eip7702 * fix: remove EIP-7702 flag from response, modify transactions filter to handle EOA with code correctly * fix: minor refactoring * fix: remove unused alias * fix: review comments * Update apps/explorer/priv/repo/migrations/20240904161254_create_signed_authorizations.exs Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> --------- Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> * fix: remove unused code * fix: refactor code * Update apps/ethereum_jsonrpc/lib/ethereum_jsonrpc/signed_authorization.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * chore: documentation improvement * fix typo * fix: move spec and doc * fix: authorization_list spec * fix: wrap address and authority with checksum * fix: invalid typespec Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Apply suggestions from code review Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * fix typo * Update apps/explorer/lib/explorer/chain/smart_contract/proxy/eip_7702.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> --------- Co-authored-by: Kirill Fedoseev <kirill@blockscout.com> Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8635b5c - Browse repository at this point
Copy the full SHA 8635b5cView commit details
Commits on Oct 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 92e7ce5 - Browse repository at this point
Copy the full SHA 92e7ce5View commit details -
Configuration menu - View commit details
-
Copy full SHA for a23e03e - Browse repository at this point
Copy the full SHA a23e03eView commit details -
fix: Filter out nil implementations from combine_proxy_implementation…
…_addresses_map function result (#10943)
Configuration menu - View commit details
-
Copy full SHA for 898e3e3 - Browse repository at this point
Copy the full SHA 898e3e3View commit details -
Configuration menu - View commit details
-
Copy full SHA for f3e279d - Browse repository at this point
Copy the full SHA f3e279dView commit details
Commits on Oct 21, 2024
-
chore: Remove deprecated single implementation property of the smart-…
…contract from the API response (#10715)
Configuration menu - View commit details
-
Copy full SHA for 1b2232a - Browse repository at this point
Copy the full SHA 1b2232aView commit details -
feat: Add missing filecoin robust addresses (#10935)
* feat: Add missing filecoin robust addresses * Narrow down spec * Refactoring
Configuration menu - View commit details
-
Copy full SHA for f8b4cb7 - Browse repository at this point
Copy the full SHA f8b4cb7View commit details -
Configuration menu - View commit details
-
Copy full SHA for c408fc4 - Browse repository at this point
Copy the full SHA c408fc4View commit details -
perf: refactor tx data decoding with fewer DB queries (#10842)
* perf: refactor tx data decoding with fewer DB queries * fix: tests * chore: more refactor * chore: fix merge conflicts
Configuration menu - View commit details
-
Copy full SHA for 6d8aa19 - Browse repository at this point
Copy the full SHA 6d8aa19View commit details
Commits on Oct 22, 2024
-
refactor: Fixate naming convention for "transaction" and "block numbe…
…r" entities (#10913) * refactor: tx_hash -> transaction_hash, txn -> transaction, "block" in API v2 response to "block_number" * More functions/vars to rename * Update apps/block_scout_web/lib/block_scout_web/graphql/celo/schema/query_fields.ex Co-authored-by: Fedor Ivanov <ivnfedor@gmail.com> * Rename files * Return l1_tx_origin / l2_tx_gas_limit in optimism view for the compatibility with fe at the time of transaition to new props * Rename shorthand in template * Repair merge --------- Co-authored-by: Fedor Ivanov <ivnfedor@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b030792 - Browse repository at this point
Copy the full SHA b030792View commit details -
chore(deps): bump tesla from 1.12.1 to 1.12.2 (#10987)
Bumps [tesla](https://github.com/elixir-tesla/tesla) from 1.12.1 to 1.12.2. - [Release notes](https://github.com/elixir-tesla/tesla/releases) - [Commits](elixir-tesla/tesla@v1.12.1...v1.12.2) --- updated-dependencies: - dependency-name: tesla 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>
Configuration menu - View commit details
-
Copy full SHA for f6c4065 - Browse repository at this point
Copy the full SHA f6c4065View commit details -
chore(deps): bump secp256k1 in /apps/block_scout_web/assets (#10985)
Bumps [secp256k1](https://github.com/cryptocoinjs/secp256k1-node) from 4.0.2 to 4.0.4. - [Release notes](https://github.com/cryptocoinjs/secp256k1-node/releases) - [Commits](cryptocoinjs/secp256k1-node@v4.0.2...v4.0.4) --- updated-dependencies: - dependency-name: secp256k1 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1bb7218 - Browse repository at this point
Copy the full SHA 1bb7218View commit details -
fix: Workaround for repeating logIndex (#10880)
* fix: Workaround for repeating logIndex * Fix tests * Done migration, but need to rewrite tuples usage * Migration rewritten * Fix tests * Fix test * Process review comments * Update cspell ignore * Refactoring
Configuration menu - View commit details
-
Copy full SHA for 213a324 - Browse repository at this point
Copy the full SHA 213a324View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a826f1 - Browse repository at this point
Copy the full SHA 8a826f1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b1d340 - Browse repository at this point
Copy the full SHA 1b1d340View commit details -
* feat: Account V2 Implement merging Add captcha to send_otp Refactor Handle old sessions Add address hash to session info Finish core functionality * Some fixes Fix captcha related tests Add recaptcha v3 support Add error for wrong otp Add uri encoding for user id Fix recaptcha error * Return session info in auth responses * hostname check for recaptcha; merge addresses Merge accounts with the same address as well Add hostname check for recaptcha Remove debug code * Fix address accounts merging * Handle email linking to siwe account * Allow hostname check disabling * Fix @vbaranov review * Fix RE_CAPTCHA_CHECK_HOSTNAME logic * Restrict users with email to link email * Fix @nikitosing review * Format
Configuration menu - View commit details
-
Copy full SHA for 26d906a - Browse repository at this point
Copy the full SHA 26d906aView commit details -
fix: Add compatibility with current frontend for some public props (#…
…10998) * fix: Fix renaming of public props * Fix sanitize_duplicated_log_index_logs_test.exs --------- Co-authored-by: Nikita Pozdniakov <nikitosing4@mail.ru>
Configuration menu - View commit details
-
Copy full SHA for 6319514 - Browse repository at this point
Copy the full SHA 6319514View commit details -
feat: Scroll rollup: L1 fee parameters in API,
queueIndex
for L2 tr……ansactions, and L1 <->L2 messages (#10484) * Add chain type for scroll and l1_fee tx field * l1_fee_scalar and l1_fee_overhead fields in api json output for tx * l2_fee field in api json output for tx * l1_gas_used field in api json output for tx * l1_fee_commit_scalar, l1_fee_blob_scalar, l1_base_fee, l1_blob_base_fee fields in api json output for tx * Partially add specs and docs * Add code specs and docs for Indexer.Fetcher.Scroll.L1FeeParam * Add code specs and docs * Small fix * Add CI matrix chain type * Fix spelling * Rename envs * Update common-blockscout.env * Small fixes * Improve scroll_view.ex * Update scroll_view.ex * Add support of queueIndex field for L1MessageTx in Scroll * Fix for mix credo * Add scroll_bridge db table * Add Scroll bridge messages indexing * Add Indexer.Transform.Scroll.Bridge * Refactoring * Add API for Scroll * Ignore credo warning about nesting level * Add specs and docs * Refactoring * Partially cover review comments * Add some specs and docs * Add GA workflows for scroll * Small refactoring * Add to_import for Explorer.Chain.Scroll.Bridge * Small refactoring * Add specs and docs * Add comments * Add Explorer.Chain.RollupReorgMonitorQueue module * Add sobelow_skip * Add INDEXER_SCROLL_ETH_GET_LOGS_RANGE_SIZE env variable * Update common-blockscout.env * Small refactoring * Add links about Curie upgrade * Small improvement * Small refactoring * Separate db query * Move chain type specific import runners from BlockReferencing to ChainTypeSpecific stage * Add draft indexer for Scroll batches * Add API for Scroll batches * Extend API for Scroll batches * Refactoring * Update common-blockscout.env * Add specs and docs * Remove misprint * Fixes * Small improvement * Refactoring * Refactoring * Refactoring * Refactoring for credo * Partially cover review comments * Add l2_block_status to transaction view for Scroll * RollupL1ReorgMonitor refactoring * Extend docs * Small refactoring of last_l2_block_number function * Extend docs * Extend docs * Fix typo * mix format * Extend docs * Extend docs * Separate eth_getLogs block range size config * Small refactoring * Add comment * Add comments * Optimization * Small optimization * Use Ecto.Multi * Extend docs * Change API response for Scroll batches * Change API response format for Scroll bridge messages * Small refactoring * Update apps/indexer/lib/indexer/transform/scroll/l1_fee_params.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/l1_fee_param.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/l1_fee_param.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/l1_fee_param.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/bridge.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/explorer/lib/explorer/chain/scroll/reader.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/explorer/lib/explorer/chain/scroll/reader.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/explorer/lib/explorer/chain/scroll/bridge.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/explorer/lib/explorer/chain/scroll/batch.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/explorer/lib/explorer/chain/scroll/batch_bundle.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/bridge.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/bridge.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/bridge.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/bridge.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/bridge.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/batch.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/batch.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/batch.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/fetcher/scroll/batch.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Small refactoring * Extend docs * Update apps/explorer/lib/explorer/chain/scroll/reader.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/indexer/lib/indexer/helper.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/explorer/lib/explorer/chain/scroll/reader.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update apps/explorer/lib/explorer/chain/scroll/reader.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * Improve specs * Update apps/explorer/lib/explorer/chain/scroll/reader.ex Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com> * fix * mix format * Add DA container info for Scroll batches * Fallback INDEXER_SCROLL_L2_MESSENGER_START_BLOCK to FIRST_BLOCK * mix format * Remove redundant lines * Use multi update_all * rename "tx" shorthands --------- Co-authored-by: POA <33550681+poa@users.noreply.github.com> Co-authored-by: Viktor Baranov <baranov.viktor.27@gmail.com> Co-authored-by: Alexander Kolotov <alexandr.kolotov@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for eafe7c8 - Browse repository at this point
Copy the full SHA eafe7c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for fc0c5b5 - Browse repository at this point
Copy the full SHA fc0c5b5View commit details -
feat: List of internal transactions API v2 endpoint (#10994)
* feat: List of internal transactions API v2 endpoint * Process Fedor review * Fix format * Process review comment
Configuration menu - View commit details
-
Copy full SHA for aa3defa - Browse repository at this point
Copy the full SHA aa3defaView commit details -
perf: optimize advanced filters (#10463)
* perf: optimize advanced filters * Fix filters order * Fix order by * Fix block_number filtering * Fix filters order and union * Fix tests * Fix: remove excessive limit * Add internal transaction to_address_hash index * Optimize amount filter * Fix filtering after limit * Some fixes Fix address filtering; Fix token transfers; Fix methods search * Remove migration; Fix query inclusion * Optimize internal transactions query * Fix @vbaranov review * Fix renaming issues * Rename function arguments --------- Co-authored-by: Viktor Baranov <baranov.viktor.27@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 930c481 - Browse repository at this point
Copy the full SHA 930c481View commit details -
Configuration menu - View commit details
-
Copy full SHA for f1fd306 - Browse repository at this point
Copy the full SHA f1fd306View commit details -
Configuration menu - View commit details
-
Copy full SHA for c837858 - Browse repository at this point
Copy the full SHA c837858View commit details -
Configuration menu - View commit details
-
Copy full SHA for b48ad1f - Browse repository at this point
Copy the full SHA b48ad1fView commit details
Commits on Oct 23, 2024
-
fix: chart API: add compatibility with the current frontend (#11008)
* fix: chart API: add compatibility with the current frontend * Rename other shorthands
Configuration menu - View commit details
-
Copy full SHA for 2140d68 - Browse repository at this point
Copy the full SHA 2140d68View commit details -
Configuration menu - View commit details
-
Copy full SHA for b370c00 - Browse repository at this point
Copy the full SHA b370c00View commit details
Commits on Oct 24, 2024
-
fix: Add tx_count, tx_types props in the response of address API v2 e…
…ndpoints for compatibility with current version of the frontend (#11012)
Configuration menu - View commit details
-
Copy full SHA for d3d768a - Browse repository at this point
Copy the full SHA d3d768aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 684dd5d - Browse repository at this point
Copy the full SHA 684dd5dView commit details
Commits on Oct 28, 2024
-
fix: bugs introduced in calldata decoding optimizations (#11025)
* fix: incorrect types * fix: empty methods cache
Configuration menu - View commit details
-
Copy full SHA for 566997e - Browse repository at this point
Copy the full SHA 566997eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7e78505 - Browse repository at this point
Copy the full SHA 7e78505View commit details -
Configuration menu - View commit details
-
Copy full SHA for b8768fd - Browse repository at this point
Copy the full SHA b8768fdView commit details -
feat: address transactions block number sorting (#11035)
* feat: address transactions block number sorting * Add index ordering Co-Authored-By: Kirill Fedoseev <kirill@blockscout.com> --------- Co-authored-by: Kirill Fedoseev <kirill@blockscout.com>
Configuration menu - View commit details
-
Copy full SHA for b2cc466 - Browse repository at this point
Copy the full SHA b2cc466View commit details -
fix: divide by
10^decimals
when calculating token supply in CMC for……mat (#11036) * fix: divide by `10^decimals` when calculating token supply in CMC format * chore: add test * fix: handle `decimals` when set to `nil`
Configuration menu - View commit details
-
Copy full SHA for 16faddc - Browse repository at this point
Copy the full SHA 16faddcView commit details
Commits on Oct 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 97d8a2b - Browse repository at this point
Copy the full SHA 97d8a2bView commit details -
Remove internal transactions endpoint because no suitable DB index ex…
…ists && update CHANGELOG
Configuration menu - View commit details
-
Copy full SHA for daa13a8 - Browse repository at this point
Copy the full SHA daa13a8View commit details -
Configuration menu - View commit details
-
Copy full SHA for ab7eddd - Browse repository at this point
Copy the full SHA ab7edddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9b943cc - Browse repository at this point
Copy the full SHA 9b943ccView commit details -
fix: celo collated gas price issue (#11067)
* refactor: module path for polygon migration * fix: modify constraint
Configuration menu - View commit details
-
Copy full SHA for 1a903c8 - Browse repository at this point
Copy the full SHA 1a903c8View commit details -
Add shrink int txs docker image for pre release workflows at Arbitrum…
…, CELO (release also), Op, ZkSync
Configuration menu - View commit details
-
Copy full SHA for 92a814d - Browse repository at this point
Copy the full SHA 92a814dView commit details -
feat: Support zksync foundry verification (#11037)
* feat: Support zksync foundry verification * Fix constructor args * Fix credo * Process review comments
Configuration menu - View commit details
-
Copy full SHA for 75519fe - Browse repository at this point
Copy the full SHA 75519feView commit details
Commits on Oct 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 608f319 - Browse repository at this point
Copy the full SHA 608f319View commit details -
fix: abi cache for non-proxied addresses (#11065)
* fix: abi cache for non-proxied addresses * chore: rename
Configuration menu - View commit details
-
Copy full SHA for a65b7f8 - Browse repository at this point
Copy the full SHA a65b7f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for a49bdec - Browse repository at this point
Copy the full SHA a49bdecView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b9261f - Browse repository at this point
Copy the full SHA 1b9261fView commit details -
Configuration menu - View commit details
-
Copy full SHA for c3ae5df - Browse repository at this point
Copy the full SHA c3ae5dfView commit details -
fix: Filter non-traceable blocks before inserting them to internal tx…
…s fetcher queue (#11074)
Configuration menu - View commit details
-
Copy full SHA for 8f933d9 - Browse repository at this point
Copy the full SHA 8f933d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 940a95f - Browse repository at this point
Copy the full SHA 940a95fView commit details -
fix: Fix contract codes fetching for zksync chain type (#11055)
* fix: Fix contract codes fetching for zksync chain type * Process review comments * Fix tests * Fix tests * Fix tests
Configuration menu - View commit details
-
Copy full SHA for 0423c18 - Browse repository at this point
Copy the full SHA 0423c18View commit details -
Configuration menu - View commit details
-
Copy full SHA for e566d99 - Browse repository at this point
Copy the full SHA e566d99View commit details
Commits on Oct 31, 2024
-
perf: Fix performance of Explorer.Counters.Transactions24hStats.conso…
…lidate/0 function (#11082)
Configuration menu - View commit details
-
Copy full SHA for b7f15f8 - Browse repository at this point
Copy the full SHA b7f15f8View commit details -
fix: Fix tokennfttx API v1 endpoint (#11083)
* fix: Fix tokennfttx API v1 endpoint * Add test
Configuration menu - View commit details
-
Copy full SHA for 2687c1d - Browse repository at this point
Copy the full SHA 2687c1dView commit details -
Configuration menu - View commit details
-
Copy full SHA for b5b259b - Browse repository at this point
Copy the full SHA b5b259bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0189dec - Browse repository at this point
Copy the full SHA 0189decView commit details
Commits on Nov 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for eed8833 - Browse repository at this point
Copy the full SHA eed8833View commit details
Commits on Nov 3, 2024
-
chore(deps): bump solc from 0.8.27 to 0.8.28 in /apps/explorer (#11105)
Bumps [solc](https://github.com/ethereum/solc-js) from 0.8.27 to 0.8.28. - [Commits](ethereum/solc-js@v0.8.27...v0.8.28) --- updated-dependencies: - dependency-name: solc 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>
Configuration menu - View commit details
-
Copy full SHA for 8124204 - Browse repository at this point
Copy the full SHA 8124204View commit details -
chore(deps): bump floki from 0.36.2 to 0.36.3 (#11061)
Bumps [floki](https://github.com/philss/floki) from 0.36.2 to 0.36.3. - [Release notes](https://github.com/philss/floki/releases) - [Changelog](https://github.com/philss/floki/blob/main/CHANGELOG.md) - [Commits](philss/floki@v0.36.2...v0.36.3) --- updated-dependencies: - dependency-name: floki 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>
Configuration menu - View commit details
-
Copy full SHA for 85fe2d6 - Browse repository at this point
Copy the full SHA 85fe2d6View commit details -
chore(deps): bump chart.js in /apps/block_scout_web/assets (#11108)
Bumps [chart.js](https://github.com/chartjs/Chart.js) from 4.4.3 to 4.4.6. - [Release notes](https://github.com/chartjs/Chart.js/releases) - [Commits](chartjs/Chart.js@v4.4.3...v4.4.6) --- updated-dependencies: - dependency-name: chart.js 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>
Configuration menu - View commit details
-
Copy full SHA for c057ec3 - Browse repository at this point
Copy the full SHA c057ec3View commit details -
chore(deps-dev): bump webpack in /apps/block_scout_web/assets (#11107)
Bumps [webpack](https://github.com/webpack/webpack) from 5.95.0 to 5.96.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](webpack/webpack@v5.95.0...v5.96.1) --- updated-dependencies: - dependency-name: webpack 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>
Configuration menu - View commit details
-
Copy full SHA for 922c7f3 - Browse repository at this point
Copy the full SHA 922c7f3View commit details -
chore(deps-dev): bump mini-css-extract-plugin (#11110)
Bumps [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) from 2.9.1 to 2.9.2. - [Release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases) - [Changelog](https://github.com/webpack-contrib/mini-css-extract-plugin/blob/master/CHANGELOG.md) - [Commits](webpack-contrib/mini-css-extract-plugin@v2.9.1...v2.9.2) --- updated-dependencies: - dependency-name: mini-css-extract-plugin 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>
Configuration menu - View commit details
-
Copy full SHA for 3b1396f - Browse repository at this point
Copy the full SHA 3b1396fView commit details -
chore(deps): bump @amplitude/analytics-browser (#11111)
Bumps [@amplitude/analytics-browser](https://github.com/amplitude/Amplitude-TypeScript) from 2.9.3 to 2.11.8. - [Release notes](https://github.com/amplitude/Amplitude-TypeScript/releases) - [Commits](https://github.com/amplitude/Amplitude-TypeScript/compare/@amplitude/analytics-browser@2.9.3...@amplitude/analytics-browser@2.11.8) --- updated-dependencies: - dependency-name: "@amplitude/analytics-browser" 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>
Configuration menu - View commit details
-
Copy full SHA for 3e28c08 - Browse repository at this point
Copy the full SHA 3e28c08View commit details -
chore(deps): bump phoenix_ecto from 4.6.2 to 4.6.3 (#11059)
Bumps [phoenix_ecto](https://github.com/phoenixframework/phoenix_ecto) from 4.6.2 to 4.6.3. - [Changelog](https://github.com/phoenixframework/phoenix_ecto/blob/main/CHANGELOG.md) - [Commits](phoenixframework/phoenix_ecto@v4.6.2...v4.6.3) --- updated-dependencies: - dependency-name: phoenix_ecto 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>
Configuration menu - View commit details
-
Copy full SHA for 7d16504 - Browse repository at this point
Copy the full SHA 7d16504View commit details -
chore(deps-dev): bump babel-loader in /apps/block_scout_web/assets (#…
…11112) Bumps [babel-loader](https://github.com/babel/babel-loader) from 9.1.3 to 9.2.1. - [Release notes](https://github.com/babel/babel-loader/releases) - [Changelog](https://github.com/babel/babel-loader/blob/main/CHANGELOG.md) - [Commits](babel/babel-loader@v9.1.3...v9.2.1) --- updated-dependencies: - dependency-name: babel-loader 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>
Configuration menu - View commit details
-
Copy full SHA for 91e7d74 - Browse repository at this point
Copy the full SHA 91e7d74View commit details -
chore(deps-dev): bump eslint-plugin-import (#11109)
Bumps [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) from 2.29.1 to 2.31.0. - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](import-js/eslint-plugin-import@v2.29.1...v2.31.0) --- updated-dependencies: - dependency-name: eslint-plugin-import 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>
Configuration menu - View commit details
-
Copy full SHA for 8b42206 - Browse repository at this point
Copy the full SHA 8b42206View commit details -
chore(deps): bump tesla from 1.12.2 to 1.13.0 (#11057)
Bumps [tesla](https://github.com/elixir-tesla/tesla) from 1.12.2 to 1.13.0. - [Release notes](https://github.com/elixir-tesla/tesla/releases) - [Commits](elixir-tesla/tesla@v1.12.2...v1.13.0) --- updated-dependencies: - dependency-name: tesla 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>
Configuration menu - View commit details
-
Copy full SHA for 86748cf - Browse repository at this point
Copy the full SHA 86748cfView commit details -
chore(deps): bump oauth2 from 2.0.1 to 2.1.0 (#11060)
Bumps [oauth2](https://github.com/scrogson/oauth2) from 2.0.1 to 2.1.0. - [Release notes](https://github.com/scrogson/oauth2/releases) - [Changelog](https://github.com/ueberauth/oauth2/blob/master/CHANGELOG.md) - [Commits](ueberauth/oauth2@v2.0.1...v2.1.0) --- updated-dependencies: - dependency-name: oauth2 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>
Configuration menu - View commit details
-
Copy full SHA for 3a00cff - Browse repository at this point
Copy the full SHA 3a00cffView commit details
Commits on Nov 4, 2024
-
chore(deps): bump @tarekraafat/autocomplete.js (#11113)
Bumps [@tarekraafat/autocomplete.js](https://github.com/TarekRaafat/autoComplete.js) from 10.2.7 to 10.2.9. - [Release notes](https://github.com/TarekRaafat/autoComplete.js/releases) - [Changelog](https://github.com/TarekRaafat/autoComplete.js/blob/master/docs/release-notes.md) - [Commits](TarekRaafat/autoComplete.js@v10.2.7...v10.2.9) --- updated-dependencies: - dependency-name: "@tarekraafat/autocomplete.js" 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>
Configuration menu - View commit details
-
Copy full SHA for 5331f6f - Browse repository at this point
Copy the full SHA 5331f6fView commit details -
chore(deps): bump elliptic in /apps/block_scout_web/assets (#11068)
Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.7 to 6.6.0. - [Commits](indutny/elliptic@v6.5.7...v6.6.0) --- updated-dependencies: - dependency-name: elliptic dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 2c3fd02 - Browse repository at this point
Copy the full SHA 2c3fd02View commit details -
chore(deps): bump core-js in /apps/block_scout_web/assets (#11114)
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.38.1 to 3.39.0. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/commits/v3.39.0/packages/core-js) --- updated-dependencies: - dependency-name: core-js 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>
Configuration menu - View commit details
-
Copy full SHA for ad9cb89 - Browse repository at this point
Copy the full SHA ad9cb89View commit details -
chore(deps-dev): bump credo from 1.7.8 to 1.7.9 (#11135)
Bumps [credo](https://github.com/rrrene/credo) from 1.7.8 to 1.7.9. - [Release notes](https://github.com/rrrene/credo/releases) - [Changelog](https://github.com/rrrene/credo/blob/master/CHANGELOG.md) - [Commits](rrrene/credo@v1.7.8...v1.7.9) --- updated-dependencies: - dependency-name: credo 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>
Configuration menu - View commit details
-
Copy full SHA for 8ecde2e - Browse repository at this point
Copy the full SHA 8ecde2eView commit details
Commits on Nov 5, 2024
-
feat: Add filecoin robust addresses to proxy implementations (#11102)
* feat: Add filecoin robust addresses to proxy implementations * Fix tests * Fix tests * Fix credo * Process review comments * Change naming
Configuration menu - View commit details
-
Copy full SHA for 001ab94 - Browse repository at this point
Copy the full SHA 001ab94View commit details -
fix: Fix sitemap timeout; optimize OrderedCache preloads (#11131)
* fix: Fix sitemap timeout; optimize OrderedCache preloads * Process review comments
Configuration menu - View commit details
-
Copy full SHA for 1223faa - Browse repository at this point
Copy the full SHA 1223faaView commit details -
chore: convinient way to manage known_hosts within devcontainer (#11091)
* convinient way to manage known_hosts within container * ignore cursor.ai configs * readme improved
Configuration menu - View commit details
-
Copy full SHA for 9474559 - Browse repository at this point
Copy the full SHA 9474559View commit details
Commits on Nov 6, 2024
-
feat: zilliqa consensus data related to block (#10699)
* refactor: DRY declaration of chain type and feature dependent repos * feat: add `:zilliqa` chain type * chore: add `zilliqa` to cspell.json * feat: import consensus data related to block * fix: cspell * fix: ethereum_jsonrpc tests * fix: format & credo * feat: render consensus data in `/api/v2/blocks/:block_hash_or_number` response * fix: add missing `view` field to block db schema * feat: add workflow to publish docker image * fix: cast `zilliqa_view` field of a block * refactor: view * refactor: define spec only once * refactor: DRY definition of other repos * fix: remove not null constraint for `zilliqa_view` * fix: dialyzer * fix: `@spec` for `chain_type_fields/2` * feat: github workflows * fix: debug * fix: add missing indexer and API workflows
Configuration menu - View commit details
-
Copy full SHA for 0dfd4c6 - Browse repository at this point
Copy the full SHA 0dfd4c6View commit details -
chore: Update Github Actions packages versions (#11144)
* Update Github Actions packages versions * Update Github Actions packages version
Configuration menu - View commit details
-
Copy full SHA for 18eb3c6 - Browse repository at this point
Copy the full SHA 18eb3c6View commit details -
refactor: cspell configuration (#11146)
* fix: cspell ignore weird IPFS url * fix: cspell ignore filecoin f410f addresses * chore: write ignore in single line * feat: configure everything in `cspell.json` * refactor: remove unnecessary cspell ignores * refactor: cspell run command in actions and devcontainer * chore: enable editor support * chore: add comment * fix: cspell action options * feat: run for all files
Configuration menu - View commit details
-
Copy full SHA for 6dbdb26 - Browse repository at this point
Copy the full SHA 6dbdb26View commit details
Commits on Nov 7, 2024
-
feat: Xname app proxy (#11010)
* Xname app proxy * fix specs * Process reviewer comments
Configuration menu - View commit details
-
Copy full SHA for eb94a42 - Browse repository at this point
Copy the full SHA eb94a42View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9115d9 - Browse repository at this point
Copy the full SHA b9115d9View commit details -
feat: gas prices with base fee if no transactions (#11132)
* feat: gas prices with base fee if no transactions * Replace wildcard with exact error Co-authored-by: Victor Baranov <baranov.viktor.27@gmail.com> --------- Co-authored-by: Victor Baranov <baranov.viktor.27@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b87b06b - Browse repository at this point
Copy the full SHA b87b06bView commit details