"Down the rabbit hole, into the blockchain wonderland we go."
@0x7EAB07 β Breaking the web (in a good way) | Blockchain Architect | Writing code that runs faster than time
I craft decentralized dreams across multiple ecosystems:
- Solana ecosystem with Anchor framework and native Rust development
- SUI network leveraging the MOVE language for secure assets
- Ethereum smart contracts with Solidity and EVM optimization
- Frontend Mastery with React and React Native for seamless cross-platform experiences
Each blockchain is a different rabbit hole, yet they all lead to innovation.
#[program]
pub mod wonderland {
use super::*;
pub fn enter_realm(ctx: Context<Enter>, message: String) -> Result<()> {
msg!("Welcome to Wonderland: {}", message);
Ok(())
}
}
module welcome::welcome;
public struct WelcomeObject has key, store {
id: UID,
message: String,
}
public entry fun create_welcome(ctx: &mut TxContext) {
let welcome_obj = WelcomeObject {
id: object::new(ctx),
message: std::string::utf8(b"Welcome to Wonderland!"),
};
transfer::public_transfer(welcome_obj, tx_context::sender(ctx));
}