POST
/
lat
/
{address}
/
simulate-deposit
Simulate a LAT deposit transaction
curl --request POST \
  --url https://api.area.club/lat/{address}/simulate-deposit \
  --header 'Content-Type: application/json' \
  --data '{
  "sender": "<string>",
  "assets": [
    "<string>"
  ],
  "amounts": [
    "<string>"
  ],
  "receiver": "<string>"
}'
{
  "success": true,
  "amounts": [
    1070792079207920800,
    1122772277227722800
  ],
  "fees": {
    "gas": {
      "gasLimit": "210000",
      "gasPrice": "25000000000",
      "gasFee": "5250000000000000"
    },
    "area": {
      "managementFee": 0,
      "performanceFee": 0
    }
  }
}

Path Parameters

address
string
required

LAT contract address (proxy)

Example:

"0x94a2a0548681fda8d5e2ad5a8eeecd891e02a613"

Body

application/json

Response

200
application/json

Successful deposit simulation result

The response is of type object.