Skip to content

Commit dc720d9

Browse files
authored
Merge pull request #231 from oasisprotocol/lw/move-to-assets
discover: Move ecosystem icons to assets.oasis.io
2 parents 3ca05e0 + d08bf1c commit dc720d9

36 files changed

+32
-487
lines changed

.changelog/231.internal.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
discover: Move ecosystem icons to assets.oasis.io

README.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,3 @@ pnpm install --frozen-lockfile
2424
pnpm --filter @oasisprotocol/rose-app-subcall build
2525
pnpm dev
2626
```
27-
28-
### LICENSE
29-
30-
All materials, content, and intellectual property, listed in
31-
`home/public/discover` including but not limited to
32-
text, images, graphics, logos, audio, video, and software, made available
33-
on Oasis Protocol’s website, publications, or other platforms,
34-
are protected by copyright laws and owned by the Owner unless otherwise stated.
35-
36-
For all other materials, content and intellectual property applies Apache 2.0
37-
License.

discover/src/constants/config.ts

Lines changed: 31 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,192 +1,187 @@
1-
/**
2-
* Copyright 2024
3-
* SPDX-License-Identifier: CC BY
4-
*/
5-
61
import { CardConfig } from '@oasisprotocol/rose-app-ui/discover'
72

83
export const CARDS_CONFIG: { featured: CardConfig[]; dApps: CardConfig[]; tooling: CardConfig[] } = {
94
featured: [
105
{
116
title: 'NEBY',
127
type: 'DEX',
13-
imgSrc: '/discover/Neby.png',
8+
imgSrc: 'https://assets.oasis.io/rose-app-discover/Neby.jpg',
149
externalLink: 'https://www.neby.exchange/',
1510
},
1611
{
1712
title: 'Accumulated Finance',
1813
type: 'Liquid staking',
19-
imgSrc: '/discover/AccumulatedFinance.png',
14+
imgSrc: 'https://assets.oasis.io/rose-app-discover/AccumulatedFinance.png',
2015
externalLink: 'https://accumulated.finance/',
2116
},
2217
{
2318
title: 'Bit Protocol',
2419
type: 'CDP Stablecoin',
25-
imgSrc: '/discover/BitProtocol.png',
20+
imgSrc: 'https://assets.oasis.io/rose-app-discover/BitProtocol.png',
2621
externalLink: 'https://bitusd.finance/',
2722
},
2823
],
2924
dApps: [
3025
{
3126
title: 'Thorn Protocol',
3227
type: 'StableSwap',
33-
imgSrc: '/discover/ThornProtocol.jpg',
28+
imgSrc: 'https://assets.oasis.io/rose-app-discover/ThornProtocol.jpg',
3429
externalLink: 'https://thornprotocol.com/',
3530
},
3631
{
3732
title: 'Daosis',
3833
type: 'Launchpad & Token Minter',
39-
imgSrc: '/discover/Daosis.jpg',
34+
imgSrc: 'https://assets.oasis.io/rose-app-discover/Daosis.jpg',
4035
externalLink: 'https://daosis.io/',
4136
},
4237
{
4338
title: 'Rosy',
4439
type: 'Meme',
45-
imgSrc: '/discover/Rosy.jpg',
40+
imgSrc: 'https://assets.oasis.io/rose-app-discover/Rosy.jpg',
4641
externalLink: 'https://rosytoken.com/',
4742
},
4843
{
4944
title: '4P SuperdApp',
5045
type: 'Web3 Messenger',
51-
imgSrc: '/discover/4PSuperdApp.jpg',
46+
imgSrc: 'https://assets.oasis.io/rose-app-discover/4PSuperdApp.jpg',
5247
externalLink: 'https://the4thpillar.io/',
5348
},
5449
{
5550
title: "Rakesh's Village",
5651
type: 'Meme & Token Minter',
57-
imgSrc: '/discover/RakeshsVillage.jpg',
52+
imgSrc: 'https://assets.oasis.io/rose-app-discover/RakeshsVillage.jpg',
5853
externalLink: 'https://www.rakeshvillage.fun/',
5954
},
6055
{
6156
title: 'Predictoor',
6257
type: 'Predictions',
63-
imgSrc: '/discover/Predictoor.jpg',
58+
imgSrc: 'https://assets.oasis.io/rose-app-discover/Predictoor.jpg',
6459
externalLink: 'https://www.predictoor.ai/',
6560
},
6661
{
6762
title: 'Pixel Realm',
6863
type: 'NFT Marketplace & Gaming Incubator',
69-
imgSrc: '/discover/PixelRealm.jpg',
64+
imgSrc: 'https://assets.oasis.io/rose-app-discover/PixelRealm.jpg',
7065
externalLink: 'https://app.pixelrealm.io/',
7166
},
7267
{
7368
title: 'Protocol Monster Labs',
7469
type: 'Gaming',
75-
imgSrc: '/discover/ProtocolMonsterLabs.jpg',
70+
imgSrc: 'https://assets.oasis.io/rose-app-discover/ProtocolMonsterLabs.jpg',
7671
externalLink: 'https://protocolmonsterlabs.com/',
7772
},
7873
{
7974
title: 'Oasis Safe',
8075
type: 'Multisig Wallet',
81-
imgSrc: '/discover/OasisSafe.svg',
76+
imgSrc: 'https://assets.oasis.io/rose-app-discover/OasisSafe.svg',
8277
externalLink: 'https://safe.oasis.io/welcome',
8378
},
8479
{
8580
title: 'Midas',
8681
type: 'RWA Yield',
87-
imgSrc: '/discover/Midas.jpg',
82+
imgSrc: 'https://assets.oasis.io/rose-app-discover/Midas.jpg',
8883
externalLink: 'https://midas.app/',
8984
},
9085
{
9186
title: 'Oasis Blockvote',
9287
type: 'Governance',
93-
imgSrc: '/discover/OasisBlockvote.svg',
88+
imgSrc: 'https://assets.oasis.io/rose-app-discover/OasisBlockvote.svg',
9489
externalLink: 'https://vote.oasis.io/',
9590
},
9691
],
9792
tooling: [
9893
{
9994
title: 'Empyreal / Simulacrum',
10095
type: 'SDK & AI Agents',
101-
imgSrc: '/discover/Empyreal.jpg',
96+
imgSrc: 'https://assets.oasis.io/rose-app-discover/Empyreal.jpg',
10297
externalLink: 'https://empyrealsdk.com/',
10398
},
10499
{
105100
title: 'Router Bridge',
106101
type: 'Bridge',
107-
imgSrc: '/discover/Router.jpg',
102+
imgSrc: 'https://assets.oasis.io/rose-app-discover/Router.jpg',
108103
externalLink: 'https://app.routernitro.com/swap',
109104
},
110105
{
111106
title: 'DEX Screener',
112-
imgSrc: '/discover/DexScreener.jpg',
107+
imgSrc: 'https://assets.oasis.io/rose-app-discover/DexScreener.jpg',
113108
externalLink: 'https://dexscreener.com/oasissapphire',
114109
},
115110
{
116111
title: 'DappRadar',
117-
imgSrc: '/discover/DappRadar.jpg',
112+
imgSrc: 'https://assets.oasis.io/rose-app-discover/DappRadar.jpg',
118113
externalLink: 'https://dappradar.com/rankings/protocol/oasis-sapphire',
119114
},
120115
{
121116
title: 'DefiLlama',
122-
imgSrc: '/discover/DefiLlama.jpg',
117+
imgSrc: 'https://assets.oasis.io/rose-app-discover/DefiLlama.jpg',
123118
externalLink: 'https://defillama.com/chain/Oasis%20Sapphire',
124119
},
125120
{
126121
title: 'ROSE Wallet',
127122
type: 'Wallet',
128-
imgSrc: '/discover/RoseWallet.svg',
123+
imgSrc: 'https://assets.oasis.io/rose-app-discover/RoseWallet.svg',
129124
externalLink: 'https://wallet.oasis.io/',
130125
},
131126
{
132127
title: 'illuminex',
133128
type: 'Privacy Wallet',
134-
imgSrc: '/discover/illumineX.jpg',
129+
imgSrc: 'https://assets.oasis.io/rose-app-discover/illumineX.jpg',
135130
externalLink: 'https://illuminex.xyz/',
136131
},
137132
{
138133
title: 'Oasis Explorer',
139-
imgSrc: '/discover/OasisExplorer.svg',
134+
imgSrc: 'https://assets.oasis.io/rose-app-discover/OasisExplorer.svg',
140135
externalLink: 'https://explorer.oasis.io/',
141136
},
142137
{
143138
title: 'Oasis Docs',
144-
imgSrc: '/discover/OasisDocs.svg',
139+
imgSrc: 'https://assets.oasis.io/rose-app-discover/OasisDocs.svg',
145140
externalLink: 'https://docs.oasis.io/',
146141
},
147142
{
148143
title: 'Transak',
149-
imgSrc: '/discover/Transak.jpg',
144+
imgSrc: 'https://assets.oasis.io/rose-app-discover/Transak.jpg',
150145
externalLink: 'https://global.transak.com/',
151146
},
152147
{
153148
title: 'CoinMarketCap',
154-
imgSrc: '/discover/CoinMarketCap.jpg',
149+
imgSrc: 'https://assets.oasis.io/rose-app-discover/CoinMarketCap.jpg',
155150
externalLink: 'https://coinmarketcap.com/currencies/oasis-network/',
156151
},
157152
{
158153
title: 'CoinGecko',
159-
imgSrc: '/discover/Coingecko.jpg',
154+
imgSrc: 'https://assets.oasis.io/rose-app-discover/Coingecko.jpg',
160155
externalLink: 'https://www.coingecko.com/en/coins/oasis',
161156
},
162157
{
163158
title: 'Reclaim Protocol',
164159
type: 'SDK',
165-
imgSrc: '/discover/ReclaimProtocol.svg',
160+
imgSrc: 'https://assets.oasis.io/rose-app-discover/ReclaimProtocol.svg',
166161
externalLink: 'https://www.reclaimprotocol.org/',
167162
},
168163
{
169164
title: 'RA1L',
170165
type: 'DID',
171-
imgSrc: '/discover/Ra1l.jpg',
166+
imgSrc: 'https://assets.oasis.io/rose-app-discover/Ra1l.jpg',
172167
externalLink: 'https://ra1l.com/',
173168
},
174169
{
175170
title: 'OWallet',
176171
type: 'Wallet',
177-
imgSrc: '/discover/OWallet.jpg',
172+
imgSrc: 'https://assets.oasis.io/rose-app-discover/OWallet.jpg',
178173
externalLink: 'https://owallet.io/',
179174
},
180175
{
181176
title: 'Safepal',
182177
type: 'Wallet',
183-
imgSrc: '/discover/SafePal.png',
178+
imgSrc: 'https://assets.oasis.io/rose-app-discover/SafePal.png',
184179
externalLink: 'https://safepal.com/en/',
185180
},
186181
{
187182
title: 'StealthEX',
188183
type: 'Exchange',
189-
imgSrc: '/discover/StealthEX.svg',
184+
imgSrc: 'https://assets.oasis.io/rose-app-discover/StealthEX.svg',
190185
externalLink: 'https://stealthex.io/?to=rose',
191186
},
192187
],
-20.5 KB
Binary file not shown.
-17.6 KB
Binary file not shown.
-29.1 KB
Binary file not shown.
-15.2 KB
Binary file not shown.

home/public/discover/Coingecko.jpg

-16.9 KB
Binary file not shown.

home/public/discover/Daosis.jpg

-20 KB
Binary file not shown.

home/public/discover/DappRadar.jpg

-14.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)