├── .gitattributes ├── .gitignore ├── README.md ├── contracts ├── Course.sol ├── Migrations.sol ├── Student.sol └── StudentCourse.sol ├── package.json ├── test ├── TestCourse.js ├── TestStudent.js └── TestStudentCourse.js └── truffle.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayonprotocol-research/solidity-many-to-many-relationship/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayonprotocol-research/solidity-many-to-many-relationship/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayonprotocol-research/solidity-many-to-many-relationship/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Course.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayonprotocol-research/solidity-many-to-many-relationship/HEAD/contracts/Course.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayonprotocol-research/solidity-many-to-many-relationship/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Student.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayonprotocol-research/solidity-many-to-many-relationship/HEAD/contracts/Student.sol -------------------------------------------------------------------------------- /contracts/StudentCourse.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayonprotocol-research/solidity-many-to-many-relationship/HEAD/contracts/StudentCourse.sol -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayonprotocol-research/solidity-many-to-many-relationship/HEAD/package.json -------------------------------------------------------------------------------- /test/TestCourse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayonprotocol-research/solidity-many-to-many-relationship/HEAD/test/TestCourse.js -------------------------------------------------------------------------------- /test/TestStudent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayonprotocol-research/solidity-many-to-many-relationship/HEAD/test/TestStudent.js -------------------------------------------------------------------------------- /test/TestStudentCourse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayonprotocol-research/solidity-many-to-many-relationship/HEAD/test/TestStudentCourse.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayonprotocol-research/solidity-many-to-many-relationship/HEAD/truffle.js --------------------------------------------------------------------------------