diff --git a/libs/moloch-v3-macro-ui/src/utils/proposalDetailsHelpers.ts b/libs/moloch-v3-macro-ui/src/utils/proposalDetailsHelpers.ts index a615f82b..71cfbcee 100644 --- a/libs/moloch-v3-macro-ui/src/utils/proposalDetailsHelpers.ts +++ b/libs/moloch-v3-macro-ui/src/utils/proposalDetailsHelpers.ts @@ -43,7 +43,7 @@ const getValueFromMintOrTransferAction = ( ): string => { if ( actionData.params[0].name !== 'to' && - !['amount', '_value'].includes(actionData.params[1].name) + !['amount', '_value', 'wad'].includes(actionData.params[1].name) ) { return 'decoding error'; } @@ -78,7 +78,7 @@ const getRecipientAddressFromMintOrTransferAction = ( ): string => { if ( actionData.params[0].name !== 'to' && - !['amount', '_value'].includes(actionData.params[1].name) + !['amount', '_value', 'wad'].includes(actionData.params[1].name) ) { return 'decoding error'; }