{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/wMtWg4kh6zfEjzb92Kg1/ZewPvdlMLKSTzpjKbPhW/EdKx6eVWb.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (5088480)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import NavbarMobileOnly from\"#framer/local/canvasComponent/bGSoJhTCJ/bGSoJhTCJ.js\";import Navbar from\"#framer/local/canvasComponent/n7vPK_oGT/n7vPK_oGT.js\";import Footer from\"#framer/local/canvasComponent/Sto5BD8SL/Sto5BD8SL.js\";import*as sharedStyle from\"#framer/local/css/a8HQEwzk1/a8HQEwzk1.js\";import*as sharedStyle3 from\"#framer/local/css/dnK800nX4/dnK800nX4.js\";import*as sharedStyle1 from\"#framer/local/css/NiMUhCkVb/NiMUhCkVb.js\";import*as sharedStyle2 from\"#framer/local/css/sLJhJzptG/sLJhJzptG.js\";import metadataProvider from\"#framer/local/webPageMetadata/EdKx6eVWb/EdKx6eVWb.js\";const NavbarFonts=getFonts(Navbar);const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const FooterFonts=getFonts(Footer);const NavbarMobileOnlyFonts=getFonts(NavbarMobileOnly);const breakpoints={BTlH_aUeZ:\"(min-width: 1200px)\",RO8SanXBM:\"(min-width: 810px) and (max-width: 1199px)\",uO0aF0feT:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-PYNud\";const variantClassNames={BTlH_aUeZ:\"framer-v-1t4k3in\",RO8SanXBM:\"framer-v-1741fzb\",uO0aF0feT:\"framer-v-1oh7awv\"};const transition1={damping:45,delay:0,mass:1,stiffness:210,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-70};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"BTlH_aUeZ\",Phone:\"uO0aF0feT\",Tablet:\"RO8SanXBM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"BTlH_aUeZ\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,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);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"uO0aF0feT\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"uO0aF0feT\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"BTlH_aUeZ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-0fef0d84-773a-4cc4-83be-3e6bddc1b3a5, rgb(9, 9, 11)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1t4k3in\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SGS38TsrY\"},implicitPathVariables:undefined},{href:{webPageId:\"SGS38TsrY\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:20,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p01qdd-container hidden-1oh7awv\",layoutScroll:true,nodeId:\"HbmYt7vxr\",rendersWithMotion:true,scopeId:\"EdKx6eVWb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{G9kEcvUkM:resolvedLinks[1],variant:\"qboPVs2rC\"}},children:/*#__PURE__*/_jsx(Navbar,{G9kEcvUkM:resolvedLinks[0],height:\"100%\",id:\"HbmYt7vxr\",layoutId:\"HbmYt7vxr\",style:{width:\"100%\"},variant:\"AbSiJda8l\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z8sx67\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vdnpgy\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBBcml6b25hIFNlcmlmIExpZ2h0\",\"--framer-font-family\":'\"ABC Arizona Serif Light\", \"ABC Arizona Serif Light Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ad1640e3-050a-4ad9-933a-19266b3dfc2c, rgb(250, 250, 250))\"},children:\"Product development updates and threads\"})}),className:\"framer-272wug\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;ABC Arizona Serif Light\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12uc9py\",\"data-framer-name\":\"All Articles\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-twl1oz\",\"data-framer-name\":\"Intro\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Stay informed with the latest product development updates, including new features, enhancements, and platform improvements. Here, you'll find key information on upcoming releases, feature rollouts, and progress towards our product roadmap.\"})}),className:\"framer-1wzuu8p\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vj7voc\",\"data-framer-name\":\"March 2025\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xiojd5\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"March 2025\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"March 2025\"})}),className:\"framer-1qpfyz9\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1026m73\",\"data-framer-name\":\"Article\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e4pr1w\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Since our last update, we\u2019ve enhanced how investors earn yield, expanded our analytics, taken a big step toward centralized exchange (CEX) integration, and added new collateral options. Let\u2019s dive in.\"})}),className:\"framer-1cjmk9y\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5k4yhc\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Arkis Vault\"})})}),className:\"framer-kk6pwi\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"We\u2019ve made key updates to Arkis Vault to improve how yield is earned and tracked:\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Investors now receive all Curator earnings, except for the performance fee. This means more rewards go directly to depositors.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Curators now earn a performance fee, creating better incentives for effective capital allocation.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Net APY analytics are now available to both Investors and Curators, offering better transparency into real yield generation.\"})})]})]}),className:\"framer-1r2vpsq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+208+0+58+0+857.6),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/NqY07Tq7iEUGpDnPaJnAF31zcRs.png\",srcSet:\"https://framerusercontent.com/images/NqY07Tq7iEUGpDnPaJnAF31zcRs.png?scale-down-to=512 512w,https://framerusercontent.com/images/NqY07Tq7iEUGpDnPaJnAF31zcRs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NqY07Tq7iEUGpDnPaJnAF31zcRs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NqY07Tq7iEUGpDnPaJnAF31zcRs.png 3584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+857.6),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/NqY07Tq7iEUGpDnPaJnAF31zcRs.png\",srcSet:\"https://framerusercontent.com/images/NqY07Tq7iEUGpDnPaJnAF31zcRs.png?scale-down-to=512 512w,https://framerusercontent.com/images/NqY07Tq7iEUGpDnPaJnAF31zcRs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NqY07Tq7iEUGpDnPaJnAF31zcRs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NqY07Tq7iEUGpDnPaJnAF31zcRs.png 3584w\"},className:\"framer-4dmmi9\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+1132.6),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png\",srcSet:\"https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png?scale-down-to=512 512w,https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png 3584w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+208+0+58+0+1029.6),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png\",srcSet:\"https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png?scale-down-to=512 512w,https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png 3584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+1156.6),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png\",srcSet:\"https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png?scale-down-to=512 512w,https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HN249E3EzhyKpJa9BJmbkg8azLc.png 3584w\"},className:\"framer-1cfgr81\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+1407.6),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png\",srcSet:\"https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png?scale-down-to=512 512w,https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png 3584w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+208+0+58+0+1201.6),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png\",srcSet:\"https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png?scale-down-to=512 512w,https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png 3584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+1455.6),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png\",srcSet:\"https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png?scale-down-to=512 512w,https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uCF5OuS7Iev64ySuDRJcHj5Zps.png 3584w\"},className:\"framer-1b39y59\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+1682.6),pixelHeight:3392,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png\",srcSet:\"https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png 3584w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+208+0+58+0+1373.6),pixelHeight:3392,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png\",srcSet:\"https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png 3584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+1754.6),pixelHeight:3392,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png\",srcSet:\"https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3Ye7RQhlOlLhxfs06X5hZUln0.png 3584w\"},className:\"framer-eenv6y\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mm4a85\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-173lqbg\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"CEX Integration\"})})}),className:\"framer-111zljl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"One of the biggest challenges in DeFi is the collateral drag that comes with maintaining leveraged positions across both decentralized and centralized exchanges. This month, we made progress toward solving that problem.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Our Arkis Analytics engine now analyzes account clusters across both Ethereum margin accounts and Binance sub-accounts allowing for delta-neutral positions to be considered in aggregate margin calculations. This is a big deal because it lays the groundwork for full CEX integration, allowing clients to optimize margining across both DeFi and CeFi.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Why does this matter?\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Reduced Collateral Drag \u2013 Right now, traders have to move capital back and forth between CEXs and DeFi protocols to maintain margin. With our system, capital can be deployed more efficiently.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Lower Liquidation Risk \u2013 Because our margin engine now recognizes hedged positions on CEXs, it can prevent unnecessary liquidations that would normally occur if the system only accounted for DeFi positions.\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"This is a step toward Arkis becoming the first true DeFi/CeFi Prime Broker, allowing traders to seamlessly manage leverage across different venues. Clients are now able to apply for Arkis CEX integration, gaining dedicated Binance sub-accounts under Arkis\u2019s entity for optimized portfolio margining.\"})]}),className:\"framer-1962p4k\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+3254.2),pixelHeight:3600,pixelWidth:5760,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png\",srcSet:\"https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png 5760w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+208+0+58+0+2739.2),pixelHeight:3600,pixelWidth:5760,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png\",srcSet:\"https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png 5760w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+3373.2),pixelHeight:3600,pixelWidth:5760,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png\",srcSet:\"https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/2ew8XIB78vxbz9ySVjBLFVOZMQ.png 5760w\"},className:\"framer-rdxn5h\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+3614.2),pixelHeight:854,pixelWidth:1894,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/akFUpYfsWCwCDJPQ2fKeYTq5RT0.png\",srcSet:\"https://framerusercontent.com/images/akFUpYfsWCwCDJPQ2fKeYTq5RT0.png?scale-down-to=512 512w,https://framerusercontent.com/images/akFUpYfsWCwCDJPQ2fKeYTq5RT0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/akFUpYfsWCwCDJPQ2fKeYTq5RT0.png 1894w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+208+0+58+0+2963.2),pixelHeight:854,pixelWidth:1894,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/akFUpYfsWCwCDJPQ2fKeYTq5RT0.png\",srcSet:\"https://framerusercontent.com/images/akFUpYfsWCwCDJPQ2fKeYTq5RT0.png?scale-down-to=512 512w,https://framerusercontent.com/images/akFUpYfsWCwCDJPQ2fKeYTq5RT0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/akFUpYfsWCwCDJPQ2fKeYTq5RT0.png 1894w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+3764.2),pixelHeight:854,pixelWidth:1894,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/akFUpYfsWCwCDJPQ2fKeYTq5RT0.png\",srcSet:\"https://framerusercontent.com/images/akFUpYfsWCwCDJPQ2fKeYTq5RT0.png?scale-down-to=512 512w,https://framerusercontent.com/images/akFUpYfsWCwCDJPQ2fKeYTq5RT0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/akFUpYfsWCwCDJPQ2fKeYTq5RT0.png 1894w\"},className:\"framer-19mugwu\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hym4k\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e46toe\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Pendle LPs Now Accepted as Collateral\"})})}),className:\"framer-lh7ayi\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"We\u2019ve added Pendle LP tokens as a new collateral type. \",/*#__PURE__*/_jsx(Link,{href:\"https://www.pendle.finance/\",motionChild:true,nodeId:\"v0JUCCIPH\",openInNewTab:false,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Pendle\"})}),\" is a DeFi protocol for institutions and retail consumers that enables yield tokenization, meaning users can separate and trade the yield generated by an asset. This allows for more advanced yield strategies, including fixed-income products and leveraged yield farming. After extensive due diligence, we\u2019ve determined that Pendle meets our risk and security standards and is a strong fit for our walled garden.\"]})}),className:\"framer-ja9fgn\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+4087.8),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png\",srcSet:\"https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png?scale-down-to=512 512w,https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png 3584w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+208+0+58+0+3338.8),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png\",srcSet:\"https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png?scale-down-to=512 512w,https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png 3584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+4260.8),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png\",srcSet:\"https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png?scale-down-to=512 512w,https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/A2eqAqlg5zHyKQVAA0pnwwtplAg.png 3584w\"},className:\"framer-1e69sjo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+4362.8),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png\",srcSet:\"https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png?scale-down-to=512 512w,https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png 3584w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+208+0+58+0+3510.8),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png\",srcSet:\"https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png?scale-down-to=512 512w,https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png 3584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+124.8+0+0+4558.8),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png\",srcSet:\"https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png?scale-down-to=512 512w,https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kor0PpA9f7ioBMkzti2holv1o.png 3584w\"},className:\"framer-1is2jck\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q3u8p8\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1onlsts\",\"data-framer-name\":\"December 2024\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10oyynq\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"December 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"December 2024\"})}),className:\"framer-b6ariw\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tq29j8\",\"data-framer-name\":\"Article\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z2bdcp\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"As we close out the year, we've been hard at work bringing exciting updates to life. From real-time risk notifications to new tools like Arkis Vault and the Order Book, we're excited to continue innovating while keeping user-friendliness and security top of mind.\"})}),className:\"framer-qnd4vd\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10twsys\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Critical Event Alerts\"})})}),className:\"framer-1co6g6x\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Arkis keeps you in the loop with timely notifications for critical events. Our Telegram-based Arkis Bot sends automatic alerts, while our Slack integration and email notifications ensure you\u2019re always updated.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Looking ahead, we\u2019re working toward providing even more control over your notifications. The team is building support for fine-grain customization, including webhook integrations and the ability to configure notification channels for any system event.\"})]}),className:\"framer-c5gn1d\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+4945.6+0+0+529.6),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png\",srcSet:\"https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png 3584w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+4067.8+0+58+0+529.6),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png\",srcSet:\"https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png 3584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+5165.6+0+0+529.6),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png\",srcSet:\"https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5P5GlQo7AfDdyS3qZXVmCoKv3E.png 3584w\"},className:\"framer-1yvn8ia\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kzhkzo\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1llun1r\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Arkis Vault Beta Update\"})})}),className:\"framer-1m8s71p\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Arkis Vault simplifies investment management by pooling client funds into a single pool and allocating them across borrowers. This feature is tailored for clients seeking passive yield and provides:\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"A unified pool for efficient allocation of funds across multiple borrowers and DeFi pools and protocols whitelisted and governed by the Arkis Protocol\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Weighted yield based on the performance of selected borrowers\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Hands-off fund management handled entirely by the Arkis team\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Fund distribution managed by the Credit Manager, targeting Tier-1 certified borrowers onboarded on the Arkis Platform\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"This solution is ideal for individuals or organizations looking to generate passive income and requiring a simple and effective investment vehicle. This month's progress marked a pivotal step towards delivering a feature-complete Arkis Vault. Our simplified deposit processes for USDC, wETH, and wBTC mean optimized asset utilization within the Arkis ecosystem, all while providing investors passive yield\u2014effortlessly. We\u2019ll have more updates throughout the remainder of Q1!\"})]}),className:\"framer-1rrshf3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+4945.6+0+0+1836.2),pixelHeight:1272,pixelWidth:2688,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png\",srcSet:\"https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png?scale-down-to=512 512w,https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png 2688w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+4067.8+0+58+0+1733.2),pixelHeight:1272,pixelWidth:2688,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png\",srcSet:\"https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png?scale-down-to=512 512w,https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png 2688w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+5165.6+0+0+1859.2),pixelHeight:1272,pixelWidth:2688,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png\",srcSet:\"https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png?scale-down-to=512 512w,https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P68dbiORyCr1hXplpDOvJqc9Tw.png 2688w\"},className:\"framer-1hfvbas\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vpfw8l\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fzdbln\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Arkis Order Book and Request Pool\"})})}),className:\"framer-17v3fio\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"With the Order Book, you can now view how other participants set their lending and borrowing bids and offers in real time. Arkis Order book:\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Displays outstanding lending and borrowing proposals for various assets\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Analyzes borrower demand based on loan size, term, and borrowing rate\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Highlights APY variations as a function of collateral, LTV, and target leverage or use case\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"The Request Pool feature allows you to submit personalized requests, which will dynamically update the current state of the Order Book.\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Submit personalized lending or borrowing requests directly through the Arkis platform\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Customize your transaction by setting the asset, desired APY, and adding comments (e.g., protocol, collateral, or use case)\"})})]})]}),className:\"framer-wmhgub\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-do956h-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OXVuaEDSc\",scopeId:\"EdKx6eVWb\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:4,bottomLeftRadius:4,bottomRightRadius:4,controls:false,height:\"100%\",id:\"OXVuaEDSc\",isMixedBorderRadius:false,layoutId:\"OXVuaEDSc\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://poetic-fudge-087f04.netlify.app/Product%20Update%20December%202024.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:4,topRightRadius:4,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"Lastly, we\u2019re excited to announce our strategic partnership with \",/*#__PURE__*/_jsx(Link,{href:\"https://www.hypernative.io/\",motionChild:true,nodeId:\"PwjJ1MbKs\",openInNewTab:false,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Hypernative\"})}),\" to enhance risk management across our product suite. Hyperactive's real-time threat prevention platform will provide Arkis users with proactive risk mitigation, automated responses to potential threats, and robust protection across staking, custody, and yield-generation strategies.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"As 2024 comes to a close, we\u2019re proud to reflect on the growth and milestones we\u2019ve achieved this year. Thank you for your continued support\u2014we can\u2019t wait to share what\u2019s in store for 2025!\"})]}),className:\"framer-a16ctz\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+4945.6+0+0+3917.8),pixelHeight:2700,pixelWidth:4800,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png\",srcSet:\"https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png 4800w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+4067.8+0+58+0+3601.8),pixelHeight:2700,pixelWidth:4800,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png\",srcSet:\"https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png 4800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+5165.6+0+0+3988.8),pixelHeight:2700,pixelWidth:4800,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png\",srcSet:\"https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JCLwM3SoOUkwZYDpA88qraTBI.png 4800w\"},className:\"framer-1xzjosh\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6s8gej\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xchnfu\",\"data-framer-name\":\"November 2024\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8yljws\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"November 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"November 2024\"})}),className:\"framer-1syhfoy\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rfguc6\",\"data-framer-name\":\"Article\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3332g7\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"As we prepare to close out the year, we\u2019re ramping up to complete our goal of delivering a seamless prime brokerage experience in decentralized finance. This month, we focused on UX improvements centered around dynamic risk management and enhanced transparency. We also completed our second audit - Arkis 2.2 is here!\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Here\u2019s what\u2019s new this month:\"})]}),className:\"framer-tfcxcv\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13g1pi7\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Improved Borrow UX\"})})}),className:\"framer-15kbnzu\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"We\u2019ve streamlined the borrowing experience to make it faster, more intuitive, and efficient. Here\u2019s what\u2019s new:\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"See your Risk Factor as a function of leverage and borrowed assets\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Support for multiple collateral types\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"View LTV\"})})]})]}),className:\"framer-5lv2ea\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k0yz0x-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YLC4Xpzfs\",scopeId:\"EdKx6eVWb\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:4,bottomLeftRadius:4,bottomRightRadius:4,controls:false,height:\"100%\",id:\"YLC4Xpzfs\",isMixedBorderRadius:false,layoutId:\"YLC4Xpzfs\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://borrow-flow.netlify.app/Borrow%20Flow.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:4,topRightRadius:4,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17rbrlg\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5zz88p\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Notifications\"})})}),className:\"framer-1l74apf\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Staying on top of critical updates is now easier than ever with our real-time notifications and personalized communication channels. When a transaction opens, we create a dedicated Telegram or Slack channel for that investor, where automated alerts go directly to them if their position risk levels start to drop. If liquidation is close, we\u2019ll even call them to help ensure they can act in time.\"})}),className:\"framer-18g6vc7\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+9372.4+0+0+1595.2),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png\",srcSet:\"https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png 3584w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+8049.6+0+58+0+1458.2),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png\",srcSet:\"https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png 3584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+9691.4+0+0+1628.2),pixelHeight:1696,pixelWidth:3584,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png\",srcSet:\"https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hzHgbyTlgGJ4oJCzSFYXDPTFSE.png 3584w\"},className:\"framer-hcgw4e\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8soc7l\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jnb45l\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Investment Dashboard Update\"})})}),className:\"framer-5kqg83\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Lenders can now view both the total accrued interest and the interest that's currently claimable - all from their investment dashboard.\"})}),className:\"framer-13t40vj\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+9372.4+0+0+1870.2+0+211.6),pixelHeight:1736,pixelWidth:1792,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/D9MkYF5gYce8zbM3cVjLtAMfM.png\",srcSet:\"https://framerusercontent.com/images/D9MkYF5gYce8zbM3cVjLtAMfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/D9MkYF5gYce8zbM3cVjLtAMfM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/D9MkYF5gYce8zbM3cVjLtAMfM.png 1792w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+8049.6+0+58+0+1630.2+0+211.6),pixelHeight:1736,pixelWidth:1792,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/D9MkYF5gYce8zbM3cVjLtAMfM.png\",srcSet:\"https://framerusercontent.com/images/D9MkYF5gYce8zbM3cVjLtAMfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/D9MkYF5gYce8zbM3cVjLtAMfM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/D9MkYF5gYce8zbM3cVjLtAMfM.png 1792w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+9691.4+0+0+1927.2+0+211.6),pixelHeight:1736,pixelWidth:1792,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/D9MkYF5gYce8zbM3cVjLtAMfM.png\",srcSet:\"https://framerusercontent.com/images/D9MkYF5gYce8zbM3cVjLtAMfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/D9MkYF5gYce8zbM3cVjLtAMfM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/D9MkYF5gYce8zbM3cVjLtAMfM.png 1792w\"},className:\"framer-18gz4zc\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bvq5co\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ua7q66\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Arkis Order Book and Request Pool\"})})}),className:\"framer-mv87dz\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"With the Order Book, you can now view how other participants set their lending and borrowing bids and offers in real time. The Request Pool feature allows you to submit personalized requests, which will dynamically update the current state of the Order Book.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Arkis Order Book\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Displays outstanding lending and borrowing proposals for various assets.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Analyzes borrower demand based on loan size, term, and borrowing rate.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Highlights APY variations as a function of collateral, LTV, and target leverage or use case\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Request Pool\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Submit personalized lending or borrowing requests directly through the Arkis platform.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Customize your transaction by setting the asset, desired APY, and adding comments (e.g., protocol, collateral, or use case).\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Audit Complete\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Security is at the core of everything we do. Our second audit by Trail of Bits is complete and we have addressed all identified issues.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"Check out our December 2025 audit \",/*#__PURE__*/_jsx(Link,{href:\"https://github.com/trailofbits/publications/blob/master/reviews/2024-12-arkis-defi-prime-brokerage-securityreview.pdf\",motionChild:true,nodeId:\"FEv8KOZv6\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"here\"})}),\".\"]})]}),className:\"framer-rocx3f\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uvcos4\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14raxcn\",\"data-framer-name\":\"September 2024\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g44dzb\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"September 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"September 2024\"})}),className:\"framer-1gznbk6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bpurqs\",\"data-framer-name\":\"Article\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gqc9wc\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ysmaph\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Audit Process Initiation\"})})}),className:\"framer-1dl6hii\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"We\u2019ve kicked off the audit process with \",/*#__PURE__*/_jsx(Link,{href:\"https://www.trailofbits.com/\",motionChild:true,nodeId:\"Q3hYK_v37\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Trail of Bits\"})}),\", which is expected to last between two and four weeks. This will follow up on our previous audit by Quantstamp, viewable \",/*#__PURE__*/_jsx(Link,{href:\"https://docsend.com/view/cin9ydyh7xa2jrac\",motionChild:true,nodeId:\"Q3hYK_v37\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"here\"})}),\".\"]})}),className:\"framer-tpuu1p\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+14040.8+0+0+197.6),pixelHeight:848,pixelWidth:1792,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/leB2CQNXSd5BmhYHhCewI0r598.png\",srcSet:\"https://framerusercontent.com/images/leB2CQNXSd5BmhYHhCewI0r598.png?scale-down-to=512 512w,https://framerusercontent.com/images/leB2CQNXSd5BmhYHhCewI0r598.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/leB2CQNXSd5BmhYHhCewI0r598.png 1792w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+12261+0+58+0+197.6),pixelHeight:848,pixelWidth:1792,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/leB2CQNXSd5BmhYHhCewI0r598.png\",srcSet:\"https://framerusercontent.com/images/leB2CQNXSd5BmhYHhCewI0r598.png?scale-down-to=512 512w,https://framerusercontent.com/images/leB2CQNXSd5BmhYHhCewI0r598.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/leB2CQNXSd5BmhYHhCewI0r598.png 1792w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+14464.8+0+0+197.6),pixelHeight:848,pixelWidth:1792,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/leB2CQNXSd5BmhYHhCewI0r598.png\",srcSet:\"https://framerusercontent.com/images/leB2CQNXSd5BmhYHhCewI0r598.png?scale-down-to=512 512w,https://framerusercontent.com/images/leB2CQNXSd5BmhYHhCewI0r598.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/leB2CQNXSd5BmhYHhCewI0r598.png 1792w\"},className:\"framer-1a75vs\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ck1ap4\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8c9msg\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Arkis Asset Management Toolkit and Arkis Vault Development\"})})}),className:\"framer-1qo3pcz\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"This is designed to enable asset managers to build and manage on-chain portfolios with specific permissions. After multiple architectural discussions, we are finalizing the design and moving toward development completion. The first product utilizing the toolkit will be \",/*#__PURE__*/_jsx(\"strong\",{children:\"Arkis Vault\"}),\", allowing passive lenders to provide liquidity to Credit Managers responsible for lending pool allocations.\"]})}),className:\"framer-179i4in\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+14040.8+0+0+684.2),pixelHeight:848,pixelWidth:1792,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/luk9vHYkPZfqhyjlhlGiDO39OUs.png\",srcSet:\"https://framerusercontent.com/images/luk9vHYkPZfqhyjlhlGiDO39OUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/luk9vHYkPZfqhyjlhlGiDO39OUs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/luk9vHYkPZfqhyjlhlGiDO39OUs.png 1792w\"}},uO0aF0feT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+0+67.6+0+12261+0+58+0+581.2),pixelHeight:848,pixelWidth:1792,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 872px) - 48px)`,src:\"https://framerusercontent.com/images/luk9vHYkPZfqhyjlhlGiDO39OUs.png\",srcSet:\"https://framerusercontent.com/images/luk9vHYkPZfqhyjlhlGiDO39OUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/luk9vHYkPZfqhyjlhlGiDO39OUs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/luk9vHYkPZfqhyjlhlGiDO39OUs.png 1792w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+0+41+67.6+0+14464.8+0+0+708.2),pixelHeight:848,pixelWidth:1792,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 872px) - 48px) * 0.8 - 50px, 1px)`,src:\"https://framerusercontent.com/images/luk9vHYkPZfqhyjlhlGiDO39OUs.png\",srcSet:\"https://framerusercontent.com/images/luk9vHYkPZfqhyjlhlGiDO39OUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/luk9vHYkPZfqhyjlhlGiDO39OUs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/luk9vHYkPZfqhyjlhlGiDO39OUs.png 1792w\"},className:\"framer-13ipw3t\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1erjcnk\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-177htba\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Institutional Platform and v2 Protocol Testing\"})})}),className:\"framer-kuwubz\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Internal testing for our institutional platform is underway, with promising results so far. We plan to onboard our initial clients within the next two weeks. The platform aims to offer a comprehensive lending and borrowing experience for KYC\u2019d clients interested in institutional credit agreements.\"})}),className:\"framer-1ooogql\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c21iu9\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-177ipin\",\"data-framer-name\":\"July 2024\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1msvmyb\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"July 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"July 2024\"})}),className:\"framer-77xt70\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bl5od0\",\"data-framer-name\":\"Article\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vxxkrh\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"In June, our team at Arkis made substantial progress in advancing our platform's capabilities. Here\u2019s an overview of our major accomplishments in the last month:\"})}),className:\"framer-1utxt4q\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z8p6vd\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Partial Withdrawal Feature Implementation\"})})}),className:\"framer-1h0o8z2\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"We have successfully implemented the Partial Withdrawal feature. This allows borrowers to withdraw borrowed assets from their Arkis Margin Account if the value of their collateral exceeds the borrowed assets. This feature opens up numerous new user cases, including:\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Collateralizing Pendle PT positions to withdraw assets for use on CEX accounts.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Collateralizing exotic assets and accessing withdrawn funds at the user's convenience\"})})]})]}),className:\"framer-1l6hx6k\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17mllmh\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gf2xo7\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Migration to v2.0 - Multi-Pool System\"})})}),className:\"framer-17641r3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"We are making significant strides in migrating our architecture to version 2.0, featuring a multi-pool system. Key progress includes:\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Completed drafts of UI/UX for our institutional platform.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Nearly completed architecture of smart contracts and the margin engine within the new system.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"In Arkis v2.0, lenders will have the ability to set up various pools with predefined permissions (white-labeled assets, pools, protocols) and define corresponding interest rate models to compensate for the risk associated with each pool.\"})})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"We\u2019ll be in Brussels this week for ETHCC! We\u2019re excited to chat with lenders about our prime brokerage model, enablement of PT collateralization, and Arkis\u2019s plans over the next quarter. Also, Arkis is the only platform offering up to 4x leverage on PT tokens\u2014check out \",/*#__PURE__*/_jsx(Link,{href:\"https://blog.gumi-cryptos.com/vc/arkis-defi-prime-broker-completes-pendle-integration\",motionChild:true,nodeId:\"YhDM1vgTF\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"our latest article on our Pendle integration\"})}),\"!\"]})]}),className:\"framer-1oydzwf\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bxciw3\",\"data-framer-name\":\"About Arkis\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lxj5la\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"About Arkis\"})})}),className:\"framer-8croqs\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"Arkis offers multichain, undercollateralized leverage powered by portfolio margin. Author \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/proskurinalex?lang=en\",motionChild:true,nodeId:\"l0BQLxYD2\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Oleksandr Proskurin\"})}),\" is the Co-founder and Chief Product Officer.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can follow us on \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/arkisxyz/\",motionChild:true,nodeId:\"l0BQLxYD2\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"LinkedIn\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/arkisxyz\",motionChild:true,nodeId:\"l0BQLxYD2\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Twitter\"})}),\" and join our Announcements channel on \",/*#__PURE__*/_jsx(Link,{href:\"https://t.me/ArkisXYZ\",motionChild:true,nodeId:\"l0BQLxYD2\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Telegram\"})}),\" to be the first to hear about product updates.\"]})]}),className:\"framer-14tylkr\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1te3ve8\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ymttux\",\"data-framer-name\":\"June 2024\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p0ln2b\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"June 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"June 2024\"})}),className:\"framer-11mmf4y\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g2dbwi\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m11dw8\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"This month, Arkis hit significant milestones in our Pendle integration, launched new institutional client functionalities, and implemented several product enhancements.\"})}),className:\"framer-7g0rqv\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iriw5d\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Key Developments\"})})}),className:\"framer-1dhrss8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Pendle Integration Advances: \"}),\"We are excited to announce that next week, our first 5 institutional clients will use their weETH /sUSD Pendle PT tokens as collateral to get 4x leverage on top of collateral to open levered Pendle PT positions.\"]}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Pendle PT and SY Support:\"})}),/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Added Pendle PT entry and exit positions through AMM.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Added Pendle SY token support.\",/*#__PURE__*/_jsx(\"strong\",{children:\"\u200D\"})]})})]})]}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"\u200D\",/*#__PURE__*/_jsx(\"strong\",{children:\"Arkis 1.1 Implementation:\"}),\" Finished the implementation of Arkis 1.1, which operates on our new architecture (Onchain Portfolio Analytics) with Pendle integration included.\",/*#__PURE__*/_jsx(\"strong\",{children:\"\u200D\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Development Cluster: \"}),\"Created a dev cluster for comprehensive testing of the new architecture.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"1inch\"}),\" Adapter Enhancements: Implemented minor improvements to the 1inch adapter to enhance functionality.\",/*#__PURE__*/_jsx(\"strong\",{children:\"\u200D\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Bug Fixes and Improvements:\"}),\" Conducted various bug fixes in the Arkis dApp, particularly focusing on improving allowances.\"]})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"We were excited to meet many of you at Consensus in Austin last week as we continue with development based largely on user feedback! Please reach out for more information on our Pendle integration where users can get up to 5x leverage.\"})]}),className:\"framer-wavtz5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xpjjs1\",\"data-framer-name\":\"About Arkis\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xyb9ao\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"About Arkis\"})})}),className:\"framer-1krsqd9\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"Arkis offers multichain, undercollateralized leverage powered by portfolio margin. Author \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/proskurinalex?lang=en\",motionChild:true,nodeId:\"QhOQI9Pax\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Oleksandr Proskurin\"})}),\" is the Co-founder and Chief Product Officer.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can follow us on \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/arkisxyz/\",motionChild:true,nodeId:\"QhOQI9Pax\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"LinkedIn\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/arkisxyz\",motionChild:true,nodeId:\"QhOQI9Pax\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Twitter\"})}),\" and join our Announcements channel on \",/*#__PURE__*/_jsx(Link,{href:\"https://t.me/ArkisXYZ\",motionChild:true,nodeId:\"QhOQI9Pax\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Telegram\"})}),\" to be the first to hear about product updates.\"]})]}),className:\"framer-1ao79w2\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5witle\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xnrnv\",\"data-framer-name\":\"April 2024\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1paz2oj\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"April 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"April 2024\"})}),className:\"framer-55kau5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1at1fw\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ze4k3a\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Over the past month, our team at Arkis has made massive progress in migrating to the new architecture, progress in Pendle protocol integration, and improved UI/UX experience. Here\u2019s an overview of our major accomplishments in April:\"})}),className:\"framer-146rv92\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1guqt06\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Key Developments\"})})}),className:\"framer-y1uaa9\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Pendle Protocol Advances:\"}),\" Integrated PT and YT positions on Pendle.\"]}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Lending and Borrowing Interface:\"}),\" Improved the user experience related to allowances in our Lending and Borrowing/Opening Margin Accounts.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Design Mock-Ups:\"}),\" Generated new design mock-ups for the Lender and Borrower pages that aim to streamline the interaction process.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Institutional Engagement: \"}),\"Institutional Lenders and Asset Managers will gain access to the Arkis Platform, which will enable them to create Pools, borrow assets, and conduct client-specific transactions among themselves.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Multi-Tenancy Architecture: \"}),\"Laid the foundation for a multi-tenant architecture, allowing the creation of multiple pools for the same token and client ID. This architecture empowers lenders to set up their own pools with specific risk parameters, whitelist borrowers, and manage collateral effectively.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Memory Leak Resolution:\"}),\" Addressed and resolved a memory leak issue within our Margin Account calculations.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Liquidation Through New Architecture:\"}),\" Successfully tested liquidation process implementation in our new architecture in the development environment.\"]})})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"As we continue to evolve and expand the Arkis platform, our commitment to delivering advanced financial solutions remains stronger than ever. Please have a look at our updated \",/*#__PURE__*/_jsx(Link,{href:\"https://www.arkis.xyz/\",motionChild:true,nodeId:\"Wn2nG36Sd\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"website\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:\"https://www.arkis.xyz/about\",motionChild:true,nodeId:\"Wn2nG36Sd\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"About Us\"})}),\" pages to learn more about our vision, team, and product.\"]})]}),className:\"framer-4m0svo\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wrmshj\",\"data-framer-name\":\"About Arkis\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k3koa8\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"About Arkis\"})})}),className:\"framer-j985al\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"Arkis offers multichain, undercollateralized leverage powered by portfolio margin. Author \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/proskurinalex?lang=en\",motionChild:true,nodeId:\"TKcvLPq6F\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Oleksandr Proskurin\"})}),\" is the Co-founder and Chief Product Officer.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can follow us on \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/arkisxyz/\",motionChild:true,nodeId:\"TKcvLPq6F\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"LinkedIn\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/arkisxyz\",motionChild:true,nodeId:\"TKcvLPq6F\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Twitter\"})}),\" and join our Announcements channel on \",/*#__PURE__*/_jsx(Link,{href:\"https://t.me/ArkisXYZ\",motionChild:true,nodeId:\"TKcvLPq6F\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Telegram\"})}),\" to be the first to hear about product updates.\"]})]}),className:\"framer-qu7inj\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zmpdvr\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-116o21u\",\"data-framer-name\":\"March 2024\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-thol6v\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"March 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"March 2024\"})}),className:\"framer-1mdde17\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qtixl8\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yo4bx5\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"This March, the Arkis team has hit significant milestones in enhancing our platform's capabilities and user experience. Our efforts this month have been centered on integrating essential features such as Wallet Connect support, improving user flows for token allowances, and enhancing the overall architecture of our system. Additionally, we've made strides in optimizing our infrastructure costs and laying the groundwork for future integrations and expansions.\"})}),className:\"framer-11kq8t2\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18zugpe\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Key Developments\"})})}),className:\"framer-1qbssng\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Wallet Connect Integration: \"}),\"Added Wallet Connect support for both Lending and Borrowing operations.\"]}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"User Token Allowance Flow Enhancement:\"}),\" Implemented a more intuitive and efficient flow for user token allowances, significantly improving the user experience in liquidity provision and borrowing activities.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Margin Account Status Updates:\"}),\" Introduced 'Suspended' and 'Pending' statuses for Margin Accounts, now visible on the Arkis dApp.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Architecture Design Improvements:\"}),\" Improved the architecture design for Liquidation, Open Margin Account, and Close Margin Account, incorporating insights from the Onchain Portfolio Analytics Module for more robust system performance.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Multi-Tenancy Architecture Design Initiation: \"}),\"Began the design of a multi-tenancy architecture to enable more efficient onboarding of new clients.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"1inch Swap Integration:\"}),\" Finished integrating 1inch swap functionality and used it in our most recent transaction.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Pendle PT, YT Tokens Integration Design:\"}),\" Started the architecture design for the integration of Pendle PT and YT tokens.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"LRT Tokens Collateral Support\"})})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"AWS Infrastructure Cost Optimization: \"}),\"Achieved a 20% cost reduction in our AWS infrastructure, with further optimizations coming soon.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"New AWS Infrastructure Implementation: \"}),\"Initiated the implementation of a new AWS infrastructure, designed with multi-tenancy architecture in mind.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Executor Module for Onchain Portfolio Analytics\"})})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Second Transaction:\"}),\" Celebrated the execution of our 2nd transaction!\"]})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:'We appreciate the steadfast support of our community and look forward to continuing our journey together. In the next week, we will be launching our revamped website, complete with a detailed \"About Us\" page to provide more insight into our mission and operations. We invite you to visit us then to learn more about our initiatives and how we are evolving to meet your needs!'})]}),className:\"framer-4m7e38\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z62ek0\",\"data-framer-name\":\"About Arkis\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9fnfp6\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"About Arkis\"})})}),className:\"framer-zx8ezk\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"Arkis offers multichain, undercollateralized leverage powered by portfolio margin. Author \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/proskurinalex?lang=en\",motionChild:true,nodeId:\"R1tGw63t6\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Oleksandr Proskurin\"})}),\" is the Co-founder and Chief Product Officer.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can follow us on \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/arkisxyz/\",motionChild:true,nodeId:\"R1tGw63t6\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"LinkedIn\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/arkisxyz\",motionChild:true,nodeId:\"R1tGw63t6\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Twitter\"})}),\" and join our Announcements channel on \",/*#__PURE__*/_jsx(Link,{href:\"https://t.me/ArkisXYZ\",motionChild:true,nodeId:\"R1tGw63t6\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Telegram\"})}),\" to be the first to hear about product updates.\"]})]}),className:\"framer-194jqzk\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yw3wya\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ye8go5\",\"data-framer-name\":\"February 2024\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mfz9gr\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"February 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"February 2024\"})}),className:\"framer-1ipelp0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-733dkt\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l0dcdr\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"This February, the Arkis team has made significant strides in enhancing our platform's architecture and introducing new features to improve user experience and functionality. Our focus has been on incorporating the Onchain Portfolio Analytics component and optimizing our Allocation and Liquidation flows under the new system.\\xa0\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"We have also announced our $2.25m pre-seed round led by gumi Cryptos Capital and including G1 Ventures, Psalion VC, and Roosh Ventures. You can read more about it in \",/*#__PURE__*/_jsx(Link,{href:\"https://thedefiant.io/arkis-raises-usd2-2-million-to-accelerate-institutional-adoption-of-defi\",motionChild:true,nodeId:\"nHPkSFgc5\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"our article on The Defiant\"})}),\".\"]})]}),className:\"framer-1uv2jo4\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rv5lh2\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Key Developments\"})})}),className:\"framer-2lgc0s\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Onchain Portfolio Analytics Integration: \"}),\"A new component has been added to our ecosystem, focusing on providing users with insightful analytics on their onchain portfolios. This development is a step forward in offering comprehensive portfolio management tools.\"]}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Allocation and Liquidation Flow Upgrade: \"}),\"The team has began the development and upgrade of the Allocation and Liquidation flow, ensuring a more efficient and user-friendly experience under the newly improved architecture.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Enhanced Smart Contract Adapters for Curve and Convex: \"}),\"We have increased the test coverage for our smart contract adapters, ensuring a higher level of reliability and performance for transactions involving Curve and Convex.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"User Flow Enhancements on dApp:\"}),\" Significant improvements have been made to the user flow on our decentralized application (dApp), simplifying the liquidity deposit process. These enhancements aim to provide a more intuitive and straightforward experience for our users\"]})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"We are dedicated to continuously improving our platform and services to meet the evolving needs of our users. We thank our community for their continued support and engagement as we journey together in shaping the future of decentralized finance. Have a look at our updated website.\"})]}),className:\"framer-1qx628s\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18g7vc1\",\"data-framer-name\":\"About Arkis\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2s27hg\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"About Arkis\"})})}),className:\"framer-15xoy6i\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"Arkis offers multichain, undercollateralized leverage powered by portfolio margin. Author \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/proskurinalex?lang=en\",motionChild:true,nodeId:\"yiLYafx9_\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Oleksandr Proskurin\"})}),\" is the Co-founder and Chief Product Officer.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can follow us on \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/arkisxyz/\",motionChild:true,nodeId:\"yiLYafx9_\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"LinkedIn\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/arkisxyz\",motionChild:true,nodeId:\"yiLYafx9_\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Twitter\"})}),\" and join our Announcements channel on \",/*#__PURE__*/_jsx(Link,{href:\"https://t.me/ArkisXYZ\",motionChild:true,nodeId:\"yiLYafx9_\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Telegram\"})}),\" to be the first to hear about product updates.\"]})]}),className:\"framer-wyjx9m\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lp1omo\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13uupa3\",\"data-framer-name\":\"January 2024\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y9acxd\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"January 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"January 2024\"})}),className:\"framer-yqmkcc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e33vga\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1thtzhc\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"The past month at Arkis has been focused primarily on the development aspects of our first institutional transaction, which you can expect in mid February. This phase is crucial as it sets the stage for our public launch.\"})}),className:\"framer-ci1a3n\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z81p76\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Key Developments\"})})}),className:\"framer-1pzg1fj\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Curve LP Position as Collateral Implementation:\"}),\" The implementation for using Curve LP positions as collateral is now complete. This addition broadens our collateral options.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"1Inch Liquidation Process Revision and Debugging:\"}),\" We've conducted a revision and debugging of the 1Inch liquidation process, including trials on the Ethereum blockchain to ensure its operational stability.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Convex Adapter Testing on Ethereum Blockchain: \"}),\"The Convex adapter has been rigorously tested and debugged on the Ethereum blockchain, confirming its integration and functionality.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Margin Account and Wallet Connect Functionality for Convex/Curve: \"}),\"New functionalities have been implemented for trading and pooling on Convex/Curve through Margin Account and Wallet Connect, enhancing user transaction options.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Deployment and CI/CD Process Enhancements:\"}),\" Updates to our deployment and CI/CD processes have been made, leading to a more efficient development and debugging cycle.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Onchain Portfolio Analytics Module Progress: \"}),\"Development is underway on the Onchain Portfolio Analytics module. This module is expected to streamline the integration of new protocols like Pendle and Equilibria.\"]})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"We are committed to maintaining steady progress and keeping our stakeholders informed of key advancements in our technology and offering, and we thank you for your ongoing engagement and interest in our work. Look forward to our first institutional transaction next month!\"})]}),className:\"framer-lzp7o1\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xhz8r3\",\"data-framer-name\":\"About Arkis\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t1wh0g\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"About Arkis\"})})}),className:\"framer-1209mh9\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"Arkis offers multichain, undercollateralized leverage powered by portfolio margin. Author \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/proskurinalex?lang=en\",motionChild:true,nodeId:\"cWNOR4hVK\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Oleksandr Proskurin\"})}),\" is the Co-founder and Chief Product Officer.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can follow us on \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/arkisxyz/\",motionChild:true,nodeId:\"cWNOR4hVK\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"LinkedIn\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/arkisxyz\",motionChild:true,nodeId:\"cWNOR4hVK\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Twitter\"})}),\" and join our Announcements channel on \",/*#__PURE__*/_jsx(Link,{href:\"https://t.me/ArkisXYZ\",motionChild:true,nodeId:\"cWNOR4hVK\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Telegram\"})}),\" to be the first to hear about product updates.\"]})]}),className:\"framer-w0ka8x\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fbez6i\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-suhhne\",\"data-framer-name\":\"December 2023\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cjg1ho\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"December 2023\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"December 2023\"})}),className:\"framer-1mwkeba\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gokzo2\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-km193p\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Happy New Year from the Arkis team!\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"This month, we\u2019ve concentrated on strengthening the core aspects of our platform, from making backend improvements to implementing advanced features in our smart contracts, thanks to the completion of the first pass of our audit.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Here's an insight into our key accomplishments and developments over the last month:\"})]}),className:\"framer-lujcgz\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dabx6n\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Backend Updates\"})})}),className:\"framer-scuj1n\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Stabilized and tested yield-farming capabilities through Margin Account on Convex protocol.\"})}),className:\"framer-9nxzoq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e0t2l3\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Blockchain Updates\"})})}),className:\"framer-romtyc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Continued progress in the implementation of our Onchain Portfolio Analytics module, which will optimize and speed up the process of integrating new protocols into the Arkis ecosystem. This will be integrated into our production systems by the end of January.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Updated Arkis codebase version in response to delivery of initial audit report by Quantstamp. All issues highlighted in the report have been amended and are awaiting final check to pass the audit.\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Our mission to accelerate the maturity of DeFi remains our driving force. We\u2019re excited about what\u2019s to come in 2024, and we thank you for being along for the ride!\"})]}),className:\"framer-1b6idbh\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-65qdkt\",\"data-framer-name\":\"About Arkis\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1owuav6\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"About Arkis\"})})}),className:\"framer-17l9j0g\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"Arkis \u2014 DeFi Prime Broker offers multichain, undercollateralized leverage powered by portfolio margin. Author \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/proskurinalex?lang=en\",motionChild:true,nodeId:\"Ucd6C3uNN\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Oleksandr Proskurin\"})}),\" is the Co-founder and Chief Product Officer.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can follow us on \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/arkisxyz/\",motionChild:true,nodeId:\"Ucd6C3uNN\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"LinkedIn\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/arkisxyz\",motionChild:true,nodeId:\"Ucd6C3uNN\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Twitter\"})}),\" and join our Announcements channel on \",/*#__PURE__*/_jsx(Link,{href:\"https://t.me/ArkisXYZ\",motionChild:true,nodeId:\"Ucd6C3uNN\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Telegram\"})}),\" to be the first to hear about product updates.\"]})]}),className:\"framer-1jnjkc2\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yzg447\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qn4zjh\",\"data-framer-name\":\"November 2023\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8vs7x3\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"November 2023\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"November 2023\"})}),className:\"framer-1sluzvk\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nzhi5j\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ga6j3\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"As the leaves change color and the year nears its end, the Arkis team remains steadfast in its commitment to innovation and excellence in the world of DeFi. November has been a month of significant strides, marked by key updates across our backend, blockchain, and frontend domains.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"From migrating to the latest technology on our development node and smart contracts to enhancing user experience with new front-end features, our journey continues to be as exciting as it is challenging. Here's a glimpse into what we've been up to this past month:\"})]}),className:\"framer-qh49az\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ip24n6\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Backend Updates\"})})}),className:\"framer-1ttbqau\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Successfully migrated to an updated version on our development node and smart contracts, marking a significant step in our technological evolution.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Conducted thorough testing of our liquidation plan generation, focusing on open LP positions liquidation.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Developed several frontend endpoints, including those for detecting LP as collateral to open leveraged positions and for closing open margin accounts.\"})})]})}),className:\"framer-mmea0n\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hxffpq\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Blockchain Updates\"})})}),className:\"framer-5hzo4a\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Launched a special adapters linter, streamlining the process of integrating new protocols.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Made significant progress in the implementation of our Onchain Portfolio Analytics module.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Engaged in detailed discussions with the Quantstamp audit team about our code, architecture, and the specifics of our implementation.\"})})]})}),className:\"framer-oa18s0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pa07zl\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Frontend Updates\"})})}),className:\"framer-ijw308\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Implemented WalletConnect trading without UI lock-up, allowing seamless trade on Curve through the Curve interface using Margin Account.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Rolled out the logic for closing margin accounts, enabling borrowers to close their accounts, repay debts, and withdraw profits efficiently.\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"As we look back at November, our integration of new technologies, continual testing and refinement of our platforms, and constant dialogue with our audit team brings us one month closer to public launch.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"As we gear up for the exciting times ahead, we invite you to stay tuned for more updates on our social platforms linked below. Your support and feedback are invaluable to us on this journey towards accelerating the maturity of DeFi.\\xa0\"})]}),className:\"framer-1f8v7tv\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qa42fx\",\"data-framer-name\":\"About Arkis\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mrgstw\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"About Arkis\"})})}),className:\"framer-1ys9cxb\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"Arkis offers multichain, undercollateralized leverage powered by portfolio margin. Author \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/proskurinalex?lang=en\",motionChild:true,nodeId:\"dvJIO8KwR\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Oleksandr Proskurin\"})}),\" is the Co-founder and Chief Product Officer.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can follow us on \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/arkisxyz/\",motionChild:true,nodeId:\"dvJIO8KwR\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"LinkedIn\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/arkisxyz\",motionChild:true,nodeId:\"dvJIO8KwR\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Twitter\"})}),\" and join our Announcements channel on \",/*#__PURE__*/_jsx(Link,{href:\"https://t.me/ArkisXYZ\",motionChild:true,nodeId:\"dvJIO8KwR\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Telegram\"})}),\" to be the first to hear about product updates.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can apply by joining \",/*#__PURE__*/_jsx(Link,{href:\"https://1j31a5k2ydj.typeform.com/arkiscontact\",motionChild:true,nodeId:\"dvJIO8KwR\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"our exclusive allowlist\"})}),\" to be the first to access Arkis. For updates straight to your inbox, join our \",/*#__PURE__*/_jsx(Link,{href:\"https://arkis.substack.com/\",motionChild:true,nodeId:\"dvJIO8KwR\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"biweekly newsletter.\"})})]})]}),className:\"framer-1ku32o5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xdd4z1\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-116ed5a\",\"data-framer-name\":\"May 2023\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pl91cz\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"May 2023\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"May 2023\"})}),className:\"framer-1x9zdhp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5tjy5t\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18z61jd\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Arkis\u2019s Product team is full-steam ahead towards an expected test-net launch around October 2023. During the month of May, our Backend and Blockchain teams were able to send the first liquidation instructions to a local node blockchain smart contract to liquidate traders\u2019 positions. Secondly, our engineers generated stress-tested portfolio values for the Uniswap V3 position for one of our wallets.\"})}),className:\"framer-680nza\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m9xbw\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Backend\"})})}),className:\"framer-k7m3ik\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Integration of Curve and Convex protocols whitelisting\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Token stress-tested scenario analysis API endpoints.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Stress-testing endpoint for Uniswap V3.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Liquidation routing action list generation for Curve, Convex, Uniswap V3, and tokens.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Formalized the architecture and decision process for the Risk Factor and Liquidation signal.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Created Ethereum wallets with test-case positions to battle-test Margin Engine.\"})})]})}),className:\"framer-10z4oh5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-arvtd9\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Blockchain\"})})}),className:\"framer-1dos4gc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Finished governance system architecture design.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Started architecture merge with backend into a single process and decision flow.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Started AAVE protocol integration.\"})})]})}),className:\"framer-1cbvi0j\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aoylif\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"UI/UX, Frontend\"})})}),className:\"framer-190qrxr\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Design and implementation of supply tokens flow.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Design of multi-collateral borrow flow (meaning a user can use any whitelisted tokens as collateral).\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"Over the next few months, the Product team is aiming to create proper code refactoring of our Margin Engine and undergo more integration tests of its functionality. In the meantime, our blockchain team will be busy integrating AAVE and 1inch protocols into Arkis Protocol. Finally, our Design and Frontend team will continue the development of borrow flow.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"We\u2019re excited about the future, and we\u2019ll continue building in public.\"})]}),className:\"framer-j2qb75\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c1zfzw\",\"data-framer-name\":\"About Arkis\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13slbhw\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"About Arkis\"})})}),className:\"framer-comtk4\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"Arkis \u2014 DeFi Prime Broker offers multichain, undercollateralized leverage powered by portfolio margin. Author \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/proskurinalex?lang=en\",motionChild:true,nodeId:\"aCF6N462S\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Oleksandr Proskurin\"})}),\" is the Co-founder and Chief Product Officer.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can follow us on \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/arkisxyz/\",motionChild:true,nodeId:\"aCF6N462S\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"LinkedIn\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/arkisxyz\",motionChild:true,nodeId:\"aCF6N462S\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Twitter\"})}),\" and join our Announcements channel on \",/*#__PURE__*/_jsx(Link,{href:\"https://t.me/ArkisXYZ\",motionChild:true,nodeId:\"aCF6N462S\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Telegram\"})}),\" to be the first to hear about product updates.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can apply by joining \",/*#__PURE__*/_jsx(Link,{href:\"https://1j31a5k2ydj.typeform.com/arkiscontact\",motionChild:true,nodeId:\"aCF6N462S\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"our exclusive allowlist\"})}),\" to be the first to access Arkis. For updates straight to your inbox, join our \",/*#__PURE__*/_jsx(Link,{href:\"https://arkis.substack.com/\",motionChild:true,nodeId:\"aCF6N462S\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"biweekly newsletter.\"})})]})]}),className:\"framer-z2dyu6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e31znx\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1apzkru\",\"data-framer-name\":\"June 2023\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kv061r\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1i4nm6n\",\"data-styles-preset\":\"NiMUhCkVb\",children:\"June 2023\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"June 2023\"})}),className:\"framer-1czbunv\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w9jbxu\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tjk24x\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"June saw successful product development from our Backend, Blockchain, and UI/UX & Frontend teams. This month was dedicated to refactoring the current code base, improving our infrastructure, and creating smart contracts for opening margin accounts. We\u2019re on track for testnet launch in October 2023.\"})}),className:\"framer-19vuvn0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mtyu61\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Backend\"})})}),className:\"framer-b7py7d\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Deployed local blockchain node used to test smart contracts interactions with our backend servers.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Refactored current code base.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Implemented linear interest rate accrue endpoint (Interest accrued = APY / (365- n days since credit has been taken).\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Finished AWS set-up for dev environments.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Started user-testing by our internal trading team of Risk-Factor and Stress-Tested Portfolio Value calculation endpoints.\"})})]})}),className:\"framer-1o2ezx7\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1higybs\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Blockchain\"})})}),className:\"framer-cgujx2\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Finished open Margin Account functionality implementation (with ERC20 tokens for now only).\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Refined architecture. Now, Margin Account open relies on a signature generated by the backend with initial Risk Factor calculation.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Progressed on Margin Account Factory development.\"})})]})}),className:\"framer-amtppn\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j2u8ef\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"UI/UX, Frontend\"})})}),className:\"framer-zf61mq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u2705 Implemented APY matrix page where users can see available APYs across tokens and chains.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Proceeded with rebranding and generating new design assets (some news to be announced soon!).\"})})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"Be the first to hear about live product development updates on our social platforms (linked below) and our \",/*#__PURE__*/_jsx(Link,{href:\"https://blinkfinancexyz.substack.com/\",motionChild:true,nodeId:\"dRsFSHgE3\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"biweekly newsletter\"})}),\". Targeted testnet launch is only 3 months away, and we aim to make our first transaction soon.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:\"We look forward to continuing to build in public.\"})]}),className:\"framer-1dhrwnm\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wsnqh5\",\"data-framer-name\":\"About Arkis\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tzp4md\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oriq0s\",\"data-styles-preset\":\"sLJhJzptG\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"About Arkis\"})})}),className:\"framer-18cge2d\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Arkis \u2014 DeFi Prime Broker\"}),\" offers multichain, undercollateralized leverage powered by portfolio margin. Author \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/proskurinalex\",motionChild:true,nodeId:\"hBg5LRPtr\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Oleksandr Proskurin\"})})}),\" is the Co-founder and Chief Product Officer.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can follow us on \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/arkisxyz/\",motionChild:true,nodeId:\"hBg5LRPtr\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"LinkedIn\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/arkisxyz\",motionChild:true,nodeId:\"hBg5LRPtr\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Twitter\"})}),\" and join our Announcements channel on \",/*#__PURE__*/_jsx(Link,{href:\"https://t.me/ArkisXYZ\",motionChild:true,nodeId:\"hBg5LRPtr\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"Telegram\"})}),\" to be the first to hear about product updates.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-r0c459\",\"data-styles-preset\":\"a8HQEwzk1\",children:[\"You can apply by joining \",/*#__PURE__*/_jsx(Link,{href:\"https://1j31a5k2ydj.typeform.com/arkiscontact\",motionChild:true,nodeId:\"hBg5LRPtr\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"our exclusive allowlist\"})}),\" to be the first to access Arkis. For updates straight to your inbox, join our \",/*#__PURE__*/_jsx(Link,{href:\"https://arkis.substack.com/\",motionChild:true,nodeId:\"hBg5LRPtr\",openInNewTab:true,scopeId:\"EdKx6eVWb\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19a2a8q\",\"data-styles-preset\":\"dnK800nX4\",children:\"biweekly newsletter.\"})})]})]}),className:\"framer-losw39\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1btpche\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{width:`calc(${componentViewport?.width||\"100vw\"} - 96px)`,y:(componentViewport?.y||0)+0+39193+0+0},uO0aF0feT:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+37164.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"1200px\",y:(componentViewport?.y||0)+0+39665+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kmj55f-container\",nodeId:\"EAXBiV_sa\",scopeId:\"EdKx6eVWb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RO8SanXBM:{variant:\"nqFrzHr1Z\"},uO0aF0feT:{variant:\"fnxIJKapB\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"EAXBiV_sa\",layoutId:\"EAXBiV_sa\",style:{width:\"100%\"},variant:\"XEMLYeRJl\",width:\"100%\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uO0aF0feT:{height:54,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mlbhty-container hidden-1t4k3in hidden-1741fzb\",layoutScroll:true,nodeId:\"jjkPbJOJq\",scopeId:\"EdKx6eVWb\",children:/*#__PURE__*/_jsx(NavbarMobileOnly,{height:\"100%\",id:\"jjkPbJOJq\",layoutId:\"jjkPbJOJq\",style:{width:\"100%\"},variant:\"wwyeGZFLQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f9rfej\",\"data-border\":true,\"data-framer-name\":\"Border\"})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PYNud.framer-1xa5wdn, .framer-PYNud .framer-1xa5wdn { display: block; }\",\".framer-PYNud.framer-1t4k3in { align-content: center; align-items: center; background-color: var(--token-0fef0d84-773a-4cc4-83be-3e6bddc1b3a5, #09090b); 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-PYNud .framer-1p01qdd-container { flex: none; height: auto; left: 20px; mix-blend-mode: difference; position: fixed; right: 20px; top: 20px; z-index: 9; }\",\".framer-PYNud .framer-z8sx67 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 872px; padding: 128px 24px 28px 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-PYNud .framer-1vdnpgy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 41px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-PYNud .framer-272wug { flex: none; height: auto; max-width: 576px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PYNud .framer-12uc9py { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PYNud .framer-twl1oz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PYNud .framer-1wzuu8p { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-PYNud .framer-1vj7voc, .framer-PYNud .framer-1onlsts, .framer-PYNud .framer-xchnfu, .framer-PYNud .framer-14raxcn, .framer-PYNud .framer-177ipin, .framer-PYNud .framer-ymttux, .framer-PYNud .framer-xnrnv, .framer-PYNud .framer-116o21u, .framer-PYNud .framer-ye8go5, .framer-PYNud .framer-13uupa3, .framer-PYNud .framer-suhhne, .framer-PYNud .framer-1qn4zjh, .framer-PYNud .framer-116ed5a, .framer-PYNud .framer-1apzkru { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PYNud .framer-xiojd5, .framer-PYNud .framer-10oyynq, .framer-PYNud .framer-8yljws, .framer-PYNud .framer-1g44dzb, .framer-PYNud .framer-1msvmyb, .framer-PYNud .framer-p0ln2b, .framer-PYNud .framer-1paz2oj, .framer-PYNud .framer-thol6v, .framer-PYNud .framer-1mfz9gr, .framer-PYNud .framer-1y9acxd, .framer-PYNud .framer-cjg1ho, .framer-PYNud .framer-8vs7x3, .framer-PYNud .framer-pl91cz, .framer-PYNud .framer-kv061r { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20%; }\",\".framer-PYNud .framer-1qpfyz9, .framer-PYNud .framer-b6ariw, .framer-PYNud .framer-1syhfoy, .framer-PYNud .framer-1gznbk6, .framer-PYNud .framer-77xt70, .framer-PYNud .framer-11mmf4y, .framer-PYNud .framer-55kau5, .framer-PYNud .framer-1mdde17, .framer-PYNud .framer-1ipelp0, .framer-PYNud .framer-yqmkcc, .framer-PYNud .framer-1mwkeba, .framer-PYNud .framer-1sluzvk, .framer-PYNud .framer-1x9zdhp, .framer-PYNud .framer-1czbunv { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-PYNud .framer-1026m73, .framer-PYNud .framer-1tq29j8, .framer-PYNud .framer-rfguc6, .framer-PYNud .framer-bpurqs, .framer-PYNud .framer-bl5od0, .framer-PYNud .framer-1g2dbwi, .framer-PYNud .framer-1at1fw, .framer-PYNud .framer-1qtixl8, .framer-PYNud .framer-733dkt, .framer-PYNud .framer-e33vga, .framer-PYNud .framer-1gokzo2, .framer-PYNud .framer-nzhi5j, .framer-PYNud .framer-5tjy5t, .framer-PYNud .framer-w9jbxu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-PYNud .framer-1e4pr1w, .framer-PYNud .framer-mm4a85, .framer-PYNud .framer-1hym4k, .framer-PYNud .framer-z2bdcp, .framer-PYNud .framer-kzhkzo, .framer-PYNud .framer-vpfw8l, .framer-PYNud .framer-3332g7, .framer-PYNud .framer-17rbrlg, .framer-PYNud .framer-8soc7l, .framer-PYNud .framer-1bvq5co, .framer-PYNud .framer-gqc9wc, .framer-PYNud .framer-ysmaph, .framer-PYNud .framer-ck1ap4, .framer-PYNud .framer-1erjcnk, .framer-PYNud .framer-1vxxkrh, .framer-PYNud .framer-17mllmh, .framer-PYNud .framer-1bxciw3, .framer-PYNud .framer-m11dw8, .framer-PYNud .framer-1xpjjs1, .framer-PYNud .framer-ze4k3a, .framer-PYNud .framer-wrmshj, .framer-PYNud .framer-1yo4bx5, .framer-PYNud .framer-z62ek0, .framer-PYNud .framer-1l0dcdr, .framer-PYNud .framer-18g7vc1, .framer-PYNud .framer-1thtzhc, .framer-PYNud .framer-xhz8r3, .framer-PYNud .framer-km193p, .framer-PYNud .framer-65qdkt, .framer-PYNud .framer-16ga6j3, .framer-PYNud .framer-qa42fx, .framer-PYNud .framer-18z61jd, .framer-PYNud .framer-c1zfzw, .framer-PYNud .framer-tjk24x, .framer-PYNud .framer-wsnqh5, .framer-PYNud .framer-1btpche { align-content: center; align-items: center; 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-PYNud .framer-1cjmk9y, .framer-PYNud .framer-kk6pwi, .framer-PYNud .framer-1r2vpsq, .framer-PYNud .framer-111zljl, .framer-PYNud .framer-1962p4k, .framer-PYNud .framer-lh7ayi, .framer-PYNud .framer-ja9fgn, .framer-PYNud .framer-qnd4vd, .framer-PYNud .framer-1co6g6x, .framer-PYNud .framer-c5gn1d, .framer-PYNud .framer-1m8s71p, .framer-PYNud .framer-1rrshf3, .framer-PYNud .framer-17v3fio, .framer-PYNud .framer-wmhgub, .framer-PYNud .framer-a16ctz, .framer-PYNud .framer-tfcxcv, .framer-PYNud .framer-15kbnzu, .framer-PYNud .framer-5lv2ea, .framer-PYNud .framer-1l74apf, .framer-PYNud .framer-18g6vc7, .framer-PYNud .framer-5kqg83, .framer-PYNud .framer-13t40vj, .framer-PYNud .framer-mv87dz, .framer-PYNud .framer-rocx3f, .framer-PYNud .framer-1dl6hii, .framer-PYNud .framer-tpuu1p, .framer-PYNud .framer-1qo3pcz, .framer-PYNud .framer-179i4in, .framer-PYNud .framer-kuwubz, .framer-PYNud .framer-1ooogql, .framer-PYNud .framer-1utxt4q, .framer-PYNud .framer-1h0o8z2, .framer-PYNud .framer-1l6hx6k, .framer-PYNud .framer-17641r3, .framer-PYNud .framer-1oydzwf, .framer-PYNud .framer-8croqs, .framer-PYNud .framer-14tylkr, .framer-PYNud .framer-7g0rqv, .framer-PYNud .framer-1dhrss8, .framer-PYNud .framer-wavtz5, .framer-PYNud .framer-1krsqd9, .framer-PYNud .framer-1ao79w2, .framer-PYNud .framer-146rv92, .framer-PYNud .framer-y1uaa9, .framer-PYNud .framer-4m0svo, .framer-PYNud .framer-j985al, .framer-PYNud .framer-qu7inj, .framer-PYNud .framer-11kq8t2, .framer-PYNud .framer-1qbssng, .framer-PYNud .framer-4m7e38, .framer-PYNud .framer-zx8ezk, .framer-PYNud .framer-194jqzk, .framer-PYNud .framer-1uv2jo4, .framer-PYNud .framer-2lgc0s, .framer-PYNud .framer-1qx628s, .framer-PYNud .framer-15xoy6i, .framer-PYNud .framer-wyjx9m, .framer-PYNud .framer-ci1a3n, .framer-PYNud .framer-1pzg1fj, .framer-PYNud .framer-lzp7o1, .framer-PYNud .framer-1209mh9, .framer-PYNud .framer-w0ka8x, .framer-PYNud .framer-lujcgz, .framer-PYNud .framer-scuj1n, .framer-PYNud .framer-9nxzoq, .framer-PYNud .framer-romtyc, .framer-PYNud .framer-1b6idbh, .framer-PYNud .framer-17l9j0g, .framer-PYNud .framer-1jnjkc2, .framer-PYNud .framer-qh49az, .framer-PYNud .framer-1ttbqau, .framer-PYNud .framer-mmea0n, .framer-PYNud .framer-5hzo4a, .framer-PYNud .framer-oa18s0, .framer-PYNud .framer-ijw308, .framer-PYNud .framer-1f8v7tv, .framer-PYNud .framer-1ys9cxb, .framer-PYNud .framer-1ku32o5, .framer-PYNud .framer-680nza, .framer-PYNud .framer-k7m3ik, .framer-PYNud .framer-10z4oh5, .framer-PYNud .framer-1dos4gc, .framer-PYNud .framer-1cbvi0j, .framer-PYNud .framer-190qrxr, .framer-PYNud .framer-j2qb75, .framer-PYNud .framer-comtk4, .framer-PYNud .framer-z2dyu6, .framer-PYNud .framer-19vuvn0, .framer-PYNud .framer-b7py7d, .framer-PYNud .framer-1o2ezx7, .framer-PYNud .framer-cgujx2, .framer-PYNud .framer-amtppn, .framer-PYNud .framer-zf61mq, .framer-PYNud .framer-1dhrwnm, .framer-PYNud .framer-18cge2d, .framer-PYNud .framer-losw39 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PYNud .framer-5k4yhc, .framer-PYNud .framer-173lqbg, .framer-PYNud .framer-e46toe, .framer-PYNud .framer-10twsys, .framer-PYNud .framer-1llun1r, .framer-PYNud .framer-1fzdbln, .framer-PYNud .framer-13g1pi7, .framer-PYNud .framer-5zz88p, .framer-PYNud .framer-1jnb45l, .framer-PYNud .framer-1ua7q66, .framer-PYNud .framer-8c9msg, .framer-PYNud .framer-177htba, .framer-PYNud .framer-z8p6vd, .framer-PYNud .framer-gf2xo7, .framer-PYNud .framer-1lxj5la, .framer-PYNud .framer-1iriw5d, .framer-PYNud .framer-1xyb9ao, .framer-PYNud .framer-1guqt06, .framer-PYNud .framer-1k3koa8, .framer-PYNud .framer-18zugpe, .framer-PYNud .framer-9fnfp6, .framer-PYNud .framer-1rv5lh2, .framer-PYNud .framer-2s27hg, .framer-PYNud .framer-z81p76, .framer-PYNud .framer-t1wh0g, .framer-PYNud .framer-dabx6n, .framer-PYNud .framer-1e0t2l3, .framer-PYNud .framer-1owuav6, .framer-PYNud .framer-ip24n6, .framer-PYNud .framer-hxffpq, .framer-PYNud .framer-1pa07zl, .framer-PYNud .framer-mrgstw, .framer-PYNud .framer-1m9xbw, .framer-PYNud .framer-arvtd9, .framer-PYNud .framer-aoylif, .framer-PYNud .framer-13slbhw, .framer-PYNud .framer-mtyu61, .framer-PYNud .framer-1higybs, .framer-PYNud .framer-j2u8ef, .framer-PYNud .framer-1tzp4md { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 14px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-PYNud .framer-4dmmi9, .framer-PYNud .framer-1cfgr81, .framer-PYNud .framer-1b39y59, .framer-PYNud .framer-1is2jck, .framer-PYNud .framer-1hfvbas, .framer-PYNud .framer-hcgw4e, .framer-PYNud .framer-1a75vs, .framer-PYNud .framer-13ipw3t { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 289px; position: relative; width: 100%; }\",\".framer-PYNud .framer-eenv6y { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 577px; position: relative; width: 100%; }\",\".framer-PYNud .framer-rdxn5h { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 381px; position: relative; width: 100%; }\",\".framer-PYNud .framer-19mugwu { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 275px; position: relative; width: 100%; }\",\".framer-PYNud .framer-1e69sjo, .framer-PYNud .framer-1yvn8ia { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 288px; position: relative; width: 100%; }\",\".framer-PYNud .framer-1q3u8p8, .framer-PYNud .framer-6s8gej, .framer-PYNud .framer-uvcos4, .framer-PYNud .framer-c21iu9, .framer-PYNud .framer-1te3ve8, .framer-PYNud .framer-5witle, .framer-PYNud .framer-zmpdvr, .framer-PYNud .framer-1yw3wya, .framer-PYNud .framer-lp1omo, .framer-PYNud .framer-fbez6i, .framer-PYNud .framer-1yzg447, .framer-PYNud .framer-xdd4z1, .framer-PYNud .framer-1e31znx { background-color: #1f2228; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-PYNud .framer-do956h-container { flex: none; height: 307px; position: relative; width: 100%; }\",\".framer-PYNud .framer-1xzjosh { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 344px; position: relative; width: 100%; }\",\".framer-PYNud .framer-k0yz0x-container { flex: none; height: 385px; position: relative; width: 100%; }\",\".framer-PYNud .framer-18gz4zc { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 590px; position: relative; width: 100%; }\",\".framer-PYNud .framer-1kmj55f-container { flex: none; height: auto; position: relative; width: 1200px; z-index: 1; }\",\".framer-PYNud .framer-1mlbhty-container { flex: none; height: auto; left: 8px; position: fixed; right: 8px; top: 8px; z-index: 10; }\",\".framer-PYNud .framer-1f9rfej { --border-bottom-width: 20px; --border-color: var(--token-01f928f1-a230-4a6d-81e8-e4b4321b5087, #12574a); --border-left-width: 20px; --border-right-width: 20px; --border-style: solid; --border-top-width: 20px; bottom: 0px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: fixed; right: 0px; top: 0px; z-index: 10; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-PYNud[data-border=\"true\"]::after, .framer-PYNud [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-PYNud.framer-1t4k3in { width: 810px; } .framer-PYNud .framer-twl1oz { order: 0; } .framer-PYNud .framer-1vj7voc { order: 1; } .framer-PYNud .framer-4dmmi9, .framer-PYNud .framer-1cfgr81, .framer-PYNud .framer-1b39y59, .framer-PYNud .framer-1e69sjo, .framer-PYNud .framer-1is2jck, .framer-PYNud .framer-1yvn8ia, .framer-PYNud .framer-1hfvbas, .framer-PYNud .framer-hcgw4e, .framer-PYNud .framer-1a75vs, .framer-PYNud .framer-13ipw3t { height: 265px; } .framer-PYNud .framer-eenv6y { height: 530px; } .framer-PYNud .framer-rdxn5h { height: 350px; } .framer-PYNud .framer-19mugwu { height: 252px; } .framer-PYNud .framer-1q3u8p8 { order: 2; } .framer-PYNud .framer-1onlsts { order: 3; } .framer-PYNud .framer-do956h-container { height: 283px; } .framer-PYNud .framer-1xzjosh { height: 316px; } .framer-PYNud .framer-6s8gej { order: 4; } .framer-PYNud .framer-xchnfu { order: 5; } .framer-PYNud .framer-k0yz0x-container { height: 352px; } .framer-PYNud .framer-18gz4zc { height: 542px; } .framer-PYNud .framer-uvcos4 { order: 6; } .framer-PYNud .framer-14raxcn { order: 7; } .framer-PYNud .framer-c21iu9 { order: 8; } .framer-PYNud .framer-177ipin { order: 9; } .framer-PYNud .framer-1te3ve8 { order: 10; } .framer-PYNud .framer-ymttux { order: 11; } .framer-PYNud .framer-5witle { order: 12; } .framer-PYNud .framer-xnrnv { order: 13; } .framer-PYNud .framer-zmpdvr { order: 14; } .framer-PYNud .framer-116o21u { order: 15; } .framer-PYNud .framer-1yw3wya { order: 16; } .framer-PYNud .framer-ye8go5 { order: 17; } .framer-PYNud .framer-lp1omo { order: 18; } .framer-PYNud .framer-13uupa3 { order: 19; } .framer-PYNud .framer-fbez6i { order: 20; } .framer-PYNud .framer-suhhne { order: 21; } .framer-PYNud .framer-1yzg447 { order: 22; } .framer-PYNud .framer-1qn4zjh { order: 23; } .framer-PYNud .framer-xdd4z1 { order: 24; } .framer-PYNud .framer-116ed5a { order: 25; } .framer-PYNud .framer-1e31znx { order: 26; } .framer-PYNud .framer-1apzkru { order: 27; } .framer-PYNud .framer-1btpche { padding: 0px 48px 0px 48px; } .framer-PYNud .framer-1kmj55f-container { width: 100%; }}\",\"@media (max-width: 809px) { .framer-PYNud.framer-1t4k3in { width: 390px; } .framer-PYNud .framer-z8sx67, .framer-PYNud .framer-kzhkzo, .framer-PYNud .framer-17rbrlg, .framer-PYNud .framer-ck1ap4, .framer-PYNud .framer-1bxciw3 { order: 2; } .framer-PYNud .framer-1vdnpgy { padding: 0px; } .framer-PYNud .framer-12uc9py { gap: 64px; } .framer-PYNud .framer-1wzuu8p { flex: 1 0 0px; width: 1px; } .framer-PYNud .framer-1vj7voc, .framer-PYNud .framer-1onlsts, .framer-PYNud .framer-xchnfu, .framer-PYNud .framer-14raxcn, .framer-PYNud .framer-177ipin, .framer-PYNud .framer-ymttux, .framer-PYNud .framer-xnrnv, .framer-PYNud .framer-116o21u, .framer-PYNud .framer-ye8go5, .framer-PYNud .framer-13uupa3, .framer-PYNud .framer-suhhne, .framer-PYNud .framer-1qn4zjh, .framer-PYNud .framer-116ed5a, .framer-PYNud .framer-1apzkru { flex-direction: column; gap: 10px; } .framer-PYNud .framer-xiojd5, .framer-PYNud .framer-10oyynq, .framer-PYNud .framer-8yljws, .framer-PYNud .framer-1msvmyb, .framer-PYNud .framer-p0ln2b, .framer-PYNud .framer-1paz2oj, .framer-PYNud .framer-thol6v, .framer-PYNud .framer-1mfz9gr, .framer-PYNud .framer-1y9acxd, .framer-PYNud .framer-cjg1ho, .framer-PYNud .framer-8vs7x3, .framer-PYNud .framer-pl91cz, .framer-PYNud .framer-kv061r { align-self: unset; height: min-content; width: 100%; } .framer-PYNud .framer-1026m73, .framer-PYNud .framer-1tq29j8, .framer-PYNud .framer-rfguc6, .framer-PYNud .framer-bl5od0, .framer-PYNud .framer-1g2dbwi, .framer-PYNud .framer-1at1fw, .framer-PYNud .framer-1qtixl8, .framer-PYNud .framer-733dkt, .framer-PYNud .framer-e33vga, .framer-PYNud .framer-1gokzo2, .framer-PYNud .framer-nzhi5j, .framer-PYNud .framer-5tjy5t, .framer-PYNud .framer-w9jbxu { flex: none; width: 100%; } .framer-PYNud .framer-1e4pr1w, .framer-PYNud .framer-z2bdcp, .framer-PYNud .framer-3332g7, .framer-PYNud .framer-gqc9wc, .framer-PYNud .framer-1vxxkrh, .framer-PYNud .framer-m11dw8, .framer-PYNud .framer-ze4k3a, .framer-PYNud .framer-1yo4bx5, .framer-PYNud .framer-1l0dcdr, .framer-PYNud .framer-1thtzhc, .framer-PYNud .framer-km193p, .framer-PYNud .framer-16ga6j3, .framer-PYNud .framer-18z61jd, .framer-PYNud .framer-tjk24x, .framer-PYNud .framer-1mlbhty-container { order: 0; } .framer-PYNud .framer-4dmmi9, .framer-PYNud .framer-1yvn8ia, .framer-PYNud .framer-1a75vs { height: 162px; order: 1; } .framer-PYNud .framer-1cfgr81 { height: 162px; order: 2; } .framer-PYNud .framer-1b39y59, .framer-PYNud .framer-1hfvbas, .framer-PYNud .framer-hcgw4e, .framer-PYNud .framer-13ipw3t { height: 162px; order: 3; } .framer-PYNud .framer-eenv6y { height: 324px; order: 4; } .framer-PYNud .framer-mm4a85, .framer-PYNud .framer-1bvq5co { order: 5; } .framer-PYNud .framer-rdxn5h { height: 214px; order: 6; } .framer-PYNud .framer-19mugwu { height: 154px; order: 7; } .framer-PYNud .framer-1hym4k { order: 8; } .framer-PYNud .framer-1e69sjo { height: 162px; order: 9; } .framer-PYNud .framer-1is2jck { height: 162px; order: 10; } .framer-PYNud .framer-vpfw8l, .framer-PYNud .framer-8soc7l, .framer-PYNud .framer-1erjcnk { order: 4; } .framer-PYNud .framer-do956h-container { height: 173px; order: 5; } .framer-PYNud .framer-a16ctz { order: 6; } .framer-PYNud .framer-1xzjosh { height: 193px; order: 7; } .framer-PYNud .framer-k0yz0x-container { height: 215px; order: 1; } .framer-PYNud .framer-18gz4zc { height: 331px; } .framer-PYNud .framer-1g44dzb { align-self: unset; height: min-content; order: 0; width: 100%; } .framer-PYNud .framer-bpurqs { flex: none; order: 1; width: 100%; } .framer-PYNud .framer-17mllmh { order: 1; } .framer-PYNud .framer-1btpche { order: 3; } .framer-PYNud .framer-1kmj55f-container { width: 100%; } .framer-PYNud .framer-1f9rfej { --border-bottom-width: 8px; --border-left-width: 8px; --border-right-width: 8px; --border-top-width: 8px; order: 5; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26011\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RO8SanXBM\":{\"layout\":[\"fixed\",\"auto\"]},\"uO0aF0feT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerEdKx6eVWb=withCSS(Component,css,\"framer-PYNud\");export default FramerEdKx6eVWb;FramerEdKx6eVWb.displayName=\"Terms And Conditions\";FramerEdKx6eVWb.defaultProps={height:26011,width:1200};addFonts(FramerEdKx6eVWb,[{explicitInter:true,fonts:[{family:\"ABC Arizona Serif Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/dXhbPrvEsIH7dayfqGC7SbI8NX4.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavbarFonts,...VideoFonts,...FooterFonts,...NavbarMobileOnlyFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEdKx6eVWb\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"26011\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RO8SanXBM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uO0aF0feT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "NavbarFonts", "getFonts", "n7vPK_oGT_default", "ContainerWithFX", "withFX", "Container", "VideoFonts", "Video", "FooterFonts", "Sto5BD8SL_default", "NavbarMobileOnlyFonts", "bGSoJhTCJ_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "Link", "css", "FramerEdKx6eVWb", "withCSS", "EdKx6eVWb_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
