-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmultiSigWallet.sol
More file actions
117 lines (90 loc) · 4.05 KB
/
Copy pathmultiSigWallet.sol
File metadata and controls
117 lines (90 loc) · 4.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
contract MultiSigWallet {
event Deposit(address indexed sender, uint amount, uint balance);
event SubmitTransaction(address indexed owner,uint indexed txIndex,address indexed to,uint value,bytes data);
event ConfirmTransaction(address indexed owner, uint indexed txIndex);
event RevokeConfirmation(address indexed owner, uint indexed txIndex);
event ExecuteTransaction(address indexed owner, uint indexed txIndex);
struct Transaction {
address to;
uint value;
bytes data;
bool executed;
uint confirmOwnerNum;
}
mapping(address => bool) private isOwner;
address[] private owners;
uint private exeNeedMinConfirmOwnerNum;
Transaction[] private transactions;
mapping(uint => mapping(address => bool)) private txOwnerConfirm;
constructor(address[] memory _owners, uint _exeNeedMinConfirmOwnerNum) {
require(_owners.length > 0, "owners required");
require(_exeNeedMinConfirmOwnerNum > 0 && _exeNeedMinConfirmOwnerNum <= _owners.length,"invalid number of required confirmations");
for (uint i = 0; i < _owners.length; i++) {
address owner = _owners[i];
require(owner != address(0), "invalid owner");
require(!isOwner[owner], "owner repeat");
isOwner[owner] = true;
owners.push(owner);
}
exeNeedMinConfirmOwnerNum = _exeNeedMinConfirmOwnerNum;
}
receive() external payable {
emit Deposit(msg.sender, msg.value, address(this).balance);
}
function submitTransaction(address _to,uint _value,bytes memory _data) external onlyOwner {
transactions.push(Transaction({
to: _to,
value: _value,
data: _data,
executed: false,
confirmOwnerNum: 0
}));
emit SubmitTransaction(msg.sender, transactions.length, _to, _value, _data);
}
function confirmTransaction(uint _txIndex) external onlyOwner txExists(_txIndex) notExecuted(_txIndex) {
require(!txOwnerConfirm[_txIndex][msg.sender], "tx already confirmed");
Transaction storage transaction = transactions[_txIndex];
transaction.confirmOwnerNum += 1;
txOwnerConfirm[_txIndex][msg.sender] = true;
emit ConfirmTransaction(msg.sender, _txIndex);
}
function revokeConfirmation(uint _txIndex) external onlyOwner txExists(_txIndex) notExecuted(_txIndex){
require(txOwnerConfirm[_txIndex][msg.sender], "tx not confirmed");
Transaction storage transaction = transactions[_txIndex];
transaction.confirmOwnerNum -= 1;
txOwnerConfirm[_txIndex][msg.sender] = false;
emit RevokeConfirmation(msg.sender, _txIndex);
}
function executeTransaction(uint _txIndex) external onlyOwner txExists(_txIndex) notExecuted(_txIndex){
Transaction storage transaction = transactions[_txIndex];
require(transaction.confirmOwnerNum >= exeNeedMinConfirmOwnerNum,"cannot execute tx");
transaction.executed = true;
(bool success, ) = transaction.to.call{value: transaction.value}(transaction.data);
require(success, "tx failed");
emit ExecuteTransaction(msg.sender, _txIndex);
}
function getOwners() external view returns (address[] memory) {
return owners;
}
function getTransaction(uint _txIndex) external view txExists(_txIndex) returns (address,uint,bytes memory,bool,uint){
Transaction storage transaction = transactions[_txIndex];
return (
transaction.to,
transaction.value,
transaction.data,
transaction.executed,
transaction.confirmOwnerNum
);
}
modifier onlyOwner() {
require(isOwner[msg.sender], "not owner");_;
}
modifier txExists(uint _txIndex) {
require(_txIndex < transactions.length, "tx does not exist");_;
}
modifier notExecuted(uint _txIndex) {
require(!transactions[_txIndex].executed, "tx already executed");_;
}
}