Skip to content

Commit

Permalink
fix: added descriptive text to link
Browse files Browse the repository at this point in the history
  • Loading branch information
amessbee committed Jun 3, 2024
1 parent d38412c commit 72ddf33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main/guides/zoe/contract-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ This guide is designed to help developers understand how to write smart contract
We provide three core examples to illustrate how to implement various smart contract functionalities:

### 1. Greetings Contract
The **Greetings Contract** demonstrates how to create a simple contract that greets the caller. This example is perfect for understanding the basic structure and syntax of smart contracts. The relevant code is available in `tut-01-hello` branch available [here](https://github.com/Agoric/dapp-offer-up/tree/tut-01-hello).
The **Greetings Contract** demonstrates how to create a simple contract that greets the caller. This example is perfect for understanding the basic structure and syntax of smart contracts. The relevant code is available in [`tut-01-hello` branch](https://github.com/Agoric/dapp-offer-up/tree/tut-01-hello).

### 2. State Contract
The **State Contract** shows how to maintain a state or a variable within a smart contract. This is useful for contracts that need to store data or state across transactions. The relevant code is available in `tut-01-hello` branch available [here](https://github.com/Agoric/dapp-offer-up/tree/tut-02-state).
The **State Contract** shows how to maintain a state or a variable within a smart contract. This is useful for contracts that need to store data or state across transactions. The relevant code is available in [`tut-01-hello` branch](https://github.com/Agoric/dapp-offer-up/tree/tut-02-state).

### 3. Access-Control Contract
The **Access-Control Contract** provides an example of how to implement access control, ensuring that only authorized users can call certain functions within the smart contract. The relevant code is available in `tut-01-hello` branch available [here](https://github.com/Agoric/dapp-offer-up/tree/tut-03-access).
The **Access-Control Contract** provides an example of how to implement access control, ensuring that only authorized users can call certain functions within the smart contract. The relevant code is available in [`tut-01-hello` branch](https://github.com/Agoric/dapp-offer-up/tree/tut-03-access).


Let us get started!
Expand Down

0 comments on commit 72ddf33

Please sign in to comment.