UNPKG

@crypto-dev/pasar-sdk-development

Version:
14 lines (13 loc) 459 B
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; }