Skip to content

Commit a6bb1c0

Browse files
Merge pull request #928 from Concordium/node-620-testnet-release
Node 6.2.0 release Testnet
2 parents 7b18dbb + c284649 commit a6bb1c0

39 files changed

+100
-18381
lines changed

source/academy/tutorials/fractionalized-nft/burn.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Run the command below after the necessary changes in the parameter JSON.
4141

4242
.. code-block:: console
4343
44-
concordium-client contract update <YOUR-CONTRACT-INSTANCE> --entrypoint transfer --parameter-json cis2-fractionalizer/burn-20.json --schema dist/schema.bin --sender <YOUR-ADDRESS> --energy 6000 --grpc-port 10000 --grpc-ip node.testnet.concordium.com
44+
concordium-client contract update <YOUR-CONTRACT-INSTANCE> --entrypoint transfer --parameter-json cis2-fractionalizer/burn-20.json --schema dist/schema.bin --sender <YOUR-ADDRESS> --energy 6000 --grpc-port 20000 --grpc-ip node.testnet.concordium.com
4545
4646
As usual, after a change, check the state.
4747

@@ -78,7 +78,7 @@ Run the transfer command below.
7878

7979
.. code-block:: console
8080
81-
concordium-client contract update <YOUR-CONTRACT-INSTANCE> --entrypoint transfer --parameter-json cis2-fractionalizer/transfer-account.json --schema dist/schema.bin --sender <YOUR-ADDRESS> --energy 6000 --grpc-port 10000 --grpc-ip node.testnet.concordium.com
81+
concordium-client contract update <YOUR-CONTRACT-INSTANCE> --entrypoint transfer --parameter-json cis2-fractionalizer/transfer-account.json --schema dist/schema.bin --sender <YOUR-ADDRESS> --energy 6000 --grpc-port 20000 --grpc-ip node.testnet.concordium.com
8282
8383
.. image:: ../../images/mid-fractnft-burn2.png
8484

source/academy/tutorials/fractionalized-nft/mint.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Check the state by calling the ``view()`` function as shown below.
2525

2626
.. code-block:: console
2727
28-
concordium-client contract invoke <YOUR-TOKEN-CONTRACT-INDEX>--entrypoint view --schema ../cis2-multi/dist/schema.bin --grpc-port 10000 --grpc-ip node.testnet.concordium.com
28+
concordium-client contract invoke <YOUR-TOKEN-CONTRACT-INDEX>--entrypoint view --schema ../cis2-multi/dist/schema.bin --grpc-port 20000 --grpc-ip node.testnet.concordium.com
2929
3030
.. image:: ../../images/mid-fractnft-mint2.png
3131

@@ -64,7 +64,7 @@ Run the command below to transfer the token to the fractionalizer.
6464

6565
.. code-block:: console
6666
67-
concordium-client contract update <YOUR-TOKEN-CONTRACT-INSTANCE> --entrypoint transfer --parameter-json cis2-fractionalizer/cis2-multi-transfer.json --schema multi/dist/schema.bin --sender <YOUR-ADDRESS> --energy 6000 --grpc-port 10000 --grpc-ip node.testnet.concordium.com
67+
concordium-client contract update <YOUR-TOKEN-CONTRACT-INSTANCE> --entrypoint transfer --parameter-json cis2-fractionalizer/cis2-multi-transfer.json --schema multi/dist/schema.bin --sender <YOUR-ADDRESS> --energy 6000 --grpc-port 20000 --grpc-ip node.testnet.concordium.com
6868
6969
.. image:: ../../images/mid-fractnft-mint3.png
7070

@@ -111,15 +111,15 @@ Then run the following command to mint the fractions.
111111

112112
.. code-block:: console
113113
114-
concordium-client contract update <YOUR-CONTRACT-INSTANCE> --entrypoint mint --parameter-json ../sample-artifacts/cis2-fractionalizer/mint.json --schema ../cis2-fractionalizer/schema.bin --sender $ACCOUNT --energy 6000 --grpc-port 10000 --grpc-ip node.testnet.concordium.com
114+
concordium-client contract update <YOUR-CONTRACT-INSTANCE> --entrypoint mint --parameter-json ../sample-artifacts/cis2-fractionalizer/mint.json --schema ../cis2-fractionalizer/schema.bin --sender $ACCOUNT --energy 6000 --grpc-port 20000 --grpc-ip node.testnet.concordium.com
115115
116116
.. image:: ../../images/mid-fractnft-mint6.png
117117

118118
Now, check the fractionalizer’s state with the command below.
119119

120120
.. code-block:: console
121121
122-
concordium-client contract invoke <YOUR-FRACTIONALIZER-CONTRACT-INDEX> --entrypoint view --schema dist/schema.bin --grpc-port 10000 --grpc-ip node.testnet.concordium.com
122+
concordium-client contract invoke <YOUR-FRACTIONALIZER-CONTRACT-INDEX> --entrypoint view --schema dist/schema.bin --grpc-port 20000 --grpc-ip node.testnet.concordium.com
123123
124124
.. image:: ../../images/mid-fractnft-mint7.png
125125

source/mainnet/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,7 @@
406406
"./net/installation/downloads-testnet": "net/installation/downloads.html",
407407
"./net/resources/legal": "net/resources/terms-and-conditions.html",
408408
"./en/mainnet/smart-contracts/onboarding-guide-solana-developers/index": "en/mainnet/smart-contracts/onboarding-guide-solana-developers/overview.html",
409+
"./net/references/grpc": "net/references/grpc2.html",
409410
}
410411

411412
# -- Tags that enables the .. only option ----------------

source/mainnet/net/guides/developer-page.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Official resources
3838

3939
- See :ref:`dApp examples<dapp-examples>` for a list of dApp examples and their resources.
4040

41-
- For testing purposes, a node is available on testnet to use when testing smart contracts and dApps. You can use this node for API calls of chain methods only with GRPC v1, gRPC v2, and gRPC web. The address is node.testnet.concordium.com on port 10000 (GRPCv1) and port 20000 (gRPCv2 and gRPC-web). This node is maintained by Concordium, but Concordium does not guarantee availability. The status of this node is available on the `Testnet status page <https://status.testnet.concordium.software>`__.
41+
- For testing purposes, a node is available on testnet to use when testing smart contracts and dApps. You can use this node for API calls of chain methods only with gRPC v2 and gRPC web. The address is node.testnet.concordium.com on port 20000 (gRPCv2 and gRPC-web). You can use this node for API calls of *chain methods only*. This node is maintained by Concordium, but Concordium does not guarantee availability. The status of this node is available on the `Testnet status page <https://status.testnet.concordium.software>`__.
4242

4343
- The `VSCode extension <https://marketplace.visualstudio.com/items?itemName=Concordium.concordium-smart-contracts>`__ can help you develop Concordium smart contracts. The extension sets up the editor for development, installs the ``cargo-concordium`` smart contract development tool for all supported platforms, and provides commands in the editor for the essential workflows, such as building and testing smart contracts.
4444

@@ -121,4 +121,3 @@ Community resources
121121
../resources/dashboards
122122
../references/developer-tools
123123
../references/grpc2
124-
../references/grpc

source/mainnet/net/guides/sdks-apis.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ SDKs and APIs
88
The following SDKs and APIs exist for developing on the Concordium network.
99

1010
- :ref:`Concordium gRPC V2 API<grpc2-documentation>`
11-
- :ref:`Concordium gRPC API<grpc-documentation>`
1211
- `Concordium Rust SDK <https://github.com/Concordium/concordium-rust-sdk>`_
1312
- `Concordium Javascript (Node / Web) SDK <https://github.com/Concordium/concordium-node-sdk-js>`_
1413
- `Concordium Java SDK <https://github.com/Concordium/concordium-java-sdk>`_

source/mainnet/net/installation/downloads.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ The |mw-gen1| is available for iOS and Android™. The |mw-gen1| supports iOS 13
154154
Concordium Client |client-version|
155155
===================================
156156

157-
- `Download the Mainnet Concordium Client for Linux <https://distribution.concordium.software/tools/linux/concordium-client_6.1.0-1>`_
157+
- `Download the Mainnet Concordium Client for Linux <https://distribution.concordium.software/tools/linux/concordium-client_6.2.1-0>`_
158158

159159
- SHA256 checksum of the download: :substitution-code:`|client-linux-checksum|`
160160
- :ref:`Verification instructions <verification-client-linux>`
@@ -167,13 +167,13 @@ Concordium Client |client-version|
167167
168168
where you replace `*` with |client-version|.
169169

170-
- `Download the Mainnet Concordium Client for macOS <https://distribution.concordium.software/tools/macos/signed/concordium-client-6.1.0-1.pkg>`_
170+
- `Download the Mainnet Concordium Client for macOS <https://distribution.concordium.software/tools/macos/signed/concordium-client-6.2.1-0.pkg>`_
171171

172172
- The macOS distribution is an installer that places an alias to the binary
173173
into the folder ``/usr/local/bin``. So after installing, you should have
174174
``concordium-client`` on your path.
175175

176-
- `Download the Mainnet Concordium Client for Windows <https://distribution.concordium.software/tools/windows/signed/concordium-client_6.1.0-0.exe>`_
176+
- `Download the Mainnet Concordium Client for Windows <https://distribution.concordium.software/tools/windows/signed/concordium-client_6.2.1-0.exe>`_
177177

178178
.. _cargo-concordium-testnet:
179179

@@ -240,9 +240,9 @@ For the system requirements to run a node, see :ref:`System requirements to run
240240

241241
.. dropdown:: Ubuntu |testnet-node-version|
242242

243-
To run a node on a server with Ubuntu, `download a Testnet Debian package <https://distribution.testnet.concordium.com/deb/concordium-testnet-node_6.1.7-0_amd64.deb>`_.
243+
To run a node on a server with Ubuntu, `download a Testnet Debian package <https://distribution.testnet.concordium.com/deb/concordium-testnet-node_6.2.3-0_amd64.deb>`_.
244244

245-
- SHA256 checksum of the download: ``b1b1e1c5e2e9e8100094a2e1d9fced47dc98e9dfcf0897e89755011adc44781a``
245+
- SHA256 checksum of the download: ``5e97f77f3dedfd8921045a3ed4623600281b5331d37e527424a2f01068e6b2b1``
246246

247247
To learn how to run a node with Ubuntu, see :ref:`Run a node on a server with Ubuntu <run-node-ubuntu>`.
248248

@@ -256,13 +256,13 @@ For the system requirements to run a node, see :ref:`System requirements to run
256256

257257
.. dropdown:: Windows |testnet-node-version|
258258

259-
To run a node on Windows, `download a Testnet Windows Installer package <https://distribution.concordium.software/windows/Signed/Node-6.1.7-0.msi>`_. **Please be aware that you should backup your configuration, as the installer will overwrite the current configuration with a standard configuration.**
259+
To run a node on Windows, `download a Testnet Windows Installer package <https://distribution.concordium.software/windows/Signed/Node-6.2.3-0.msi>`_. **Please be aware that you should backup your configuration, as the installer will overwrite the current configuration with a standard configuration.**
260260

261261
To learn how to run a node on Windows, see :ref:`Run and manage a node on Windows <run-node-windows>`.
262262

263263
.. dropdown:: Mac |testnet-node-version|
264264

265-
To run a node on macOS, `download a Testnet macOS installer package <https://distribution.concordium.software/macos/signed/concordium-node-6.1.7-1.pkg>`_.
265+
To run a node on macOS, `download a Testnet macOS installer package <https://distribution.concordium.software/macos/signed/concordium-node-6.2.3-0.pkg>`_.
266266

267267
To learn how to run a node on Mac, see :ref:`Run and manage a node on macOS <run-node-macos>`.
268268

source/mainnet/net/installation/previous-node-downloads.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Windows - Mainnet and Testnet
1414

1515
**Please be aware that you should backup your configuration, as the installer will overwrite the current configuration with a standard configuration.**
1616

17+
`Windows 6.1.7 <https://distribution.concordium.software/windows/Signed/Node-6.1.7-0.msi>`_
18+
1719
`Windows 6.1.6 <https://distribution.concordium.software/windows/Signed/Node-6.1.6-0.msi>`_ (Testnet only)
1820

1921
`Windows 6.0.4 <https://distribution.concordium.software/windows/Signed/Node-6.0.4-0.msi>`_
@@ -49,6 +51,8 @@ Windows - Mainnet and Testnet
4951
macOS - Mainnet and Testnet
5052
===========================
5153

54+
`macOS 6.1.7 <https://distribution.concordium.software/macos/signed/concordium-node-6.1.7-1.pkg>`_
55+
5256
`macOS 6.1.6 <https://distribution.concordium.software/macos/signed/concordium-node-6.1.6-0.pkg>`_ (Testnet only)
5357

5458
`macOS 6.0.4 <https://distribution.concordium.software/macos/signed/concordium-node-6.0.4-0.pkg>`_
@@ -208,6 +212,16 @@ Ubuntu - Testnet
208212
Default GRPC port is set to 10001
209213
Default listen port is set to 8889
210214

215+
`6.1.7 <https://distribution.testnet.concordium.com/deb/concordium-testnet-node_6.1.7-0_amd64.deb>`__
216+
217+
- Verification instructions
218+
219+
In a terminal:
220+
221+
#. Navigate to the download.
222+
#. Paste the following into the terminal: $sha256sum concordium-testnet-node_6.1.7-0_amd64.deb
223+
#. Verify that the output matches the SHA256 checksum ``b1b1e1c5e2e9e8100094a2e1d9fced47dc98e9dfcf0897e89755011adc44781a``
224+
211225
`6.1.6 <https://distribution.testnet.concordium.com/deb/concordium-testnet-node_6.0.4-0_amd64.deb>`__
212226

213227
- Verification instructions

source/mainnet/net/nodes/baker-ubuntu.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Prerequisites
7070
7171
[Service]
7272
73-
Environment=CONCORDIUM_NODE_BAKER_CREDENTIALS_FILE=%S/concordium-b6078154d6717e909ce0da4a45a25151b592824f31624b755900a74429e3073d/validator-credentials.json
73+
Environment=CONCORDIUM_NODE_VALIDATOR_CREDENTIALS_FILE=%S/concordium-b6078154d6717e909ce0da4a45a25151b592824f31624b755900a74429e3073d/validator-credentials.json
7474
BindReadOnlyPaths=/home/user/concordium/validator-credentials.json:%S/concordium-b6078154d6717e909ce0da4a45a25151b592824f31624b755900a74429e3073d/validator-credentials.json
7575
7676
Where you replace the path `/home/user/concordium/validator-credentials.json` with the actual location of the file.

source/mainnet/net/references/grpc-json-schemas/ContractContext.json

Lines changed: 0 additions & 141 deletions
This file was deleted.

0 commit comments

Comments
 (0)