1- interface DappList {
1+ interface DappListItem {
22 name : string ;
33 dappUrl : string ;
44 type : DappType ;
@@ -16,7 +16,7 @@ enum DappType {
1616 Other = 'Other'
1717}
1818
19- export const dappList : DappList [ ] = [
19+ export const DAPPS_LIST : DappListItem [ ] = [
2020 {
2121 name : 'QuipuSwap' ,
2222 dappUrl : 'https://quipuswap.com' ,
@@ -154,3 +154,38 @@ export const dappList: DappList[] = [
154154 categories : [ DappType . DeFi ]
155155 }
156156] ;
157+
158+ export const IOS_DAPPS_LIST : DappListItem [ ] = [
159+ {
160+ name : 'Tezos Projects' ,
161+ dappUrl : 'https://ecosystem.tezos.com' ,
162+ logo : 'https://temple-wallet-stage-bucket.nyc3.cdn.digitaloceanspaces.com/dapps/tezos.png' ,
163+ slug : 'ecosystem.tezos.com' ,
164+ type : DappType . Other ,
165+ categories : [ ]
166+ } ,
167+ {
168+ name : 'Mad.Fish' ,
169+ dappUrl : 'https://mad.fish/products' ,
170+ logo : 'https://temple-wallet-stage-bucket.nyc3.cdn.digitaloceanspaces.com/dapps/madfish.png' ,
171+ slug : 'mad.fish/products' ,
172+ type : DappType . Other ,
173+ categories : [ ]
174+ } ,
175+ {
176+ name : 'Temple Wallet' ,
177+ dappUrl : 'https://templewallet.com/download?platform=extension' ,
178+ logo : 'https://temple-wallet-stage-bucket.nyc3.cdn.digitaloceanspaces.com/dapps/temple.png' ,
179+ slug : 'download-tw-extension' ,
180+ type : DappType . Other ,
181+ categories : [ ]
182+ } ,
183+ {
184+ name : 'TZKT' ,
185+ dappUrl : 'https://tzkt.io/dapps' ,
186+ logo : 'https://temple-wallet-stage-bucket.nyc3.cdn.digitaloceanspaces.com/dapps/tzkt.png' ,
187+ slug : 'tzkt.io/dapps' ,
188+ type : DappType . Other ,
189+ categories : [ ]
190+ }
191+ ] ;
0 commit comments