📄Experience Smart Contract
Estructura
struct Experience {
uint256 experienceId;
address user;
uint8 experienceType;
string role;
string description;
string company;
address companyAddress;
uint256 startDate;
uint256 endDate;
bool companyValidation;
Skill[] skills;
string moreInfoLinks;
}
struct Skill {
string skill;
uint8 level;
}Semántica de los campos
Funciones
Reglas de validación
Last updated