Mint
function mint(uint mintAmount) returns (uint)function mint() payableErc20 underlying = Erc20(0xToken...); // get a handle for the underlying asset contract
BErc20 bToken = BErc20(0x3FDA...); // get a handle for the corresponding bToken contract
underlying.approve(address(bToken), 100); // approve the transfer
assert(bToken.mint(100) == 0); // mint the bTokens and assert there is no errorLast updated