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