View your ads
Open ProofBridge, connect your wallet, and navigate to Ads Management. The page lists all ads associated with your wallet address, sorted by creation date. Each row shows:- Ad ID: The unique identifier for the ad.
- Route: Source chain, destination chain, and token pair.
- Available balance: Tokens available for new orders.
- Locked balance: Tokens currently reserved for an in-progress order.
- Status: The current lifecycle state of the ad.
- Created: When the ad was created.
Ad statuses
| Status | Meaning |
|---|---|
| Active | The ad is funded and visible in the marketplace. Bridgers can select it. |
| Matched | A Bridger has selected the ad and created an order. Settlement is in progress. |
| Locked | A portion of the ad’s balance is locked against an active order. |
| Settled | An order against this ad has completed successfully. |
| Closed | The ad has been permanently closed. No new orders can be matched. |
Update an ad
You can adjust certain ad parameters (such as the ad recipient address) without closing and recreating the ad.Click Edit
Click Edit ad to open the update form. Fields that can be changed appear as editable inputs.
Make your changes and save
Adjust the parameters you want to update, then click Save. The frontend sends
PATCH /v1/ads/:id/update to the relayer.Some parameters — such as the source chain, destination chain, and token pair — are set at creation and cannot be changed. Create a new ad if you need a different route.
Fund an existing ad
Add more tokens to an active ad to increase the liquidity available to Bridgers.Withdraw unused funds
Withdraw tokens from your ad that are not currently locked in an active order.Open the ad detail page
Navigate to Ads Management and click the ad from which you want to withdraw.
Click Withdraw
Click Withdraw. The withdrawal form shows your current available balance (unlocked tokens only).
Enter the withdrawal amount
Enter the amount to withdraw. You can only withdraw up to the available (unlocked) balance. Locked tokens cannot be withdrawn while an order is in progress.
Confirm the transaction
Click Withdraw, then confirm the transaction in your wallet. The frontend calls
POST /v1/ads/:id/withdraw. Once the transaction is confirmed on-chain, the tokens are returned to your wallet.Close an ad
Closing an ad permanently removes it from the marketplace and withdraws all remaining unlocked funds to your wallet. This action cannot be undone.Confirm the close action
Click Confirm close. Your wallet prompts you to approve a transaction to the AdManager contract. Confirm the transaction.The frontend calls
POST /v1/ads/:id/close. The AdManager marks the ad as closed and initiates withdrawal of the full available balance to your wallet.