v1

latestOpenAPI 3.0.32026-07-26184851.6 MB
Signing

Master Wallet Sign Transaction

Sign a raw unsigned transaction with the master wallet's private key. Supports EVM (JSON string), Tron (JSON string), and Solana (base64 VersionedTransaction).

post/v1/wallets/{id}/signing/transaction

Path parameters

idstring required
Example:YOUR_WALLET_ID

Request body

transactionstring required

The serialized unsigned transaction. Base64 for Solana, JSON string for EVM and Tron.

referencestring

Your internal tracking ID.

metadataobject

Custom key-value pairs stored with the transaction record.

Example request

{
  "transaction": "{\"to\":\"0x000000000000000000000000000000000000dEaD\",\"value\":\"0x5af3107a4000\",\"nonce\":4,\"chainId\":11155111,\"gasLimit\":\"0x5208\",\"maxFeePerGas\":\"0x59682f00\",\"maxPriorityFeePerGas\":\"0x3b9aca00\",\"type\":2}",
  "reference": "eth-transfer-001",
  "metadata": {
    "source": "jupiter",
    "pair": "SOL/USDC"
  }
}

Response

Transaction signed successfully

statusCodenumber
messagestring

Example response

{
  "statusCode": 200,
  "message": "Transaction signed successfully",
  "data": {
    "id": "782942da-48b0-416b-924b-8f657ae637a7",
    "reference": "eth-transfer-001",
    "senderAddress": "0xC887a3Cb8E7AbA4A77D7275AD4B242f71cbd5446",
    "recipientAddress": "0xC887a3Cb8E7AbA4A77D7275AD4B242f71cbd5446",
    "hash": "0xac4c73ca084608ac6b981e54db948dc80c15b4ea3ffd0c9f5781f3af7ad6fe51",
    "confirmed": true,
    "status": "SUCCESS",
    "type": "SIGNED",
    "createdChannel": "api",
    "reason": "Transaction signed",
    "network": "testnet",
    "chainId": 11155111,
    "signedTransaction": "0x02f87383aa36a763843b9aca008459682f0082520894000000000000000000000000000000000000dead865af3107a400080c080a0b760...",
    "amountUSD": "0.00",
    "currency": "USD",
    "createdAt": "2026-03-19T13:34:24.937Z",
    "updatedAt": "2026-03-19T13:34:24.937Z",
    "wallet": {
      "id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
      "name": "Ethereum Wallet",
      "address": "0xC887a3Cb8E7AbA4A77D7275AD4B242f71cbd5446",
      "isActive": true,
      "status": "ACTIVE",
      "network": "testnet"
    },
    "blockchain": {
      "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
      "name": "ethereum",
      "symbol": "eth",
      "slug": "ethereum",
      "isEvmCompatible": true,
      "tokenStandard": "ERC20"
    }
  }
}