Let's say I've got a contract called MyContract. My contract has a function which receives calldata and an address for another contract, called OtherContract
I want to be able to take the calldata and address in MyContract, and execute the callData in OtherContract from MyContract.
I don't know anything about the OtherContract, or the function that uses the calldata.
Is this possible?
Thanks for your time!!!