2020-10-21 14:52:34 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2022-02-10 10:26:41 +00:00
|
|
|
// SPDX-FileCopyrightText: 2020-2022 The Monero Project
|
2020-10-21 14:52:34 +00:00
|
|
|
|
2021-05-18 15:59:18 +00:00
|
|
|
#ifndef FEATHER_CONSTANTS_H
|
|
|
|
#define FEATHER_CONSTANTS_H
|
2020-10-21 14:52:34 +00:00
|
|
|
|
|
|
|
#include <QtGlobal>
|
2021-03-12 18:26:48 +00:00
|
|
|
#include <QUrl>
|
2020-10-21 14:52:34 +00:00
|
|
|
|
2021-05-18 15:59:18 +00:00
|
|
|
#include "networktype.h"
|
|
|
|
|
|
|
|
namespace constants
|
2020-10-21 14:52:34 +00:00
|
|
|
{
|
2021-07-02 22:04:15 +00:00
|
|
|
extern NetworkType::Type networkType; // TODO: not really a const
|
2021-05-18 15:59:18 +00:00
|
|
|
|
2021-03-12 18:26:48 +00:00
|
|
|
// coin constants
|
|
|
|
const std::string coinName = "monero";
|
2020-10-21 14:52:34 +00:00
|
|
|
const qreal cdiv = 1e12;
|
2021-03-12 18:26:48 +00:00
|
|
|
const quint32 mixin = 10;
|
|
|
|
const quint64 kdfRounds = 1;
|
|
|
|
|
2021-05-18 15:59:18 +00:00
|
|
|
const QString seedLanguage = "English"; // todo: move me
|
|
|
|
|
2021-03-12 18:26:48 +00:00
|
|
|
// donation constants
|
|
|
|
const QString donationAddress = "47ntfT2Z5384zku39pTM6hGcnLnvpRYW2Azm87GiAAH2bcTidtq278TL6HmwyL8yjMeERqGEBs3cqC8vvHPJd1cWQrGC65f";
|
|
|
|
const int donationAmount = 25; // euro
|
2021-05-18 15:59:18 +00:00
|
|
|
const int donationBoundary = 25;
|
2021-03-12 18:26:48 +00:00
|
|
|
|
|
|
|
// websocket constants
|
|
|
|
const QUrl websocketUrl = QUrl(QStringLiteral("ws://7e6egbawekbkxzkv4244pqeqgoo4axko2imgjbedwnn6s5yb6b7oliqd.onion/ws"));
|
2021-05-02 18:22:38 +00:00
|
|
|
|
|
|
|
// website constants
|
|
|
|
const QString websiteUrl = "https://featherwallet.org";
|
2020-10-21 14:52:34 +00:00
|
|
|
}
|
|
|
|
|
2021-05-18 15:59:18 +00:00
|
|
|
#endif //FEATHER_CONSTANTS_H
|