Filecoin.ChainHasObj
Filecoin.ChainHasObj用于检查指定的CID是否存在于链块库。
参数
- cid:要查询的cid
返回值
Filecoin.ChainHasObj调用返回一个布尔值,表示指定的cid是否 存在于链块库。
示例代码
请求:
curl -X POST \
-H "Content-Type: application/json" \
--data '{
"jsonrpc":"2.0",
"method":"Filecoin.ChainHasObj",
"params":[{"/","bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"}],
"id":7878
}' \
http://127.0.0.1:1234/rpc/v0
响应:
{
"id": 7878,
"jsonrpc": "2.0",
"result": true
}