Effects
struct Effect {
bytes32 id;
uint256 index;
bytes32 targetChain;
bytes32 ownerId;
bytes32 descriptor; // describes the type of the effect
bytes args;
bytes bounty;
EffectStatus status;
}
enum EffectStatus {
PENDING,
COMPLETED,
CANCELLED
}Last updated