2020-10-21 14:52:34 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2023-01-02 19:30:11 +00:00
|
|
|
// SPDX-FileCopyrightText: 2020-2023 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";
|
2023-10-16 20:13:59 +00:00
|
|
|
const QString donationDescription = "Donation to the Feather development team";
|
2021-05-18 15:59:18 +00:00
|
|
|
const int donationBoundary = 25;
|
2020-10-21 14:52:34 +00:00
|
|
|
}
|
|
|
|
|
2021-05-18 15:59:18 +00:00
|
|
|
#endif //FEATHER_CONSTANTS_H
|