Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add TS component of the First NFT with SDK tutorial #3428

Merged
merged 1 commit into from
Aug 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions developer-docs-site/docs/tutorials/first-transaction-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ The `transfer-coin` example code uses helper functions to interact with the [RES
<TabItem value="typescript" label="Typescript">

:::tip See the full example
See [`transfer-coin`](https://github.com/aptos-labs/aptos-core/blob/main/ecosystem/typescript/sdk/examples/typescript/transfer_coin.ts) for the complete code as you follow the below steps.
See [`transfer_coin`](https://github.com/aptos-labs/aptos-core/blob/main/ecosystem/typescript/sdk/examples/typescript/transfer_coin.ts) for the complete code as you follow the below steps.
:::
</TabItem>
<TabItem value="python" label="Python">
Expand All @@ -137,9 +137,9 @@ See [`transfer-coin`](https://github.com/aptos-labs/aptos-core/blob/main/sdk/exa

### Step 4.1: Initializing the Clients

In the first step, the `transfer-coin` example initializes both the REST and faucet clients.
In the first step, the `transfer-coin` example initializes both the API and faucet clients.

- The REST client interacts with the REST API, and
- The API client interacts with the REST API, and
- The faucet client interacts with the devnet Faucet service for creating and funding accounts.

<Tabs groupId="sdk-examples">
Expand Down
Loading