Metadata-Version: 2.4
Name: langchain-near-decrypt-wallet
Version: 1.0.0
Summary: LangChain Tool - NEAR decrypt wallet
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: langchain>=0.2
Requires-Dist: langchain-openai>=0.1
Requires-Dist: requests>=2.31
Requires-Dist: pydantic>=2.0
Requires-Dist: base58>=2.1
Requires-Dist: PyNaCl>=1.5
Requires-Dist: cryptography>=41.0

# LangChain Tool - NEAR decrypt wallet

Build a LangChain tool to decrypt wallets on NEAR.

**Deliverables:**
1. LangChain BaseTool implementation
2. Async support
3. Type hints
4. Published to PyPI

**Success Metric:** 15+ downloads

---
*

## Install

```bash
pip install -r requirements.txt
```

## Tools

- `NEARAccountTool` — see near_tool.py
- `NEARViewFunctionTool` — see near_tool.py
- `NEARDecryptWalletTool` — see near_tool.py
- `NEAREncryptWalletTool` — see near_tool.py

## Usage

```python
from near_tool import NEARAccountTool, NEARViewFunctionTool, NEARDecryptWalletTool, NEAREncryptWalletTool

tool = NEARAccountTool()
result = tool._run(account_id='example.near')
print(result)
```
