InputValue<T>:
    | Primitive
    | BN
    | Option<T>
    | BytesLike
    | InputValue[]
    | {
        [key: string]: InputValue;
    }
    | Record<string, Primitive | BytesLike>

The type of value you can provide to Coder.encode

Type Parameters

  • T = void