aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorHsuan Lee <hsuan@cobinhood.com>2018-12-10 23:02:10 +0800
committerHsuan Lee <hsuan@cobinhood.com>2018-12-10 23:02:30 +0800
commit4f5ee8a1d223f66cc48205a9e6ba4875cf357a1b (patch)
tree2441a95b2b733e6ebe8118741d20cec32f8b3d96 /ui/app
parentc0ede3738ebc693d035943ecd226f991eb9149c1 (diff)
downloaddexon-wallet-4f5ee8a1d223f66cc48205a9e6ba4875cf357a1b.tar.gz
dexon-wallet-4f5ee8a1d223f66cc48205a9e6ba4875cf357a1b.tar.zst
dexon-wallet-4f5ee8a1d223f66cc48205a9e6ba4875cf357a1b.zip
Refine translations and style
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/actions.js2
-rw-r--r--ui/app/components/button-group/index.scss10
-rw-r--r--ui/app/components/currency-display/currency-display.container.js5
-rw-r--r--ui/app/components/dropdowns/network-dropdown.js2
-rw-r--r--ui/app/components/dropdowns/tests/network-dropdown.test.js2
-rw-r--r--ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.container.js2
-rw-r--r--ui/app/components/gas-customization/gas-modal-page-container/index.scss9
-rw-r--r--ui/app/components/gas-customization/gas-modal-page-container/tests/gas-modal-page-container-container.test.js2
-rw-r--r--ui/app/components/gas-customization/gas-price-button-group/index.scss34
-rw-r--r--ui/app/components/gas-customization/gas-slider/index.scss8
-rw-r--r--ui/app/components/identicon/identicon.container.js2
-rw-r--r--ui/app/components/modals/qr-scanner/qr-scanner.component.js2
-rw-r--r--ui/app/components/pages/settings/settings-tab/index.scss2
-rw-r--r--ui/app/components/pages/settings/settings-tab/settings-tab.component.js2
-rw-r--r--ui/app/components/provider-page-container/index.scss22
-rw-r--r--ui/app/components/provider-page-container/provider-page-container-content/provider-page-container-content.component.js7
-rw-r--r--ui/app/components/send/account-list-item/tests/account-list-item-component.test.js2
-rw-r--r--ui/app/components/send/send-content/send-gas-row/send-gas-row.component.js4
-rw-r--r--ui/app/components/send/tests/send-selectors.test.js2
-rw-r--r--ui/app/components/transaction-activity-log/index.scss2
-rw-r--r--ui/app/helpers/formatters.js2
-rw-r--r--ui/app/infura-conversion.json120
22 files changed, 125 insertions, 120 deletions
diff --git a/ui/app/actions.js b/ui/app/actions.js
index cc5ded7f..cca44d03 100644
--- a/ui/app/actions.js
+++ b/ui/app/actions.js
@@ -1925,7 +1925,7 @@ function updateProviderType (type) {
}
}
-function setRpcTarget (newRpc, chainId, ticker = 'ETH', nickname = '') {
+function setRpcTarget (newRpc, chainId, ticker = 'DEX', nickname = '') {
return (dispatch) => {
log.debug(`background.setRpcTarget: ${newRpc} ${chainId} ${ticker} ${nickname}`)
background.setCustomRpc(newRpc, chainId, ticker, nickname, (err, result) => {
diff --git a/ui/app/components/button-group/index.scss b/ui/app/components/button-group/index.scss
index 29713c75..90748bdc 100644
--- a/ui/app/components/button-group/index.scss
+++ b/ui/app/components/button-group/index.scss
@@ -6,9 +6,9 @@
&__button {
font-family: Roboto;
font-size: 1rem;
- color: $tundora;
+ color: $manatee;
border-style: solid;
- border-color: $alto;
+ border-color: $geyser;
border-width: 1px 1px 1px;
border-left: 0;
flex: 1;
@@ -18,7 +18,7 @@
text-overflow: ellipsis;
&:first-child {
- border-left: 1px solid $alto;
+ border-left: 1px solid $geyser;
border-radius: 4px 0 0 4px;
}
@@ -27,7 +27,7 @@
}
&--active {
- background-color: $dodger-blue;
+ background-color: $dexon-purple;
color: $white;
}
@@ -35,4 +35,4 @@
opacity: .5;
}
}
-} \ No newline at end of file
+}
diff --git a/ui/app/components/currency-display/currency-display.container.js b/ui/app/components/currency-display/currency-display.container.js
index 61529692..a6d307e3 100644
--- a/ui/app/components/currency-display/currency-display.container.js
+++ b/ui/app/components/currency-display/currency-display.container.js
@@ -13,7 +13,7 @@ const mapStateToProps = state => {
}
const mergeProps = (stateProps, dispatchProps, ownProps) => {
- const { nativeCurrency, currentCurrency, conversionRate, ...restStateProps } = stateProps
+ const { nativeCurrency, currentCurrency, /* conversionRate, */ ...restStateProps } = stateProps
const {
value,
numberOfDecimals = 2,
@@ -31,7 +31,8 @@ const mergeProps = (stateProps, dispatchProps, ownProps) => {
getValueFromWeiHex({
value,
fromCurrency: nativeCurrency,
- toCurrency, conversionRate,
+ toCurrency,
+ conversionRate: 0,
numberOfDecimals,
toDenomination: denomination,
}),
diff --git a/ui/app/components/dropdowns/network-dropdown.js b/ui/app/components/dropdowns/network-dropdown.js
index 7f52db98..9110c81f 100644
--- a/ui/app/components/dropdowns/network-dropdown.js
+++ b/ui/app/components/dropdowns/network-dropdown.js
@@ -233,7 +233,7 @@ NetworkDropdown.prototype.renderCommonRpc = function (rpcListDetail, provider) {
return reversedRpcListDetail.map((entry) => {
const rpc = entry.rpcUrl
- const ticker = entry.ticker || 'ETH'
+ const ticker = entry.ticker || 'DEX'
const nickname = entry.nickname || ''
const currentRpcTarget = provider.type === 'rpc' && rpc === provider.rpcTarget
diff --git a/ui/app/components/dropdowns/tests/network-dropdown.test.js b/ui/app/components/dropdowns/tests/network-dropdown.test.js
index a956f753..51f02f2a 100644
--- a/ui/app/components/dropdowns/tests/network-dropdown.test.js
+++ b/ui/app/components/dropdowns/tests/network-dropdown.test.js
@@ -66,7 +66,7 @@ describe('Network Dropdown', () => {
})
it('checks background color for first NetworkDropdownIcon', () => {
- assert.equal(wrapper.find(NetworkDropdownIcon).at(0).prop('backgroundColor'), '#29B6AF') // Main Ethereum Network Teal
+ assert.equal(wrapper.find(NetworkDropdownIcon).at(0).prop('backgroundColor'), '#29B6AF') // Main DEXON Network Teal
})
it('checks background color for second NetworkDropdownIcon', () => {
diff --git a/ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.container.js b/ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.container.js
index c619a098..33dbca5e 100644
--- a/ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.container.js
+++ b/ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.container.js
@@ -226,7 +226,7 @@ function calcCustomGasLimit (customGasLimitInHex) {
}
function getTxParams (state, transactionId) {
- const { confirmTransaction: { txData }, metamask: { send } } = state
+ const { confirmTransaction: { txData }, dekusan: { send } } = state
const pendingTransactions = submittedPendingTransactionsSelector(state)
const pendingTransaction = pendingTransactions.find(({ id }) => id === transactionId)
const { txParams: pendingTxParams } = pendingTransaction || {}
diff --git a/ui/app/components/gas-customization/gas-modal-page-container/index.scss b/ui/app/components/gas-customization/gas-modal-page-container/index.scss
index efba24e0..91c4b2a8 100644
--- a/ui/app/components/gas-customization/gas-modal-page-container/index.scss
+++ b/ui/app/components/gas-customization/gas-modal-page-container/index.scss
@@ -1,5 +1,5 @@
-@import './advanced-tab-content/index';
-@import './basic-tab-content/index';
+@import "./advanced-tab-content/index";
+@import "./basic-tab-content/index";
.gas-modal-page-container {
.page-container {
@@ -70,8 +70,8 @@
}
&--selected {
- color: $curious-blue;
- border-bottom: 2px solid $curious-blue;
+ color: $dexon-purple;
+ border-bottom: 2px solid $dexon-purple;
}
}
}
@@ -86,7 +86,6 @@
height: 219px;
}
-
&__info-row, &__info-row--fade {
width: 100%;
background: $polar;
diff --git a/ui/app/components/gas-customization/gas-modal-page-container/tests/gas-modal-page-container-container.test.js b/ui/app/components/gas-customization/gas-modal-page-container/tests/gas-modal-page-container-container.test.js
index 72a03eca..88795bd3 100644
--- a/ui/app/components/gas-customization/gas-modal-page-container/tests/gas-modal-page-container-container.test.js
+++ b/ui/app/components/gas-customization/gas-modal-page-container/tests/gas-modal-page-container-container.test.js
@@ -63,7 +63,7 @@ describe('gas-modal-page-container container', () => {
},
},
},
- metamask: {
+ dekusan: {
send: {
gasLimit: '16',
gasPrice: '32',
diff --git a/ui/app/components/gas-customization/gas-price-button-group/index.scss b/ui/app/components/gas-customization/gas-price-button-group/index.scss
index c8b31fc8..9e2b28b8 100644
--- a/ui/app/components/gas-customization/gas-price-button-group/index.scss
+++ b/ui/app/components/gas-customization/gas-price-button-group/index.scss
@@ -22,7 +22,8 @@
height: 130px;
}
- .button-group__button, .button-group__button--active {
+ .button-group__button,
+ .button-group__button--active {
height: 130px;
max-width: 108px;
font-size: 12px;
@@ -32,7 +33,7 @@
padding-top: 17px;
border-radius: 4px;
border: 2px solid $spindle;
- background: $white;
+ background: $dark-gray;
color: $scorpion;
div {
@@ -49,14 +50,14 @@
}
.button-group__button--active {
- border: 2px solid $curious-blue;
+ border: 2px solid $dexon-purple;
color: $scorpion;
i {
&:last-child {
display: flex;
- color: $curious-blue;
- margin-top: 8px
+ color: $dexon-purple;
+ margin-top: 8px;
}
}
}
@@ -65,7 +66,6 @@
.gas-price-button-group--small {
display: flex;
justify-content: stretch;
- max-width: 260px;
&__button-fiat-price {
font-size: 13px;
@@ -99,10 +99,11 @@
height: 78px;
}
- .button-group__button, .button-group__button--active {
+ .button-group__button,
+ .button-group__button--active {
height: 78px;
- background: white;
- color: $scorpion;
+ background: $dark-gray;
+ color: $dim-gray;
padding-top: 9px;
padding-left: 8.5px;
@@ -126,13 +127,13 @@
.button-group__button--active {
color: $white;
- background: $dodger-blue;
+ background: $geyser;
i {
&:last-child {
display: flex;
- color: $curious-blue;
- margin-top: 10px
+ color: $dexon-purple;
+ margin-top: 10px;
}
}
}
@@ -177,7 +178,8 @@
color: $black;
}
- .button-group__button, .button-group__button--active {
+ .button-group__button,
+ .button-group__button--active {
height: 78px;
background: white;
color: #2A4055;
@@ -189,7 +191,7 @@
div {
display: flex;
- flex-flow: column;;
+ flex-flow: column;
align-items: flex-start;
justify-content: flex-start;
position: relative;
@@ -210,7 +212,7 @@
.button-group__button--active {
background: #F7FCFF;
- border: 2px solid #2C8BDC;
+ border: 2px solid $dexon-purple;
.button-check-wrapper {
height: 16px;
@@ -228,7 +230,7 @@
i {
display: flex;
- color: $curious-blue;
+ color: $dexon-purple;
font-size: 12px;
}
}
diff --git a/ui/app/components/gas-customization/gas-slider/index.scss b/ui/app/components/gas-customization/gas-slider/index.scss
index e6c73436..79b428d7 100644
--- a/ui/app/components/gas-customization/gas-slider/index.scss
+++ b/ui/app/components/gas-customization/gas-slider/index.scss
@@ -16,8 +16,8 @@
-webkit-appearance: none !important;
height: 34px;
width: 34px;
- background-color: $curious-blue;
- box-shadow: 0 2px 4px 0 rgba(0,0,0,0.08);
+ background-color: $dexon-purple;
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
border-radius: 50%;
position: relative;
z-index: 10;
@@ -38,7 +38,7 @@
&__colored {
height: 6px;
border-radius: 4px;
- margin-left: 102px;
+ margin-left: 102px;
width: 322px;
z-index: 1;
background-color: $blizzard-blue;
@@ -51,4 +51,4 @@
margin-top: -6px;
color: $mid-gray;
}
-} \ No newline at end of file
+}
diff --git a/ui/app/components/identicon/identicon.container.js b/ui/app/components/identicon/identicon.container.js
index bc49bc18..0fb76c00 100644
--- a/ui/app/components/identicon/identicon.container.js
+++ b/ui/app/components/identicon/identicon.container.js
@@ -2,7 +2,7 @@ import { connect } from 'react-redux'
import Identicon from './identicon.component'
const mapStateToProps = state => {
- const { metamask: { useBlockie } } = state
+ const { dekusan: { useBlockie } } = state
return {
useBlockie,
diff --git a/ui/app/components/modals/qr-scanner/qr-scanner.component.js b/ui/app/components/modals/qr-scanner/qr-scanner.component.js
index cb8d07d8..c5277548 100644
--- a/ui/app/components/modals/qr-scanner/qr-scanner.component.js
+++ b/ui/app/components/modals/qr-scanner/qr-scanner.component.js
@@ -106,7 +106,7 @@ export default class QrScanner extends Component {
// For ex. EIP-681 (https://eips.ethereum.org/EIPS/eip-681)
- // Ethereum address links - fox ex. ethereum:0x.....1111
+ // DEXON address links - fox ex. ethereum:0x.....1111
if (content.split('ethereum:').length > 1) {
type = 'address'
diff --git a/ui/app/components/pages/settings/settings-tab/index.scss b/ui/app/components/pages/settings/settings-tab/index.scss
index ef32b0e4..46553f91 100644
--- a/ui/app/components/pages/settings/settings-tab/index.scss
+++ b/ui/app/components/pages/settings/settings-tab/index.scss
@@ -6,7 +6,7 @@
}
&__advanced-link {
- color: $curious-blue;
+ color: $dexon-purple;
padding-left: 5px;
}
diff --git a/ui/app/components/pages/settings/settings-tab/settings-tab.component.js b/ui/app/components/pages/settings/settings-tab/settings-tab.component.js
index a110d3c4..ceb24c50 100644
--- a/ui/app/components/pages/settings/settings-tab/settings-tab.component.js
+++ b/ui/app/components/pages/settings/settings-tab/settings-tab.component.js
@@ -228,7 +228,7 @@ export default class SettingsTab extends PureComponent {
)
}
- validateRpc (newRpc, chainId, ticker = 'ETH', nickname) {
+ validateRpc (newRpc, chainId, ticker = 'DEX', nickname) {
const { setRpcTarget, displayWarning } = this.props
if (validUrl.isWebUri(newRpc)) {
diff --git a/ui/app/components/provider-page-container/index.scss b/ui/app/components/provider-page-container/index.scss
index 8d35ac17..24b86a1b 100644
--- a/ui/app/components/provider-page-container/index.scss
+++ b/ui/app/components/provider-page-container/index.scss
@@ -15,10 +15,10 @@
flex: 1;
flex-direction: column;
justify-content: space-between;
- color: #7C808E;
+ color: $dim-gray;
h1, h2 {
- color: #4A4A4A;
+ color: $white;
display: flex;
justify-content: center;
text-align: center;
@@ -44,7 +44,7 @@
}
a, a:hover {
- color: $dodger-blue;
+ color: $dexon-purple;
}
.provider-approval-visual {
@@ -71,13 +71,13 @@
font-size: 10px;
line-height: 14px;
padding: 0;
- color: #A2A4AC;
+ color: $white;
}
&__check {
width: 40px;
height: 40px;
- background: white url("/images/provider-approval-check.svg") no-repeat;
+ background: $dark-gray url("/images/provider-approval-check.svg") no-repeat;
margin-top: 14px;
}
@@ -86,8 +86,8 @@
height: 64px;
&--default {
- background-color: #777A87;
- color: white;
+ background-color: $white;
+ color: $dim-gray;
width: 64px;
height: 64px;
border-radius: 32px;
@@ -98,8 +98,14 @@
}
}
+ &__siteicon {
+ background-color: $white;
+ border-radius: 32px;
+ padding: 6px;
+ }
+
&:before {
- border-top: 2px dashed #CDD1E4;
+ border-top: 2px dashed $geyser;
content: "";
margin: 0 auto;
position: absolute;
diff --git a/ui/app/components/provider-page-container/provider-page-container-content/provider-page-container-content.component.js b/ui/app/components/provider-page-container/provider-page-container-content/provider-page-container-content.component.js
index 268db613..3c79a4d9 100644
--- a/ui/app/components/provider-page-container/provider-page-container-content/provider-page-container-content.component.js
+++ b/ui/app/components/provider-page-container/provider-page-container-content/provider-page-container-content.component.js
@@ -22,7 +22,7 @@ export default class ProviderPageContainerContent extends PureComponent {
<section>
{siteImage ? (
<img
- className="provider-approval-visual__identicon"
+ className="provider-approval-visual__identicon provider-approval-visual__siteicon"
src={siteImage}
/>
) : (
@@ -64,13 +64,10 @@ export default class ProviderPageContainerContent extends PureComponent {
target="_blank"
rel="noopener noreferrer"
>
- {t('learnMore')}.
+ {t('learnMore')}
</a>
</p>
</section>
- <section className="secure-badge">
- <img src="/images/mm-secure.svg" />
- </section>
</div>
)
}
diff --git a/ui/app/components/send/account-list-item/tests/account-list-item-component.test.js b/ui/app/components/send/account-list-item/tests/account-list-item-component.test.js
index 6ffc0b1c..8e241269 100644
--- a/ui/app/components/send/account-list-item/tests/account-list-item-component.test.js
+++ b/ui/app/components/send/account-list-item/tests/account-list-item-component.test.js
@@ -28,7 +28,7 @@ describe('AccountListItem Component', function () {
className={'mockClassName'}
conversionRate={4}
currentCurrency={'mockCurrentyCurrency'}
- nativeCurrency={'ETH'}
+ nativeCurrency={'DEX'}
displayAddress={false}
displayBalance={false}
handleClick={propsMethodSpies.handleClick}
diff --git a/ui/app/components/send/send-content/send-gas-row/send-gas-row.component.js b/ui/app/components/send/send-content/send-gas-row/send-gas-row.component.js
index 8d305dd4..3aa49a81 100644
--- a/ui/app/components/send/send-content/send-gas-row/send-gas-row.component.js
+++ b/ui/app/components/send/send-content/send-gas-row/send-gas-row.component.js
@@ -48,9 +48,9 @@ export default class SendGasRow extends Component {
showCheck={false}
{...gasPriceButtonGroupProps}
/>
- <div className="advanced-gas-options-btn" onClick={() => showCustomizeGasModal()}>
+ {/* <div className="advanced-gas-options-btn" onClick={() => showCustomizeGasModal()}>
{ this.context.t('advancedOptions') }
- </div>
+ </div> */}
</div>
: <GasFeeDisplay
conversionRate={conversionRate}
diff --git a/ui/app/components/send/tests/send-selectors.test.js b/ui/app/components/send/tests/send-selectors.test.js
index 6c2104ab..89ee1f00 100644
--- a/ui/app/components/send/tests/send-selectors.test.js
+++ b/ui/app/components/send/tests/send-selectors.test.js
@@ -183,7 +183,7 @@ describe('send selectors', () => {
it('should return the ticker symbol of the selected network', () => {
assert.equal(
getNativeCurrency(mockState),
- 'ETH'
+ 'DEX'
)
})
})
diff --git a/ui/app/components/transaction-activity-log/index.scss b/ui/app/components/transaction-activity-log/index.scss
index c6afd5ec..27a56b28 100644
--- a/ui/app/components/transaction-activity-log/index.scss
+++ b/ui/app/components/transaction-activity-log/index.scss
@@ -74,7 +74,7 @@
&__action-link {
font-size: .75rem;
cursor: pointer;
- color: $curious-blue;
+ color: $dexon-purple;
}
b {
diff --git a/ui/app/helpers/formatters.js b/ui/app/helpers/formatters.js
index 106a2520..f7499eaf 100644
--- a/ui/app/helpers/formatters.js
+++ b/ui/app/helpers/formatters.js
@@ -1,3 +1,3 @@
export function formatETHFee (ethFee) {
- return ethFee + ' ETH'
+ return ethFee + ' DEX'
}
diff --git a/ui/app/infura-conversion.json b/ui/app/infura-conversion.json
index 9a96fe06..2abe25d7 100644
--- a/ui/app/infura-conversion.json
+++ b/ui/app/infura-conversion.json
@@ -4,7 +4,7 @@
"symbol": "ethaud",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "aud",
@@ -15,7 +15,7 @@
"symbol": "ethhkd",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "hkd",
@@ -26,7 +26,7 @@
"symbol": "ethsgd",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "sgd",
@@ -37,7 +37,7 @@
"symbol": "ethidr",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "idr",
@@ -48,7 +48,7 @@
"symbol": "ethphp",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "php",
@@ -59,7 +59,7 @@
"symbol": "eth1st",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "1st",
@@ -70,7 +70,7 @@
"symbol": "ethadt",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "adt",
@@ -81,7 +81,7 @@
"symbol": "ethadx",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "adx",
@@ -92,7 +92,7 @@
"symbol": "ethant",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "ant",
@@ -103,7 +103,7 @@
"symbol": "ethbat",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "bat",
@@ -114,7 +114,7 @@
"symbol": "ethbnt",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "bnt",
@@ -125,7 +125,7 @@
"symbol": "ethbtc",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "btc",
@@ -136,7 +136,7 @@
"symbol": "ethcad",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "cad",
@@ -147,7 +147,7 @@
"symbol": "ethcfi",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "cfi",
@@ -158,7 +158,7 @@
"symbol": "ethcrb",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "crb",
@@ -169,7 +169,7 @@
"symbol": "ethcvc",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "cvc",
@@ -180,7 +180,7 @@
"symbol": "ethdash",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "dash",
@@ -191,7 +191,7 @@
"symbol": "ethdgd",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "dgd",
@@ -202,18 +202,18 @@
"symbol": "ethetc",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "etc",
- "name": "Ethereum Classic"
+ "name": "DEXON Classic"
}
},
{
"symbol": "etheur",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "eur",
@@ -224,7 +224,7 @@
"symbol": "ethfun",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "fun",
@@ -235,7 +235,7 @@
"symbol": "ethgbp",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "gbp",
@@ -246,7 +246,7 @@
"symbol": "ethgno",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "gno",
@@ -257,7 +257,7 @@
"symbol": "ethgnt",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "gnt",
@@ -268,7 +268,7 @@
"symbol": "ethgup",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "gup",
@@ -279,7 +279,7 @@
"symbol": "ethhmq",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "hmq",
@@ -290,7 +290,7 @@
"symbol": "ethjpy",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "jpy",
@@ -301,7 +301,7 @@
"symbol": "ethlgd",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "lgd",
@@ -312,7 +312,7 @@
"symbol": "ethlsk",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "lsk",
@@ -323,7 +323,7 @@
"symbol": "ethltc",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "ltc",
@@ -334,7 +334,7 @@
"symbol": "ethlun",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "lun",
@@ -345,7 +345,7 @@
"symbol": "ethmco",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "mco",
@@ -356,7 +356,7 @@
"symbol": "ethmtl",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "mtl",
@@ -367,7 +367,7 @@
"symbol": "ethmyst",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "myst",
@@ -378,7 +378,7 @@
"symbol": "ethnmr",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "nmr",
@@ -389,7 +389,7 @@
"symbol": "ethomg",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "omg",
@@ -400,7 +400,7 @@
"symbol": "ethpay",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "pay",
@@ -411,7 +411,7 @@
"symbol": "ethptoy",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "ptoy",
@@ -422,7 +422,7 @@
"symbol": "ethqrl",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "qrl",
@@ -433,7 +433,7 @@
"symbol": "ethqtum",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "qtum",
@@ -444,7 +444,7 @@
"symbol": "ethrep",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "rep",
@@ -455,7 +455,7 @@
"symbol": "ethrlc",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "rlc",
@@ -466,7 +466,7 @@
"symbol": "ethrub",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "rub",
@@ -477,7 +477,7 @@
"symbol": "ethsc",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "sc",
@@ -488,7 +488,7 @@
"symbol": "ethsngls",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "sngls",
@@ -499,7 +499,7 @@
"symbol": "ethsnt",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "snt",
@@ -510,7 +510,7 @@
"symbol": "ethsteem",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "steem",
@@ -521,7 +521,7 @@
"symbol": "ethstorj",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "storj",
@@ -532,7 +532,7 @@
"symbol": "ethtime",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "time",
@@ -543,7 +543,7 @@
"symbol": "ethtkn",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "tkn",
@@ -554,7 +554,7 @@
"symbol": "ethtrst",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "trst",
@@ -565,7 +565,7 @@
"symbol": "ethuah",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "uah",
@@ -576,7 +576,7 @@
"symbol": "ethusd",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "usd",
@@ -587,7 +587,7 @@
"symbol": "ethwings",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "wings",
@@ -598,7 +598,7 @@
"symbol": "ethxem",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "xem",
@@ -609,7 +609,7 @@
"symbol": "ethxlm",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "xlm",
@@ -620,7 +620,7 @@
"symbol": "ethxmr",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "xmr",
@@ -631,7 +631,7 @@
"symbol": "ethxrp",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "xrp",
@@ -642,7 +642,7 @@
"symbol": "ethzec",
"base": {
"code": "eth",
- "name": "Ethereum"
+ "name": "DEXON"
},
"quote": {
"code": "zec",