Vana SDK - v0.1.0
    Preparing search index...

    Interface ContractCall<TArgs>

    Generic contract interaction parameters

    interface ContractCall<TArgs extends readonly unknown[] = readonly unknown[]> {
        method: string;
        args: TArgs;
        options?: { gasLimit?: bigint; gasPrice?: bigint; value?: bigint };
    }

    Type Parameters

    • TArgs extends readonly unknown[] = readonly unknown[]
    Index

    Properties

    Properties

    method: string

    Contract method name

    args: TArgs

    Method arguments

    options?: { gasLimit?: bigint; gasPrice?: bigint; value?: bigint }

    Call options

    Type declaration

    • OptionalgasLimit?: bigint

      Gas limit

    • OptionalgasPrice?: bigint

      Gas price

    • Optionalvalue?: bigint

      Value to send