CreateV1InstructionAccounts: {
    asset: Signer;
    authority?: Signer;
    collection?: PublicKey | Pda;
    logWrapper?: PublicKey | Pda;
    owner?: PublicKey | Pda;
    payer?: Signer;
    systemProgram?: PublicKey | Pda;
    updateAuthority?: PublicKey | Pda;
}

Type declaration

  • asset: Signer

    The address of the new asset

  • Optional authority?: Signer

    The authority signing for creation

  • Optional collection?: PublicKey | Pda

    The collection to which the asset belongs

  • Optional logWrapper?: PublicKey | Pda

    The SPL Noop Program

  • Optional owner?: PublicKey | Pda

    The owner of the new asset. Defaults to the authority if not present.

  • Optional payer?: Signer

    The account paying for the storage fees

  • Optional systemProgram?: PublicKey | Pda

    The system program

  • Optional updateAuthority?: PublicKey | Pda

    The authority on the new asset

Generated using TypeDoc