Interface CommentOptionsOperation

Generic operation.

interface CommentOptionsOperation {
    0: "comment_options";
    1: {
        allow_curation_rewards: boolean;
        allow_votes: boolean;
        author: string;
        extensions: [number, {
            beneficiaries: BeneficiaryRoute[];
        } | {
            percent_blurt: number;
        }][];
        max_accepted_payout: string | Asset;
        permlink: string;
    };
}

Hierarchy (view full)

Properties

0 1

Properties

0
1: {
    allow_curation_rewards: boolean;
    allow_votes: boolean;
    author: string;
    extensions: [number, {
        beneficiaries: BeneficiaryRoute[];
    } | {
        percent_blurt: number;
    }][];
    max_accepted_payout: string | Asset;
    permlink: string;
}

Type declaration

  • allow_curation_rewards: boolean

    Whether to allow post to recieve curation rewards. If false rewards return to reward fund.

  • allow_votes: boolean

    Whether to allow post to receive votes.

  • author: string

    author of the post/comment being submitted (account name).

  • extensions: [number, {
        beneficiaries: BeneficiaryRoute[];
    } | {
        percent_blurt: number;
    }][]
  • max_accepted_payout: string | Asset

    the maximum payout this post will receive. asset( 1000000000, BLURT_SYMBOL )

  • permlink: string

    human readable title of the post being submitted, this is often blank when commenting.