Hierarchy

  • BurnEvent_base
    • BurnEvent

Constructors

  • Parameters

    • value: {
          amount: UInt64;
          from: PublicKey;
      }
      • amount: UInt64
      • from: PublicKey

    Returns BurnEvent

Properties

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