You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 17, 2025. It is now read-only.
Copy file name to clipboardexpand all lines: docs/tutorials/smart-contract/archetype.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -44,9 +44,9 @@ For more information about Archetype, see https://archetype-lang.org/.
44
44
The contract that you deploy in this tutorial stores a single integer.
45
45
It provides entrypoints that clients can call to change the value of that integer:
46
46
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
50
50
51
51
After you deploy the contract, you or any other user can call it through the command line or a distributed application (dApp).
52
52
@@ -320,4 +320,4 @@ Now the contract is running on the Tezos blockchain.
320
320
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.
321
321
322
322
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.
Copy file name to clipboardexpand all lines: docs/tutorials/smart-contract/cameligo.mdx
+12-8
Original file line number
Diff line number
Diff line change
@@ -41,15 +41,16 @@ A smart contract has these parts:
41
41
The contract that you deploy in this tutorial stores a single integer.
42
42
It provides entrypoints that clients can call to change the value of that integer:
43
43
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
47
47
48
48
After you deploy the contract, you or any other user can call it from a variety of Tezos clients and decentralized applications (dApps).
49
49
50
50
## Creating and funding a wallet
51
51
52
52
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:
53
54
54
55
1. Install a Tezos-compatible wallet.
55
56
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
128
129
type storage = int
129
130
```
130
131
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.
132
133
Tezos entrypoints return two values: a list of other operations to call and the new value of the contract's storage.
133
134
134
135
```ocaml
@@ -202,7 +203,7 @@ Before you can deploy the contract to Tezos, you must compile it to Michelson, t
202
203
At the bottom of the window, the Result field shows the response `(LIST_EMPTY(), 42)`.
203
204
This response means that the contract did not call any other contracts, so the list of operations is empty.
204
205
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.
206
207
If you see any errors, make sure that the code of your contract matches the code in the previous section.
207
208
208
209
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.
243
244
When the contract is deployed, the Deploy contract window shows the address at the bottom of the window.
244
245
245
246
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
+
:::
247
251
248
252
Now you can call the contract from any Tezos client, including web applications and command-line applications like [The Octez client](../../developing/octez-client).
249
253
@@ -260,7 +264,7 @@ It also allows you to call the contract.
260
264
261
265
<imgsrc="/img/tutorials/bcd-originated-contract.png"alt="The block explorer, showing information about the contract"style={{width: 500}} />
262
266
263
-
1. Try calling one of the endpoints:
267
+
1. Try calling one of the entrypoints:
264
268
265
269
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.
266
270
@@ -289,4 +293,4 @@ Now the contract is running on the Tezos blockchain.
289
293
You or any other user can call it from any source that can send transactions to Tezos, including Octez, dApps, and other contracts.
290
294
291
295
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.
Copy file name to clipboardexpand all lines: docs/tutorials/smart-contract/jsligo.mdx
+12-8
Original file line number
Diff line number
Diff line change
@@ -41,15 +41,16 @@ A smart contract has these parts:
41
41
The contract that you deploy in this tutorial stores a single integer.
42
42
It provides entrypoints that clients can call to change the value of that integer:
43
43
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
47
47
48
48
After you deploy the contract, you or any other user can call it from a variety of Tezos clients and decentralized applications (dApps).
49
49
50
50
## Creating and funding a wallet
51
51
52
52
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:
53
54
54
55
1. Install a Tezos-compatible wallet.
55
56
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
136
137
typestorage=int;
137
138
```
138
139
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.
140
141
Tezos entrypoints return two values: a list of other operations to call and the new value of the contract's storage.
141
142
142
143
```ts
@@ -217,7 +218,7 @@ Before you can deploy the contract to Tezos, you must compile it to Michelson, t
217
218
At the bottom of the window, the Result field shows the response `(LIST_EMPTY(), 42)`.
218
219
This response means that the contract did not call any other contracts, so the list of operations is empty.
219
220
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.
221
222
If you see any errors, make sure that the code of your contract matches the code in the previous section.
222
223
223
224
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.
258
259
When the contract is deployed, the Deploy contract window shows the address at the bottom of the window.
259
260
260
261
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
+
:::
262
266
263
267
Now you can call the contract from any Tezos client, including web applications and command-line applications like [The Octez client](../../developing/octez-client).
264
268
@@ -275,7 +279,7 @@ It also allows you to call the contract.
275
279
276
280
<imgsrc="/img/tutorials/bcd-originated-contract.png"alt="The block explorer, showing information about the contract"style={{width: 500}} />
277
281
278
-
1. Try calling one of the endpoints:
282
+
1. Try calling one of the entrypoints:
279
283
280
284
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.
281
285
@@ -304,4 +308,4 @@ Now the contract is running on the Tezos blockchain.
304
308
You or any other user can call it from any source that can send transactions to Tezos, including Octez, dApps, and other contracts.
305
309
306
310
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.
Copy file name to clipboardexpand all lines: docs/tutorials/smart-contract/smartpy.mdx
+5-5
Original file line number
Diff line number
Diff line change
@@ -46,8 +46,8 @@ A smart contract has these parts:
46
46
The contract that you deploy in this tutorial stores a string value.
47
47
It provides entrypoints that clients can call to change the value of that string:
48
48
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.
51
51
52
52
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.
53
53
@@ -154,7 +154,7 @@ You can work with SmartPy code in any IDE, but this online IDE keeps you from ha
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.
158
158
For more information about SmartPy and tests, see the [SmartPy documentation](https://smartpy.io/).
159
159
160
160
The SmartPy online IDE looks like this:
@@ -261,7 +261,7 @@ It will not be shown again.
261
261
262
262
<imgsrc="/img/tutorials/bcd-originated-contract.png"alt="The block explorer, showing information about the contract"style={{width: 500}} />
263
263
264
-
1. Try calling one of the endpoints:
264
+
1. Try calling one of the entrypoints:
265
265
266
266
1. Go to the **Storage** tab and check the current state of the storage.
267
267
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.
291
291
You or any other user can call it from any source that can send transactions to Tezos, including Octez, dApps, and other contracts.
292
292
293
293
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