Skip to content

Commit

Permalink
Merge pull request #17 from mars-protocol/hotfix/denom-in-axlusdc
Browse files Browse the repository at this point in the history
update denom to axlusdc
  • Loading branch information
lukesaunders authored Mar 11, 2023
2 parents 365a355 + 79b2ae4 commit d028d61
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 9 deletions.
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.1",
"version": "1.3.2",
"private": false,
"license": "SEE LICENSE IN LICENSE FILE",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
justify-content: space-between;

.limitText {
display: flex;
align-items: flex-end;
opacity: 0;
transition: opacity 0.8s;
transition-delay: 1.6s;
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/DisplayCurrency/DisplayCurrency.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const DisplayCurrency = ({
maxDecimals={displayCurrency.decimals}
/>
</span>
{displayCurrency.suffix && <span className={valueClass}>{displayCurrency.suffix}</span>}
{displayCurrency.suffix && <span className={valueClass}>{' ' + displayCurrency.suffix}</span>}
</div>
)
}
1 change: 1 addition & 0 deletions src/components/common/Header/IncentivesButton.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
position: relative;
display: flex;
align-items: center;
gap: space(1);
height: 100%;
padding-inline-start: rem-calc(8);
}
Expand Down
4 changes: 2 additions & 2 deletions src/configs/osmo-test-4.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ export const NETWORK_CONFIG: NetworkConfig = {
},
displayCurrency: {
denom: 'ibc/88D70440A05BFB25C7FF0BA62DA357EAA993CB1B036077CF1DAAEFB28721D935',
prefix: '$',
suffix: '',
prefix: '',
suffix: 'axlUSDC',
decimals: 2,
},
appUrl: 'https://testnet.osmosis.zone',
Expand Down
4 changes: 2 additions & 2 deletions src/configs/osmosis-1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ export const NETWORK_CONFIG: NetworkConfig = {
},
displayCurrency: {
denom: 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858',
prefix: '$',
suffix: '',
prefix: '',
suffix: 'axlUSDC',
decimals: 2,
},
appUrl: 'https://app.osmosis.zone',
Expand Down
1 change: 0 additions & 1 deletion src/store/slices/vaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ export const vaultsSlice = (set: NamedSet<Store>, get: GetState<Store>): VaultsS
set({
aprs: newAprs,
})

get().addAprToVaults(newAprs)
}

Expand Down

0 comments on commit d028d61

Please sign in to comment.