diff --git a/.env.example b/.env.example index 67f864d..4e6c925 100644 --- a/.env.example +++ b/.env.example @@ -12,7 +12,8 @@ TWITTER_CONSUMER_SECRET= TWITTER_CALLBACK_URL=https://ceremony.tornado.cash/api/oauth_callback/twitter TWITTER_ACCESS_TOKEN_KEY= TWITTER_ACCESS_TOKEN_SECRET= -TWITTER_HASHTAG= +# hashtag should be provided without # sign +NUXT_ENV_TWITTER_HASHTAG= TWITTER_INTERVAL_ATTESTATION=300000 GITHUB_CLIEND_ID= diff --git a/server/attestationWatcher.js b/server/attestationWatcher.js index ee66528..eacfa1c 100644 --- a/server/attestationWatcher.js +++ b/server/attestationWatcher.js @@ -6,7 +6,7 @@ const { TWITTER_CONSUMER_SECRET, TWITTER_ACCESS_TOKEN_KEY, TWITTER_ACCESS_TOKEN_SECRET, - TWITTER_HASHTAG, + NUXT_ENV_TWITTER_HASHTAG, TWITTER_INTERVAL_ATTESTATION } = process.env @@ -39,7 +39,7 @@ async function attestationWatcher() { const params = { since_id: initTweet, - q: `#${TWITTER_HASHTAG} -filter:retweets`, + q: `#${NUXT_ENV_TWITTER_HASHTAG} -filter:retweets`, result_type: 'recent', count: 100 } diff --git a/store/user.js b/store/user.js index 1d209e3..f584d47 100644 --- a/store/user.js +++ b/store/user.js @@ -53,7 +53,7 @@ const actions = { window.location.replace(`/api/connect/${provider}`) }, makeTweet({ state }) { - const tweetText = `Just made the contribution %23${state.contributionIndex} to Tornado.cash Trusted Setup Ceremony! 🚀` + const tweetText = `Just made the contribution %23${state.contributionIndex} to Tornado.cash Trusted Setup Ceremony! 🚀 %23${process.env.NUXT_ENV_TWITTER_HASHTAG}` const popUpWindowWidth = 600 const popUpWindowHeight = 250 const dualScreenLeft = window.screenLeft !== undefined ? window.screenLeft : window.screenX