This website requires JavaScript.
Explore
Help
Sign In
status-im
/
MyCrypto
mirror of
https://github.com/status-im/MyCrypto.git
Watch
2
Star
0
Fork
You've already forked MyCrypto
0
Code
Issues
Projects
Releases
Wiki
Activity
32416469e4
MyCrypto
/
common
/
libs
/
wallet
/
balance.ts
7 lines
105 B
TypeScript
Raw
Normal View
History
Unescape
Escape
Wallet Loading States & Spinner Update (#334) * Add disclaimer modal to footer * Remove duplicate code & unnecessary styles * Fix formatting noise * remove un-used css style * Fix tslint error & add media query for modals * Nest Media Query * Replace '???' with Spinner & update spinner * Add loading states for wallet balances * Update wallet test * Remove excess data passed to wallet balance reducer & Fix wallet balance types * Merge 'develop' into 'loading-indicator' * Add 'light' prop to Spinner * Only show spinners when fetching data * Remove format diff * Apply naming conventions * Remove network name when offline
2017-11-15 03:44:55 +00:00
import
{
Wei
}
from
'libs/units'
;
export
interface
Balance
{
Stricter balance checks during swap (#793) * check currentBalance before showing Amount Field and GenerateTx button * add token balance check * check wallet balance * comments * simplify wallet balance check
2018-01-15 06:51:35 +00:00
wei
:
Wei
|
null
;
Wallet Loading States & Spinner Update (#334) * Add disclaimer modal to footer * Remove duplicate code & unnecessary styles * Fix formatting noise * remove un-used css style * Fix tslint error & add media query for modals * Nest Media Query * Replace '???' with Spinner & update spinner * Add loading states for wallet balances * Update wallet test * Remove excess data passed to wallet balance reducer & Fix wallet balance types * Merge 'develop' into 'loading-indicator' * Add 'light' prop to Spinner * Only show spinners when fetching data * Remove format diff * Apply naming conventions * Remove network name when offline
2017-11-15 03:44:55 +00:00
isPending
:
boolean
;
}