@aladas-org/cryptocalc
Version:
Cryptocurrency wallet generator
39 lines (36 loc) • 1.97 kB
JavaScript
// ======================================================================================
// ============================== const_default_options.js ==============================
// ======================================================================================
"use strict";
const { LANG, DEFAULT_BLOCKCHAIN,
WALLET_MODE,
HD_WALLET_TYPE, SWORD_WALLET_TYPE, SIMPLE_WALLET_TYPE,
WALLET_SAVE_PATH, ENTROPY_SIZE,
GUI_THEME
} = require('../const_keywords.js');
const DEFAULT_OPTIONS = {
[]: { [HD_WALLET_TYPE]: "Bitcoin",
[]: "Bitcoin",
[]: "Bitcoin" },
[]: SIMPLE_WALLET_TYPE,
[]: { [HD_WALLET_TYPE]:"128", [SWORD_WALLET_TYPE]: "128",
[]: "256" },
"Blockchains": {
[]: [ "Bitcoin", "Ethereum", "Binance Smart Chain", "Solana", "Stellar",
"Sui", "Ripple", "DogeCoin", "Cardano", "TRON",
"Avalanche", "Bitcoin Cash", "LiteCoin", "Ethereum Classic",
"Bitcoin SV", "Dash", "Polygon", "VeChain", "Ravencoin", "Firo" ],
[]: [ "Bitcoin", "Ethereum", "Binance Smart Chain", "Solana", "Stellar",
"Polygon", "Sui", "Ripple", "DogeCoin", "Cardano", "TRON",
"Avalanche", "Bitcoin Cash", "LiteCoin", "Ethereum Classic",
"Bitcoin SV", "Dash", "Polygon", "VeChain", "Ravencoin", "Firo" ],
[]: [ "Bitcoin", "Ethereum", "Solana", "DogeCoin", "Avalanche", "LiteCoin",
"Toncoin", "Horizen", "Polygon", "Terra" ]
},
[]: "EN",
[]:"$CRYPTOWALLET/_output",
[]: "Default"
}; // DEFAULT_OPTIONS
if ( typeof exports === 'object' ) {
exports.DEFAULT_OPTIONS = DEFAULT_OPTIONS
} // exports of const_default_options.js