📄️ Ownable
In this tutorial, we will write a simple module that allows us to set its owner. Later, it can be reused to limit access to the contract's critical features.
📄️ ERC-20
It's time for something that every smart contract developer has done at least once. Let's try to implement Erc20 standard. Of course, we are going to use the Odra Framework.
📄️ OwnedToken
This tutorial shows the great power of the modularization-focused design of the Odra Framework. We are going to use the modules we built in the last two tutorials to build a new one.
📄️ Access Control
In a previous tutorial, we introduced the Ownable module, which serves the purpose of securing access to specific contract features. While it establishes a fundamental security layer, there are numerous scenarios where this level of security is insufficient,
📄️ Pausable
The Pausable module is like your smart contract's safety switch. It lets authorized users temporarily pause certain features if needed. It's a great way to boost security, but it's not meant to be used on its own. Think of it as an extra tool in your access control toolbox, giving you more control to manage your smart contract safely and efficiently.
📄️ Ticketing System
Non-fungible tokens (NFTs) are digital assets that represent ownership of unique items or pieces of content. They are commonly used for digital art, collectibles, in-game items, and other unique assets. In this tutorial, we will create a simple ticketing system based on NFT tokens.
📄️ Build, Deploy and Read the State of a Contract
In this guide, we will show the full path from creating a contract, deploying it and reading the state.
📄️ Using Proxy Caller
In this tutorial, we will learn how to use the proxycaller wasm to call an Odra payable function. The proxycaller is a session code that top-ups the cargo_purse passes it as an argument and then calls the contract. This is useful when you want to call a payable function attaching some CSPRs to the call.
📄️ CEP-18
Not so different from ERC-20, the CEP-18 standard describes a fungible
📄️ Odra for Solidity developers
Odra for Solidity developers
📄️ Deploying a Token on Casper Livenet
In this tutorial, we will take the token we created in