PKPranav Katkarinpranavk11.hashnode.dev路May 10, 2025 路 6 min readUnleashing the Power of Multi-Chain AVS: Real-World Use Cases for Distributed SystemsThe blockchain ecosystem has rapidly evolved, especially with the rise of Layer 2 (L2) solutions addressing Ethereum's scalability challenges. While these L2 networks have expanded decentralized applications' horizons, they also introduce new challen...00
PKPranav Katkarinpranavk11.hashnode.dev路Dec 10, 2023 路 2 min readDifference between map, filter and reduceMap This is a function which we use when we want to transform the array. const arr = [5, 1, 3, 2, 6]; //UseCase 1.Double - [10,2,6,4,12] 2.Triple - [15,3,9,6,18] 3.Binary - ["101", "1", "11", "10", "110"] const arr = [5, 1, 3, 2, 6]; const output =...00
PKPranav Katkarinpranavk11.hashnode.dev路Sep 20, 2023 路 3 min readMongoDBMongoDB is a popular NoSQL database system that is known for its flexibility, scalability, and ease of use. It is classified as a document database, which means it stores data in a semi-structured format called BSON (Binary JSON) in the form of docum...00
PKPranav Katkarinpranavk11.hashnode.dev路Sep 17, 2023 路 4 min readBackendThe backend mainly consists of:- HTTP Servers Authentication Database Middlewares 1. HTTP Servers While talking about HTTP servers we need to know the following topics Request Methods GET:- It is a method used to get data from a server. eg:-...00
PKPranav Katkarinpranavk11.hashnode.dev路May 9, 2023 路 2 min readConst, var and let in javascriptConst As you can makeout from the word const, const is a javascript keyword which is used to initialise a variable whose value cannot be changed i.e is constant throughout the whole codebase. Var Var is a javascript keyword which is used to declare...00