@crypto-dev/pasar-sdk-development
Version:
PasarProtocol NFT Marketplace SDK
14 lines (13 loc) • 459 B
TypeScript
import { ChainType } from "../chaintype";
import { ContractAddress } from "../contractaddress";
import { Condition } from "./condition";
export declare class PriceRangeCondition extends Condition {
private token;
private network;
private minPrice;
private maxPrice;
constructor(token: string, network: ChainType, minPrice: number, maxPrice: number);
getToken(): ContractAddress;
getMinPrice(): number;
getMaxPrice(): number;
}