An open API service indexing awesome lists of open source software.

https://github.com/nakamura196/ethers-ja-tutorial

ethers.js v6 の日本語チュートリアル / Japanese Tutorial for ethers.js v6
https://github.com/nakamura196/ethers-ja-tutorial

blockchain ethereum ethersjs japanese tutorial vitepress web3

Last synced: 17 days ago
JSON representation

ethers.js v6 の日本語チュートリアル / Japanese Tutorial for ethers.js v6

Awesome Lists containing this project

README

          

# ethers-ja-tutorial

ethers.js v6 の日本語チュートリアル / Japanese Tutorial for ethers.js v6

## 概要

Ethereum の JavaScript/TypeScript ライブラリである [ethers.js](https://docs.ethers.org/v6/) を、初心者にもわかりやすく日本語で解説するチュートリアルです。

## 対象読者

- JavaScript/TypeScript の基礎知識がある方
- Ethereum やブロックチェーンに興味があるエンジニア
- ethers.js を初めて使う方

## 目次

1. [環境構築](docs/01-setup.md) - Node.js と ethers.js のインストール
2. [プロバイダー](docs/02-provider.md) - Ethereum ネットワークへの接続
3. [ウォレット](docs/03-wallet.md) - ウォレットの作成と管理
4. [ブロックチェーンの読み取り](docs/04-read-blockchain.md) - 残高確認・ブロック情報の取得
5. [トランザクション送信](docs/05-send-transaction.md) - ETH の送金
6. [スマートコントラクト](docs/06-smart-contract.md) - コントラクトとのやり取り
7. [イベント](docs/07-events.md) - イベントのリスニング
8. [ユーティリティ](docs/08-utilities.md) - 単位変換・ハッシュなどの便利機能

## サンプルコードの実行

```bash
npm install
node examples/01-connect.mjs
```

## ライセンス

MIT

## Overview (English)

A beginner-friendly Japanese tutorial for [ethers.js v6](https://docs.ethers.org/v6/). Covers providers, wallets, transactions, smart contracts, events, and utilities with practical code examples.

## Contributing

Contributions are welcome! Please feel free to submit PRs for corrections, additional examples, or translations into other languages.