跳转到主要内容
POST
/
getLookupTablesByAuthority
curl --request POST \
  --url 'https://rpc-mainnet.solanatracker.io/?api_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "getLookupTablesByAuthority",
  "params": [
    {
      "authority": "9aoUCn5J4sxhvYERCVwVnakPQxyXTHQVXe86CUJYxY8p",
      "limit": 100,
      "cursor": null,
      "mintsOnly": false,
      "includeDeactivated": false
    }
  ]
}
'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "lookupTables": [
      {
        "pubkey": "LUTPubkey1111111111111111111111111111111",
        "authority": "9aoUCn5J4sxhvYERCVwVnakPQxyXTHQVXe86CUJYxY8p",
        "deactivationSlot": 18446744073709552000,
        "addressCount": 12,
        "addresses": [
          "Account1pubkey111111111111111111111111111",
          "Account2pubkey222222222222222222222222222"
        ],
        "mints": [
          "Mint1pubkey11111111111111111111111111111111"
        ],
        "slot": 423867852
      }
    ],
    "nextCursor": "LUTPubkey1111111111111111111111111111111",
    "hasMore": false,
    "count": 1
  }
}
⚡ 由 Solana Ridge DB 驱动返回钱包权限地址拥有的地址查找表 (LUT)。用于发现钱包控制的 LUT、查看存储的地址,以及检查 LUT 是否仍处于活跃状态。支持通过 cursor 分页,可选仅返回已知 mint 地址 (mintsOnly),以及包含已停用的查找表 (includeDeactivated)。
此方法每次调用消耗 1 积分

授权

api_key
string
query
必填

请求体

application/json
jsonrpc
enum<string>
默认值:2.0
必填

The JSON-RPC protocol version.

可用选项:
2.0
示例:

"2.0"

id
string
默认值:1
必填

A unique identifier for the request.

示例:

"1"

method
enum<string>
默认值:getLookupTablesByAuthority
必填

The name of the RPC method to invoke.

可用选项:
getLookupTablesByAuthority
示例:

"getLookupTablesByAuthority"

params
object[]
必填

Method parameters.

Required array length: 1 element

响应

Successful response.

jsonrpc
enum<string>
可用选项:
2.0
id
string
result
object