Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
blockscout/apps/ethereum_jsonrpc/lib/ethereum_jsonrpc/fetched_beneficiaries.ex

16 lines
557 B

defmodule EthereumJSONRPC.FetchedBeneficiaries do
@moduledoc """
Balance params and errors from a batch request to fetch beneficiaries.
"""
alias EthereumJSONRPC.FetchedBeneficiary
defstruct params_set: MapSet.new(),
errors: []
@typedoc """
* `params_set` - all the balance request params from requests that succeeded in the batch.
* `errors` - all the errors from requests that failed in the batch.
"""
@type t :: %__MODULE__{params_set: MapSet.t(FetchedBeneficiary.params()), errors: [FetchedBeneficiary.error()]}
end