jpskill.com
💼 ビジネス コミュニティ

aave-integration

AAVE V3プロトコルと直接連携し、オンチェーンデータの読み取り、APYレートの取得、ポジション変更のシミュレーション、プロトコル操作をプログラムで実行するSkill。

📜 元の英語説明(参考)

This skill should be used when the user needs to interact with AAVE V3 protocol contracts directly, read on-chain data, get reserve configurations, fetch current APY rates, simulate position changes, or execute protocol operations programmatically. Provides low-level access to AAVE Pool contracts, UI Pool Data Provider, and quote generation for supply, borrow, repay, and withdraw operations on Ethereum and Arbitrum.

🇯🇵 日本人クリエイター向け解説

一言でいうと

AAVE V3プロトコルと直接連携し、オンチェーンデータの読み取り、APYレートの取得、ポジション変更のシミュレーション、プロトコル操作をプログラムで実行するSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-17
取得日時
2026-05-17
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

AAVE V3 インテグレーション

AAVE V3 プロトコルコントラクトとの低レベルなインテグレーションにより、オンチェーンデータの読み取りとオペレーションの見積もり生成を行います。

概要

このスキルは以下を提供します。

  1. コントラクトインターフェース定義 - AAVE V3 コントラクトの ABI
  2. 見積もり生成 - 供給、借り入れ、返済、引き出しの見積もりを取得するスクリプト
  3. APY データ - すべてのアセットの現在の供給/借り入れ APY を取得するスクリプト
  4. ポジションシミュレーション - アクションがヘルスファクターとリスクにどのように影響するかをプレビューするスクリプト
  5. リザーブ設定 - チェーンからアセットパラメータを読み取る
  6. ユーザーアカウントデータ - ユーザーのポジションとヘルス指標を読み取る

コントラクトアドレス

Ethereum メインネット (chainId: 1)

コントラクト アドレス
PoolAddressesProvider 0x2f39d218133AFaB8F2B819B1066c7E434Ad94E9e
Pool (Proxy) 0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2
UiPoolDataProvider 0x91c0eA31b49B69Ea18607702c5d9aC360bf3dE7d
PoolDataProvider 0x7B4EB56E7CD4b454BA8ff71E4518426369a138a3

Arbitrum One (chainId: 42161)

コントラクト アドレス
PoolAddressesProvider 0xa97684ead0e402dC232d5A977953DF7ECBaB3CDb
Pool (Proxy) 0x794a61358D6845594F94dc1DB02A252b5b4814aD
UiPoolDataProvider 0x5c5228aC8BC1528482514aF3e27D692c20E5c41F
PoolDataProvider 0x69FA688f1Dc47d4B5d8029D5a35FB7a548310654

見積もりインターフェース

Supply Quote

interface SupplyQuote {
  token: string;
  tokenAddress: string;
  amount: string;
  amountWei: string;
  apy: string;
  aTokenAddress: string;
  usageRatio: string;
  totalLiquidity: string;
}

トークンアドレス参照

Ethereum (chainId: 1)

Symbol Address Decimals
USDC 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 6
USDT 0xdAC17F958D2ee523a2206206994597C13D831ec7 6
WETH 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 18
WBTC 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599 8
DAI 0x6B175474E89094C44Da98b954EedeAC495271d0F 18

Arbitrum (chainId: 42161)

Symbol Address Decimals
USDC 0xaf88d065e77c8cC2239327C5EDb3A432268e5831 6
USDT 0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9 6
WETH 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1 18
WBTC 0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f 8
DAI 0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1 18

スクリプト

quote-apy.ts

すべてのホワイトリスト登録されたアセットの現在の APY データを取得します。

npx tsx packages/plugins/aave-integration/scripts/quote-apy.ts <chainId>

simulate-position.ts

アクションがユーザーのポジションにどのように影響するかをシミュレートします。

npx tsx packages/plugins/aave-integration/scripts/simulate-position.ts <chainId> <userAddress> <action> <token> <amount>

外部ドキュメント

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

AAVE V3 Integration

Low-level integration with AAVE V3 protocol contracts for reading on-chain data and generating operation quotes.

Overview

This skill provides:

  1. Contract Interface Definitions - ABIs for AAVE V3 contracts
  2. Quote Generation - Scripts to get supply, borrow, repay, withdraw quotes
  3. APY Data - Scripts to fetch current supply/borrow APY for all assets
  4. Position Simulation - Scripts to preview how actions affect Health Factor and risk
  5. Reserve Configuration - Reading asset parameters from chain
  6. User Account Data - Reading user positions and health metrics

Contract Addresses

Ethereum Mainnet (chainId: 1)

Contract Address
PoolAddressesProvider `0x2f39d218133AFaB8F2B819B1066c7E434Ad94E9e`
Pool (Proxy) `0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2`
UiPoolDataProvider `0x91c0eA31b49B69Ea18607702c5d9aC360bf3dE7d`
PoolDataProvider `0x7B4EB56E7CD4b454BA8ff71E4518426369a138a3`

Arbitrum One (chainId: 42161)

Contract Address
PoolAddressesProvider `0xa97684ead0e402dC232d5A977953DF7ECBaB3CDb`
Pool (Proxy) `0x794a61358D6845594F94dc1DB02A252b5b4814aD`
UiPoolDataProvider `0x5c5228aC8BC1528482514aF3e27D692c20E5c41F`
PoolDataProvider `0x69FA688f1Dc47d4B5d8029D5a35FB7a548310654`

Quote Interfaces

Supply Quote

```typescript interface SupplyQuote { token: string; tokenAddress: string; amount: string; amountWei: string; apy: string; aTokenAddress: string; usageRatio: string; totalLiquidity: string; } ```

Token Address Reference

Ethereum (chainId: 1)

Symbol Address Decimals
USDC `0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48` 6
USDT `0xdAC17F958D2ee523a2206206994597C13D831ec7` 6
WETH `0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2` 18
WBTC `0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599` 8
DAI `0x6B175474E89094C44Da98b954EedeAC495271d0F` 18

Arbitrum (chainId: 42161)

Symbol Address Decimals
USDC `0xaf88d065e77c8cC2239327C5EDb3A432268e5831` 6
USDT `0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9` 6
WETH `0x82aF49447D8a07e3bd95BD0d56f35241523fBab1` 18
WBTC `0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f` 8
DAI `0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1` 18

Scripts

quote-apy.ts

Fetches current APY data for all whitelisted assets.

```bash npx tsx packages/plugins/aave-integration/scripts/quote-apy.ts <chainId> ```

simulate-position.ts

Simulates how an action would affect a user's position.

```bash npx tsx packages/plugins/aave-integration/scripts/simulate-position.ts <chainId> <userAddress> <action> <token> <amount> ```

External Documentation