@keplr-ewallet/ewallet-sdk-cosmos
Version:
6 lines (5 loc) • 406 B
TypeScript
import type { KeplrSignOptions } from "@keplr-wallet/types";
import { type DirectSignResponse } from "@cosmjs/proto-signing";
import type { SignDoc } from "../types/sign";
import type { CosmosEWalletInterface } from "../types";
export declare function signDirect(this: CosmosEWalletInterface, chainId: string, signer: string, signDoc: SignDoc, signOptions?: KeplrSignOptions): Promise<DirectSignResponse>;