Solana RPC API手册

getIdentity

getIdentity方法返回当前节点的标识公钥。

请求参数

响应结果

result字段为一个JSON对象,结构如下:

  • identity, 当前节点的标识公钥,base58字符串

示例代码

请求:

curl http://localhost:8899 -X POST -H "Content-Type: application/json" -d '
  {"jsonrpc":"2.0","id":1, "method":"getIdentity"}

响应:

{"jsonrpc":"2.0","result":{"identity": "2r1F4iWqVcb8M1DbAjQuFpebkQHY9hcVU4WuW2DJBppN"},"id":1}