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/explorer/lib/explorer.ex

22 lines
469 B

defmodule Explorer do
@moduledoc """
Explorer keeps the contexts that define your domain
and business logic.
Contexts are also responsible for managing your data, regardless
if it comes from the database, an external API or others.
"""
require Logger
@doc """
Returns the configured coin for `Explorer`
"""
def coin do
Application.get_env(:explorer, :coin)
end
def coin_name do
Application.get_env(:explorer, :coin_name)
end
end