function getBalance(address _acct) returns(uint balance)
function incBalance(address _acct, uint _val) onlyModule returns(bool success)
function decBalance(address _acct, uint _val) onlyModule returns(bool success)
owner
.function getAllowance(address _owner, address _spender) returns(uint remaining)
_spender
to spend from _sender's account. When the function is called it over writes the current allowance with
_value`.function setApprove(address _sender, address _spender, uint256 _value) onlyModule returns(bool success)
_value
.function decApprove(address _from, address _spender, uint _value) onlyModule returns(bool success)
_acct
is active or not.function getModule(address _acct) returns (bool success)
_acct
to true or false.function setModule(address _acct, bool _set) onlyRoot returns(bool success)
function getTotalSupply() returns(uint)
function incTotalSupply(uint _val) onlyModule returns(bool success)
function decTotalSupply(uint _val) onlyModule returns(bool success)
function transferRoot(address _new) onlyRoot returns(bool success)
event BalanceAdj(address indexed Module, address indexed Account, uint Amount, string Polarity);
event ModuleSet(address indexed Module, bool indexed Set);