Address Kevin's feedback.

This commit is contained in:
Amine Khaldi 2022-06-09 12:49:03 +01:00
parent 4856b2275c
commit e2cab0fd44
No known key found for this signature in database
GPG Key ID: B1C074FFC904E2D9

View File

@ -763,13 +763,17 @@ async def list_nfts(args: Dict, wallet_client: WalletRpcClient, fingerprint: int
for n in nft_list:
nft = NFTInfo.from_json_dict(n)
if nft.owner_pubkey is None:
owner_pubkey = None
else:
owner_pubkey = nft.owner_pubkey.hex()
print()
print(f"{'Launcher coin ID:'.ljust(26)} {nft.launcher_id}")
print(f"{'Launcher puzhash:'.ljust(26)} {nft.launcher_puzhash}")
print(f"{'Current NFT coin ID:'.ljust(26)} {nft.nft_coin_id}")
print(f"{'On-chain data/info:'.ljust(26)} {nft.chain_info}")
print(f"{'Owner DID:'.ljust(26)} {nft.owner_did}")
print(f"{'Owner pubkey:'.ljust(26)} {nft.owner_pubkey.hex()}")
print(f"{'Owner pubkey:'.ljust(26)} {owner_pubkey}")
print(f"{'Royalty percentage:'.ljust(26)} {nft.royalty_percentage}")
print(f"{'Royalty puzhash:'.ljust(26)} {nft.royalty_puzzle_hash}")
print(f"{'NFT content hash:'.ljust(26)} {nft.data_hash.hex()}")