mirror of
https://github.com/OpenBazaar/openbazaar-desktop
synced 2025-10-06 08:32:50 +02:00
64 lines
1.2 KiB
JavaScript
64 lines
1.2 KiB
JavaScript
// Multiple test depend on this data. If you modify this file, please ensure
|
|
// you're not breaking other tests.
|
|
|
|
export const walletCurs = ['BCH', 'BTC', 'ETH', 'LTC', 'ZEC'];
|
|
|
|
export const walletCurDef = {
|
|
AED: {
|
|
code: 'AED',
|
|
currencyType: 'fiat',
|
|
divisibility: 2,
|
|
name: 'UAE Dirham',
|
|
testnetCode: '',
|
|
},
|
|
BCH: {
|
|
code: 'BCH',
|
|
currencyType: 'crypto',
|
|
divisibility: 8,
|
|
name: 'Bitcoin Cash',
|
|
testnetCode: 'TBCH',
|
|
},
|
|
BTC: {
|
|
code: 'BTC',
|
|
currencyType: 'crypto',
|
|
divisibility: 8,
|
|
name: 'Bitcoin',
|
|
testnetCode: 'TBTC',
|
|
},
|
|
ETH: {
|
|
code: 'ETH',
|
|
currencyType: 'crypto',
|
|
divisibility: 18,
|
|
name: 'Ethereum',
|
|
testnetCode: 'TETH',
|
|
},
|
|
LTC: {
|
|
code: 'LTC',
|
|
currencyType: 'crypto',
|
|
divisibility: 8,
|
|
name: 'Litecoin',
|
|
testnetCode: 'TLTC',
|
|
},
|
|
PLN: {
|
|
code: 'PLN',
|
|
currencyType: 'fiat',
|
|
divisibility: 2,
|
|
name: 'Poland',
|
|
testnetCode: '',
|
|
},
|
|
USD: {
|
|
code: 'USD',
|
|
currencyType: 'fiat',
|
|
divisibility: 2,
|
|
name: 'United States Dollar',
|
|
testnetCode: '',
|
|
},
|
|
ZEC: {
|
|
code: 'ZEC',
|
|
currencyType: 'crypto',
|
|
divisibility: 8,
|
|
name: 'Zcash',
|
|
testnetCode: 'ZEC',
|
|
},
|
|
};
|