feather/src/constants.h

30 lines
828 B
C
Raw Permalink Normal View History

2020-10-21 14:52:34 +00:00
// SPDX-License-Identifier: BSD-3-Clause
2024-01-01 17:07:58 +00:00
// SPDX-FileCopyrightText: 2020-2024 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
2024-10-01 20:17:54 +00:00
#include <QString>
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 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