Skip to content

Commit

Permalink
Extend config with navigation specific data
Browse files Browse the repository at this point in the history
  • Loading branch information
piekczyk committed Sep 22, 2023
1 parent 10ffecb commit 53d172a
Show file tree
Hide file tree
Showing 2 changed files with 129 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules
dist
.idea
.vscode
package-lock.json
132 changes: 128 additions & 4 deletions configs/oasis-borrow/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,139 @@ export default function ({
},
parameters: {
topBanner: {
name: "rebranding",
url: "https://blog.summer.fi/oasis-app-rebrands-to-summer-fi/",
message: "Oasis.app is now Summer.fi! Read the announcement",
name: 'rebranding',
url: 'https://blog.summer.fi/oasis-app-rebrands-to-summer-fi/',
message: 'Oasis.app is now Summer.fi! Read the announcement',
},
aaveLike: {
orderInformation: {
showFlashloanInformation: notProduction,
},
},
navigation: {
protocols: {
ajna: {
borrow: {
tokens: ['ETH', 'WBTC', 'DAI'],
extra: {
title: 'Amplify sDAI up to 35x.',
description:
'Use Summer.fi multiply to increase your exposure to sDAI yield seamlessly.',
url: '/',
},
},
multiply: {
tokens: ['ETH', 'WBTC', 'DAI'],
extra: {
title: 'Amplify sDAI up to 35x.',
description:
'Use Summer.fi multiply to increase your exposure to sDAI yield seamlessly.',
url: '/',
},
},
earn: {
tokens: ['ETH', 'WBTC', 'DAI'],
extra: {
title: 'Amplify sDAI up to 35x.',
description:
'Use Summer.fi multiply to increase your exposure to sDAI yield seamlessly.',
url: '/',
},
},
},
aave: {
borrow: {
tokens: ['ETH', 'WBTC', 'DAI'],
extra: {
title: 'Amplify sDAI up to 35x.',
description:
'Use Summer.fi multiply to increase your exposure to sDAI yield seamlessly.',
url: '/',
},
},
multiply: {
tokens: ['ETH', 'WBTC', 'DAI'],
extra: {
title: 'Amplify sDAI up to 35x.',
description:
'Use Summer.fi multiply to increase your exposure to sDAI yield seamlessly.',
url: '',
},
},
earn: {
tokens: ['ETH', 'WBTC', 'DAI'],
extra: {
title: 'Amplify sDAI up to 35x.',
description:
'Use Summer.fi multiply to increase your exposure to sDAI yield seamlessly.',
url: '/',
},
},
},
maker: {
borrow: {
tokens: ['ETH', 'WBTC', 'DAI'],
extra: {
title: 'Amplify sDAI up to 35x.',
description:
'Use Summer.fi multiply to increase your exposure to sDAI yield seamlessly.',
url: '',
},
},
multiply: {
tokens: ['ETH', 'WBTC', 'DAI'],
extra: {
title: 'Amplify sDAI up to 35x.',
description:
'Use Summer.fi multiply to increase your exposure to sDAI yield seamlessly.',
url: '',
},
},
earn: {
tokens: ['ETH', 'WBTC', 'DAI'],
extra: {
title: 'Amplify sDAI up to 35x.',
description:
'Use Summer.fi multiply to increase your exposure to sDAI yield seamlessly.',
url: '',
},
},
},
spark: {
borrow: {
tokens: ['ETH', 'WBTC', 'DAI'],
extra: {
title: 'Amplify sDAI up to 35x.',
description:
'Use Summer.fi multiply to increase your exposure to sDAI yield seamlessly.',
url: '',
},
},
multiply: {
tokens: ['ETH', 'WBTC', 'DAI'],
extra: {
title: 'Amplify sDAI up to 35x.',
description:
'Use Summer.fi multiply to increase your exposure to sDAI yield seamlessly.',
url: '',
},
},
earn: {
tokens: ['ETH', 'WBTC', 'DAI'],
extra: {
title: 'Amplify sDAI up to 35x.',
description:
'Use Summer.fi multiply to increase your exposure to sDAI yield seamlessly.',
url: '',
},
},
},
},
tokens: {
popular: ['ETH, STETH', 'RETH', 'CBETH', 'DAI'],
new: ['SDAI', 'GHO', 'TBTC'],
},
},
},
};
}
}

0 comments on commit 53d172a

Please sign in to comment.