// Copyright (c) 2012-2014, 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 . #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 KeysVector; typedef std::vector SignatureVector; typedef std::vector SignatureMultivector; TransactionBuilder(const cryptonote::Currency& currency, uint64_t unlockTime = 0); // regenerate transaction keys TransactionBuilder& newTxKeys(); // inputs TransactionBuilder& setInput(const std::vector& sources, const cryptonote::account_keys& senderKeys); TransactionBuilder& addMultisignatureInput(const cryptonote::TransactionInputMultisignature& input, const KeysVector& keys); // outputs TransactionBuilder& setOutput(const std::vector& 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 m_sources; std::vector m_destinations; private: void fillInputs(cryptonote::Transaction& tx, std::vector& contexts) const; void fillOutputs(cryptonote::Transaction& tx) const; void signSources(const crypto::hash& prefixHash, const std::vector& contexts, cryptonote::Transaction& tx) const; struct MultisignatureSource { cryptonote::TransactionInputMultisignature input; KeysVector keys; }; struct MultisignatureDestination { uint64_t amount; cryptonote::TransactionOutputMultisignature output; }; cryptonote::account_keys m_senderKeys; std::vector m_msigSources; std::vector m_msigDestinations; size_t m_version; uint64_t m_unlockTime; cryptonote::KeyPair m_txKey; const cryptonote::Currency& m_currency; };