12 lines
351 B
Python
12 lines
351 B
Python
from sanic import response
|
|
|
|
from app.core._config import PROJECT_HOST
|
|
|
|
|
|
async def s_api_tonconnect_manifest(request):
|
|
return response.json({
|
|
"url": f"{PROJECT_HOST}/#from=tonconnect",
|
|
"name": f"{PROJECT_HOST}", # TODO: maybe edit
|
|
"iconUrl": "https://github.com/projscale/assets/blob/main/ton-connect.png?raw=true",
|
|
})
|