pub trait MarketEnumeration {
    fn market_supply_sales(&self) -> U64;
    fn market_supply_by_owner_id(&self, account_id: AccountId) -> U64;
    fn market_sales_by_owner_id(
        &self,
        account_id: AccountId,
        from_index: U64,
        limit: u64
    ) -> Vec<Sale>; fn market_supply_by_nft_contract_id(&self, nft_contract_id: AccountId) -> U64; fn market_sales_by_nft_contract_id(
        &self,
        nft_contract_id: AccountId,
        from_index: U64,
        limit: u64
    ) -> Vec<Sale>; fn market_sale(
        &self,
        contract_id: AccountId,
        token_id: TokenId
    ) -> Option<Sale>; }

Required Methods§

Implementors§