mezoAgent 0.2.2__tar.gz → 0.2.3__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mezoAgent
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: A LangChain based tool kit for AI Agents to send BTC and mUSD transactions on Mezo Matsnet.
5
5
  Author: Dreadwulf, Duck, Digi
6
6
  Requires-Python: >=3.7
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mezoAgent
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: A LangChain based tool kit for AI Agents to send BTC and mUSD transactions on Mezo Matsnet.
5
5
  Author: Dreadwulf, Duck, Digi
6
6
  Requires-Python: >=3.7
@@ -88,7 +88,7 @@ def mezo_agent_musd_transaction(transaction_prompt: str) -> str:
88
88
  return f"❌ Failed to prepare mUSD transaction: {str(e)}"
89
89
 
90
90
  # Build the transaction for the token transfer
91
- tx = musd_contract.functions.transfer(recipient, amount_token).buildTransaction({
91
+ tx = musd_contract.functions.transfer(recipient, amount_token).build_transaction({
92
92
  'chainId': 31611, # Mezo Testnet Chain ID
93
93
  'from': sender_address,
94
94
  'nonce': nonce,
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="mezoAgent",
5
- version="0.2.2",
5
+ version="0.2.3",
6
6
  packages=find_packages(),
7
7
  install_requires=[
8
8
  "web3",
File without changes
File without changes