// SPDX-License-Identifier: MIT
pragma solidity 0.8.31;
/**
* @title blablalf
* @author Alfred
* @notice Blockchain Engineer | DeFi Builder
* @dev Currently building the future of tokenized funds
*/
contract Alfred {
// ═════════════════════ State Variables ═════════════════════
string public constant LOCATION = "Switzerland";
// ═══════════════════════ Constructor ═══════════════════════
constructor() {
primaryRole = Role({
position: "Backend Engineer",
company: "RA2Tech",
focus: "Building DeFi Protocols"
});
founderRole = Role({
position: "CTO & Co-Founder",
company: "T3tris",
focus: "EVM Tokenized Funds Protocol"
});
passions = [
Passion.DeFi,
Passion.SmartContracts,
Passion.YieldFarming
];
}
// ═══════════════════ The Boring Stuff™ ═══════════════════
struct Role {
string position;
string company;
string focus;
}
enum Passion {
DeFi,
SmartContracts,
YieldFarming
}
Role public primaryRole;
Role public founderRole;
Passion[3] public passions;
}| Role | Company | Focus |
|---|---|---|
| Backend Engineer | RA2Tech 🇨🇭 | Building DeFi Protocols |
| CTO & Co-Founder | T3tris 🇫🇷 | EVM Tokenized Funds |




