Interface PoolActionVerification<Identity, State, Evidence>

interface PoolActionVerification<Identity, State, Evidence> {
    verified: boolean;
    outcome: PoolActionOutcome;
    blockNumber: bigint;
    identity: Identity;
    state: null | State;
    evidence: Evidence;
    warnings: readonly string[];
}

Type Parameters

  • Identity
  • State
  • Evidence

Properties

verified: boolean
blockNumber: bigint
identity: Identity
state: null | State
evidence: Evidence
warnings: readonly string[]