Coda by Ian Macalinao
    Preparing search index...

    Type Alias CreateGovernorInput<TAccountBase, TAccountGovernor, TAccountSmartWallet, TAccountPayer, TAccountSystemProgram>

    type CreateGovernorInput<
        TAccountBase extends string = string,
        TAccountGovernor extends string = string,
        TAccountSmartWallet extends string = string,
        TAccountPayer extends string = string,
        TAccountSystemProgram extends string = string,
    > = {
        base: TransactionSigner<TAccountBase>;
        bump: CreateGovernorInstructionDataArgs["bump"];
        electorate: CreateGovernorInstructionDataArgs["electorate"];
        governor: Address<TAccountGovernor>;
        params: CreateGovernorInstructionDataArgs["params"];
        payer: TransactionSigner<TAccountPayer>;
        smartWallet: Address<TAccountSmartWallet>;
        systemProgram?: Address<TAccountSystemProgram>;
    }

    Type Parameters

    • TAccountBase extends string = string
    • TAccountGovernor extends string = string
    • TAccountSmartWallet extends string = string
    • TAccountPayer extends string = string
    • TAccountSystemProgram extends string = string
    Index
    base: TransactionSigner<TAccountBase>
    governor: Address<TAccountGovernor>
    payer: TransactionSigner<TAccountPayer>
    smartWallet: Address<TAccountSmartWallet>
    systemProgram?: Address<TAccountSystemProgram>