Stablecoin Debt Auction Bid Tool
Free to download on every platform. Comes pre-installed on BotFone, BotPad and BotFlip — with extra free apps included.
About this app
WHAT IT DOES
Stablecoin Debt Auction Bid Tool enables users to place bids in debt auctions where the protocol sells collateral tokens to cover bad debt. The tool reads your connected wallet address, debt auction contract address, debt token address, auction lot amount, current bid amount, minimum bid increment, auction end time, current block timestamp, bidder eligibility, collateral token address, and token decimals. It displays the full auction context including the lot size, current bid, minimum increment, end time, and your eligibility before you bid. If you are eligible and the auction is active, the tool allows you to place a bid in debt tokens to acquire the collateral being auctioned.
HOW TO USE
Connect your wallet and select your network. Enter the debt auction contract address, debt token address, and collateral token address. Specify your bid amount in debt tokens. Click "Fetch auction status" to load the current auction details including the lot amount, current bid, minimum bid increment, auction end time, and whether you are eligible to bid. If you are eligible and the auction is active, review the current bid and your bid amount. Click "Place bid" to submit your bid. If your bid is successful and is the highest when the auction ends, you will receive the collateral tokens.
THE REAL MECHANISM — DEBT AUCTION BIDDING WITH ELIGIBILITY VERIFICATION
Unlike standard auctions where anyone can bid, debt auctions often restrict participation to certain addresses to ensure the protocol's debt is properly managed. The getAuctionInfo function returns the lot amount, current bid, minimum bid increment, end time, debt token address, and collateral token address. The canBid function checks whether a specific address is eligible to bid, which may depend on whether the user holds a governance token or has completed KYC. The bid function accepts a bid amount and verifies that the bid is higher than the current bid plus the minimum increment, that the auction has not ended, and that the bidder is eligible. The highest bidder at the end of the auction wins the collateral tokens. All arithmetic uses ethers.js BigNumber with the token's decimal precision, and gas costs are reported using receipt.effectiveGasPrice.
WHAT IT CANNOT SEE
Cannot predict auction clearing price—the tool cannot forecast the final winning bid. It cannot ensure profitable bid—the tool cannot guarantee that the collateral tokens will be worth more than the bid amount. It cannot detect if the auction contract contains vulnerabilities—the tool does not audit the auction logic. It cannot verify off-chain collateral valuation accuracy—the tool relies on the protocol's valuation and cannot verify oracle prices. It cannot recover funds if a bid is placed and the auction results in a loss.
PLEASE NOTE — EVM CHAINS ONLY
This tool exclusively supports EVM-compatible chains where ethers.js can connect via standard JSON-RPC. It does not support non-EVM chains such as Solana, Tron, Starknet, SUI, TON, Aptos, Bitcoin, Cosmos, or XRP. The auction contract must implement the specific interface expected by this tool (getAuctionInfo, canBid, bid). Always review the auction details and current bid before bidding. This tool is a bidding interface, not a financial advisor or investment strategist.