Skip to content

Commit 67b98a6

Browse files
Merge branch 'main' into android-150
2 parents 30ab823 + 48ed95c commit 67b98a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+256
-18575
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/company-identities.rst

Lines changed: 83 additions & 190 deletions
Large diffs are not rendered by default.

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>`_
Loading
Loading
Loading
79.1 KB
Loading

0 commit comments

Comments
 (0)