2023-08-31 07:49:01 +00:00
|
|
|
import { S5Node } from "#node.js";
|
2023-08-31 08:15:50 +00:00
|
|
|
import type { SignedRegistryEntry } from "#service/registry.js";
|
2023-08-31 11:22:16 +00:00
|
|
|
import { ed25519 } from "@noble/curves/ed25519";
|
|
|
|
import KeyPairEd25519 from "#ed25519.js";
|
2023-08-31 15:02:17 +00:00
|
|
|
import { S5NodeConfig } from "./types.js";
|
2023-08-31 15:10:15 +00:00
|
|
|
import NodeId from "#nodeId.js";
|
2023-08-31 07:49:01 +00:00
|
|
|
|
2023-08-31 06:37:32 +00:00
|
|
|
export * from "./types.js";
|
2023-08-31 09:04:33 +00:00
|
|
|
export {
|
|
|
|
createTransportSocket,
|
|
|
|
isTransport,
|
|
|
|
createTransportPeer,
|
|
|
|
} from "./transports/index.js";
|
2023-08-31 15:02:17 +00:00
|
|
|
export type { SignedRegistryEntry };
|
2023-08-31 15:10:15 +00:00
|
|
|
export { NodeId };
|
2023-08-31 07:49:01 +00:00
|
|
|
|
|
|
|
export function createNode(config: S5NodeConfig) {
|
|
|
|
return new S5Node(config);
|
|
|
|
}
|
2023-08-31 11:22:16 +00:00
|
|
|
|
|
|
|
export function createKeyPair(privateKey?: Uint8Array) {
|
|
|
|
return new KeyPairEd25519(privateKey ?? ed25519.utils.randomPrivateKey());
|
|
|
|
}
|