Files
sonr/pkg/did/formatter.go
T

23 lines
490 B
Go

package did
import (
"fmt"
"github.com/onsonr/hway/internal/orm"
)
// Format.Credential formats a credential as a DID
func (f formatter) Credential(c *orm.Credential) string {
return fmt.Sprintf("did:web:%s@%s#%s", c.DisplayName, c.Origin, c.ID)
}
// Format.Wallet formats a wallet as a DID
func (f formatter) Wallet(w *orm.Wallet) string {
return fmt.Sprintf("did:sonr:%s", w.Address)
}
// Format is the formatter to use for DIDs
var Format = formatter{}
type formatter struct{}