Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ciaranightingale committed Sep 13, 2023
1 parent 7211521 commit 43ed90a
Showing 1 changed file with 30 additions and 5 deletions.
35 changes: 30 additions & 5 deletions docs/onboarding/3 EVM SDK/2 Getting Started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,43 @@ title: Getting Started
---

import SupportedLanguagesSection from "@components/SupportedLanguagesSection";
import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";
import CodeBlock from "@theme/CodeBlock";

# Getting Started

To use the Contract SDK to interact with contracts.
To get started using the Contract SDK to interact with contracts, there are two options:

## Create a New Project
1. Create a new project with the CLI which automatically sets up the relevant package(s).
2. Add to an existing project by installing the relevant package(s).

To create a new project, use the thirdweb `create` command to setup the project and install the required dependencies:
## 1. Create a New Project

different for each language tab here
To create a new project, use the thirdweb `create` command to setup the project and install the required dependencies:

## Add to an Existing Project
<Tabs>
<TabItem value="TypeScript" label="TypeScript" default>
<CodeBlock language="bash">{``}</CodeBlock>
</TabItem>
<TabItem value="react" label="React">
<CodeBlock language="bash">{``}</CodeBlock>
</TabItem>
<TabItem value="react-native" label="React Native">
<CodeBlock language="bash">{``}</CodeBlock>
</TabItem>
<TabItem value="unity" label="Unity">
<CodeBlock language="bash">{``}</CodeBlock>
</TabItem>
<TabItem value="python" label="Python">
<CodeBlock language="bash">{``}</CodeBlock>
</TabItem>
<TabItem value="go" label="GO">
<CodeBlock language="bash">{``}</CodeBlock>
</TabItem>
</Tabs>

## 2. Add to an Existing Project

To add to an existing project, install the relevant package(s) and import into the desired files:

Expand Down

0 comments on commit 43ed90a

Please sign in to comment.