solang-parser 0.2.1

Solang Solidity Parser
Documentation
pragma solidity >=0.0;
import "Factory.sol";
import "MultiSigWalletWithDailyLimit.sol";


/// @title Multisignature wallet factory for daily limit version - Allows creation of multisig wallet.
/// @author Stefan George - <stefan.george@consensys.net>
contract MultiSigWalletWithDailyLimitFactory is Factory {

    /// @dev Allows verified creation of multisignature wallet.
    /// @param _owners List of initial owners.
    /// @param _required Number of required confirmations.
    /// @param _dailyLimit Amount in wei, which can be withdrawn without confirmations on a daily basis.
    /// @return wallet Returns wallet address.
    function create(address[] memory _owners, uint _required, uint _dailyLimit)
        public
        returns (address wallet)
    {
        wallet = address(new MultiSigWalletWithDailyLimit(_owners, _required, _dailyLimit));
        register(wallet);
    }
}