Skip to content
Snippets Groups Projects
Commit 205c8de7 authored by inertia's avatar inertia
Browse files

#85 added methods

parent 8ab2a146
No related branches found
No related tags found
1 merge request!114Restoring Master
......@@ -2343,6 +2343,8 @@
virtual: false
purpose: |
The `recurrent_transfer` operation creates/updates/removes a recurrent transfer (transfers any liquid asset every fixed amount of time from one account to another). If amount is set to 0, the recurrent transfer is be deleted. If there is already a recurrent transfer matching from and to, the recurrent transfer is updated.
Also see: [database_api.find_recurrent_transfers]({{ '/apidefinitions/#database_api.find_recurrent_transfers' | relative_url }})
roles:
params:
- from
......
......@@ -2602,3 +2602,28 @@
expected_response_json: "[]"
client_docs:
- "[hivesql](https://docs.hivesql.io/technical-informations/operations/txcollateralizedconverts-hf25)"
- api_method: condenser_api.find_recurrent_transfers
since: HF25
purpose: |
Finds transfers of any liquid asset every fixed amount of time from one account to another.
Also see: [recurrent_transfer_operation]({{ '/apidefinitions/#broadcast_ops_recurrent_transfer' | relative_url }})
parameter_json: '[""]'
expected_response_json: |
[
{
"id": 3,
"trigger_date": "2021-07-02T18:11:51",
"from": "alice",
"to": "bob",
"amount": {"amount": "1000", "precision": 3, "nai": "@@000000021"},
"memo": "Payroll",
"recurrence": 26,
"consecutive_failures": 0,
"remaining_executions": 3
}
]
curl_examples:
- '{"jsonrpc":"2.0", "method":"condenser_api.find_recurrent_transfers", "params":["alice"], "id":1}'
client_docs:
- "[hivesql](https://docs.hivesql.io/technical-informations/operations/txrecurrenttransfers-hf25)"
......@@ -2729,3 +2729,30 @@
expected_response_json: '{"requests":[]}'
client_docs:
- "[hivesql](https://docs.hivesql.io/technical-informations/operations/txcollateralizedconverts-hf25)"
- api_method: database_api.find_recurrent_transfers
since: HF25
purpose: |
Finds transfers of any liquid asset every fixed amount of time from one account to another.
Also see: [recurrent_transfer_operation]({{ '/apidefinitions/#broadcast_ops_recurrent_transfer' | relative_url }})
parameter_json: '{"from":""}'
expected_response_json: |
{
"recurrent_transfers": [
{
"id": 3,
"trigger_date": "2021-07-02T18:11:51",
"from": "alice",
"to": "bob",
"amount": {"amount": "1000", "precision": 3, "nai": "@@000000021"},
"memo": "Payroll",
"recurrence": 26,
"consecutive_failures": 0,
"remaining_executions": 3
}
]
}
curl_examples:
- '{"jsonrpc":"2.0", "method":"database_api.find_recurrent_transfers", "params":{"from":"alice"}, "id":1}'
client_docs:
- "[hivesql](https://docs.hivesql.io/technical-informations/operations/txrecurrenttransfers-hf25)"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment