- π± Building in Web3 & Blockchain space
- π Currently working on selene & athena
- π Winner of Nethermind track at EthGlobal | Finalist @BasedIndia
- $ Core Member at BlocSoc IITR
- You can see the projects i worked upon in highlighted repositories
// Languages I speak
let languages = [
"Rust π¦", "Golang πΉ", "Solidity β‘",
"Vyper π", "Huff π§", "JavaScript π",
"Python π", "C++ βοΈ", "Yul π¬"
];
// Current Learning Path
fn currently_learning() {
println!("π Golang");
println!("π¦ Rust");
println!("π Distributed Systems");
}
struct TechnicalInterests {
blockchain: Vec<String>,
infrastructure: Vec<String>,
security: Vec<String>
}
impl TechnicalInterests {
fn new() -> Self {
TechnicalInterests {
blockchain: vec![
"Account Abstraction".to_string(),
"EVM Development".to_string(),
"Light Clients".to_string(),
"RWA asets".to_string(),
"Blockchain data decoding".to_string(),
"ERC standards".to_string(),
],
infrastructure: vec![
"P2P Networks".to_string(),
"Distributed Systems".to_string(),
],
security: vec![
"Smart Contract Security".to_string(),
],
}
}
}