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
- Host: GitHub
- URL: https://github.com/nakamura196/ethers-ja-tutorial
- Owner: nakamura196
- License: mit
- Created: 2026-02-25T12:01:10.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-05-03T11:56:08.000Z (about 2 months ago)
- Last Synced: 2026-05-03T12:28:54.447Z (about 2 months ago)
- Topics: blockchain, ethereum, ethersjs, japanese, tutorial, vitepress, web3
- Homepage: https://nakamura196.github.io/ethers-ja-tutorial/
- Size: 68.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.