getMultipleNewAddressProofs

Returns proofs that the new addresses are not taken already and can be created

post
Body
idstring · enumRequired

An ID to identify the request.

Possible values:
jsonrpcstring · enumRequired

The version of the JSON-RPC protocol.

Possible values:
methodstring · enumRequired

The name of the method to invoke.

Possible values:
paramsstring[]Required

A Solana public key represented as a base58 string.

Example: 11111117qkFjr4u54stuNNUR8fRF8dNhaP35yvANs
Responses
200Success
application/json
post
POST / HTTP/1.1
Host: mainnet.helius-rpc.com
Content-Type: application/json
Accept: */*
Content-Length: 131

{
  "id": "test-account",
  "jsonrpc": "2.0",
  "method": "getMultipleNewAddressProofs",
  "params": [
    "11111117qkFjr4u54stuNNUR8fRF8dNhaP35yvANs"
  ]
}
{
  "context": {
    "slot": 100
  },
  "value": [
    {
      "address": "11111117qkFjr4u54stuNNUR8fRF8dNhaP35yvANs",
      "higherRangeAddress": "11111117qkFjr4u54stuNNUR8fRF8dNhaP35yvANs",
      "lowElementLeafIndex": 1,
      "lowerRangeAddress": "11111117qkFjr4u54stuNNUR8fRF8dNhaP35yvANs",
      "merkleTree": "11111117qkFjr4u54stuNNUR8fRF8dNhaP35yvANs",
      "nextIndex": 1,
      "proof": [
        "11111112cMQwSC9qirWGjZM6gLGwW69X22mqwLLGP"
      ],
      "root": "11111112cMQwSC9qirWGjZM6gLGwW69X22mqwLLGP",
      "rootSeq": 1
    }
  ]
}

Last updated

Was this helpful?