Expand description
Module containing a contract’s types and functions.
library TaskManager {
struct Task { uint32 taskCreatedBlock; uint32 quorumThresholdPercentage; bytes message; bytes quorumNumbers; }
struct TaskResponse { uint32 referenceTaskIndex; bytes message; }
struct TaskResponseMetadata { uint32 taskResponsedBlock; bytes32 hashOfNonSigners; }
}Structs§
Functions§
- new
- Creates a new wrapper around an on-chain
TaskManagercontract instance.