Source code for bitween.components.web.api.xmpp
"""
XMPP related functions of the JSONRPCAPI
"""
from .. import jsonrpc
from bitween.components import contact_shares
from flask import jsonify
@jsonrpc.method('xmpp.get_hashes')
[docs]def get_all_hashes():
"""
return a list of all hashes with associated address tuples
:return:
"""
return jsonify({'hashes': contact_shares.hashes})
@jsonrpc.method('xmpp.get_shares')