We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[POST] /api/balances/{address}/observation
Should remember the wallet address to observe the wallet balance and return it in the [GET] /api/balances , if the balance is non zero.
Errors: ■ 409 Conflict - specified address is already observed.
Python implementation
@api.route('/balances/<string:address>/observation', methods=['POST']) def add_observation(address): """ Add the specified address to observation list """ if isValidAddress(address): result = add_address_observation(address) else: result = dict(error='Invalid address', status=422) # if successfully stored in observation list, return a plain 200 if "error" in result: return make_response(jsonify(build_error(result["error"])), result["status"]) else: return ""
The text was updated successfully, but these errors were encountered:
[spec] refs fibercrypto#11 - Add spec: POST /api/balances/{address}/o…
b6987d7
…bservation
9e6be9c
No branches or pull requests
[POST] /api/balances/{address}/observation
Should remember the wallet address to observe the wallet balance and return it in the [GET] /api/balances , if the balance is non zero.
Errors:
■ 409 Conflict - specified address is already observed.
Python implementation
The text was updated successfully, but these errors were encountered: