Get the keys bound to a Wallet Address
GET /jwks.json
GET
/jwks.json
Retrieve the public keys of the Wallet Address.
Responses
Section titled “ Responses ”JWKS Document Found
JSON Web Key Set document
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>
Ed25519 Public KeyA JWK representation of an Ed25519 Public Key
object
kid
required
A unique identifier for the key.
string
alg
required
The cryptographic algorithm family used with the key. The only allowed value is EdDSA.
string
use
The intended use of the key. The only allowed value is sig (signature).
string
kty
required
The key type. Identifies the cryptographic algorithm family. The only allowed value is OKP (Octet Key Pair).
string
crv
required
The cryptographic curve used with the key. The only allowed value is Ed25519.
string
x
required
The base64 url-encoded public key.
string
Examples
JWKS Document Not Found