@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
24 lines • 559 B
TypeScript
export interface TokenAssets {
description: string;
status: string;
svgUrl: string;
website?: string;
pngUrl?: string;
social?: any;
extraTokens?: string[];
lockedAccounts?: {
[key: string]: string;
};
}
interface TokenOptionType {
tokenLabel: string;
tokenDecimals: number;
tokenAvatar: string;
assets?: TokenAssets;
error?: string;
}
export declare function useGetTokenDetails({ tokenId }: {
tokenId: string;
}): TokenOptionType;
export {};
//# sourceMappingURL=useGetTokenDetails.d.ts.map