Files
wo-core-i18n/i18n-cryptocoins.js
2026-02-07 11:36:14 +08:00

16 lines
1.4 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 属性名称是 coinKey例如 'TIC', 'BTC'
// coinCode 是代币代码。
// coinKey 和 coinCode 可以不一样
module.exports = {
TIC: { coinCode: 'TIC', coinIname: { zhCN: '时光币', enUS: 'Timecoin' }, coinSymbol: 'τ', coinPrecision: 18 },
TUC: { coinCode: 'TUC', coinIname: { zhCN: '信用币', enUS: 'Creditcoin' }, coinSymbol: '¢', coinPrecision: 18, coinSupply: 10000000000 }, // 100亿
BAB: { coinCode: 'BAB', coinIname: { zhCN: '巴贝币', enUS: 'Babecoin' }, coinSymbol: '¢', coinPrecision: 18, coinSupply: 10000000000 }, // 100亿
BTC: { coinCode: 'BTC', coinIname: { zhCN: '比特币', enUS: 'Bitcoin' }, coinSymbol: '₿', coinPrecision: 8, coinSupply: 21000000 }, // 2100万
ETH: { coinCode: 'ETH', coinIname: { zhCN: '以太币', enUS: 'Ethereum' }, coinSymbol: 'Ξ', coinPrecision: 18, coinSupply: 120440000 }, // 1亿2044万
LTC: { coinCode: 'LTC', coinIname: { zhCN: '莱特币', enUS: 'Litecoin' }, coinSymbol: 'Ł', coinPrecision: 8, coinSupply: 84000000 }, // 8400万
DOGE: { coinCode: 'DOGE', coinIname: { zhCN: '狗狗币', enUS: 'Dogecoin' }, coinSymbol: 'Ð', coinPrecision: 8, coinSupply: 130000000000 }, // 1300亿
USDT: { coinCode: 'USDT', coinIname: { zhCN: '美元稳定币', enUS: 'USDT' }, coinSymbol: '₮', coinPrecision: 6, coinSupply: 80200000000 }, // 802亿
EURT: { coinCode: 'EURT', coinIname: { zhCN: '欧元稳定币', enUS: 'EURT' }, coinSymbol: '₮', coinPrecision: 6 },
}