Unverified Commit 99317238 authored by Liana Husikyan's avatar Liana Husikyan Committed by GitHub

added stateMutability to copy

parent 94ce3c55
...@@ -70,6 +70,7 @@ module.exports = { ...@@ -70,6 +70,7 @@ module.exports = {
if (abi[i].type === 'constructor') { if (abi[i].type === 'constructor') {
funABI.inputs = abi[i].inputs || [] funABI.inputs = abi[i].inputs || []
funABI.payable = abi[i].payable funABI.payable = abi[i].payable
funABI.stateMutability = abi[i].stateMutability
break break
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment