Type alias SimulatedTransactionAccountInfo

SimulatedTransactionAccountInfo: {
    data: string[];
    executable: boolean;
    lamports: number;
    owner: string;
    rentEpoch?: number;
}

Type declaration

  • data: string[]

    Optional data assigned to the account

  • executable: boolean

    true if this account's data contains a loaded program

  • lamports: number

    Number of lamports assigned to the account

  • owner: string

    Identifier of the program that owns the account

  • Optional rentEpoch?: number

    Optional rent epoch info for account

Generated using TypeDoc