Source chain (e.g., ethereum)
Destination chain (e.g., solana)
Amount to bridge (human-readable string)
Sender address on the source chain
Recipient address on the destination chain
Whether to use automatic relaying for the bridge transfer. Defaults to false.
curl -X POST https://secureapi.gridlog.io/api/v1/bridge/transfer \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"sourceChain": "ethereum",
"destinationChain": "solana",
"amount": "500.00",
"sourceAddress": "0xSENDER...",
"destinationAddress": "SOLANA_RECIPIENT_ADDRESS...",
"automatic": false
}'
{
"id": "bridge_123e4567...",
"sourceChain": "ethereum",
"destinationChain": "solana",
"status": "pending"
}
Origin chain of the transfer
Destination chain of the transfer
One of: pending, in_progress, completed, failed
Cross-chain bridge transfers typically take 15–30 minutes to finalize. Poll the transfer status or listen to webhooks for completion.