21 lines
357 B
TypeScript
21 lines
357 B
TypeScript
export interface RawTokenJSON {
|
|
name?: string;
|
|
symbol?: string;
|
|
address?: string;
|
|
decimals?: number | string;
|
|
}
|
|
|
|
export interface ValidatedTokenJSON {
|
|
name: string;
|
|
symbol: string;
|
|
address: string;
|
|
decimals: number | string;
|
|
}
|
|
|
|
export interface NormalizedTokenJSON {
|
|
name: string;
|
|
symbol: string;
|
|
address: string;
|
|
decimal: number;
|
|
}
|