@pwngh/economy-lab
    Preparing search index...

    Type Alias PayeeVerification

    The answer to PayeeDirectory.status. Only CLEARED admits a payout; PENDING, BLOCKED, and NONE all reject the same way, so the distinction is for operators, not the core.

    type PayeeVerification = {
        state: "CLEARED" | "PENDING" | "BLOCKED" | "NONE";
    }
    Index
    state: "CLEARED" | "PENDING" | "BLOCKED" | "NONE"