Automation bot for interacting with the Silent Protocol testnet.
-
Visit the Silent Protocol Testnet Ceremony
-
Retrieve Your Bearer Token
Option 1: Using Network Tab
- Open your browser's developer tools (usually by pressing
F12
orCtrl+Shift+I
). - Navigate to the "Network" tab.
- Reload the page.
- Look for
fetch
orxhr
requests related to the ceremony. - Click on one of these requests and go to the "Headers" section.
- Find the
Authorization
header and copy the token (the part afterBearer
). Do not include theBearer
text.
Option 2: Using Console
-
Open your browser's developer tools and go to the "Console" tab.
-
Run the following command to retrieve the token from local storage:
console.log(localStorage.getItem('silent_jwt'));
-
Copy the displayed token.
- Open your browser's developer tools (usually by pressing
-
Save Your Tokens
- Create a file named
tokens.txt
in the project root directory. - Add each token on a new line.
- Create a file named
-
Clone this repository:
git clone https://github.com/dante4rt/silent-protocol-bot.git cd silent-protocol-bot
-
Install dependencies:
npm install
Start the bot with the following command:
npm start
- The bot will use the tokens from
tokens.txt
to interact with the Silent Protocol backend. - Ensure your tokens are valid to avoid errors.
If you would like to support the development of this project, you can make a donation using the following addresses:
- Solana:
GLQMG8j23ookY8Af1uLUg4CQzuQYhXcx56rkpZkyiJvP
- EVM:
0x23686f799e7C1E8158208882bAD2BD90A5C59256
- BTC:
bc1p9za9ctgwwvc7amdng8gvrjpwhnhnwaxzj3nfv07szqwrsrudfh6qvvxrj8
This project is licensed under the MIT License.