Skip to content
Closed
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
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
The main SDK package providing all-in-one web3 functionality for Browser, Node, and Mobile applications.

```bash
npm install thirdweb
pnpm add thirdweb
```

**Features:**
Expand All @@ -46,7 +46,7 @@ Visit the [developer portal](https://portal.thirdweb.com) for full documentation
#### For React Applications

```bash
npm install thirdweb
pnpm add thirdweb
```

```typescript
Expand All @@ -70,7 +70,7 @@ For React Native Applications, you'll also need to install the `@thirdweb-dev/re
#### For Backend Applications

```bash
npm install thirdweb
pnpm add thirdweb
```

```typescript
Expand Down Expand Up @@ -107,15 +107,15 @@ await wallet.enqueueTransaction({
Required polyfills and configuration for running the thirdweb SDK in React Native applications.

```bash
npm install @thirdweb-dev/react-native-adapter
pnpm add @thirdweb-dev/react-native-adapter
```

#### [`@thirdweb-dev/wagmi-adapter`](./packages/wagmi-adapter/README.md)

Integration layer for using thirdweb's in-app wallets with wagmi.

```bash
npm install @thirdweb-dev/wagmi-adapter
pnpm add @thirdweb-dev/wagmi-adapter
```

## Type safe API wrappers
Expand All @@ -125,39 +125,39 @@ npm install @thirdweb-dev/wagmi-adapter
TypeScript SDK for thirdweb's API, combining all of thirdweb products.

```bash
npm install @thirdweb-dev/api
pnpm add @thirdweb-dev/api
```

#### [`@thirdweb-dev/engine`](./packages/engine/README.md)

TypeScript SDK for Engine, thirdweb's backend onchain executor service.

```bash
npm install @thirdweb-dev/engine
pnpm add @thirdweb-dev/engine
```

#### [`@thirdweb-dev/insight`](./packages/insight/README.md)

TypeScript SDK for Insight, thirdweb's multichain indexer service.

```bash
npm install @thirdweb-dev/insight
pnpm add @thirdweb-dev/insight
```

#### [`@thirdweb-dev/vault-sdk`](./packages/vault-sdk/README.md)

SDK for interacting with Vault, thirdweb's secure key management service.

```bash
npm install @thirdweb-dev/vault-sdk
pnpm add @thirdweb-dev/vault-sdk
```

#### [`@thirdweb-dev/nebula`](./packages/nebula/README.md)

TypeScript SDK for Nebula, thirdweb's AI agent service.

```bash
npm install @thirdweb-dev/nebula
pnpm add @thirdweb-dev/nebula
```

## Contributing
Expand Down