@@ -77,6 +77,7 @@ export default class ConfirmApproveContent extends Component {
7777 assetStandard : PropTypes . string ,
7878 isSetApproveForAll : PropTypes . bool ,
7979 setApproveForAllArg : PropTypes . bool ,
80+ userAddress : PropTypes . string ,
8081 } ;
8182
8283 state = {
@@ -458,6 +459,7 @@ export default class ConfirmApproveContent extends Component {
458459 assetStandard,
459460 tokenSymbol,
460461 isSetApproveForAll,
462+ userAddress,
461463 } = this . props ;
462464 const { t } = this . context ;
463465 let titleTokenDescription = t ( 'token' ) ;
@@ -466,6 +468,7 @@ export default class ConfirmApproveContent extends Component {
466468 tokenAddress ,
467469 chainId ,
468470 null ,
471+ userAddress ,
469472 {
470473 blockExplorerUrl : rpcPrefs ?. blockExplorerUrl ?? null ,
471474 } ,
@@ -504,6 +507,7 @@ export default class ConfirmApproveContent extends Component {
504507 tokenAddress ,
505508 chainId ,
506509 null ,
510+ userAddress ,
507511 {
508512 blockExplorerUrl : rpcPrefs ?. blockExplorerUrl ?? null ,
509513 } ,
@@ -585,6 +589,7 @@ export default class ConfirmApproveContent extends Component {
585589 rpcPrefs,
586590 isContract,
587591 assetStandard,
592+ userAddress,
588593 } = this . props ;
589594 const { showFullTxDetails } = this . state ;
590595
@@ -671,7 +676,7 @@ export default class ConfirmApproveContent extends Component {
671676 className = "confirm-approve-content__etherscan-link"
672677 onClick = { ( ) => {
673678 const blockExplorerTokenLink = isContract
674- ? getTokenTrackerLink ( toAddress , chainId , null , null , {
679+ ? getTokenTrackerLink ( toAddress , chainId , null , userAddress , {
675680 blockExplorerUrl : rpcPrefs ?. blockExplorerUrl ?? null ,
676681 } )
677682 : getAccountLink (
0 commit comments