@sentio/sdk
    Preparing search index...

    Variable EthCallParam

    EthCallParam: {
        create(
            base?: {
                calldata?: string;
                context?: { address?: string; blockTag?: string; chainId?: string };
            },
        ): EthCallParam;
        decode(
            input: Uint8Array<ArrayBufferLike> | Reader,
            length?: number,
        ): EthCallParam;
        encode(message: EthCallParam, writer?: Writer): Writer;
        fromJSON(object: any): EthCallParam;
        fromPartial(
            object: {
                calldata?: string;
                context?: { address?: string; blockTag?: string; chainId?: string };
            },
        ): EthCallParam;
        toJSON(message: EthCallParam): unknown;
    }

    Type Declaration

    • create: function
      • Parameters

        • Optionalbase: {
              calldata?: string;
              context?: { address?: string; blockTag?: string; chainId?: string };
          }

        Returns EthCallParam

    • decode: function
      • Parameters

        • input: Uint8Array<ArrayBufferLike> | Reader
        • Optionallength: number

        Returns EthCallParam

    • encode: function
      • Parameters

        Returns Writer

    • fromJSON: function
      • Parameters

        • object: any

        Returns EthCallParam

    • fromPartial: function
      • Parameters

        • object: {
              calldata?: string;
              context?: { address?: string; blockTag?: string; chainId?: string };
          }

        Returns EthCallParam

    • toJSON: function
      • Parameters

        Returns unknown