Merge pull request #7963 from blockscout/vb-op-stack-ignore-deposite-nonce

Op Stack: ignore depositNonce
pull/7965/head
Victor Baranov 1 year ago committed by GitHub
commit 7d14212db6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 5
      apps/ethereum_jsonrpc/lib/ethereum_jsonrpc/receipt.ex
  3. 3
      apps/indexer/lib/indexer/transform/token_transfers.ex

@ -33,6 +33,7 @@
### Chore
- [#7963](https://github.com/blockscout/blockscout/pull/7963) - Op Stack: ignore depositNonce
- [#7954](https://github.com/blockscout/blockscout/pull/7954) - Enhance Account Explorer.Account.Notifier.Email module tests
- [#7950](https://github.com/blockscout/blockscout/pull/7950) - Add GA CI for Eth Goerli chain
- [#7934](https://github.com/blockscout/blockscout/pull/7934), [#7936](https://github.com/blockscout/blockscout/pull/7936) - Explicitly set consensus == true in queries (convenient for search), remove logger requirements, where it is not used anymore

@ -314,6 +314,11 @@ defmodule EthereumJSONRPC.Receipt do
:ignore
end
# Optimism specific transaction receipt fields
defp entry_to_elixir({key, _}) when key in ~w(depositNonce) do
:ignore
end
defp entry_to_elixir({key, value}) do
{:error, {:unknown_key, %{key: key, value: value}}}
end

@ -6,9 +6,8 @@ defmodule Indexer.Transform.TokenTransfers do
require Logger
alias ABI.TypeDecoder
alias Explorer.{Chain, Repo}
alias Explorer.Repo
alias Explorer.Chain.{Token, TokenTransfer}
alias Explorer.Token.MetadataRetriever
alias Indexer.Fetcher.TokenTotalSupplyUpdater
@burn_address "0x0000000000000000000000000000000000000000"

Loading…
Cancel
Save