Smart Contract: Creator and Applicant Profiles
Learn to extend our smart contract to allow users to create profiles and apply for jobs.
We'll cover the following
To begin this project, we’ll add a profile functionality. This will allow potential job creators and applicants to create separate profiles with specific abilities.
Project structure
We’ll make this project as modular as possible, separating aspects into different files. We’ll clear any existing code from our Remix widget and delete all files in the contracts
folder because we’ll be creating new ones.
The first new file is the core contract code, and we’ll call it SolJobs.sol
. We’ll also create sibling files in the same directory called enums.sol
, constants.sol
, and structs.sol
. These files will hold the corresponding data types, and we’ll import them into the core contract code.
The structure should look like this:
Get hands-on with 1400+ tech skills courses.