Alexander Codesalexandercodes.hashnode.dev·Apr 18, 2024Tokenised Subscriptions on AlgorandIntroduction In this blog post, we'll explore a novel way to implement periodic payments on Algorand. The general idea is to write a smart contract that issues redeemable subscription tokens. Each subscription is represented by a unique asset, and ea...13 likes·356 readsalgorand
Alexander Codesalexandercodes.hashnode.dev·Apr 5, 2024FeaturedLinear Vesting in Algorand PythonIntroduction A vesting schedule is a mechanism that gradually releases tokens or assets over a specified period of time. In a linear vesting schedule, the release of tokens is linearly distributed over time, meaning that an equal amount of tokens is ...17 likes·928 readsalgorand
Alexander Codesalexandercodes.hashnode.dev·Apr 2, 2024Inner Transactions in Algorand PythonLet's explore how we can use inner transactions in Algorand Python smart contracts. To follow along with the tutorial, start by importing the itxn submodule from algopy: from algopy import itxn You should then be able to see the different types of i...2 likes·379 readsalgorand
Alexander Codesalexandercodes.hashnode.dev·Mar 28, 2024Five Iterations in Algorand PythonAlgorand Python v1 was released today! 🥳 There are quite a few changes and improvements from the developer preview, so things might look a little different to my previous posts. If you are new to Python on Algorand, I would recommend watching Alessa...2 likes·233 readsalgopy