hippius 0.2.7__py3-none-any.whl → 0.2.8__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hippius
3
- Version: 0.2.7
3
+ Version: 0.2.8
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
@@ -1,7 +1,7 @@
1
- hippius_sdk/__init__.py,sha256=t0Lg5aOSqwtAWhW8wgmVeB4IdJvUTv7Pb77vCTP0KAE,1391
1
+ hippius_sdk/__init__.py,sha256=qXKCaurObaxcmP718Q9X2nSROm3ZYaetT3sR69fPcSI,1391
2
2
  hippius_sdk/cli.py,sha256=pzwoa-X5cwdA_pM-fqUyXZKHgcZODrLe4qHZuCqQMtQ,18210
3
3
  hippius_sdk/cli_assets.py,sha256=V3MX63QTiex6mCp0VDXQJ7cagm5v1s4xtsu8c1O4G_k,371
4
- hippius_sdk/cli_handlers.py,sha256=xSFMGrgQRoatFgkk0CpM9h5q6URUzAol3xHGCdFHKxE,125258
4
+ hippius_sdk/cli_handlers.py,sha256=LUS-BPPMfvXCLsHiN225nMTlBEHXKxZmUf1YpC-Xyqc,127905
5
5
  hippius_sdk/cli_parser.py,sha256=Qh2wgkFBUTPldvGoTQuoNKQl5Vo0x6fPEsPBU5oymP4,20242
6
6
  hippius_sdk/cli_rich.py,sha256=_jTBYMdHi2--fIVwoeNi-EtkdOb6Zy_O2TUiGvU3O7s,7324
7
7
  hippius_sdk/client.py,sha256=eYURsq_so3WlEt_JY_u7J0iECFVOKDf5vsnGyR9Kngw,16974
@@ -11,7 +11,7 @@ hippius_sdk/ipfs.py,sha256=xq0y87dyKvbwf52OjEAlqFNrl4Ej1Zp5g2rZa75qfN8,71706
11
11
  hippius_sdk/ipfs_core.py,sha256=Lxu2-AWEpE-kiJDcP-cOBEeuboK7i9eNZdjgJWPa4sI,16028
12
12
  hippius_sdk/substrate.py,sha256=HqR2-_9njZZ5UCKgiaGr5L5TGQ_wtj7oyA3sA5sGGyE,47525
13
13
  hippius_sdk/utils.py,sha256=Ur7P_7iVnXXYvbg7a0aVrdN_8NkVxjhdngn8NzR_zpc,7066
14
- hippius-0.2.7.dist-info/METADATA,sha256=dNUAXbSVYGvEKLsFvTpdF_SIa3B1fM9pnm7FQzJduB8,29992
15
- hippius-0.2.7.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
16
- hippius-0.2.7.dist-info/entry_points.txt,sha256=b1lo60zRXmv1ud-c5BC-cJcAfGE5FD4qM_nia6XeQtM,98
17
- hippius-0.2.7.dist-info/RECORD,,
14
+ hippius-0.2.8.dist-info/METADATA,sha256=8XQCTdk2Yw6HGik6V3GSj6S1qt_-yqM00PT5Q5EcBV8,29992
15
+ hippius-0.2.8.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
16
+ hippius-0.2.8.dist-info/entry_points.txt,sha256=b1lo60zRXmv1ud-c5BC-cJcAfGE5FD4qM_nia6XeQtM,98
17
+ hippius-0.2.8.dist-info/RECORD,,
hippius_sdk/__init__.py CHANGED
@@ -26,7 +26,7 @@ from hippius_sdk.config import (
26
26
  from hippius_sdk.ipfs import IPFSClient
27
27
  from hippius_sdk.utils import format_cid, format_size, hex_to_ipfs_cid
28
28
 
29
- __version__ = "0.2.7"
29
+ __version__ = "0.2.8"
30
30
  __all__ = [
31
31
  "HippiusClient",
32
32
  "IPFSClient",
@@ -371,20 +371,22 @@ async def handle_store(
371
371
  "gateway_url"
372
372
  ] = f"{client.ipfs_client.gateway}/ipfs/{result['cid']}"
373
373
 
374
- # Store on blockchain if miners are provided
375
- if miner_ids:
376
- # Create a file input for blockchain storage
377
- file_input = FileInput(
378
- file_hash=result["cid"], file_name=file_name
379
- )
374
+ # Store on blockchain - miners are optional
375
+ # Create a file input for blockchain storage
376
+ file_input = FileInput(file_hash=result["cid"], file_name=file_name)
380
377
 
381
- # Submit storage request
382
- tx_hash = await client.substrate_client.storage_request(
383
- files=[file_input], miner_ids=miner_id_list
384
- )
378
+ # Submit storage request
379
+ tx_hash = await client.substrate_client.storage_request(
380
+ files=[file_input], miner_ids=miner_id_list
381
+ )
385
382
 
386
- # Add transaction hash to result
387
- result["transaction_hash"] = tx_hash
383
+ # Add transaction hash to result
384
+ result["transaction_hash"] = tx_hash
385
+
386
+ # Add a note about the pinning status command
387
+ log(
388
+ "\n[bold yellow]Note:[/bold yellow] The pinning-status command will show a different CID (metadata) rather than the direct file CID."
389
+ )
388
390
  except Exception as e:
389
391
  warning(f"Failed to publish file globally: {str(e)}")
390
392
 
@@ -575,12 +577,8 @@ async def handle_store_dir(
575
577
  f"Failed to publish file {file_info['name']} globally: {str(e)}"
576
578
  )
577
579
 
578
- # Store on blockchain if miners are provided - this is what requires a password
579
- if (
580
- miner_ids
581
- and hasattr(client, "substrate_client")
582
- and client.substrate_client
583
- ):
580
+ # Store on blockchain if client is available - miners are optional
581
+ if hasattr(client, "substrate_client") and client.substrate_client:
584
582
  # Create a file input for blockchain storage
585
583
  file_input = FileInput(
586
584
  file_hash=result["cid"],
@@ -595,6 +593,11 @@ async def handle_store_dir(
595
593
  # Add transaction hash to result
596
594
  result["transaction_hash"] = tx_hash
597
595
 
596
+ # Add a note about the pinning status command
597
+ log(
598
+ "\n[bold yellow]Note:[/bold yellow] The pinning-status command will show a different CID (metadata) rather than the direct directory CID."
599
+ )
600
+
598
601
  except Exception as e:
599
602
  warning(f"Failed to publish directory globally: {str(e)}")
600
603
 
@@ -739,20 +742,32 @@ async def handle_files(
739
742
  """Handle the files command"""
740
743
  # Get the account address we're querying
741
744
  if account_address is None:
742
- # If no address provided, first try to get from keypair (if available)
745
+ # If no address provided, try these options in order:
746
+ # 1. Keypair from the client (if available)
747
+ # 2. Address from active account
748
+ # 3. Default address from config
749
+
750
+ # Option 1: Try keypair from client
743
751
  if (
744
752
  hasattr(client.substrate_client, "_keypair")
745
753
  and client.substrate_client._keypair is not None
746
754
  ):
747
755
  account_address = client.substrate_client._keypair.ss58_address
748
756
  else:
749
- # Try to get the default address
750
- default_address = get_default_address()
751
- if default_address:
752
- account_address = default_address
753
- else:
754
- has_default = get_default_address() is not None
757
+ # Option 2: Try to get address from active account
758
+ active_account = get_active_account()
759
+ if active_account:
760
+ account_address = get_account_address(active_account)
761
+
762
+ # Option 3: If still not found, try default address
763
+ if not account_address:
764
+ default_address = get_default_address()
765
+ if default_address:
766
+ account_address = default_address
755
767
 
768
+ # If we still don't have an address, show error
769
+ if not account_address:
770
+ has_default = get_default_address() is not None
756
771
  error("No account address provided, and client has no keypair.")
757
772
 
758
773
  if has_default:
@@ -842,7 +857,7 @@ async def handle_pinning_status(
842
857
  cid = pin.get("cid")
843
858
 
844
859
  # Display pin information
845
- log(f"\n{i}. CID: [bold]{cid}[/bold]")
860
+ log(f"\n{i}. Metadata CID: [bold]{cid}[/bold]")
846
861
  log(f" File Name: {pin['file_name']}")
847
862
  status = "Assigned" if pin["is_assigned"] else "Pending"
848
863
  log(f" Status: {status}")
@@ -861,17 +876,49 @@ async def handle_pinning_status(
861
876
 
862
877
  # Show content info if requested
863
878
  if show_contents:
879
+ # Add gateway URL
880
+ gateway_url = f"{client.ipfs_client.gateway}/ipfs/{cid}"
881
+ log(f" Gateway URL: {gateway_url}")
882
+
883
+ # Try to decode the metadata file to get the original file CID
864
884
  try:
865
- content_info = await client.ipfs_client.get_content_info(cid)
885
+ # Fetch the content
886
+ cat_result = await client.ipfs_client.cat(cid)
866
887
 
867
- if content_info:
868
- if "size_formatted" in content_info:
869
- log(f" Size: {content_info['size_formatted']}")
870
- if "gateway_url" in content_info:
871
- log(f" Gateway URL: {content_info['gateway_url']}")
888
+ # Try to parse as JSON
889
+ try:
890
+ # Decode JSON from content
891
+ metadata_json = json.loads(
892
+ cat_result["content"].decode("utf-8")
893
+ )
894
+
895
+ # This should be an array with one or more file entries
896
+ if (
897
+ isinstance(metadata_json, list)
898
+ and len(metadata_json) > 0
899
+ ):
900
+ log(f"\n [bold cyan]Contained files:[/bold cyan]")
901
+ for idx, file_entry in enumerate(metadata_json, 1):
902
+ if isinstance(file_entry, dict):
903
+ original_cid = file_entry.get("cid")
904
+ original_name = file_entry.get("filename")
905
+ if original_cid:
906
+ log(
907
+ f" {idx}. Original CID: [bold green]{original_cid}[/bold green]"
908
+ )
909
+ if original_name:
910
+ log(f" Name: {original_name}")
911
+ log(
912
+ f" Gateway URL: {client.ipfs_client.gateway}/ipfs/{original_cid}"
913
+ )
914
+ except json.JSONDecodeError:
915
+ if verbose:
916
+ log(
917
+ " [yellow]Could not parse metadata as JSON[/yellow]"
918
+ )
872
919
  except Exception as e:
873
920
  if verbose:
874
- warning(f" Error getting content info: {e}")
921
+ warning(f" Error getting original file CIDs: {e}")
875
922
  except Exception as e:
876
923
  warning(f"Error processing pin {i}: {e}")
877
924
  if verbose: