Explorar el Código

Merge pull request #2433 from pyth-network/cprussin/ui-78-add-aleno-to-known-publishers

feat(known-publishers): add Aleno to known publishers
Connor Prussin hace 8 meses
padre
commit
bfe2c9d364

+ 5 - 0
packages/known-publishers/src/icons/color/aleno.svg

@@ -0,0 +1,5 @@
+<svg xmlns="http://www.w3.org/2000/svg" fill="#FF4900" viewBox="0 0 722 722">
+  <path d="M645.812 565.114L423.132 436.906C403.563 425.644 381.37 419.715 358.775 419.715C336.192 419.715 314 425.644 294.443 436.893L69.2825 566.447L103.76 625.981L252.243 540.525C284.292 522.079 324.297 545.213 324.297 582.191V721.424H393.265V582.28C393.265 545.302 433.269 522.169 465.319 540.614L611.335 624.648L645.812 565.114Z"/>
+  <path d="M392.382 1.12271L395.395 257.446C395.655 279.971 401.875 302.029 413.393 321.395C424.912 340.76 441.352 356.747 461.038 367.777L687.705 494.702L721.481 434.767L572.331 351.261C539.99 333.154 539.441 286.804 571.343 267.935L691.289 196.993L656.098 137.874L535.886 208.969C504.06 227.792 463.785 205.138 463.343 168.164L461.337 0.307175L392.382 1.12271Z"/>
+  <path d="M34.9445 500.305L257.43 371.762C276.974 360.461 293.206 344.24 304.465 324.706C315.723 305.185 321.632 283.062 321.593 260.551L321.138 1.39238L252.171 1.52183L252.485 172.238C252.553 209.216 212.591 232.424 180.508 214.038L59.2539 144.551L24.8805 204.15L145.715 273.399C177.874 291.83 177.958 338.184 145.867 356.732L0.350342 440.836L34.9445 500.305Z"/>
+</svg>

+ 5 - 0
packages/known-publishers/src/icons/monochrome/aleno.svg

@@ -0,0 +1,5 @@
+<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 722 722">
+  <path d="M645.812 565.114L423.132 436.906C403.563 425.644 381.37 419.715 358.775 419.715C336.192 419.715 314 425.644 294.443 436.893L69.2825 566.447L103.76 625.981L252.243 540.525C284.292 522.079 324.297 545.213 324.297 582.191V721.424H393.265V582.28C393.265 545.302 433.269 522.169 465.319 540.614L611.335 624.648L645.812 565.114Z"/>
+  <path d="M392.382 1.12271L395.395 257.446C395.655 279.971 401.875 302.029 413.393 321.395C424.912 340.76 441.352 356.747 461.038 367.777L687.705 494.702L721.481 434.767L572.331 351.261C539.99 333.154 539.441 286.804 571.343 267.935L691.289 196.993L656.098 137.874L535.886 208.969C504.06 227.792 463.785 205.138 463.343 168.164L461.337 0.307175L392.382 1.12271Z"/>
+  <path d="M34.9445 500.305L257.43 371.762C276.974 360.461 293.206 344.24 304.465 324.706C315.723 305.185 321.632 283.062 321.593 260.551L321.138 1.39238L252.171 1.52183L252.485 172.238C252.553 209.216 212.591 232.424 180.508 214.038L59.2539 144.551L24.8805 204.15L145.715 273.399C177.874 291.83 177.958 338.184 145.867 356.732L0.350342 440.836L34.9445 500.305Z"/>
+</svg>

+ 9 - 0
packages/known-publishers/src/index.tsx

@@ -1,9 +1,11 @@
+import alenoColor from "./icons/color/aleno.svg";
 import finazonColor from "./icons/color/finazon.svg";
 import orcaColor from "./icons/color/orca.svg";
 import sentioColor from "./icons/color/sentio.svg";
 import wooColor from "./icons/color/woo.svg";
 import ltpDark from "./icons/dark/ltp.svg";
 import ltpLight from "./icons/light/ltp.svg";
+import alenoMonochrome from "./icons/monochrome/aleno.svg";
 import blocksize from "./icons/monochrome/blocksize.svg";
 import elfomo from "./icons/monochrome/elfomo.svg";
 import finazonMonochrome from "./icons/monochrome/finazon.svg";
@@ -68,6 +70,13 @@ export const knownPublishers = {
       monochrome: orcaMonochrome,
     },
   },
+  EJT2CiSFR84yoVtqfB1LVC79MSS1wyZggaV6LHJB5nS2: {
+    name: "Aleno",
+    icon: {
+      color: alenoColor,
+      monochrome: alenoMonochrome,
+    },
+  },
 } as const;
 
 export const lookup = (value: string) =>