You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
685 B
23 lines
685 B
import * as networkEnums from '../../shared/constants/network';
|
|
|
|
/**
|
|
* Gets the etherscan.io URL prefix for a given network ID.
|
|
*
|
|
* @param {string} networkId - The network ID to get the prefix for.
|
|
* @returns {string} The etherscan.io URL prefix for the given network ID.
|
|
*/
|
|
export function getEtherscanNetworkPrefix(networkId) {
|
|
switch (networkId) {
|
|
case networkEnums.ROPSTEN_NETWORK_ID:
|
|
return 'ropsten.';
|
|
case networkEnums.RINKEBY_NETWORK_ID:
|
|
return 'rinkeby.';
|
|
case networkEnums.KOVAN_NETWORK_ID:
|
|
return 'kovan.';
|
|
case networkEnums.GOERLI_NETWORK_ID:
|
|
return 'goerli.';
|
|
default:
|
|
// also covers mainnet
|
|
return '';
|
|
}
|
|
}
|
|
|