}
placement={placement}
- overlay={content}
+ overlay={() => (
+
+ {content}
+ {readMoreLink && (
+
+ Read more
+
+ )
+ }
+ )}
>
{children}
@@ -205,6 +229,7 @@ Tooltip.propTypes = {
PropTypes.element,
PropTypes.string,
]),
+ readMoreLink: PropTypes.string,
};
export default Tooltip;
diff --git a/src/views/Wallet/views/AccountSend/components/AdvancedForm/index.js b/src/views/Wallet/views/AccountSend/components/AdvancedForm/index.js
index 1311c605..01898e9c 100644
--- a/src/views/Wallet/views/AccountSend/components/AdvancedForm/index.js
+++ b/src/views/Wallet/views/AccountSend/components/AdvancedForm/index.js
@@ -190,12 +190,13 @@ const AdvancedForm = (props: Props) => {
- Gas Price is the amount you pay per unit of gas.
- TX fee = gas price * gas limit & is paid to miners for including your TX in a block.
- Higher the gas price = faster transaction, but more expensive. Recommended is {recommendedGasPrice} GWEI.
- Read more
+ Gas price refers to the amount of ether you are willing to pay for every
+ unit of gas, and is usually measured in “Gwei”. Transaction fee = gas limit * gas price Increasing the gas price will get the transaction confirmed sooner but
+ makes it more expensive. The recommended gas price is {recommendedGasPrice} GWEI.
)}
+ maxWidth={400}
+ readMoreLink="https://wiki.trezor.io/Ethereum_Wallet#Gas_price_.28GWEI.29"
placement="top"
>