This endpoint generates an unsigned transaction for transferring tokens between wallets. It is designed specifically for transferring ENSC tokens only. The service validates both the sender and recipient addresses, confirms that the asset type is ENSC. It also checks that the sender has sufficient token balance and allowance (pass the sender parameter to approve the token allowance).
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <api_key>
Body
Name
Type
Description
from
string
The wallet address that holds the tokens (sender).
// ENSC has 18 decimals, requiredBalance is 5 and currentBalance is 3
{
"status": 400,
"error": "Insufficient Balance",
"message": "Sender does not have enough ENSC balance",
"details": {
"requiredBalance": "5000000000000000000",
"currentBalance": "3000000000000000000"
}
}
{
"status": 400,
"error": "Insufficient Allowance",
"message": "Sender has not approved enough tokens for transfer",
"details": {
"requiredAllowance": "5000000000000000000",
"currentAllowance": "2000000000000000000"
}
}