File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 11export class IdentityProvider {
2- // https://github.com/TBD54566975/janky-wallet/blob/main/rfc/web5-did-supported-methods.md
3- /** This method can be used by clients to become aware of the DID methods supported by a wallet. */
2+ // https://github.com/TBD54566975/janky-wallet/blob/main/rfc/web5-did-supported-methods.md
3+ /** This method can be used by clients to become aware of the DID methods supported by a wallet. */
44 async supportedMethods ( ) : Promise < string [ ] > {
55 return [ 'did:is' , 'did:jwk' , 'did:key' ] ;
66 }
77
8+ // https://github.com/TBD54566975/janky-wallet/blob/main/rfc/web5-did-authn.md
9+ /** Initiates DID-based passwordless registration / login flows */
10+ async authn ( ) {
11+ throw Error ( 'Not implemented.' ) ;
12+ }
813
14+ // https://github.com/TBD54566975/janky-wallet/blob/main/rfc/web5-did-request.md
15+ async request ( ) {
16+ throw Error ( 'Not implemented.' ) ;
17+ }
918}
You can’t perform that action at this time.
0 commit comments