From 35d799224f1e01c933c47b2ce0d4646d860b9e84 Mon Sep 17 00:00:00 2001 From: Linkie Link Date: Tue, 29 Aug 2023 16:36:02 +0200 Subject: [PATCH] v1.6.4 --- package.json | 2 +- src/configs/neutron-1.ts | 21 +++++++++++++++++++-- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 1f480c2..b134cea 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mars", "homepage": "./", - "version": "1.6.3", + "version": "1.6.4", "private": false, "license": "SEE LICENSE IN LICENSE FILE", "scripts": { diff --git a/src/configs/neutron-1.ts b/src/configs/neutron-1.ts index 83e93a6..7efeb78 100644 --- a/src/configs/neutron-1.ts +++ b/src/configs/neutron-1.ts @@ -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 = { @@ -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 } = { @@ -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',