actually i want to build a multisig
I want to learn how to sign transaction on chain as view function like
is this simply
keccak(abi.encodePacked(msg.sender,address, message));
or is there more to it and how to transact the signature in different function by passing the signature as argument so that i can use it in another contract
https://solidity-by-example.org/signature/
Oct 17, 2022, 4:47 PM
or is this not possible?
Oct 17, 2022, 4:49 PM
You want to check eip712 probably
Oct 17, 2022, 6:40 PM
https://soliditydeveloper.com/ecrecover
https://www.npmjs.com/package/eth-permit
https://eips.ethereum.org/EIPS/eip-712
Oct 17, 2022, 7:40 PM
gm, i woke up. I will check and learn all of this today
Oct 18, 2022, 4:25 AM