├── .gitignore ├── LICENSE.txt ├── README.md ├── RELEASE-NOTES.md ├── audit.pdf ├── browsertest ├── index.html └── sign.js ├── contracts ├── SimpleMultiSig.sol └── TestRegistry.sol ├── maurelian_review.md ├── migrations └── placeholder.txt ├── package.json ├── test └── simplemultisig.js └── truffle.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | *.orig -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder5876/simple-multisig/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder5876/simple-multisig/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder5876/simple-multisig/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /audit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder5876/simple-multisig/HEAD/audit.pdf -------------------------------------------------------------------------------- /browsertest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder5876/simple-multisig/HEAD/browsertest/index.html -------------------------------------------------------------------------------- /browsertest/sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder5876/simple-multisig/HEAD/browsertest/sign.js -------------------------------------------------------------------------------- /contracts/SimpleMultiSig.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder5876/simple-multisig/HEAD/contracts/SimpleMultiSig.sol -------------------------------------------------------------------------------- /contracts/TestRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder5876/simple-multisig/HEAD/contracts/TestRegistry.sol -------------------------------------------------------------------------------- /maurelian_review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder5876/simple-multisig/HEAD/maurelian_review.md -------------------------------------------------------------------------------- /migrations/placeholder.txt: -------------------------------------------------------------------------------- 1 | So git adds folder, so truffle runs tests :~) 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder5876/simple-multisig/HEAD/package.json -------------------------------------------------------------------------------- /test/simplemultisig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder5876/simple-multisig/HEAD/test/simplemultisig.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder5876/simple-multisig/HEAD/truffle.js --------------------------------------------------------------------------------