Skip to content

Commit

Permalink
Fix issue where abis are parsed incorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
neokry committed May 28, 2024
1 parent 5d80d0d commit 2524ca3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const ABI = () => {
customABI: values?.transactionCustomABI,
contract: {
address: customTransaction.address as AddressType,
abi: JSON.parse(customTransaction.customABI!),
abi: JSON.parse(values?.transactionCustomABI),
},
})
} else {
Expand Down

0 comments on commit 2524ca3

Please sign in to comment.