mezoAgent 0.3.1__py3-none-any.whl → 0.3.3__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- mezoAgent-0.3.3.dist-info/METADATA +9 -0
- {mezoAgent-0.3.1.dist-info → mezoAgent-0.3.3.dist-info}/RECORD +5 -5
- mezo_agent/config.py +2 -1
- mezoAgent-0.3.1.dist-info/METADATA +0 -10
- {mezoAgent-0.3.1.dist-info → mezoAgent-0.3.3.dist-info}/WHEEL +0 -0
- {mezoAgent-0.3.1.dist-info → mezoAgent-0.3.3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,9 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: mezoAgent
|
3
|
+
Version: 0.3.3
|
4
|
+
Summary: A Python package for Mezo Agent transactions with LangChain tools
|
5
|
+
Author: Dreadwulf, Duck, Digi
|
6
|
+
Requires-Dist: python-dotenv
|
7
|
+
Requires-Dist: web3
|
8
|
+
Requires-Dist: langchain
|
9
|
+
Requires-Dist: langchain_openai
|
@@ -1,9 +1,9 @@
|
|
1
1
|
mezo_agent/__init__.py,sha256=XOJWLvrxgH7jBkKdXFLVGLV2dmCyyRpo8VcjicWBD0I,133
|
2
|
-
mezo_agent/config.py,sha256=
|
2
|
+
mezo_agent/config.py,sha256=D5lNOK34HFi_ZT7rAKxbf15j3GG6K90dCKltKeklF00,2164
|
3
3
|
mezo_agent/parsing.py,sha256=rolPVE8r_RS6BqKe25r1nyZQ47rvTPG2Hv09Kxxfv4c,2821
|
4
4
|
mezo_agent/swap_musd_btc.py,sha256=Co-XcfK73spm94VC6qzGY0VYoGwsMDKKHM8ToGh2JxU,4289
|
5
5
|
mezo_agent/transaction.py,sha256=YpfWrkEaf0YGM_Kc4cFwlT9GmBGZkeJHWm0VGHs9Gks,4199
|
6
|
-
mezoAgent-0.3.
|
7
|
-
mezoAgent-0.3.
|
8
|
-
mezoAgent-0.3.
|
9
|
-
mezoAgent-0.3.
|
6
|
+
mezoAgent-0.3.3.dist-info/METADATA,sha256=dS7wLMopH2QBboolv6V_X1w8eJUY40l5d1Q9_OUZ9iA,273
|
7
|
+
mezoAgent-0.3.3.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
8
|
+
mezoAgent-0.3.3.dist-info/top_level.txt,sha256=rrAci_NyTR9z6w_BrQhQrAhzMW_A0NYhVa0x2USl0nQ,11
|
9
|
+
mezoAgent-0.3.3.dist-info/RECORD,,
|
mezo_agent/config.py
CHANGED
@@ -44,7 +44,8 @@ WRAPPED_BTC_ADDRESS = "0xA460F83cdd9584E4bD6a9838abb0baC58EAde999"
|
|
44
44
|
ROUTER_ADDRESS = "0xC2E61936a542D78b9c3AA024fA141c4C632DF6c1"
|
45
45
|
|
46
46
|
# Load router ABI from a JSON file packaged with mezoAgent
|
47
|
-
router_abi_path = os.path.join(os.path.dirname(__file__), "new_router_abi.json")
|
47
|
+
router_abi_path = os.path.join(os.path.dirname(__file__), "data", "new_router_abi.json")
|
48
48
|
with open(router_abi_path, "r") as f:
|
49
49
|
router_abi = json.load(f)
|
50
|
+
|
50
51
|
router_contract = web3_instance.eth.contract(address=ROUTER_ADDRESS, abi=router_abi)
|
@@ -1,10 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: mezoAgent
|
3
|
-
Version: 0.3.1
|
4
|
-
Summary: A LangChain based tool kit for AI Agents to send BTC and mUSD transactions on Mezo Matsnet.
|
5
|
-
Author: Dreadwulf, Duck, Digi
|
6
|
-
Requires-Python: >=3.7
|
7
|
-
Requires-Dist: web3
|
8
|
-
Requires-Dist: langchain
|
9
|
-
Requires-Dist: langchain-openai
|
10
|
-
Requires-Dist: python-dotenv
|
File without changes
|
File without changes
|