Delegatable
Inherits: IERC165, PoolMetadata
Author: Mure
Interface for Delegate core with support for ERC-165 detection.
Functions
beforeDeposit
function beforeDeposit(string calldata poolName, uint256 amount, address depositor, bytes memory sig) external;
afterDeposit
function afterDeposit(string calldata poolName, uint256 amount, address depositor, bytes memory sig) external;
beforeRefund
function beforeRefund(string calldata poolName, address depositor) external;
afterRefund
function afterRefund(string calldata poolName, address depositor, uint256 amount) external;
withdrawPoolFunds
function withdrawPoolFunds(string calldata poolName) external;
depositPoolFunds
function depositPoolFunds(string calldata poolName, uint256 refundFunds, uint256 claimFunds) external;
deposit
function deposit(string calldata poolName, uint256 amount, bytes memory sig) external;
refund
function refund(string calldata poolName) external;
refund
function refund(string calldata poolName, address depositor, uint256 amount) external;
claim
function claim(string calldata poolName) external;
sendFunds
function sendFunds(address to, uint256 amount, address currency) external;
poolConfig
function poolConfig(string calldata poolName) external view returns (PoolConfig memory);
poolAddress
function poolAddress() external view returns (address);
deposited
function deposited(string calldata poolName, address depositor) external view returns (uint256);
getClaimCurrency
function getClaimCurrency(string calldata poolName) external view returns (address);
Events
PoolFundsDeposit
event PoolFundsDeposit(string poolName, uint256 indexed refundFunds, uint256 indexed claimFunds);
FundTransfer
event FundTransfer(address indexed to, uint256 indexed amount, address indexed currency);
ConfigUpdate
event ConfigUpdate(string poolName);
PoolContractUpdate
event PoolContractUpdate(address indexed poolContract);
Errors
PluginDisabled
error PluginDisabled(uint16 plugin);
PluginEnabled
error PluginEnabled(uint16 plugin);
InvalidAmount
error InvalidAmount();
DelegateError
error DelegateError(DelegateErrorReason reason);