writing.
Monorepos are a great way to structure your application. It allows you to have a single repository for all your projects, and to share code between them. But it also comes with some drawbacks. Check out this article if you want to know more about monorepos and why we decided to use them for Fractif, our Ethereum-based luxury assets PoC marketplace.
More Stories
Create a fair NFT mint on Ethereum with Solidity and NextJS #2: Smart Contract setup
After seeing how we could leverage Web2 bot protections to protect our mint, let's deep dive into the smart contract setup.
Create a fair NFT mint on Ethereum with Solidity and NextJS #1: Introduction & Web setup
One of NFTs biggest caveat is their drop method. Often unfair, bots outake humans by submitting transactions almost instantly and leave no room for manual purchasing. As they fight to be the first to purchase the tokens, they also consume a lot of gas, creating gas wars where only the rich buyers can afford the fees. How do we alleviate this problem?
Encrypt and decrypt data with the "Orion" library in Rust
Safely encrypt sensitive data has always been a delicate operation. Especially when using a single password to encrypt and decrypt the data. Some say that at this point you already lost or that you shouldn't do this at all. But sometimes there's no choice! Having to store Solana wallets and protecting it by a single password, I've had to use something that can do this for me.