import { useRecoilValue } from "recoil"; import { serviceIdState, useRemoveService, wasmState } from "../state"; import { copyToClipboard } from "../util"; import { TextWithLabel } from "./TextInput"; export const IpfsDeploymentInfo = () => { const wasm = useRecoilValue(wasmState); const serviceId = useRecoilValue(serviceIdState); const removeService = useRemoveService(); return ( <>

Service deployed{" "}

Service deployed into Fluence network. You can observe it's service ID as well as the CID of the wasm file used to create the service

); };