This repository has been archived by the owner on Aug 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef7d14d
commit 46c5f1b
Showing
1 changed file
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,24 @@ | ||
# free-coins-claimer | ||
|
||
|
||
How to start: | ||
|
||
1.Click install.bat | ||
2.Click run.bat | ||
|
||
How to add your own account: | ||
|
||
1.Get your JWT | ||
2.In src/index.js go to the end of section "JWTs", press ENTER and write anything you want (no spaces), for example: main = 'YOUR JWT' | ||
3.In Claimer section paste | ||
fetch(`https://api.tricksplit.io/freeCoins?jwt=${main}`) | ||
.then(res => res.text()) | ||
.then(text => console.log('Main: '+text)); | ||
4.Safe | ||
|
||
How to get your JWT: | ||
|
||
1.Open Tricksplit.io | ||
2.Press F12 and go to Console | ||
3.Paste in console API.claimFreeCoins(); | ||
4.Go to Network and look for "freeCoins?jwt=..." | ||
5.Right click on it and click "Open in new tab" | ||
6.Copy link and delete "https://api.tricksplit.io/freeCoins?jwt=", done |