feat: add name to the token info

This commit is contained in:
Kyle Fang
2023-08-23 17:48:13 +08:00
parent 93b6e44775
commit 6b50201f29
2 changed files with 2 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
export * from './currency';
export * from './alexSDK';
export { TokenInfo } from './utils/tokenlist';

View File

@@ -1,6 +1,7 @@
export type TokenInfo = {
type: 'fungibleToken',
id: string,
name: string
displayPrecision: number,
icon: string,
availableInSwap: boolean,