@hypernetlabs/gateway-connector
Version:
Package that defines how to write a Hypernet Gateway.
7 lines • 308 B
TypeScript
import { ActiveStateChannel, ChainId, PublicIdentifier } from "@hypernetlabs/objects";
export interface IStateChannelRequest {
chainId: ChainId;
routerPublicIdentifiers: PublicIdentifier[];
callback: (stateChannel: ActiveStateChannel) => void;
}
//# sourceMappingURL=IStateChannelRequest.d.ts.map