From 11942dd53f9b1d920e555af93ae721465b6e0280 Mon Sep 17 00:00:00 2001 From: hien-py Date: Tue, 23 Jul 2024 13:23:49 +0700 Subject: [PATCH 1/2] docs: add Algo language --- src/data/roadmaps/algorand/algorand.json | 144 ++++++++++++++++++ src/data/roadmaps/algorand/algorand.md | 10 ++ .../algorand/content/algorand-consensus.md | 2 + .../content/algorand-virtual-machine.md | 18 +++ .../algorand/content/asset-lifecycle.md | 17 +++ .../algorand/content/avm-architecture.md | 14 ++ .../algorand/content/fungible-tokens.md | 9 ++ .../algorand/content/how-to-program-AVM.md | 18 +++ .../algorand/content/non-fungible-token.md | 2 + .../content/smart-contract-deployment.md | 22 +++ .../roadmaps/algorand/content/transaction.md | 5 + .../algorand/content/what-is-algorand.md | 11 ++ .../roadmaps/algorand/content/what-is-teal.md | 6 + .../algorand/content/what-the-avm-does.md | 35 +++++ .../algorand/content/who-created-algo.md | 9 ++ .../roadmaps/algorand/content/why-algorand.md | 16 ++ 16 files changed, 338 insertions(+) create mode 100644 src/data/roadmaps/algorand/algorand.json create mode 100644 src/data/roadmaps/algorand/algorand.md create mode 100644 src/data/roadmaps/algorand/content/algorand-consensus.md create mode 100644 src/data/roadmaps/algorand/content/algorand-virtual-machine.md create mode 100644 src/data/roadmaps/algorand/content/asset-lifecycle.md create mode 100644 src/data/roadmaps/algorand/content/avm-architecture.md create mode 100644 src/data/roadmaps/algorand/content/fungible-tokens.md create mode 100644 src/data/roadmaps/algorand/content/how-to-program-AVM.md create mode 100644 src/data/roadmaps/algorand/content/non-fungible-token.md create mode 100644 src/data/roadmaps/algorand/content/smart-contract-deployment.md create mode 100644 src/data/roadmaps/algorand/content/transaction.md create mode 100644 src/data/roadmaps/algorand/content/what-is-algorand.md create mode 100644 src/data/roadmaps/algorand/content/what-is-teal.md create mode 100644 src/data/roadmaps/algorand/content/what-the-avm-does.md create mode 100644 src/data/roadmaps/algorand/content/who-created-algo.md create mode 100644 src/data/roadmaps/algorand/content/why-algorand.md diff --git a/src/data/roadmaps/algorand/algorand.json b/src/data/roadmaps/algorand/algorand.json new file mode 100644 index 0000000..b7197ef --- /dev/null +++ b/src/data/roadmaps/algorand/algorand.json @@ -0,0 +1,144 @@ +[ + { + "phase_id": "1", + "phase_name": "Algorand", + "topics": [ + { + "topic_id": "what-is-algorand", + "topic_name": "What is Algorand?", + "subtopics": [ + { + "subtopic_id": "why-algorand", + "subtopic_name": "Why Algorand?" + }, + { + "subtopic_id": "who-created-algo", + "subtopic_name": "Who created ALGO?" + }, + { + "subtopic_id": "algorand-consensus", + "subtopic_name": "Algorand consesus" + }, + { + "subtopic_id": "algorand-networks", + "subtopic_name": "Algorand networks" + } + ] + }, + { + "topic_id": "algorand-virtual-machine", + "topic_name": "Algorand Virtual Machine", + "subtopics": [ + { + "subtopic_id": "what-the-avm-does", + "subtopic_name": "What the AVM does" + }, + { + "subtopic_id": "avm-architecture", + "subtopic_name": "AVM Architecture" + }, + { + "subtopic_id": "how-to-program-AVM", + "subtopic_name": "How to program AVM?" + }, + { + "subtopic_id": "what-is-teal", + "subtopic_name": "What is TEAL?" + }, + { + "subtopic_id": "teal-architecture", + "subtopic_name": "TEAL Architecture" + } + ] + } + ] + }, + { + "phase_id": "Algorand-layer-1-capabilities", + "phase_name": "Algorand layer-1 capabilities", + "topics": [ + { + "topic_id": "account", + "topic_name": "Algorands Account", + "subtopics": [ + { + "subtopic_id": "algopy-account", + "subtopic_name": "Account on the Algorand network" + } + ] + }, + { + "topic_id": "transaction", + "topic_name": "Transaction", + "subtopics": [ + { + "subtopic_id": "payment-transaction", + "subtopic_name": "Payment Transaction" + }, + { + "subtopic_id": "group-transactions", + "subtopic_name": "Group Transactions" + } + ] + }, + { + "topic_id": "Algorand-smart-contracts", + "topic_name": "Algorand Smart Contracts", + "subtopics": [ + { + "subtopic_id": "What-is-a-smart-contract", + "subtopic_name": "What's a smart contract?" + }, + { + "subtopic_id": "smart-contract-deployment", + "subtopic_name": "Smart Contract Deployment" + } + , + { + "subtopic_id": "smart-contracts-vs-smart-signatures", + "subtopic_name": "Smart Signatures & Smart Contracts" + } + ] + }, + { + "topic_id": "algorand-standard-assets", + "topic_name": "Algorand Standard Assets(ASA)", + "subtopics": [ + { + "subtopic_id": "What-is-an-ASA?", + "subtopic_name": "What is an ASA?" + }, + { + "subtopic_id": "non-fungible-token?", + "subtopic_name": "NFT - non fungible token" + }, + { + "subtopic_id": "fungible-tokens", + "subtopic_name": "FT - Fungible tokens" + }, + { + "subtopic_id": "asset-lifecycle", + "subtopic_name": "The lifecycle for assets " + } + ] + } + ] + } + , + { + "phase_id": "3", + "phase_name": "The Algorand Framework for Developers", + "topics": [ + { + "topic_id": "algokit-20", + "topic_name": "AlgoKit 2.0", + "subtopics": [ + { + "subtopic_id": "what-is-algokit", + "subtopic_name": "What is Algokit?" + } + ] + } + ] + } +] diff --git a/src/data/roadmaps/algorand/algorand.md b/src/data/roadmaps/algorand/algorand.md new file mode 100644 index 0000000..8ea01f1 --- /dev/null +++ b/src/data/roadmaps/algorand/algorand.md @@ -0,0 +1,10 @@ +--- +title: "Algorand SDK Roadmap" +briefTitle: "Algorand" +description: "Algorand blockchain uses a decentralized Byzantine agreement protocol that uses pure proof of stake (PPOS) with high throughput, fast time to finality, and high security" +tags: ["protocol"] +order: 2 +isHidden: false +github: "https://github.com/algorand" +documentationLink: "https://algorand-doc.openedu101.com/" +--- \ No newline at end of file diff --git a/src/data/roadmaps/algorand/content/algorand-consensus.md b/src/data/roadmaps/algorand/content/algorand-consensus.md new file mode 100644 index 0000000..b9f5c03 --- /dev/null +++ b/src/data/roadmaps/algorand/content/algorand-consensus.md @@ -0,0 +1,2 @@ + +Algorand uses a Proof-of-Stake (PoS) consensus mechanism, and distributes validator rewards to all holders of its native ALGO cryptocurrency \ No newline at end of file diff --git a/src/data/roadmaps/algorand/content/algorand-virtual-machine.md b/src/data/roadmaps/algorand/content/algorand-virtual-machine.md new file mode 100644 index 0000000..4bd718f --- /dev/null +++ b/src/data/roadmaps/algorand/content/algorand-virtual-machine.md @@ -0,0 +1,18 @@ + +# What is AVM ? + +![Image](https://miro.medium.com/v2/resize:fit:1400/format:webp/1*anoOGTeH-6-mCgqhn0VugA.jpeg) + +The Algorand Virtual Machine (AVM) runs on every node and is essential for executing smart contracts on the Algorand blockchain network. + +In the image above, the AVM as a Blackbox acts as the middleman between smart contracts and the Blockchain. + + + + + +# Resources: +- [@official@AVM documentation](https://developer.algorand.org/docs/get-details/dapps/avm) + +- [@article@Understanding the Algorand Virtual Machine](https://medium.com/@fa_async/understanding-the-algorand-virtual-machine-a-comprehensive-guide-with-diagrams-d533228dd593) + diff --git a/src/data/roadmaps/algorand/content/asset-lifecycle.md b/src/data/roadmaps/algorand/content/asset-lifecycle.md new file mode 100644 index 0000000..67fe826 --- /dev/null +++ b/src/data/roadmaps/algorand/content/asset-lifecycle.md @@ -0,0 +1,17 @@ + + +# Asset lifecycle +The lifecycle for assets on Algorand consists of the following steps: + +1. **Creation**: Any account on Algorand can create an asset. +2. **Configure Roles**: Set roles for managers, reserve, clawback, and freeze. +3. **Transfer**: Assets can be moved from one account to another. The receiver must opt in first to avoid spam. +4. **Freeze**: Assets can be frozen to stop transactions. This prevents assets from being transferred or used temporarily. +5. **Clawback**: An issuer can take back tokens from a specific address. +6. **Destroy**: Assets can be destroyed. This must be done by the asset manager + +Each of these steps ensures that assets on the Algorand network are managed securely and efficiently, providing a robust framework for asset lifecycle management. + + +# Resources: +- [@type@asset management](https://developer.algorand.org/search/?search_query=asset%20management&category=all-categories) \ No newline at end of file diff --git a/src/data/roadmaps/algorand/content/avm-architecture.md b/src/data/roadmaps/algorand/content/avm-architecture.md new file mode 100644 index 0000000..7aa40dc --- /dev/null +++ b/src/data/roadmaps/algorand/content/avm-architecture.md @@ -0,0 +1,14 @@ +# AVM architecture + +Smart contracts are written in a higher level language and compiled to bytecode for execution by the Layer-1 Algorand Virtual Machine (AVM) + + +![image](https://images.prismic.io/algorandcom/51beb06e-d212-426a-b379-29e6c080b50e_Screen+Shot+2021-05-18+at+9.42.03+AM.png?auto=compress%2Cformat) + + + + +# Resources: +- [@article@AVM documentation](https://algorandtechnologies.com/news/algorand-new-approach-to-smart-contract-dev) + +- [@video@AVM architecture](https://youtu.be/fTAPLiPcj28?t=691) \ No newline at end of file diff --git a/src/data/roadmaps/algorand/content/fungible-tokens.md b/src/data/roadmaps/algorand/content/fungible-tokens.md new file mode 100644 index 0000000..3b75287 --- /dev/null +++ b/src/data/roadmaps/algorand/content/fungible-tokens.md @@ -0,0 +1,9 @@ +# What are fungible tokens?¶ + +Fungible tokens, or FTs for short, are a type of asset split into multiple units that are fundamentally the same and interchangeable one-to-one with each other. + + +# Resources: +[@official@Create a fungible token](https://developer.algorand.org/docs/get-started/tokenization/ft/) + + diff --git a/src/data/roadmaps/algorand/content/how-to-program-AVM.md b/src/data/roadmaps/algorand/content/how-to-program-AVM.md new file mode 100644 index 0000000..07cbd58 --- /dev/null +++ b/src/data/roadmaps/algorand/content/how-to-program-AVM.md @@ -0,0 +1,18 @@ +# How to program AVM + + +The AVM runs programs written in bytecode. + +These programs, called TEAL programs, have sets of operation codes (opcodes) that define how smart contracts and smart signatures work. + +![image](https://miro.medium.com/v2/resize:fit:4800/format:webp/1*O0y4ZFISn7ETsVOVoQxKFw.jpeg) + +You need to know programming languages to write smart contracts: + +* Python - Algorand provides language bindings for Python to the AVM. Developers write their code in Python and access AVM opcodes via a supplied library without having to write directly in Teal. + + + +* [Reach](https://docs.reach.sh/#reach-top) simplifies the creation of smart contracts and dApps by using a simplified version of JavaScript. It integrates smart contracts, front-end clients, back-end servers, and their communication into one language. The compiler ensures error-free, secure, and correctly connected components, and includes a tool for automatic application verification. + +* [clarity](https://clarity-lang.org/) The Clarity language, supported by Algorand, the Stacks ecosystem, and Hiro PBC, is being integrated into a compiler for layer-1 smart contracts. Clarity emphasizes predictability and security, allowing comprehensive analysis of smart contracts and eliminating common bugs through type checking. \ No newline at end of file diff --git a/src/data/roadmaps/algorand/content/non-fungible-token.md b/src/data/roadmaps/algorand/content/non-fungible-token.md new file mode 100644 index 0000000..280a9d3 --- /dev/null +++ b/src/data/roadmaps/algorand/content/non-fungible-token.md @@ -0,0 +1,2 @@ +NFTs are unique digital assets that represent ownership or proof of authenticity of a specific item or piece of content, such as art, music, or virtual real estate, on the blockchain. + diff --git a/src/data/roadmaps/algorand/content/smart-contract-deployment.md b/src/data/roadmaps/algorand/content/smart-contract-deployment.md new file mode 100644 index 0000000..9371c1a --- /dev/null +++ b/src/data/roadmaps/algorand/content/smart-contract-deployment.md @@ -0,0 +1,22 @@ +# Smart Contract Deployment +Algokit provide end-to-end the development experience that support for smart contract development lifecycle: + + +- Development + - You **Write** smart contracts + - You **Transpile** to TEAL Templates +- Deployment +1. **Substitute** deploy-time parameters into TEAL Templates to create final TEAL code +2. **Compile** the TEAL to create byte code using algod +3. **Deploy** the byte code to one or more Algorand networks (e.g. LocalNet, TestNet, MainNet) to create Application(s). + + +```python +print("hi") + + +``` + + +# Resources +- [@article@Smart contrqact deployment](https://github.com/algorandfoundation/algokit-cli/blob/main/docs/architecture-decisions/2023-01-12_smart-contract-deployment.md) \ No newline at end of file diff --git a/src/data/roadmaps/algorand/content/transaction.md b/src/data/roadmaps/algorand/content/transaction.md new file mode 100644 index 0000000..947b795 --- /dev/null +++ b/src/data/roadmaps/algorand/content/transaction.md @@ -0,0 +1,5 @@ + +Algorand Python provides types for accessing fields of other transactions in a group, as well as creating and submitting inner transactions from your smart contract. + +# Resource +- [@article@transaction](https://algorandfoundation.github.io/puya/lg-transactions.html) diff --git a/src/data/roadmaps/algorand/content/what-is-algorand.md b/src/data/roadmaps/algorand/content/what-is-algorand.md new file mode 100644 index 0000000..97a8f71 --- /dev/null +++ b/src/data/roadmaps/algorand/content/what-is-algorand.md @@ -0,0 +1,11 @@ + +# What is Algorand? + +Algorand is a decentralized network built to solve the Blockchain Trilemma of achieving speed, security, and decentralization simultaneously. + +Launched in June 2019, Algorand is a permissionless, open-source blockchain network upon which anyone can build. + + +Resources: + +- [@official@Algorand Documentation](https://developer.algorand.org/docs/) diff --git a/src/data/roadmaps/algorand/content/what-is-teal.md b/src/data/roadmaps/algorand/content/what-is-teal.md new file mode 100644 index 0000000..42d94eb --- /dev/null +++ b/src/data/roadmaps/algorand/content/what-is-teal.md @@ -0,0 +1,6 @@ +# Transaction Execution Approval Language (TEAL) + +TEAL is a language used to write programs that are converted into bytecode for the Algorand Virtual Machine (AVM). + + +![image](https://miro.medium.com/v2/resize:fit:1400/format:webp/1*7zjY6yvUuonpKQ3Zsq3eqQ.jpeg) diff --git a/src/data/roadmaps/algorand/content/what-the-avm-does.md b/src/data/roadmaps/algorand/content/what-the-avm-does.md new file mode 100644 index 0000000..fd10973 --- /dev/null +++ b/src/data/roadmaps/algorand/content/what-the-avm-does.md @@ -0,0 +1,35 @@ +# What the AVM actually does? +The purpose of AVM is to approve or reject a transaction's effect on the blockchain based on the smart contract's rules. + +AVM will use **Stack machine** to make the computation and approves the effects of a transaction. + +To approve the transaction's effects if and only if: +- There is a single non-zero value on top of AVM's stack + +In the other words, The AVM will rejects transaction'effects if and only if: +- There is a single zero value on top of AVM's stack +- there are multiple values on the AVM's stack +- There is no value on the AVM'stack + + +Suppose we want the AVM check this statement: +``` +1 + 2 = 3 +``` + +That one plus two is equal to 3. How the Algorand Vitural machine will check this? + + +It will tqake the first operation and put it on stack: +![image](https://scontent-sin6-4.xx.fbcdn.net/v/t39.30808-6/452380962_365185459947391_1905523452669603696_n.jpg?stp=dst-jpg_s1080x2048&_nc_cat=101&ccb=1-7&_nc_sid=127cfc&_nc_ohc=MqFqrftu9zIQ7kNvgGWJpHX&_nc_ht=scontent-sin6-4.xx&oh=00_AYBDUEBTVYv2AyRDGLfc7sdcsTFhkqrU-6vYghpONJyFag&oe=66A4E8FF) + + +![image](https://scontent-sin6-4.xx.fbcdn.net/v/t39.30808-6/452705775_365187696613834_2074209579833298612_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=127cfc&_nc_ohc=gvAHkv7-45oQ7kNvgFiO6QL&_nc_ht=scontent-sin6-4.xx&oh=00_AYAxTr3hYn3VfbIHhR0NnYvP88fiFjGoAvS5AlULIP71cw&oe=66A4FB81) + + +The result after compute is 3. The last is on top of the stack and verify it's true. At the end of the execution, there is non-single value on top of stack. This mean you can approve it + +# Resources + +- [@official@AVM documentation](https://developer.algorand.org/docs/get-details/dapps/avm/teal/specification/) +- [@video@ Algorand Smart Contracts Week 1](https://youtu.be/fTAPLiPcj28?t=157) diff --git a/src/data/roadmaps/algorand/content/who-created-algo.md b/src/data/roadmaps/algorand/content/who-created-algo.md new file mode 100644 index 0000000..ce868a9 --- /dev/null +++ b/src/data/roadmaps/algorand/content/who-created-algo.md @@ -0,0 +1,9 @@ +# Who created ALGO? + +Created by computer scientist and Massachusetts Institute of Technology (MIT) professor Silvio Micali, Algorand is perhaps rare in that it was started by an established academic who already had a distinguished career at the time of its launch. + +Micali, for example, is the recipient of a 2012 Turing Award, a notable accolade in the world of computer science, for his work with his colleague Shafi Goldwasser. + + +# Resources: +- [@article@Award winner](https://amturing.acm.org/award_winners/micali_9954407.cfm) \ No newline at end of file diff --git a/src/data/roadmaps/algorand/content/why-algorand.md b/src/data/roadmaps/algorand/content/why-algorand.md new file mode 100644 index 0000000..b679952 --- /dev/null +++ b/src/data/roadmaps/algorand/content/why-algorand.md @@ -0,0 +1,16 @@ +# Why build on Algorand? +Many blockchain platforms exist today, but blockchain is not widely used yet. Because the technology could not provide decentralization, security, and scalability at the same time—until now. + + +Algorand offers +* high performance with 10,000 TPS +* <3 second block latency +* Immediate transaction finality due to its non-forking blockchain. + +It provides comprehensive developer tools, including support for smart contracts in Python and SDKs in Python, JavaScript, Golang, and Java. + + + +# Resources: +- [@official@Why Algorand](https://developer.algorand.org/docs/get-started/basics/why_algorand) + From a13fa43cfa2dbbe2f74330d232127cabcd6954ac Mon Sep 17 00:00:00 2001 From: hien-py Date: Tue, 23 Jul 2024 15:01:02 +0700 Subject: [PATCH 2/2] docs: add Algo language --- src/data/roadmaps/algorand/algorand.json | 24 +++++++++++++++---- .../content/algorand-smart-contracts.md | 7 ++++++ .../content/application-binary-interface.md | 7 ++++++ .../content/smart-contract-application.md | 3 +++ .../content/smart-contract-storage.md | 20 ++++++++++++++++ .../algorand/content/teal-architecture.md | 11 +++++++++ .../roadmaps/algorand/content/what-is-teal.md | 5 ++++ 7 files changed, 73 insertions(+), 4 deletions(-) create mode 100644 src/data/roadmaps/algorand/content/algorand-smart-contracts.md create mode 100644 src/data/roadmaps/algorand/content/application-binary-interface.md create mode 100644 src/data/roadmaps/algorand/content/smart-contract-application.md create mode 100644 src/data/roadmaps/algorand/content/smart-contract-storage.md create mode 100644 src/data/roadmaps/algorand/content/teal-architecture.md diff --git a/src/data/roadmaps/algorand/algorand.json b/src/data/roadmaps/algorand/algorand.json index b7197ef..d1555f8 100644 --- a/src/data/roadmaps/algorand/algorand.json +++ b/src/data/roadmaps/algorand/algorand.json @@ -48,8 +48,19 @@ { "subtopic_id": "teal-architecture", "subtopic_name": "TEAL Architecture" + }, + { + "subtopic_id": "algorand-smart-contracts", + "subtopic_name": "Algorand Smart Contracts (ASC1)" } ] + }, + { + "topic_id": "application-binary-interface", + "topic_name": "What is Arc4?", + "subtopics": [ + + ] } ] }, @@ -90,14 +101,19 @@ "subtopic_name": "What's a smart contract?" }, { - "subtopic_id": "smart-contract-deployment", - "subtopic_name": "Smart Contract Deployment" + "subtopic_id": "smart-contract-storage", + "subtopic_name": "Smart contract storage" + }, + { + "subtopic_id": "smart-contract-application", + "subtopic_name": "Smart contract high level" } , { - "subtopic_id": "smart-contracts-vs-smart-signatures", - "subtopic_name": "Smart Signatures & Smart Contracts" + "subtopic_id": "smart-contract-deployment", + "subtopic_name": "Smart Contract Deployment" } + ] }, { diff --git a/src/data/roadmaps/algorand/content/algorand-smart-contracts.md b/src/data/roadmaps/algorand/content/algorand-smart-contracts.md new file mode 100644 index 0000000..46cd859 --- /dev/null +++ b/src/data/roadmaps/algorand/content/algorand-smart-contracts.md @@ -0,0 +1,7 @@ +# Algorand Smart Contracts (ASC1) +Algorand Smart Contracts (ASC1) are small programs that perform different tasks on the blockchain and are executed directly on the Algorand network. + +There are two main types of smart contracts: +* Smart contract(Stateful contracts): can be called and interacted with from any node on the Algorand blockchain + +* Smart signatures(Stateless contracts): used for transaction signing purposes, particularly for signature delegation \ No newline at end of file diff --git a/src/data/roadmaps/algorand/content/application-binary-interface.md b/src/data/roadmaps/algorand/content/application-binary-interface.md new file mode 100644 index 0000000..ce5993d --- /dev/null +++ b/src/data/roadmaps/algorand/content/application-binary-interface.md @@ -0,0 +1,7 @@ +# Application Binary Interface + + + + +# Resources: +- [@article@ARC-4 github documentation](https://github.com/algorandfoundation/puya/blob/main/docs/lg-arc4.md) \ No newline at end of file diff --git a/src/data/roadmaps/algorand/content/smart-contract-application.md b/src/data/roadmaps/algorand/content/smart-contract-application.md new file mode 100644 index 0000000..8d62b32 --- /dev/null +++ b/src/data/roadmaps/algorand/content/smart-contract-application.md @@ -0,0 +1,3 @@ +# Smart contract aka Apps + +The application Transaction communicate with Application Transactions \ No newline at end of file diff --git a/src/data/roadmaps/algorand/content/smart-contract-storage.md b/src/data/roadmaps/algorand/content/smart-contract-storage.md new file mode 100644 index 0000000..016ae2d --- /dev/null +++ b/src/data/roadmaps/algorand/content/smart-contract-storage.md @@ -0,0 +1,20 @@ +# Three types of storage + +Algorand Smart Contracts (ASC1) have three types of storage: local storage, global storage, and box storage. + +* Local storage is for each account using the smart contract. It keeps data related to that account's use of the contract. + +* Global storage is for the whole smart contract application. It keeps data shared by all accounts using the contract. + +* Boxes are storage parts that can hold up to 32kb of data. They are used for bigger or more detailed information. + +![image](https://miro.medium.com/v2/resize:fit:1400/format:webp/1*PdpiqF6zZfXe7DZf121c7g.jpeg) + +Both global and local storage are structured as Key/Value pairs. Each Key/Value pair in storage has a limit of 128 bytes. + + + + + + +# Resources diff --git a/src/data/roadmaps/algorand/content/teal-architecture.md b/src/data/roadmaps/algorand/content/teal-architecture.md new file mode 100644 index 0000000..bd036e7 --- /dev/null +++ b/src/data/roadmaps/algorand/content/teal-architecture.md @@ -0,0 +1,11 @@ +# TEAL Architecture Overview + + + +![image](https://developer.algorand.org/docs/imgs/teal_overview-1.png) + + +# Resources: +- [@official@TEAL](https://developer.algorand.org/docs/get-details/dapps/avm/teal/) + + diff --git a/src/data/roadmaps/algorand/content/what-is-teal.md b/src/data/roadmaps/algorand/content/what-is-teal.md index 42d94eb..4a23d8b 100644 --- a/src/data/roadmaps/algorand/content/what-is-teal.md +++ b/src/data/roadmaps/algorand/content/what-is-teal.md @@ -4,3 +4,8 @@ TEAL is a language used to write programs that are converted into bytecode for t ![image](https://miro.medium.com/v2/resize:fit:1400/format:webp/1*7zjY6yvUuonpKQ3Zsq3eqQ.jpeg) + + + Developers can write smart contracts using TEAL or Python with the help of the library which provides a convenient way to write TEAL code in Python + + \ No newline at end of file