Skip to content

Commit

Permalink
New translations nft-rpc.md (Chinese Simplified)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiaAutomation committed Dec 7, 2023
1 parent 77bb1af commit 0594ac4
Showing 1 changed file with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down Expand Up @@ -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
<Tabs
defaultValue="windows"
values={[
{label: 'Windows', value: 'windows'},
{label: 'Linux/MacOS', value: 'nix'},
]}>
{label: 'Linux/MacOS', value: 'nix'},
]}>
<TabItem value="windows">
```

```powershell
chia rpc wallet create_new_wallet '{\"wallet_type\": \"nft_wallet\"}'
```

```mdx-code-block
</TabItem>
<TabItem value="nix">
```

```bash
chia rpc wallet create_new_wallet '{"wallet_type": "nft_wallet"}'
```

```mdx-code-block
</TabItem>
</Tabs>
```

:::

Expand Down

0 comments on commit 0594ac4

Please sign in to comment.