pub trait RentFeatureResolve {
    fn rent_resolve_pay(
        &mut self,
        contract_id: AccountId,
        token_id: TokenId,
        buyer_id: AccountId,
        owner_id: AccountId,
        receiver_id: AccountId,
        time: u64,
        end_time: u64,
        ft_token_id: AccountId,
        price: U128
    ) -> U128; fn rent_resolve_claim(
        &mut self,
        contract_id: AccountId,
        token_id: TokenId,
        owner_id: AccountId,
        renter_id: AccountId
    ); }

Required Methods§

Implementors§