import type { Block, BlockTag } from '../../types/block.js'; import type { Hash } from '../../types/misc.js'; import type { RpcBlock } from '../../types/rpc.js'; import type { OpStackRpcTransaction, OpStackTransaction } from './transaction.js'; export type OpStackBlockOverrides = { stateRoot: Hash; }; export type OpStackBlock = Block> & OpStackBlockOverrides; export type OpStackRpcBlockOverrides = { stateRoot: Hash; }; export type OpStackRpcBlock = RpcBlock> & OpStackRpcBlockOverrides; //# sourceMappingURL=block.d.ts.map