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
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @PetarStoev02
26 changes: 26 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,32 @@ Use conventional commits:
- Link to the related issue if there is one
- Make sure tests pass

## Local development

```bash
git clone https://github.com/YOUR_USERNAME/cli.git
cd cli
npm install
```

### Run the dev build

```bash
npm run dev
```

### Run tests

```bash
npm test
```

### Run all CI checks locally

```bash
npm run typecheck && npm run lint && npm run format:check && npm run build && npm test
```

## Related Repos

- [@w3-kit/registry](https://github.com/w3-kit/registry) — Chain/token data
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# w3-kit

[![CI](https://github.com/w3-kit/cli/actions/workflows/ci.yml/badge.svg)](https://github.com/w3-kit/cli/actions/workflows/ci.yml)
[![npm](https://img.shields.io/npm/v/w3-kit)](https://www.npmjs.com/package/w3-kit)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE)

CLI toolkit for web3 development.

## Install
Expand Down
Loading