blob: 8d0c1a3f6db88572e9f5623e5f7eb29d507f0596 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
pragma solidity ^0.4.4;
import "Factory.sol";
import "MultiSigWallet.sol";
/// @title Multisignature wallet factory - Allows creation of multisig wallet.
/// @author Stefan George - <stefan.george@consensys.net>
contract MultiSigWalletFactory is Factory {
/// @dev Allows verified creation of multisignature wallet.
/// @param _owners List of initial owners.
/// @param _required Number of required confirmations.
/// @return Returns wallet address.
function create(address[] memory _owners, uint _required)
public
returns (address wallet)
{
wallet = address(new MultiSigWallet(_owners, _required));
register(wallet);
}
}
|