Skip to content

Instantly share code, notes, and snippets.

View MBeshkov's full-sized avatar
🦊
On the lookout for entry-level open source projects to contribute to

Mihail Beshkov MBeshkov

🦊
On the lookout for entry-level open source projects to contribute to
View GitHub Profile
@MBeshkov
MBeshkov / contracts...JobActivity.sol
Created April 25, 2024 23:57
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.25+commit.b61c2a91.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11; // helps the compiler decide what is required
contract JobActivity {
struct QuestionnaireLink { // represents an access link to an online assessment
string secret;
string encryptedKey;
string nonce;
string tag;
}