> ## Documentation Index
> Fetch the complete documentation index at: https://docs.crossmint.com/llms.txt
> Use this file to discover all available pages before exploring further.

# TransactionOperations

> Kotlin Interface

**Interface**

```kotlin theme={null}
interface TransactionOperations
```

## Functions

### getTransaction

```kotlin theme={null}
abstract suspend fun getTransaction(transactionId: String): Result<Transaction, TransactionError>
```

### send

```kotlin theme={null}
abstract suspend fun send(recipient: String, tokenLocator: String, amount: Double, idempotencyKey: String? = null, signer: SignerSelection = SignerSelection.Admin): Result<Transaction, TransactionError>
```

Sends tokens to a recipient address.

### signAndSubmitTransaction

```kotlin theme={null}
abstract suspend fun signAndSubmitTransaction(transactionId: String, signer: SignerSelection = SignerSelection.Admin): Result<Transaction, TransactionError>
```
