Skip to main content
POST
/
transferTokens
Transfer LPT tokens
curl --request POST \
  --url http://localhost:5935/transferTokens \
  --header 'Content-Type: application/json' \
  --data '
{
  "to": "0x1234567890abcdef1234567890abcdef12345678",
  "amount": "1000000000000000000"
}
'
{
  "txHash": "0x...",
  "status": "success"
}
This page is still cooking...
Expect big things soon!

Body

application/json
to
string
required

Recipient address

Example:

"0x1234567890abcdef1234567890abcdef12345678"

amount
string
required

Amount of LPT to transfer (in wei)

Example:

"1000000000000000000"

Response

200 - application/json

Transfer successful

txHash
string

Transaction hash

Example:

"0x..."

status
string

Transaction status

Example:

"success"

Last modified on January 13, 2026