alpha
Login
or
Join now
goat.navy
/
did-cow
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
did:cow, a proposal for an ID resolution method with most of the convenience of did:plc/did:web and the robustness of a public blockchain
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
encoding bug
author
Edmund Edgar
date
4 months ago
(Mar 10, 2026, 11:51 PM UTC)
commit
e9e9306b
e9e9306bbcc31485a35454fdfc2a94fa49cbc5fd
parent
09b7c4ea
09b7c4eac01c957e14e520ee0786e5afc72b37bd
+1
-1
1 changed file
Expand all
Collapse all
Unified
Split
cli
cow.py
+1
-1
cli/cow.py
View file
Reviewed
···
213
213
_controller_address(controller_hex),
214
214
initial_wrapped,
215
215
).call()
216
216
-
registered = bytes(contract.functions.cows(cow_hash).call()[1]).decode() != ""
216
216
+
registered = contract.functions.cows(cow_hash).call()[1] != ""
217
217
218
218
click.echo(f"status: {'active' if registered else 'not registered on-chain'}")
219
219
click.echo(f"wrapped: {wrapped_did}")