Fix etherscan links (#1497)

This commit is contained in:
Daniel Sanchez 2020-10-19 18:11:21 +02:00 committed by GitHub
parent 9ca9007105
commit c6d54b3eb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ export const getExplorerInfo = (hash: string): BlockScanInfo => {
default: {
const type = hash.length > 42 ? 'tx' : 'address'
return () => ({
url: `${url}${type}/${hash}`,
url: `${url}/${type}/${hash}`,
alt: name || '',
})
}