diff --git a/src/routes/safe/components/Apps/confirmTransactions.tsx b/src/routes/safe/components/Apps/confirmTransactions.tsx index f5ad686c..03efa44f 100644 --- a/src/routes/safe/components/Apps/confirmTransactions.tsx +++ b/src/routes/safe/components/Apps/confirmTransactions.tsx @@ -63,7 +63,7 @@ const isTxValid = (t: SafeAppTx): boolean => { return false } - if (typeof t.value === 'string' && !/^\d+$/.test(t.value)) { + if (typeof t.value === 'string' && !/^(0x)?[0-9a-f]+$/i.test(t.value)) { return false }