From ed10eab937b28a6a056696fd04f145673c4dab78 Mon Sep 17 00:00:00 2001 From: Dimitar Danailov Date: Sat, 8 Jun 2024 15:16:36 +0300 Subject: [PATCH] etherium staked page is supported --- .../crypto/coinbase-wrapped-staked-eth.svg | 16 +++++ .../icons/crypto/kelp-dao-restaked-eth.svg | 21 ++++++ .../icons/crypto/mantle-staked-ether.svg | 17 +++++ .../icons/crypto/renzo-restaked-eth.svg | 5 ++ .../public/icons/crypto/rocket-pool-eth.svg | 67 +++++++++++++++++++ .../public/icons/crypto/staked-ether.svg | 18 +++++ .../public/icons/crypto/stakestone-ether.svg | 23 +++++++ .../public/icons/crypto/wrapped-eeth.svg | 1 + .../dashboard-etherium-restake/db/index.ts | 1 + .../src/enums/CoingeckoCryptoCurrency.ts | 1 + 10 files changed, 170 insertions(+) create mode 100644 apps/website/public/icons/crypto/coinbase-wrapped-staked-eth.svg create mode 100644 apps/website/public/icons/crypto/kelp-dao-restaked-eth.svg create mode 100644 apps/website/public/icons/crypto/mantle-staked-ether.svg create mode 100644 apps/website/public/icons/crypto/renzo-restaked-eth.svg create mode 100644 apps/website/public/icons/crypto/rocket-pool-eth.svg create mode 100644 apps/website/public/icons/crypto/staked-ether.svg create mode 100644 apps/website/public/icons/crypto/stakestone-ether.svg create mode 100644 apps/website/public/icons/crypto/wrapped-eeth.svg diff --git a/apps/website/public/icons/crypto/coinbase-wrapped-staked-eth.svg b/apps/website/public/icons/crypto/coinbase-wrapped-staked-eth.svg new file mode 100644 index 0000000..ef70057 --- /dev/null +++ b/apps/website/public/icons/crypto/coinbase-wrapped-staked-eth.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/apps/website/public/icons/crypto/kelp-dao-restaked-eth.svg b/apps/website/public/icons/crypto/kelp-dao-restaked-eth.svg new file mode 100644 index 0000000..606de1b --- /dev/null +++ b/apps/website/public/icons/crypto/kelp-dao-restaked-eth.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/website/public/icons/crypto/mantle-staked-ether.svg b/apps/website/public/icons/crypto/mantle-staked-ether.svg new file mode 100644 index 0000000..ccf2d49 --- /dev/null +++ b/apps/website/public/icons/crypto/mantle-staked-ether.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/apps/website/public/icons/crypto/renzo-restaked-eth.svg b/apps/website/public/icons/crypto/renzo-restaked-eth.svg new file mode 100644 index 0000000..c485396 --- /dev/null +++ b/apps/website/public/icons/crypto/renzo-restaked-eth.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/website/public/icons/crypto/rocket-pool-eth.svg b/apps/website/public/icons/crypto/rocket-pool-eth.svg new file mode 100644 index 0000000..46e2ccb --- /dev/null +++ b/apps/website/public/icons/crypto/rocket-pool-eth.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/website/public/icons/crypto/staked-ether.svg b/apps/website/public/icons/crypto/staked-ether.svg new file mode 100644 index 0000000..7503f23 --- /dev/null +++ b/apps/website/public/icons/crypto/staked-ether.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/apps/website/public/icons/crypto/stakestone-ether.svg b/apps/website/public/icons/crypto/stakestone-ether.svg new file mode 100644 index 0000000..fbf2f27 --- /dev/null +++ b/apps/website/public/icons/crypto/stakestone-ether.svg @@ -0,0 +1,23 @@ + + + + + + + + diff --git a/apps/website/public/icons/crypto/wrapped-eeth.svg b/apps/website/public/icons/crypto/wrapped-eeth.svg new file mode 100644 index 0000000..048936d --- /dev/null +++ b/apps/website/public/icons/crypto/wrapped-eeth.svg @@ -0,0 +1 @@ + diff --git a/apps/website/src/app/demos/dashboard-etherium-restake/db/index.ts b/apps/website/src/app/demos/dashboard-etherium-restake/db/index.ts index 2490154..d271d71 100644 --- a/apps/website/src/app/demos/dashboard-etherium-restake/db/index.ts +++ b/apps/website/src/app/demos/dashboard-etherium-restake/db/index.ts @@ -6,6 +6,7 @@ export function getCoingeckoRequestParams(): CoingeckoSimplePriceRequest { Currency.BTC, Currency.ETHEREUM, Currency.STETH, + Currency.RETH, Currency.METH, Currency.RSETH, Currency.WEETH, diff --git a/apps/website/src/enums/CoingeckoCryptoCurrency.ts b/apps/website/src/enums/CoingeckoCryptoCurrency.ts index f90955b..0a99bca 100644 --- a/apps/website/src/enums/CoingeckoCryptoCurrency.ts +++ b/apps/website/src/enums/CoingeckoCryptoCurrency.ts @@ -23,6 +23,7 @@ enum CoingeckoCryptoCurrency { // ETHERIUM RESTAKE STETH = 'staked-ether', + RETH = 'rocket-pool-eth', METH = 'mantle-staked-ether', RSETH = 'kelp-dao-restaked-eth', WEETH = 'wrapped-eeth',