Solidity Tips – Part #1
Today I’m sharing two simple Solidity tips I came across while working on a personal project. Let’s get right to it. Forwarding encoded arguments If you ever need to forward arguments from a function, you can combine them all into a struct and then encode the whole struct. Then, on the receiving end, you just…