tooltip fot selected network

pull/3818/head
Aniket-Engg 1 year ago committed by Aniket
parent f024174728
commit 2c99e11710
  1. 26
      apps/etherscan/src/app/views/VerifyView.tsx

@ -112,13 +112,19 @@ export const VerifyView: React.FC<Props> = ({
return (<form onSubmit={handleSubmit}>
<div className="form-group">
<label htmlFor="network">Selected Network</label>
<Field
className="form-control"
type="text"
name="network"
value={networkName}
disabled={true}
/>
<CustomTooltip
tooltipText="Network is fetched from 'Deploy and Run Transactions' plugin's ENVIRONMENT field"
tooltipId='etherscan-impl-address2'
placement='bottom'
>
<Field
className="form-control"
type="text"
name="network"
value={networkName}
disabled={true}
/>
</CustomTooltip>
</div>
<div className="form-group">
@ -227,9 +233,9 @@ export const VerifyView: React.FC<Props> = ({
<div className={ isProxyContract ? 'form-group d-block': 'form-group d-none' }>
<label htmlFor="expectedImplAddress">Expected Implementation Address</label>
<CustomTooltip
tooltipText='Providing expected implementation address enforces a check to ensure the returned implementation contract address is same as address picked up by the verifier'
tooltipId='etherscan-impl-address'
placement='bottom'
tooltipText='Providing expected implementation address enforces a check to ensure the returned implementation contract address is same as address picked up by the verifier'
tooltipId='etherscan-impl-address'
placement='bottom'
>
<Field
className="form-control"

Loading…
Cancel
Save