feat: Add nostr.json route

This commit is contained in:
Nathan Woodburn 2024-04-21 12:34:47 +10:00
parent 095f74773c
commit efc359459c
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -108,7 +108,18 @@ def wallet(path):
return redirect('/.well-known/wallets/' + path.upper(), code=302)
return render_template('404.html'), 404
@app.route('/.well-known/nostr.json')
def nostr():
# Get name parameter
name = request.args.get('name')
if not name:
return jsonify({'error': 'No name provided'})
return jsonify({
'names': {
name: 'b57b6a06fdf0a4095eba69eee26e2bf6fa72bd1ce6cbe9a6f72a7021c7acaa82'
}
})
# Main routes