FUTURESTACK
118 subscribers
40 photos
1 video
2 files
10 links
⚡️ Stack Skills. Ship Future.
Get your daily dev, AI & blockchain payload.

Freelance fuel. 🔥
Download Telegram
Hey FutureStack fam! 🌟

Big personal update: I'm officially diving into Solidity & Smart Contract development! 🎯

Why? Because the future is on-chain, and I want to build right there with you all. From writing my first "Hello World" contract to (hopefully) deploying real DApps, I'll share the wins, the fails, and everything in between.

Expect:
Beginner-friendly snippets
🚧 Mistakes & how I fix them
📚 Resources that actually help
🎉 Milestone celebrations with you

First mission: Build a simple token. Wish me luck! 😅

Comment below:

🚀 if you're learning Solidity too

💡 with your #1 tip for beginners

🔥 to cheer me on!

Let's build the future, one contract at a time! ⛓️

#Blockchain #Solidity #Web3 #LearningJourney
🔥1
My First Smart Contract! 🚀

I just deployed a SimpleStorage contract on Ethereum Sepolia testnet!

here is the code

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.18;

contract simplestorage {
uint256 myfavioritenumber;

struct Person {
uint256 favioritenumber;
string name;
}

Person[] public listofpeople;

mapping(string => uint256) public namepointnumber;

function store(uint256 _favioritenumber) public {
myfavioritenumber = _favioritenumber;
}

function retrieve () public view returns(uint256) {
return myfavioritenumber;
}

function addperson(string memory _name, uint _favioritenumber) public {
listofpeople.push(Person(_favioritenumber, _name));
namepointnumber[_name] = _favioritenumber;
}


}


What it does:
Store a favorite number
Retrieve the stored number
Add people with their favorite numbers
Look up people's favorite numbers by name

Functions:
1. store(number) - Save a number
2. retrieve()- Get the stored number
3. addperson(name, number) - Add a person
4. namepointnumber(name) - Look up by name

Tech Stack:
- Solidity ^0.8.18
- Deployed on Sepolia Testnet
- Using Remix IDE

Try it yourself! #Solidity #Blockchain #Web3
👍1🔥1👏1