Broker
Last updated
Last updated
The Broker is the entry point for interacting with the protocol. It is responsible for managing reserve assets and is the only contract with spender rights of the reserve as well as minting and burning rights over stable assets. For pricing trades, it relies on exchange providers like BiPoolManager. When executing swaps, it enforces trading limits. The Broker also exposes a burn function for burning stable tokens without being subject to trading limits or regular exchange operations.
This function calculates the expected output tokens you will receive for a given amount of input tokens. To call the function you need to pass the following:
The exchangeProvider address which is used for pricing the trade
The exchangeId (bytes32) that the exchange provider would know about
The assetIn address of the ERC20 token you want to give to the protocol
The assetOut address of the ERC20 token you want to get from the protocol
The amountIn (uint256) of assetIn that you want to pay
There is also getAmountIn
which calculates the required input tokens needed to receive a given amount of output tokens.
This function executes a swap and returns the number of output tokens that the initiator received. In order to execute the function, the initiator must give prior approval to the broker
to transfer amountIn
tokens of assetIn
from the initiator.
There is also a swapOut
function that swaps a variable amount of input tokens for a given amount of output tokens. The slippage parameter becomes maxAmountIn
, limiting how many tokens the broker can spend for a fixed output.
The getExchangeProviders
function on the broker is used to list all registered exchange providers. We then cast the first one as an IExchangeProvider interface and make use of its getExchanges
to discover the configured exchanges. We then use that to find the id of a desired exchange. This is a contrived example as the discoverability part is best done off-chain via .
The function takes in almost the same arguments as the one for with the addition of minAmountOut
that is used for slippage control by causing the function to revert if the final amountOut
doesn't meet the requirement.