Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 602 Bytes

chat-keyserver.md

File metadata and controls

34 lines (23 loc) · 602 Bytes

Chat Keyserver

Chat keyserver is a REST API that allows chat users to register their blockchain accounts for public discoverability. In future it is worth to consider that keyserver records are stored on blockchain and remain fully controlled by account's owner.

Register

Used for registering a record with CAIP10 account.

POST /register

Body:

{
    “account”: string,
    “publicKey”: string
}

Resolve

Used for resolving record by CAIP10 account.

GET /resolve?account=string

Response:

{
    “account”: string,
    “publicKey”: string
}