mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-16 17:27:38 +00:00
36 lines
1 KiB
C++
36 lines
1 KiB
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2022 The Monero Project
|
|
|
|
#ifndef FEATHER_CONSTANTS_H
|
|
#define FEATHER_CONSTANTS_H
|
|
|
|
#include <QtGlobal>
|
|
#include <QUrl>
|
|
|
|
#include "networktype.h"
|
|
|
|
namespace constants
|
|
{
|
|
extern NetworkType::Type networkType; // TODO: not really a const
|
|
|
|
// coin constants
|
|
const std::string coinName = "monero";
|
|
const qreal cdiv = 1e12;
|
|
const quint32 mixin = 10;
|
|
const quint64 kdfRounds = 1;
|
|
|
|
const QString seedLanguage = "English"; // todo: move me
|
|
|
|
// donation constants
|
|
const QString donationAddress = "47ntfT2Z5384zku39pTM6hGcnLnvpRYW2Azm87GiAAH2bcTidtq278TL6HmwyL8yjMeERqGEBs3cqC8vvHPJd1cWQrGC65f";
|
|
const int donationAmount = 25; // euro
|
|
const int donationBoundary = 25;
|
|
|
|
// websocket constants
|
|
const QUrl websocketUrl = QUrl(QStringLiteral("ws://7e6egbawekbkxzkv4244pqeqgoo4axko2imgjbedwnn6s5yb6b7oliqd.onion/ws"));
|
|
|
|
// website constants
|
|
const QString websiteUrl = "https://featherwallet.org";
|
|
}
|
|
|
|
#endif //FEATHER_CONSTANTS_H
|