Manage DIDs
Manage the DIDs which are owned by the Edge Agent for usage in DI protocols
Create DIDs
let agent: SudoDIEdgeAgent
do {
let createdDid = try await agent.dids.createDid(
options: .didKey(keyType: .ed25519)
)
} catch {
// handle error
}val agent: SudoDIEdgeAgent
try {
val createdDid = agent.dids.createDid(
options = CreateDidOptions.DidKey(
keyType = DidKeyType.ED25519
)
)
} catch (e: DidsModule.CreateDidException) {
// handle error
}Get full DID Information by ID
Delete a DID
Updating the Storage Metadata of a DID
Listing DIDs
Filtered Listing
Last updated