Pointer to the Web3Connection assigned to this contract class
Returns the Web3Contract class representing this contract
Returns the Web3 class assigned to this connection
Function to check the amount of tokens that an owner allowed to a spender.
Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
Gets the balance of the specified address.
This also accrues interest in a transaction
Return a property value from the contract
Alias for Web3Connection.connect(); Will load contract if success
Decrease the amount of tokens that an owner allowed to a spender. approve should be called when _allowances[msg.sender][spender] == 0. To decrement allowed value is better to use this function to avoid 2 calls (and wait until the first transaction is mined) From MonolithDAO Token.sol Emits an Approval event.
Deploy the loaded abi contract
Increase the amount of tokens that an owner allowed to a spender. approve should be called when _allowances[msg.sender][spender] == 0. To increment allowed value is better to use this function to avoid 2 calls (and wait until the first transaction is mined) From MonolithDAO Token.sol Emits an Approval event.
Permissive way of initializing the contract, used primarily for deploys. Prefer to use loadContract
Preferred way of initializing and loading a contract
Accrues interest whether or not the operation succeeds, unless reverted
This is just a mock
Interact with, or change a value of, a property on the contract
Send unsigned transaction
Alias for Web3Connection.start(); Will load contract if success
This is just a mock
Total number of tokens in existence
Transfer token to a specified address
Transfer tokens from one address to another. Note that while this function emits an Approval event, this is not required as per the specification, and other compliant implementations may not emit the event.
Generated using TypeDoc
Returns the Account associated with this connection