@crypto-dev/pasar-sdk-development
Version:
PasarProtocol NFT Marketplace SDK
10 lines (9 loc) • 325 B
TypeScript
declare enum ChainType {
ESC = "ESC",
ETH = "ETH",
FSN = "FSN"
}
declare const getChainTypes: () => string[];
declare const getChainTypeById: (chainId: number) => string;
declare const getChainIndexByType: (chaintype: ChainType) => any;
export { ChainType, getChainTypes, getChainTypeById, getChainIndexByType };