header image
avatar

N00b21337

N00b21337

R4Nd0m k0lLEC7I0N 0F U5EFul PHindiN92 0N mY j0URney PhR0m n00b 2 1337. rAmBL1N92 aBoUt 5Ol1d17y, rE4C7, nf7, dEfi, WE83
Subscribe to N00b21337
Receive the latest updates directly to your inbox.
Card Header

IPFS and Filecoin - how are they integrated

Publisher
N00b21337
June 22
I was doing a deep dive to understand what is happening with IPFS and Filecoin and how Filecoin uses IPFS in reality.

Gas cost of getting the whole struct vs getting struct single values

Publisher
N00b21337
May 21
I wanted to know if it is worth it to make a lookup for the whole struct and parse info from it or to always get single values with getters from it to optimize. So the value of gas needed for most single lookup is around 2900 gas or less. But the value for the whole struct lookup is 9861 gas, which means that if the lookup is using less than 3 values it’s more worth it to do a single lookup for each value in a struct. This changes as the stuct is larger, if there are more values in it then it’s less worth it to do a lookup of the whole struct and more sense to do lookup for just one value whish is kind of obvious.
Card Header

Uniswap V3 initializing pools, adding liquidity and tools for calculations - Swiss knife post

Publisher
N00b21337
April 12
Warning, this post is only useful if you tried out adding liquidity both with UI and with code, read about V3 most of the info, and want to have more clearer idea of what is what.

Hardhat TS/JS - network does not support ENS

Publisher
N00b21337
March 25
I was getting this error on a custom cluster with the geth node
Card Header

Wallet signing, eth_sign, and security

Publisher
N00b21337
March 11
I am sure many of you had a similar experience when you were about to sign something online and you were not sure what you were signing and how secure it is. Many websites today ask you to sign a message when just logging in to dapp. Sometimes it shows you some message you are about to sign in clear format but sometimes it’s just some random hex values and you are not sure what you are signing. So I wondered how secure or insecure that is and what are we doing by signing some messages.

ERC20 - Difference between transfer and transferFrom

Publisher
N00b21337
March 11
This is more a note to myself as to when is transfer used and when is transferFrom and that with transferFrom you need to have approval of token transfers and for just pure transfer its not needed.
Card Header

Curl-ing the blockchain with JSONRPC and creating transactions

Publisher
N00b21337
February 07
Here are some quick snippets that help when you want to get info from Blockchain.
Card Header

How to get Uniswap V3 liquidity pool address for whitelisting?

Publisher
N00b21337
February 07
Similar to what we did for Uniswap V2 on how to find address of smart contract pool that will be generated we can do the same for V3
Card Header

Thoughts on Inscriptions and their sustainability

Publisher
N00b21337
December 19
As this topic is very familiar with what I do and I saw a lot of misinformation I have an urge to explain this a bit.