hyperledger-archives / burrow

https://wiki.hyperledger.org/display/burrow
https://hyperledger.github.io/burrow
Apache License 2.0
1.03k stars 346 forks source link

support solidity tuple type #1524

Open liuyh168 opened 3 years ago

liuyh168 commented 3 years ago

can burrow support the solidity tuple type , i have not find in evm/abi for example:

pragma solidity >=0.0.0; pragma experimental ABIEncoderV2;

contract A{ struct S{ string para1; int para2; }

function f(S memory s) public { //... } }

silasdavis commented 2 years ago

Can you provide the code you would like to work? It is not clear from your example.