data class Transfer(val id: String, val type: TransferType, val fromAddress: String, val toAddress: String, val txHash: String, val tokenSymbol: String?, val amount: String, val timestamp: Long)
Constructors
constructor(id: String, type: TransferType, fromAddress: String, toAddress: String, txHash: String, tokenSymbol: String?, amount: String, timestamp: Long)
Properties
| Property | Type | Description |
|---|---|---|
amount | String | Human-readable transfer amount |
fromAddress | String | - |
id | String | The transfer identifier |
timestamp | Long | Unix epoch milliseconds when the transfer occurred |
toAddress | String | - |
tokenSymbol | String? | Symbol of the token transferred, or null if unknown |
txHash | String | On-chain transaction hash |
type | TransferType | - |

