opstack-kit-chains
Version:
Support your OP-Stack network with 'opstack-kit'
11 lines • 926 B
TypeScript
import type { Client } from '../../clients/createClient.js';
import type { Transport } from '../../clients/transports/createTransport.js';
import type { Account } from '../../types/account.js';
import type { Chain } from '../../types/chain.js';
import type { ZkSyncNumberParameter } from '../types/block.js';
import type { PublicZkSyncRpcSchema } from '../types/eip1193.js';
import type { ZkSyncRawBlockTransactions } from '../types/transaction.js';
export type GetRawBlockTransactionsParameters = ZkSyncNumberParameter;
export type GetRawBlockTransactionsReturnType = ZkSyncRawBlockTransactions;
export declare function getRawBlockTransactions<chain extends Chain | undefined, account extends Account | undefined>(client: Client<Transport, chain, account, PublicZkSyncRpcSchema>, parameters: GetRawBlockTransactionsParameters): Promise<GetRawBlockTransactionsReturnType>;
//# sourceMappingURL=getRawBlockTransactions.d.ts.map