forked from celo-org/celo-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MultiSig.sol
384 lines (351 loc) · 13.1 KB
/
MultiSig.sol
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
pragma solidity ^0.5.13;
/* solhint-disable no-inline-assembly, avoid-low-level-calls, func-name-mixedcase, func-order */
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "./ExternalCall.sol";
import "./Initializable.sol";
/**
* @title Multisignature wallet - Allows multiple parties to agree on transactions before
* execution.
* @author Stefan George - <stefan.george@consensys.net>
* @dev NOTE: This contract has its limitations and is not viable for every
* multi-signature setup. On a case by case basis, evaluate whether this is the
* correct contract for your use case.
* In particular, this contract doesn't have an atomic "add owners and increase
* requirement" operation.
* This can be tricky, for example, in a situation where a MultiSig starts out
* owned by a single owner. Safely increasing the owner set and requirement at
* the same time is not trivial. One way to work around this situation is to
* first add a second address controlled by the original owner, increase the
* requirement, and then replace the auxillary address with the intended second
* owner.
* Again, this is just one example, in general make sure to verify this contract
* will support your intended usage. The goal of this contract is to offer a
* simple, minimal multi-signature API that's easy to understand even for novice
* Solidity users.
*/
contract MultiSig is Initializable {
using SafeMath for uint256;
/*
* Events
*/
event Confirmation(address indexed sender, uint256 indexed transactionId);
event Revocation(address indexed sender, uint256 indexed transactionId);
event Submission(uint256 indexed transactionId);
event Execution(uint256 indexed transactionId, bytes returnData);
event Deposit(address indexed sender, uint256 value);
event OwnerAddition(address indexed owner);
event OwnerRemoval(address indexed owner);
event RequirementChange(uint256 required);
event InternalRequirementChange(uint256 internalRequired);
/*
* Constants
*/
uint256 public constant MAX_OWNER_COUNT = 50;
/*
* Storage
*/
mapping(uint256 => Transaction) public transactions;
mapping(uint256 => mapping(address => bool)) public confirmations;
mapping(address => bool) public isOwner;
address[] public owners;
uint256 public required;
uint256 public internalRequired;
uint256 public transactionCount;
struct Transaction {
address destination;
uint256 value;
bytes data;
bool executed;
}
/*
* Modifiers
*/
modifier onlyWallet() {
require(msg.sender == address(this), "msg.sender was not multisig wallet");
_;
}
modifier ownerDoesNotExist(address owner) {
require(!isOwner[owner], "owner already existed");
_;
}
modifier ownerExists(address owner) {
require(isOwner[owner], "owner does not exist");
_;
}
modifier transactionExists(uint256 transactionId) {
require(transactions[transactionId].destination != address(0), "transaction does not exist");
_;
}
modifier confirmed(uint256 transactionId, address owner) {
require(confirmations[transactionId][owner], "transaction was not confirmed for owner");
_;
}
modifier notConfirmed(uint256 transactionId, address owner) {
require(!confirmations[transactionId][owner], "transaction was already confirmed for owner");
_;
}
modifier notExecuted(uint256 transactionId) {
require(!transactions[transactionId].executed, "transaction was executed already");
_;
}
modifier notNull(address _address) {
require(_address != address(0), "address was null");
_;
}
modifier validRequirement(uint256 ownerCount, uint256 _required) {
require(
ownerCount <= MAX_OWNER_COUNT && _required <= ownerCount && _required != 0 && ownerCount != 0,
"invalid requirement"
);
_;
}
/// @dev Fallback function allows to deposit ether.
function() external payable {
if (msg.value > 0) emit Deposit(msg.sender, msg.value);
}
/*
* Public functions
*/
/// @dev Contract constructor sets initial owners and required number of confirmations.
/// @param _owners List of initial owners.
/// @param _required Number of required confirmations for external transactions.
/// @param _internalRequired Number of required confirmations for internal transactions.
function initialize(address[] calldata _owners, uint256 _required, uint256 _internalRequired)
external
initializer
validRequirement(_owners.length, _required)
validRequirement(_owners.length, _internalRequired)
{
for (uint256 i = 0; i < _owners.length; i = i.add(1)) {
require(
!isOwner[_owners[i]] && _owners[i] != address(0),
"owner was null or already given owner status"
);
isOwner[_owners[i]] = true;
}
owners = _owners;
required = _required;
internalRequired = _internalRequired;
}
/// @dev Allows to add a new owner. Transaction has to be sent by wallet.
/// @param owner Address of new owner.
function addOwner(address owner)
external
onlyWallet
ownerDoesNotExist(owner)
notNull(owner)
validRequirement(owners.length.add(1), internalRequired)
{
isOwner[owner] = true;
owners.push(owner);
emit OwnerAddition(owner);
}
/// @dev Allows to remove an owner. Transaction has to be sent by wallet.
/// @param owner Address of owner.
function removeOwner(address owner) external onlyWallet ownerExists(owner) {
isOwner[owner] = false;
for (uint256 i = 0; i < owners.length.sub(1); i = i.add(1))
if (owners[i] == owner) {
owners[i] = owners[owners.length.sub(1)];
break;
}
owners.length = owners.length.sub(1);
if (required > owners.length) changeRequirement(owners.length);
if (internalRequired > owners.length) changeInternalRequirement(owners.length);
emit OwnerRemoval(owner);
}
/// @dev Allows to replace an owner with a new owner. Transaction has to be sent by wallet.
/// @param owner Address of owner to be replaced.
/// @param newOwner Address of new owner.
function replaceOwner(address owner, address newOwner)
external
onlyWallet
ownerExists(owner)
notNull(newOwner)
ownerDoesNotExist(newOwner)
{
for (uint256 i = 0; i < owners.length; i = i.add(1))
if (owners[i] == owner) {
owners[i] = newOwner;
break;
}
isOwner[owner] = false;
isOwner[newOwner] = true;
emit OwnerRemoval(owner);
emit OwnerAddition(newOwner);
}
/// @dev Allows to change the number of required confirmations. Transaction has to be sent by
/// wallet.
/// @param _required Number of required confirmations.
function changeRequirement(uint256 _required)
public
onlyWallet
validRequirement(owners.length, _required)
{
required = _required;
emit RequirementChange(_required);
}
/// @dev Allows to change the number of required confirmations. Transaction has to be sent by
/// wallet.
/// @param _internalRequired Number of required confirmations for interal txs.
function changeInternalRequirement(uint256 _internalRequired)
public
onlyWallet
validRequirement(owners.length, _internalRequired)
{
internalRequired = _internalRequired;
emit InternalRequirementChange(_internalRequired);
}
/// @dev Allows an owner to submit and confirm a transaction.
/// @param destination Transaction target address.
/// @param value Transaction ether value.
/// @param data Transaction data payload.
/// @return Returns transaction ID.
function submitTransaction(address destination, uint256 value, bytes calldata data)
external
returns (uint256 transactionId)
{
transactionId = addTransaction(destination, value, data);
confirmTransaction(transactionId);
}
/// @dev Allows an owner to confirm a transaction.
/// @param transactionId Transaction ID.
function confirmTransaction(uint256 transactionId)
public
ownerExists(msg.sender)
transactionExists(transactionId)
notConfirmed(transactionId, msg.sender)
{
confirmations[transactionId][msg.sender] = true;
emit Confirmation(msg.sender, transactionId);
if (isConfirmed(transactionId)) {
executeTransaction(transactionId);
}
}
/// @dev Allows an owner to revoke a confirmation for a transaction.
/// @param transactionId Transaction ID.
function revokeConfirmation(uint256 transactionId)
external
ownerExists(msg.sender)
confirmed(transactionId, msg.sender)
notExecuted(transactionId)
{
confirmations[transactionId][msg.sender] = false;
emit Revocation(msg.sender, transactionId);
}
/// @dev Allows anyone to execute a confirmed transaction.
/// @param transactionId Transaction ID.
function executeTransaction(uint256 transactionId)
public
ownerExists(msg.sender)
confirmed(transactionId, msg.sender)
notExecuted(transactionId)
{
require(isConfirmed(transactionId), "Transaction not confirmed.");
Transaction storage txn = transactions[transactionId];
txn.executed = true;
bytes memory returnData = ExternalCall.execute(txn.destination, txn.value, txn.data);
emit Execution(transactionId, returnData);
}
/// @dev Returns the confirmation status of a transaction.
/// @param transactionId Transaction ID.
/// @return Confirmation status.
function isConfirmed(uint256 transactionId) public view returns (bool) {
uint256 count = 0;
for (uint256 i = 0; i < owners.length; i = i.add(1)) {
if (confirmations[transactionId][owners[i]]) count = count.add(1);
bool isInternal = transactions[transactionId].destination == address(this);
if ((isInternal && count == internalRequired) || (!isInternal && count == required))
return true;
}
return false;
}
/*
* Internal functions
*/
/// @dev Adds a new transaction to the transaction mapping, if transaction does not exist yet.
/// @param destination Transaction target address.
/// @param value Transaction ether value.
/// @param data Transaction data payload.
/// @return Returns transaction ID.
function addTransaction(address destination, uint256 value, bytes memory data)
internal
notNull(destination)
returns (uint256 transactionId)
{
transactionId = transactionCount;
transactions[transactionId] = Transaction({
destination: destination,
value: value,
data: data,
executed: false
});
transactionCount = transactionCount.add(1);
emit Submission(transactionId);
}
/*
* Web3 call functions
*/
/// @dev Returns number of confirmations of a transaction.
/// @param transactionId Transaction ID.
/// @return Number of confirmations.
function getConfirmationCount(uint256 transactionId) external view returns (uint256 count) {
for (uint256 i = 0; i < owners.length; i = i.add(1))
if (confirmations[transactionId][owners[i]]) count = count.add(1);
}
/// @dev Returns total number of transactions after filters are applied.
/// @param pending Include pending transactions.
/// @param executed Include executed transactions.
/// @return Total number of transactions after filters are applied.
function getTransactionCount(bool pending, bool executed) external view returns (uint256 count) {
for (uint256 i = 0; i < transactionCount; i = i.add(1))
if ((pending && !transactions[i].executed) || (executed && transactions[i].executed))
count = count.add(1);
}
/// @dev Returns list of owners.
/// @return List of owner addresses.
function getOwners() external view returns (address[] memory) {
return owners;
}
/// @dev Returns array with owner addresses, which confirmed transaction.
/// @param transactionId Transaction ID.
/// @return Returns array of owner addresses.
function getConfirmations(uint256 transactionId)
external
view
returns (address[] memory _confirmations)
{
address[] memory confirmationsTemp = new address[](owners.length);
uint256 count = 0;
uint256 i;
for (i = 0; i < owners.length; i = i.add(1))
if (confirmations[transactionId][owners[i]]) {
confirmationsTemp[count] = owners[i];
count = count.add(1);
}
_confirmations = new address[](count);
for (i = 0; i < count; i = i.add(1)) _confirmations[i] = confirmationsTemp[i];
}
/// @dev Returns list of transaction IDs in defined range.
/// @param from Index start position of transaction array.
/// @param to Index end position of transaction array.
/// @param pending Include pending transactions.
/// @param executed Include executed transactions.
/// @return Returns array of transaction IDs.
function getTransactionIds(uint256 from, uint256 to, bool pending, bool executed)
external
view
returns (uint256[] memory _transactionIds)
{
uint256[] memory transactionIdsTemp = new uint256[](transactionCount);
uint256 count = 0;
uint256 i;
for (i = 0; i < transactionCount; i = i.add(1))
if ((pending && !transactions[i].executed) || (executed && transactions[i].executed)) {
transactionIdsTemp[count] = i;
count = count.add(1);
}
_transactionIds = new uint256[](to.sub(from));
for (i = from; i < to; i = i.add(1)) _transactionIds[i.sub(from)] = transactionIdsTemp[i];
}
}