Skip to content

Commit

Permalink
Merge pull request #16 from mars-protocol/v1.3.1
Browse files Browse the repository at this point in the history
v1.3.1
  • Loading branch information
linkielink authored Feb 27, 2023
2 parents 4fdd078 + e65eb2a commit 365a355
Show file tree
Hide file tree
Showing 7 changed files with 62 additions and 30 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@ name: Docker Image CI

on:
push:
branches:
branches:
- 'main'

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: marsprotocol/interface:latest
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: marsprotocol/interface:latest, marsprotocol/interface:${{ github.run_number }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mars",
"homepage": "./",
"version": "1.3.0",
"version": "1.3.1",
"private": false,
"license": "SEE LICENSE IN LICENSE FILE",
"scripts": {
Expand Down
11 changes: 9 additions & 2 deletions src/components/common/Footer/Footer.module.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import 'src/styles/master';

.footer {
@include padding(8, 0, 24);
@include padding(8, 0, 20);
background-color: $backgroundFooter;
display: grid;
place-content: center;
Expand Down Expand Up @@ -88,11 +88,18 @@
}
}
}

.version {
@include padding(0, 0, 4);
p {
text-align: right;
}
}
}

@media only screen and (min-width: $bpMediumLow) {
.footer {
@include padding(8, 0);
@include padding(8, 0, 0);
left: space(-4);
width: calc(100% + (8 * #{$spacingBase}px));

Expand Down
4 changes: 4 additions & 0 deletions src/components/common/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { useTranslation } from 'react-i18next'
import useStore from 'store'
import { DocURL } from 'types/enums/docURL'

import { version } from '../../../../package.json'
import styles from './Footer.module.scss'

export const Footer = () => {
Expand Down Expand Up @@ -209,6 +210,9 @@ export const Footer = () => {
</ul>
</div>
</div>
<div className={styles.version}>
<p className='faded xs'>Mars Protocol v{version}</p>
</div>
</div>
</footer>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
import { Loading } from 'components/common'
import { VaultLogo, VaultName } from 'components/fields'
import { FIELDS_TUTORIAL_KEY } from 'constants/appConstants'
import { getLiqBorrowValue, getMaxBorrowValue } from 'functions/fields'
import Link from 'next/link'
import { Trans, useTranslation } from 'react-i18next'
import useStore from 'store'
Expand Down Expand Up @@ -56,6 +57,8 @@ export const ActiveVaultsTableMobile = () => {
>
<div className={styles.container}>
{activeVaults.map((vault, i) => {
const maxBorrowValue = getMaxBorrowValue(vault, vault.position)

const content = (
<div key={`${vault.address}-${i}`} className={styles.grid}>
<div className={styles.logo}>
Expand Down Expand Up @@ -133,9 +136,9 @@ export const ActiveVaultsTableMobile = () => {
<div className={styles.borrowCapacity}>
<BorrowCapacity
showPercentageText={true}
max={10}
limit={8}
balance={7}
max={getLiqBorrowValue(vault, maxBorrowValue)}
limit={maxBorrowValue}
balance={vault.position.values.borrowed}
showTitle={false}
barHeight={'16px'}
hideValues
Expand Down
24 changes: 17 additions & 7 deletions src/store/slices/vaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,15 +158,25 @@ export const vaultsSlice = (set: NamedSet<Store>, get: GetState<Store>): VaultsS
const response = await fetch(networkConfig!.apolloAprUrl)

if (response.ok) {
const data: AprResponse[] = await response.json()
const data: FlatApr[] | NestedApr[] = await response.json()

const newAprs = data.map((aprData) => {
const aprTotal = aprData.apr.reduce((prev, curr) => Number(curr.value) + prev, 0)
const feeTotal = aprData.fees.reduce((prev, curr) => Number(curr.value) + prev, 0)

const finalApr = aprTotal + feeTotal

return { contractAddress: aprData.contract_address, apr: finalApr }
try {
const apr = aprData as FlatApr
const aprTotal = apr.apr.reduce((prev, curr) => Number(curr.value) + prev, 0)
const feeTotal = apr.fees.reduce((prev, curr) => Number(curr.value) + prev, 0)

const finalApr = aprTotal + feeTotal

return { contractAddress: aprData.contract_address, apr: finalApr }
} catch {
const apr = aprData as NestedApr
const aprTotal = apr.apr.aprs.reduce((prev, curr) => Number(curr.value) + prev, 0)
const feeTotal = apr.apr.fees.reduce((prev, curr) => Number(curr.value) + prev, 0)

const finalApr = aprTotal + feeTotal
return { contractAddress: aprData.contract_address, apr: finalApr }
}
})

set({
Expand Down
10 changes: 9 additions & 1 deletion src/types/interfaces/fields.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,20 @@ interface AprData {
apr: number
}

interface AprResponse {
interface FlatApr {
contract_address: string
apr: { type: string; value: number | string }[]
fees: { type: string; value: number | string }[]
}

interface NestedApr {
contract_address: string
apr: {
aprs: { type: string; value: number | string }[]
fees: { type: string; value: number | string }[]
}
}

interface VaultCapData {
address: string
vaultCap: {
Expand Down

0 comments on commit 365a355

Please sign in to comment.