{"version":3,"file":"QMxlNELGGv55foJaOEQcfjYp9zXagStlmLHgpXs5ylc.Ciiwjx5t.mjs","names":["useState","useRef","lottie","error","NavBreadcrum","ChainDropdown","ChainSerivcesCMSItem","prefix","ChainServices","metadata","metadataProvider","PropertyOverrides","_Fragment","BL_rxt942TRZ70mEA6","gTVDdkxUqTRZ70mEA6","I5NqMIHB9TRZ70mEA6","idTRZ70mEA6"],"sources":["https:/framerusercontent.com/modules/9L0UuUudVomu29qRXXUj/4hoaTVsQ25faE2R1jGVP/SnapshotsMainnets.js","https:/framerusercontent.com/modules/HFPihlxSQ9xIoCdnrJN0/73Q1c66Dw2QkneQzaQev/GdlLmV3B2.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{formatDistanceToNow,parseISO}from\"date-fns\";import lottie from\"lottie-web\";export function NetworkInfo(props){const[networks,setNetworks]=useState({});const[selectedChain,setSelectedChain]=useState(props.chain);const[selectedServer,setSelectedServer]=useState(\"eu-west-1\");const[selectedSnapshotIndex,setSelectedSnapshotIndex]=useState(0);const[selectedTab,setSelectedTab]=useState(\"Snapshots\");const[urlEndpoint,setUrlEndpoint]=useState(props.apiEndpoint);const[windowWidth,setWindowWidth]=useState(window?.innerWidth);const[buttonCopyClicked,setButtonCopyClicked]=useState({button1:false,button2:false,button3:false,button4:false,button5:false,button6:false,button7:false,button8:false,button9:false,button10:false,button11:false});const animationContainer=useRef(null);const[error,setError]=useState(false);useEffect(()=>{if(animationContainer.current){const anim=lottie.loadAnimation({container:animationContainer.current,renderer:\"svg\",loop:true,autoplay:true,path:props.lottieLoaderLink});return()=>anim.destroy()// Nettoyage à la désinscription\n;}},[]);const mobileScreenWidth=809;useEffect(()=>{const handleResize=()=>{setWindowWidth(window.innerWidth);};window.addEventListener(\"resize\",handleResize);return()=>{window.removeEventListener(\"resize\",handleResize);};},[]);useEffect(()=>{async function fetchData(){try{const response=await fetch(urlEndpoint);const data=await response.json();if(data[selectedChain]?.chain_name!=props.chain){setError(true);}else{setNetworks(data);setError(false);}}catch(error){console.error(\"Error fetching network data:\",error);setError(true);}}fetchData();},[urlEndpoint]);const handleSelectChain=event=>{setSelectedChain(event.target.value);setSelectedSnapshotIndex(0)// Reset the snapshot index when network changes\n;};const handleSelectServer=event=>{setSelectedServer(event.target.value);setSelectedSnapshotIndex(0)// Reset the snapshot index when server changes\n;};const handleSelectSnapshot=event=>{setSelectedSnapshotIndex(Number(event.target.value));};const selectedNetworkData=networks[selectedChain];const servers=selectedNetworkData?.snapshots[0]||{}// Placeholder for dynamic server keys\n;const serverSnapshots=servers[selectedServer];const formattedTimestamp=timestamp=>{return formatDistanceToNow(parseISO(timestamp),{addSuffix:true});};// Helper function to generate shell commands\nconst generateSnapshotsShellCommands=(snapshot,network)=>{const fileName=snapshot.dl_url.split(\"/\").pop()||\"snapshot.tar.lz4\";return[`wget -O ${fileName} ${snapshot.dl_url} --inet4-only`,`sudo systemctl stop ${network.daemon}`,`${network.daemon} tendermint unsafe-reset-all --home $HOME/${network.folder} --keep-addr-book`,`zstd -d -T0 --stdout ${fileName} | tar xf - -C $HOME/${network.folder}`,`sudo systemctl restart ${network.daemon} && sudo journalctl -u ${network.daemon} -f`];};const generateLivepeersShellCommands=()=>{const commands=[];for(const endpointKey in selectedNetworkData.endpoints){if(Object.prototype.hasOwnProperty.call(selectedNetworkData.endpoints,endpointKey)){commands.push({name:endpointKey.toUpperCase(),cmd:selectedNetworkData.endpoints[endpointKey]});}}return commands;};const detailsStyle={fontFamily:\"Manrope\",color:props.detailsTextColor,backgroundColor:props.detailsBackgroundColor,//padding: props.detailsPadding,\n//borderRadius: props.detailsBorderRadius,\nborderLeft:windowWidth<=mobileScreenWidth?\"\":\"1px solid #ccc\",display:\"flex\",flexDirection:\"column\",gap:\"24px\",height:\"100%\",width:\"1fr\",minWidth:\"1fr\",padding:windowWidth<=mobileScreenWidth?\"\":\"24px\"};// Style object for the command shell area\nconst commandShellStyle={fontFamily:props.detailsFont,padding:\"5px\",marginBottom:\"20px\",width:\"100%\",backgroundColor:\"#EEEDE6\",borderRadius:\"4px\",border:\"1px solid #cccccc\",alignItems:\"center\",display:\"flex\"};const selector={padding:5,backgroundColor:\"#EEEDE7\",border:\"1px solid #cccccc\",borderRadius:\"4px\",fontFamily:\"Manrope\",fontSize:\"16px\",fontWeight:\"600\",color:\"#000000\",width:\"100%\"};const selectorTitle={fontFamily:\"Manrope\",fontSize:\"13px\",fontWeight:\"500\",color:\"#000000\",opacity:\"67%\"};const menuBtn={display:\"flex\",alignItems:\"center\",width:\"100%\",textAlign:\"center\",padding:\"10px\",position:\"relative\",fontFamily:\"Manrope\",fontSize:\"16px\",fontWeight:\"600\",color:\"#000000\",marginBottom:windowWidth<=mobileScreenWidth?\"0%\":\"10%\",cursor:\"pointer\",justifyContent:\"left\",borderRadius:\"4px\"};const chainName={fontFamily:\"Manrope\",fontSize:\"26px\",fontWeight:\"700\",color:\"#262626\",marginLeft:\"2%\"};const cmd={padding:\"10px\",marginBottom:\"10px\",width:\"100%\",fontFamily:props.detailsFont,backgroundColor:\"#EEEDE6\",borderRadius:\"4px\",border:\"1px solid #cccccc\",alignItems:\"center\",display:\"flex\"};function DisplayVersion(){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"5px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{textTransform:\"uppercase\",fontWeight:\"600\",color:\"#6D6D6D\"},children:\"Version\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{color:\"rgb(2, 117, 111)\"},children:selectedNetworkData.version})]});}function DisplayFolder(){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"5px\",color:\"rgb(2, 117, 111)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{textTransform:\"uppercase\",fontWeight:\"600\",color:\"#6D6D6D\"},children:\"Folder\"}),\" \",selectedNetworkData.folder]});}const handleCopyToClipboard=(text,buttonId)=>{const textToCopy=text;navigator.clipboard.writeText(textToCopy);setButtonCopyClicked(prevState=>({...prevState,[buttonId]:!prevState[buttonId]}));setTimeout(()=>{setButtonCopyClicked(prevState=>({...prevState,[buttonId]:!prevState[buttonId]}));},3e3);};return /*#__PURE__*/_jsxs(\"div\",{style:{color:props.textColor,display:windowWidth<=mobileScreenWidth?\"block\":\"flex\",flexDirection:windowWidth<=mobileScreenWidth?\"column\":\"row\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{width:windowWidth<=mobileScreenWidth?\"100%\":\"250px\",backgroundColor:\"#F6F4ED\",padding:windowWidth<=mobileScreenWidth?\"\":\"24px\"},children:/*#__PURE__*/_jsxs(\"div\",{style:{overflowX:\"scroll\",display:windowWidth<=mobileScreenWidth?\"flex\":\"block\",flexDirection:windowWidth<=mobileScreenWidth?\"row\":\"column\"},children:[/*#__PURE__*/_jsxs(\"button\",{style:{backgroundColor:selectedTab==\"Snapshots\"?\"rgba(0, 0, 0, 0.05)\":\"rgba(0, 0, 0, 0)\",border:selectedTab==\"Snapshots\"?\"1px solid #cccccc\":\"none\",...menuBtn},onClick:()=>setSelectedTab(\"Snapshots\"),children:[/*#__PURE__*/_jsx(\"svg\",{width:\"16\",height:\"16\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",style:{marginRight:\"10px\",marginLeft:\"2%\"},children:/*#__PURE__*/_jsx(\"path\",{d:\"M12 2V6M12 6C9.87827 6 7.84344 6.84285 6.34315 8.34315C4.84285 9.84344 4 11.8783 4 14C4 16.1217 4.84285 18.1566 6.34315 19.6569C7.84344 21.1571 9.87827 22 12 22C14.1217 22 16.1566 21.1571 17.6569 19.6569C19.1571 18.1566 20 16.1217 20 14C20 11.8783 19.1571 9.84344 17.6569 8.34315C16.1566 6.84285 14.1217 6 12 6ZM10 2H14M19 5L20 6M14.652 11.098L11.823 13.927\",stroke:\"black\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})}),\"Snapshots\"]}),/*#__PURE__*/_jsxs(\"button\",{style:{...menuBtn,backgroundColor:selectedTab==\"Addrbook\"?\"rgba(0, 0, 0, 0.05)\":\"rgba(0, 0, 0, 0)\",border:selectedTab==\"Addrbook\"?\"1px solid #cccccc\":\"none\"},onClick:()=>setSelectedTab(\"Addrbook\"),children:[/*#__PURE__*/_jsx(\"svg\",{width:\"16\",height:\"16\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",style:{marginRight:\"10px\",marginLeft:\"2%\"},children:/*#__PURE__*/_jsx(\"path\",{d:\"M12 5.06601V21.5M12 5.06601C15.025 3.96601 19.005 3.35601 22 5.06601V20.566C18.803 19.196 14.937 20.165 12 21.5M12 5.06601C8.975 3.96601 4.995 3.35601 2 5.06601V20.566C5.197 19.196 9.063 20.165 12 21.5\",stroke:\"black\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})}),\"Addrbook\"]}),/*#__PURE__*/_jsxs(\"button\",{style:{...menuBtn,backgroundColor:selectedTab==\"Livepeers\"?\"rgba(0, 0, 0, 0.05)\":\"rgba(0, 0, 0, 0)\",border:selectedTab==\"Livepeers\"?\"1px solid #cccccc\":\"none\"},onClick:()=>setSelectedTab(\"Livepeers\"),children:[/*#__PURE__*/_jsx(\"svg\",{width:\"16\",height:\"16\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",style:{marginRight:\"10px\",marginLeft:\"2%\"},children:/*#__PURE__*/_jsx(\"path\",{d:\"M15.41 6.51C12.827 7.283 10.485 8.543 8.59 10.49M15.41 17.49C12.827 16.717 10.485 15.457 8.59 13.51M21 5C21 5.79565 20.6839 6.55871 20.1213 7.12132C19.5587 7.68393 18.7956 8 18 8C17.2044 8 16.4413 7.68393 15.8787 7.12132C15.3161 6.55871 15 5.79565 15 5C15 4.20435 15.3161 3.44129 15.8787 2.87868C16.4413 2.31607 17.2044 2 18 2C18.7956 2 19.5587 2.31607 20.1213 2.87868C20.6839 3.44129 21 4.20435 21 5ZM9 12C9 12.7956 8.68393 13.5587 8.12132 14.1213C7.55871 14.6839 6.79565 15 6 15C5.20435 15 4.44129 14.6839 3.87868 14.1213C3.31607 13.5587 3 12.7956 3 12C3 11.2044 3.31607 10.4413 3.87868 9.87868C4.44129 9.31607 5.20435 9 6 9C6.79565 9 7.55871 9.31607 8.12132 9.87868C8.68393 10.4413 9 11.2044 9 12ZM21 19C21 19.7956 20.6839 20.5587 20.1213 21.1213C19.5587 21.6839 18.7956 22 18 22C17.2044 22 16.4413 21.6839 15.8787 21.1213C15.3161 20.5587 15 19.7956 15 19C15 18.2044 15.3161 17.4413 15.8787 16.8787C16.4413 16.3161 17.2044 16 18 16C18.7956 16 19.5587 16.3161 20.1213 16.8787C20.6839 17.4413 21 18.2044 21 19Z\",stroke:\"black\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})}),\"Livepeers\"]}),/*#__PURE__*/_jsxs(\"button\",{style:{...menuBtn,backgroundColor:selectedTab==\"Endpoints\"?\"rgba(0, 0, 0, 0.05)\":\"rgba(0, 0, 0, 0)\",border:selectedTab==\"Endpoints\"?\"1px solid #cccccc\":\"none\"},onClick:()=>setSelectedTab(\"Endpoints\"),children:[/*#__PURE__*/_jsx(\"svg\",{width:\"16\",height:\"16\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",style:{marginRight:\"10px\",marginLeft:\"2%\"},children:/*#__PURE__*/_jsx(\"path\",{d:\"M8 4C6.343 4 5 5.194 5 6.667V9.333C5 10.806 3.657 12 2 12C3.657 12 5 13.194 5 14.667V17.333C5 18.806 6.343 20 8 20M16 4C17.657 4 19 5.194 19 6.667V9.333C19 10.806 20.343 12 22 12C20.343 12 19 13.194 19 14.667V17.333C19 18.806 17.657 20 16 20M9.001 12H9M12.001 12H12M15.001 12H15\",stroke:\"black\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})}),\"Endpoints\"]})]})}),windowWidth<=mobileScreenWidth&&/*#__PURE__*/_jsx(\"div\",{style:{borderTop:\"1px solid #ccc\",margin:\"10px 0\"}}),/*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\"},children:[selectedTab==\"Snapshots\"&&selectedNetworkData&&/*#__PURE__*/_jsxs(\"div\",{style:detailsStyle,children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",flexWrap:windowWidth<=mobileScreenWidth?\"wrap\":\"nowrap\",width:\"1fr\",gap:\"10px\"},children:[selectedNetworkData?.snapshots[0]&&/*#__PURE__*/_jsx(\"select\",{value:selectedServer,onChange:handleSelectServer,style:{padding:10,height:\"fit-content\",backgroundColor:\"#EEEDE7\",border:\"1px solid #cccccc\",borderRadius:\"4px\",marginRight:windowWidth<=mobileScreenWidth?\"10px\":\"\"},children:Object.keys(selectedNetworkData.snapshots[0]).map(server=>/*#__PURE__*/_jsx(\"option\",{value:server,children:server},server))}),serverSnapshots&&serverSnapshots[selectedSnapshotIndex]&&/*#__PURE__*/_jsx(\"select\",{value:selectedSnapshotIndex,onChange:handleSelectSnapshot,style:{padding:10,height:\"fit-content\",backgroundColor:\"#EEEDE7\",border:\"1px solid #cccccc\",borderRadius:\"4px\"},children:serverSnapshots.map((snapshot,index1)=>/*#__PURE__*/_jsx(\"option\",{value:index1,children:formattedTimestamp(snapshot.timestamp)},index1))}),serverSnapshots[selectedSnapshotIndex]?.dl_url&&/*#__PURE__*/_jsxs(\"a\",{href:serverSnapshots[selectedSnapshotIndex].dl_url,target:\"_blank\",rel:\"noopener noreferrer\",style:{color:props.linkColor,textDecoration:\"none\",display:\"flex\",gap:\"5px\",alignItems:\"center\",padding:\"10px\",backgroundColor:\"#02514D\",width:\"fit-content\",borderRadius:\"4px\",height:\"fit-content\"},children:[\"Download snapshot\",/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",width:\"12\",height:\"12\",fill:\"none\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"2\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M3 15a5 5 0 0 0 5 5h8a5 5 0 0 0 5-5M9 12.188a15 15 0 0 0 2.556 2.655c.13.104.287.157.444.157m3-2.812a14.998 14.998 0 0 1-2.556 2.655A.704.704 0 0 1 12 15m0 0V4\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",gap:\"32px\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"5px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{textTransform:\"uppercase\",fontWeight:\"600\",color:\"#6D6D6D\"},children:\"Chain id\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{color:\"rgb(2, 117, 111)\"},children:selectedNetworkData.chain_id})]}),/*#__PURE__*/_jsx(DisplayVersion,{}),serverSnapshots[selectedSnapshotIndex]?.size&&/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"5px\",color:\"rgb(2, 117, 111)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{textTransform:\"uppercase\",fontWeight:\"600\",color:\"#6D6D6D\"},children:\"Size\"}),\" \",serverSnapshots[selectedSnapshotIndex].size]}),serverSnapshots[selectedSnapshotIndex]?.timestamp&&/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"5px\",color:\"rgb(2, 117, 111)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{textTransform:\"uppercase\",fontWeight:\"600\",color:\"#6D6D6D\"},children:\"Timestamp\"}),\" \",formattedTimestamp(serverSnapshots[selectedSnapshotIndex].timestamp)]})]}),/*#__PURE__*/_jsxs(\"div\",{children:[selectedNetworkData.comment&&/*#__PURE__*/_jsx(\"div\",{style:{fontFamily:props.detailsFont,padding:\"5px\",marginBottom:\"20px\",width:\"100%\",alignItems:\"center\",display:\"flex\"},children:/*#__PURE__*/_jsx(\"div\",{style:{fontFamily:props.detailsFont,width:\"100%\"},children:selectedNetworkData.comment})}),serverSnapshots&&serverSnapshots[selectedSnapshotIndex]&&serverSnapshots[selectedSnapshotIndex].cmd.map((command,index1)=>/*#__PURE__*/_jsxs(\"div\",{style:commandShellStyle,children:[/*#__PURE__*/_jsxs(\"div\",{style:{width:\"20px\",height:\"20px\",marginRight:\"10px\"},children:[buttonCopyClicked[Object.keys(buttonCopyClicked)[index1]]==false&&/*#__PURE__*/_jsx(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",style:{cursor:\"pointer\"},onClick:()=>handleCopyToClipboard(command,Object.keys(buttonCopyClicked)[index1]),children:/*#__PURE__*/_jsx(\"path\",{d:\"M14.085 14.085C14.2808 14.0558 14.4558 14.0167 14.6208 13.9625C15.2461 13.7593 15.8145 13.411 16.2794 12.9461C16.7443 12.4812 17.0926 11.9128 17.2958 11.2875C17.5 10.66 17.5 9.88417 17.5 8.33333C17.5 6.7825 17.5 6.00667 17.2958 5.37917C17.0926 4.75385 16.7443 4.18551 16.2794 3.72058C15.8145 3.25566 15.2461 2.90736 14.6208 2.70417C13.9933 2.5 13.2175 2.5 11.6667 2.5C10.1158 2.5 9.34 2.5 8.7125 2.70417C8.08719 2.90736 7.51884 3.25566 7.05392 3.72058C6.58899 4.18551 6.2407 4.75385 6.0375 5.37917C5.98169 5.55402 5.94071 5.73327 5.915 5.915M14.085 14.085C14.1667 13.5325 14.1667 12.81 14.1667 11.6667C14.1667 10.1158 14.1667 9.34 13.9625 8.7125C13.7593 8.08719 13.411 7.51884 12.9461 7.05392C12.4812 6.58899 11.9128 6.2407 11.2875 6.0375C10.66 5.83333 9.88417 5.83333 8.33333 5.83333C7.18917 5.83333 6.46667 5.83333 5.915 5.915M14.085 14.085C14.0593 14.2667 14.0183 14.446 13.9625 14.6208C13.7593 15.2461 13.411 15.8145 12.9461 16.2794C12.4812 16.7443 11.9128 17.0926 11.2875 17.2958C10.66 17.5 9.88417 17.5 8.33333 17.5C6.7825 17.5 6.00667 17.5 5.37917 17.2958C4.75385 17.0926 4.18551 16.7443 3.72058 16.2794C3.25566 15.8145 2.90736 15.2461 2.70417 14.6208C2.5 13.9933 2.5 13.2175 2.5 11.6667C2.5 10.1158 2.5 9.34 2.70417 8.7125C2.90736 8.08719 3.25566 7.51884 3.72058 7.05392C4.18551 6.58899 4.75385 6.2407 5.37917 6.0375C5.54417 5.98333 5.71833 5.94417 5.915 5.915\",stroke:\"#21504D\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})}),buttonCopyClicked[Object.keys(buttonCopyClicked)[index1]]==true&&/*#__PURE__*/_jsx(\"svg\",{width:\"20\",height:\"20\",xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",fill:\"none\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"2\",style:{cursor:\"pointer\"},onClick:()=>handleCopyToClipboard(command,Object.keys(buttonCopyClicked)[index1]),children:/*#__PURE__*/_jsx(\"path\",{d:\"M16.902 16.902c.235-.035.445-.082.643-.147a5 5 0 0 0 3.21-3.21C21 12.792 21 11.861 21 10s0-2.792-.245-3.545a5 5 0 0 0-3.21-3.21C16.792 3 15.861 3 14 3s-2.792 0-3.545.245a5 5 0 0 0-3.21 3.21 3.921 3.921 0 0 0-.147.643m9.804 9.804C17 16.239 17 15.372 17 14c0-1.861 0-2.792-.245-3.545a5 5 0 0 0-3.21-3.21C12.792 7 11.861 7 10 7c-1.373 0-2.24 0-2.902.098m9.804 9.804a3.923 3.923 0 0 1-.147.643 5 5 0 0 1-3.21 3.21C12.792 21 11.861 21 10 21s-2.792 0-3.545-.245a5 5 0 0 1-3.21-3.21C3 16.792 3 15.861 3 14s0-2.792.245-3.545a5 5 0 0 1 3.21-3.21c.198-.065.407-.112.643-.147M7 14.258l2.036 2.035A13.032 13.032 0 0 1 13 12\"})})]}),command]},index1))]})]}),!serverSnapshots&&error==false&&/*#__PURE__*/_jsx(\"div\",{ref:animationContainer,style:{width:50,height:50,position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\"}}),!serverSnapshots&&error&&/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"center\",width:\"100%\",fontFamily:\"Manrope\",fontSize:\"28px\",fontWeight:\"500\",color:\"#000000\"},children:[\"No chain services yet for \",props.chain,\" mainnet\"]}),selectedTab==\"Addrbook\"&&/*#__PURE__*/_jsxs(\"div\",{style:detailsStyle,children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",gap:\"32px\",width:\"1fr\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"5px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{textTransform:\"uppercase\",fontWeight:\"600\",color:\"#6D6D6D\"},children:\"Chain id\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{color:\"rgb(2, 117, 111)\"},children:selectedNetworkData.chain_id})]}),/*#__PURE__*/_jsx(DisplayVersion,{}),/*#__PURE__*/_jsx(DisplayFolder,{})]}),/*#__PURE__*/_jsx(\"div\",{children:/*#__PURE__*/_jsxs(\"div\",{style:cmd,children:[/*#__PURE__*/_jsxs(\"div\",{style:{width:\"20px\",height:\"20px\",marginRight:\"10px\"},children:[buttonCopyClicked[Object.keys(buttonCopyClicked)[5]]==false&&/*#__PURE__*/_jsx(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",style:{cursor:\"pointer\"},onClick:()=>handleCopyToClipboard(selectedNetworkData.addrbook,Object.keys(buttonCopyClicked)[5]),children:/*#__PURE__*/_jsx(\"path\",{d:\"M14.085 14.085C14.2808 14.0558 14.4558 14.0167 14.6208 13.9625C15.2461 13.7593 15.8145 13.411 16.2794 12.9461C16.7443 12.4812 17.0926 11.9128 17.2958 11.2875C17.5 10.66 17.5 9.88417 17.5 8.33333C17.5 6.7825 17.5 6.00667 17.2958 5.37917C17.0926 4.75385 16.7443 4.18551 16.2794 3.72058C15.8145 3.25566 15.2461 2.90736 14.6208 2.70417C13.9933 2.5 13.2175 2.5 11.6667 2.5C10.1158 2.5 9.34 2.5 8.7125 2.70417C8.08719 2.90736 7.51884 3.25566 7.05392 3.72058C6.58899 4.18551 6.2407 4.75385 6.0375 5.37917C5.98169 5.55402 5.94071 5.73327 5.915 5.915M14.085 14.085C14.1667 13.5325 14.1667 12.81 14.1667 11.6667C14.1667 10.1158 14.1667 9.34 13.9625 8.7125C13.7593 8.08719 13.411 7.51884 12.9461 7.05392C12.4812 6.58899 11.9128 6.2407 11.2875 6.0375C10.66 5.83333 9.88417 5.83333 8.33333 5.83333C7.18917 5.83333 6.46667 5.83333 5.915 5.915M14.085 14.085C14.0593 14.2667 14.0183 14.446 13.9625 14.6208C13.7593 15.2461 13.411 15.8145 12.9461 16.2794C12.4812 16.7443 11.9128 17.0926 11.2875 17.2958C10.66 17.5 9.88417 17.5 8.33333 17.5C6.7825 17.5 6.00667 17.5 5.37917 17.2958C4.75385 17.0926 4.18551 16.7443 3.72058 16.2794C3.25566 15.8145 2.90736 15.2461 2.70417 14.6208C2.5 13.9933 2.5 13.2175 2.5 11.6667C2.5 10.1158 2.5 9.34 2.70417 8.7125C2.90736 8.08719 3.25566 7.51884 3.72058 7.05392C4.18551 6.58899 4.75385 6.2407 5.37917 6.0375C5.54417 5.98333 5.71833 5.94417 5.915 5.915\",stroke:\"#21504D\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})}),buttonCopyClicked[Object.keys(buttonCopyClicked)[5]]==true&&/*#__PURE__*/_jsx(\"svg\",{width:\"20\",height:\"20\",xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",fill:\"none\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"2\",style:{cursor:\"pointer\"},onClick:()=>handleCopyToClipboard(selectedNetworkData.addrbook,Object.keys(buttonCopyClicked)[index]),children:/*#__PURE__*/_jsx(\"path\",{d:\"M16.902 16.902c.235-.035.445-.082.643-.147a5 5 0 0 0 3.21-3.21C21 12.792 21 11.861 21 10s0-2.792-.245-3.545a5 5 0 0 0-3.21-3.21C16.792 3 15.861 3 14 3s-2.792 0-3.545.245a5 5 0 0 0-3.21 3.21 3.921 3.921 0 0 0-.147.643m9.804 9.804C17 16.239 17 15.372 17 14c0-1.861 0-2.792-.245-3.545a5 5 0 0 0-3.21-3.21C12.792 7 11.861 7 10 7c-1.373 0-2.24 0-2.902.098m9.804 9.804a3.923 3.923 0 0 1-.147.643 5 5 0 0 1-3.21 3.21C12.792 21 11.861 21 10 21s-2.792 0-3.545-.245a5 5 0 0 1-3.21-3.21C3 16.792 3 15.861 3 14s0-2.792.245-3.545a5 5 0 0 1 3.21-3.21c.198-.065.407-.112.643-.147M7 14.258l2.036 2.035A13.032 13.032 0 0 1 13 12\"})})]}),selectedNetworkData.addrbook]})})]}),selectedTab==\"Livepeers\"&&/*#__PURE__*/_jsxs(\"div\",{style:detailsStyle,children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",gap:\"32px\",width:\"100%\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"5px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{textTransform:\"uppercase\",fontWeight:\"600\",color:\"#6D6D6D\"},children:\"Chain id\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{color:\"rgb(2, 117, 111)\"},children:selectedNetworkData.chain_id})]}),/*#__PURE__*/_jsx(DisplayVersion,{}),/*#__PURE__*/_jsx(DisplayFolder,{})]}),/*#__PURE__*/_jsx(\"div\",{children:/*#__PURE__*/_jsxs(\"div\",{style:cmd,children:[/*#__PURE__*/_jsx(\"a\",{href:selectedNetworkData.livepeers,target:\"_blank\",rel:\"noopener noreferrer\",style:{color:props.linkColor,textDecoration:\"none\",display:\"flex\",alignItems:\"center\",padding:\"5px\",backgroundColor:\"#02514D\",width:\"fit-content\",borderRadius:\"4px\",height:\"fit-content\",marginRight:\"10px\"},children:\"Open\"}),selectedNetworkData.livepeers]})})]}),selectedTab==\"Endpoints\"&&/*#__PURE__*/_jsxs(\"div\",{style:detailsStyle,children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",gap:\"32px\",width:\"1fr\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"5px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{textTransform:\"uppercase\",fontWeight:\"600\",color:\"#6D6D6D\"},children:\"Chain id\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{color:\"rgb(2, 117, 111)\"},children:selectedNetworkData.chain_id})]}),/*#__PURE__*/_jsx(DisplayVersion,{}),/*#__PURE__*/_jsx(DisplayFolder,{})]}),/*#__PURE__*/_jsx(\"div\",{children:generateLivepeersShellCommands().map((command,index1)=>/*#__PURE__*/_jsxs(\"div\",{style:{paddingBottom:\"12px\"},children:[command.name,/*#__PURE__*/_jsxs(\"div\",{style:cmd,children:[/*#__PURE__*/_jsxs(\"div\",{style:{width:\"20px\",height:\"20px\",marginRight:\"10px\"},children:[buttonCopyClicked[Object.keys(buttonCopyClicked)[index1]]==false&&/*#__PURE__*/_jsx(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",style:{cursor:\"pointer\"},onClick:()=>handleCopyToClipboard(command.cmd,Object.keys(buttonCopyClicked)[index1]),children:/*#__PURE__*/_jsx(\"path\",{d:\"M14.085 14.085C14.2808 14.0558 14.4558 14.0167 14.6208 13.9625C15.2461 13.7593 15.8145 13.411 16.2794 12.9461C16.7443 12.4812 17.0926 11.9128 17.2958 11.2875C17.5 10.66 17.5 9.88417 17.5 8.33333C17.5 6.7825 17.5 6.00667 17.2958 5.37917C17.0926 4.75385 16.7443 4.18551 16.2794 3.72058C15.8145 3.25566 15.2461 2.90736 14.6208 2.70417C13.9933 2.5 13.2175 2.5 11.6667 2.5C10.1158 2.5 9.34 2.5 8.7125 2.70417C8.08719 2.90736 7.51884 3.25566 7.05392 3.72058C6.58899 4.18551 6.2407 4.75385 6.0375 5.37917C5.98169 5.55402 5.94071 5.73327 5.915 5.915M14.085 14.085C14.1667 13.5325 14.1667 12.81 14.1667 11.6667C14.1667 10.1158 14.1667 9.34 13.9625 8.7125C13.7593 8.08719 13.411 7.51884 12.9461 7.05392C12.4812 6.58899 11.9128 6.2407 11.2875 6.0375C10.66 5.83333 9.88417 5.83333 8.33333 5.83333C7.18917 5.83333 6.46667 5.83333 5.915 5.915M14.085 14.085C14.0593 14.2667 14.0183 14.446 13.9625 14.6208C13.7593 15.2461 13.411 15.8145 12.9461 16.2794C12.4812 16.7443 11.9128 17.0926 11.2875 17.2958C10.66 17.5 9.88417 17.5 8.33333 17.5C6.7825 17.5 6.00667 17.5 5.37917 17.2958C4.75385 17.0926 4.18551 16.7443 3.72058 16.2794C3.25566 15.8145 2.90736 15.2461 2.70417 14.6208C2.5 13.9933 2.5 13.2175 2.5 11.6667C2.5 10.1158 2.5 9.34 2.70417 8.7125C2.90736 8.08719 3.25566 7.51884 3.72058 7.05392C4.18551 6.58899 4.75385 6.2407 5.37917 6.0375C5.54417 5.98333 5.71833 5.94417 5.915 5.915\",stroke:\"#21504D\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})}),buttonCopyClicked[Object.keys(buttonCopyClicked)[index1]]==true&&/*#__PURE__*/_jsx(\"svg\",{width:\"20\",height:\"20\",xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",fill:\"none\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"2\",style:{cursor:\"pointer\"},onClick:()=>handleCopyToClipboard(command.cmd,Object.keys(buttonCopyClicked)[index1]),children:/*#__PURE__*/_jsx(\"path\",{d:\"M16.902 16.902c.235-.035.445-.082.643-.147a5 5 0 0 0 3.21-3.21C21 12.792 21 11.861 21 10s0-2.792-.245-3.545a5 5 0 0 0-3.21-3.21C16.792 3 15.861 3 14 3s-2.792 0-3.545.245a5 5 0 0 0-3.21 3.21 3.921 3.921 0 0 0-.147.643m9.804 9.804C17 16.239 17 15.372 17 14c0-1.861 0-2.792-.245-3.545a5 5 0 0 0-3.21-3.21C12.792 7 11.861 7 10 7c-1.373 0-2.24 0-2.902.098m9.804 9.804a3.923 3.923 0 0 1-.147.643 5 5 0 0 1-3.21 3.21C12.792 21 11.861 21 10 21s-2.792 0-3.545-.245a5 5 0 0 1-3.21-3.21C3 16.792 3 15.861 3 14s0-2.792.245-3.545a5 5 0 0 1 3.21-3.21c.198-.065.407-.112.643-.147M7 14.258l2.036 2.035A13.032 13.032 0 0 1 13 12\"})})]}),command.cmd]},index1)]}))})]})]})]});}NetworkInfo.defaultProps={// ... existing default props ...\ndetailsTextColor:\"#333333\",detailsBackgroundColor:\"#f0f0f0\",detailsPadding:\"10px\",detailsBorderRadius:\"4px\",chain:\"Akash\",commandShellPadding:\"10px\",commandShellBackgroundColor:\"#333333\",commandShellTextColor:\"#ffffff\",commandShellBorder:\"1px solid #cccccc\",commandShellBorderRadius:\"4px\",linkColor:\"#BDFFF9\",selectBackground:\"#FFFFFF\",detailsFont:\"Arial\",lottieLoaderLink:\"https://lottie.host/eba229c7-c425-427c-b7ce-fb2a9d17bff5/8nGn3Yid7L.json\"};// Add property controls for new style properties\naddPropertyControls(NetworkInfo,{lottieLoaderLink:{type:ControlType.String,title:\"Lottie Loader Link\",defaultValue:\"https://lottie.host/eba229c7-c425-427c-b7ce-fb2a9d17bff5/8nGn3Yid7L.json\"},detailsFont:{type:ControlType.String,title:\"Details Font\",defaultValue:\"Arial\"},// ... existing property controls ...\napiEndpoint:{type:ControlType.String,title:\"API Endpoint\",defaultValue:\"https://api.imperator.co/services?network=mainnets\"},apiEndpointDev:{type:ControlType.String,title:\"API Endpoint\",defaultValue:\"https://api.imperator.co/services?network=testnets\"},// Styles for the details section\ndetailsTextColor:{type:ControlType.Color,title:\"Details Text Color\",defaultValue:NetworkInfo.defaultProps.detailsTextColor},detailsBackgroundColor:{type:ControlType.Color,title:\"Details Background\",defaultValue:NetworkInfo.defaultProps.detailsBackgroundColor},detailsPadding:{type:ControlType.String,title:\"Details Padding\",defaultValue:NetworkInfo.defaultProps.detailsPadding},detailsBorderRadius:{type:ControlType.String,title:\"Details Border Radius\",defaultValue:NetworkInfo.defaultProps.detailsBorderRadius},chain:{type:ControlType.String,title:\"Chain\",defaultValue:NetworkInfo.defaultProps.chain},// Styles for the command shell area\ncommandShellPadding:{type:ControlType.String,title:\"Command Shell Padding\",defaultValue:NetworkInfo.defaultProps.commandShellPadding},commandShellBackgroundColor:{type:ControlType.Color,title:\"Command Shell Background\",defaultValue:NetworkInfo.defaultProps.commandShellBackgroundColor},commandShellTextColor:{type:ControlType.Color,title:\"Command Shell Text Color\",defaultValue:NetworkInfo.defaultProps.commandShellTextColor},commandShellBorder:{type:ControlType.String,title:\"Command Shell Border\",defaultValue:NetworkInfo.defaultProps.commandShellBorder},commandShellBorderRadius:{type:ControlType.String,title:\"Command Shell Border Radius\",defaultValue:NetworkInfo.defaultProps.commandShellBorderRadius},linkColor:{type:ControlType.Color,title:\"Link Color\",defaultValue:NetworkInfo.defaultProps.linkColor},selectBackground:{type:ControlType.Color,title:\"Select Color\",defaultValue:NetworkInfo.defaultProps.selectBackground}});\nexport const __FramerMetadata__ = {\"exports\":{\"NetworkInfo\":{\"type\":\"reactComponent\",\"name\":\"NetworkInfo\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SnapshotsMainnets.map","// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getWhereExpressionFromPathVariables,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import ChainSerivcesCMSItem from\"#framer/local/canvasComponent/jncmhjWfn/jncmhjWfn.js\";import NavBreadcrum from\"#framer/local/canvasComponent/VfHgKb3zL/VfHgKb3zL.js\";import ChainDropdown from\"#framer/local/canvasComponent/wUsHW6gX8/wUsHW6gX8.js\";import{NetworkInfo}from\"#framer/local/codeFile/NSvLrRU/SnapshotsMainnets.js\";import ChainServices from\"#framer/local/collection/G9nEMTVL2/G9nEMTVL2.js\";import metadataProvider from\"#framer/local/webPageMetadata/GdlLmV3B2/GdlLmV3B2.js\";const NavBreadcrumFonts=getFonts(NavBreadcrum);const ChainDropdownFonts=getFonts(ChainDropdown);const ChainSerivcesCMSItemFonts=getFonts(ChainSerivcesCMSItem);const NetworkInfoFonts=getFonts(NetworkInfo);const breakpoints={bDpO2OHnM:\"(min-width: 810px) and (max-width: 1199px)\",h2ZSUQtz3:\"(max-width: 809px)\",Ik0NO8cKl:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-wEtgH\";const variantClassNames={bDpO2OHnM:\"framer-v-1m3q0k4\",h2ZSUQtz3:\"framer-v-1xw8jfd\",Ik0NO8cKl:\"framer-v-eqv2uc\"};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"Ik0NO8cKl\",Phone:\"h2ZSUQtz3\",Tablet:\"bDpO2OHnM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Ik0NO8cKl\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"GdlLmV3B2\",data:ChainServices,type:\"Collection\"},select:[{collection:\"GdlLmV3B2\",name:\"I5NqMIHB9\",type:\"Identifier\"},{collection:\"GdlLmV3B2\",name:\"BL_rxt942\",type:\"Identifier\"},{collection:\"GdlLmV3B2\",name:\"gTVDdkxUq\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"GdlLmV3B2\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,BL_rxt942=getFromCurrentRouteData(\"BL_rxt942\")??\"\",I5NqMIHB9=getFromCurrentRouteData(\"I5NqMIHB9\"),gTVDdkxUqTRZ70mEA6,I5NqMIHB9TRZ70mEA6,BL_rxt942TRZ70mEA6,idTRZ70mEA6,gTVDdkxUq=getFromCurrentRouteData(\"gTVDdkxUq\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const q1ujDe40dtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const ref2=React.useRef(null);const ref3=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Ik0NO8cKl\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-eqv2uc\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ddIX6TTR2\"},implicitPathVariables:undefined},{href:{webPageId:\"ddIX6TTR2\"},implicitPathVariables:undefined},{href:{webPageId:\"ddIX6TTR2\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n7xqjv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDpO2OHnM:{tnzfztmN8:resolvedLinks[1]},h2ZSUQtz3:{tnzfztmN8:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(NavBreadcrum,{f6boJC1kj:prefix(BL_rxt942,\"Mainnets -> \"),height:\"100%\",id:\"giapKT3A_\",kTf48_2Pm:\"Label\",layoutId:\"giapKT3A_\",LcR9Gz9wy:\"Chain services\",rvr2ojRP3:\"token\",style:{width:\"100%\"},tnzfztmN8:resolvedLinks[0],variant:\"I0Vy26yrO\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jyidi\",\"data-framer-name\":\"Main\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1er9yu4\",\"data-framer-name\":\"hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rkl7se\",\"data-framer-name\":\"max-width\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15ty67w\",\"data-border\":true,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h2ZSUQtz3:{y:(componentViewport?.y||0)+0+45+0+0+0+0+40+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,y:(componentViewport?.y||0)+0+45+0+0+0+0+50+0+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1kos0kj-container\",id:\"1kos0kj\",ref:ref2,children:[/*#__PURE__*/_jsx(ChainDropdown,{Dwae0x9vr:toResponsiveImage(I5NqMIHB9),height:\"100%\",id:\"nKqNrpsAB\",layoutId:\"nKqNrpsAB\",q1ujDe40d:q1ujDe40dtxyyif({overlay}),QS5V95p9N:BL_rxt942,u7DmMOIE8:36,variant:overlay.visible?\"P6E8JwvKv\":\"S7s7VOgCf\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1kos0kj\",offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-5ah5g8\",\"data-border\":true,exit:animation,initial:animation2,ref:ref3,role:\"dialog\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xbo39d\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TRZ70mEA6\",data:ChainServices,type:\"Collection\"},select:[{collection:\"TRZ70mEA6\",name:\"gTVDdkxUq\",type:\"Identifier\"},{collection:\"TRZ70mEA6\",name:\"I5NqMIHB9\",type:\"Identifier\"},{collection:\"TRZ70mEA6\",name:\"BL_rxt942\",type:\"Identifier\"},{collection:\"TRZ70mEA6\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"TRZ70mEA6\",name:\"Xtdf7sfoM\",type:\"Identifier\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"TRZ70mEA6\",name:\"gTVDdkxUq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:gTVDdkxUq},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({BL_rxt942:BL_rxt942TRZ70mEA6,gTVDdkxUq:gTVDdkxUqTRZ70mEA6,I5NqMIHB9:I5NqMIHB9TRZ70mEA6,id:idTRZ70mEA6},index)=>{gTVDdkxUqTRZ70mEA6??=\"\";BL_rxt942TRZ70mEA6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`TRZ70mEA6-${idTRZ70mEA6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{gTVDdkxUq:gTVDdkxUqTRZ70mEA6},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{gTVDdkxUq:gTVDdkxUqTRZ70mEA6},webPageId:\"GdlLmV3B2\"},implicitPathVariables:undefined},{href:{pathVariables:{gTVDdkxUq:gTVDdkxUqTRZ70mEA6},webPageId:\"GdlLmV3B2\"},implicitPathVariables:undefined},{href:{pathVariables:{gTVDdkxUq:gTVDdkxUqTRZ70mEA6},webPageId:\"GdlLmV3B2\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"296px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-g7jzy5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDpO2OHnM:{rXVWwGQ36:resolvedLinks1[1]},h2ZSUQtz3:{rXVWwGQ36:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ChainSerivcesCMSItem,{DyeeXraKb:toResponsiveImage(I5NqMIHB9TRZ70mEA6),gie5pZTiV:BL_rxt942TRZ70mEA6,height:\"100%\",id:\"bV8rJ_vuN\",layoutId:\"bV8rJ_vuN\",rXVWwGQ36:resolvedLinks1[0],Sg4E9SV14:\"Mainnet\",style:{width:\"100%\"},variant:\"UzSymNygg\",width:\"100%\"})})})})})})},idTRZ70mEA6);})})})})})})})})]})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j717ds-container\",children:/*#__PURE__*/_jsx(NetworkInfo,{apiEndpoint:\"https://api.imperator.co/services?network=mainnets\",apiEndpointDev:\"\",chain:BL_rxt942,commandShellBackgroundColor:\"rgb(51, 51, 51)\",commandShellBorder:\"1px solid #cccccc\",commandShellBorderRadius:\"4px\",commandShellPadding:\"10px\",commandShellTextColor:\"rgb(255, 255, 255)\",detailsBackgroundColor:\"rgba(255, 255, 255, 0)\",detailsBorderRadius:\"4px\",detailsFont:\"Arial\",detailsPadding:\"10px\",detailsTextColor:\"rgb(51, 51, 51)\",height:\"100%\",id:\"sqWJESPr_\",layoutId:\"sqWJESPr_\",linkColor:\"rgb(189, 255, 249)\",lottieLoaderLink:\"https://lottie.host/eba229c7-c425-427c-b7ce-fb2a9d17bff5/8nGn3Yid7L.json\",selectBackground:\"rgb(255, 255, 255)\",style:{width:\"100%\"},width:\"100%\"})})})]})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-8655b34d-eab9-4bb6-9760-6479d293f912, rgb(251, 249, 241)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wEtgH.framer-19k5c9n, .framer-wEtgH .framer-19k5c9n { display: block; }\",\".framer-wEtgH.framer-eqv2uc { align-content: center; align-items: center; background-color: var(--token-8655b34d-eab9-4bb6-9760-6479d293f912, #fbf9f1); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-wEtgH .framer-n7xqjv-container, .framer-wEtgH .framer-g7jzy5-container, .framer-wEtgH .framer-1j717ds-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-wEtgH .framer-jyidi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wEtgH .framer-1er9yu4 { align-content: center; align-items: center; background-color: var(--token-a8052db3-9704-4921-9bdc-ea40bee00a06, #f6f4ed); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wEtgH .framer-1rkl7se { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 50px 12px 80px 12px; position: relative; width: 100%; z-index: 2; }\",\".framer-wEtgH .framer-15ty67w { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.15); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-wEtgH .framer-1kos0kj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-wEtgH .framer-5ah5g8 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-a8052db3-9704-4921-9bdc-ea40bee00a06, #f6f4ed); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-wEtgH .framer-xbo39d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; max-height: 500px; overflow: hidden; overflow-y: auto; padding: 12px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wEtgH.framer-eqv2uc, .framer-wEtgH .framer-jyidi, .framer-wEtgH .framer-1er9yu4, .framer-wEtgH .framer-1rkl7se, .framer-wEtgH .framer-15ty67w, .framer-wEtgH .framer-5ah5g8, .framer-wEtgH .framer-xbo39d { gap: 0px; } .framer-wEtgH.framer-eqv2uc > *, .framer-wEtgH .framer-jyidi > *, .framer-wEtgH .framer-1rkl7se > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wEtgH.framer-eqv2uc > :first-child, .framer-wEtgH .framer-jyidi > :first-child, .framer-wEtgH .framer-1er9yu4 > :first-child, .framer-wEtgH .framer-1rkl7se > :first-child, .framer-wEtgH .framer-15ty67w > :first-child, .framer-wEtgH .framer-xbo39d > :first-child { margin-top: 0px; } .framer-wEtgH.framer-eqv2uc > :last-child, .framer-wEtgH .framer-jyidi > :last-child, .framer-wEtgH .framer-1er9yu4 > :last-child, .framer-wEtgH .framer-1rkl7se > :last-child, .framer-wEtgH .framer-15ty67w > :last-child, .framer-wEtgH .framer-xbo39d > :last-child { margin-bottom: 0px; } .framer-wEtgH .framer-1er9yu4 > *, .framer-wEtgH .framer-15ty67w > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wEtgH .framer-5ah5g8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wEtgH .framer-5ah5g8 > :first-child { margin-left: 0px; } .framer-wEtgH .framer-5ah5g8 > :last-child { margin-right: 0px; } .framer-wEtgH .framer-xbo39d > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",'.framer-wEtgH[data-border=\"true\"]::after, .framer-wEtgH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-wEtgH.framer-eqv2uc { width: 810px; }}\",\"@media (max-width: 809px) { .framer-wEtgH.framer-eqv2uc { width: 390px; } .framer-wEtgH .framer-1rkl7se { gap: 24px; padding: 40px 12px 80px 12px; } .framer-wEtgH .framer-15ty67w { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; padding: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wEtgH .framer-1rkl7se { gap: 0px; } .framer-wEtgH .framer-1rkl7se > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-wEtgH .framer-1rkl7se > :first-child { margin-top: 0px; } .framer-wEtgH .framer-1rkl7se > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2169\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bDpO2OHnM\":{\"layout\":[\"fixed\",\"auto\"]},\"h2ZSUQtz3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FramerGdlLmV3B2=withCSS(Component,css,\"framer-wEtgH\");export default FramerGdlLmV3B2;FramerGdlLmV3B2.displayName=\"Services / Chain Services / Testnet\";FramerGdlLmV3B2.defaultProps={height:2169,width:1200};addFonts(FramerGdlLmV3B2,[{explicitInter:true,fonts:[]},...NavBreadcrumFonts,...ChainDropdownFonts,...ChainSerivcesCMSItemFonts,...NetworkInfoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGdlLmV3B2\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"2169\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bDpO2OHnM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h2ZSUQtz3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}