dsteem
    Preparing search index...

    Interface EscrowReleaseOperation

    This operation can be used by anyone associated with the escrow transfer to release funds if they have permission.

    The permission scheme is as follows: If there is no dispute and escrow has not expired, either party can release funds to the other. If escrow expires and there is no dispute, either party can release funds to either party. If there is a dispute regardless of expiration, the agent can release funds to either party following whichever agreement was in place between the parties.

    interface EscrowReleaseOperation {
        "0": "escrow_release";
        "1": {
            agent: string;
            escrow_id: number;
            from: string;
            receiver: string;
            sbd_amount: string | Asset;
            steem_amount: string | Asset;
            to: string;
            who: string;
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    0 1

    Properties

    "0": "escrow_release"
    "1": {
        agent: string;
        escrow_id: number;
        from: string;
        receiver: string;
        sbd_amount: string | Asset;
        steem_amount: string | Asset;
        to: string;
        who: string;
    }

    Type Declaration

    • agent: string
    • escrow_id: number
    • from: string
    • receiver: string

      The account that should receive funds (might be from, might be to).

    • sbd_amount: string | Asset

      The amount of sbd to release.

    • steem_amount: string | Asset

      The amount of steem to release.

    • to: string

      The original 'to'.

    • who: string

      The account that is attempting to release the funds, determines valid 'receiver'.