Interface EscrowApproveOperation

The agent and to accounts must approve an escrow transaction for it to be valid on the blockchain. Once a part approves the escrow, the cannot revoke their approval. Subsequent escrow approve operations, regardless of the approval, will be rejected.

interface EscrowApproveOperation {
    0: "escrow_approve";
    1: {
        agent: string;
        approve: boolean;
        escrow_id: number;
        from: string;
        to: string;
        who: string;
    };
}

Hierarchy (view full)

Properties

0 1

Properties

0
1: {
    agent: string;
    approve: boolean;
    escrow_id: number;
    from: string;
    to: string;
    who: string;
}

Type declaration

  • agent: string
  • approve: boolean
  • escrow_id: number
  • from: string
  • to: string
  • who: string

    Either to or agent.