diff --git a/package.json b/package.json index b21aba35b4..ecfed851f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "safe-react", - "version": "3.15.5", + "version": "3.15.6", "description": "Allowing crypto users manage funds in a safer way", "website": "https://github.com/gnosis/safe-react#readme", "bugs": { diff --git a/src/routes/safe/components/Transactions/TxList/TxInfoMultiSend.tsx b/src/routes/safe/components/Transactions/TxList/TxInfoMultiSend.tsx new file mode 100644 index 0000000000..708afc57d2 --- /dev/null +++ b/src/routes/safe/components/Transactions/TxList/TxInfoMultiSend.tsx @@ -0,0 +1,28 @@ +import { ReactElement } from 'react' +import { MultiSend } from '@gnosis.pm/safe-react-gateway-sdk' +import { EthHashInfo } from '@gnosis.pm/safe-react-components' + +import { getExplorerInfo } from 'src/config' +import { InfoDetails } from './InfoDetails' + +// Does not use AddressInfo as to not allow address book data display +// as we use backend data to verify the deligate call +const TxInfoMultiSend = ({ txInfo }: { txInfo: MultiSend }): ReactElement => { + const hash = txInfo?.to.value + const name = txInfo.to?.name || undefined + const customAvatar = txInfo.to?.logoUri || undefined + return ( + + + + ) +} + +export default TxInfoMultiSend