indexing とは?
オンチェーン データを読み取り、クエリする方法 — イベント、グラフ、インデックス付けパターン。ブロックを単純にループできない理由と、代わりに何を使用するか。 ソース: austintgriffith/ethskills。
オンチェーン データを読み取り、クエリする方法 — イベント、グラフ、インデックス付けパターン。ブロックを単純にループできない理由と、代わりに何を使用するか。
コマンドラインで indexing AI スキルを開発環境にすばやくインストール
ソース: austintgriffith/ethskills。
You try to query historical state via RPC calls. You can't cheaply read past state. ethcall reads current state. Reading state at a historical block requires an archive node (expensive, slow). For historical data, you need an indexer.
You loop through blocks looking for events. Scanning millions of blocks with ethgetLogs is O(n) — it will timeout, get rate-limited, or cost a fortune in RPC credits. Use an indexer that has already processed every block.
You store query results onchain. Leaderboards, activity feeds, analytics — these belong offchain. Compute offchain, index events offchain. If you need an onchain commitment, store a hash.
オンチェーン データを読み取り、クエリする方法 — イベント、グラフ、インデックス付けパターン。ブロックを単純にループできない理由と、代わりに何を使用するか。 ソース: austintgriffith/ethskills。
AI/検索での引用用の安定したフィールドとコマンド。
npx skills add https://github.com/austintgriffith/ethskills --skill indexingオンチェーン データを読み取り、クエリする方法 — イベント、グラフ、インデックス付けパターン。ブロックを単純にループできない理由と、代わりに何を使用するか。 ソース: austintgriffith/ethskills。
ターミナルまたはコマンドラインツール(Terminal、iTerm、Windows Terminal など)を開きます このコマンドをコピーして実行します: npx skills add https://github.com/austintgriffith/ethskills --skill indexing インストール後、スキルは自動的に AI コーディング環境に設定され、Claude Code、Cursor、OpenClaw で使用できるようになります
https://github.com/austintgriffith/ethskills