
Permanent File Storage for Web3 Apps With Arweave, Bundlr, Next.js, RainbowKit, and Wagmi
How to create an excellent way to store your dataPhoto by Steve Johnson on Unsplash In this article, I will be showing you how to create a Dapp that allows us to store data on the Arweave network, using bundlr on testnet. Before going forward, let’s see what are we going to build today. https://www.loom.com/share/808aff5aa5d84ead93c106cfb96ff05fHere is the deployed link if you want to try it out: https://bundlr-arweave.netlify.app/Tech Stack and Libraries I’ve Used:NextjsChakra UIRainbowKitWa...

Permanent File Storage for Web3 Apps With Arweave, Bundlr, Next.js, RainbowKit, and Wagmi
How to create an excellent way to store your dataPhoto by Steve Johnson on Unsplash In this article, I will be showing you how to create a Dapp that allows us to store data on the Arweave network, using bundlr on testnet. Before going forward, let’s see what are we going to build today. https://www.loom.com/share/808aff5aa5d84ead93c106cfb96ff05fHere is the deployed link if you want to try it out: https://bundlr-arweave.netlify.app/Tech Stack and Libraries I’ve Used:NextjsChakra UIRainbowKitWa...

How to find length of string in Solidity, from the smart contract of ens
Why bytes(str).length; is not enough for getting length of string in Solidity, and let’s understand the strlen method from contracts of ensIn the world of Javascript finding the length of string is such an easy thing just do str.length and that’s all 🤌 But strings are not so friendly to work within Solidity, ❗ In solidity, the string is a group of characters stored inside an array and stores the data in bytes. There is no length method in string type. I was going through Buildspace’s build-p...

How to find length of string in Solidity, from the smart contract of ens
Why bytes(str).length; is not enough for getting length of string in Solidity, and let’s understand the strlen method from contracts of ensIn the world of Javascript finding the length of string is such an easy thing just do str.length and that’s all 🤌 But strings are not so friendly to work within Solidity, ❗ In solidity, the string is a group of characters stored inside an array and stores the data in bytes. There is no length method in string type. I was going through Buildspace’s build-p...