Coda by Ian Macalinao
    Preparing search index...

    Interface DeleteReferrerStateAndShortUrlInput<TAccountReferrer, TAccountReferrerState, TAccountShortUrl, TAccountRent, TAccountSystemProgram>

    interface DeleteReferrerStateAndShortUrlInput<
        TAccountReferrer extends string = string,
        TAccountReferrerState extends string = string,
        TAccountShortUrl extends string = string,
        TAccountRent extends string = string,
        TAccountSystemProgram extends string = string,
    > {
        referrer: TransactionSigner<TAccountReferrer>;
        referrerState: Address<TAccountReferrerState>;
        rent?: Address<TAccountRent>;
        shortUrl: Address<TAccountShortUrl>;
        systemProgram?: Address<TAccountSystemProgram>;
    }

    Type Parameters

    • TAccountReferrer extends string = string
    • TAccountReferrerState extends string = string
    • TAccountShortUrl extends string = string
    • TAccountRent extends string = string
    • TAccountSystemProgram extends string = string
    Index

    Properties

    referrer: TransactionSigner<TAccountReferrer>
    referrerState: Address<TAccountReferrerState>
    rent?: Address<TAccountRent>
    shortUrl: Address<TAccountShortUrl>
    systemProgram?: Address<TAccountSystemProgram>