| ActionStates | - |
| FeePayerSpec | Allows you to specify information about the fee payer account and the transaction. |
| IncludedTransaction | Represents a transaction that has been successfully included in a block. |
| NetworkConstants | - |
| PendingTransaction | Represents a transaction that has been submitted to the blockchain but has not yet reached a final state. The PendingTransaction type extends certain functionalities from the base Transaction type, adding methods to monitor the transaction's progress towards being finalized (either included in a block or rejected). |
| PendingTransactionPromise | A Promise<PendingTransaction> with an additional wait method, which calls into the inner TransactionStatus's wait method upon its resolution. |
| PendingTransactionStatus | - |
| RejectedTransaction | Represents a transaction that has been rejected and not included in a blockchain block. |
| TestPublicKey | - |
| Transaction | Defines the structure and operations associated with a transaction. This type encompasses methods for serializing the transaction, signing it, generating proofs, and submitting it to the network. |