Hierarchy

  • BalanceChangeEvent_base
    • BalanceChangeEvent

Constructors

  • Parameters

    • value: {
          address: PublicKey;
          amount: Int64;
      }
      • address: PublicKey
      • amount: Int64

    Returns BalanceChangeEvent

Properties

address: PublicKey
amount: Int64
_isStruct
empty: (() => {
    address: PublicKey;
    amount: Int64;
})
fromFields: ((fields: any[]) => {
    address: PublicKey;
    amount: Int64;
})
fromJSON: ((x: {
    address: string;
    amount: any;
}) => {
    address: PublicKey;
    amount: Int64;
})
fromValue: ((value: {
    address: PublicKey | {
        isOdd: any;
        x: any;
    };
    amount: any;
}) => {
    address: PublicKey;
    amount: Int64;
})
toInput: ((x: {
    address: PublicKey;
    amount: Int64;
}) => {
    fields?: any[];
    packed?: [any, number][];
})
toJSON: ((x: {
    address: PublicKey;
    amount: Int64;
}) => {
    address: string;
    amount: any;
})