-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkeyboards.js
37 lines (37 loc) · 1.06 KB
/
keyboards.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
var keyboards = {
startButtons: {
reply_markup: JSON.stringify({
inline_keyboard: [
[{
text: 'Deposit ETH',
callback_data: 'beginDepositETH'
},{
text: 'Deposit ELT',
callback_data: 'beginDepositELT'
},{
text: 'View Balance',
callback_data: 'showBalance'
},{
text: 'Show Offers',
callback_data: 'showOffers'
}]
]
})
},
chatPaymentSessionBools: {
reply_markup: JSON.stringify({
"resize_keyboard": true,
"one_time_keyboard": true,
inline_keyboard: [
[{
text: '✅',
callback_data: 'beginPaymentSession_true'
}],
[{
text: '❌',
callback_data: 'beginPaymentSession_false'
}]
]
})
},
}