v1
latestOpenAPI 3.0.32026-07-26184851.6 MBSigning
Child Address Sign Transaction
Sign a raw unsigned transaction with a child address private key. The transaction must be built with the child address as the sender/payer. Supports EVM, Tron, and Solana.
post/v1/wallets/{id}/addresses/{addressId}/signing/transaction
Path parameters
idstring required
Example:YOUR_WALLET_ID
addressIdstring required
Example:ADDRESS_OR_ID
Request body
Example request
{
"transaction": "{\"to\":\"0x000000000000000000000000000000000000dEaD\",\"value\":\"0x5af3107a4000\",\"nonce\":4,\"chainId\":11155111,\"gasLimit\":\"0x5208\",\"maxFeePerGas\":\"0x59682f00\",\"maxPriorityFeePerGas\":\"0x3b9aca00\",\"type\":2}",
"reference": "eth-child-transfer-001",
"metadata": {
"source": "custom"
}
}Response
Transaction signed successfully
Example response
{
"statusCode": 200,
"message": "Transaction signed successfully",
"data": {
"id": "02f404a5-d13e-4bcf-8ad5-c5f51c04fa49",
"reference": "eth-child-transfer-001",
"senderAddress": "0x82888b11790ddC1946e1AA650E0127b2E9023233",
"recipientAddress": "0x82888b11790ddC1946e1AA650E0127b2E9023233",
"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"
}
}
}