UNPKG

@hyperlane-xyz/sdk

Version:

The official SDK for the Hyperlane Network

7 lines 366 B
import { Address, ProtocolType } from '@hyperlane-xyz/utils'; import { ProtocolTypedTransaction } from '../providers/ProviderType.js'; export interface IMultiProtocolSigner<TProtocol extends ProtocolType> { address(): Promise<Address>; sendAndConfirmTransaction(tx: ProtocolTypedTransaction<TProtocol>): Promise<string>; } //# sourceMappingURL=types.d.ts.map