Hierarchy

  • MintEvent_base
    • MintEvent

Constructors

  • Parameters

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

    Returns MintEvent

Properties

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