Minting Fibonacci NFTs on Algorand
Let's explore how to create an Algorand smart contract that mints NFTs with Fibonacci numbers as metadata.
We'll write the smart contract code in python, using PuyaPy.
Fibonacci Sequence
The Fibonacci sequence is defined as:
F(0) = 0, F(1) = 1
F(n) =...
alexandercodes.hashnode.dev7 min read