with open("name.txt", "r") as file:
print(file.readline())
async def refreshator():
while True:
await asyncio.sleep(60)
# Задача на обновление кол-во криптовалюты у пользователя
if __name__ == '__main__':
asyncio.get_event_loop().create_task(refreshator())
executor.start_polling(dp, skip_updates=True)