@crypto-dev/pasar-sdk-development
Version:
PasarProtocol NFT Marketplace SDK
11 lines (10 loc) • 373 B
TypeScript
import { Condition } from "./condition";
import { ChainType } from "../chaintype";
import { ContractAddress } from "../contractaddress";
export declare class PricingCondition extends Condition {
private tokens;
constructor();
appendToken(token: string, network: ChainType): PricingCondition;
count(): number;
getToken(index: number): ContractAddress;
}