mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 18:45:38 +00:00
d1a2c885a2
* PureComponent a ton of non-connected components. * Debounce gas price slider. Keep gas price in state to reflect changes immediately. * PureComponent balance sidebar and swap unconnected components. * Import correct component. * Move debouncing of gas slider to sagas via gasPriceInputIntent action. * Remove console log. * Remove leftover file from merge.
13 lines
314 B
TypeScript
13 lines
314 B
TypeScript
export enum RequestStatus {
|
|
REQUESTED = 'PENDING',
|
|
SUCCEEDED = 'SUCCESS',
|
|
FAILED = 'FAIL',
|
|
TIMEDOUT = 'TIMEDOUT'
|
|
}
|
|
export interface State {
|
|
gasEstimationStatus: RequestStatus | null;
|
|
getFromStatus: RequestStatus | null;
|
|
getNonceStatus: RequestStatus | null;
|
|
gasPriceStatus: RequestStatus | null;
|
|
}
|