Skip to content

Bridge Status

GET https://bridge.openfish.me/status/{address}

The {address} parameter can be either a generated BSC deposit address or an Openfish wallet address.

Terminal window
curl https://bridge.openfish.me/status/0x23566f8b2E82aDfCf01846E54899d110e97AC053
{
"deposits": [
{
"fromChainId": "56",
"fromTokenAddress": "0xaE71fd8baCc2f17C43a01C3F4aFF6dEEbc194444",
"fromAmountBaseUnit": "1000000000000000000",
"toChainId": "56",
"toTokenAddress": "0xaE71fd8baCc2f17C43a01C3F4aFF6dEEbc194444",
"status": "CREDITED",
"txHash": "0xabc123...",
"createdTimeMs": 1770000000000
}
],
"withdrawals": [
{
"toChainId": "56",
"toTokenAddress": "0xaE71fd8baCc2f17C43a01C3F4aFF6dEEbc194444",
"recipientAddr": "0xdef...",
"status": "COMPLETED",
"txHash": "0x456...",
"amountBaseUnit": "1000000000000000000",
"feeBaseUnit": "0",
"createdTimeMs": 1770000000000
}
]
}

An empty response means no matching deposit or withdrawal records have been found.

{
"deposits": [],
"withdrawals": []
}
  • Poll every 10-30 seconds after sending a deposit or creating a withdrawal.
  • Deposits are credited after the BSC monitor detects the token balance change.
  • Withdrawals complete after the hot wallet transaction is submitted and confirmed.