diff --git a/app/scripts/platforms/extension.js b/app/scripts/platforms/extension.js index 03543829a..a77da7daa 100644 --- a/app/scripts/platforms/extension.js +++ b/app/scripts/platforms/extension.js @@ -124,8 +124,8 @@ class ExtensionPlatform { _getExplorer (hash, networkId) { let explorerName - if (networkId === 99 || networkId === 77) { - explorerName = 'POA explorer' + if (networkId === 99 || networkId === 100 || networkId === 77) { + explorerName = 'BlockScout' } else { explorerName = 'Etherscan' } diff --git a/old-ui/app/components/transaction-list-item.js b/old-ui/app/components/transaction-list-item.js index e6a088763..dd681e072 100644 --- a/old-ui/app/components/transaction-list-item.js +++ b/old-ui/app/components/transaction-list-item.js @@ -65,7 +65,7 @@ TransactionListItem.prototype.render = function () { let isLinkable = false const numericNet = parseInt(network) - isLinkable = numericNet === 1 || numericNet === 3 || numericNet === 4 || numericNet === 42 || numericNet === 77 || numericNet === 99 + isLinkable = numericNet === 1 || numericNet === 3 || numericNet === 4 || numericNet === 42 || numericNet === 77 || numericNet === 99 || numericNet === 100 var isMsg = ('msgParams' in transaction) var isTx = ('txParams' in transaction)