Quickstart
This section is aimed at newcomers to LIGO and Tezos smart contracts. In this tutorial, we will go through the following steps:
- Writing a simple contract
- Testing the contract
- Deploying the contract to Tezos
Before you start
Install LIGO on your computer as described in Installation. You can also use the Online IDE but these instructions are for working with LIGO locally.
Select a syntax. You can use JsLIGO for a JavaScript-like syntax or CameLIGO for an OCaml-like syntax.
This page provides instructions for both syntaxes. To show the instructions for your syntax, select it under "Syntax Preference" at the top left of the page.
Optional: Install the IDE plugin for your IDE.
What is a smart contract?
LIGO is a domain-specific language for writing smart contracts on the Tezos blockchain. A smart contract is a piece of code stored on a blockchain. It contains a set of instructions and rules to trigger them. After it is deployed, it becomes immutable, but a user can trigger the execution of the code without modifying it.
A smart contract is composed of three elements:
- Its balance: a contract is a kind of Tezos account, and can receive and send tez tokens
- Its storage: data that is dedicated to and can be read and written by the contract
- Its code: one or more entrypoints, which are a kind of function that can be called either from outside the chain or from other contracts
For more information about smart contracts on Tezos, see Smart contracts on docs.tezos.com.
Writing the smart contract code
These instructions walk you through creating a contract that acts as a counter. It stores a single integer and provides entrypoints that allow users to pass an integer to add or subtract from the current value of the counter.
The only way to change the integer in storage is through these entrypoints. That illustrates how you can store data in a smart contract and enforce specific rules about how that data can change.
Follow these steps to write the code for the contract:
On your computer, create a folder to store the contract file, such as
ligo_tutorial
.Create a file with the extension
.jsligo
, which indicates JsLIGO code, such ascounter.jsligo
.In any code or text editor, add this code to the file:
type storage = int;type return_type = [list<operation>, storage];This code defines two data types:
- A type that represents the storage for the contract. In this case, the contract stores an integer, but contracts can define more complex data types to store more data.
- A type that represents what the contract entrypoints return. LIGO entrypoints always return a list of operations to run after the entrypoint completes and the new state of the storage.
Add an entrypoint named
add
that accepts an integer as a parameter and adds it to the storage value:@entryconst add = (n : int, storage : storage) : return_type => [[], storage + n];These lines create a function and annotate it with
@entry
, which indicates that it is an entrypoint that users can call. Contracts can also include internal functions that are not annotated.The function accepts an integer and the current state of the storage as parameters. All entrypoints receive the storage state as their final parameter. The function returns an empty list of operations to run next and the new state of the storage, which in this case is the current integer in storage plus the integer that the caller passed.
Similarly, add an entrypoint named
sub
that accepts an integer and subtracts it from the storage value:@entryconst sub = (n : int, storage : storage) : return_type => [[], storage - n];
The complete contract looks like this:
That's all that is necessary for a very simple LIGO smart contract.
Trying out the contract
To make sure the contract works as intended, you can use the run dry-run
command to simulate a call to one of its entrypoints.
For example, to simulate a call to the add
entrypoint, pass the file name, the entrypoint and parameter, and the current state of the storage, as in this example:
This command sets the initial storage value to 5 and passes 3 to the add
entrypoint.
Note that the function name in the code starts with a lower-case letter but the run dry-run
command uses entrypoint names that start with an upper-case letter.
The result is the return value of the entrypoint, which includes an empty list of operations to run next and the new value of the storage:
This way you can test entrypoints manually with different storage states.
Testing the contract
Testing contracts is critical because their code cannot be changed after deployment.
For a more powerful way to test contracts than the run dry-run
command, you can include automated tests in the contract code.
Follow these steps to add an automated test to the contract:
In your contract file, wrap the existing code in a namespace:
namespace Counter {type storage = int;type return_type = [list<operation>, storage];@entryconst add = (n : int, storage : storage) : return_type => [[], storage + n];@entryconst sub = (n : int, storage : storage) : return_type => [[], storage - n];};Namespaces in JsLIGO provide a scope to the identifiers (names of types, functions, variables, etc.) to prevent collisions between them. You can access identifiers that are within a namespace with dot notation, as in
<module>.<identifier>
.At the end of the file, outside of the namespace, add a function named
test_add
:const test_add = (() => {}) ()Inside the function, add code to originate (deploy) the contract to the test environment:
const initial_storage = 10 as int;const orig = Test.Next.Originate.contract(contract_of(Counter), initial_storage, 0tez);This command simulates deploying the contract, setting its initial storage to 10, and setting its initial balance to 0 tez.
Add code to call the
add
entrypoint and pass the value 32:Test.Next.Contract.transfer_exn(Test.Next.Typed_address.get_entrypoint("add", orig.taddr), 32 as int, 0tez);Add code to verify that the new value of the storage is correct:
return Assert.assert(Test.Next.Typed_address.get_storage(orig.taddr) == initial_storage + 32);The complete code looks like this:
namespace Counter {type storage = int;type return_type = [list<operation>, storage];@entryconst add = (n : int, storage : storage) : return_type => [[], storage + n];@entryconst sub = (n : int, storage : storage) : return_type => [[], storage - n];};const test_add = (() => {const initial_storage = 10 as int;const orig = Test.Next.Originate.contract(contract_of(Counter), initial_storage, 0tez);Test.Next.Contract.transfer_exn(Test.Next.Typed_address.get_entrypoint("add", orig.taddr), 32 as int, 0tez);return Assert.assert(Test.Next.Typed_address.get_storage(orig.taddr) == initial_storage + 32);}) ()Run this command to run the test:
ligo run test counter.jsligo
The output shows that the test ran successfully:
Compiling the contract
Tezos runs contracts in the Michelson stack-based language, so you must compile your contract from LIGO to Michelson. The process also looks for errors in the LIGO code.
Run this command to compile the contract:
The command writes the output of the compilation to the file counter.tz
.
The compiled Michelson contract looks like this:
If you see any errors, make sure your code looks like the code in the previous section.
Setting up the Octez client and a local wallet
The Octez client is a command-line tool that lets you send transactions to Tezos, including deploying and calling smart contracts. These instructions show how to install the client, connect it to the Ghostnet test network, and get some tez tokens to pay transaction fees.
The Ghostnet test network is just like the Tezos mainnet, so you can use it to try out your contracts in a live environment before you deploy them to mainnet.
Install the Octez client, which sends transactions to Tezos. (The Octez suite includes many programs, but for now all you need is the Octez client.)
For Ubuntu, Windows WSL, and Linux distributions that use
apt
, run these commands:REPO="ppa:serokell/tezos"sudo add-apt-repository -y $REPO && sudo apt-get updatesudo apt-get install -y tezos-clientFor Fedora and Linux distributions that use Copr, run these commands:
REPO="@Serokell/Tezos"dnf copr enable -y $REPO && dnf update -ydnf install -y tezos-clientFor MacOS, use
brew
:brew tap serokell/tezos-packaging-stable https://github.com/serokell/tezos-packaging-stable.gitbrew install tezos-clientFor other methods, see https://tezos.gitlab.io/introduction/howtoget.html.
Verify that you have at least version 20 of the Octez client by running
octez-client --version
and verifying that the version is at least 20.0.Set the Octez client to use the Ghostnet test network:
If you just installed Octez for the first time, run this command:
octez-client -E https://rpc.ghostnet.teztnets.com config initIf you already had Octez installed, run this command:
octez-client -E https://rpc.ghostnet.teztnets.com config update
Verify that you are using Ghostnet by running
octez-client config show
and verifying that theendpoint
field showshttps://rpc.ghostnet.teztnets.com
, as in this example:{ "base_dir": "/Users/me/.tezos-client","endpoint": "https://rpc.ghostnet.teztnets.com", "web_port": 8080,"confirmations": 0 }Optional: Disable the warning message about using a test network by running this command:
export TEZOS_CLIENT_UNSAFE_DISABLE_DISCLAIMER=yIn the Octez client, create a wallet by running this command:
octez-client gen keys local_walletGet your account's address by running this command:
octez-client show address local_walletThe Octez client prints the address of the new wallet in the
hash
field. The wallet address begins withtz1
, as in this example:Hash: tz1dW9Mk...........H67LPublic Key: edp.............................bjbeDjYou need the wallet address to send funds to the wallet, to deploy the contract, and to send transactions to the contract.
Copy your account's address, which starts with
tz1
.In a web browser, go to the Ghostnet faucet at https://faucet.ghostnet.teztnets.com/.
Paste your address into the "Fund any address" field and send some tez to your account. 20 tez is enough to start with, and you can always return to the faucet for more.
Verify that your account has tez by running this command:
octez-client get balance for local_wallet
Now you have an account and funds that you can use to work with Tezos.
Deploying the contract
To deploy (or originate) the contract you need:
- The compiled Michelson code of the contract
- The starting value for the contract storage, compiled as a Michelson expression
- A small amount of tez tokens to pay the transaction fee
Get the compiled code of the contract by running this command, where
[FILENAME]
is the name of your LIGO file.ligo compile contract [FILENAME] -m Counter -o counter.tzGet the compiled value of the contract storage by running this command:
ligo compile storage -m Counter [FILENAME] '0'You can put any integer value for the initial storage value as the last parameter in this command.
The result is the compiled value of the integer in Michelson, which is the same as it is in LIGO. In this case the LIGO storage value maps 1:1 to its Michelson representation. More complex data types like records and maps look different in Michelson than in LIGO.
Deploy the contract by running this command, putting the initial storage value in the
--init
argument:octez-client originate contract counter \transferring 0 from local_wallet \running counter.tz \--init 5 --burn-cap 0.5This command deploys the contract to the currently selected Tezos network. It includes these parts:
- It uses the Octez client
originate contract
command to originate the contract and assigns the local namecounter
to the contract - It includes 0 tokens from your wallet with the transaction, but the
--burn-cap
argument allows the transaction to take up to 0.1 XTZ from your wallet for fees. - It sets the initial value of the contract storage with the
--init
argument.
If the contract deploys successfully, Octez shows the address of the new contract, as in this example:
New contract KT1Nnk.................UFsJrq originated.The operation has only been included 0 blocks ago.We recommend to wait more.- It uses the Octez client
Copy the contract address, which starts with
KT1
.Optional: Run the command
octez-client get balance for local_wallet
to get the updated balance of your wallet.Verify that the contract deployed successfully by finding it on a block explorer:
Open a Tezos block explorer such as TzKT or Better Call Dev.
Set the explorer to Ghostnet instead of Mainnet.
Paste the contract address into the search field and press Enter.
Go to the Storage tab to see that the initial value of the storage is the integer that you provided.
Now the contract is deployed and unchangeable. Anyone can call its entrypoints to change the storage value.
Calling the contract
You can call the contract from many different Tezos clients, including web applications, block explorers, and the Octez client.
To call the contract from the Octez client, pass the entrypoint name and parameter to the octez-client transfer
command, as in this example:
Like the originate contract
command, this command takes the address or local name of the contract, an amount of tez to include, and a maximum fee.
It also includes the name of the entrypoint and the Michelson-encoded parameter to send to it.
Entrypoints don't return values, so the output shows only that the transaction was added successfully. To verify that the transaction ran, you can check the value of the contract storage, either by looking it up in a block explorer or using the Octez client, as in this example:
Next steps
Now you have a simple LIGO smart contract and can test it, deploy it, and call it. You can use it as a starting point to write your own contracts and experiment with LIGO.
You can also continue with the Taco shop tutorial to learn more about programming with LIGO.