Packages

Etherscan.io API wrapper for Elixir. Provides access to ethereum blockchain data.

Current section

Files

Jump to
etherscan lib etherscan block_reward_uncle.ex
Raw

lib/etherscan/block_reward_uncle.ex

defmodule Etherscan.BlockRewardUncle do
@moduledoc """
Etherscan module for the BlockRewardUncle struct.
"""
@attributes [
:blockreward,
:miner,
:unclePosition,
]
defstruct @attributes
@type t :: %Etherscan.BlockRewardUncle{
blockreward: String.t(),
miner: String.t(),
unclePosition: String.t(),
}
end