ERC20Contract
An ERC20 Token Smart Contract, of type Token.
type ERC20Contract implements Token {
decimals: Int!
id: ID!
name: String
symbol: String
}
Fields
ERC20Contract.decimals
● Int!
non-null scalar
The number of decimals of the token, mirrored from the smart contract.
ERC20Contract.id
● ID!
non-null scalar
The address of the ERC20 Token Smart Contract.
ERC20Contract.name
● String
scalar
The name of the token, mirrored from the smart contract.
ERC20Contract.symbol
● String
scalar
The symbol of the token, mirrored from the smart contract.
Interfaces
Token
interface
Interface representing a generic token. Each entity implementing this interface can be queried as Token.
Member Of
Dao
object ● ERC20Balance
object ● ERC20WrapperContract
object