danicoin/tests/core_tests/TransactionBuilder.h
2015-05-27 13:28:09 +01:00

80 lines
2.8 KiB
C++

// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers
//
// This file is part of Bytecoin.
//
// Bytecoin is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Bytecoin is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
#pragma once
#include "cryptonote_core/account.h"
#include "cryptonote_core/cryptonote_format_utils.h"
#include "cryptonote_core/Currency.h"
class TransactionBuilder {
public:
typedef std::vector<CryptoNote::account_keys> KeysVector;
typedef std::vector<crypto::signature> SignatureVector;
typedef std::vector<SignatureVector> SignatureMultivector;
struct MultisignatureSource {
CryptoNote::TransactionInputMultisignature input;
KeysVector keys;
crypto::public_key srcTxPubKey;
size_t srcOutputIndex;
};
TransactionBuilder(const CryptoNote::Currency& currency, uint64_t unlockTime = 0);
// regenerate transaction keys
TransactionBuilder& newTxKeys();
TransactionBuilder& setTxKeys(const CryptoNote::KeyPair& txKeys);
// inputs
TransactionBuilder& setInput(const std::vector<CryptoNote::tx_source_entry>& sources, const CryptoNote::account_keys& senderKeys);
TransactionBuilder& addMultisignatureInput(const MultisignatureSource& source);
// outputs
TransactionBuilder& setOutput(const std::vector<CryptoNote::tx_destination_entry>& destinations);
TransactionBuilder& addOutput(const CryptoNote::tx_destination_entry& dest);
TransactionBuilder& addMultisignatureOut(uint64_t amount, const KeysVector& keys, uint32_t required);
CryptoNote::Transaction build() const;
std::vector<CryptoNote::tx_source_entry> m_sources;
std::vector<CryptoNote::tx_destination_entry> m_destinations;
private:
void fillInputs(CryptoNote::Transaction& tx, std::vector<CryptoNote::KeyPair>& contexts) const;
void fillOutputs(CryptoNote::Transaction& tx) const;
void signSources(const crypto::hash& prefixHash, const std::vector<CryptoNote::KeyPair>& contexts, CryptoNote::Transaction& tx) const;
struct MultisignatureDestination {
uint64_t amount;
uint32_t requiredSignatures;
KeysVector keys;
};
CryptoNote::account_keys m_senderKeys;
std::vector<MultisignatureSource> m_msigSources;
std::vector<MultisignatureDestination> m_msigDestinations;
size_t m_version;
uint64_t m_unlockTime;
CryptoNote::KeyPair m_txKey;
const CryptoNote::Currency& m_currency;
};