// SPDX-License-Identifier: MIT
pragma solidity 0.8.31;
/**
* @title blablalf
* @author Alfred
* @notice Blockchain Engineer | DeFi Builder
*/
contract Alfred {
// βββββββββββββββββββββ State Variables βββββββββββββββββββββ
string public constant LOCATION = "Switzerland";
// βββββββββββββββββββββββ Constructor βββββββββββββββββββββββ
constructor() {
primaryRole = Role({
focus: "Building DeFi Protocols"
});
passions = [
Passion.DeFi,
Passion.SmartContracts,
Passion.YieldFarming
];
}
// βββββββββββββββββββ The Boring Stuffβ’ βββββββββββββββββββ
struct Role {
string focus;
}
enum Passion {
DeFi,
SmartContracts,
YieldFarming
}
Role public primaryRole;
Passion[3] public passions;
}
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.




