Wallet Operation
Send Transaction

Send Transaction

API Documentation: Send Transaction

Overview

This API endpoint allows users to send transaction using their MPC wallet.

  • HTTP Method: POST
  • Endpoint: /api/v1/wallet/send-transaction

Request Body Parameters

  • secret (optional): Secret from the end-user device, created when creating/importing the wallet.
  • network (required if chainId empty): The network used for transactions.
  • chainId (required if network empty): The chain ID of the network used for transactions.
  • transaction (required): Raw transaction data user want to send.

Example Request Body

{
    "secret": YOUR_SECRET,
    "network": "ethereum",
    "chainId": "1",
    "transaction": {
        "from": "0x5B3A69CD0984c8621c75c54aa4dCA89e382523A9",
        "to": "0x5B3A69CD0984c8621c75c54aa4dCA89e382523A9",
        "data": "0x",
        "nonce": "0x00",
        "gasPrice": "0x1cb3fa334b",
        "gasLimit": "0x5208",
        "value": "0x00"
    }
}

Request

Request Headers

  • Authorization (required): JWT token which was generated when user login and do not have an MPC wallet.
  • x-client-secret (required): Client secret which was generated when register in Xellar MPC API Service Dashboard.

Example Request Syntax

curl -X POST -H "Content-Type: application/json" -H "x-client-secret: $YOUR_CLIENT_SECRET" -H "Authorization: Bearer $YOUR_ACCESS_TOKEN" -d '{
    "secret": "'$YOUR_SECRET'",
    "network": "ethereum",
    "chainId": "1",
    "transaction": {
        "from":"0x5B3A69CD0984c8621c75c54aa4dCA89e382523A9",
        "to":"0x5B3A69CD0984c8621c75c54aa4dCA89e382523A9",
        "data":"0x",
        "nonce":"0x00",
        "gasPrice":"0x1cb3fa334b",
        "gasLimit":"0x5208",
        "value":"0x00"
    }
}' https://mpc.xellar.co/api/v1/wallet/send-transaction

Response

The response will include a JSON object with the following properties:

  • status (number): The HTTP status code of the response (e.g., 200 for success).
  • message (string): A message providing additional information about the operation.
  • data (object): An object containing the transaction receipt data.

Example Response

{
    "status": 200,
    "message": "Send Transaction is processing",
    "data": {
        "txReceipt": {
            "_type": "TransactionReceipt",
            "accessList": null,
            "blockNumber": null,
            "blockHash": null,
            "chainId": "1",
            "data": "0x",
            "from": "0x5B3A69CD0984c8621c75c54aa4dCA89e382523A9",
            "gasLimit": "21000",
            "gasPrice": "123278603083",
            "hash": "0x94cb07276ea513abde5d9c8f1bca1986822e9ed176190dd91d29a5c99ed62075",
            "maxFeePerGas": null,
            "maxPriorityFeePerGas": null,
            "nonce": 4,
            "signature": {
                "_type": "signature",
                "networkV": "230",
                "r": "0x862636e954a2f904290499eb206a0b959f2aa6383c4ed66427b057db791fc047",
                "s": "0x674f31a31e935265964d450d070de48a41d914194ff37aa3f22a98c2c2a31ec1",
                "v": 28
            },
            "to": "0x5B3A69CD0984c8621c75c54aa4dCA89e382523A9",
            "type": 0,
            "value": "0"
        }
    }
}