rippled
Loading...
Searching...
No Matches
tx/transactors/token/MPTokenIssuanceCreate.h
1#pragma once
2
3#include <xrpl/basics/Expected.h>
4#include <xrpl/protocol/UintTypes.h>
5#include <xrpl/tx/Transactor.h>
6
7namespace xrpl {
8
22
24{
25public:
27
29 {
30 }
31
32 static bool
34
35 static std::uint32_t
37
38 static NotTEC
39 preflight(PreflightContext const& ctx);
40
41 TER
42 doApply() override;
43
45 create(ApplyView& view, beast::Journal journal, MPTCreateArgs const& args);
46};
47
48} // namespace xrpl
A generic endpoint for log messages.
Definition Journal.h:40
State information when applying a tx.
Writeable view to a ledger, for applying a transaction.
Definition ApplyView.h:116
static constexpr ConsequencesFactoryType ConsequencesFactory
static bool checkExtraFeatures(PreflightContext const &ctx)
static std::uint32_t getFlagsMask(PreflightContext const &ctx)
static NotTEC preflight(PreflightContext const &ctx)
static Expected< MPTID, TER > create(ApplyView &view, beast::Journal journal, MPTCreateArgs const &args)
ApplyView & view()
Definition Transactor.h:132
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:5
std::optional< std::uint32_t > mutableFlags
std::optional< std::uint16_t > transferFee
State information when preflighting a tx.
Definition Transactor.h:14