mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
13 lines
350 B
JavaScript
13 lines
350 B
JavaScript
import { createAccountLinkForChain } from '@metamask/etherscan-link';
|
|
|
|
export default function getAccountLink(address, chainId, rpcPrefs) {
|
|
if (rpcPrefs && rpcPrefs.blockExplorerUrl) {
|
|
return `${rpcPrefs.blockExplorerUrl.replace(
|
|
/\/+$/u,
|
|
'',
|
|
)}/address/${address}`;
|
|
}
|
|
|
|
return createAccountLinkForChain(address, chainId);
|
|
}
|