Skip to content

Commit

Permalink
Merge pull request #42 from mars-protocol/v1.6.4
Browse files Browse the repository at this point in the history
v1.6.4
  • Loading branch information
linkielink authored Aug 29, 2023
2 parents 848b5f1 + 35d7992 commit 44d92a6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 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.6.3",
"version": "1.6.4",
"private": false,
"license": "SEE LICENSE IN LICENSE FILE",
"scripts": {
Expand Down
21 changes: 19 additions & 2 deletions src/configs/neutron-1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import axlusdc from 'images/axlusdc.svg'
import mars from 'images/mars.svg'
import ntrn from 'images/ntrn.svg'
import osmo from 'images/osmo.svg'
import statom from 'images/statom.svg'
import colors from 'styles/_assets.module.scss'

export const ASSETS: NetworkAssets = {
Expand Down Expand Up @@ -37,6 +38,15 @@ export const ASSETS: NetworkAssets = {
decimals: 6,
priceFeedId: 'b00b60f88b03a6a625a8d1c048c3f66653edf217439983d037e7222c4e612819',
},
statom: {
symbol: 'stATOM',
name: 'Stride Atom',
id: 'stATOM',
denom: 'ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C',
color: colors.statom,
logo: statom,
decimals: 6,
},
}

const OTHER_ASSETS: { [denom: string]: OtherAsset } = {
Expand Down Expand Up @@ -88,9 +98,16 @@ export const NETWORK_CONFIG: NetworkConfig = {
},
assets: {
base: ASSETS.ntrn,
whitelist: [ASSETS.axlusdc, ASSETS.ntrn, ASSETS.atom],
whitelist: [ASSETS.axlusdc, ASSETS.ntrn, ASSETS.atom, ASSETS.statom],
other: [OTHER_ASSETS.usd, OTHER_ASSETS.mars, OTHER_ASSETS.osmo],
currencies: [OTHER_ASSETS.usd, ASSETS.axlusdc, ASSETS.ntrn, ASSETS.atom, OTHER_ASSETS.mars],
currencies: [
OTHER_ASSETS.usd,
ASSETS.axlusdc,
ASSETS.ntrn,
ASSETS.atom,
ASSETS.statom,
OTHER_ASSETS.mars,
],
},
displayCurrency: OTHER_ASSETS.usd,
appUrl: 'https://neutron.astroport.fi/swap',
Expand Down

0 comments on commit 44d92a6

Please sign in to comment.