Coda by Ian Macalinao
    Preparing search index...

    Interface UpdateFarmConfigInput<TAccountSigner, TAccountFarmState, TAccountScopePrices>

    interface UpdateFarmConfigInput<
        TAccountSigner extends string = string,
        TAccountFarmState extends string = string,
        TAccountScopePrices extends string = string,
    > {
        data: ReadonlyUint8Array;
        farmState: Address<TAccountFarmState>;
        mode: number;
        scopePrices?: Address<TAccountScopePrices>;
        signer: TransactionSigner<TAccountSigner>;
    }

    Type Parameters

    • TAccountSigner extends string = string
    • TAccountFarmState extends string = string
    • TAccountScopePrices extends string = string
    Index

    Properties

    data: ReadonlyUint8Array
    farmState: Address<TAccountFarmState>
    mode: number
    scopePrices?: Address<TAccountScopePrices>
    signer: TransactionSigner<TAccountSigner>