Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 135c901

Browse files
authoredFeb 16, 2024
Smart contract clarifications (#326)
* typos * Warning about the contract address * Clarification * endpoint -> entrypoint
1 parent 61a13d5 commit 135c901

File tree

4 files changed

+33
-25
lines changed

4 files changed

+33
-25
lines changed
 

‎docs/tutorials/smart-contract/archetype.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ For more information about Archetype, see https://archetype-lang.org/.
4444
The contract that you deploy in this tutorial stores a single integer.
4545
It provides entrypoints that clients can call to change the value of that integer:
4646

47-
- The `increment` endpoint accepts an integer as a parameter and adds that integer to the value in storage
48-
- The `decrement` endpoint accepts an integer as a parameter and subtracts that integer from the value in storage
49-
- The `reset` endpoint takes no parameters and resets the value in storage to 0
47+
- The `increment` entrypoint accepts an integer as a parameter and adds that integer to the value in storage
48+
- The `decrement` entrypoint accepts an integer as a parameter and subtracts that integer from the value in storage
49+
- The `reset` entrypoint takes no parameters and resets the value in storage to 0
5050

5151
After you deploy the contract, you or any other user can call it through the command line or a distributed application (dApp).
5252

@@ -320,4 +320,4 @@ Now the contract is running on the Tezos blockchain.
320320
You or any other user can call it from any source that can send transactions to Tezos, including command-line clients, dApps, and other contracts.
321321

322322
If you want to continue working with this contract, try creating a dApp to call it from a web application, similar to the dApp that you create in the tutorial [Build a simple web application](../build-your-first-app/).
323-
You can also try adding your own endpoints and originating a new contract, but you cannot update the existing contract after it is deployed.
323+
You can also try adding your own entrypoints and originating a new contract, but you cannot update the existing contract after it is deployed.

‎docs/tutorials/smart-contract/cameligo.mdx

+12-8
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,16 @@ A smart contract has these parts:
4141
The contract that you deploy in this tutorial stores a single integer.
4242
It provides entrypoints that clients can call to change the value of that integer:
4343

44-
- The `increment` endpoint accepts an integer as a parameter and adds that integer to the value in storage
45-
- The `decrement` endpoint accepts an integer as a parameter and subtracts that integer to the value in storage
46-
- The `reset` endpoint takes no parameters and resets the value in storage to 0
44+
- The `increment` entrypoint accepts an integer as a parameter and adds that integer to the value in storage
45+
- The `decrement` entrypoint accepts an integer as a parameter and subtracts that integer from the value in storage
46+
- The `reset` entrypoint takes no parameters and resets the value in storage to 0
4747

4848
After you deploy the contract, you or any other user can call it from a variety of Tezos clients and decentralized applications (dApps).
4949

5050
## Creating and funding a wallet
5151

5252
To deploy and work with the contract, you need a wallet and some tez tokens.
53+
You can get test tokens for free on the Ghostnet test network:
5354

5455
1. Install a Tezos-compatible wallet.
5556
Which wallet you install is up to you and whether you want to install a wallet on your computer, in a browser extension, or as a mobile app.
@@ -128,7 +129,7 @@ You can work with LIGO code in any IDE, but this online IDE keeps you from havin
128129
type storage = int
129130
```
130131

131-
1. Add this code to define the return type for the endpoints.
132+
1. Add this code to define the return type for the entrypoints.
132133
Tezos entrypoints return two values: a list of other operations to call and the new value of the contract's storage.
133134

134135
```ocaml
@@ -202,7 +203,7 @@ Before you can deploy the contract to Tezos, you must compile it to Michelson, t
202203
At the bottom of the window, the Result field shows the response `(LIST_EMPTY(), 42)`.
203204
This response means that the contract did not call any other contracts, so the list of operations is empty.
204205
Then it shows the new value of the storage.
205-
You can test the decrement and reset functions in the same way.
206+
You can test the decrement function in the same way.
206207
If you see any errors, make sure that the code of your contract matches the code in the previous section.
207208

208209
1. Test the `Reset` entrypoint in the same way, but pass `unit` as the input parameter and any integer in the storage field.
@@ -243,7 +244,10 @@ You can ignore this warning because you can set the initial storage now.
243244
When the contract is deployed, the Deploy contract window shows the address at the bottom of the window.
244245

245246
1. Copy the address of the deployed contract, which starts with `KT1`.
246-
It will not be shown again.
247+
248+
:::warning
249+
Copy the contract address now, because it will not be shown again.
250+
:::
247251

248252
Now you can call the contract from any Tezos client, including web applications and command-line applications like [The Octez client](../../developing/octez-client).
249253

@@ -260,7 +264,7 @@ It also allows you to call the contract.
260264

261265
<img src="/img/tutorials/bcd-originated-contract.png" alt="The block explorer, showing information about the contract" style={{width: 500}} />
262266

263-
1. Try calling one of the endpoints:
267+
1. Try calling one of the entrypoints:
264268

265269
1. Go to the **Storage** tab and check the current state of the storage, which should be the integer that you put in the Deploy window.
266270

@@ -289,4 +293,4 @@ Now the contract is running on the Tezos blockchain.
289293
You or any other user can call it from any source that can send transactions to Tezos, including Octez, dApps, and other contracts.
290294

291295
If you want to continue working with this contract, try creating a dApp to call it from a web application, similar to the dApp that you create in the tutorial [Build a simple web application](../build-your-first-app/).
292-
You can also try adding your own endpoints and originating a new contract, but you cannot update the existing contract after it is deployed.
296+
You can also try adding your own entrypoints and originating a new contract, but you cannot update the existing contract after it is deployed.

‎docs/tutorials/smart-contract/jsligo.mdx

+12-8
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,16 @@ A smart contract has these parts:
4141
The contract that you deploy in this tutorial stores a single integer.
4242
It provides entrypoints that clients can call to change the value of that integer:
4343

44-
- The `increment` endpoint accepts an integer as a parameter and adds that integer to the value in storage
45-
- The `decrement` endpoint accepts an integer as a parameter and subtracts that integer to the value in storage
46-
- The `reset` endpoint takes no parameters and resets the value in storage to 0
44+
- The `increment` entrypoint accepts an integer as a parameter and adds that integer to the value in storage
45+
- The `decrement` entrypoint accepts an integer as a parameter and subtracts that integer from the value in storage
46+
- The `reset` entrypoint takes no parameters and resets the value in storage to 0
4747

4848
After you deploy the contract, you or any other user can call it from a variety of Tezos clients and decentralized applications (dApps).
4949

5050
## Creating and funding a wallet
5151

5252
To deploy and work with the contract, you need a wallet and some tez tokens.
53+
You can get test tokens for free on the Ghostnet test network:
5354

5455
1. Install a Tezos-compatible wallet.
5556
Which wallet you install is up to you and whether you want to install a wallet on your computer, in a browser extension, or as a mobile app.
@@ -136,7 +137,7 @@ You can work with LIGO code in any IDE, but this online IDE keeps you from havin
136137
type storage = int;
137138
```
138139

139-
1. Add this code to define the return type for the endpoints.
140+
1. Add this code to define the return type for the entrypoints.
140141
Tezos entrypoints return two values: a list of other operations to call and the new value of the contract's storage.
141142

142143
```ts
@@ -217,7 +218,7 @@ Before you can deploy the contract to Tezos, you must compile it to Michelson, t
217218
At the bottom of the window, the Result field shows the response `(LIST_EMPTY(), 42)`.
218219
This response means that the contract did not call any other contracts, so the list of operations is empty.
219220
Then it shows the new value of the storage.
220-
You can test the decrement and reset functions in the same way.
221+
You can test the decrement function in the same way.
221222
If you see any errors, make sure that the code of your contract matches the code in the previous section.
222223

223224
1. Test the `Reset` entrypoint in the same way, but pass `unit` as the input parameter and any integer in the storage field.
@@ -258,7 +259,10 @@ You can ignore this warning because you can set the initial storage now.
258259
When the contract is deployed, the Deploy contract window shows the address at the bottom of the window.
259260

260261
1. Copy the address of the deployed contract, which starts with `KT1`.
261-
It will not be shown again.
262+
263+
:::warning
264+
Copy the contract address now, because it will not be shown again.
265+
:::
262266

263267
Now you can call the contract from any Tezos client, including web applications and command-line applications like [The Octez client](../../developing/octez-client).
264268

@@ -275,7 +279,7 @@ It also allows you to call the contract.
275279

276280
<img src="/img/tutorials/bcd-originated-contract.png" alt="The block explorer, showing information about the contract" style={{width: 500}} />
277281

278-
1. Try calling one of the endpoints:
282+
1. Try calling one of the entrypoints:
279283

280284
1. Go to the **Storage** tab and check the current state of the storage, which should be the integer that you put in the Deploy window.
281285

@@ -304,4 +308,4 @@ Now the contract is running on the Tezos blockchain.
304308
You or any other user can call it from any source that can send transactions to Tezos, including Octez, dApps, and other contracts.
305309

306310
If you want to continue working with this contract, try creating a dApp to call it from a web application, similar to the dApp that you create in the tutorial [Build a simple web application](../build-your-first-app/).
307-
You can also try adding your own endpoints and originating a new contract, but you cannot update the existing contract after it is deployed.
311+
You can also try adding your own entrypoints and originating a new contract, but you cannot update the existing contract after it is deployed.

‎docs/tutorials/smart-contract/smartpy.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ A smart contract has these parts:
4646
The contract that you deploy in this tutorial stores a string value.
4747
It provides entrypoints that clients can call to change the value of that string:
4848

49-
- The `replace` endpoint accepts a new string as a parameter and stores that string, replacing the existing string.
50-
- The `append` endpoint accepts a new string as a parameter and appends it to the existing string.
49+
- The `replace` entrypoint accepts a new string as a parameter and stores that string, replacing the existing string.
50+
- The `append` entrypoint accepts a new string as a parameter and appends it to the existing string.
5151

5252
After you deploy the contract, you or any other user can call it from various sources, including web applications, other contracts, and the Octez command-line client.
5353

@@ -154,7 +154,7 @@ You can work with SmartPy code in any IDE, but this online IDE keeps you from ha
154154
scenario.verify(contract.data.greeting == "Hi, there!")
155155
```
156156

157-
These tests run automatically on compilation to verify that the replace and append endpoints work.
157+
These tests run automatically on compilation to verify that the replace and append entrypoints work.
158158
For more information about SmartPy and tests, see the [SmartPy documentation](https://smartpy.io/).
159159

160160
The SmartPy online IDE looks like this:
@@ -261,7 +261,7 @@ It will not be shown again.
261261

262262
<img src="/img/tutorials/bcd-originated-contract.png" alt="The block explorer, showing information about the contract" style={{width: 500}} />
263263

264-
1. Try calling one of the endpoints:
264+
1. Try calling one of the entrypoints:
265265

266266
1. Go to the **Storage** tab and check the current state of the storage.
267267
If you just originated the contract, the storage is "Hello" because that's the value set in the smart contract code.
@@ -291,4 +291,4 @@ Now the contract is running on the Tezos blockchain.
291291
You or any other user can call it from any source that can send transactions to Tezos, including Octez, dApps, and other contracts.
292292

293293
If you want to continue working with this contract, try creating a dApp to call it from a web application, similar to the dApp that you create in the tutorial [Build a simple web application](../build-your-first-app/).
294-
You can also try adding your own endpoints and originating a new contract, but you cannot update the existing contract after it is deployed.
294+
You can also try adding your own entrypoints and originating a new contract, but you cannot update the existing contract after it is deployed.

0 commit comments

Comments
 (0)