-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.js
40 lines (32 loc) · 1.5 KB
/
messages.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
module.exports = {
pendingMessage: (username, token, cashuApiUrl) => `
${username} shared a Cashu token 🥜
Click here to claim to Lightning: [Claim link](${cashuApiUrl}?token=${token})
`,
claimedMessage: (username) => `
${username} shared a Cashu token 🥜
Cashu token has been claimed ✅
`,
errorMessage: 'Error processing your request. Please try again later.',
checkingTokenStatus: 'Checking token status...',
tokenStatusButtonPending: 'Token Status: Pending',
tokenStatusButtonClaimed: 'Token Status: Claimed',
helpMessage: `
Welcome to the Cashu Claim Bot! Here’s how to get started:
1. **Using the Bot in Private Chat:**
- Send me a Cashu token, and I’ll provide you with a QR code and the status of the token.
2. **Using the Bot in Group Chats:**
- Add me to a group and give me admin permissions with only the 'Remove Messages' permission enabled.
- I only need this permission to remove Cashu tokens after processing them to keep the chat clean and tidy.
Happy Satoshi hunting!
`,
startMessage: `
Welcome to the Cashu Claim Bot! Here’s how to get started:
1. **Using the Bot in Private Chat:**
- Send me a Cashu token, and I’ll provide you with a QR code and the status of the token.
2. **Using the Bot in Group Chats:**
- Add me to a group and give me admin permissions with only the 'Remove Messages' permission enabled.
- I only need this permission to remove Cashu tokens after processing them to keep the chat clean and tidy.
Happy Satoshi hunting!
`,
};