mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-28 05:12:18 +01:00
65fb18e1aa
The property `quoteDataRows[0]rawNetworkFees` was described as a number rather than a string. In practice it is a string in all cases. The PropType and the tests have both been updated to expect it to be a string.
18 lines
714 B
JavaScript
18 lines
714 B
JavaScript
import PropTypes from 'prop-types'
|
|
|
|
export const QUOTE_DATA_ROWS_PROPTYPES_SHAPE = PropTypes.shape({
|
|
aggId: PropTypes.string.isRequired,
|
|
amountReceiving: PropTypes.string.isRequired,
|
|
destinationTokenDecimals: PropTypes.number.isRequired,
|
|
destinationTokenSymbol: PropTypes.string.isRequired,
|
|
destinationTokenValue: PropTypes.string.isRequired,
|
|
isBestQuote: PropTypes.bool,
|
|
networkFees: PropTypes.string.isRequired,
|
|
quoteSource: PropTypes.string.isRequired,
|
|
rawNetworkFees: PropTypes.string.isRequired,
|
|
slippage: PropTypes.string.isRequired,
|
|
sourceTokenDecimals: PropTypes.number.isRequired,
|
|
sourceTokenSymbol: PropTypes.string.isRequired,
|
|
sourceTokenValue: PropTypes.string.isRequired,
|
|
})
|