@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
10 lines • 426 B
TypeScript
import { EthereumAccountAddress } from "./EthereumAccountAddress";
import { GatewayUrl } from "./GatewayUrl";
import { Signature } from "./Signature";
export declare class GatewayRegistrationInfo {
url: GatewayUrl;
address: EthereumAccountAddress;
signature: Signature;
constructor(url: GatewayUrl, address: EthereumAccountAddress, signature: Signature);
}
//# sourceMappingURL=GatewayRegistrationInfo.d.ts.map