@sentio/sdk
    Preparing search index...

    Variable ContractInfo

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

    Type Declaration

    • create: function
      • Parameters

        • Optionalbase: { abi?: string; address?: string; chainId?: string; name?: string }

        Returns ContractInfo

    • decode: function
      • Parameters

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

        Returns ContractInfo

    • encode: function
      • Parameters

        Returns Writer

    • fromJSON: function
      • Parameters

        • object: any

        Returns ContractInfo

    • fromPartial: function
      • Parameters

        • object: { abi?: string; address?: string; chainId?: string; name?: string }

        Returns ContractInfo

    • toJSON: function
      • Parameters

        Returns unknown