probably better to keep as v,r,s in the contract.. usually comes in as bytes, and need v,r,s to recover signer
Thank you. This works: https://gist.github.com/vyorkin/a19dd3eac45da2d6d3805e804b8dd6f0 function fromRS( bytes32 r, bytes32 s ) internal pure returns (bytes memory) { return abi.encodePacked(r, s, uint8(0x1c)); }
Обсуждают сегодня