# SerializedActionSendToAddress

Serialized action requiring the user to send funds to a Bitcoin address or Lightning invoice.

**type**stringrequired

**Possible values:** \[`SendToAddress`]

**name**stringrequired

**Possible values:** \[`Deposit on Lightning`, `Deposit on Bitcoin`]

**description**stringrequired

**chain**stringrequired

**Possible values:** \[`LIGHTNING`, `BITCOIN`]

**txs** <!-- -->object\[]required

* Array \[

**type**stringrequired

**Possible values:** \[`BOLT11_PAYMENT_REQUEST`, `BITCOIN_ADDRESS`]

**address**stringrequired

**hyperlink**stringrequired

**amount** <!-- -->objectrequired

Unified amount type for all API responses.

**amount**decimalrequired

Decimal format of the amount, e.g. `1.5`.

**rawAmount**bigintrequired

Raw base units as string, e.g. `1500000000000000000`.

**Possible values:** Value must match regular expression `^[+-]?\d+$`

**Example:<!-- -->&#x20;**`1500000000000000000`

**decimals**integerrequired

Token decimals, e.g. `18`.

**symbol**stringrequired

Token ticker, e.g. `STRK`.

**chain**stringrequired

Chain identifier, e.g. `STARKNET`, `BITCOIN`, `LIGHTNING`.

* ]

SerializedActionSendToAddress

```
{

  "type": "SendToAddress",

  "name": "Deposit on Lightning",

  "description": "string",

  "chain": "LIGHTNING",

  "txs": [

    {

      "type": "BOLT11_PAYMENT_REQUEST",

      "address": "string",

      "hyperlink": "string",

      "amount": {

        "amount": "string",

        "rawAmount": "1500000000000000000",

        "decimals": 0,

        "symbol": "string",

        "chain": "string"

      }

    }

  ]

}
```
