export type InjectorParams = string;
export type TxHash = string;
export interface Injector {
    inject(signedOperationBytes: InjectorParams): Promise<TxHash>;
}
