Spaces:
Paused
Paused
def headers(token=None): | |
headers = { | |
"Accept": "application/json, text/plain, */*", | |
"Origin": "https://www.binance.com", | |
"Referer": "https://www.binance.com/en/game/tg/moon-bix", | |
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36", | |
} | |
if token: | |
headers["X-Growth-Token"] = token | |
return headers | |