Interface AppliedCreateProposalOperation

Applied operation.

interface AppliedCreateProposalOperation {
    block: number;
    op: {
        type: "create_proposal_operation";
        value: {
            creator: string;
            daily_pay: {
                amount: string;
                nai: string;
                precision: number;
            };
            end_date: string;
            extensions: any[];
            permlink: string;
            receiver: string;
            start_date: string;
            subject: 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: "create_proposal_operation";
    value: {
        creator: string;
        daily_pay: {
            amount: string;
            nai: string;
            precision: number;
        };
        end_date: string;
        extensions: any[];
        permlink: string;
        receiver: string;
        start_date: string;
        subject: string;
    };
}

Type declaration

  • type: "create_proposal_operation"
  • value: {
        creator: string;
        daily_pay: {
            amount: string;
            nai: string;
            precision: number;
        };
        end_date: string;
        extensions: any[];
        permlink: string;
        receiver: string;
        start_date: string;
        subject: string;
    }
    • creator: string
    • daily_pay: {
          amount: string;
          nai: string;
          precision: number;
      }
      • amount: string
      • nai: string
      • precision: number
    • end_date: string
    • extensions: any[]

      Extensions. Not currently used.

    • permlink: string
    • receiver: string
    • start_date: string
    • subject: string
op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number