Merge commit '5a264e228f891cf90879f54981840c3312fd53b3' into checkpoint/datalayer-sim_from_release_1.4.0_5a264e228f891cf90879f54981840c3312fd53b3

This commit is contained in:
Kyle Altendorf
2022-06-26 15:12:47 -04:00
-5
View File
@@ -778,10 +778,6 @@ 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"{'NFT identifier:'.ljust(26)} {encode_puzzle_hash(nft.launcher_id, NFT_HRP)}")
print(f"{'Launcher coin ID:'.ljust(26)} {nft.launcher_id}")
@@ -789,7 +785,6 @@ async def list_nfts(args: Dict, wallet_client: WalletRpcClient, fingerprint: int
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)} {encode_puzzle_hash(nft.owner_did, DID_HRP)}")
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()}")