hippius 0.2.23__tar.gz → 0.2.25__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 (22) hide show
  1. {hippius-0.2.23 → hippius-0.2.25}/PKG-INFO +1 -1
  2. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/__init__.py +1 -1
  3. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/client.py +3 -1
  4. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/ipfs.py +5 -1
  5. {hippius-0.2.23 → hippius-0.2.25}/pyproject.toml +1 -1
  6. {hippius-0.2.23 → hippius-0.2.25}/README.md +0 -0
  7. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/cli.py +0 -0
  8. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/cli_assets.py +0 -0
  9. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/cli_handlers.py +0 -0
  10. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/cli_parser.py +0 -0
  11. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/cli_rich.py +0 -0
  12. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/config.py +0 -0
  13. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/db/README.md +0 -0
  14. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/db/env.db.template +0 -0
  15. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/db/migrations/20241201000001_create_key_storage_tables.sql +0 -0
  16. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/db/setup_database.sh +0 -0
  17. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/db_utils.py +0 -0
  18. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/errors.py +0 -0
  19. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/ipfs_core.py +0 -0
  20. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/key_storage.py +0 -0
  21. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/substrate.py +0 -0
  22. {hippius-0.2.23 → hippius-0.2.25}/hippius_sdk/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hippius
3
- Version: 0.2.23
3
+ Version: 0.2.25
4
4
  Summary: Python SDK and CLI for Hippius blockchain storage
5
5
  Home-page: https://github.com/thenervelab/hippius-sdk
6
6
  Author: Dubs
@@ -26,7 +26,7 @@ from hippius_sdk.config import (
26
26
  from hippius_sdk.ipfs import IPFSClient, S3PublishResult, S3DownloadResult
27
27
  from hippius_sdk.utils import format_cid, format_size, hex_to_ipfs_cid
28
28
 
29
- __version__ = "0.2.23"
29
+ __version__ = "0.2.25"
30
30
  __all__ = [
31
31
  "HippiusClient",
32
32
  "IPFSClient",
@@ -518,6 +518,7 @@ class HippiusClient:
518
518
  seed_phrase: str,
519
519
  store_node: str = "http://localhost:5001",
520
520
  pin_node: str = "https://store.hippius.network",
521
+ substrate_url: str = "wss://rpc.hippius.network",
521
522
  ) -> S3PublishResult:
522
523
  """
523
524
  Publish a file to IPFS and the Hippius marketplace in one operation.
@@ -532,6 +533,7 @@ class HippiusClient:
532
533
  seed_phrase: Seed phrase for blockchain transaction signing
533
534
  store_node: IPFS node URL for initial upload (default: local node)
534
535
  pin_node: IPFS node URL for backup pinning (default: remote service)
536
+ substrate_url: substrate url to use for the storage request.
535
537
 
536
538
  Returns:
537
539
  S3PublishResult: Object containing CID, file info, and transaction hash
@@ -543,7 +545,7 @@ class HippiusClient:
543
545
  ValueError: If encryption is requested but not available
544
546
  """
545
547
  return await self.ipfs_client.s3_publish(
546
- file_path, encrypt, seed_phrase, store_node, pin_node
548
+ file_path, encrypt, seed_phrase, store_node, pin_node, substrate_url,
547
549
  )
548
550
 
549
551
  async def s3_download(
@@ -1941,6 +1941,7 @@ class IPFSClient:
1941
1941
  seed_phrase: str,
1942
1942
  store_node: str = "http://localhost:5001",
1943
1943
  pin_node: str = "https://store.hippius.network",
1944
+ substrate_url: str = "wss://rpc.hippius.network",
1944
1945
  ) -> S3PublishResult:
1945
1946
  """
1946
1947
  Publish a file to IPFS and the Hippius marketplace in one operation.
@@ -1961,6 +1962,7 @@ class IPFSClient:
1961
1962
  seed_phrase: Seed phrase for blockchain transaction signing
1962
1963
  store_node: IPFS node URL for initial upload (default: local node)
1963
1964
  pin_node: IPFS node URL for backup pinning (default: remote service)
1965
+ substrate_url: the substrate url to connect to for the storage request.
1964
1966
 
1965
1967
  Returns:
1966
1968
  S3PublishResult: Object containing CID, file info, and transaction hash
@@ -2068,7 +2070,9 @@ class IPFSClient:
2068
2070
  # Publish to substrate marketplace
2069
2071
  try:
2070
2072
  # Pass the seed phrase directly to avoid password prompts for encrypted config
2071
- substrate_client = SubstrateClient(seed_phrase=seed_phrase)
2073
+ substrate_client = SubstrateClient(
2074
+ seed_phrase=seed_phrase, url=substrate_url
2075
+ )
2072
2076
  logger.info(
2073
2077
  f"Submitting storage request to substrate for file: {filename}, CID: {cid}"
2074
2078
  )
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "hippius"
3
- version = "0.2.23"
3
+ version = "0.2.25"
4
4
  description = "Python SDK and CLI for Hippius blockchain storage"
5
5
  authors = ["Dubs <dubs@dubs.rs>"]
6
6
  readme = "README.md"
File without changes
File without changes
File without changes
File without changes
File without changes