├── .gitattributes ├── .gitignore ├── .npmignore ├── .soliumignore ├── .soliumrc.json ├── .travis.yml ├── LICENSE ├── README.md ├── contracts └── SHA1.sol ├── hardhat.config.js ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── test ├── mocks │ └── SHA1Test.sol └── sha1.js └── truffle.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | artifacts 4 | cache 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.soliumignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/solsha1/HEAD/.soliumrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/solsha1/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/solsha1/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/solsha1/HEAD/README.md -------------------------------------------------------------------------------- /contracts/SHA1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/solsha1/HEAD/contracts/SHA1.sol -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/solsha1/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/solsha1/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/solsha1/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/solsha1/HEAD/package.json -------------------------------------------------------------------------------- /test/mocks/SHA1Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/solsha1/HEAD/test/mocks/SHA1Test.sol -------------------------------------------------------------------------------- /test/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/solsha1/HEAD/test/sha1.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/solsha1/HEAD/truffle.js --------------------------------------------------------------------------------