Interface AppliedCommentOptionsOperation

Applied operation.

interface AppliedCommentOptionsOperation {
    block: number;
    op: {
        type: "comment_options_operation";
        value: {
            allow_curation_rewards: boolean;
            allow_votes: boolean;
            author: string;
            extensions: [number, {
                beneficiaries: BeneficiaryRoute[];
            } | {
                percent_blurt: number;
            }][];
            max_accepted_payout: {
                amount: string;
                nai: string;
                precision: number;
            };
            permlink: string;
        };
    };
    op_in_trx: number;
    timestamp: string;
    trx_id: string;
    trx_in_block: number;
    virtual_op: number;
}

Hierarchy (view full)

Properties

block: number
op: {
    type: "comment_options_operation";
    value: {
        allow_curation_rewards: boolean;
        allow_votes: boolean;
        author: string;
        extensions: [number, {
            beneficiaries: BeneficiaryRoute[];
        } | {
            percent_blurt: number;
        }][];
        max_accepted_payout: {
            amount: string;
            nai: string;
            precision: number;
        };
        permlink: string;
    };
}

Type declaration

  • type: "comment_options_operation"
  • value: {
        allow_curation_rewards: boolean;
        allow_votes: boolean;
        author: string;
        extensions: [number, {
            beneficiaries: BeneficiaryRoute[];
        } | {
            percent_blurt: number;
        }][];
        max_accepted_payout: {
            amount: string;
            nai: string;
            precision: number;
        };
        permlink: string;
    }
    • 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: {
          amount: string;
          nai: string;
          precision: number;
      }

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

      • amount: string
      • nai: string
      • precision: number
    • permlink: string

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

op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number