Skip to content
GitHub

Get the keys bound to a Wallet Address

GET
/jwks.json

Retrieve the public keys of the Wallet Address.

Responses

200

JWKS Document Found

A JSON Web Key Set document according to rfc7517 listing the keys associated with this wallet address. These keys are used to sign requests made by this wallet address.

object
keys
required
Array<object>

A JWK representation of an Ed25519 Public Key

object
kid
required
string
alg
required

The cryptographic algorithm family used with the key. The only allowed value is EdDSA.

string
Allowed values: EdDSA
use
string
Allowed values: sig
kty
required
string
Allowed values: OKP
crv
required
string
Allowed values: Ed25519
x
required

The base64 url-encoded public key.

string
/^[a-zA-Z0-9-_]+$/
Examples

404

JWKS Document Not Found