Skip to content

Commit

Permalink
Add Gnosis multisig wallet.
Browse files Browse the repository at this point in the history
  • Loading branch information
sorccu committed Nov 9, 2017
1 parent 86e2bd5 commit f7fcaaa
Show file tree
Hide file tree
Showing 6 changed files with 498 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
@@ -1,3 +1,6 @@
[submodule "vendor/testrpc"]
path = vendor/testrpc
url = https://github.com/ethereumjs/testrpc.git
[submodule "vendor/GnosisMultiSigWallet"]
path = vendor/GnosisMultiSigWallet
url = https://github.com/gnosis/MultiSigWallet
3 changes: 2 additions & 1 deletion .solcover.js
@@ -1,5 +1,6 @@
module.exports = {
skipFiles: [
'lib/SafeMath.sol' // Covered by Zeppelin
'lib/SafeMath.sol', // Covered by Zeppelin
'lib/Wallet.sol' // Covered by Gnosis MultiSigWallet
]
}
3 changes: 2 additions & 1 deletion .soliumignore
@@ -1 +1,2 @@
node_modules
contracts/Wallet.sol
node_modules
8 changes: 7 additions & 1 deletion Makefile
@@ -1,4 +1,6 @@
.PHONY: default build lint test coverage
.PHONY: default build lint test coverage wallet

GNOSIS := vendor/GnosisMultiSigWallet

default: build

Expand All @@ -13,3 +15,7 @@ test: lint

coverage: lint
./node_modules/.bin/solidity-coverage

wallet: $(GNOSIS)/contracts/MultiSigWallet.sol $(GNOSIS)/contracts/MultiSigWalletWithDailyLimit.sol
(cat $(GNOSIS)/contracts/MultiSigWallet.sol && \
sed '/^$$/,$$!d' $(GNOSIS)/contracts/MultiSigWalletWithDailyLimit.sol) > contracts/Wallet.sol

0 comments on commit f7fcaaa

Please sign in to comment.