mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
import { compose } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import {
|
|
setUseNftDetection,
|
|
setOpenSeaEnabled,
|
|
setTransactionSecurityCheckEnabled,
|
|
} from '../../../store/actions';
|
|
import {
|
|
getUseNftDetection,
|
|
getOpenSeaEnabled,
|
|
getIsTransactionSecurityCheckEnabled,
|
|
} from '../../../selectors';
|
|
import ExperimentalTab from './experimental-tab.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
return {
|
|
useNftDetection: getUseNftDetection(state),
|
|
openSeaEnabled: getOpenSeaEnabled(state),
|
|
transactionSecurityCheckEnabled:
|
|
getIsTransactionSecurityCheckEnabled(state),
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
setUseNftDetection: (val) => dispatch(setUseNftDetection(val)),
|
|
setOpenSeaEnabled: (val) => dispatch(setOpenSeaEnabled(val)),
|
|
setTransactionSecurityCheckEnabled: (val) =>
|
|
dispatch(setTransactionSecurityCheckEnabled(val)),
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(ExperimentalTab);
|