I'm trying to figure out how to use the delegatecall method on a contract address in a contract to call a function in a separate contract.
I know Libraries are the higher level interface to use but I want to understand the lower level actions and behaviors.
If someone could provide some good examples of a contract using delegatecall to another contract's functions, that would be greatly appreciated.
bytes32. Forstringandbytes, I'm not sure and a separate question is probably needed. – eth Aug 20 '16 at 08:00D.delcallCfunc(addressOfE, 10);is it the correct way to call it? CouldaddressOfEbe a string? @eth – alper Mar 26 '17 at 15:24addressOfEcan't be a string since string doesn't have adelegatecallmember. It's probably easier to stick to libraries instead of "plain" delegatecall. – eth Mar 31 '17 at 09:42