You are viewing a single comment's thread from:

RE: Filtering of operations returned by the get_account_history API call.

in HiveDevs4 years ago

I've noticed that not all full nodes are running the plugin that is required for this feature. But one that is: api.hive.blog

Yes. I think that as the code change was made only very recently it could take a little while to be rolled out by all nodes.

curl -s --data '{
"jsonrpc": "2.0",
"method": "condenser_api.get_account_history",
"params": ["hiveio", 1000, 1000, 1, null],
"id":1
}' https://api.hive.blog

If you wanted both high and low parameters (both set to 1) would it be as follows?
"params": ["hiveio", 1000, 1000, 1, 1, null],

Sort:  

No. The final null would become the high bits:

curl -s --data '{
  "jsonrpc": "2.0",
  "method": "condenser_api.get_account_history",
  "params": ["hiveio", 1000, 1000, 1, 1],
  "id":1
}' https://api.hive.blog