William O'Beirne 31912c0f83 Gas Price Estimates API (#1050)
* Setup api / reducers / actions for gas.

* Implement gas price saga, fetch from component, and loading states. Blocked on CORS.

* Implement caching mechanism.

* Add tests for gas saga and reducer.

* More testing.

* Indicate that gas price is recommended when fetched from API.

* Hide track while loading.

* Fix tscheck.

* Check gas estimate before assuming its ok.

* Check for correct logical order of gas prices.

* Tscheck fixes.
2018-02-16 13:01:39 -06:00

49 lines
1.5 KiB
TypeScript

import { routerReducer } from 'react-router-redux';
import { combineReducers } from 'redux';
import { config, State as ConfigState } from './config';
import { customTokens, State as CustomTokensState } from './customTokens';
import { deterministicWallets, State as DeterministicWalletsState } from './deterministicWallets';
import { ens, State as EnsState } from './ens';
import { notifications, State as NotificationsState } from './notifications';
import { rates, State as RatesState } from './rates';
import { State as SwapState, swap } from './swap';
import { State as WalletState, wallet } from './wallet';
import { State as TransactionState, transaction } from './transaction';
import { State as GasState, gas } from './gas';
import { onboardStatus, State as OnboardStatusState } from './onboardStatus';
import { State as TransactionsState, transactions } from './transactions';
export interface AppState {
// Custom reducers
config: ConfigState;
notifications: NotificationsState;
onboardStatus: OnboardStatusState;
ens: EnsState;
wallet: WalletState;
customTokens: CustomTokensState;
rates: RatesState;
deterministicWallets: DeterministicWalletsState;
swap: SwapState;
transaction: TransactionState;
transactions: TransactionsState;
gas: GasState;
// Third party reducers (TODO: Fill these out)
routing: any;
}
export default combineReducers<AppState>({
config,
swap,
notifications,
onboardStatus,
ens,
wallet,
customTokens,
rates,
deterministicWallets,
transaction,
transactions,
gas,
routing: routerReducer
});