mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-12 03:54:13 +00:00
a4ec6f6139
* hide buttons during send loading state * fix transaction succeeded not clickable; provide error in action * move BroadcastStatusTransaction into 'libs/transaction' * use more succint Array.prototype.find * rename resetState -> resetTransaction * refactor and component componentDidUpdate logic * rename disabled -> generateDisabled; comment componentDidUpdate * add size to Spinner, use in ConfirmationModal; disable instead of hide buttons in Modal * fix flow not understanding that an object wouldn't be null in this case anyway. silly flow * various refactors; send entire balance working
28 lines
632 B
JavaScript
28 lines
632 B
JavaScript
import {
|
|
postBityOrderSaga,
|
|
bityTimeRemaining,
|
|
pollBityOrderStatusSaga
|
|
} from './swap/orders';
|
|
import { getBityRatesSaga } from './swap/rates';
|
|
import contracts from './contracts';
|
|
import ens from './ens';
|
|
import notifications from './notifications';
|
|
import rates from './rates';
|
|
import wallet from './wallet';
|
|
import handleConfigChanges from './config';
|
|
import deterministicWallets from './deterministicWallets';
|
|
|
|
export default {
|
|
bityTimeRemaining,
|
|
handleConfigChanges,
|
|
postBityOrderSaga,
|
|
pollBityOrderStatusSaga,
|
|
getBityRatesSaga,
|
|
contracts,
|
|
ens,
|
|
notifications,
|
|
rates,
|
|
wallet,
|
|
deterministicWallets
|
|
};
|