Link to arb transaction with a separate button

This commit is contained in:
Marco van Dijk 2022-03-03 10:57:11 +01:00
parent 988904d4d0
commit 485b75cad2
2 changed files with 14 additions and 2 deletions

9
public/arb.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 129 KiB

View File

@ -50,10 +50,13 @@ const EventButton = (obj) => {
} }
return ( return (
<a href={obj.transactionUrl} className="row"> <div className="row">
<img alt="" src="livepeer.png" width="30" height="30" /> <img alt="" src="livepeer.png" width="30" height="30" />
{obj.idx}: {eventSpecificInfo} {obj.idx}: {eventSpecificInfo}
<a href={obj.transactionUrl}>
<img alt="" src="arb.svg" width="30" height="30" />
</a> </a>
</div>
) )
} }