Monero
transaction_info.h
Go to the documentation of this file.
1 // Copyright (c) 2014-2018, The Monero Project
2 //
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without modification, are
6 // permitted provided that the following conditions are met:
7 //
8 // 1. Redistributions of source code must retain the above copyright notice, this list of
9 // conditions and the following disclaimer.
10 //
11 // 2. Redistributions in binary form must reproduce the above copyright notice, this list
12 // of conditions and the following disclaimer in the documentation and/or other
13 // materials provided with the distribution.
14 //
15 // 3. Neither the name of the copyright holder nor the names of its contributors may be
16 // used to endorse or promote products derived from this software without specific
17 // prior written permission.
18 //
19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22 // THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 //
29 // Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
30 
31 #include "wallet/api/wallet2_api.h"
32 #include <string>
33 #include <ctime>
34 
35 namespace Monero {
36 
37 class TransactionHistoryImpl;
38 
40 {
41 public:
45  virtual int direction() const override;
47  virtual bool isPending() const override;
48  virtual bool isFailed() const override;
49  virtual uint64_t amount() const override;
51  virtual uint64_t fee() const override;
52  virtual uint64_t blockHeight() const override;
53  virtual std::set<uint32_t> subaddrIndex() const override;
54  virtual uint32_t subaddrAccount() const override;
55  virtual std::string label() const override;
56 
57  virtual std::string hash() const override;
58  virtual std::time_t timestamp() const override;
59  virtual std::string paymentId() const override;
60  virtual const std::vector<Transfer> &transfers() const override;
61  virtual uint64_t confirmations() const override;
62  virtual uint64_t unlockTime() const override;
63 
64 private:
66  bool m_pending;
67  bool m_failed;
68  uint64_t m_amount;
69  uint64_t m_fee;
70  uint64_t m_blockheight;
71  std::set<uint32_t> m_subaddrIndex; // always unique index for incoming transfers; can be multiple indices for outgoing transfers
72  uint32_t m_subaddrAccount;
73  std::string m_label;
74  std::string m_hash;
75  std::time_t m_timestamp;
76  std::string m_paymentid;
77  std::vector<Transfer> m_transfers;
78  uint64_t m_confirmations;
79  uint64_t m_unlock_time;
80 
81  friend class TransactionHistoryImpl;
82 
83 };
84 
85 } // namespace
86 
87 namespace Bitmonero = Monero;
std::time_t m_timestamp
Definition: transaction_info.h:75
uint64_t m_unlock_time
Definition: transaction_info.h:79
uint32_t m_subaddrAccount
Definition: transaction_info.h:72
virtual int direction() const override
in/out
Definition: transaction_info.cpp:64
virtual const std::vector< Transfer > & transfers() const override
only applicable for output transactions
Definition: transaction_info.cpp:126
int m_direction
Definition: transaction_info.h:65
virtual std::string hash() const override
transaction_id
Definition: transaction_info.cpp:111
virtual uint64_t blockHeight() const override
Definition: transaction_info.cpp:90
virtual std::string paymentId() const override
Definition: transaction_info.cpp:121
virtual uint64_t unlockTime() const override
Definition: transaction_info.cpp:136
std::string m_label
Definition: transaction_info.h:73
virtual std::time_t timestamp() const override
Definition: transaction_info.cpp:116
Definition: address_book.cpp:40
virtual bool isPending() const override
true if hold
Definition: transaction_info.cpp:70
virtual std::string label() const override
Definition: transaction_info.cpp:105
TransactionInfoImpl()
Definition: transaction_info.cpp:44
bool m_failed
Definition: transaction_info.h:67
std::string m_paymentid
Definition: transaction_info.h:76
virtual uint64_t confirmations() const override
Definition: transaction_info.cpp:131
virtual bool isFailed() const override
Definition: transaction_info.cpp:75
Definition: transaction_history.h:38
virtual uint64_t fee() const override
always 0 for incoming txes
Definition: transaction_info.cpp:85
virtual uint64_t amount() const override
Definition: transaction_info.cpp:80
~TransactionInfoImpl()
Definition: transaction_info.cpp:59
The TransactionInfo - interface for displaying transaction information.
Definition: wallet2_api.h:167
std::set< uint32_t > m_subaddrIndex
Definition: transaction_info.h:71
virtual std::set< uint32_t > subaddrIndex() const override
Definition: transaction_info.cpp:95
uint64_t m_fee
Definition: transaction_info.h:69
uint64_t m_confirmations
Definition: transaction_info.h:78
std::vector< Transfer > m_transfers
Definition: transaction_info.h:77
virtual uint32_t subaddrAccount() const override
Definition: transaction_info.cpp:100
uint64_t m_amount
Definition: transaction_info.h:68
uint64_t m_blockheight
Definition: transaction_info.h:70
bool m_pending
Definition: transaction_info.h:66
std::string m_hash
Definition: transaction_info.h:74
Definition: transaction_info.h:39