Decentralised Art Server
High-performance C++ backend that exposes HTML interface and a secure REST API for managing Performative Transactions entities
 
Loading...
Searching...
No Matches
decentralised_art.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <format>
4#include <csignal>
5
6#include <spdlog/spdlog.h>
7#include <spdlog/sinks/basic_file_sink.h>
8#include <spdlog/sinks/stdout_color_sinks.h>
9#include <absl/container/flat_hash_map.h>
10#include <absl/container/flat_hash_set.h>
11
12#include "native.h"
13#include "async.hpp"
14#include "cmd.hpp"
15#include "config.hpp"
16#include "server.hpp"
17#include "http.hpp"
18#include "evm.hpp"
19#include "pt.hpp"
20#include "file.hpp"
21#include "api.hpp"
22#include "auth.hpp"
23#include "utils.hpp"
24#include "version.hpp"
25#include "loader.hpp"
26#include "chain.hpp"
27#include "crypto.hpp"
28#include "storage.hpp"
29
30#include "sepolia_backend.hpp"
31
32namespace dcn
33{
34 const asio::ip::port_type DEFAULT_PORT = 54321;
35 const asio::ip::port_type DEFAULT_TLS_PORT = 54322;
36}
Definition decentralised_art.hpp:33
const asio::ip::port_type DEFAULT_PORT
Definition decentralised_art.hpp:34
const asio::ip::port_type DEFAULT_TLS_PORT
Definition decentralised_art.hpp:35