@keypo/typescript-sdk
Version:
A TypeScript SDK for using Keypo
9 lines (8 loc) • 389 B
TypeScript
import type { Account, Chain, Client, Transport } from 'viem';
import { type ProxyExecuteConfig } from "./utils/types";
export declare function proxyExecute(dataIdentifier: string, wallet: Client<Transport, Chain, Account>, request: {
method: string;
url: string;
headers?: Record<string, string>;
body?: any;
}, config: ProxyExecuteConfig, debug?: boolean): Promise<any>;