-
-
Methods in com.algorand.algosdk.algod.client.api with parameters of type ApiCallback
Modifier and Type |
Method |
Description |
com.squareup.okhttp.Call |
DefaultApi.accountInformationAsync(java.lang.String address,
ApiCallback<Account> callback) |
Deprecated.
Get account information.
|
com.squareup.okhttp.Call |
DefaultApi.assetInformationAsync(java.math.BigInteger index,
ApiCallback<AssetParams> callback) |
Deprecated.
Get asset information.
|
com.squareup.okhttp.Call |
DefaultApi.getBlockAsync(java.math.BigInteger round,
ApiCallback<Block> callback) |
Deprecated.
Get the block for the given round.
|
com.squareup.okhttp.Call |
DefaultApi.getPendingTransactionsAsync(java.math.BigInteger max,
ApiCallback<PendingTransactions> callback) |
Deprecated.
Get a list of unconfirmed transactions currently in the transaction pool.
|
com.squareup.okhttp.Call |
DefaultApi.getStatusAsync(ApiCallback<NodeStatus> callback) |
Deprecated.
Gets the current node status.
|
com.squareup.okhttp.Call |
DefaultApi.getSupplyAsync(ApiCallback<Supply> callback) |
Deprecated.
Get the current supply reported by the ledger.
|
com.squareup.okhttp.Call |
DefaultApi.getVersionAsync(ApiCallback<Version> callback) |
Deprecated.
(asynchronously)
Retrieves the current version
|
com.squareup.okhttp.Call |
DefaultApi.healthCheckAsync(ApiCallback<java.lang.Void> callback) |
Deprecated.
Returns OK if healthy.
|
com.squareup.okhttp.Call |
DefaultApi.metricsAsync(ApiCallback<java.lang.Void> callback) |
Deprecated.
Return metrics about algod functioning.
|
com.squareup.okhttp.Call |
DefaultApi.pendingTransactionInformationAsync(java.lang.String txid,
ApiCallback<Transaction> callback) |
Deprecated.
Get a specific pending transaction.
|
com.squareup.okhttp.Call |
DefaultApi.rawTransactionAsync(byte[] rawtxn,
ApiCallback<TransactionID> callback) |
Deprecated.
Broadcasts a raw transaction to the network.
|
com.squareup.okhttp.Call |
DefaultApi.suggestedFeeAsync(ApiCallback<TransactionFee> callback) |
Deprecated.
Get the suggested fee (asynchronously)
Suggested Fee is returned in units of micro-Algos per byte.
|
com.squareup.okhttp.Call |
DefaultApi.swaggerJSONAsync(ApiCallback<java.lang.String> callback) |
Deprecated.
Gets the current swagger spec.
|
com.squareup.okhttp.Call |
DefaultApi.transactionAsync(java.lang.String txid,
ApiCallback<Transaction> callback) |
Deprecated.
Get an information of a single transaction.
|
com.squareup.okhttp.Call |
DefaultApi.transactionInformationAsync(java.lang.String address,
java.lang.String txid,
ApiCallback<Transaction> callback) |
Deprecated.
Get a specific confirmed transaction.
|
com.squareup.okhttp.Call |
DefaultApi.transactionParamsAsync(ApiCallback<TransactionParams> callback) |
Deprecated.
Get parameters for constructing a new transaction (asynchronously)
|
com.squareup.okhttp.Call |
DefaultApi.transactionsAsync(java.lang.String address,
java.math.BigInteger firstRound,
java.math.BigInteger lastRound,
org.threeten.bp.LocalDate fromDate,
org.threeten.bp.LocalDate toDate,
java.math.BigInteger max,
ApiCallback<TransactionList> callback) |
Deprecated.
Get a list of confirmed transactions.
|
com.squareup.okhttp.Call |
DefaultApi.waitForBlockAsync(java.math.BigInteger round,
ApiCallback<NodeStatus> callback) |
Deprecated.
Gets the node status after waiting for the given round.
|