PodCall podCall = PodCall("/*address*/");
// Number of options to mint. The decimals of the options will be the same
// as the decimals of the underlying asset.
// (E.g: If option decimals is equal to 6, 1000000 = 1 option,
// givig the seller the right to buy 1 unit of underlying)
uint256 amountOfOptions = 1000000;
* @param amountOfOptions The amount option tokens to be issued; this will lock
* same amount in a 1:1 ratio units of underlying asset into this
* @param owner The address that will store at shares. owner will
* be able to withdraw later on behalf of the sender. It is also important
* to notice that the options tokens will not be send to owner, but to the msg.sender
podCall.mint(amountOfOptions, owner);