manifest - XRPL

Example code for the manifest JSON RPC method. Сomplete guide on how to use manifest JSON RPC in GetBlock Web3 documentation.

This method retrieves the latest ephemeral public key information about a known validator.

Parameters

Parameter
Type
Required
Description

public_key

string

Yes

Validator public key

Request Example

curl --location --request POST 'https://xrp.getblock.io/mainnet/' \
--header 'x-api-key: YOUR-API-KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "manifest",
    "params": [{
        "public_key": "nHUFE9prPXPrHcG3SkwP1UzAQbSphqyQkQK9ATXLZsfkezhhda3p"
    }],
    "id": "getblock.io"
}'

Response Example

Returns

Field
Type
Description

details

object

Manifest details

manifest

string

Base64-encoded manifest

requested

string

Requested public key

Use Cases

  • Validator verification

  • Network monitoring

  • UNL management

SDK Integration

Last updated

Was this helpful?