diff --git a/monero_utils/monero_config.js b/monero_utils/monero_config.js index f20c6ed..d20d689 100644 --- a/monero_utils/monero_config.js +++ b/monero_utils/monero_config.js @@ -32,22 +32,22 @@ const JSBigInt = require("../cryptonote_utils/biginteger").BigInteger; // module.exports = { // Number of atomic units in one unit of currency. e.g. 12 => 10^12 = 1000000000000 - coinUnitPlaces: 12, + coinUnitPlaces: 11, // Minimum number of confirmations for a transaction to show as confirmed txMinConfirms: 10, // Currency symbol - coinSymbol: "XMR", + coinSymbol: "WOW", // OpenAlias prefix - openAliasPrefix: "xmr", + openAliasPrefix: "wownero", // Currency name - coinName: "Monero", + coinName: "Wownero", // Payment URI Prefix - coinUriPrefix: "monero:", + coinUriPrefix: "wownero:", // Dust threshold in atomic units // 2*10^9 used for choosing outputs/change - we decompose all the way down if the receiver wants now regardless of threshold @@ -57,5 +57,5 @@ module.exports = { maxBlockNumber: 500000000, // Average block time in seconds, used for unlock time estimation - avgBlockTime: 60, + avgBlockTime: 300, };