├── .gitignore ├── .solcover.js ├── .travis.yml ├── README.md ├── bin └── contracts │ ├── SmartMatrixForsage-solc-output.json │ ├── SmartMatrixForsage.abi │ ├── SmartMatrixForsage.bin │ └── SmartMatrixForsage.json ├── contracts ├── Migrations.sol └── SmartMatrixForsage.sol ├── coverage.json ├── docs ├── COVERAGE.md ├── GAS-REPORTER.md ├── MEDIUM.md ├── SIGHASH.md ├── SLITHER.md └── images │ ├── coverage.png │ └── gasReporter.png ├── migrations ├── 1_initial_migration.js └── 2_deploy_contract.js ├── package.json ├── test ├── 01_SmartMatrixForsage_RegisterOptions.test.js ├── 02_SmartMatrixForsage_UsersOverflow.test.js ├── 03_SmartMatrixForsage_BuyNewLevels.test.js ├── 04_SmartMatrixForsage_UsersOverflowFirstReferrerLevelOne.test.js ├── 05_SmartMatrixForsage_UsersOverflowSecondReferrerLevelFour.test.js ├── 06_SmartMatrixForsage_CheckUsersBalance.test.js └── README.md └── truffle-config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/.gitignore -------------------------------------------------------------------------------- /.solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/.solcover.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/README.md -------------------------------------------------------------------------------- /bin/contracts/SmartMatrixForsage-solc-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/bin/contracts/SmartMatrixForsage-solc-output.json -------------------------------------------------------------------------------- /bin/contracts/SmartMatrixForsage.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/bin/contracts/SmartMatrixForsage.abi -------------------------------------------------------------------------------- /bin/contracts/SmartMatrixForsage.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/bin/contracts/SmartMatrixForsage.bin -------------------------------------------------------------------------------- /bin/contracts/SmartMatrixForsage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/bin/contracts/SmartMatrixForsage.json -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/SmartMatrixForsage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/contracts/SmartMatrixForsage.sol -------------------------------------------------------------------------------- /coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/coverage.json -------------------------------------------------------------------------------- /docs/COVERAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/docs/COVERAGE.md -------------------------------------------------------------------------------- /docs/GAS-REPORTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/docs/GAS-REPORTER.md -------------------------------------------------------------------------------- /docs/MEDIUM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/docs/MEDIUM.md -------------------------------------------------------------------------------- /docs/SIGHASH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/docs/SIGHASH.md -------------------------------------------------------------------------------- /docs/SLITHER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/docs/SLITHER.md -------------------------------------------------------------------------------- /docs/images/coverage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/docs/images/coverage.png -------------------------------------------------------------------------------- /docs/images/gasReporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/docs/images/gasReporter.png -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/migrations/2_deploy_contract.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/package.json -------------------------------------------------------------------------------- /test/01_SmartMatrixForsage_RegisterOptions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/test/01_SmartMatrixForsage_RegisterOptions.test.js -------------------------------------------------------------------------------- /test/02_SmartMatrixForsage_UsersOverflow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/test/02_SmartMatrixForsage_UsersOverflow.test.js -------------------------------------------------------------------------------- /test/03_SmartMatrixForsage_BuyNewLevels.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/test/03_SmartMatrixForsage_BuyNewLevels.test.js -------------------------------------------------------------------------------- /test/04_SmartMatrixForsage_UsersOverflowFirstReferrerLevelOne.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/test/04_SmartMatrixForsage_UsersOverflowFirstReferrerLevelOne.test.js -------------------------------------------------------------------------------- /test/05_SmartMatrixForsage_UsersOverflowSecondReferrerLevelFour.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/test/05_SmartMatrixForsage_UsersOverflowSecondReferrerLevelFour.test.js -------------------------------------------------------------------------------- /test/06_SmartMatrixForsage_CheckUsersBalance.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/test/06_SmartMatrixForsage_CheckUsersBalance.test.js -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandil-dev/forsage-audit/HEAD/truffle-config.js --------------------------------------------------------------------------------