Coda by Ian Macalinao
    Preparing search index...

    Interface ClawbackInput<TAccountRegistrar, TAccountRealmAuthority, TAccountVoter, TAccountVault, TAccountDestination, TAccountTokenProgram>

    interface ClawbackInput<
        TAccountRegistrar extends string = string,
        TAccountRealmAuthority extends string = string,
        TAccountVoter extends string = string,
        TAccountVault extends string = string,
        TAccountDestination extends string = string,
        TAccountTokenProgram extends string = string,
    > {
        depositEntryIndex: number;
        destination: Address<TAccountDestination>;
        realmAuthority: TransactionSigner<TAccountRealmAuthority>;
        registrar: Address<TAccountRegistrar>;
        tokenProgram?: Address<TAccountTokenProgram>;
        vault: Address<TAccountVault>;
        voter: Address<TAccountVoter>;
    }

    Type Parameters

    • TAccountRegistrar extends string = string
    • TAccountRealmAuthority extends string = string
    • TAccountVoter extends string = string
    • TAccountVault extends string = string
    • TAccountDestination extends string = string
    • TAccountTokenProgram extends string = string
    Index

    Properties

    depositEntryIndex: number
    destination: Address<TAccountDestination>
    realmAuthority: TransactionSigner<TAccountRealmAuthority>
    registrar: Address<TAccountRegistrar>
    tokenProgram?: Address<TAccountTokenProgram>
    vault: Address<TAccountVault>
    voter: Address<TAccountVoter>