Skip to content

Commit df6f60c

Browse files
committed
init
1 parent e560f80 commit df6f60c

8 files changed

Lines changed: 75 additions & 47 deletions

File tree

.claude/settings.local.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"permissions": {
33
"allow": [
44
"Bash(LC_ALL=C grep:*)",
5-
"Bash(python3 -c:*)"
5+
"Bash(python3 -c:*)",
6+
"Bash(uv sync:*)"
67
],
78
"deny": [],
89
"ask": []

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ERC-8004 Validation Tester
1+
# AliasAI Validator
22

33
[![Python](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
44
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
@@ -51,8 +51,8 @@ This tool implements a complete seven-stage validation workflow:
5151
curl -LsSf https://astral.sh/uv/install.sh | sh
5252

5353
# Clone repository
54-
git clone https://github.com/AliasAI/erc8004-validation-tester.git
55-
cd erc8004-validation-tester
54+
git clone https://github.com/AliasAI/aliasai-validator.git
55+
cd aliasai-validator
5656

5757
# Sync dependencies
5858
uv sync
@@ -62,8 +62,8 @@ uv sync
6262

6363
```bash
6464
# Clone repository
65-
git clone https://github.com/AliasAI/erc8004-validation-tester.git
66-
cd erc8004-validation-tester
65+
git clone https://github.com/AliasAI/aliasai-validator.git
66+
cd aliasai-validator
6767

6868
# Create virtual environment
6969
python -m venv .venv
@@ -191,7 +191,7 @@ ERC-8004 Staking Validation System Complete Test
191191
TokenURI: https://api.aliasai.io/agent/0xYourAddress.json
192192
Metadata count: 3
193193
- agentType: validator
194-
- createdBy: erc8004-validation-tester
194+
- createdBy: aliasai-validator
195195
- version: 1.0
196196

197197
✅ Agent registered successfully!
@@ -451,7 +451,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
451451
## 💬 Support
452452

453453
For questions or suggestions:
454-
- Open an [Issue](https://github.com/AliasAI/erc8004-validation-tester/issues)
454+
- Open an [Issue](https://github.com/AliasAI/aliasai-validator/issues)
455455
- Check the [Documentation](docs/)
456456
- Contact maintainers
457457

docs/ARCHITECTURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## 📁 Project Structure
44

55
```
6-
erc8004-validation-tester/
6+
aliasai-validator/
77
├── src/ # Core source code
88
│ ├── __init__.py # Package initialization
99
│ ├── main.py # Main test script

docs/QUICKSTART.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
```bash
88
# Using UV (recommended)
99
curl -LsSf https://astral.sh/uv/install.sh | sh
10-
cd erc8004-validation-tester
10+
cd aliasai-validator
1111
uv sync
1212

1313
# Or using pip
@@ -134,5 +134,5 @@ jq . validation_test_report.json
134134
## Need Help?
135135

136136
- View [Complete Documentation](../README.md)
137-
- Open an [Issue](https://github.com/AliasAI/erc8004-validation-tester/issues)
137+
- Open an [Issue](https://github.com/AliasAI/aliasai-validator/issues)
138138
- Contact maintainers

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "erc8004-validation-tester"
2+
name = "aliasai-validator"
33
version = "0.1.0"
44
description = "ERC-8004 Staking Validation System Complete Test Toolkit"
55
authors = [
@@ -32,10 +32,10 @@ dev = [
3232
]
3333

3434
[project.urls]
35-
Homepage = "https://github.com/AliasAI/erc8004-validation-tester"
36-
Documentation = "https://github.com/AliasAI/erc8004-validation-tester#readme"
37-
Repository = "https://github.com/AliasAI/erc8004-validation-tester"
38-
Issues = "https://github.com/AliasAI/erc8004-validation-tester/issues"
35+
Homepage = "https://github.com/AliasAI/aliasai-validator"
36+
Documentation = "https://github.com/AliasAI/aliasai-validator#readme"
37+
Repository = "https://github.com/AliasAI/aliasai-validator"
38+
Issues = "https://github.com/AliasAI/aliasai-validator/issues"
3939

4040
[project.scripts]
4141
erc8004-test = "src.main:main"

src/agent_registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class AgentRegistry:
4747
... token_uri="https://api.aliasai.io/agent/0x123.json",
4848
... metadata=[
4949
... {"key": "agentType", "value": "validator"},
50-
... {"key": "createdBy", "value": "erc8004-validation-tester"}
50+
... {"key": "createdBy", "value": "aliasai-validator"}
5151
... ]
5252
... )
5353
>>> print(f"Agent registered! ID: {agent_id}, TX: {tx_hash}")

src/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def stage2_register_agent(self, required_vars: dict) -> Tuple[int, AgentRegistry
229229
# Prepare metadata
230230
metadata = [
231231
{"key": "agentType", "value": "validator"},
232-
{"key": "createdBy", "value": "erc8004-validation-tester"},
232+
{"key": "createdBy", "value": "aliasai-validator"},
233233
{"key": "version", "value": "1.0"}
234234
]
235235

@@ -495,7 +495,7 @@ def stage7_statistics(self, manager: ValidationManager, agent_registry: Optional
495495

496496
expected_metadata = {
497497
"agentType": "validator",
498-
"createdBy": "erc8004-validation-tester"
498+
"createdBy": "aliasai-validator"
499499
}
500500
agent_verification_passed = agent_registry.verify_agent(self.agent_id, expected_metadata)
501501
except Exception as e:

0 commit comments

Comments
 (0)