|
|
@ -39,6 +39,7 @@ export default function FeeCard({ |
|
|
|
chainId, |
|
|
|
chainId, |
|
|
|
EIP1559Network, |
|
|
|
EIP1559Network, |
|
|
|
maxPriorityFeePerGasDecGWEI, |
|
|
|
maxPriorityFeePerGasDecGWEI, |
|
|
|
|
|
|
|
maxFeePerGasDecGWEI, |
|
|
|
}) { |
|
|
|
}) { |
|
|
|
const t = useContext(I18nContext); |
|
|
|
const t = useContext(I18nContext); |
|
|
|
|
|
|
|
|
|
|
@ -143,6 +144,7 @@ export default function FeeCard({ |
|
|
|
subTitle={ |
|
|
|
subTitle={ |
|
|
|
<GasTiming |
|
|
|
<GasTiming |
|
|
|
maxPriorityFeePerGas={maxPriorityFeePerGasDecGWEI} |
|
|
|
maxPriorityFeePerGas={maxPriorityFeePerGasDecGWEI} |
|
|
|
|
|
|
|
maxFeePerGas={maxFeePerGasDecGWEI} |
|
|
|
/> |
|
|
|
/> |
|
|
|
} |
|
|
|
} |
|
|
|
subText={ |
|
|
|
subText={ |
|
|
@ -304,4 +306,5 @@ FeeCard.propTypes = { |
|
|
|
chainId: PropTypes.string.isRequired, |
|
|
|
chainId: PropTypes.string.isRequired, |
|
|
|
EIP1559Network: PropTypes.bool.isRequired, |
|
|
|
EIP1559Network: PropTypes.bool.isRequired, |
|
|
|
maxPriorityFeePerGasDecGWEI: PropTypes.string, |
|
|
|
maxPriorityFeePerGasDecGWEI: PropTypes.string, |
|
|
|
|
|
|
|
maxFeePerGasDecGWEI: PropTypes.string, |
|
|
|
}; |
|
|
|
}; |
|
|
|