cURL
curl --request POST \ --url http://localhost:5935/transferTokens \ --header 'Content-Type: application/json' \ --data ' { "to": "0x1234567890abcdef1234567890abcdef12345678", "amount": "1000000000000000000" } '
{ "txHash": "0x...", "status": "success" }
Transfer LPT to another address
Recipient address
"0x1234567890abcdef1234567890abcdef12345678"
Amount of LPT to transfer (in wei)
"1000000000000000000"
Transfer successful
Transaction hash
"0x..."
Transaction status
"success"
Was this page helpful?