ABI's from //contract/out URLs; arbsep; placement fee considers upcoming fee changes; vault detection bugfixes; order placement bugfixes; BETA

This commit is contained in:
Tim
2024-07-03 16:18:29 -04:00
parent 104b798d4f
commit d38baccd49
18 changed files with 200 additions and 170 deletions

View File

@@ -2,16 +2,16 @@
<span class="d-inline-flex align-center">
<v-icon icon="mdi-arrow-up-bold" color="primary" class="arrow"/>
<span class="logo">dexorder</span>
<alpha v-if="alpha"/>
<beta v-if="showTag"/>
</span>
</template>
<script setup>
import Alpha from "@/components/Alpha.vue";
import Beta from "@/components/Beta.vue";
const props = defineProps({
alpha: {type: Boolean, default: false}
showTag: {type: Boolean, default: false}
})
</script>