UNPKG

@solsdk/jito-ts

Version:

## What is it and why do you need it?

6 lines (5 loc) 442 B
import { Connection, Keypair } from '@solana/web3.js'; import { SearcherClient, SearcherClientError } from '../../sdk/block-engine/searcher'; import { Result } from '../../sdk/block-engine/utils'; export declare const sendBundles: (c: SearcherClient, bundleTransactionLimit: number, keypair: Keypair, conn: Connection) => Promise<Result<string[], SearcherClientError>>; export declare const onBundleResult: (c: SearcherClient) => () => void;