Skip to content

Commit

Permalink
add simplex
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed May 4, 2024
1 parent 669cc42 commit f18a521
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 15 deletions.
2 changes: 1 addition & 1 deletion components/Index/Rules.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<li>Every shielding event will give you 1 Point</li>
<li>Every unshield event will give you 2 Points</li>
<li>Perform Step 5 to be considered as a participant and get additional 5 points</li>
<li>Don’t post multiple times with the same X account</li>
<li>Don’t post multiple times with the same X account. However, sending us a message over simpleX will give you additional 5 points</li>
<li>You can perform steps 2-4 repeatedly until you run out of funds</li>
<li>The goal of this campaign is to test the limits of the chain with heavy traffic. If at a certain time,
the chain will break and will not be usable anymore, the campaign will be stopped and the winners will be
Expand Down
53 changes: 39 additions & 14 deletions components/PublishonxTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,48 @@
<div class="block steps">
<div class="container">
<div class=''>
<div class='text-4xl mt-10 mb-10'>Publish on X</div>
<div class='text-4xl mt-10 mb-10'>Tell the World - or Stay Anon</div>
<div class='text-lg'>
<div v-if="accountStore.incogniteeBalance == 0">
<i><b>You have no balance on Incognitee. Please go back to step 2</b></i>
</div>
<div v-if="accountStore.paseoBalance == 0">
<i><b>You have no balance on Paseo. Please go back to step 2</b></i>
</div>
</div>
<div class='text-lg'>
To be eligible for our prices, please either tweet or send us a message over SimpleX

By clicking the ”Check” button, you will be redirected to the Paseo Subscan Portal,
where you have to check for your unshielding event.
Tweet about your successful test using the button below. Make sure to
include hashtag #incognitee and your account
<div class='mt-5'>
<template v-if="!isIndexerLinkDisabled">
<NuxtLink :to="indexerLinkUrl" target="blank" class="btn btn_gradient">Check Public History</NuxtLink>
<template v-if="!isTwitterLinkDisabled">
<NuxtLink :to="twitterLinkUrl" target="blank" class="btn btn_gradient">tweet about your success
</NuxtLink>
</template>
<template v-else>
<NuxtLink to="" target="blank" class="btn btn_border">loading...</NuxtLink>
<NuxtLink to="" target="blank" class="btn btn_border">No account with a balance yet</NuxtLink>
</template>
</div>
</div>
<div class='text-lg'>

To be eligible for our prices, please tweet about our successful test using the button below. Make sure to
include hashtag #incognitee and your account
<div class='mt-5'>Or, if you prefer to stay anonymous, use one of the best private messengers out there.
</div>
<div class='mt-5'>
<template v-if="!isTwitterLinkDisabled">
<NuxtLink :to="twitterLinkUrl" target="blank" class="btn btn_gradient">tweet about your success
<NuxtLink
to="https://simplex.chat/contact#/?v=2-5&smp=smp%3A%2F%2F1OwYGt-yqOfe2IyVHhxz3ohqo3aCCMjtB-8wn4X_aoY%3D%40smp11.simplex.im%2FbXnLZ9ksJdcW3G_yRoo_0GZefWNjVzMI%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAkEgKgkeLKpJi-1y8iW19tvIIRYL6CiObZbp7pWR-4UE%253D%26srv%3D6ioorbm6i3yxmuoezrhjk6f6qgkc4syabh7m3so74xunb5nzr4pwgfqd.onion"
target="blank" class="btn btn_gradient">send us a simpleX message
</NuxtLink>
<div class='mt-5'><textarea readonly class="template-textarea">Dear Integritee team. I have participated in the incognitee beta campaign with account {{accountStore.getAddress}}
</textarea>
</div>
</template>
<template v-else>
<NuxtLink to="" target="blank" class="btn btn_border">loading...</NuxtLink>
<NuxtLink to="" target="blank" class="btn btn_border">No account with a balance yet</NuxtLink>
</template>
</div>

<div class='mt-5'>
In case of a win, we will reach out to you over the same channel
</div>
</div>
</div>
</div>
Expand Down Expand Up @@ -77,3 +85,20 @@ watch(
onMounted(updateLinks)
</script>
<style scoped>
.template-textarea {
width: 100%;
height: 80px;
padding: 10px;
border-left: 10px solid #ccc;
border-top: none;
border-right: none;
border-bottom: none;
background-color: transparent;
font-style: italic;
font-size: 1.0em;
line-height: 1.6;
resize: none;
overflow: hidden;
}
</style>

0 comments on commit f18a521

Please sign in to comment.