From 1c0893c5da2ea4477e67332ce1cd288740728c0a Mon Sep 17 00:00:00 2001 From: Thabokani <149070269+Thabokani@users.noreply.github.com> Date: Wed, 17 Jan 2024 16:01:50 +0800 Subject: [PATCH] Update README.md: fix typo Signed-off-by: Thabokani <149070269+Thabokani@users.noreply.github.com> --- arc-0030/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arc-0030/README.md b/arc-0030/README.md index 957f109..8179892 100644 --- a/arc-0030/README.md +++ b/arc-0030/README.md @@ -10,7 +10,7 @@ created: 9/2/2022 ## Abstract -Let's get NFTs & Tokens/DeFI working on Aleo. Currently, you can create an ERC-20/ERC-721-like program on Aleo but it is severly limited. +Let's get NFTs & Tokens/DeFI working on Aleo. Currently, you can create an ERC-20/ERC-721-like program on Aleo but it is severely limited. The biggest limitation is that a program cannot own an NFT. This prevents these Aleo tokens from being used in: escrow, auctions, pools, etc. In order to enable this functionality, we need an opcode in the Aleo instruction set like: `self.parent`. This opcode would be similar to `self.caller` except it would result in the address of the program who called another program. @@ -107,7 +107,7 @@ function withdraw_token_two: finalize self.caller r1; -finalize withdrawl_token_two: +finalize withdraw_token_two: input r0 as address.public; input r1 as u64.public;