- Symbol
-
- {{ tokensHints.tokenSymbol }}
-
- |
-
- Name
+ Amount
- {{ tokensHints.tokenName }}
+ {{ tokensHints.amount }}
|
- Smart Contract
+ Value
- {{ tokensHints.smartContractId }}
+ {{ tokensHints.value }}
|
- Amount
+ Name
- {{ tokensHints.amount }}
+ {{ tokensHints.tokenName }}
|
- Value
+ Smart Contract
- {{ tokensHints.value }}
+ {{ tokensHints.smartContractId }}
|
@@ -39,23 +33,23 @@
v-for="token in accountTokens?.data"
:key="token.contractId">
-
- {{ token.tokenSymbol }}
-
+
|
- {{ token.tokenName }}
+ {{ token.value }}
|
-
- |
-
- {{ formatNumber(token.amount) }}
+
+ {{ token.tokenName }}
+
|
- {{ token.value !== null ? `$${formatNumber(token.value,null,null, 7)}` : 'N/A' }}
+
|
diff --git a/src/components/AccountTokensTableCondensed.vue b/src/components/AccountTokensTableCondensed.vue
index 53682963f..17d6e30d0 100644
--- a/src/components/AccountTokensTableCondensed.vue
+++ b/src/components/AccountTokensTableCondensed.vue
@@ -8,70 +8,61 @@
-
-
- {{ token.tokenSymbol }}
-
- |
-
-
-
- {{ token.tokenName }}
+
|
-
+ {{ token.value }}
|
- {{ formatNumber(token.amount) }}
+
+ {{ token.tokenName }}
+
|
+
- {{ token.value !== null ? `$${formatNumber(token.value, null, null, 7)}` : 'N/A' }}
+
|
diff --git a/src/components/AeCoinPanel.vue b/src/components/AeCoinPanel.vue
index 466291b87..e40194736 100644
--- a/src/components/AeCoinPanel.vue
+++ b/src/components/AeCoinPanel.vue
@@ -39,7 +39,7 @@
Total Supply
- {{ formatNullable(formatAePrice(MAX_AE_DISTRIBUTION), 0) }}
+
|
@@ -50,7 +50,7 @@
Circulating Supply
- {{ formatNullable(formatAePrice(totalTokenSupply), 0) }}
+
|
@@ -70,7 +70,7 @@
+
+
diff --git a/src/components/StateChannelDetailsPanel.vue b/src/components/StateChannelDetailsPanel.vue
index 02285c652..283a4388b 100644
--- a/src/components/StateChannelDetailsPanel.vue
+++ b/src/components/StateChannelDetailsPanel.vue
@@ -59,7 +59,7 @@
Initial Amount
- {{ formatAePrice(stateChannelDetails.initialAmount, null) }}
+
|
@@ -128,7 +128,7 @@
Locked
- {{ formatAePrice(stateChannelDetails.aeLocked, null) }}
+
|
@@ -201,7 +201,6 @@
diff --git a/src/components/TokenHoldersTableCondensed.vue b/src/components/TokenHoldersTableCondensed.vue
index 218ee0bef..4ca02c386 100644
--- a/src/components/TokenHoldersTableCondensed.vue
+++ b/src/components/TokenHoldersTableCondensed.vue
@@ -29,7 +29,10 @@
- {{ formatNumber(holder.amount, 0, tokenDetails.decimals) }} {{ tokenDetails.symbol }}
+
|
@@ -42,7 +45,7 @@
- {{ formatPercentage(holder.percentage) }}
+ {{ holder.percentage }}
|
@@ -50,7 +53,6 @@
diff --git a/src/components/TransactionTypeTableChannelCreateTx.vue b/src/components/TransactionTypeTableChannelCreateTx.vue
index 3ea74ea69..585cbfecf 100644
--- a/src/components/TransactionTypeTableChannelCreateTx.vue
+++ b/src/components/TransactionTypeTableChannelCreateTx.vue
@@ -22,12 +22,7 @@
Channel Reserve
- {{
- formatAePrice(
- formatAettosToAe(transactionData.channelReserve),
- null,
- )
- }}
+
|
@@ -38,16 +33,13 @@
Initiator / Amount
-
- {{ transactionData.initiatorId }}
-
- /
- {{
- formatAePrice(
- formatAettosToAe(transactionData.initiatorAmount),
- null,
- )
- }}
+
+
+ {{ transactionData.initiatorId }}
+
+ /
+
+
|
@@ -69,16 +61,13 @@
Responder / Amount
-
- {{ transactionData.responderId }}
-
- /
- {{
- formatAePrice(
- formatAettosToAe(transactionData.responderAmount),
- null,
- )
- }}
+
+
+ {{ transactionData.responderId }}
+
+ /
+
+
|
@@ -110,7 +99,7 @@