Filecoin.ChainReadObj
Filecoin.ChainReadObj读取链块库中指定CID的ipld节点并返回原始字节数据。
参数
- cid:要查询的cid
返回值
Filecoin.ChainReadObj调用返回指定cid的ipld节点的原始字节数据。
示例代码
请求:
curl -X POST \
-H "Content-Type: application/json" \
--data '{
"jsonrpc":"2.0",
"method":"Filecoin.ChainReadObj",
"params":[{"/","bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"}],
"id":7878
}' \
http://127.0.0.1:1234/rpc/v0
响应:
{
"id": 7878,
"jsonrpc": "2.0",
"result": "Ynl0ZSBhcnJheQ=="
}