-
Notifications
You must be signed in to change notification settings - Fork 9
/
.iex.exs
41 lines (33 loc) · 846 Bytes
/
.iex.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
alias GodwokenExplorer.Repo
alias Ecto.Multi
alias GodwokenExplorer.{
Account,
Address,
Block,
CheckInfo,
ContractMethod,
DepositHistory,
DailyStat,
Log,
PolyjuiceCreator,
Polyjuice,
Repo,
SmartContract,
Transaction,
TokenTransfer,
UDT,
Version,
WithdrawalHistory,
WithdrawalRequest,
ERC721Token
}
alias GodwokenExplorer.Graphql.{Sourcify}
alias GodwokenExplorer.Account.{CurrentUDTBalance, CurrentBridgedUDTBalance, UDTBalance}
alias GodwokenExplorer.Graphql.Workers.SmartContractRegister
alias GodwokenIndexer.Fetcher.UDTBalances
alias GodwokenExplorer.Token.MetadataRetriever
alias GodwokenExplorer.Token.InstanceMetadataRetriever
alias GodwokenExplorer.TokenInstance
alias GodwokenExplorer.Chain.Cache.TokenExchangeRate
alias GodwokenExplorer.Chain.Hash
import Ecto.{Query, Queryable, Changeset}