Class TransactionBuilder
-
Constructor Summary
ConstructorsConstructorDescriptionTransactionBuilder
(@NonNull TransactionBuilderAccount sourceAccount, @NonNull Network network) Construct a new transaction builder. -
Method Summary
Modifier and TypeMethodDescriptionAdds a memo to this transaction.addOperation
(@NonNull Operation operation) Adds a new operation to this transaction.addOperations
(@NonNull Collection<Operation> operations) Adds operation to this transaction.addPreconditions
(@NonNull TransactionPreconditions preconditions) Adds preconditions.build()
Builds a transaction and increments the sequence number on the source account after transaction is constructed.buildPaymentToContractTransaction
(String destination, Asset asset, BigDecimal amount, String source) An alias forbuildRestoreAssetBalanceEntryTransaction(String, Asset, SorobanDataBuilder.Resources, Long, String)
withresources
set tonew SorobanDataBuilder.Resources(400_000L, 1_000L, 1_000L)
andresourceFee
set to5_000_000L
.buildPaymentToContractTransaction
(String destination, Asset asset, BigDecimal amount, SorobanDataBuilder.Resources resources, Long resourceFee, String source) Builds a transaction to send asset to a contract.buildRestoreAssetBalanceEntryTransaction
(String balanceOwner, Asset asset, String source) An alias forbuildRestoreAssetBalanceEntryTransaction(String, Asset, SorobanDataBuilder.Resources, Long, String)
withresources
set tonew SorobanDataBuilder.Resources(0L, 500L, 500L)
andresourceFee
set to4_000_000L
.buildRestoreAssetBalanceEntryTransaction
(String balanceOwner, Asset asset, SorobanDataBuilder.Resources resources, Long resourceFee, String source) Builds a transaction to restore the asset balance entry.int
setBaseFee
(long baseFee) setSorobanData
(String sorobanData) Sets the transaction's internal Soroban transaction data (resources, footprint, etc.).setSorobanData
(SorobanTransactionData sorobanData) Sets the transaction's internal Soroban transaction data (resources, footprint, etc.).setTimeout
(long timeout) An alias forsetTimeout(BigInteger)
withtimeout
in seconds.setTimeout
(BigInteger timeout) Because of the distributed nature of the Stellar network it is possible that the status of your transaction will be determined after a long time if the network is highly congested.
-
Constructor Details
-
TransactionBuilder
public TransactionBuilder(@NonNull @NonNull TransactionBuilderAccount sourceAccount, @NonNull @NonNull Network network) Construct a new transaction builder.- Parameters:
sourceAccount
- the source account for this transaction. This account is the account who will use a sequence number. When build() is called, the account object's sequence number will be incremented.network
- the testnet or pubnet network to use
-
-
Method Details
-
getOperationsCount
public int getOperationsCount() -
addOperation
Adds a new operation to this transaction.- Parameters:
operation
- the operation to add- Returns:
- Builder object so you can chain methods.
- See Also:
-
addOperations
Adds operation to this transaction.- Parameters:
operations
- list of operations- Returns:
- Builder object so you can chain methods.
- See Also:
-
addPreconditions
public TransactionBuilder addPreconditions(@NonNull @NonNull TransactionPreconditions preconditions) Adds preconditions. For details of all preconditions on transaction refer to CAP-21- Parameters:
preconditions
- the tx PreConditions- Returns:
- updated Builder object
-
addMemo
Adds a memo to this transaction.- Parameters:
memo
- memo to add- Returns:
- Builder object so you can chain methods.
- See Also:
-
setTimeout
Because of the distributed nature of the Stellar network it is possible that the status of your transaction will be determined after a long time if the network is highly congested. If you want to be sure to receive the status of the transaction within a given period you should set theTimeBounds
withmaxTime
on the transaction (this is whatsetTimeout
does internally; if there'sminTime
set but nomaxTime
it will be added). Call toBuilder.setTimeout
is required if Transaction does not havemax_time
set. If you don't want to set timeout, useTIMEOUT_INFINITE
. In general, you should setTIMEOUT_INFINITE
only in smart contracts. Please note that Horizon may still return504 Gateway Timeout
error, even for short timeouts. In such case you need to resubmit the same transaction again without making any changes to receive a status. This method is using the machine system time (UTC), make sure it is set correctly.- Parameters:
timeout
- Timeout in seconds.- Returns:
- updated Builder
- See Also:
-
setTimeout
An alias forsetTimeout(BigInteger)
withtimeout
in seconds.- Parameters:
timeout
- Timeout in seconds.- Returns:
- updated Builder
-
setBaseFee
-
build
Builds a transaction and increments the sequence number on the source account after transaction is constructed. -
setSorobanData
Sets the transaction's internal Soroban transaction data (resources, footprint, etc.).For non-contract(non-Soroban) transactions, this setting has no effect. In the case of Soroban transactions, this is either an instance of
SorobanTransactionData
or a base64-encoded string of said structure. This is usually obtained from the simulation response based on a transaction with a Soroban operation (e.g.InvokeHostFunctionOperation
, providing necessary resource and storage footprint estimations for contract invocation.- Parameters:
sorobanData
- Soroban data to set- Returns:
- Builder object so you can chain methods.
-
setSorobanData
Sets the transaction's internal Soroban transaction data (resources, footprint, etc.).For non-contract(non-Soroban) transactions, this setting has no effect. In the case of Soroban transactions, this is either an instance of
SorobanTransactionData
or a base64-encoded string of said structure. This is usually obtained from the simulation response based on a transaction with a Soroban operation (e.g.InvokeHostFunctionOperation
, providing necessary resource and storage footprint estimations for contract invocation.- Parameters:
sorobanData
- Soroban data to set- Returns:
- Builder object so you can chain methods.
-
buildPaymentToContractTransaction
public Transaction buildPaymentToContractTransaction(String destination, Asset asset, BigDecimal amount, @Nullable String source) An alias forbuildRestoreAssetBalanceEntryTransaction(String, Asset, SorobanDataBuilder.Resources, Long, String)
withresources
set tonew SorobanDataBuilder.Resources(400_000L, 1_000L, 1_000L)
andresourceFee
set to5_000_000L
.- Parameters:
destination
- The contract to send the assets to. (starting with 'C')asset
- The asset to send.amount
- The amount of the asset to send.source
- The source account for the transaction.- Returns:
- The transaction.
-
buildPaymentToContractTransaction
public Transaction buildPaymentToContractTransaction(String destination, Asset asset, BigDecimal amount, SorobanDataBuilder.Resources resources, Long resourceFee, @Nullable String source) Builds a transaction to send asset to a contract.The original intention of this interface design is to send assets to the contract account when the Stellar RPC server is inaccessible. Without Stellar RPC, we cannot accurately estimate the required resources, so we have preset some values that may be slightly higher than the actual resource consumption.
If you encounter the
entry_archived
error when submitting this transaction, you should consider calling thebuildRestoreAssetBalanceEntryTransaction(String, Asset, SorobanDataBuilder.Resources, Long, String)
method to restore the entry, and then use the method to send assets again.Note:
- This method should only be used to send assets to a contract (starting with 'C'). For
sending assets to regular account addresses (starting with 'G'), please use the
PaymentOperation
. - This method is suitable for sending assets to a contract account when you don't have
access to a Stellar RPC server. If you have access to a Stellar RPC server, it is
recommended to use the
ContractClient
to build transactions for sending tokens to contracts. - This method may consume slightly more transaction fee than actually required. Under Protocol 22, if the destination is receiving the asset for the first time, it will actually consume about 0.25 XLM in resource fees; if it has received the asset before, it will actually consume about 0.006 XLM in resource fees.
- Parameters:
destination
- The contract to send the assets to. (starting with 'C')asset
- The asset to send.amount
- The amount of the asset to send.resources
- The resources required for the transaction.resourceFee
- The maximum fee (in stroops) that can be paid for the transaction.source
- The source account for the transaction.- Returns:
- The transaction.
- This method should only be used to send assets to a contract (starting with 'C'). For
sending assets to regular account addresses (starting with 'G'), please use the
-
buildRestoreAssetBalanceEntryTransaction
public Transaction buildRestoreAssetBalanceEntryTransaction(String balanceOwner, Asset asset, @Nullable String source) An alias forbuildRestoreAssetBalanceEntryTransaction(String, Asset, SorobanDataBuilder.Resources, Long, String)
withresources
set tonew SorobanDataBuilder.Resources(0L, 500L, 500L)
andresourceFee
set to4_000_000L
.- Parameters:
balanceOwner
- The owner of the asset, it should be the same as the `destination` address in thebuildPaymentToContractTransaction(String, Asset, BigDecimal, SorobanDataBuilder.Resources, Long, String)
method.asset
- The assetsource
- The source account for the transaction.- Returns:
- The transaction.
-
buildRestoreAssetBalanceEntryTransaction
public Transaction buildRestoreAssetBalanceEntryTransaction(String balanceOwner, Asset asset, SorobanDataBuilder.Resources resources, Long resourceFee, @Nullable String source) Builds a transaction to restore the asset balance entry.This method is designed to be used in conjunction with the
buildPaymentToContractTransaction(String, Asset, BigDecimal, SorobanDataBuilder.Resources, Long, String)
method.Under Protocol 22, if the entry really needs to be restored, then this method will consume about 0.25 XLM in resource fees.
- Parameters:
balanceOwner
- The owner of the asset, it should be the same as the `destination` address in thebuildPaymentToContractTransaction(String, Asset, BigDecimal, SorobanDataBuilder.Resources, Long, String)
method.asset
- The assetresources
- The resources required for the transaction.resourceFee
- The maximum fee (in stroops) that can be paid for the transaction.source
- The source account for the transaction.- Returns:
- The transaction.
-
getSourceAccount
-
getBaseFee
-
getNetwork
-