forked from thepeanutgalleryandco/Hrc20WhalePost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
20 lines (18 loc) · 916 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Sign up with the twitter account that you want to use at https://developer.twitter.com/en and follow the README on the repo.
const twitterClient = {
appKey: "INSERTKEY",
appSecret: "INSERTKEY",
accessToken: "INSERTKEY",
accessSecret: "INSERTKEY",
};
const Settings = {
decimalView: 8, // HTMLCoin's decimal view, do not update.
hrc20Name: '', // Update HRC20's Token Symbol. You can retrieve token information at https://explorer.htmlcoin.com/tokens/search. Example - Codex
hrc20Symbol: '', // Update HRC20's Token Symbol. You can retrieve token information at https://explorer.htmlcoin.com/tokens/search. Example - CDEX
messageIcons: ['🚨', '💰'], // Add icons that will be randomized for each tweet. Add more from https://getemoji.com/ .
minimumTxnAmount: 1 // Update minimum transaction value to trigger alert.
};
module.exports = {
twitterClient,
Settings
};