Skip to content

Withdraw

The meme bridge sends the configured platform meme ERC-20 directly from the platform hot wallet on BSC. It does not bridge to other chains or convert the asset.

  1. Call POST /withdraw with your Openfish wallet address, BSC destination, token address, and amount.
  2. The bridge debits your Openfish platform meme balance.
  3. The hot wallet sends the configured platform meme token to your BSC recipient address.
  4. Track progress with GET /status/{address}.
POST https://bridge.openfish.me/withdraw
FieldTypeRequiredDescription
addressstringYesYour Openfish wallet address
toChainIdstringYesMust be "56"
toTokenAddressstringYesConfigured platform meme token address
recipientAddrstringYesRecipient BSC wallet address
amountstringNoAmount in base units. Omit or set "all" to withdraw full available balance minus fee.
Terminal window
curl -X POST https://bridge.openfish.me/withdraw \
-H "Content-Type: application/json" \
-d '{
"address": "0xabc0000000000000000000000000000000000000",
"toChainId": "56",
"toTokenAddress": "0xaE71fd8baCc2f17C43a01C3F4aFF6dEEbc194444",
"recipientAddr": "0xdef0000000000000000000000000000000000000",
"amount": "1000000000000000000"
}'
  • Withdrawals require the bridge hot wallet to hold enough platform meme and BNB gas.
  • The bridge only supports BSC in this environment.
  • The token address must match GET /supported-assets.
  • Withdrawal fee, if configured, is denominated in platform meme base units.