rippled
Loading...
Searching...
No Matches
xrpld
app
tx
detail
Escrow.h
1
//------------------------------------------------------------------------------
2
/*
3
This file is part of rippled: https://github.com/ripple/rippled
4
Copyright (c) 2012, 2013 Ripple Labs Inc.
5
6
Permission to use, copy, modify, and/or distribute this software for any
7
purpose with or without fee is hereby granted, provided that the above
8
copyright notice and this permission notice appear in all copies.
9
10
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17
*/
18
//==============================================================================
19
20
#ifndef RIPPLE_TX_ESCROW_H_INCLUDED
21
#define RIPPLE_TX_ESCROW_H_INCLUDED
22
23
#include <xrpld/app/tx/detail/Transactor.h>
24
25
namespace
ripple
{
26
27
class
EscrowCreate
:
public
Transactor
28
{
29
public
:
30
static
constexpr
ConsequencesFactoryType
ConsequencesFactory
{
Custom
};
31
32
explicit
EscrowCreate
(
ApplyContext
& ctx) :
Transactor
(ctx)
33
{
34
}
35
36
static
TxConsequences
37
makeTxConsequences
(
PreflightContext
const
& ctx);
38
39
static
NotTEC
40
preflight
(
PreflightContext
const
& ctx);
41
42
static
TER
43
preclaim
(
PreclaimContext
const
& ctx);
44
45
TER
46
doApply
()
override
;
47
};
48
49
//------------------------------------------------------------------------------
50
51
class
EscrowFinish
:
public
Transactor
52
{
53
public
:
54
static
constexpr
ConsequencesFactoryType
ConsequencesFactory
{
Normal
};
55
56
explicit
EscrowFinish
(
ApplyContext
& ctx) :
Transactor
(ctx)
57
{
58
}
59
60
static
NotTEC
61
preflight
(
PreflightContext
const
& ctx);
62
63
static
XRPAmount
64
calculateBaseFee
(
ReadView
const
&
view
,
STTx
const
& tx);
65
66
static
TER
67
preclaim
(
PreclaimContext
const
& ctx);
68
69
TER
70
doApply
()
override
;
71
};
72
73
//------------------------------------------------------------------------------
74
75
class
EscrowCancel
:
public
Transactor
76
{
77
public
:
78
static
constexpr
ConsequencesFactoryType
ConsequencesFactory
{
Normal
};
79
80
explicit
EscrowCancel
(
ApplyContext
& ctx) :
Transactor
(ctx)
81
{
82
}
83
84
static
NotTEC
85
preflight
(
PreflightContext
const
& ctx);
86
87
TER
88
doApply
()
override
;
89
};
90
91
}
// namespace ripple
92
93
#endif
ripple::ApplyContext
State information when applying a tx.
Definition:
ApplyContext.h:37
ripple::EscrowCancel
Definition:
Escrow.h:76
ripple::EscrowCancel::EscrowCancel
EscrowCancel(ApplyContext &ctx)
Definition:
Escrow.h:80
ripple::EscrowCancel::ConsequencesFactory
static constexpr ConsequencesFactoryType ConsequencesFactory
Definition:
Escrow.h:78
ripple::EscrowCancel::doApply
TER doApply() override
Definition:
Escrow.cpp:528
ripple::EscrowCancel::preflight
static NotTEC preflight(PreflightContext const &ctx)
Definition:
Escrow.cpp:516
ripple::EscrowCreate
Definition:
Escrow.h:28
ripple::EscrowCreate::EscrowCreate
EscrowCreate(ApplyContext &ctx)
Definition:
Escrow.h:32
ripple::EscrowCreate::preflight
static NotTEC preflight(PreflightContext const &ctx)
Definition:
Escrow.cpp:86
ripple::EscrowCreate::doApply
TER doApply() override
Definition:
Escrow.cpp:163
ripple::EscrowCreate::makeTxConsequences
static TxConsequences makeTxConsequences(PreflightContext const &ctx)
Definition:
Escrow.cpp:80
ripple::EscrowCreate::ConsequencesFactory
static constexpr ConsequencesFactoryType ConsequencesFactory
Definition:
Escrow.h:30
ripple::EscrowCreate::preclaim
static TER preclaim(PreclaimContext const &ctx)
Definition:
Escrow.cpp:146
ripple::EscrowFinish
Definition:
Escrow.h:52
ripple::EscrowFinish::preclaim
static TER preclaim(PreclaimContext const &ctx)
Definition:
Escrow.cpp:364
ripple::EscrowFinish::preflight
static NotTEC preflight(PreflightContext const &ctx)
Definition:
Escrow.cpp:297
ripple::EscrowFinish::doApply
TER doApply() override
Definition:
Escrow.cpp:377
ripple::EscrowFinish::EscrowFinish
EscrowFinish(ApplyContext &ctx)
Definition:
Escrow.h:56
ripple::EscrowFinish::calculateBaseFee
static XRPAmount calculateBaseFee(ReadView const &view, STTx const &tx)
Definition:
Escrow.cpp:351
ripple::EscrowFinish::ConsequencesFactory
static constexpr ConsequencesFactoryType ConsequencesFactory
Definition:
Escrow.h:54
ripple::ReadView
A view into a ledger.
Definition:
ReadView.h:52
ripple::STTx
Definition:
STTx.h:48
ripple::TERSubset
Definition:
TER.h:409
ripple::Transactor
Definition:
Transactor.h:138
ripple::Transactor::ConsequencesFactoryType
ConsequencesFactoryType
Definition:
Transactor.h:153
ripple::Transactor::Custom
@ Custom
Definition:
Transactor.h:153
ripple::Transactor::Normal
@ Normal
Definition:
Transactor.h:153
ripple::Transactor::view
ApplyView & view()
Definition:
Transactor.h:159
ripple::TxConsequences
Class describing the consequences to the account of applying a transaction if the transaction consume...
Definition:
applySteps.h:59
ripple::XRPAmount
Definition:
XRPAmount.h:43
ripple
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition:
algorithm.h:26
ripple::PreclaimContext
State information when determining if a tx is likely to claim a fee.
Definition:
Transactor.h:79
ripple::PreflightContext
State information when preflighting a tx.
Definition:
Transactor.h:34
Generated by
1.9.5