add contributions json

-add a variable to disable attestation watcher
This commit is contained in:
Danil Kovtonyuk 2020-05-11 20:11:59 +10:00
parent 525c237b6c
commit 089db9ea31
5 changed files with 10057 additions and 17 deletions

View File

@ -8,6 +8,7 @@ MYSQL_USER=
MYSQL_PASSWORD= MYSQL_PASSWORD=
MYSQL_DATABASE=phase2 MYSQL_DATABASE=phase2
DISABLE_ATTESTATION_WATCHER=false
TWITTER_CONSUMER_KEY= TWITTER_CONSUMER_KEY=
TWITTER_CONSUMER_SECRET= TWITTER_CONSUMER_SECRET=
TWITTER_CALLBACK_URL=https://ceremony.tornado.cash/api/oauth_callback/twitter TWITTER_CALLBACK_URL=https://ceremony.tornado.cash/api/oauth_callback/twitter

View File

@ -15,6 +15,7 @@ For command `yarn dev` the `.env.development` is used. The `yarn start` uses `.e
| MYSQL_USER | Mysql user the app uses. Notice, you don't need mysql db for development. The app will use local sqlite db in dev mode. Local db is stored in `db.development.sqlite` file. | | MYSQL_USER | Mysql user the app uses. Notice, you don't need mysql db for development. The app will use local sqlite db in dev mode. Local db is stored in `db.development.sqlite` file. |
| MYSQL_PASSWORD | Mysql password for MYSQL_USER | | MYSQL_PASSWORD | Mysql password for MYSQL_USER |
| MYSQL_DATABASE | Mysql database | | MYSQL_DATABASE | Mysql database |
| DISABLE_ATTESTATION_WATCHER | Disable attestation watcher. `true` or `false` |
| TWITTER_CONSUMER_KEY | Twitter consumer API key. [Twitter app](https://developer.twitter.com/en/apps) | | TWITTER_CONSUMER_KEY | Twitter consumer API key. [Twitter app](https://developer.twitter.com/en/apps) |
| TWITTER_CONSUMER_SECRET | Twitter consumer API secret | | TWITTER_CONSUMER_SECRET | Twitter consumer API secret |
| TWITTER_CALLBACK_URL | Twitter callback URL. The app handles the `/api/oauth_callback/twitter` endpoint. Feel free to change domain name and protocol though | | TWITTER_CALLBACK_URL | Twitter callback URL. The app handles the `/api/oauth_callback/twitter` endpoint. Feel free to change domain name and protocol though |

View File

@ -8,11 +8,15 @@
defines the rules of the game for the construction of zk-SNARKs. Please contribute with your defines the rules of the game for the construction of zk-SNARKs. Please contribute with your
source of entropy, so that Tornado.cash can become fully trustless. source of entropy, so that Tornado.cash can become fully trustless.
</p> </p>
<div class="buttons is-centered"> <!-- <div class="buttons is-centered">
<b-button type="is-primary" outlined tag="router-link" to="/make-contribution"> <b-button type="is-primary" outlined tag="router-link" to="/make-contribution">
Contribute Contribute
</b-button> </b-button>
</div> </div> -->
<h2 class="title">
Tornado.cash <span>Trusted Setup Ceremony</span> is completed.<br />
Thank you for your participation!
</h2>
<div class="currently"> <div class="currently">
Currently there are <span>{{ contributions.length }}</span> contributions Currently there are <span>{{ contributions.length }}</span> contributions
</div> </div>
@ -55,9 +59,10 @@
</b-table-column> </b-table-column>
<b-table-column :centered="true" label="Attestation"> <b-table-column :centered="true" label="Attestation">
<!-- :href="`https://twitter.com/${props.row.handle}/status/${props.row.attestation}`" -->
<a <a
v-if="props.row.attestation" v-if="props.row.attestation"
:href="`https://twitter.com/${props.row.handle}/status/${props.row.attestation}`" :href="props.row.attestation"
target="_blank" target="_blank"
class="button is-icon" class="button is-icon"
> >
@ -118,10 +123,13 @@
</template> </template>
<script> <script>
import contributions from '@/store/contributions'
export default { export default {
data() { data() {
return { return {
contributions: [], contributions,
// contributions: [],
// contributions: [ // contributions: [
// { // {
// id: 1, // id: 1,
@ -147,15 +155,15 @@ export default {
}) })
.reverse() .reverse()
} }
},
async mounted() {
try {
const response = await fetch('/api/contributions')
const data = await response.json()
this.contributions = data
} catch (e) {
console.error('e', e)
}
} }
// async mounted() {
// try {
// const response = await fetch('/api/contributions')
// const data = await response.json()
// this.contributions = data
// } catch (e) {
// console.error('e', e)
// }
// }
} }
</script> </script>

View File

@ -46,7 +46,9 @@ async function start() {
console.log(`Server is running on port ${port}.`) console.log(`Server is running on port ${port}.`)
}) })
attestationWatcher() if (process.env.DISABLE_ATTESTATION_WATCHER !== 'true') {
console.log('attestationWatcher started') attestationWatcher()
console.log('attestationWatcher started')
}
} }
start() start()

10028
store/contributions.json Normal file

File diff suppressed because it is too large Load Diff