-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbotdata_DEMO.php
24 lines (24 loc) · 1.11 KB
/
botdata_DEMO.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
define('TOKEN', 'XXXXXXX'); // Telegram bot API key
$xPayMerchantId = 'XXXXXXX'; // 0xPay Merchant Id
$xPayPrivateKey = 'XXXXXXX'; // 0xPay Private Key
$tonapikey = 'XXXXXXXXXX'; // API key of toncenter.com
$mainWallet = 'XXXXXXXXXXXXX'; // TON Coin wallet to accept incoming transfers
$genseed = 'XXXXXXXXXXX'; // SEED phrase of a wallet from which will be sent withdrawals
// Fees for withdrawals
$tgrbep20fee = 2; // USD
$tgrtonfee = 0.1; // TON
$tonfee = 0.1; // TON
$tegromoney_shopid = "XXXXXXXXXXXX"; // Shop ID at tegro.money
$tegromoney_secretkey = "XXXXXXXXXX"; // Secret key at tegro.money
$chequefee = 0.02;
$stakingfee[0][0] = 15; // Staking fee for TGR 3 month
$stakingfee[0][1] = 18; // Staking fee for TGR 6 month
$stakingfee[0][2] = 21; // Staking fee for TGR 9 month
$stakingfee[0][3] = 24; // Staking fee for TGR 12 month
$stakingfee[1][0] = 9; // Staking fee for TON 3 month
$stakingfee[1][1] = 10; // Staking fee for TON 6 month
$stakingfee[1][2] = 11; // Staking fee for TON 9 month
$stakingfee[1][3] = 12; // Staking fee for TON 12 month
$exchangefee = 0.005; // Fee for swap coins
?>