allowing 8 decimal places for rupee token
This commit is contained in:
parent
658606f3e0
commit
5859f75420
@ -144,7 +144,7 @@
|
|||||||
function formatAmount(amount = 0, currency = 'inr') {
|
function formatAmount(amount = 0, currency = 'inr') {
|
||||||
if (!amount)
|
if (!amount)
|
||||||
return '0';
|
return '0';
|
||||||
return amount.toLocaleString(currency === 'inr' ? `en-IN` : 'en-US', { currency, maximumFractionDigits: currency === 'inr' ? 2 : 8 })
|
return amount.toLocaleString(currency === 'inr' ? `en-IN` : 'en-US', { currency, maximumFractionDigits: 8 })
|
||||||
}
|
}
|
||||||
// fetch data and return json
|
// fetch data and return json
|
||||||
async function fetchJson(url, options = {}) {
|
async function fetchJson(url, options = {}) {
|
||||||
@ -1682,7 +1682,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// THIS TAG CONTAINS CODE REQUIRED FOR THE NAVBAR TO FUNCTION
|
|
||||||
function returnHexNumber(s) {
|
function returnHexNumber(s) {
|
||||||
var regExp = /^[-+]?[0-9A-Fa-f]+\.?[0-9A-Fa-f]*?$/;
|
var regExp = /^[-+]?[0-9A-Fa-f]+\.?[0-9A-Fa-f]*?$/;
|
||||||
return (typeof s === 'string' && regExp.test(s));
|
return (typeof s === 'string' && regExp.test(s));
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user