> For the complete documentation index, see [llms.txt](https://docs.altura.com/altura-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.altura.com/altura-documentation/js-sdk-reference/altura-guard-ii/transaction-requests/submitting-a-native-transaction-request.md).

# Submitting a native transaction request

### Usage in your script

{% tabs %}
{% tab title="JavaScript" %}

```javascript
const sendNativeToken = await alturaGuard.sendNativeToken(AMOUNT,CHAIN_ID,RECIVER);
```

{% endtab %}

{% tab title="TypeScript" %}

```typescript
const sendNativeToken:any = await alturaGuard.sendContractTransaction(AMOUNT,CHAIN_ID,RECIVER);
```

{% endtab %}
{% endtabs %}

### **Parameters**

<table><thead><tr><th width="193.33333333333331">Parameter</th><th width="99">Type</th><th width="109">Required</th><th>Description</th></tr></thead><tbody><tr><td><code>AMOUNT</code></td><td><strong>String</strong></td><td><strong>Yes</strong></td><td>Amount of token in wei</td></tr><tr><td><code>CHAIN_ID</code></td><td><strong>Number</strong></td><td><strong>Yes</strong></td><td>EVM Chain Indentifier</td></tr><tr><td><code>RECIVER</code></td><td><strong>String</strong></td><td><strong>Yes</strong></td><td>Wallet address of the receiver</td></tr></tbody></table>
