A library for handling DID identifiers used in Bluesky AT Protocol

fixed old method name used in bin/resolve

+2 -2
+2 -2
bin/resolve
··· 27 27 end 28 28 29 29 doc = did.get_document 30 - valid_handle = resolver.get_validated_handle(doc) 30 + verified_handle = resolver.get_verified_handle(doc) 31 31 32 32 puts 33 33 puts "PDS: #{doc.pds_endpoint}" 34 34 puts "Resolved by: #{did.resolved_by}" if did.resolved_by 35 - puts "Validated handle: " + (valid_handle ? "@#{valid_handle}" : "⚠️ invalid handle #{doc.handles.inspect}") 35 + puts "Verified handle: " + (verified_handle ? "@#{verified_handle}" : "⚠️ invalid handle #{doc.handles.inspect}") 36 36 puts 37 37 puts JSON.pretty_generate(doc.json) 38 38 rescue StandardError => e