Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 552 Bytes

Router.md

File metadata and controls

27 lines (18 loc) · 552 Bytes

Router

Router forwards calls between two contracts, so that any permissions given to the original caller are stripped from the call. This is useful when implementing generic call routing functions on contracts that might have ERC20 approvals or AccessControl authorizations.

owner

address owner

constructor

constructor() public

route

function route(address target, bytes data) external payable returns (bytes result)

Allow users to route calls to a pool, to be used with batch