diff --git a/i18n/zh-Hans/docusaurus-plugin-content-docs/current/guides/nft/nft-rpc.md b/i18n/zh-Hans/docusaurus-plugin-content-docs/current/guides/nft/nft-rpc.md index 8504ca5f37..5a15474103 100644 --- a/i18n/zh-Hans/docusaurus-plugin-content-docs/current/guides/nft/nft-rpc.md +++ b/i18n/zh-Hans/docusaurus-plugin-content-docs/current/guides/nft/nft-rpc.md @@ -3,10 +3,8 @@ slug: /guides/nft-rpc title: Minting NFTs With RPC --- -```mdx-code-block import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; -``` The next section of this tutorial will demonstrate how to create and use DIDs and NFTs using RPCs. If you wish to use the CLI instead, head to the [CLI section](/guides/nft-cli). @@ -35,33 +33,27 @@ When running RPC commands with JSON inputs on **Windows**, you will need to esca Here is an example of the difference between the syntax: -```mdx-code-block + {label: 'Linux/MacOS', value: 'nix'}, + ]}> -``` ```powershell chia rpc wallet create_new_wallet '{\"wallet_type\": \"nft_wallet\"}' ``` -```mdx-code-block -``` ```bash chia rpc wallet create_new_wallet '{"wallet_type": "nft_wallet"}' ``` -```mdx-code-block -``` :::