Deposit and Withdraw Funds
solidity
// Deposit funds to susbcription
interface IDeposit {
function depositFund() external payable;
}
// Check minimum balance requirement (additional)
uint128 minBalance = deposit.getMinBalanceLimit(maxGasPrice, maxGasLimit);Withdraw Funds
Last updated
