Use the Hedera Agent Kit to build agents that can interact with the Hedera network in any framework you like
Project description
Hedera Agent Kit (Python)
Build Hedera-powered AI agents in under a minute.
📋 Contents
- Key Features
- About the Agent Kit Functionality
- Third Party Plugins
- Developer Examples
- 🚀 60-Second Quick-Start
- Agent Execution Modes
- Hedera Plugins & Tools
- Creating Plugins & Contributing
- License
- Credits
Key Features
This is the Python edition of the Hedera Agent Kit, providing a flexible and extensible framework for building AI-powered Hedera agents.
- 🔌 Plugin architecture for easy extensibility
- 🧠 LangChain integration with support for multiple AI frameworks
- 🪙 Comprehensive Hedera tools, including:
- Token creation and management (HTS)
- Smart contract execution (EVM)
- Account operations
- Topic (HCS) creation and messaging
- Transaction scheduling
- Allowances and approvals
Agent Kit Functionality
The list of currently available Hedera plugins and functionality can be found in the Plugins & Tools section of this page.
👉 See docs/HEDERAPLUGINS.md for the full catalogue & usage examples.
Want to add more functionality from Hedera Services? Open an issue!
Third Party Plugins
The Hedera Agent Kit is extensible with third party plugins by other projects. See how you can build and submit your own plugin to listed as a Hedera Agent Kit plugin in Hedera Docs and README in docs/PLUGINS.md
Developer Examples
You can try out examples of the different types of agents you can build by following the instructions in the Developer Examples doc in this repo.
First follow instructions in the Developer Examples to clone and configure the example, then choose from one of the examples to run:
- Option A - Plugin Tool Calling Agent (LangChain v1)
- Option B - Tool Calling Agent (LangChain Classic)
- Option C - Plugin Tool Calling Agent (LangChain Classic)
- Option D - Structured Chat Agent (LangChain Classic)
- Option E - Preconfigured MCPs Agent (LangChain v1)
- Option F - Plugin Tool Calling Agent (Google ADK)
- Option G - Return Bytes Mode Agents (ADK & LangChain)
🚀 60-Second Quick-Start
See more info at https://pypi.org/project/hedera-agent-kit/
🆓 Free AI Options Available!
- Ollama: 100% free, runs on your computer, no API key needed
- Groq: Offers generous free tier with API key
- Claude & OpenAI: Paid options for production use
1 – Project Setup
Create a directory for your project:
mkdir hello-hedera-agent-kit
cd hello-hedera-agent-kit
Create and activate a virtual environment:
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
Install dependencies:
pip install hedera-agent-kit langchain langchain-openai langgraph python-dotenv
2 – Configure: Add Environment Variables
Create an .env file in the root directory of your project:
touch .env
If you already have a testnet account, you can use it. Otherwise, you can create a new one at https://portal.hedera.com/dashboard
Add the following to the .env file:
# Required: Hedera credentials (get free testnet account at https://portal.hedera.com/dashboard)
ACCOUNT_ID="0.0.xxxxx"
PRIVATE_KEY="302..." # DER encoded private key (e.g. from Hedera Portal)
# Optional: Add the API key for your chosen AI provider
OPENAI_API_KEY="sk-proj-..." # For OpenAI (https://platform.openai.com/api-keys)
ANTHROPIC_API_KEY="sk-ant-..." # For Claude (https://console.anthropic.com)
GROQ_API_KEY="gsk_..." # For Groq free tier (https://console.groq.com/keys)
# Ollama doesn't need an API key (runs locally)
NOTE: Using Hex Encoded Keys (ECDSA/ED25519)? The
PrivateKey.from_string()method used in the examples expects a DER encoded key string. If you are using a hex encoded private key (common in some wallets), you should update the code to use the specific factory method:
PrivateKey.from_ed25519(bytes.fromhex(os.getenv("PRIVATE_KEY")))PrivateKey.from_ecdsa(bytes.fromhex(os.getenv("PRIVATE_KEY")))
3 – Simple "Hello Hedera Agent Kit" Example
Create a new file called main.py:
touch main.py
Add the following code:
# main.py
import asyncio
import os
from dotenv import load_dotenv
from hedera_agent_kit.langchain.toolkit import HederaLangchainToolkit
from hedera_agent_kit.plugins import (
core_account_plugin,
core_account_query_plugin,
core_token_plugin,
core_consensus_plugin,
)
from hedera_agent_kit.shared.configuration import Configuration, Context, AgentMode
from hiero_sdk_python import Client, Network, AccountId, PrivateKey
from langchain.agents import create_agent
from langchain_core.runnables import RunnableConfig
from langchain_openai import ChatOpenAI
from langgraph.checkpoint.memory import MemorySaver
load_dotenv()
async def main():
# Hedera client setup (Testnet by default)
account_id = AccountId.from_string(os.getenv("ACCOUNT_ID"))
private_key = PrivateKey.from_string(os.getenv("PRIVATE_KEY"))
client = Client(Network(network="testnet"))
client.set_operator(account_id, private_key)
# Prepare Hedera toolkit
hedera_toolkit = HederaLangchainToolkit(
client=client,
configuration=Configuration(
tools=[], # Empty = load all tools from plugins
plugins=[
core_account_plugin,
core_account_query_plugin,
core_token_plugin,
core_consensus_plugin,
],
context=Context(
mode=AgentMode.AUTONOMOUS,
account_id=str(account_id),
),
),
)
tools = hedera_toolkit.get_tools()
llm = ChatOpenAI(
model="gpt-4o-mini",
api_key=os.getenv("OPENAI_API_KEY"),
)
agent = create_agent(
model=llm,
tools=tools,
checkpointer=MemorySaver(),
system_prompt="You are a helpful assistant with access to Hedera blockchain tools and plugin tools",
)
print("Sending a message to the agent...")
response = await agent.ainvoke(
{"messages": [{"role": "user", "content": "what's my balance?"}]},
config={"configurable": {"thread_id": "1"}},
)
final_message_content = response["messages"][-1].content
print("\n--- Agent Response ---")
print(final_message_content)
print("----------------------")
if __name__ == "__main__":
asyncio.run(main())
4 – Run Your "Hello Hedera Agent Kit" Example
From the root directory, run your example agent:
python main.py
If you would like, try adding in other prompts to the agent to see what it can do:
# original
response = await agent.ainvoke(
{"messages": [{"role": "user", "content": "what's my balance?"}]},
config={"configurable": {"thread_id": "1"}},
)
# or
response = await agent.ainvoke(
{"messages": [{"role": "user", "content": "create a new token called 'TestToken' with symbol 'TEST'"}]},
config={"configurable": {"thread_id": "1"}},
)
# or
response = await agent.ainvoke(
{"messages": [{"role": "user", "content": "transfer 5 HBAR to account 0.0.1234"}]},
config={"configurable": {"thread_id": "1"}},
)
# or
response = await agent.ainvoke(
{"messages": [{"role": "user", "content": "create a new topic for project updates"}]},
config={"configurable": {"thread_id": "1"}},
)
To get other Hedera Agent Kit tools working, take a look at the example agent implementations at https://github.com/hashgraph/hedera-agent-kit-py/tree/main/python/examples
About the Agent Kit
Agent Execution Modes
This tool has two execution modes with AI agents; autonomous execution and return bytes:
| Mode | Description |
|---|---|
AgentMode.AUTONOMOUS |
The transaction will be executed autonomously using the operator account. |
AgentMode.RETURN_BYTES |
The transaction bytes will be returned for the user to sign and execute. |
Hedera Plugins & Tools
The Hedera Agent Kit provides a set of tools, bundled into plugins, to interact with the Hedera network. See how to build your own plugins in docs/HEDERAPLUGINS.md
Currently, the following plugins are available:
Core Account Plugin: Tools for Hedera Account Service operations
- Transfer HBAR
- Create, Update, Delete Account
- Approve and Delete Allowances
Core Consensus Plugin: Tools for Hedera Consensus Service (HCS) operations
- Create, Update, Delete Topic
- Submit a message to a Topic
Core Token Plugin: Tools for Hedera Token Service operations
- Create Fungible and Non-Fungible Tokens
- Mint Tokens
- Associate and Dissociate Tokens
- Airdrop Fungible Tokens
- Transfer with Allowances
Core EVM Plugin: Tools for EVM smart contract operations
- Create and Transfer ERC-20 Tokens
- Create and Transfer ERC-721 Tokens
Core Query Plugins: Tools for querying Hedera network data
- Get Account Info and HBAR Balance
- Get Token Info and Balances
- Get Topic Info
- Get Transaction Records
- Get Exchange Rate
See more in docs/HEDERAPLUGINS.md and docs/HEDERATOOLS.md
Creating Plugins & Contributing
-
You can find a guide for creating plugins in docs/PLUGINS.md
-
If you would like to contribute and suggest improvements for the Python SDK, see CONTRIBUTING.md for details on how to contribute to the Hedera Agent Kit.
License
Apache 2.0
Credits
Special thanks to the developers of the Stripe Agent Toolkit who provided the inspiration for the architecture and patterns used in this project.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hedera_agent_kit-3.4.2.tar.gz.
File metadata
- Download URL: hedera_agent_kit-3.4.2.tar.gz
- Upload date:
- Size: 96.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84349f08bdafb83beb081625417fecab7be2ef3a55cc726ef183fb720fe2f2ff
|
|
| MD5 |
529949c2705a4e4b29d64afa8262b0b5
|
|
| BLAKE2b-256 |
da9a2475a548624ae1549e2c3d88cc4681bc38527404f2de5d0ad6c1636d05d6
|
Provenance
The following attestation bundles were made for hedera_agent_kit-3.4.2.tar.gz:
Publisher:
release.yml on hashgraph/hedera-agent-kit-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hedera_agent_kit-3.4.2.tar.gz -
Subject digest:
84349f08bdafb83beb081625417fecab7be2ef3a55cc726ef183fb720fe2f2ff - Sigstore transparency entry: 1357629338
- Sigstore integration time:
-
Permalink:
hashgraph/hedera-agent-kit-py@592cfb8c5270c3c178519f0a484313cb108c1bba -
Branch / Tag:
refs/tags/v3.4.2 - Owner: https://github.com/hashgraph
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
self-hosted -
Publication workflow:
release.yml@592cfb8c5270c3c178519f0a484313cb108c1bba -
Trigger Event:
push
-
Statement type:
File details
Details for the file hedera_agent_kit-3.4.2-py3-none-any.whl.
File metadata
- Download URL: hedera_agent_kit-3.4.2-py3-none-any.whl
- Upload date:
- Size: 182.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7121ecb829a66be13939697b3ccdab0aaf8d8ca2fbc2210122e665db2fa95dc
|
|
| MD5 |
4534629f9a90fc25f30c4c8c04e3475f
|
|
| BLAKE2b-256 |
53a1d372237aeebb4010b60644605816ef3f8680950fe0ce5c52d6d680cc2d4e
|
Provenance
The following attestation bundles were made for hedera_agent_kit-3.4.2-py3-none-any.whl:
Publisher:
release.yml on hashgraph/hedera-agent-kit-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hedera_agent_kit-3.4.2-py3-none-any.whl -
Subject digest:
e7121ecb829a66be13939697b3ccdab0aaf8d8ca2fbc2210122e665db2fa95dc - Sigstore transparency entry: 1357629377
- Sigstore integration time:
-
Permalink:
hashgraph/hedera-agent-kit-py@592cfb8c5270c3c178519f0a484313cb108c1bba -
Branch / Tag:
refs/tags/v3.4.2 - Owner: https://github.com/hashgraph
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
self-hosted -
Publication workflow:
release.yml@592cfb8c5270c3c178519f0a484313cb108c1bba -
Trigger Event:
push
-
Statement type: