Coda by Ian Macalinao
    Preparing search index...

    Interface DeprecatedCreateReservationListInput<TAccountReservationList, TAccountPayer, TAccountUpdateAuthority, TAccountMasterEdition, TAccountResource, TAccountMetadata, TAccountSystemProgram, TAccountRent>

    interface DeprecatedCreateReservationListInput<
        TAccountReservationList extends string = string,
        TAccountPayer extends string = string,
        TAccountUpdateAuthority extends string = string,
        TAccountMasterEdition extends string = string,
        TAccountResource extends string = string,
        TAccountMetadata extends string = string,
        TAccountSystemProgram extends string = string,
        TAccountRent extends string = string,
    > {
        masterEdition: Address<TAccountMasterEdition>;
        metadata: Address<TAccountMetadata>;
        payer: TransactionSigner<TAccountPayer>;
        rent?: Address<TAccountRent>;
        reservationList: Address<TAccountReservationList>;
        resource: Address<TAccountResource>;
        systemProgram?: Address<TAccountSystemProgram>;
        updateAuthority: TransactionSigner<TAccountUpdateAuthority>;
    }

    Type Parameters

    • TAccountReservationList extends string = string
    • TAccountPayer extends string = string
    • TAccountUpdateAuthority extends string = string
    • TAccountMasterEdition extends string = string
    • TAccountResource extends string = string
    • TAccountMetadata extends string = string
    • TAccountSystemProgram extends string = string
    • TAccountRent extends string = string
    Index

    Properties

    masterEdition: Address<TAccountMasterEdition>

    Master Edition V1 key (pda of ['metadata', program id, mint id, 'edition'])

    metadata: Address<TAccountMetadata>

    Metadata key (pda of ['metadata', program id, mint id])

    payer: TransactionSigner<TAccountPayer>

    Payer

    rent?: Address<TAccountRent>

    Rent info

    reservationList: Address<TAccountReservationList>

    PDA for ReservationList of ['metadata', program id, master edition key, 'reservation', resource-key]

    resource: Address<TAccountResource>

    A resource you wish to tie the reservation list to. This is so your later visitors who come to redeem can derive your reservation list PDA with something they can easily get at. You choose what this should be.

    systemProgram?: Address<TAccountSystemProgram>

    System program

    updateAuthority: TransactionSigner<TAccountUpdateAuthority>

    Update authority