violet-swapr
Version:
An SDK for building applications on top of DXswap.
10 lines (9 loc) • 466 B
TypeScript
import { BigintIsh, ChainId } from '../constants';
import { TokenAmount } from './';
import { PricedToken, PricedTokenAmount } from '..';
export declare class KpiToken extends PricedToken {
readonly kpiId: string;
readonly totalSupply: TokenAmount;
readonly collateral: PricedTokenAmount;
constructor(chainId: ChainId, address: string, totalSupply: BigintIsh, collateral: PricedTokenAmount, kpiId: string, symbol?: string, name?: string);
}