mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-10 02:04:32 +00:00
7 lines
98 B
TypeScript
7 lines
98 B
TypeScript
|
import { Wei } from 'libs/units';
|
||
|
|
||
|
export interface Balance {
|
||
|
wei: Wei;
|
||
|
isPending: boolean;
|
||
|
}
|