curl --request POST \
--url https://api.platform.dakota.xyz/sandbox/blockchain/simulate \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"event_type": "transfer",
"tx_hash": "<string>",
"from": "<string>",
"to": "<string>",
"amount": "<string>",
"asset": "<string>",
"network": "<string>",
"confirmations": 123
}
'{
"message": "Blockchain event transfer simulated"
}Simulate blockchain events like transfers or confirmations
curl --request POST \
--url https://api.platform.dakota.xyz/sandbox/blockchain/simulate \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"event_type": "transfer",
"tx_hash": "<string>",
"from": "<string>",
"to": "<string>",
"amount": "<string>",
"asset": "<string>",
"network": "<string>",
"confirmations": 123
}
'{
"message": "Blockchain event transfer simulated"
}Type of blockchain event
transfer, confirmation Transaction hash (for confirmation events)
Source address (for transfer events)
Destination address (for transfer events)
Transfer amount
Asset being transferred
Blockchain network
Number of confirmations (for confirmation events)
Blockchain event simulated successfully
"Blockchain event transfer simulated"