@dojima-wallet/non-native
Version:
package for non-native tokens functionality
27 lines (26 loc) • 948 B
TypeScript
export declare const contractData: {
[key: string]: {
contractAddress: string;
tokenSymbol: tokenSymbolList;
decimal: number;
};
};
export declare type tokenList = "binance-usd" | "binancecoin" | "chainlink" | "crypto-com-chain" | "dai" | "fantom" | "maker" | "matic-network" | "shiba-inu" | "tether" | "uniswap" | "usd-coin" | "vechain" | "wrapped-bitcoin" | "terra-luna" | "wrapped-ust";
export declare type tokenSymbolList = "BUSD" | "BNB" | "LINK" | "CRO" | "DAI" | "FTM" | "MKR" | "MATIC" | "SHIB" | "USDT" | "UNI" | "USDC" | "VEN" | "WBTC" | "LUNA" | "UST" | "aWETH" | "cDAI" | "cETH";
export declare const minABI: {
constant: boolean;
inputs: {
name: string;
type: string;
}[];
name: string;
outputs: {
name: string;
type: string;
}[];
type: string;
}[];
export declare type BalanceResult = {
balance: number;
tokenName: tokenSymbolList;
};