Interface AppliedProducerRewardOperation

Applied operation.

interface AppliedProducerRewardOperation {
    block: number;
    op: {
        type: "producer_reward_operation";
        value: {
            producer: string;
            vesting_shares: {
                amount: string;
                nai: string;
                precision: number;
            };
        };
    };
    op_in_trx: number;
    timestamp: string;
    trx_id: string;
    trx_in_block: number;
    virtual_op: number;
}

Hierarchy (view full)

Properties

block: number
op: {
    type: "producer_reward_operation";
    value: {
        producer: string;
        vesting_shares: {
            amount: string;
            nai: string;
            precision: number;
        };
    };
}

Type declaration

  • type: "producer_reward_operation"
  • value: {
        producer: string;
        vesting_shares: {
            amount: string;
            nai: string;
            precision: number;
        };
    }
    • producer: string

      The witness account.

    • vesting_shares: {
          amount: string;
          nai: string;
          precision: number;
      }

      Reward in VESTS.

      • amount: string
      • nai: string
      • precision: number
op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number