This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const token = "$token" // replace your token here | |
| const headers = { | |
| Authorization: token, | |
| } | |
| async function delay(ms) { | |
| return new Promise((reslove) => setTimeout(() => reslove(true), ms)) | |
| } | |
| async function makeMoney() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const token = "" // put your token here | |
| async function delay(ms: number) { | |
| return new Promise((reslove) => setTimeout(() => reslove(true), ms)) | |
| } | |
| async function validateToken(token: string) { | |
| const headers = { Authorization: token } | |
| const res = await fetch(`https://major.bot/api/users/6946511911/`, { |