Uses of Class
com.h2tcoin.takamakachain.transactions.TransactionBean
-
-
Uses of TransactionBean in com.h2tcoin.takamakachain.block
Methods in com.h2tcoin.takamakachain.block that return TransactionBean Modifier and Type Method Description TransactionBean
InternalBlockBean. getBlockHash()
return the transaction containing the block hashTransactionBean
InternalBlockBean. getCoinbase()
TransactionBean
InternalBlockBean. getPreviousBlock()
return the transaction containing the previous block hashTransactionBean
BlockBox. getTb()
TransactionBean
PrivateBlockTxBean. getTb()
Methods in com.h2tcoin.takamakachain.block with parameters of type TransactionBean Modifier and Type Method Description static InternalBlockSyntaxBean
BlockUtils. isTransactionBeanValid(TransactionBean input)
void
InternalBlockBean. setBlockHash(TransactionBean blockHash)
void
InternalBlockBean. setCoinbase(TransactionBean coinbase)
void
InternalBlockBean. setPreviousBlock(TransactionBean previousBlock)
protected void
BlockBox. setTb(TransactionBean tb)
void
PrivateBlockTxBean. setTb(TransactionBean tb)
-
Uses of TransactionBean in com.h2tcoin.takamakachain.p2p
Methods in com.h2tcoin.takamakachain.p2p with parameters of type TransactionBean Modifier and Type Method Description protected static Date
TransactionPoolHelper. getNotBefore(TransactionBean dtb, String next)
void
P2PListener. onBinarySearchResult(TransactionBean tb)
-
Uses of TransactionBean in com.h2tcoin.takamakachain.transactions
Methods in com.h2tcoin.takamakachain.transactions that return TransactionBean Modifier and Type Method Description TransactionBean
DecodedTransactionQueryBean. getBlock()
TransactionBean
DecodedTransactionQueryBean. getBlockHash()
TransactionBean
DecodedTransactionQueryBean. getLimitPointer()
TransactionBean
DecodedTransactionQueryBean. getPreviousBlock()
TransactionBean
DecodedTransactionQueryBean. getStatePointer()
Methods in com.h2tcoin.takamakachain.transactions with parameters of type TransactionBean Modifier and Type Method Description static InternalBlockBean
BuilderITB. block(TransactionBean coinbase, TransactionBean previousBlock, TransactionBean blockHash, ConcurrentSkipListMap<String,String> forwardKeys, ConcurrentSkipListMap<String,TkmRewardBean> rewardList, ConcurrentSkipListSet<PrivateBlockTxBean> transactions)
static TransactionSyntaxBean
TransactionUtils. isTransactionBeanValid(TransactionBean input)
method takes a TransactionBean object in input and returns true if the parameter and its internal fields are not null or empty, returns false otherwisevoid
DecodedTransactionQueryBean. setBlock(TransactionBean block)
void
DecodedTransactionQueryBean. setBlockHash(TransactionBean blockHash)
void
DecodedTransactionQueryBean. setLimitPointer(TransactionBean limitPointer)
void
DecodedTransactionQueryBean. setPreviousBlock(TransactionBean previousBlock)
void
DecodedTransactionQueryBean. setStatePointer(TransactionBean statePointer)
-
Uses of TransactionBean in com.h2tcoin.takamakachain.utils.threadSafeUtils
Methods in com.h2tcoin.takamakachain.utils.threadSafeUtils that return TransactionBean Modifier and Type Method Description TransactionBean
Json. fromJsonToTb(String tb)
Deprecated.try to deserialize aTransactionBean
, if the deserialization fail return a null and log a warning message.static TransactionBean
TkmTextUtils. getSingleTransactionBeanFromJson(String jsonString)
static TransactionBean
TkmTextUtils. transactionBeanFromJson(String transactionBeanJson)
Methods in com.h2tcoin.takamakachain.utils.threadSafeUtils that return types with arguments of type TransactionBean Modifier and Type Method Description static ArrayList<TransactionBean>
TkmTextUtils. getTransactionBeanFromJson(String jsonString)
Methods in com.h2tcoin.takamakachain.utils.threadSafeUtils with parameters of type TransactionBean Modifier and Type Method Description static KeyContexts.TransactionType
TkmTextUtils. identifyTransaction(TransactionBean tb)
identify if transaction is block or transactionString
Json. toJson(TransactionBean tb)
Deprecated.Serialize aTransactionBean
into a String in Json formatstatic String
TkmTextUtils. toJson(TransactionBean tb)
Method parameters in com.h2tcoin.takamakachain.utils.threadSafeUtils with type arguments of type TransactionBean Modifier and Type Method Description static String
TkmTextUtils. toJsonTransactionBeanList(ArrayList<TransactionBean> listTB)
-
Uses of TransactionBean in com.h2tcoin.takamakachain.wallet
Methods in com.h2tcoin.takamakachain.wallet that return TransactionBean Modifier and Type Method Description static TransactionBean
TkmWallet. createGenericTransaction(InternalBlockBean ibb, InstanceWalletKeystoreInterface iwk, int signKey)
static TransactionBean
TkmWallet. createGenericTransaction(InternalTransactionBean itb, InstanceWalletKeystoreInterface iwk, int signKey)
It returns the Chrypted envelope used later in TKM chainTransactionBean
TransactionBox. getTb()
abstract TransactionBean
AbstractCypherProvider. getTransactionBean(int i, String message)
TransactionBean
CypherProviderBCED25519. getTransactionBean(int i, String message)
returns the GSON of the transactionbean with the specified index and messageMethods in com.h2tcoin.takamakachain.wallet with parameters of type TransactionBean Modifier and Type Method Description protected void
TransactionBox. setTb(TransactionBean tb)
static TkmCypherBean
TkmWallet. verifySign(TransactionBean tb)
It verifies the Transaction Bean content going through all the wrapped chain elements parsed use this function with caution, check for null values.static TransactionBox
TkmWallet. verifyTransactionIntegrity(TransactionBean tb)
It creates a transaction box containing both Transaction bean and itb message Only when the verifySign method sets a valid transactionstatic TransactionBox
TkmWallet. verifyTransactionIntegrity(TransactionBean tb, String transactionJson)
It creates a transaction box containing both Transaction bean and itb message Only when the verifySign method sets a valid transaction
-