# token.transfer() [[Source]](https://github.com/ripple/simpleXRPL/blob/95b977b15f8950c5bc076b25165217869c0b06d3/src/verticals/token.ts#L274) Send an MPT amount to another account. ## Signature ```ts token.transfer( params: TokenTransferParams, options?: TokenWriteOptions, ): Promise ``` ## Parameters | Parameter | Type | Required | Description | | --- | --- | --- | --- | | `to` | `string` | Yes | Destination r-address. | | `amount` | `Amount` | Yes | The MPT amount to send; its asset must be an MPT (build it with `mpt()`). | The `Amount` type pairs a value with the asset it denominates: ```ts interface Amount { asset: Asset // what is being moved value: string // the quantity, as a decimal string in display units (e.g., '10.5') } ``` Build the `asset` field with one of the asset constructors: | Constructor | Description | | --- | --- | | `XRP_ASSET` | XRP | | `iou(currency, issuer)` | IOUs: `currency` is a 3-character code or 40-character hex; `issuer` is the issuer's r-address. | | `mpt(mptIssuanceId, scale?)` | MPTs: `scale` is the decimal places between the display value and on-ledger base units (default `0`). | ## Options `options` is an optional second argument that sets the source account and overrides the fee. | Option | Type | Required | Description | | --- | --- | --- | --- | | `from` | `AccountSelector` | No | The account to act as — an r-address string, or an object `{ address }` or `{ signer, account? }`. Defaults to the primary signer's primary account. (For IOU operations, this is the issuer.) | | `fee` | `FeeIntent` | No | Fee override — a priority tier and/or a `maxFeeDrops` cap. | | `idempotencyKey` | `string` | No | A prior submission's `idempotencyKey`, to retry to the same intent instead of creating a duplicate. Auto-generated when omitted. | ## Returns Resolves to a `SubmissionResult<{ to: string; amount: string }>`. Every simpleXRPL write resolves to a `SubmissionResult` — a union tagged by `source`, with the backend's raw response preserved verbatim. Its common fields are: | Field | Type | Description | | --- | --- | --- | | `intent` | `T` | The operation-specific output — see the operation's own return fields. | | `source` | `'xrpld' | 'custody' | 'palisade'` | Which backend produced the result; discriminates `response`. | | `response` | `TxResponse` | custody record | Palisade record | The backend's raw response, preserved verbatim. | | `txHash` | `string` *(optional)* | The XRPL transaction hash, once the transaction is on-ledger. | | `intentId` | `string` *(optional)* | The custodian intent id, when the path produced one. Hold onto this to resume via `client.intent`. | | `idempotencyKey` | `string` *(optional)* | The UUIDv7 this submission carried. Pass it back as a later call's `idempotencyKey` to retry to the same intent rather than creating a duplicate. | ### Return fields For `Token.transfer`, the `intent` echoes: | Field | Type | Description | | --- | --- | --- | | `to` | `string` | Destination r-address. | | `amount` | `string` | The amount sent, as a decimal string. | ## Underlying XRPL transactor Builds and submits a single [Payment](https://xrpl.org/docs/references/protocol/transactions/types/payment) transaction. Throws an `IntentValidationError` if `amount`'s asset is not an MPT — use [XRP.transfer](/docs/simplexrpl/references/verticals/xrp/transfer) for XRP. ## Example ```ts await client.token.transfer({ to: 'rHolder...', amount: { asset: mpt('005C...'), value: '100' }, }) ```