3 Commits

Author SHA1 Message Date
Tim
eb3246f1a5 block NeedsSigner 2024-05-27 21:01:59 -04:00
Tim
8f56dc76c7 Place Dexorder disabled 2024-05-27 20:18:47 -04:00
Tim
5bdd196a5c "alpha is down" web message 2024-05-27 20:11:57 -04:00
3 changed files with 20 additions and 6 deletions

View File

@@ -1,12 +1,21 @@
<template>
<slot v-if="pluginOk && loggedIn" v-bind="$props"/>
<v-card v-if="!loggedIn" rounded="0">
<v-card rounded="0">
<v-card-title>
<!-- <v-icon icon="mdi-hand-wave" color="grey"/>-->
Welcome to Dexorder Alpha!
</v-card-title>
<v-card-text>
This alpha test runs on the Dexorder Testnet blockchain, which gives you free testnet tokens to trade.
The alpha test has ended. Check back soon for the beta launch!
</v-card-text>
</v-card>
<!--
<slot v-if="pluginOk && loggedIn" v-bind="$props"/>
<v-card v-if="!loggedIn" rounded="0">
<v-card-title>
Welcome to Dexorder Alpha!
</v-card-title>
<v-card-text>
The alpha test has ended. Check back soon for the beta launch!
</v-card-text>
<v-card-text>
Play with the order builder by clicking on the <logo class="logo-small"/> logo or on the <v-icon icon="mdi-chart-timeline-variant"/> button.
@@ -39,7 +48,10 @@
<tr><td><b>Currency Symbol:</b></td><td><copy-button text="TETH"/></td></tr>
</tbody>
</table>
<!--
this block was already commented out:
<ul class="ml-6">
<li> Dexorder Alpha Testnet</li>
<li><b>New RPC URL:</b> </li>
@@ -61,9 +73,11 @@
</li>
</ol>
-->
<!--
</v-card-text>
</div>
</v-card>
-->
</template>
<script setup>

View File

@@ -3,7 +3,7 @@
<template #toolbar>
<!-- <v-btn variant="flat" prepend-icon="mdi-plus" @click="co.newOrder" v-if="co.orders.length===0">New Order</v-btn>-->
<v-btn variant="text" prepend-icon="mdi-send" @click="placeOrder"
:color="orderColor" v-if="co.orders.length>0" :disabled="!valid">
:color="orderColor" v-if="co.orders.length>0" :disabled="true"> <!-- todo permanently disabled -->
Place Dexorder
</v-btn>
<v-btn variant="text" prepend-icon="mdi-delete" v-if="co.orders.length>0"

View File

@@ -1,6 +1,6 @@
<template>
<v-main>
<v-alert text="TESTNET FAKE COINS&nbsp;&nbsp;&nbsp;&nbsp;• UNI • ARB • WETH • WBTC • LINK • USDC •"
<v-alert text="Alpha is down! Beta coming soon..."
color="red" :closable="false" rounded="0" height="0"/>
<Alerts/>
<chart-view/>