Supernets.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <script setup lang="ts">
  2. /* Define properties. */
  3. // https://vuejs.org/guide/components/props.html#props-declaration
  4. const props = defineProps({
  5. data: {
  6. type: [Object],
  7. },
  8. })
  9. // onMounted(() => {
  10. // console.log('Mounted!')
  11. // // Now it's safe to perform setup operations.
  12. // })
  13. // onBeforeUnmount(() => {
  14. // console.log('Before Unmount!')
  15. // // Now is the time to perform all cleanup operations.
  16. // })
  17. </script>
  18. <template>
  19. <main class="flex flex-col gap-5">
  20. <h2 class="text-3xl font-bold text-fuchsia-700">
  21. Supernets: PoW Layer 1+ (Plus)
  22. </h2>
  23. <p>
  24. The Incognito Network (Nito) is specifically designed to run across multiple UTXO-style networks;
  25. specifically those Proof-of-Work (Layer 1) networks capable of efficiently running Supernets, like:
  26. <ol class="py-3 pl-10 list-decimal">
  27. <li>Bitcoin Cash</li>
  28. <li>Kaspa</li>
  29. <li>Litecoin</li>
  30. <li>Nexa</li>
  31. <li>and more...</li>
  32. </ol>
  33. </p>
  34. <p>
  35. UTXO-based Supernets are the ideal technological platforms;
  36. offering a plethora of features and benefits, including:
  37. <ol class="py-3 pl-10 list-disc">
  38. <li>BigNum support for Zero Knowledge math primitives</li>
  39. </ol>
  40. </p>
  41. </main>
  42. </template>