Coda by Ian Macalinao
    Preparing search index...

    Interface CreateGovernorInput<TAccountBase, TAccountGovernor, TAccountSmartWallet, TAccountPayer, TAccountSystemProgram>

    interface 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: number;
        electorate: Address;
        governor: Address<TAccountGovernor>;
        params: GovernanceParametersArgs;
        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

    Properties

    base: TransactionSigner<TAccountBase>
    bump: number
    electorate: Address
    governor: Address<TAccountGovernor>
    payer: TransactionSigner<TAccountPayer>
    smartWallet: Address<TAccountSmartWallet>
    systemProgram?: Address<TAccountSystemProgram>