agent0-sdk 1.4.0__tar.gz → 1.4.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. {agent0_sdk-1.4.0/agent0_sdk.egg-info → agent0_sdk-1.4.2}/PKG-INFO +3 -3
  2. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/README.md +2 -2
  3. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/__init__.py +1 -1
  4. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/contracts.py +7 -1
  5. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2/agent0_sdk.egg-info}/PKG-INFO +3 -3
  6. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/pyproject.toml +1 -1
  7. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/LICENSE +0 -0
  8. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/MANIFEST.in +0 -0
  9. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/agent.py +0 -0
  10. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/endpoint_crawler.py +0 -0
  11. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/feedback_manager.py +0 -0
  12. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/indexer.py +0 -0
  13. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/ipfs_client.py +0 -0
  14. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/models.py +0 -0
  15. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/oasf_validator.py +0 -0
  16. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/sdk.py +0 -0
  17. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/subgraph_client.py +0 -0
  18. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/transaction_handle.py +0 -0
  19. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/value_encoding.py +0 -0
  20. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/core/web3_client.py +0 -0
  21. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/taxonomies/all_domains.json +0 -0
  22. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk/taxonomies/all_skills.json +0 -0
  23. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk.egg-info/SOURCES.txt +0 -0
  24. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk.egg-info/dependency_links.txt +0 -0
  25. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk.egg-info/requires.txt +0 -0
  26. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/agent0_sdk.egg-info/top_level.txt +0 -0
  27. {agent0_sdk-1.4.0 → agent0_sdk-1.4.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent0-sdk
3
- Version: 1.4.0
3
+ Version: 1.4.2
4
4
  Summary: Python SDK for agent portability, discovery and trust based on ERC-8004
5
5
  Author-email: Agent0 Team <team@ag0.xyz>
6
6
  License: MIT License
@@ -122,7 +122,7 @@ import os
122
122
 
123
123
  # Initialize SDK with IPFS and subgraph
124
124
  sdk = SDK(
125
- chainId=11155111, # Ethereum Sepolia testnet
125
+ chainId=11155111, # Ethereum Sepolia testnet (use 1 for Ethereum Mainnet)
126
126
  rpcUrl=os.getenv("RPC_URL"),
127
127
  signer=os.getenv("PRIVATE_KEY"),
128
128
  ipfs="pinata", # Options: "pinata", "filecoinPin", "node"
@@ -364,7 +364,7 @@ Browse these files to find appropriate skill and domain slugs. For more informat
364
364
 
365
365
  ## 🚀 Coming Soon
366
366
 
367
- - More chains (currently Ethereum Sepolia only)
367
+ - More chains (currently Ethereum Sepolia + Ethereum Mainnet)
368
368
  - Support for validations
369
369
  - Enhanced x402 payments
370
370
  - Semantic/Vectorial search
@@ -52,7 +52,7 @@ import os
52
52
 
53
53
  # Initialize SDK with IPFS and subgraph
54
54
  sdk = SDK(
55
- chainId=11155111, # Ethereum Sepolia testnet
55
+ chainId=11155111, # Ethereum Sepolia testnet (use 1 for Ethereum Mainnet)
56
56
  rpcUrl=os.getenv("RPC_URL"),
57
57
  signer=os.getenv("PRIVATE_KEY"),
58
58
  ipfs="pinata", # Options: "pinata", "filecoinPin", "node"
@@ -294,7 +294,7 @@ Browse these files to find appropriate skill and domain slugs. For more informat
294
294
 
295
295
  ## 🚀 Coming Soon
296
296
 
297
- - More chains (currently Ethereum Sepolia only)
297
+ - More chains (currently Ethereum Sepolia + Ethereum Mainnet)
298
298
  - Support for validations
299
299
  - Enhanced x402 payments
300
300
  - Semantic/Vectorial search
@@ -33,7 +33,7 @@ except ImportError:
33
33
  TransactionMined = None
34
34
  _sdk_available = False
35
35
 
36
- __version__ = "1.4.0"
36
+ __version__ = "1.4.2"
37
37
  __all__ = [
38
38
  "SDK",
39
39
  "Agent",
@@ -514,6 +514,11 @@ VALIDATION_REGISTRY_ABI = [
514
514
  # Contract registry for different chains
515
515
  # Updated addresses from: https://github.com/erc-8004/erc-8004-contracts
516
516
  DEFAULT_REGISTRIES: Dict[int, Dict[str, str]] = {
517
+ 1: { # Ethereum Mainnet
518
+ "IDENTITY": "0x8004A169FB4a3325136EB29fA0ceB6D2e539a432",
519
+ "REPUTATION": "0x8004BAa17C55a88189AE136b182e5fdA19dE9b63",
520
+ # "VALIDATION": "0x...", # Set when deployed/enabled
521
+ },
517
522
  11155111: { # Ethereum Sepolia
518
523
  "IDENTITY": "0x8004A818BFB912233c491871b3d84c89A494BD9e",
519
524
  "REPUTATION": "0x8004B663056A597Dffe9eCcC1965A193B7388713",
@@ -540,8 +545,9 @@ DEFAULT_REGISTRIES: Dict[int, Dict[str, str]] = {
540
545
  # Default subgraph URLs for different chains
541
546
  # Note: Subgraph URLs may need to be updated when new contracts are deployed
542
547
  DEFAULT_SUBGRAPH_URLS: Dict[int, str] = {
548
+ 1: "https://gateway.thegraph.com/api/7fd2e7d89ce3ef24cd0d4590298f0b2c/subgraphs/id/FV6RR6y13rsnCxBAicKuQEwDp8ioEGiNaWaZUmvr1F8k", # Ethereum Mainnet
543
549
  11155111: "https://gateway.thegraph.com/api/00a452ad3cd1900273ea62c1bf283f93/subgraphs/id/6wQRC7geo9XYAhckfmfo8kbMRLeWU8KQd3XsJqFKmZLT", # Ethereum Sepolia
544
550
  # Other chains temporarily disabled - subgraphs to be updated
545
551
  # 84532: "https://gateway.thegraph.com/api/...", # Base Sepolia - To be updated
546
552
  # 80002: "https://gateway.thegraph.com/api/...", # Polygon Amoy - To be updated
547
- }
553
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent0-sdk
3
- Version: 1.4.0
3
+ Version: 1.4.2
4
4
  Summary: Python SDK for agent portability, discovery and trust based on ERC-8004
5
5
  Author-email: Agent0 Team <team@ag0.xyz>
6
6
  License: MIT License
@@ -122,7 +122,7 @@ import os
122
122
 
123
123
  # Initialize SDK with IPFS and subgraph
124
124
  sdk = SDK(
125
- chainId=11155111, # Ethereum Sepolia testnet
125
+ chainId=11155111, # Ethereum Sepolia testnet (use 1 for Ethereum Mainnet)
126
126
  rpcUrl=os.getenv("RPC_URL"),
127
127
  signer=os.getenv("PRIVATE_KEY"),
128
128
  ipfs="pinata", # Options: "pinata", "filecoinPin", "node"
@@ -364,7 +364,7 @@ Browse these files to find appropriate skill and domain slugs. For more informat
364
364
 
365
365
  ## 🚀 Coming Soon
366
366
 
367
- - More chains (currently Ethereum Sepolia only)
367
+ - More chains (currently Ethereum Sepolia + Ethereum Mainnet)
368
368
  - Support for validations
369
369
  - Enhanced x402 payments
370
370
  - Semantic/Vectorial search
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agent0-sdk"
7
- version = "1.4.0"
7
+ version = "1.4.2"
8
8
  description = "Python SDK for agent portability, discovery and trust based on ERC-8004"
9
9
  authors = [
10
10
  {name = "Agent0 Team", email = "team@ag0.xyz"}
File without changes
File without changes
File without changes