Convex

Convex

FieldValue
Nametransfer
TitleTransfer
DescriptionTransfer CVM coins or fungible tokens to another account. Amounts in copper for CVM (1 CVM = 1,000,000,000 copper).
Input Schema
{
  "type": "object",
  "required": ["address",
               "to",
               "amount",
               "seed"],
  "properties": {
                  "to": {
                          "type": "string",
                          "description": "Destination account address (e.g. '#42')"
                        },
                  "seed": {
                            "type": "string",
                            "description": "Ed25519 seed (64 hex chars) for the origin account. SECURITY: Sent to peer — use HTTPS only."
                          },
                  "amount": {
                              "type": "number",
                              "description": "Amount to transfer (copper for CVM, token units for fungible tokens)"
                            },
                  "address": {
                               "type": "string",
                               "description": "Origin account address (e.g. '#13'). Transaction executes from this account."
                             },
                  "token": {
                             "type": "string",
                             "description": "Token actor address for fungible token transfer (e.g. '#128'). Omit or nil for native CVM coin."
                           }
                }
}
Output Schema
{
  "type": "object",
  "properties": {
                  "errorCode": {
                                 "description": "CVM error code if the transfer failed"
                               },
                  "value": {
                             "description": "Resulting CVM value from the transfer"
                           },
                  "info": {
                            "description": "Execution metadata including juice used, fees, and transaction hash"
                          }
                }
}