diff --git a/src/components/TxHistory.tsx b/src/components/TxHistory.tsx index fafc202d..4db43646 100644 --- a/src/components/TxHistory.tsx +++ b/src/components/TxHistory.tsx @@ -261,7 +261,7 @@ export const TxHistory = (props: TxHistoryProps) => { case 'lock': return 'Lock contract'; default: - return amount === 0 ? 'Self transfer' : amount > 0 ? 'Received' : 'Sent'; + return amount === 0 ? 'Transfer' : amount > 0 ? 'Received' : 'Sent'; } };