From c5786de9f203bcb7cd8c055f4be538146ba34927 Mon Sep 17 00:00:00 2001 From: Robert Phair Date: Mon, 23 Oct 2023 21:50:27 -0400 Subject: [PATCH] also capitalise singular UTXO --- docs/smart-contracts/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/smart-contracts/overview.md b/docs/smart-contracts/overview.md index 06811e33b1..b908f8eeb1 100644 --- a/docs/smart-contracts/overview.md +++ b/docs/smart-contracts/overview.md @@ -37,7 +37,7 @@ Validator scripts are executed automatically when a UTXO residing at the address This means that in order for the validator-script to execute, a transaction must first move a utxo to the address of the contract; the address is derived from the contract mathematically. You do not need to upload your contract to the chain, although that is also possible using reference scripts. -You might think of this initial transaction where you move a utxo to the script address to be the initialization of a contract instance. Each utxo residing on the address of the contract can thus be seen as an instance of the contract. Note that there is no restriction on the UTXOs being sent to the script address: anyone can send a utxo containing no datum, or a 'fake' datum. +You might think of this initial transaction where you move a UTXO to the script address to be the initialization of a contract instance. Each UTXO residing on the address of the contract can thus be seen as an instance of the contract. Note that there is no restriction on the UTXOs being sent to the script address: anyone can send a UTXO containing no datum, or a 'fake' datum. ### Off-Chain