2022-10-14 10:38:41 +00:00
|
|
|
#include "Event.h"
|
|
|
|
|
|
|
|
namespace Status::StatusGo::Wallet::Transfer
|
|
|
|
{
|
|
|
|
|
|
|
|
const EventType Events::NewTransfers{"new-transfers"};
|
|
|
|
const EventType Events::FetchingRecentHistory{"recent-history-fetching"};
|
|
|
|
const EventType Events::RecentHistoryReady{"recent-history-ready"};
|
|
|
|
const EventType Events::FetchingHistoryError{"fetching-history-error"};
|
|
|
|
const EventType Events::NonArchivalNodeDetected{"non-archival-node-detected"};
|
|
|
|
|
2022-11-15 21:48:59 +00:00
|
|
|
const EventType Events::WalletTickReload{"wallet-tick-reload"};
|
|
|
|
const EventType Events::EventBalanceHistoryUpdateStarted{"wallet-balance-history-update-started"};
|
|
|
|
const EventType Events::EventBalanceHistoryUpdateFinished{"wallet-balance-history-update-finished"};
|
|
|
|
const EventType Events::EventBalanceHistoryUpdateFinishedWithError{"wallet-balance-history-update-finished-with-error"};
|
|
|
|
|
|
|
|
} // namespace Status::StatusGo::Wallet::Transfer
|