-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
28 lines (20 loc) · 735 Bytes
/
main.cpp
File metadata and controls
28 lines (20 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <iostream>
#include "Controllers/Cache/Config.h"
#include <iostream>
#include <string>
#include <future>
int main() {
std::cout << "\n\nFrontRunV2 se acaba de iniciar\n\n" << std::endl;
PolyJson::RegisterMappings();
Config::StartupCache();
Config::StartupWallets();
Config::StartupApprovedTokens();
Config::StartupBlacklist();
std::cout << "Config loaded" << std::endl << std::endl;
std::cout << "Test wallet from token USDC" << Config::token_to_wallet_map["0x2791bca1f2de4661ed88a30c99a7a9449aa84174"]->wallet_addr << std::endl;
// Stuff starts here
// Keep main
std::cout << std::endl << std::endl << "STATUS: RUNNING" << std::endl;
std::cin.ignore();
return 0;
}