From 3585a596d2abfd1b28321dbf62e35825bf9d2beb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dj8yf0=CE=BCl?= Date: Mon, 23 Dec 2024 18:26:13 +0200 Subject: [PATCH] chore: update `near-cli-rs` versions mentioned --- docs/2.build/2.smart-contracts/quickstart.md | 2 +- docs/3.tutorials/fts/0-predeployed.md | 2 +- docs/3.tutorials/fts/2-define-a-token.md | 2 +- docs/3.tutorials/fts/3-circulating-supply.md | 2 +- docs/3.tutorials/fts/4.storage.md | 2 +- docs/3.tutorials/fts/5.transfers.md | 2 +- docs/3.tutorials/nfts/0-predeployed.md | 2 +- docs/3.tutorials/nfts/2-minting.md | 2 +- docs/3.tutorials/nfts/2-upgrade.md | 2 +- docs/3.tutorials/nfts/3-enumeration.md | 2 +- docs/3.tutorials/nfts/4-core.md | 2 +- docs/3.tutorials/nfts/5-approval.md | 2 +- docs/3.tutorials/nfts/6-royalty.md | 2 +- docs/3.tutorials/nfts/7-events.md | 2 +- docs/3.tutorials/nfts/8-marketplace.md | 2 +- docs/3.tutorials/nfts/9-series.md | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/2.build/2.smart-contracts/quickstart.md b/docs/2.build/2.smart-contracts/quickstart.md index f601615290c..aee6a63a3d1 100644 --- a/docs/2.build/2.smart-contracts/quickstart.md +++ b/docs/2.build/2.smart-contracts/quickstart.md @@ -434,7 +434,7 @@ At the time of this writing, this example works with the following versions: - node: `20.18.0` - rustc: `1.81.0` -- near-cli-rs: `0.15.1` +- near-cli-rs: `0.17.0` - cargo-near: `0.10.1` ::: diff --git a/docs/3.tutorials/fts/0-predeployed.md b/docs/3.tutorials/fts/0-predeployed.md index 1b4bc05672d..e58d6dd8640 100644 --- a/docs/3.tutorials/fts/0-predeployed.md +++ b/docs/3.tutorials/fts/0-predeployed.md @@ -141,5 +141,5 @@ Now that you're familiar with the process, you can jump to [Contract Architectur At the time of this writing, this example works with the following versions: -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` ::: diff --git a/docs/3.tutorials/fts/2-define-a-token.md b/docs/3.tutorials/fts/2-define-a-token.md index 193785b7df5..9d2a03b28ee 100644 --- a/docs/3.tutorials/fts/2-define-a-token.md +++ b/docs/3.tutorials/fts/2-define-a-token.md @@ -187,5 +187,5 @@ At the time of this writing, this example works with the following versions: - rustc: `1.77.1` - near-sdk-rs: `5.1.0` (with enabled `legacy` feature) - cargo-near: `0.6.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` ::: diff --git a/docs/3.tutorials/fts/3-circulating-supply.md b/docs/3.tutorials/fts/3-circulating-supply.md index 1176bd59cff..f53e5d81e99 100644 --- a/docs/3.tutorials/fts/3-circulating-supply.md +++ b/docs/3.tutorials/fts/3-circulating-supply.md @@ -386,5 +386,5 @@ At the time of this writing, this example works with the following versions: - rustc: `1.77.1` - near-sdk-rs: `5.1.0` (with enabled `legacy` feature) - cargo-near: `0.6.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` ::: diff --git a/docs/3.tutorials/fts/4.storage.md b/docs/3.tutorials/fts/4.storage.md index 71fbd25945c..aff6d8b39bf 100644 --- a/docs/3.tutorials/fts/4.storage.md +++ b/docs/3.tutorials/fts/4.storage.md @@ -236,5 +236,5 @@ At the time of this writing, this example works with the following versions: - rustc: `1.77.1` - near-sdk-rs: `5.1.0` (with enabled `legacy` feature) - cargo-near: `0.6.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` ::: diff --git a/docs/3.tutorials/fts/5.transfers.md b/docs/3.tutorials/fts/5.transfers.md index a08fc9f7646..680d67866f9 100644 --- a/docs/3.tutorials/fts/5.transfers.md +++ b/docs/3.tutorials/fts/5.transfers.md @@ -381,5 +381,5 @@ At the time of this writing, this example works with the following versions: - rustc: `1.77.1` - near-sdk-rs: `5.1.0` (with enabled `legacy` feature) - cargo-near: `0.6.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` ::: diff --git a/docs/3.tutorials/nfts/0-predeployed.md b/docs/3.tutorials/nfts/0-predeployed.md index 1d2f972beca..6d4dd8ab53b 100644 --- a/docs/3.tutorials/nfts/0-predeployed.md +++ b/docs/3.tutorials/nfts/0-predeployed.md @@ -153,7 +153,7 @@ Now that you're familiar with the process, you can jump to [Contract Architectur At the time of this writing, this example works with the following versions: -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` - NFT standard: [NEP171](https://nomicon.io/Standards/Tokens/NonFungibleToken/Core), version `1.0.0` ::: diff --git a/docs/3.tutorials/nfts/2-minting.md b/docs/3.tutorials/nfts/2-minting.md index 79d8d5bbea6..fe44ac23e69 100644 --- a/docs/3.tutorials/nfts/2-minting.md +++ b/docs/3.tutorials/nfts/2-minting.md @@ -433,7 +433,7 @@ In the [next tutorial](2-upgrade.md), you'll find out how to deploy a patch fix At the time of this writing, this example works with the following versions: - rustc: `1.77.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` - cargo-near `0.6.1` - NFT standard: [NEP171](https://nomicon.io/Standards/Tokens/NonFungibleToken/Core), version `1.0.0` - Metadata standard: [NEP177](https://nomicon.io/Standards/Tokens/NonFungibleToken/Metadata), version `2.1.0` diff --git a/docs/3.tutorials/nfts/2-upgrade.md b/docs/3.tutorials/nfts/2-upgrade.md index c57e5227248..fad585637b4 100644 --- a/docs/3.tutorials/nfts/2-upgrade.md +++ b/docs/3.tutorials/nfts/2-upgrade.md @@ -152,7 +152,7 @@ In the [next tutorial](3-enumeration.md), you'll implement the remaining functio At the time of this writing, this example works with the following versions: - rustc: `1.77.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` - cargo-near `0.6.1` - NFT standard: [NEP171](https://nomicon.io/Standards/Tokens/NonFungibleToken/Core), version `1.0.0` diff --git a/docs/3.tutorials/nfts/3-enumeration.md b/docs/3.tutorials/nfts/3-enumeration.md index 64ccfb03940..677ff25d649 100644 --- a/docs/3.tutorials/nfts/3-enumeration.md +++ b/docs/3.tutorials/nfts/3-enumeration.md @@ -146,7 +146,7 @@ In the [next tutorial](4-core.md), you'll implement the core functions needed to At the time of this writing, this example works with the following versions: - rustc: `1.77.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` - cargo-near `0.6.1` - NFT standard: [NEP171](https://nomicon.io/Standards/Tokens/NonFungibleToken/Core), version `1.0.0` - Enumeration standard: [NEP181](https://nomicon.io/Standards/Tokens/NonFungibleToken/Enumeration), version `1.0.0` diff --git a/docs/3.tutorials/nfts/4-core.md b/docs/3.tutorials/nfts/4-core.md index 56970e90b86..b822ca1a0d1 100644 --- a/docs/3.tutorials/nfts/4-core.md +++ b/docs/3.tutorials/nfts/4-core.md @@ -249,7 +249,7 @@ In the [next tutorial](5-approval.md), you'll learn about the approval managemen At the time of this writing, this example works with the following versions: - rustc: `1.77.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` - cargo-near `0.6.1` - NFT standard: [NEP171](https://nomicon.io/Standards/Tokens/NonFungibleToken/Core), version `1.0.0` - Enumeration standard: [NEP181](https://nomicon.io/Standards/Tokens/NonFungibleToken/Enumeration), version `1.0.0` diff --git a/docs/3.tutorials/nfts/5-approval.md b/docs/3.tutorials/nfts/5-approval.md index f845a7df92e..91ce732314a 100644 --- a/docs/3.tutorials/nfts/5-approval.md +++ b/docs/3.tutorials/nfts/5-approval.md @@ -602,7 +602,7 @@ In the [next tutorial](6-royalty.md), you'll learn about the royalty standards a At the time of this writing, this example works with the following versions: - rustc: `1.77.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` - cargo-near `0.6.1` - NFT standard: [NEP171](https://nomicon.io/Standards/Tokens/NonFungibleToken/Core), version `1.0.0` - Enumeration standard: [NEP181](https://nomicon.io/Standards/Tokens/NonFungibleToken/Enumeration), version `1.0.0` diff --git a/docs/3.tutorials/nfts/6-royalty.md b/docs/3.tutorials/nfts/6-royalty.md index 488f79dc565..434f21d9b88 100644 --- a/docs/3.tutorials/nfts/6-royalty.md +++ b/docs/3.tutorials/nfts/6-royalty.md @@ -289,7 +289,7 @@ If you want to see the finished code from this tutorial, you can go to the `nft- At the time of this writing, this example works with the following versions: - rustc: `1.77.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` - cargo-near `0.6.1` - NFT standard: [NEP171](https://nomicon.io/Standards/Tokens/NonFungibleToken/Core), version `1.0.0` - Enumeration standard: [NEP181](https://nomicon.io/Standards/Tokens/NonFungibleToken/Enumeration), version `1.0.0` diff --git a/docs/3.tutorials/nfts/7-events.md b/docs/3.tutorials/nfts/7-events.md index 07db0ac4fbf..0800e063002 100644 --- a/docs/3.tutorials/nfts/7-events.md +++ b/docs/3.tutorials/nfts/7-events.md @@ -296,7 +296,7 @@ In the [next tutorial](8-marketplace.md), you'll look at the basics of a marketp At the time of this writing, this example works with the following versions: - rustc: `1.77.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` - cargo-near `0.6.1` - NFT standard: [NEP171](https://nomicon.io/Standards/Tokens/NonFungibleToken/Core), version `1.0.0` - Events standard: [NEP297 extension](https://nomicon.io/Standards/Tokens/NonFungibleToken/Event), version `1.1.0` diff --git a/docs/3.tutorials/nfts/8-marketplace.md b/docs/3.tutorials/nfts/8-marketplace.md index db6f042f44f..fca75d6e4b7 100644 --- a/docs/3.tutorials/nfts/8-marketplace.md +++ b/docs/3.tutorials/nfts/8-marketplace.md @@ -398,7 +398,7 @@ You should now have a solid understanding of NFTs and marketplaces on NEAR. Feel At the time of this writing, this example works with the following versions: - rustc: `1.77.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` - cargo-near `0.6.1` - NFT standard: [NEP171](https://nomicon.io/Standards/Tokens/NonFungibleToken/Core), version `1.0.0` diff --git a/docs/3.tutorials/nfts/9-series.md b/docs/3.tutorials/nfts/9-series.md index 729a967dca4..3914fe298c6 100644 --- a/docs/3.tutorials/nfts/9-series.md +++ b/docs/3.tutorials/nfts/9-series.md @@ -716,7 +716,7 @@ Thank you so much for going through this journey with us! I wish you all the bes At the time of this writing, this example works with the following versions: - rustc: `1.77.1` -- near-cli-rs: `0.11.0` +- near-cli-rs: `0.17.0` - cargo-near `0.6.1` - NFT standard: [NEP171](https://nomicon.io/Standards/Tokens/NonFungibleToken/Core), version `1.0.0`