mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 18:45:38 +00:00
eb4fd1cce8
* check currentBalance before showing Amount Field and GenerateTx button * add token balance check * check wallet balance * comments * simplify wallet balance check
7 lines
105 B
TypeScript
7 lines
105 B
TypeScript
import { Wei } from 'libs/units';
|
|
|
|
export interface Balance {
|
|
wei: Wei | null;
|
|
isPending: boolean;
|
|
}
|