html: Wowify config.js

master
Matt Smith 4 years ago
parent c16a3a3150
commit ac32fab559
Signed by: asymptotically
GPG Key ID: D0EAC8943FB1B2C1

@ -1,19 +1,19 @@
var config = { var config = {
apiUrl: "http://127.0.0.1:1984/", apiUrl: "https://hodl.wowbux.org/api/",
mainnetExplorerUrl: "https://xmrchain.com/", mainnetExplorerUrl: "https://explore.wownero.com/",
testnetExplorerUrl: "https://testnet.xmrchain.com/", testnetExplorerUrl: "https://testnet.xmrchain.com/",
stagenetExplorerUrl: "http://139.162.60.17:8082/", stagenetExplorerUrl: "http://139.162.60.17:8082/",
nettype: 2, /* 0 - MAINNET, 1 - TESTNET, 2 - STAGENET */ nettype: 0, /* 0 - MAINNET, 1 - TESTNET, 2 - STAGENET */
coinUnitPlaces: 12, coinUnitPlaces: 11,
txMinConfirms: 10, // corresponds to CRYPTONOTE_DEFAULT_TX_SPENDABLE_AGE in Monero txMinConfirms: 4, // corresponds to CRYPTONOTE_DEFAULT_TX_SPENDABLE_AGE in Monero
txCoinbaseMinConfirms: 60, // corresponds to CRYPTONOTE_MINED_MONEY_UNLOCK_WINDOW in Monero txCoinbaseMinConfirms: 60, // corresponds to CRYPTONOTE_MINED_MONEY_UNLOCK_WINDOW in Monero
coinSymbol: 'XMR', coinSymbol: 'WOW',
openAliasPrefix: "xmr", openAliasPrefix: "wow",
coinName: 'Monero', coinName: 'wownero',
coinUriPrefix: 'monero:', coinUriPrefix: 'wownero:',
addressPrefix: 18, addressPrefix: 4146,
integratedAddressPrefix: 19, integratedAddressPrefix: 6810,
subAddressPrefix: 42, subAddressPrefix: 12208,
addressPrefixTestnet: 53, addressPrefixTestnet: 53,
integratedAddressPrefixTestnet: 54, integratedAddressPrefixTestnet: 54,
subAddressPrefixTestnet: 63, subAddressPrefixTestnet: 63,
@ -23,11 +23,11 @@ var config = {
feePerKB: new JSBigInt('2000000000'),//20^10 - not used anymore, as fee is dynamic. feePerKB: new JSBigInt('2000000000'),//20^10 - not used anymore, as fee is dynamic.
dustThreshold: new JSBigInt('1000000000'),//10^10 used for choosing outputs/change - we decompose all the way down if the receiver wants now regardless of threshold dustThreshold: new JSBigInt('1000000000'),//10^10 used for choosing outputs/change - we decompose all the way down if the receiver wants now regardless of threshold
txChargeRatio: 0.5, txChargeRatio: 0.5,
defaultMixin: 10, // minimum mixin for hardfork v8 is 10 (ring size 11) defaultMixin: 20, // minimum mixin for hardfork v8 is 10 (ring size 11)
txChargeAddress: '', txChargeAddress: '',
idleTimeout: 30, idleTimeout: 30,
idleWarningDuration: 20, idleWarningDuration: 20,
maxBlockNumber: 500000000, maxBlockNumber: 500000000,
avgBlockTime: 120, avgBlockTime: 300,
debugMode: false debugMode: false
}; };

Loading…
Cancel
Save