diff --git a/src/WakuProvider.tsx b/src/WakuProvider.tsx
index 1161a66..afe17a8 100644
--- a/src/WakuProvider.tsx
+++ b/src/WakuProvider.tsx
@@ -99,33 +99,3 @@ export const RelayNodeProvider: React.FunctionComponent<
{props.children}
);
};
-
-/**
- * Provider for creating Full Node based on options passed.
- * @example
- * const App = (props) => (
- *
- *
- *
- * );
- * const Component = (props) => {
- * const { node, isLoading, error } = useWaku();
- * ...
- * };
- * @param {Object} props - options to create a node and other React props
- * @param {FullNodeOptions} props.options - optional options for creating Full Node
- * @param {Protocols} props.protocols - optional protocols list to initiate node with
- * @returns React Full Node provider component
- */
-export const FullNodeProvider: React.FunctionComponent<
- ProviderProps
-> = (props) => {
- const result = useCreateFullNode({
- options: props.options,
- protocols: props.protocols,
- });
-
- return (
- {props.children}
- );
-};
diff --git a/src/useCreateWaku.ts b/src/useCreateWaku.ts
index 57fbf61..8fa51c9 100644
--- a/src/useCreateWaku.ts
+++ b/src/useCreateWaku.ts
@@ -87,17 +87,3 @@ export const useCreateRelayNode = (
factory: createRelayNode,
});
};
-
-/**
- * Create Full Node helper hook.
- * @param {Object} params - optional params to configure & bootstrap node
- * @returns {CrateWakuHook} node, loading state and error
- */
-export const useCreateFullNode = (
- params?: BootstrapNodeOptions,
-) => {
- return useCreateNode({
- ...params,
- factory: createFullNode,
- });
-};