Uses of Class
com.algorand.algosdk.v2.client.common.AlgodClient
-
Packages that use AlgodClient Package Description com.algorand.algosdk.builder.transaction com.algorand.algosdk.transaction com.algorand.algosdk.v2.client -
-
Uses of AlgodClient in com.algorand.algosdk.builder.transaction
Methods in com.algorand.algosdk.builder.transaction with parameters of type AlgodClient Modifier and Type Method Description T
TransactionParametersBuilder. lookupParams(AlgodClient client)
Query the V2 REST API withAlgodClient
for Transaction Parameters: Initialize fee, genesisID, genesisHash, firstValid, lastValid usingTransactionParametersResponse
if not already set. -
Uses of AlgodClient in com.algorand.algosdk.transaction
Methods in com.algorand.algosdk.transaction with parameters of type AlgodClient Modifier and Type Method Description AtomicTransactionComposer.ExecuteResult
AtomicTransactionComposer. execute(AlgodClient client, int waitRounds)
Send the transaction group to the network and wait until it's committed to a block.List<String>
AtomicTransactionComposer. submit(AlgodClient client)
Send the transaction group to the network, but don't wait for it to be committed to a block. -
Uses of AlgodClient in com.algorand.algosdk.v2.client
Methods in com.algorand.algosdk.v2.client with parameters of type AlgodClient Modifier and Type Method Description static DryrunRequest
Utils. createDryrun(AlgodClient client, List<SignedTransaction> txns)
Construct a DryrunRequest object from a set of transactions.static DryrunRequest
Utils. createDryrun(AlgodClient client, List<SignedTransaction> txns, String protocol_version, Long latest_timestamp, Long round)
Construct a DryrunRequest object from a set of transactions.static PendingTransactionResponse
Utils. waitForConfirmation(AlgodClient client, String txID, int waitRounds)
Wait until a transaction has been confirmed or rejected by the network or wait until waitRound fully elapsed
-