我正在使用php。我希望用户在其ETH地址上获得所有存款交易。我正在使用“geth”客户端。我无法获得任何json rpc api for get transaction。根据互联网上的搜索,我尝试过“eth_newFilter”,“eth_getFilterChanges”,“eth_getFilterLogs”。 我为“eth_newFilter”
设置了以下参数 array(
'jsonrpc'=>'2.0',
'method'=>'eth_newFilter',
'params'=>array(array("fromBlock"=> "0x0",
"toBlock"=> "latest",'address'=>'0x14e15d73db916e14fdb91de38da2c59181876200',
'topics'=>[])),
'id'=>time()
);
作为响应我得到id并且我在“eth_getFilterChanges”,“eth_getFilterLogs”中使用该id,但两者都返回空结果。
任何人都可以帮忙了解如何获取特定地址的交易清单吗?