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.
How It Works
Section titled “How It Works”- Call
POST /withdrawwith your Openfish wallet address, BSC destination, token address, and amount. - The bridge debits your Openfish platform meme balance.
- The hot wallet sends the configured platform meme token to your BSC recipient address.
- Track progress with
GET /status/{address}.
Endpoint
Section titled “Endpoint”POST https://bridge.openfish.me/withdrawRequest Body
Section titled “Request Body”| Field | Type | Required | Description |
|---|---|---|---|
address | string | Yes | Your Openfish wallet address |
toChainId | string | Yes | Must be "56" |
toTokenAddress | string | Yes | Configured platform meme token address |
recipientAddr | string | Yes | Recipient BSC wallet address |
amount | string | No | Amount in base units. Omit or set "all" to withdraw full available balance minus fee. |
Example
Section titled “Example”curl -X POST https://bridge.openfish.me/withdraw \ -H "Content-Type: application/json" \ -d '{ "address": "0xabc0000000000000000000000000000000000000", "toChainId": "56", "toTokenAddress": "0xaE71fd8baCc2f17C43a01C3F4aFF6dEEbc194444", "recipientAddr": "0xdef0000000000000000000000000000000000000", "amount": "1000000000000000000" }'Important Notes
Section titled “Important Notes”- 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.
Next Steps
Section titled “Next Steps”- Supported Assets — Confirm the token address.
- Check Status — Track withdrawal progress.