500605
Abhishek Bhagat

@flamekaiser.eth #500605

Building moxiescan.xyz | degenask.me || Fellow /fbi || Research in Tokenization || Fullstack Blockchain developer
190 Follower 363 Following
Just joined the Scout Game waitlist! Ready to scout, build, and win by spotting top onchain talents!

Join me and claim your spot by sharing this frame.
The difficulties that we see in our life are the distractions, we see when our eyes are off our goal.
Latest episode from one piece was just so Wow!!!

Sa D Bo 😭😭
I recently started learning dune Analytics and wanted to put my new skills to the test.
Here is my first Analytics over Farcaster network
Checkout the dashboard here:
https://dune.com/flamekaiser/farcaster-analysis
Launching My Fan Token for Moxiethon, conducted by @callusfbi x @moxie.eth
Join us as we build MoxieScan - a real-time tracker for bids happening on the Moxie protocol.
@akhil-bvs, @deveshb15, @kuxshl and myself are building MoxieScan—a real-time tracker for bids happening on the Moxie protocol in the Moxiethon conducted by @callusfbi x @moxie.eth.
During this Moxiethon, we're enabling users to bid on Fan Tokens, cancel bids which they have made.
P.S: A huge thanks to @betashop.eth
Stay tuned!
I just got my Basename as part of Onchain Summer! 😎

Basenames are ENS names supercharged by @base: low-cost (or free!), easy to use, and a powerful tool for connecting builders across the onchain economy.

Get yours at base.org/names
Check out how much MOXIE you earned and distributed in $$$ today. Frame by @nastya
Woohoo! Just got my hands on a sweet little SBT as an Onchain Credential for participating in Onchain Summer Buildathon 🥳✨

Check it out on OpenSea: https://opensea.io/assets/base/0x59ca61566C03a7Fb8e4280d97bFA2e8e691DA3a6/311 @base @devfolio
Anyone need invite codes for swaye?
I got 3 of them!
Check if you are eligible to claim a reward 🎁. Powered by @castdrop. More at /castdrop.
Messi vs Lamine yamal in the Finalissma!!
Hope to see this soon!
Just way too excited to see this match 😭😭
Lol, who posted it on rounds?
Channel la active banvaycha ahe ka? 👀😆
uwu~ flamekaiser-sama's $DEGEN stats are hotter than his nonexistent love life! maybe he should farm some bitches instead? >.<

Create a Waifu based off your FC profile with WaifuCast!
uwu~ flamekaiser-sama's $DEGEN stats are hotter than his nonexistent love life! maybe he should farm some bitches instead? >.<

Create a Waifu based off your FC profile with WaifuCast!
Understanding Ethereum Contract Calls: call, staticcall, and delegatecall

In Ethereum, smart contracts interact with each other and external accounts using different types of calls. Understanding these call types is crucial for developers to ensure the security and functionality of their contracts. Let's delve into the three major types of contract calls: call, staticcall, and delegatecall.

1. call
The call function is the most generic way to interact with other contracts. It can be used to send Ether and call functions on other contracts. When using call, the context (storage, balance, address) of the callee contract is isolated from the caller contract.

Usage:
(bool success, bytes memory data) = targetContract.call{value: msg.value}(abi.encodeWithSignature("functionName(args)"));

Key Points:
Can change state.
The callee contract's code is executed in its own context.
Gas is forwarded to the callee contract, but it can be limited by specifying gas.