credmark.cmf.model.ledger.LedgerQueryNFTBalance
- class LedgerQueryNFTBalance(**kwargs)[source]
Bases:
NFTBalanceTable
,LedgerQuery
Methods
as_
describe
field
Query data from the table.
Attributes
ADDRESS
AMOUNT
Raw Amount scaled by token decimals
BLOCK_HASH
BLOCK_NUMBER
BLOCK_TIMESTAMP
COUNTERPARTY_ADDRESS
LOG_INDEX
RAW_AMOUNT
Unscaled raw amount
TOKEN_ADDRESS
TOKEN_ID
TRANSACTION_HASH
TYPE_MAPPER
alias
bigint_cols
Return the set of column names in the table.
Return the set of column names for the table.
table_key
- property colnames: List[str]
Return the set of column names in the table. They can be used in the query.
- property columns: List[str]
Return the set of column names for the table. They will be used in the database.
For contract ledger tables, the set will include all contract-specific columns.
- select(columns=None, joins=None, where=None, group_by=None, order_by=None, limit=None, offset=None, aggregates=None, having=None, bigint_cols=None, analytics_mode=None, omit_group_by_columns=None)
Query data from the table.
- Parameters
columns (Optional[Union[list[str], list[credmark.cmf.types.ledger.ColumnField]]]) –
joins (Optional[list[Union[tuple[credmark.cmf.types.ledger.JoinType, credmark.cmf.types.ledger.LedgerTable, str], tuple[credmark.cmf.types.ledger.LedgerTable, str], tuple[credmark.cmf.types.ledger.JoinType, credmark.cmf.types.ledger.LedgerTable, credmark.cmf.types.ledger.ColumnField], tuple[credmark.cmf.types.ledger.LedgerTable, credmark.cmf.types.ledger.ColumnField]]]]) –
group_by (Optional[Union[list[str], list[credmark.cmf.types.ledger.ColumnField]]]) –
order_by (Optional[Union[str, ColumnField]]) –
- Return type