send
Sign and post a native-coin transfer using your own private key, supporting EVM, Solana, and Bitcoin chains.
Instructions
Sign and post a native-coin transfer with the caller's own key. EVM one-call: omit nonce/gas and they are auto-fetched + broadcast (or supply them to control the tx). Solana uses lamports; Bitcoin uses amount_btc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Recipient address. | |
| gas | No | Gas limit. | |
| chain | No | Which chain family to act on. | evm |
| nonce | No | Account nonce for this transaction. | |
| chain_id | No | EVM chain id (137 = Polygon). | |
| lamports | No | Solana: amount to send in lamports. | |
| value_wei | No | EVM: amount to send in wei. | |
| amount_btc | No | Bitcoin: amount to send in BTC. | |
| private_key | Yes | The caller's own private key. Used transiently to sign; never stored (non-custodial). | |
| max_fee_per_gas | No | EIP-1559 max fee per gas (wei). | |
| max_priority_fee_per_gas | No | EIP-1559 priority fee per gas (wei). |