Send the client's assets
Sends a token the client holds to another address. This endpoint builds, signs, and submits a transaction to an RPC gateway.
Important: A 200 response only confirms that the transaction was received by the RPC gateway — it does not mean the transaction is confirmed on-chain.
Documentation Index
Fetch the complete documentation index at: https://docs.portalhq.io/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Client API Key or Client Session Token
Headers
A caller-provided key used for safe retries. Behavior depends on the endpoint:
POST /v1/presign/{curve}withmanaged: true— retrying a completed request with the same key returns the same{id, expiresAt}(200). If the original attempt is still in progress, the retry returns 409 with aRetry-Afterheader; if the original attempt failed before completing, it returns 409 withoutRetry-After(caller should retry with a new key). Reusing a key after the wallet's signing share has changed (for example, after a reshare or recovery) returns 422.POST /v1/sign— only honored for broadcast methods (for exampleeth_sendTransaction,sol_signAndSendTransaction). Supplying the header with a non-broadcast method returns 400. For broadcast methods, retrying a completed request returns 409 (IDEMPOTENT_REQUEST_ALREADY_COMPLETED), and reuse with a different payload returns 422. On 409, the response body does not include the original signing result — the header prevents double-execution, it does not replay the prior response.POST /v1/assets/send— retrying a completed request returns 409 (IDEMPOTENT_REQUEST_ALREADY_COMPLETED), and reuse with a different payload returns 422. On 409, the response body does not include the originaltransactionHash— the header prevents double-submission, it does not replay the prior response.
Client-stored presignature creation does not currently honor this header.
Body
Request body for sending assets.
The MPC share for the relevant curve.
The blockchain network. Accepts a CAIP-2 chain ID or a friendly name
such as ethereum, solana, polygon, base, sepolia, etc.
The recipient's address.
Token contract address (ERC-20), mint address (SPL), or a shorthand
like NATIVE, USDC, or USDT.
The amount of tokens to send (e.g. "0.1" is 0.1 of the token).
The RPC node provider URL that the transaction will be submitted through. Not required for Solana or Solana Devnet.
Hex string of the nonce to set on the transaction (e.g. "0x01").
Must include the 0x prefix and a leading zero for single digits.
Optional metadata string for the transaction.
Set to false to opt out of gas sponsorship for Account Abstraction
clients. Defaults to true when omitted.
The data value from a client-stored presign response. Omit for standard
(non-presigned) signing. Mutually exclusive with presignatureId.
The id value from a Portal-managed presign response. Omit for standard
(non-presigned) signing. Mutually exclusive with presignature.