NativeBalance
The Native token balances of the DAO, representing the amount of the blockchain's native currency (e.g., Ether on Ethereum, MATIC on Polygon) held by the DAO.
type NativeBalance implements TokenBalance {
balance: BigInt!
dao: Dao!
id: ID!
lastUpdated: BigInt!
}
Fields
NativeBalance.balance
● BigInt!
non-null scalar
The amount of native tokens held by the DAO.
NativeBalance.dao
● Dao!
non-null object
The DAO that holds the native tokens
NativeBalance.id
● ID!
non-null scalar
The concatenation of DAO Smart contract address and Token Smart contract address. Joined by '_'.
NativeBalance.lastUpdated
● BigInt!
non-null scalar
The block timestamp of the last update (transfer) for this native token balance.
Interfaces
TokenBalance
interface
Balance of the DAO for any kind of token. Each entity implementing this interface can be queried as TokenBalance.