I
Backend Blockchain Developer
Inclusive Finance LLC,
@aditya26sg
Aditya Singh
@aditya26sg
Blockchain developer
Blockchain developer
Mumbai, India
10
projects
10
5
prizes
5
21
hackathons
21
0
Hackathons org.
0
3,040
contributions in the last year
Feb
S
M
T
W
T
F
S
Jan
53
stars earned
80
repositories
57
followers
Real-time System monitoring and Web3 ops Rust cli tool
Rust
20Stars
2Forks
Liquidity Pool AAVEv3 Simulation of major price change on protocol users
TypeScript
0Stars
0Forks
A Desktop app for writing. Currently under development
TypeScript
13Stars
0Forks
SDK for sending ETH or ERC20 tokens to multiple recipients in 1 transaction
TypeScript
3Stars
1Forks
I
I
A
M
S
I
Inclusive Finance LLC,
A
AARC,
M
MetaWork Labs,
S
Setlor LLC,
I
Indian Nuclear Society,
B
Give answers to peer doubts and let others decide if you are worthy of the rewards from the doubt poster!
L
medium.com
I was working on a script that is supposed to be executed on Ethereum mainnet and do some operations like Deposit some tokens in a Defi vault and then withdraw them too, get some on-chain data and show it works successfully. Now I wanted it to work for other people too who just take a pull from my repo and try to run this script. So naturally I used Docker to make it easier for anyone to do this. Now doing some write operations on Ethereum mainnet costs real money, which I only have some. So you can crea...
medium.com
Precompile is like a cheese, optimized, does 1 thing and ready to use Precompiles are predefined smart contracts that have a special address and provide specific functionality which is not executed at the EVM bytecode level but natively by the client. Like this guy, a precompile does only 1 thing really good They are primarily used to add specific functions that would be computationally expensive if executed in the EVM bytecode. They also serve a purpose to facilitate the interaction between a parent cha...
medium.com
You run `cargo build` on a large Rust codebase, something like compiling a blockchain node from source and saw your system freeze or face an out-of-memory error. I faced this issue when building Mina Protocol’s rust node on my 16GB machine and got me thinking what is happening in my machine during Rust compilation and can it be optimized for a successful build? Frozen machine…reaction on point This happens due to compiled languages like Rust can ask for substantial system resources during the build proce...