mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 07:16:36 +01:00
bd1683402a
* use native currency in asset row * set native currency on startup
27 lines
740 B
JavaScript
27 lines
740 B
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
getMetaMaskAccounts,
|
|
getNativeCurrency,
|
|
getSendTokenAddress,
|
|
} from '../../../../selectors';
|
|
import { updateSendToken } from '../../../../store/actions';
|
|
import SendAssetRow from './send-asset-row.component';
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
tokens: state.metamask.tokens,
|
|
selectedAddress: state.metamask.selectedAddress,
|
|
sendTokenAddress: getSendTokenAddress(state),
|
|
accounts: getMetaMaskAccounts(state),
|
|
nativeCurrency: getNativeCurrency(state),
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
setSendToken: (token) => dispatch(updateSendToken(token)),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SendAssetRow);
|