From 279103f333cf8912948d73ace2fc2a463f34417e Mon Sep 17 00:00:00 2001 From: Dzianis Andreyenka Date: Tue, 10 Oct 2023 09:41:24 +0200 Subject: [PATCH] Update docs/tutorials/custom_contracts/tezos.md Co-authored-by: Nicko Guyer Signed-off-by: Dzianis Andreyenka --- docs/tutorials/custom_contracts/tezos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/custom_contracts/tezos.md b/docs/tutorials/custom_contracts/tezos.md index a63b191a8..be8d49c87 100644 --- a/docs/tutorials/custom_contracts/tezos.md +++ b/docs/tutorials/custom_contracts/tezos.md @@ -75,7 +75,7 @@ Here we can see that our new contract address is `KT1D254HTPKq5GZNVcF73XBinG9BLy ## The FireFly Interface Format -As we know from the previous section - smart contracts on the Tezos blockchain are using the domain-specific, stack-based programming language called [Michelton](https://tezos.gitlab.io/active/michelson.html). It is a key component of the Tezos platform and plays a fundamental role in defining the behavior of smart contracts and facilitating their execution. +As we know from the previous section - smart contracts on the Tezos blockchain are using the domain-specific, stack-based programming language called [Michelson](https://tezos.gitlab.io/active/michelson.html). It is a key component of the Tezos platform and plays a fundamental role in defining the behavior of smart contracts and facilitating their execution. This language is very efficient but also a bit tricky and challenging for learning, so in order to teach FireFly how to interact with the smart contract, we will be using [FireFly Interface (FFI)](../../reference/firefly_interface_format.md) to define the contract inteface which later will be encoded to Michelton. The following FFI sample demonstrates the specification for the widely used FA2 (analogue of ERC721 for EVM) smart contract: