> ## 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.

# RawTransactionParams.Stellar

> Kotlin Data Class

**Data Class**

```kotlin theme={null}
data class Stellar(val contractId: String, val method: String, val args: Map<String, String>, val memo: String? = null) : RawTransactionParams
```

## Constructors

```kotlin theme={null}
constructor(contractId: String, method: String, args: Map<String, String>, memo: String? = null)
```

## Properties

| Property     | Type                  | Description |
| ------------ | --------------------- | ----------- |
| `args`       | `Map<String, String>` | -           |
| `contractId` | `String`              | -           |
| `memo`       | `String?`             | -           |
| `method`     | `String`              | -           |
