Skip to content
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ See our docs on [integrating your wallet](https://docs.hyperweb.io/cosmos-kit/in
For high-level examples suitable for most developers, explore our [create-cosmos-app](https://github.com/hyperweb-io/create-cosmos-app). For a deeper, more technical understanding, this repository contains an example, which is also useful when integrating new wallets.

```sh
yarn build
pnpm run build
cd packages/example
yarn dev
pnpm dev
```

#### [Basic Next.js Example](https://github.com/hyperweb-io/cosmos-kit/tree/main/examples)
Expand All @@ -141,19 +141,19 @@ This example is ideal for developers looking to create integrations for Vue.js,

## 🛠 Developing

Checkout the repository and bootstrap the yarn workspace:
Checkout the repository and bootstrap the pnpm workspace:

```sh
# Clone the repo.
git clone https://github.com/hyperweb-io/cosmos-kit
cd cosmos-kit
yarn
pnpm install
```

### Building

```sh
yarn build
pnpm run build
```

### Publishing
Expand Down
6 changes: 0 additions & 6 deletions examples/cosmos-kit-nextjs-app-router-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,7 @@ This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-
First, run the development server:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
Expand Down
4 changes: 1 addition & 3 deletions examples/cosmos-kit-nextjs-pages-router-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
First, run the development server:

```bash
npm run dev
# or
yarn dev
pnpm dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
Expand Down
10 changes: 5 additions & 5 deletions packages/cosmos-kit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ See our docs on [integrating your wallet](https://docs.hyperweb.io/cosmos-kit/in
For high-level examples suitable for most developers, explore our [create-cosmos-app](https://github.com/hyperweb-io/create-cosmos-app). For a deeper, more technical understanding, this repository contains an example, which is also useful when integrating new wallets.

```sh
yarn build
pnpm run build
cd packages/example
yarn dev
pnpm dev
```

#### [Basic Next.js Example](https://github.com/hyperweb-io/cosmos-kit/tree/main/packages/example)
Expand All @@ -139,19 +139,19 @@ This example is ideal for developers looking to create integrations for Vue.js,

## 🛠 Developing

Checkout the repository and bootstrap the yarn workspace:
Checkout the repository and bootstrap the pnpm workspace:

```sh
# Clone the repo.
git clone https://github.com/hyperweb-io/cosmos-kit
cd cosmos-kit
yarn
pnpm install
```

### Building

```sh
yarn build
pnpm run build
```

### Publishing
Expand Down
2 changes: 1 addition & 1 deletion packages/react-lite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Cosmos Kit is a universal wallet adapter for developers to build apps that quick
## Installation

```sh
yarn add @cosmos-kit/react @cosmos-kit/core @cosmos-kit/keplr chain-registry
pnpm add @cosmos-kit/react @cosmos-kit/core @cosmos-kit/keplr chain-registry
```

## Provider
Expand Down
2 changes: 1 addition & 1 deletion packages/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Cosmos Kit is a universal wallet adapter for developers to build apps that quick
## Installation

```sh
yarn add @cosmos-kit/react @cosmos-kit/core @cosmos-kit/keplr chain-registry
pnpm add @cosmos-kit/react @cosmos-kit/core @cosmos-kit/keplr chain-registry
```

## Provider
Expand Down
Loading