Skip to content

Commit

Permalink
Merge pull request #2712 from hollaex/testnet
Browse files Browse the repository at this point in the history
Testnet
  • Loading branch information
abeikverdi authored Mar 12, 2024
2 parents 01c0abc + c5c169d commit 0680ceb
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# HollaEx Kit [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-green.svg)](https://github.com/facebook/create-react-app/pulls)
HollaEx Kit is an open source while label crypto software suite with a range of features from exchange and trading to user management and onboarding as well as wallet system. In order to run the HollaEx Kit, you need to run the Server as the back-end and Web as your front-end user interface. HollaEx Kit runs as a stand alone node and for trading and blockchain functionalities require to connect to HollaEx Network. By default the node connects to the public HollaEx Network.
HollaEx Kit is an open source white label crypto software suite with a range of features from exchange and trading to user management and onboarding as well as wallet system. In order to run the HollaEx Kit, you need to run the Server as the back-end and Web as your front-end user interface. HollaEx Kit runs as a stand alone node and for trading and blockchain functionalities require to connect to HollaEx Network. By default the node connects to the public HollaEx Network.

## Get Started

Expand Down
7 changes: 5 additions & 2 deletions web/src/containers/DigitalAssets/components/AssetsRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ const AssetsRow = ({ coinData, loading, index, quicktrade, pairs, icons }) => {
<tr id={`market-list-row-${key}`} className="table-row table-bottom-border">
<td className="sticky-col">
{!loading ? (
<div className="d-flex align-items-center" onClick={() => browserHistory.push(`/assets/coin/${symbol}`)} >
<div
className="d-flex align-items-center"
onClick={() => browserHistory.push(`/assets/coin/${symbol}`)}
>
<Coin iconId={icon_id} />
<div className="px-2">{fullname}</div>
</div>
Expand Down Expand Up @@ -149,7 +152,7 @@ const AssetsRow = ({ coinData, loading, index, quicktrade, pairs, icons }) => {
<Loading index={index} />
)}
</td>
<td className="td-chart pr-4">
<td className="pr-4">
{!loading ? (
<MiniSparkLine
chartData={getLastValuesFromParts(chartData?.price || [])}
Expand Down
6 changes: 4 additions & 2 deletions web/src/containers/TradeTabs/components/MarketRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ class MarketRow extends Component {
</div>
)}
<div>
<span className="title-font ml-1">{formatToCurrency(ticker.volume)}</span>
<span className="title-font ml-1">
{formatToCurrency(ticker.volume)}
</span>
<span className="title-font ml-2">{pair_base_display}</span>
</div>
</div>
Expand Down Expand Up @@ -145,7 +147,7 @@ class MarketRow extends Component {
</div>
</td>
)}
<td className="td-chart">
<td>
{isBrokerage ? (
<EditWrapper stringId="DIGITAL_ASSETS.BROKERAGE">
{STRINGS['DIGITAL_ASSETS.BROKERAGE']}
Expand Down
2 changes: 2 additions & 0 deletions web/src/containers/TradeTabs/components/MiniSparkLine.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ const DEFAULT_CHART_OPTIONS = {
},
chart: {
styledMode: true,
width: 200,
height: (9 / 16) * 60 + '%',
},
xAxis: {
visible: false,
Expand Down
2 changes: 2 additions & 0 deletions web/src/containers/TradeTabs/components/SparkLine.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ class SparkLine extends Component {
},
chart: {
styledMode: true,
width: 200,
height: (9 / 16) * 60 + '%',
},
xAxis: {
type: 'linear',
Expand Down

0 comments on commit 0680ceb

Please sign in to comment.