Show call type in UI if not call
This commit is contained in:
parent
04540790ea
commit
8ec6bcf293
|
@ -108,6 +108,16 @@ const ExpandedTx = ({
|
||||||
{tx.refundParams.symbol}
|
{tx.refundParams.symbol}
|
||||||
</Paragraph>
|
</Paragraph>
|
||||||
)}
|
)}
|
||||||
|
{tx.operation === 1 && (
|
||||||
|
<Paragraph noMargin>
|
||||||
|
<Bold>Delegate Call</Bold>
|
||||||
|
</Paragraph>
|
||||||
|
)}
|
||||||
|
{tx.operation === 2 && (
|
||||||
|
<Paragraph noMargin>
|
||||||
|
<Bold>Contract Creation</Bold>
|
||||||
|
</Paragraph>
|
||||||
|
)}
|
||||||
</Block>
|
</Block>
|
||||||
<Hairline />
|
<Hairline />
|
||||||
<TxDescription tx={tx} />
|
<TxDescription tx={tx} />
|
||||||
|
|
Loading…
Reference in New Issue