{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/ykYUowwkol2kZNPi4v36/egvqMQ9H2Tp9ckb6qicq/zMB9Bg1SE.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{addPropertyControls as n,ComponentPresetsConsumer as i,ControlType as a,Link as r}from\"framer\";import{motion as o}from\"framer-motion\";import*as l from\"react\";import{Youtube as s}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";let d=\"Q3v0RN2nG\",c=\"DQ9vR2Q2Z\",p=\"aFQyr1zJf\",h=\"CSe1Juh5B\",g=\"TSxe8svTN\",u=\"w_wIz44rM\",m=\"JUv1p0kH1\",f=\"SMmbbXAt7\",y=\"ng1P5vLAC\",w=\"HkPHwWWqR\",b=\"SEX_t_1cx\",v=\"gdYzsdm2E\",k=\"kXMqJ4uDK\",x=\"Iji0ohJZk\",S=\"Pmbbm_ZyR\",C=\"xY6ZdnYKK\",F=\"pVO5Q_3eg\",P=\"siOi0cdcH\",E=\"ezVA8B_dl\",A=\"kD9v5pvaa\",T=\"yFUOJY7Rx\",D=\"tbjVT10iW\",M=\"hG8Pae5ld\",B=\"k7bt6eJGq\",I=\"nnZLxFAz_\",W=(e,t)=>{if(e&&\"object\"==typeof e)return{...e,alt:t};},O=[{index:0,id:\"GeopiMnry\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Senior Web3 Front-End Engineer\",[g]:\"senior-web3-front-end-engineer\",[u]:\"t0cu62ncf\",[m]:\"DeFi, Engineer, Ethereum, Figma, Frontend Engineer, NFT, React, Web3\",[f]:\"2024-03-05T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"\",[v]:\"100K - 250K\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"prePO is looking for a Senior Front-End Engineer to architect, develop, test, and deploy front-end code for novel DeFi applications.\"}),/*#__PURE__*/e(\"p\",{children:\"Candidates should have excellent React proficiency, strong technical leadership, a consistent track record of solving critical engineering problems, and a strong interest in DeFi and crypto in general.\"}),/*#__PURE__*/e(\"p\",{children:\"Our core tech stack is React, Next.js, TypeScript, Wagmi+Viem+ABIType for EVM logic, Jest for testing, ESLint+Prettier for code style/safety, and Vercel for CI/CD.\"}),/*#__PURE__*/e(\"p\",{children:\"Candidates without Web3 development experience are welcome to apply and will be trained up.\"})]}),[C]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Our ideal candidate will:\"}),/*#__PURE__*/t(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(65, 83, 97)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"write clean, re-usable, reliable and performant React code\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"style and animate components based on Figma specifications\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"synchronize smart contract and subgraph data with client-side state\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"create functions that write to the blockchain by calling smart contract methods\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"extend upon our standard patterns for implementing frontend Web3 functionality\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"contribute to high-level decisions about prePO\u2019s front-end architecture\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"research new technologies to adopt to improve our product or codebase\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"collaborate with product owners, designers, and other developers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"work at a rapid pace with a large amount of ownership and autonomy\"})})]}),/*#__PURE__*/e(\"p\",{children:\"We are committed to fostering diversity and inclusiveness within our organization, and we strongly encourage candidates of all backgrounds to apply.\"}),/*#__PURE__*/e(\"p\",{children:\"Note that we cannot offer visa sponsorships at this time.\"})]}),[F]:null,[P]:null,[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fully-remote work with flexible working hours\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work on the bleeding edge of DeFi and crypto\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Learn from other senior high-performing team members\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Team off-sites and sponsored conference/hackathon trips\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Budget for learning / professional development / subscriptions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Join a force for good - prePO has made a pledge to dedicate at least 2% of time, product, and profit towards charity\"})})]})}),[A]:\"https://apply.workable.com/prepo/j/EBD1BC0911/?ref=workingincrypto\",[T]:\"prePO\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/7HheiilCIAZZ9j3CiysOxVOWU.jpg\"},\"\"),[B]:\"https://prepo.io?ref=workingincrypto\",[I]:\"prePO is a decentralized protocol for gaining exposure to any pre-public asset, such as pre-IPO stocks, pre-launch tokens, and pre-airdrop points.\"},{index:1,id:\"wbowBkldP\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Senior Producer, Otherside\",[g]:\"senior-producer-otherside\",[u]:\"JHFlwKeNG\",[m]:\"operations, producer, gaming, yuga, bored apes, NFT, project management, agile, web3, unity\",[f]:\"2024-02-05T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"\",[v]:\"130,000 USD - 160,000 USD\",[k]:!1,[x]:\"yes\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"The Senior Producer is directly responsible for ensuring a team delivers the highest quality output at maximum velocity. The Senior Producer works in a cross-discipline fashion to ensure that the team is setting, measuring, tracking, and delivering tasks and goals. AAA game launch expertise, skilled in agile project management, web3, blockchain, NFTs, and smart contracts.\"}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(i,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(s,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?si=utGaOq18lhJ4K8Cs&embeds_referring_euri=https%3A%2F%2Fboards.greenhouse.io%2F&source_ve_path=MTY0NTA2&feature=emb_share&v=qt1equGhkQE\"})})}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/t(\"strong\",{children:[\"Apply anyway.\",/*#__PURE__*/e(\"br\",{})]}),\"We believe true innovation in web3 requires diversity in perspectives, experiences, and backgrounds. But historically marginalized groups are underrepresented in the space, not just as participants but as leaders and creators. Luckily, we \u2014 and every web3 company \u2014 have the opportunity to bake necessary process and mindset shifts into our company DNA from the early days.\"]}),/*#__PURE__*/e(\"p\",{children:\"To help build a web3 that\u2019s diverse and inclusive, we strive to build Yuga\u2019s workplace to be diverse and inclusive. Not just how we do things day to day, but who does them and who decides what needs to be done.\"}),/*#__PURE__*/e(\"p\",{children:\"So if you\u2019re excited about one of our roles but your resume doesn\u2019t align perfectly with the job description, please apply anyway. If you\u2019re enthusiastic about web3 but come from an industry you think is unrelated, apply anyway. If you\u2019re a great thinker and doer, apply anyway. The fate of web3 kiiinda depends on it.\"}),/*#__PURE__*/e(\"p\",{children:\"At Yuga Labs, being an Equal Opportunity Employer means more than upholding discrimination-free hiring practices. It means that we cultivate an environment where people can be their most authentic selves and find both belonging and support. We're shaping the future of identity, community, and technology\u2014an experience made whole by our unique backgrounds and perspectives.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Partner with leadership to drive & execute projects.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate closely with creative, technical, and product teams in and outside the company to design, build, launch, and live operate new web3 game experiences.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lead teams in planning and scoping requirements to properly estimate and develop reliable production plans.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Establish and maintain project management and tracking tools to help teams maintain visibility on all tasks and deadlines.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Manage a project's scope, schedule, budget, and quality to ensure successful delivery.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work closely with teams to ensure a project hits Yuga\u2019s high quality bar by establishing review and feedback processes that adhere to production timelines.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Communicate and report on a project\u2019s status to leadership and executive stakeholders.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Conduct market research and analysis to identify trends and opportunities in the web3 gaming space.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Maintain knowledge of industry trends and best practices in web3 and blockchain technologies.\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Significant experience in a senior producer position building and launching AAA game and/or free-to-play titles.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with project management and agile methodologies and software tools.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent collaboration skills, with the ability to work effectively with a multidisciplinary team of designers, technical directors, and other artists.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work independently and as part of a team in a fast-paced, dynamic environment.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to navigate ambiguity and adapt to changing priorities and deadlines.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong interest and experience in web3 and blockchain technologies.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Knowledge and interest in current trends within Web 3, blockchain and in the gaming industry and non-fungible tokens (NFTs).\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Understanding of smart contract development and implementation.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong network and connections within the gaming and web3 communities.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working with game engines such as Unity or Unreal Engine, and a strong understanding of 3D production pipelines\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to sit for long periods\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work on a computer screen and communicate virtually\"})})]})}),[E]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"The US base salary range for this full-time position is $130,000 to $160,000 in addition to equity and benefits. Our salary ranges are determined by role and level. The range listed encompasses several levels. Within the range, individual pay is determined by additional factors, including job-related skills, experience, and market demand. Please note that the compensation details listed in role postings reflect the base salary only, and do not include equity, or benefits.\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"100% remote\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Localized comprehensive health benefits\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Monthly stipends for wellness, co-working, and mobile/internet service\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Flexible Time Off, localized paid holidays, & Winter Recess (December 24-January 1)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A vibrant community of Employee Resource Groups (Women at Yuga, Blackchain3, Queer3)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Paid Parental Leave\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Localized retirement plans\"})})]})]}),[A]:\"https://boards.greenhouse.io/yugalabs/jobs/4325035005?ref=workingincrypto\",[T]:\"Yuga Labs\",[D]:\"US\",[M]:W({src:\"https://framerusercontent.com/images/whedo3PLyajNe0xVZMcHJCOLp9Q.png\",srcSet:\"https://framerusercontent.com/images/whedo3PLyajNe0xVZMcHJCOLp9Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/whedo3PLyajNe0xVZMcHJCOLp9Q.png 1000w\"},\"\"),[B]:\"https://yuga.com?ref=workingincrypto\",[I]:\"Yuga Labs is a web3 company exploring big ideas in identity, ownership, utility, and interoperability to push the crypto and NFT space forward.\"},{index:2,id:\"ndSCAvk8J\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Technical Chief of Staff\",[g]:\"technical-chief-of-staff\",[u]:\"JHFlwKeNG\",[m]:\"remote, manager, executive, web3, strategy, execution, Blockchain, Engineering, startup, \",[f]:\"2023-12-26T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"\",[v]:\"negotiable\",[k]:!0,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Our organisation has expanded significantly over the past few years, and we are looking to add a highly technical Chief of Staff to our leadership team. This is a high level role to support the Co-Founders drive execution amongst the organsation and ensure that our Co-Founders can focus on the high-level strategy, communications and vision.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"As Technical Chief of Staff you will be the right hand person to the Co-founders in supporting operational strategy and execution across each of our projects (Status, Logos, Nomos, Codex, Waku, Nimbus, Keycard). This is not a traditional Chief of Staff role. You\u2019re a competent, experienced senior leader with exceptional EQ ; comfortable dealing with ambiguity and have a reputation for being a \u201Cfixer\u201D.\\xa0 The ideal candidate comes with the ability to tackle all day to day operational tasks including the complexities of cross functional relationships and conflict resolution.\\xa0\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Managerial responsibility and oversight - serving as the single point of contact to the CEO/Co-founder\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Handling day to day operations\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Mediator of any conflict between teams, facilitating productive communication & resolution\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Handle any administrative issues/tasks (internal system approvals, budgets, etc)\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"Aligned to \",/*#__PURE__*/e(r,{href:\"https://status.im/our_team/our_principles.html\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"our principles\"})}),\" and \",/*#__PURE__*/e(r,{href:\"https://logos.co/manifesto\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"ideology\"})})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Highly technical / background in Software Engineering\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Embedded in Web3 / Blockchain ecosystem\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Highly competent in running an organization\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Demonstrated, high emotional EQ & diplomacy\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Deep experience in leadership (preferably of remote, technical teams)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experienced leader of leaders - able to help upskill Program leads\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Able to build trust / rapport quickly\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Able to focus on big picture strategy, but also to zoom into intricate detail\"})})]})}),[P]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Founder / Start-up experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working for an open source organization\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working for a politically aligned organization\"})})]}),/*#__PURE__*/e(\"p\",{children:\"[Don\u2019t worry if you don\u2019t meet all of these criteria, we\u2019d still love to hear from you anyway if you think you\u2019d be a great fit for this role. Just explain to us why in your cover letter].\"}),/*#__PURE__*/e(\"p\",{children:\"The hiring process for this role will be:\"}),/*#__PURE__*/t(\"ol\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interview with Pepper from our Talent team\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A series of interviews with senior members of our organisation.\\xa0\"})})]}),/*#__PURE__*/e(\"p\",{children:\"The steps may change along the way if we see it makes sense to adapt the interview stages, so please consider the above as a guideline.\\xa0\"})]}),[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"The expected compensation range for this role is negotiable, dependent on how we assess your skills and experience throughout our interview process. We are happy to pay in any mix of fiat/crypto.\"})}),[A]:\"https://boards.greenhouse.io/logos/jobs/5447463?ref=workingincrypto\",[T]:\"Logos\",[D]:\"Decentralized\",[M]:W({src:\"https://framerusercontent.com/images/if2oLjH9JnXqzMuHWmZxaUtdmxo.svg\"},\"\"),[B]:\"https://logos.co/about?ref=workingincrypto\",[I]:\"Logos is a movement supporting the development of the decentralised web. Logos technologies lay the foundations for a freer internet upon which communities can evolve into network states.\"},{index:3,id:\"YGVgQTfDr\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Design Lead at FWB\",[g]:\"design-lead-at-fwb\",[u]:\"ciEAYkEzq\",[m]:\"design, leading, crypto, web3, social network, blockchain, creators, DAO\",[f]:\"2023-11-17T00:00:00.000Z\",[y]:\"wp6ZdcHYP\",[w]:\"T32GaDttf\",[b]:\"\",[v]:\"\",[k]:!0,[x]:\"\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"FWB is seeking a talented and experienced Design Lead to join our team. The ideal candidate will have broad experience across various design disciplines with a focus on graphic and web design. As a Design Lead, you will be responsible for leading design projects from ideation to implementation, working closely with the rest of our core contributors on making sure that FWB maintains a high level of visual integrity and a clear perspective on aesthetics.\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lead design projects from ideation to implementation, ensuring high-quality design solutions that address both key objectives and brand consistency\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with cross-functional team of core DAO contributors and identify opportunities for design to contribute to reaching key DAO goals\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Create graphics for FWB\u2019s social media, editorial, events, emails, and other marketing collateral\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ensure that design output is accessible, usable, and legible\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Stay up-to-date with industry trends, design tools, and emerging technologies to ensure our design output remains innovative and relevant\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Maintain connections with a strong roster of supplemental designers that can support on a project basis, managing contractors as needed\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"At least 2 years of experience in a design-related field, with a focus on graphic and web design.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong portfolio that demonstrates design skills, creative thinking, and problem-solving abilities.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Expertise in design tools such as Adobe Creative Suite, Figma, and similar tools.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to iterate effectively and quickly, taking into account collaborator input, without losing grasp on your own personal opinions as a designer\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent communication and collaboration skills, with the ability to work effectively with cross-functional teams.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to context-switch and think critically about how end-users will receive and interact with design output\"})})]})}),[P]:null,[E]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Friends with Benefits is a growing social DAO with more than 3,000 engaged members\u2014including artists, builders, and thinkers from all across the crypto and cultural sectors. Collectively, we\u2019re on a mission to catalyze the power of Web3 as a tool for creating and making things happen.\"}),/*#__PURE__*/e(\"p\",{children:\"We fulfill our mission by:\"}),/*#__PURE__*/t(\"ul\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Making the concepts and tools of Web3 more accessible to cultural communities.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Building diverse spaces and experiences that creatively empower participants.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Developing tools, artworks, and products that showcase Web3\u2019s potential.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"While all FWB initiatives are member-led, we also rely on dedicated contributors to fill various full-time and part-time roles within the organization. Contributors ensure successful onboarding for new members, create newsletters, write for our in-house editorial platform, engage new partnership opportunities, oversee the DAO's governance, and more.\"}),/*#__PURE__*/e(\"p\",{children:\"Contributors are compensated in $FWB or $USDC, and will soon receive health benefits. While many contributors begin as FWB members, we welcome all applications. FWB is committed to working with people who have a diverse array of backgrounds and experiences.\"})]}),[A]:\"www.fwb.help/opportunities/design-lead?ref=workingincrypto.com\",[T]:\"Friends With Benefits\",[D]:\"DAO\",[M]:W({src:\"https://framerusercontent.com/images/i4UoIZ8SGOOEIWtMPMl2yHH3gU.svg\"},\"\"),[I]:\"Friends With Benefits is a new kind of social network made up of creatives and builders who believe in the promise of a better internet.\"},{index:4,id:\"rIYyvhcbE\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Chief Product Officer at Lightcurve\",[g]:\"chief-product-officer-at-lightcurve\",[u]:\"m3tAYHcBS\",[m]:\"Product, CPO, blockchain, web3, strategy, infrastructure\",[f]:\"2023-11-06T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"Worldwide\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"The Lisk Foundation is ready to take another step forward to fulfill their vision of a world in which everyone is onchain, and we are on-board! It\u2019s about a new product, a radically new user-experience with previously unseen innovations, to get even non-technical people onchain.\"}),/*#__PURE__*/e(\"p\",{children:\"Onchain is the next online, the goal is to create a global financial system. Nobody can be left behind and it\u2019s up to us - the builders of the future - to get it done.\"}),/*#__PURE__*/e(\"p\",{children:\"As the Chief Product Officer you join a newly formed team of 16 people, including researchers, frontend and backend developers as well as marketeers. The product, which remains in stealth mode until at least Q1 2024, is currently being strategized and an MVP is being developed. The faster you join the more you can still influence the product during its early stages.\"}),/*#__PURE__*/e(\"p\",{children:\"The leadership team consists of a well-experienced Chief Technology Officer and Max Kordek, the co-founder of Lisk.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Vision and strategy\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Developing and communicating product vision and strategy to all relevant stakeholders.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ensuring alignment of product strategy with the company\u2019s goals and objectives.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Leading market analysis to identify customer needs, opportunities, and competitive landscape.\"})})]})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Product development and management\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Overseeing the entire product lifecycle from conceptualization, development, to market launch.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Managing the product backlog and prioritizing features based on value and alignment with strategy.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Coordinating with engineering, marketing, sales, and support teams to deliver high-quality products on time.\"})})]})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Leadership and team management\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Building, mentoring, and leading a high-performing team.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fostering a culture of continuous improvement, innovation, and customer-centricity.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborating with cross-functional teams to resolve issues and ensure smooth product development and delivery.\"})})]})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Performance metrics and analytics\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Establishing key performance metrics and monitoring the success of products post-launch.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Making data-driven decisions to improve product performance and customer satisfaction.\"})})]})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Stakeholder communication\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Engaging with customers, partners, and external stakeholders to gather feedback and make necessary product improvements.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Keeping stakeholders informed on product progress, performance, and roadmaps.\"})})]})]})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Experience\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A minimum of 3 years of professional experience in product management, preferably in a tech-oriented startup environment.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A minimum of 3 years of professional experience in crypto and Web3.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proven track record of managing all aspects of a successful product throughout its lifecycle.\"})})]})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Skills\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong leadership and team management skills.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent communication, presentation, and interpersonal skills.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to make well-informed decisions based on data.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proficient in product management software and methodologies.\"})})]})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Personal attributes\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Adaptable to a fast-paced and dynamic startup environment.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Innovative and able to drive change and look for continuous improvement.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Customer-focused with a passion for delivering high-quality products that meet market needs.\"})})]})]})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"We believe that blockchain technology has the power to change the world, but we need exceptional souls with diverse backgrounds to make it happen. Don't let a list of criteria hold you back from applying - we want to hear your story!\"})}),[E]:null,[A]:\"https://lightcurve.jobs.personio.de/job/1282229?language=en&display=en&ref=workingincrypto\",[T]:\"Lightcurve\",[D]:\"Berlin\",[M]:W({src:\"https://framerusercontent.com/images/k4xjn34D3VngYls21RkRBzWzjC0.png\"},\"\"),[B]:\"https://lightcurve.io?ref=workingincrypto\",[I]:\"Lightcurve is a leading blockchain studio in Berlin. For 7 years our team from 30+ different countries has been developing Lisk - a L1 enabling JavaScript developers to build their own blockchain - for our client, the Lisk Foundation, based in Switzerland.\"},{index:5,id:\"BOfiXoMr2\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Head of Design at IOV Labs\",[g]:\"head-of-design-at-iov-labs\",[u]:\"ciEAYkEzq\",[m]:\"Business, Strategy, Fintech, Blockchain, Bitcoin, Web3, English, Spanish, Design, Management, UI, UX, Research\",[f]:\"2023-10-19T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"As our Head of Design, you will provide design direction and set high standards from early stages of ideation through launch. You and your team will shape the design strategy, prototypes, and solutions in collaboration with org leaders and cross-functional partners.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"Your function will shape design elements across internal projects, monetizable products and services, and creative campaigns across IOVs brand and marketing, and developer functions.\"}),/*#__PURE__*/e(\"p\",{children:\"You will report directly to the VP Product, and have the opportunity to build a best-in-class design team.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide brand / product design direction and set high standards for IOVs approach to the design of web applications, mobile applications, visual interface, and UI/UX design\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with engineering, product, business, and brand / marketing leads to design our projects and products from conception to launch and scale\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Drive and deliver multiple design projects simultaneously, and ultimately build a best-in-class design team that is integrated across functions at IOV Labs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Incorporate data and customer insights in order to create conceptual wireframes, prototypes and high fidelity designs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Create a unified design system that increases the velocity of our product and open source engineering teams and extends to brand and marketing output\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work cross-functionally to create integrated project, product and brand/marketing experiences that drive business outcomes and uphold a high bar, reflecting the orgs vision vision, mission, and ethos\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Extensive experience in all phases of the design process including user research, copywriting, wireframing, prototyping, visual design, interaction design, and usability testing\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The capacity to bring novel, simple, and intuitive design to a nascent industry in which user experiences and interfaces are complex and inscrutable to the everyday person\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A passion for translating complex problems into simple, relatable, and engaging solutions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"An innate understanding of the end-to-end product design process \u2013 from identifying customer needs, jobs-to-be-done, and pain points to delivering exceptional customer experiences\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Desire to mentor and lead others in building out a design function\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interest in decentralised applications, and the potential of decentralised finance and decentralised identity\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proven experience in problem solving. We\u2019re in a very new environment with complexities that will require creative thinking to solve\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Leadership experience in a transformative environment\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience in being a strategic partner to engineering, product, and business teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to collect and interpret both qualitative and quantitative feedback\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to effectively communicate and persuade around design concepts\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Creative problem-solving skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proven experience working with Figma\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Spanish & English fluency a huge advantage\"})})]})}),[P]:null,[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Competitive salary and company bonus\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"100% remote working (External Employee) from anywhere in the world\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Global WeWork membership\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Flexible working hours - you\u2019re free to work however you work best\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Paid holidays and personal leave days\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Opportunity to work with state of art technology in a challenging and unique project\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Internationally diverse and dynamic team with a clear vision and strategy\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Training programs to learn everything about the crypto world\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Weekly scientific moments by our Research & Innovation team to learn about technology, challenges, and solutions in the blockchain world\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Language courses: English & Spanish\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Employee assistance program offering legal, financial, family, psychological, and wellness counselling for you and your family\"})})]})}),[A]:\"https://jobs.lever.co/iovlabs/34eebde8-7b00-4740-a81b-864559ea40d9?ref=workingincrypto\",[T]:\"IOV Labs\",[D]:\"Gibraltar\",[M]:W({src:\"https://framerusercontent.com/images/LhL1PXGA3xCWRQNxpFRzeDPnc.svg\"},\"\"),[B]:\"https://www.iovlabs.org?ref=workingincrypto\",[I]:\"IOV Labs is on a mission to provide the next generation of fintech innovators with the decentralised tools and technology to build a new global economy.\"},{index:6,id:\"E6dQyvXiU\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Motion Designer\",[g]:\"motion-designer\",[u]:\"ciEAYkEzq\",[m]:\"Ethereum, Open Source, Product, Program Manager, Web3, Senior, Lead, UI, UX, Design System\",[f]:\"2023-10-19T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"Worldwide\",[v]:\"\",[k]:!0,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Acid.info needs a visionary motion designer to join its Digital Content Studio. Our chosen candidate will be comfortable pushing the boundaries of digital content production to deliver our message across multiple mediums, applying technological solutions to ensure maximum efficiency while maintaining the highest standards.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Hiring process:\"})}),/*#__PURE__*/t(\"ol\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interview with our Talent team\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Paid task\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interview with Digital Content Studio Lead\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interview with Creative Director\"})})]}),/*#__PURE__*/e(\"p\",{children:\"[The steps may change along the way if we see it makes sense to adapt the interview stages, so please consider the above as a guideline]\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Design digital content for video, templates, and editing\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Create assets and animations used in stream live as well as animations and templates used in post\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work with/animate/edit video clips to create assets for twitter, youtube and other channels\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with cross-functional teams, including creative leads, product owners, developers, designers, artists and other content creators\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"2+ years proven experience in a professional motion or post production role\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A portfolio or reel of work to showcase experience and creativity\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Extensive knowledge and experience with Adobe After Effects for animation and post work\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Solid knowledge of editing in Adobe Premier or similar\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Knowledge of Stable Diffusion and experience working AI into the content creation workflow\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Working knowledge of some 3D package: Maya, C4D, etc.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Understanding of design principles and user-centered design processes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to clearly present creative ideas and concepts for campaigns and projects\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"A strong alignment to our principles: \",/*#__PURE__*/e(r,{href:\"https://status.im/about/#our-principles\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://status.im/about/#our-principles\"})})]})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Code chops: Python, JavaScript, C, etc.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with Unreal Engine, Unity, etc.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Web3 experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working with an open-source organization\"})})]})}),[E]:null,[A]:\"https://jobs.status.im/?gh_jid=5276254&ref=workingincrypto\",[T]:\"Status\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/eIcaSiHLOFlO4VyWGrIef85yg8.svg\"},\"\"),[I]:\"As an organization, Status seeks to push the web3 ecosystem forward through research, creation of developer tools, and support of the open source community. \"},{index:7,id:\"S7SOI2oJz\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Product Marketer at Phala Network\",[g]:\"product-marketer-at-phala-network\",[u]:\"k0EXSIdIB\",[m]:\"marketing, web3, DeFi, Smart Contract, SEO, Go-to-Market, AI, GTM, Non-Tech, Product\",[f]:\"2023-10-05T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"Europe, United States\",[v]:\"70k-100k\",[k]:!0,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"The hiring process for this role will be:\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interview with Will, our Content and Community Director.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interview with Will and Shelven, our Lead Dev & Partner.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"You will present a go-to-market product marketing strategy, followed by a Q&A.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"The steps may change along the way if we see it makes sense to adapt the interview stages, so please consider the above as a guideline.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Product Positioning\"}),\": Define and communicate the product's value proposition and USPs to web3 builders and end users of our products.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Go-to-market Strategy\"}),\": Co-develop and execute product launch plans and strategies.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Content mapping:\"}),\" The planning, creation and delivery of content for target audiences via dedicated customer journeys.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"SEO optimisation:\"}),\" enhance the visibility and ranking of product-related content on search engines.\"]})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Personal:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proficient English speaker, either native or fluent.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Based in Europe or USA.\"})})]})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Experience:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"At least 5+ years in a comparable role.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A proven track record of achievements in product marketing, encompassing proficient content creation and effective execution of successful product launches.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Must provide a robust portfolio highlighting past campaigns successes and copywriting accomplishments.\"})})]})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Skillsets:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Strategic Mindset\"}),\": Ability to think long-term, aligning product marketing strategies with our overall business development objectives.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Market Research\"}),\": Proficiency in conducting and analyzing market, competitor, and customer research to identify opportunities and threats (SWOT).\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Storytelling\"}),\": Ability to craft compelling narratives around our products that resonate with web3 builders and product users.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Content Creation\"}),\": Posesses strong creative, writing and content creation skills, that can be tailored for various formats and platforms. E.g. from tweets to sales collateral.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Data Analysis\"}),\": Ability to interpret marketing metrics to evaluate the success of campaigns and adjust strategies accordingly.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Project Management\"}),\": Capabilities in managing multiple campaigns simultaneously, ensuring timely execution.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Presentation Skills\"}),\": Proficiency in presenting product features, benefits, and strategies to internal teams, stakeholders, and external audiences.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Technical Proficiency\"}),\": A strong understanding of the technical aspects of our products to communicate its benefits effectively.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Articulate:\"}),\" Able to distill and simplify complex topics, making them accessible and understandable to diverse audiences.\"]})})]})]})]})}),[P]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bilingual.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Well-versed in web3 technology.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Enthusiastic about AI and web3 social applications.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Familiar with startup culture and possesses experience in this context.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Emotionally resilient, excelling in high-pressure environments.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Open to feedback and revisions to enhance work quality.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Possesses a solid grasp of pertinent tech fundamentals, including computer science and programming skills.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"If you want your application to stand out, in addition to submitting your CV, implement one or all of the following suggestions:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Attach a short video that showcases your skills and personality.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Show us your creative side when explaining why you're the perfect fit for this role.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Share three concrete ways that you would improve our product and content marketing.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Don\u2019t worry if you don\u2019t meet all of our criteria. We\u2019d still love to hear from you if you think that you\u2019d be a great fit for this role. Just explain to us why in your cover letter and please don't forget to attach your portfolio!\"})]}),[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A brilliant opportunity to grow your career & work with a fun, fast-paced & growing company, prepared to let you shine.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"An entrepreneurial environment where you learn more every day.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Personal responsibility with a ton of autonomy.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work on exciting products with a team of incredible professionals.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Achievement token bonuses\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Flexible work schedule.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Possibility to get paid in crypto.\"})})]})}),[A]:\"https://wellfound.com/jobs/2762677-product-marketer?ref=workingincrypto\",[T]:\"Phala Network\",[D]:\"Singapore\",[M]:W({src:\"https://framerusercontent.com/images/P6LHkfX6iV2rQZRK0tAbGPZQrJ0.webp\"},\"phala network logo\"),[B]:\"https://phala.network/en?ref=workingincrypto\",[I]:\"Phala Network is a decentralized off-chain compute infrastructure. Our mission is to revolutionize web3 by providing dApp developers with an off-chain compute infrastructure that is truly decentralized and trustless.\"},{index:8,id:\"OM7twiR6R\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Product Manager (Developer Experience)\",[g]:\"product-manager-developer-experience\",[u]:\"t0cu62ncf\",[m]:\"Business, Strategy, Fintech, Blockchain, Bitcoin, Web3, English, Spanish, Product Management, Technical, Decentralized\",[f]:\"2023-10-19T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"Wordlwide\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Rootstock is the network that provides the foundation for a new global economy. It is the world's most secure blockchain for smart contracts. Rootstock expands the functionality and scalability of the Bitcoin ecosystem without sacrificing decentralization.\"}),/*#__PURE__*/e(\"p\",{children:\"We are looking for a Product Manager to join IOV Labs during this exciting time of growth. Reporting to the VP Product. You will support the ongoing transformation of our business, you will have the opportunity to work on the tools that developers use every day to work with Rootstock.\"}),/*#__PURE__*/e(\"p\",{children:\"This role is an incredible opportunity to shape the product and commercial structure of one of the world\u2019s leading smart contract platforms.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Building tools for an open-source Developer Community\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ensuring Rootstock and RIF are easily consumable by Developers, including APIs, documentation, environments for testing, etc\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"\\xa0Develop a Product Vision and Roadmap, together with stakeholders.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Own the short and long-term product roadmap for your specific products and optimise the product strategy.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Identify the needs of the prioritized Developer groups to improve on existing products and features where relevant to your specific products\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Define product requirements, maintain a prioritised product backlog, and collaborate with the Tech Lead to execute on delivering\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work with the Development team, Product Designer, and Product Business Analyst\\xa0 to divide features into tasks, estimate them, optimise the workflow, and manage the success of the sprints\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with the QA team to help increase the Quality of the delivered product increments\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Help to define, monitor, and measure the success of the products the squad builds\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Be an expert on our market, key trends in the sector, and our competitors - where directly relevant to your specific products\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Substantial professional experience in Product Management or Product .\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ownership or equivalent consultant experienceExperience building open-source software and enabling developers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong interest in and familiarity with financial technology, DeFi, cryptocurrency, blockchains, and decentralised technologies.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fluent level of English, extra points for Spanish\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Demonstrated success defining or contributing to launching excellent products\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working in an organisation with a B2B or B2B2C business model\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Knowledge of lean development principles and agile frameworks like Scrum or Kanban.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience in showing judgment and thoughtfulness about the dynamics of a product ecosystem\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Natural ability to make things happen with the support of the wider Product team\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Comfortable with project ambiguity, complexity, and interdependencies\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Well-rounded interpersonal and communication skills with the ability to talk to internal and external stakeholders\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong awareness of executing go-to-market strategy and comfortable with a relentless pursuit of product-market fit\"})})]})}),[P]:null,[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Competitive salary.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"100% remote working (External Employee) from anywhere in the world.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Global WeWork membership.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"\\xa0Flexible working hours - you\u2019re free to work however you work best.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Paid leave and national holidays observed.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Opportunity to work with state of art technology through challenging and unique projects.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Internationally diverse and dynamic team with a clear vision and strategy.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Training programs to learn everything about crypto.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Weekly scientific moments by our Research & Innovation team to learn about technology, challenges, and solutions in the blockchain world.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Language courses: English, Spanish or Chinese.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Employee assistance program offering legal, financial, family, psychological, healthcare, and wellness counseling for you and your family\"})})]})}),[A]:\"https://jobs.lever.co/iovlabs/4c4d71e3-700d-4b90-be28-cd4d735f213a?ref=workingincrypto\",[T]:\"IOV Labs\",[D]:\"Gibraltar\",[M]:W({src:\"https://framerusercontent.com/images/LhL1PXGA3xCWRQNxpFRzeDPnc.svg\"},\"\"),[B]:\"https://www.iovlabs.org?ref=workingincrypto\",[I]:\"IOV Labs is on a mission to provide the next generation of fintech innovators with the decentralised tools and technology to build a new global economy.\"},{index:9,id:\"KUG7OABF6\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Partner Engagement Lead\",[g]:\"partner-engagement-lead\",[u]:\"AkV_YiMeS\",[m]:\"Partnerships, Management, Business Development, Sales, , Fintech, Blockchain, Bitcoin, Web3\",[f]:\"2023-10-19T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"Worldwide\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"We are seeking a Partner Engagement Lead to join our Partnership team. As a Partner Engagement Lead at IOV Labs, you will be dedicating your time to the core product development and Go-to-market effort; advising the Fintech partners on the disruptive potential of blockchain technology to improve their businesses, as well as discovering product-market-fit and co-creation opportunities with our products and technology.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"This role will be reporting directly to the Head of the Partnership and play a key role in developing long-term relationships, building strategic solutions, and shaping the core product roadmap.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work as an integral part of a Product Development Squad, responsible for Partner relationships, ongoing communication, and the overall commercial outcome.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Develop and foster a business pipeline with multiple use cases.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Become a trusted advisor to the partners and be able to structure and deliver go-to-market pitches for internal stakeholders and external partners.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Establish a Partner-facing strategy and a streamlined consulting process.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Communicate clearly on relevant product concepts and technical details.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lead or participate in discussions leading up to use case identification\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Shape co-creation opportunities to explore new business models possibilities\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work closely with the broader Growth team, which includes; the Investment team, Integration team, and the Customer Success team.\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"5-10 years of relevant technical consulting experience with Fintechs and crypto businesses.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Knowledge of Blockchain market landscape including key players and competition in the market for Blockchain platform technologies, implementation partners, and networks.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong understanding of the blockchain platforms and ability to conceptualize business strategies using blockchain applications such as crypto wallets, DEX, Naming Services, etc.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"\\xa0Good knowledge on product/solution engineering methodologies.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A structured mind and an organized approach to work.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience in Agile methodologies\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent English and Spanish verbal and written skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong analytical skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work on own initiative and within a global and diverse team\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Professionalism, enthusiasm, dynamism, and creativity\"})})]})}),[P]:null,[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Competitive salary, OTE quarterly cash bonus, and equity-like bonus.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"100% remote working (External Employee) from anywhere in the world.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Global WeWork membership.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"\\xa0Flexible working hours - you\u2019re free to work however you work best.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Paid leave and national holidays observed.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"\\xa0Opportunity to work with state of the art technology through challenging and unique\\xa0projects.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Internationally diverse and dynamic team with a clear vision and strategy.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Training programs to learn everything about crypto.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Weekly scientific moments by our Research & Innovation team to learn about technology, challenges, and solutions in the blockchain world.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Language courses: English, Spanish or Chinese.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Employee assistance program offering legal, financial, family, psychological, healthcare, and wellness counseling for you and your family\"})})]})}),[A]:\"https://jobs.lever.co/iovlabs/36d09d08-e8dc-4bee-b0b4-2556792dd59d?ref=workingincrypto\",[T]:\"IOV Labs\",[D]:\"Gibraltar\",[M]:W({src:\"https://framerusercontent.com/images/LhL1PXGA3xCWRQNxpFRzeDPnc.svg\"},\"\"),[B]:\"https://www.iovlabs.org?ref=workingincrypto\",[I]:\"IOV Labs is on a mission to provide the next generation of fintech innovators with the decentralised tools and technology to build a new global economy.\"},{index:10,id:\"x_dfxVd3U\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Junior Financial Controller\",[g]:\"junior-financial-controller\",[u]:\"s42e6ezlt\",[m]:\"Growth, Management, English, Spanish, Web3, Blockchain, Bitcoin, Crypto, Travel, Compliance\",[f]:\"2023-10-19T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"LATAM\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"We are seeking a highly motivated and detail-oriented Junior Financial Controller to join our finance team. The Junior Financial Controller will play a crucial role in supporting financial operations, maintaining accurate records, and providing valuable insights for decision-making. This individual will work closely with the CFO and act as the primary point of contact with the accounting company. The ideal candidate should have 1-2 years of relevant experience, possess strong analytical skills, and demonstrate a willingness to learn and grow within the organization.\"}),/*#__PURE__*/e(\"p\",{children:\"As a Junior Financial Controller, this role offers an excellent opportunity for a motivated and detail-oriented individual to work closely with the CFO and gain hands-on experience in financial operations. The position requires a strong focus on accuracy, eagerness to learn, and effective communication skills to work seamlessly with team members and external partners, including the accounting company.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Financial Reporting and Analysis:\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assist in preparing accurate and timely financial statements, including income statements, balance sheets, and cash flow statements.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Support financial analysis by gathering and organizing financial data and trends for management review.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assist in developing and monitoring key performance indicators (KPIs) to assess financial performance.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Budgeting and Forecasting:Collaborate with the finance team to gather data for the annual budgeting process.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Support the development of financial forecasts to aid in decision-making and planning.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Financial Compliance and Controls:\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ensure adherence to accounting principles, regulations, and internal policies.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assist in maintaining effective internal controls to safeguard company assets and ensure financial accuracy.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Cash Management:Assist in monitoring cash flow and preparing cash flow reports to support liquidity management.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with the accounting company to ensure proper handling of financial transactions.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Financial Systems and Processes:\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Learn and utilize financial software and tools effectively.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Contribute to improving financial procedures and processes for increased efficiency.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Team Collaboration and Development:\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work closely with the CFO and finance team to support financial activities and projects.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Demonstrate a positive attitude and eagerness to learn from senior finance professionals.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Participate in training opportunities to enhance financial knowledge and skills.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Point of Contact with Accounting Company:\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Act as the primary liaison with the accounting company, providing necessary information and coordinating financial activities as required.\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bachelor's degree in finance, accounting, or a related field.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"1-2 years of relevant experience in finance, accounting, or a related area.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong understanding of accounting principles and financial concepts.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Detail-oriented with excellent attention to accuracy in financial reporting.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Eagerness to learn and grow within the organization.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong analytical and problem-solving skills.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Effective communication skills to interact with team members and external partners.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work collaboratively in a fast-paced environment.\"})})]})}),[P]:null,[E]:null,[A]:\"https://jobs.lever.co/iovlabs/9ea36b2e-fd03-488a-840a-a44865813526?ref=workingincrypto\",[T]:\"IOV Labs\",[D]:\"Gibraltar\",[M]:W({src:\"https://framerusercontent.com/images/LhL1PXGA3xCWRQNxpFRzeDPnc.svg\"},\"\"),[B]:\"https://www.iovlabs.org?ref=workingincrypto\",[I]:\"IOV Labs is on a mission to provide the next generation of fintech innovators with the decentralised tools and technology to build a new global economy.\\nIOV Labs develops, promotes, and supports Rootstock, a Bitcoin merge-mined smart contract platform - the most secure smart contract platform in the world. IOV Labs also develops RIF Apps & Services to provide our partners with everything they need to build decentralized apps and new Open Finance services on Rootstock.\"},{index:11,id:\"dHSTZnlvZ\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Business Development Manager at Arrakis Finance\",[g]:\"business-development-manager-arrakis-finance\",[u]:\"AkV_YiMeS\",[m]:\"sales, marketing, business, B2B, DeFi, Gaming, NFT, CRM, Hubspot, Pipedrive\",[f]:\"2023-10-19T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"Zug, Paris, New York, Berlin\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"We are looking for a Business Developer Manager.\"}),/*#__PURE__*/e(\"p\",{children:\"We offer:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A fully remote team with team members in Zug, Paris, New York, Berlin, and many other cool places\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Chance to participate in shaping the future of web3 by working together with the biggest projects in this space, such as MakerDAO, Uniswap, Aave, Lido and many more Arrakis partners\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Worldclass Investors - We are backed by top class VCs and Angels including Uniswap, Robot Ventures, Accel, Longhash any many more\"})})]})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Creating & implementing Arrakis\u2019 BD strategy to grow its customer base, increase protocol revenue and become the number one decentralized market making provider in web3\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Scanning the web3 market for new partners and establishing the first point of contact\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Close deals with customers by working together with our marketing and tech team\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Build and manage a world class sales and business development pipeline\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Manage other sales executives to ensure growth objectives are met\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Become an active community leader\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Travel to and speak at crypto events worldwide\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"5+ years experience in sales, partnerships and business development at top DeFi, Market Maker or TradeFi company\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong hunter instincts for outbound outreach to find and identify customers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Advanced knowledge about projects and new innovations in DeFi / blockchain industry\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent written and verbal communication skills, especially interacting with CFOs / CEOs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience in leading and creating the strategy for business development of high growth technology companies\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Comfortable in fast-paced environments\"})})]})}),[P]:null,[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Generous SPICE token package\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Competitive Salary + Performance based compensation\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Possibility to work with the Founders in-person together in Switzerland\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Build relationships with top blockchain teams which are already Arrakis users\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Chance to travel the world to go to exciting events and connect with key players in this industry\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Join amazing in-person offsites all over the world\"})})]})}),[A]:\"https://apply.workable.com/gelato-digital/j/475B9BE142?ref=workingincrypto\",[T]:\"Gelato\",[D]:\"Zug, Switzerland\",[M]:W({src:\"https://framerusercontent.com/images/F6tgH4MiUENM6DfYshnAhMifbqs.png\"},\"\"),[B]:\"https://www.gelato.network?ref=workingincrypto\",[I]:\"Gelato is Web3\u2019s decentralized backend empowering builders to create augmented smart contracts that are automated, gasless & off-chain aware.\"},{index:12,id:\"kxppOBmgO\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Chief Technical Officer (CTO)\",[g]:\"chief-technical-officer-(cto)\",[u]:\"t0cu62ncf\",[m]:\"Blockchain, DeFi, Crypto, Web3, Management\",[f]:\"2023-08-01T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"Cyprus or Remote\",[v]:\"Competitive\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"P2P is looking for a CTO\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Define IT objectives and strategies.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Implement technology to optimize internal operations and provide strategic benefits.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Plan new system implementations and provide guidance to IT professionals and staff.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Oversee technological infrastructure for optimal performance.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Monitor technology advancements for competitive advantage.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Analyze the cost, value, and risk of IT to advise management and suggest actions.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Supervise engineering team operations.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Develop team culture by guiding, mentoring, and training engineers.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Allocate resources to meet goals and identify growth needs.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work closely with C-level and technical leaders to meet tasks, deadlines, and goals.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Inspire teamwork, integrity, quality, and professionalism.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Manage engineering engagement, retention, and performance.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide professional development, coaching, and mentorship.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Design processes and tooling to support multiple products in diverse geographies.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Engage in architectural discussions and drive towards decisions.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Contribute to strategic decision-making and resource allocation at the company level.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Control and manage the IT budget.\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"At least 5 years of relevant experience as a CTO\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Passionate about blockchain technology and finance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Deep understanding of blockchain/DeFi/crypto technologies preferred\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Deep technical background in open-source, cloud solutions with experience in software engineering and infrastructure within a high-performing technology organization\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Outstanding executive-level communication skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Solid analytical and problem-solving skills, with the ability to ensure they are implemented\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Comfortable working in high-growth, constantly changing environments\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with diverse technology applications and associated architectures\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience in attracting, hiring, enabling, and developing talent\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent collaborative manager of managers, with the ability to mentor and grow senior engineers and engineering managers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience shaping organizational design, incentivization, and communication structures across multiple teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong process- and systems thinker with the ability to find transdisciplinary solutions to open-ended business and tech problems\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Understanding of cloud computing and architecture; high-performance computing preferred\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Knowledge of the latest technological and regulatory trends in providing IT infrastructure to businesses; financial capital markets experience preferred\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Fluency in English\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]})}),[P]:null,[E]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At P2P.org we have a team of experts with their own unique approach and ownership culture.\"}),/*#__PURE__*/t(\"ul\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(68, 68, 68)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work from anywhere in the world: an international distributed team\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Competitive salary level in $\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Well-being program\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Mental Health care program\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Compensation for education, including English & professional growth courses\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Equipment & co-working reimbursement program\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Overseas conferences, community immersion\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Positive and friendly communication culture\"})})]})]}),[A]:\"https://p2porg.global.huntflow.io/vacancy/chief-technical-officer-cto?ref=workingincrypto\",[T]:\"P2P\",[D]:\"Cyprus\",[M]:W({src:\"https://framerusercontent.com/images/2wptDivWwjKNYejRDDi2OTGvRQ.jpg\"},\"\"),[B]:\"https://p2p.org?ref=workingincrypto\",[I]:\"P2P.org launched in 2018 with a mission to positively influence the development of PoS technologies. Since our launch we have grown to manage 4+ billion USD in staked assets across more than 20,000 investors and 25+ unique blockchain networks and now P2P.org is a global Top-3 Non-Custodial staking provider. Our 3-year goal is to go public (IPO).\"},{index:13,id:\"dnroGsm45\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Immigration and People Operations Coordinator\",[g]:\"immigration-and-people-operations-coordinator\",[u]:\"JHFlwKeNG\",[m]:\"HR, Immigration, EOR, AI, Claude, Operations\",[f]:\"2023-07-25T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"aIB2WdBQY\",[b]:\"USA San Francisco\",[v]:\"$115k - $160k\",[k]:!1,[x]:\">0.1%\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Anthropic's People Team is looking for an Immigration and People Operations Coordinator to support talented and globally diverse staff. In this role, you\u2019ll help oversee all of our immigration processes and cases, ensuring that employees have a smooth and timely experience applying for or renewing visas. You are diligent, organized, highly responsive and communicative, and you believe in constantly providing higher levels of service to your team.\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Working with our external counsel to support the process of business immigration for current and future employees. This includes outlining the factors involved in a visa case for candidates and employees, candidates, coordinating with recruiters, managers, and candidates/employees to get the necessary information and documents\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Partnering with the internal stakeholders to manage the visa initiation/renewal and green card process, acting as a bridge and ensuring a smooth and positive candidate and employee experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ensuring domestic and international compliance from an employer perspective and overseeing immigration accounts and proper documentation storage (E-Verify, MyUSCIS, Google Drive, etc.)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Supporting our EOR processes and global workforce, coordinating with the EOR, answering all employee questions, and ensuring positive employee experience with our EOR\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"General People Operations support such as identifying and collaborating on process improvement initiatives in our immigration process and beyond, making sure our documentation/policies are up to date, accessible, and easy to understand for fellow Ants\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"Are a strong communicator, particularly in writing.\",/*#__PURE__*/e(\"strong\",{children:\"\\xa0\"}),\"You will need to manage a large volume of email correspondence.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Are reliable and responsive. You will be fielding time-sensitive and urgent questions and requests from employees and hiring managers.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Are organized and detail-oriented. You will manage time-sensitive and critical processes around immigration cases and more.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Are service-oriented. You consider internal teams as \u201Cclients\u201D for whom you want to provide a great experience.\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Have 2+ years of People Operations or HR experience and prior experience supporting business immigration cases. However, we are also open to hiring a candidate with no prior familiarity with international hiring or visa processes.\"})})})}),[E]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Anthropic\u2019s compensation package consists of three elements: salary, equity, and benefits. We are committed to pay fairness and aim for these three elements collectively to be highly competitive with market rates.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Equity\"}),\" -\\xa0On top of this position's salary (listed above), equity will be a major component of the total compensation. We aim to offer higher-than-average equity compensation for a company of our size, and communicate equity amounts at the time of offer issuance.\"]}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Benefits we offer include:\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Optional equity donation matching at a 3:1 ratio, up to 50% of your equity grant.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Comprehensive health, dental, and vision insurance for you and all your dependents.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"401(k) plan with 4% matching.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"21 weeks of paid parental leave.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Unlimited PTO \u2013 most staff take between 4-6 weeks each year, sometimes more!\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Stipends for education, home office improvements, commuting, and wellness.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fertility benefits via Carrot.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Daily lunches and snacks in our office.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Relocation support for those moving to the Bay Area.\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"* This compensation and benefits information is based on Anthropic\u2019s good faith estimate for this position, in San Francisco, CA, as of the date of publication and may be modified in the future. The level of pay within the range will depend on a variety of job-related factors, including where you place on our internal performance ladders, which is based on factors including past work experience, relevant education, and performance on our interviews or in a work trial.\"})})]}),[A]:\"https://jobs.lever.co/Anthropic/a8a15ccf-f77c-413f-9f15-d68a817e22b3?ref=workingincrypto\",[T]:\"Anthropic\",[D]:\"San Francisco, California\",[M]:W({src:\"https://framerusercontent.com/images/nepoLvki3ODSSAeFpKis4ali7Y.webp\"},\"\"),[B]:\"https://www.anthropic.com?ref=workingincrypto\",[I]:\"Anthropic\u2019s mission is to create reliable, interpretable, and steerable AI systems. We want AI to be safe and beneficial for our users and for society as a whole. Our team is a quickly growing group of committed researchers, engineers, policy experts, and business leaders working together to build beneficial AI systems.\"},{index:14,id:\"z8UOcVre6\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Product Marketer\",[g]:\"product-marketer\",[u]:\"k0EXSIdIB\",[m]:\"Crypto Payroll, DAO, DeFi, Ethereum, Non-Tech, Product, Product Marketing\",[f]:\"2023-07-25T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"We\u2019re on the hunt for a dynamic and action-oriented marketer to be the first marketing addition to our team. The ideal candidate will possess the perfect blend of strategy and execution, thriving in the high-octane environment of a startup. Your strategic acumen will align with our cross-functional teams, enabling the delivery of product marketing and campaign execution.\"}),/*#__PURE__*/e(\"p\",{children:\"Reporting directly to our Product Lead, you will straddle the realms of Product Marketing and Growth Marketing. Your role encompasses launching, tracking, and optimising campaigns across various channels. The aim? To seamlessly guide our prospects and customers through the marketing funnel while effectively communicating the benefits of our product.\"}),/*#__PURE__*/e(\"p\",{children:\"You will constantly ideate on our key messages and the right audience for them, ensuring our brand\u2019s voice reaches the market effectively.\"})]}),[C]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Develop and implement robust product marketing strategies encompassing positioning, messaging, competitive analysis, and go-to-market plans.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Support Go-To-Market (GTM) strategies with product, sales enablement, pricing, partner marketing, and competitive analysis.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Craft Coinshift\u2019s overarching messaging and positioning, collaborating closely with our product and growth teams.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Manage our distribution channels, demand generation, inbound marketing, website, marketing tech stack, paid advertising, and marketing analytics.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work closely with the brand & visuals designer.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Pen our monthly newsletter, keeping our audience updated on our latest developments.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Define our social media strategy, with a focus on Twitter and other relevant platforms.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with our Customer Success team to enhance user testimonials and onboarding processes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Regularly experiment with diverse marketing strategies to optimize outreach and engagement.\"})})]}),/*#__PURE__*/e(\"h4\",{children:\"\uD83D\uDCCA Example Metrics\"}),/*#__PURE__*/t(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(65, 83, 97)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Organic website traffic\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Referral traffic from social media, particularly Twitter\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Newsletter subscription rates\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Inbound leads and conversion rate\"})})]})]}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"3+ years of experience in product marketing, growth marketing, or content creation.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prior experience at an early-stage B2B SaaS company.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A strong understanding of the web3 ecosystem, key projects, topical narratives, and emerging trends.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A proactive \u201Cdoer\u201D with a keen eye for exceptional marketing strategies.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent writing and editing skills (samples required).\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Knowledgeable or interested in go-to-market technology, startups, and growth strategies.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proven experience in establishing and leading marketing teams and strategies.\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience as the first marketing hire.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prior experience in the web3/cryptocurrency space.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"2+ years experience in product development related to fintech, payments, or financial reporting.\"})})]})}),[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[\"\uD83D\uDCBB \",/*#__PURE__*/e(\"strong\",{children:\"Equipment Stipend\"})]}),/*#__PURE__*/e(\"p\",{children:\"Unleash your productivity and creativity with our unbeatable remote office setup package - a generous equipment stipend to ensure you have everything you need to work comfortably and effectively.\"})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[\"\u231B \",/*#__PURE__*/e(\"strong\",{children:\"Flexible Time Off\"})]}),/*#__PURE__*/e(\"p\",{children:\"At Coinshift, we believe in the power of taking time to recharge and rejuvenate. That\u2019s why we offer unlimited time off to all team members, with the average taking a refreshing 4-6 weeks.\"})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[\"\uD83D\uDCB0 \",/*#__PURE__*/e(\"strong\",{children:\"Get Paid in Real Time, in Crypto\"})]}),/*#__PURE__*/e(\"p\",{children:\"Want to be at the forefront of the Web3 revolution? Join our team and get the option to be paid in Crypto - with our partnership with SuperFluid, you\u2019ll have access to real-time salary streaming.\"})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[\"\uD83D\uDCBC \",/*#__PURE__*/e(\"strong\",{children:\"Coworking Space Coverage\"})]}),/*#__PURE__*/e(\"p\",{children:\"We\u2019ll cover the expenses if you choose to work at a coworking space. Allowing you to work in a professional and productive environment while keeping your work-life balance intact.\"})]}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[\"\uD83C\uDFC4 \",/*#__PURE__*/e(\"strong\",{children:\"Annual Retreats\"})]}),/*#__PURE__*/e(\"p\",{children:\"And, once a year, we\u2019ll whisk you away to an amazing destination for our annual team retreat, where you\u2019ll collaborate, bond, and make unforgettable memories!\"})]})]})}),[A]:\"https://cryptocurrencyjobs.co/marketing/coinshift-product-marketer/?ref=workingincrypto\",[T]:\"Coinshift\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/Mr9TOJ7vin5V3sGfVpbWFmnP4cs.jpg\"},\"\"),[B]:\"https://coinshift.xyz?ref=workingincrypto\",[I]:\"Coinshift is a leading non-custodial treasury management platform built on top of Gnosis safe. We provide a smart and sophisticated user experience application to manage treasury ops in an efficient manner.\"},{index:15,id:\"D0fP7bSVV\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Machine Learning Engineer\",[g]:\"machine-learning-engineer\",[u]:\"t0cu62ncf\",[m]:\"Data, MLL, Web3, Python, Numpy, Scipy, Jupyter, Pandas\",[f]:\"2023-07-14T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"United States and Canada\",[v]:\"150,000 - 180,000\",[k]:!1,[x]:\"0\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"In order to grow our impact in the DeFi space we are looking to hire experienced Machine Learning Engineers to help new and established protocols better manage the systems they\u2019ve built. This role will require establishing a strong ability to scope, build, and maintain end to end machine learning pipelines in order to dynamically manage and tune protocols under changing market conditions to maximize their growth.\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Own end to end creation of ML models to dynamically optimize DeFi protocols\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Contribute to making our core ML infrastructure and platform world-class\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Build data models and visualizations of public blockchain data and modeling results that provide intuitive analytics to our customers to better understand our recommendations and their protocol.\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"5+ years of professional engineering experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proficient at writing code in Python or similar interpreted languages\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with scientific computing packages such as Numpy/Scipy, Jupyter, Pandas, etc.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience deploying and tuning ML models in a production setting\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong communication skills and the ability to work collaboratively in a distributed team environment\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working in the crypto industry is a plus but not required.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Enthusiasm for the space, especially DeFi, is very much desired\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Smart contract development experience (e.g. Solidity)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with building machine learning models at scale\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Published or presented research in the space\"})})]})}),[E]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Remote first - work from anywhere!\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:'Regular in-person company retreats and cross-country \"office visit\" perk'})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"100% paid medical, dental and vision premiums for employees\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Laptop, monitor, keyboard and mouse setup provided\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"$1,000 WFH stipend upon joining\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"$100 per month reimbursement for fitness-related expenses\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Monthly reimbursement for home internet, phone, and cellular data\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Unlimited vacation\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"100% paid parental leave of 12 weeks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fertility benefits\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Opportunity for incentive compensation\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Please note at this time our hiring is reserved for potential employees who are able to work within the contiguous United States and Canada. Should you need alternative accommodations, please note that in your application.\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"The national pay range for this role is $150,000 - $180,000 base plus additional On Target Earnings potential by level and equity in the company. Our salary ranges are based on paying competitively for a company of our size and industry, and are one part of many compensation, benefits and other reward opportunities we provide.\\xa0Individual pay rate decisions are based on a number of factors, including qualifications for the role, experience level, skill set, and balancing internal equity relative to peers at the company.\\xa0\\xa0\"})})]}),[A]:\"https://jobs.lever.co/gauntlet/af3e4802-35a9-4ee2-9579-dac72f1d3bc3?ref=workingincrytpo\",[T]:\"Gauntlet\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/d2vazWwViCSaJuR8EJDqSKGulY.png\",srcSet:\"https://framerusercontent.com/images/d2vazWwViCSaJuR8EJDqSKGulY.png?scale-down-to=512 512w,https://framerusercontent.com/images/d2vazWwViCSaJuR8EJDqSKGulY.png 920w\"},\"\"),[B]:\"https://gauntlet.network?ref=workingincrypto\",[I]:\"Gauntlet is building infrastructure that allows us to simulate and stress-test blockchain protocols, contracts, and network interactions at scale over a wide range of market conditions. Our models ingest a wide range of on-chain and off-chain data, and are continuously calibrated to the current crypto market structure so that our recommendations are always up-to-date. These models and infrastructure power our platform that currently manages risk and optimizes incentives for over $40B in assets.\"},{index:16,id:\"GapOxjyUh\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Data Scientist\",[g]:\"data-scientist\",[u]:\"t0cu62ncf\",[m]:\"Data, DeFi, Web3, Blockchain, SQL, Python, Fintech, Management\",[f]:\"2023-07-13T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"United States and Canada\",[v]:\"120,000 - 180,000\",[k]:!1,[x]:\"0\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"In order to grow our impact in the DeFi space we are looking to hire experienced Data Scientists to help new and established protocols better understand the systems they\u2019ve built. This role will require establishing a strong ability to analyze and interpret data; as well as the ability to collaborate with and manage external clients. You will be working directly with the leadership of premier and innovative DeFi protocols and developing expert-level knowledge and experience of the mechanisms that underpin the DeFi industry.\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perform in depth novel research into how to make premier DeFi protocols safer and more efficient through mechanism design, data analysis, and dynamic parameter optimization.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Take ownership of client engagements, scoping out work, managing client relationships, and delivering value to clients through your research and work.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Draft and write engaging research for public consumption both to grow Gauntlet\u2019s Brand as well as to satisfy client requirements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Build and deploy easy-to-understand and visually compelling dashboards for internal and external consumption\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"4+ years of professional experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Extremely clear and effective communication and client management skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proven track record of drawing deep insights from complex datasets\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with data querying languages (e.g. SQL), scripting languages (e.g. Python), and/or statistical/mathematical software (e.g. R)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work highly independently working towards abstract goals\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working with pricing models, financial products and/or different asset classes\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working in the crypto industry is a big plus.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Enthusiasm for the space, especially DeFi, is very much desired\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Smart contract development experience (e.g. Solidity)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience managing external client relationships\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Published or presented research in the space\"})})]})}),[E]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Remote first - work from anywhere!\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:'Regular in-person company retreats and cross-country \"office visit\" perk'})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"100% paid medical, dental and vision premiums for employees\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Laptop, monitor, keyboard and mouse setup provided\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"$1,000 WFH stipend upon joining\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"$100 per month reimbursement for fitness-related expenses\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Monthly reimbursement for home internet, phone, and cellular data\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Unlimited vacation\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"100% paid parental leave of 12 weeksFertility benefitsOpportunity for incentive compensation\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Please note at this time our hiring is reserved for potential employees who are able to work within the contiguous United States and Canada. Should you need alternative accommodations, please note that in your application.\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"The national pay range for this role is $120,000 - $180,000 base plus additional On Target Earnings potential by level and equity in the company. Our salary ranges are based on paying competitively for a company of our size and industry, and are one part of many compensation, benefits and other reward opportunities we provide.\\xa0Individual pay rate decisions are based on a number of factors, including qualifications for the role, experience level, skill set, and balancing internal equity relative to peers at the company.\\xa0\"})})]}),[A]:\"https://jobs.lever.co/gauntlet/f778c21d-34ec-4555-a4ac-3f2206f8b90b?ref=workingincrytpo\",[T]:\"Gauntlet\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/d2vazWwViCSaJuR8EJDqSKGulY.png\",srcSet:\"https://framerusercontent.com/images/d2vazWwViCSaJuR8EJDqSKGulY.png?scale-down-to=512 512w,https://framerusercontent.com/images/d2vazWwViCSaJuR8EJDqSKGulY.png 920w\"},\"\"),[B]:\"https://gauntlet.network?ref=workingincrypto\",[I]:\"Gauntlet is building infrastructure that allows us to simulate and stress-test blockchain protocols, contracts, and network interactions at scale over a wide range of market conditions. Our models ingest a wide range of on-chain and off-chain data, and are continuously calibrated to the current crypto market structure so that our recommendations are always up-to-date. These models and infrastructure power our platform that currently manages risk and optimizes incentives for over $40B in assets.\"},{index:17,id:\"xjoAV8l1z\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Senior Corporate Counsel - Corporate Governance\",[g]:\"senior-corporate-counsel-corporate-governance\",[u]:\"wcDUdl_7C\",[m]:\"Governance, AML, KYC, KYB, UBO, Senior, Corporate, Project management, Negotiation, Management\",[f]:\"2023-07-07T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"US\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Join our growing corporate legal team of more than 9 attorneys and paraprofessionals working on matters such as corporate governance, board management, international corporate structuring, product formation and strategy, securities compliance and debt and equity financings to further Kraken\u2019s mission.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"This role is fully remote within the United States (US). Per the listed requirement for US state bar admission, we will consider US-based applicants.\"})})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Leading legal work for domestic and international corporate governance, regulatory compliance, international registrations, and management of subsidiary entities\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate closely with business executives and colleagues in the legal, tax, HR, treasury, and finance departments on domestic and international corporate governance, corporate structuring, regulatory compliance, and related securities matters\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Contribute to a growing corporate legal team that is building out org structure, playbooks, and processes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Review and collaborate with compliance professionals on AML, KYC/UBO compliance, and other regulatory aspects\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide support for corporate development activities, including mergers and acquisitions and strategic corporate partnership\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide creative, innovative, and effective legal solutions for business stakeholders\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"8+ years of relevant experience in corporate governance, to include a blend of in-house and law firm, plus relevant experience in a regulated industry/context with substantial exposure to or experience in a high growth technology company\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"JD from a well regarded law school and membership (in good standing) in a US state bar\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interest in the crypto industry / what our company is offering to the world and why\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong analytical, writing, and organizational skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent project management, negotiation, drafting, and time management skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Honed executive communication skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent business judgment, analytic rigor, and legal pragmatism\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Mindset that is team-oriented, plus proactive and entrepreneurial: an opportunity-making person who uses the law to increase the company\u2019s optionality, not decrease it\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with regulated financial services firms\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience both in-house and at a law firm\"})})]})}),[E]:null,[A]:\"https://jobs.lever.co/kraken/272e1b06-945b-4796-be35-d36fa35a4cf2?ref=workingincrypto\",[T]:\"Kraken\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png\",srcSet:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png 1198w\"},\"\"),[B]:\"https://www.kraken.com?ref=workingincrypto\",[I]:\"As a fully remote company, we have Krakenites in 60+ countries who speak over 50 languages. Krakenites are industry pioneers who develop premium crypto products for experienced traders, institutions, and newcomers to the space. Kraken is committed to industry-leading security, crypto education, and world-class client support through our products like Kraken Pro, Kraken NFT, and Cryptowatch.\\n\\nBecome a Krakenite and build the internet of money!\"},{index:18,id:\"mHkp9mJZJ\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Senior Corporate and Securities Counsel\",[g]:\"senior-corporate-and-securities-counsel\",[u]:\"wcDUdl_7C\",[m]:\"Senior, Corporate, Securities, Financial, Negotiation, Crypto, Web3, Blockchain\",[f]:\"2023-07-07T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"US\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Join our growing corporate legal team of more than 9 attorneys and paraprofessionals working on matters such as corporate governance, board management, international corporate structuring, product formation and strategy, securities compliance and debt and equity financings to further Kraken\u2019s mission.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"This role is fully remote within the United States (US). Per the listed requirement for US state bar admission, we will consider US-based applicants.\"})})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Joining Kraken legal as a senior member of the corporate governance team. Responsibilities include guiding corporate strategic transactions, providing experienced corporate governance and board advice, securities compliance, product structuring and advice, and public company preparedness\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide creative, innovative, and effective legal solutions for business stakeholders on routinely short timelines\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Be an outstanding collaborator with colleagues in legal, finance, accounting, corporate development, compliance, tax, equity, compensation and other areas\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"8+ years of relevant corporate and securities legal experience at a leading national firm, or comparable in house practice, with substantial exposure to or experience in a high growth technology company\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience advising companies on \u201833 and \u201834 act securities law requirements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent project management, negotiation, drafting, and time management skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Honed executive communication skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent business judgment, analytic rigor, and legal pragmatism\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Must be active and in good standing in one State Bar in the United States\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Passion for the crypto industry\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lead cross-functional teams in an in-house legal role\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with regulated financial services firms\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Public company reporting experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience both in house and at a law firm\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Product structuring experience\"})})]})}),[E]:null,[A]:\"https://jobs.lever.co/kraken/272e1b06-945b-4796-be35-d36fa35a4cf2?ref=workingincrypto\",[T]:\"Kraken\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png\",srcSet:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png 1198w\"},\"\"),[B]:\"https://www.kraken.com?ref=workingincrypto\",[I]:\"As a fully remote company, we have Krakenites in 60+ countries who speak over 50 languages. Krakenites are industry pioneers who develop premium crypto products for experienced traders, institutions, and newcomers to the space. Kraken is committed to industry-leading security, crypto education, and world-class client support through our products like Kraken Pro, Kraken NFT, and Cryptowatch.\\n\\nBecome a Krakenite and build the internet of money!\"},{index:19,id:\"TnG3aNvUy\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Senior Brand Designer\",[g]:\"senior-brand-designer\",[u]:\"ciEAYkEzq\",[m]:\"Design, Brand, Marketing, Illustration, Adobe, Typography, Colors, Figma\",[f]:\"2023-07-07T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"annywhere\",[v]:\"0\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Join our team of product designers to help us reinvent everything from the way money works to a bunch of even more ambitious things we can\u2019t talk about yet \u2014 independent thinkers who believe in a tomorrow where cryptocurrency spreads wealth inclusively and enables new forms of creativity. We\u2019re not building a fintech company here. We\u2019re building an adventure. One that requires creative people who aren\u2019t afraid to cast aside established ways of doing things to create delightful, inclusive experiences for customers across 170+ countries.\"}),/*#__PURE__*/e(\"p\",{children:\"Throughout the history of civilization, there have been a handful of moments that changed the course of how we think about wealth and equality. The discovery of gold, the creation of paper money, mortgages, ATMs. We\u2019re at the next of those moments right now, and there is no more exciting place to invest your creativity than directly at this intersection of technology and adventure.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"We are looking for motivated, detail-oriented self-starters with a passion for beautiful design that delivers meaningful experiences to our customers and continuing fantastic results for our rapidly expanding business. All designers on our team collaborate closely with product, marketing, researchers, and content specialists, so you must be comfortable working in this cooperative model. We feel that the best work comes when creative people roll up their sleeves and solve problems together.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work closely with a passionate Brand Design team\\xa0 responsible for strategizing, ideating and producing a variety of modern design assets\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Developing and maintaining brand guidelines: You will be actively contributing to guidelines that define how the brand should be used across our product ecosystem and touch points, ensuring consistency and cohesiveness in all brand communications\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Create high quality, delightful design - with designers, researchers, animators, content specialists, and illustrations\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Take concepts from research, to exploration, to delivery\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Actively participate in design reviews both seeking and giving meaningful and supportive feedback\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Help grow our inclusive design team culture with your unique personality\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with teams across the company from marketing to product to engineering\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work holistically across film, animation, illustration, digital design and graphic design\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Take full accountability for your work and exercise consideration of every detailInnovate and explore the edges of technology and creativity\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Design experience in startups or agencies, working with a variety of teams on a multitude of projects\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A strong portfolio showcasing detail-oriented design work, strategic thinking and provocative creative\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellence in typography, color, layout, and composition\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Natural storytellers with a demonstrated ability to showcase work, rationalize decisions and communicate concepts\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Mastery of Adobe CC, and a working knowledge of Figma\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work independently, drive multiple projects at a time, and iterate quickly\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Desire to thrive within a fast-paced, emerging industry with a variety of design challenges\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience in Crypto or an avid fan of the industry\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proficiency in English writing\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Remote working experience\"})})]})}),[E]:null,[A]:\"https://jobs.lever.co/kraken/564c5f3f-4177-4022-93ea-4340ca6d6570?ref=workingincrypto\",[T]:\"Kraken\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png\",srcSet:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png 1198w\"},\"\"),[B]:\"https://www.kraken.com?ref=workingincrypto\",[I]:\"As a fully remote company, we have Krakenites in 60+ countries who speak over 50 languages. Krakenites are industry pioneers who develop premium crypto products for experienced traders, institutions, and newcomers to the space. Kraken is committed to industry-leading security, crypto education, and world-class client support through our products like Kraken Pro, Kraken NFT, and Cryptowatch.\\n\\nBecome a Krakenite and build the internet of money!\"},{index:20,id:\"ELp3rFNR2\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Senior Product Designer at Vesta\",[g]:\"senior-product-designer-at-vesta\",[u]:\"ciEAYkEzq\",[m]:\"design, web3, blockchain, UX, Visual Design, DeFi, User Research\",[f]:\"2023-09-05T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"aIB2WdBQY\",[b]:\"Vancouver\",[v]:\"100k - 130k\",[k]:!1,[x]:\"1% - 2%\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Vesta is looking for a Senior Product Designer to join our team. Our focus is to create the most accessible DeFi experiences for our users. We pride ourselves in rethinking established paradigms and bringing creative solutions into existence in the financial space.\"}),/*#__PURE__*/e(\"p\",{children:\"Our product designers take a product, feature, or experience from ideation to production. This includes vision setting, designing solutions, prototyping, bringing along cross-functional teams, overseeing implementation, and collaborating with other designers, researchers, product managers, analysts, and engineers.\"}),/*#__PURE__*/e(\"p\",{children:\"You will learn concepts that are fundamental in decentralized finance. We do not require prior experience in fintech or crypto, but we do require a passion for excellence. The role is based in Vancouver.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work with other designers, product and engineering to define and implement experiences that are intuitive, engaging and easily understood based on player, business and creative goals\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Understand fully the user psychology and create personas through user research and data\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work with product, research and engineering on product discovery - define and iterate product specification, interaction model, wireframes and prototypes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Own design problems end to end and proactive collaborative with other teams, from initial concept through execution and beyond\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Conduct concept and usability testing and gather feedback\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Apply and establish a set of design standards, documentation, and principles that are used alongside a design system\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Build alignment and articulate vision, set design milestones and other accountability measures\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"5+ years of experience as a UX designer, experience designer, product designer, or interaction designer\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience conducting and applying research, usability tests, and metrics to inform design decisions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Demonstrable UI design skills with a strong portfolio\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working with fintech products or products with heavy amount of math\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Outstanding UX ability, visual design and product thinking for web and mobile apps\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proven experience for turning complex problems into simple and engaging experiences\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Deep systems thinker, able to optimize sophisticated information architecture\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Flexible and comfortable with ambiguity and change during a project\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Good knowledge of web3, DeFi and blockchain\"})})})}),[E]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Vesta\u2019s benefits include unlimited and encouraged time off, with annual education, tech, health & fitness and conference stipend (all benefits are subject to applicable taxes and based on eligibility).\"}),/*#__PURE__*/e(\"p\",{children:\"\u2014\"}),/*#__PURE__*/e(\"p\",{children:\"Minimum full-time salary of CA$100,000-$130,000 with starting token allocation of 210k-420k VSTA token. Our salary ranges are determined by role, level, and location. Within the range, individual pay is determined by work location and additional factors, including job-related skills, experience, and relevant education or training.\"})]}),[A]:\"https://wellfound.com/jobs/2780605-senior-product-designer?ref=workingincrypto\",[T]:\"Vesta\",[D]:\"Vancouver - Canada\",[M]:W({src:\"https://framerusercontent.com/images/UdJQwlaKXZlwkOAqASE0NrzJuLU.png\"},\"\"),[B]:\"https://vestafinance.xyz/?ref=workingincrypto\",[I]:\"Vesta is a software company that builds products in the decentralized finance space. Our stablecoin product is the largest crypto-backed stablecoin on Arbitrum having seen $1B in total volume.\"},{index:21,id:\"wxLZPxJB4\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Senior Smart Contract Engineer\",[g]:\"senior-smart-contract-engineer\",[u]:\"t0cu62ncf\",[m]:\"Engineer, Web3, Smart contract, Senior, Ethereum, Solidity, DeFi\",[f]:\"2023-08-10T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"Worldwide\",[v]:\"175,000 - 275,000\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"We're looking for a self-motivated and enthusiastic contributor. You\u2019ll work closely with other core members to ship high value features and products.\"}),/*#__PURE__*/e(\"p\",{children:\"We are a fast pace, process-lite, high autonomy environment. We are distributed around the globe so feel free to apply no matter where you\u2019re located.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Design and implement upgrades to core gTrade smart contracts\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Comprehensive testing, including unit, integration, property-based\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Design and implement periphery contracts\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Design and implement peripheral mechanisms to the protocol, such as indexing\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"5+ years as software engineer in industry\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"2+ years of experience building and releasing production grade Solidity contracts\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A deep understanding of the Ethereum Virtual Machine\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prior experience deploying complex smart contract systems\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prev experience working on a reputable DeFi project\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prev experience working on a trading platform / protocol / or the likes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Demonstrated interest for DeFi\"})})]})}),[E]:null,[A]:\"https://ruddy-fluorine-9ef.notion.site/Gains-Network-Senior-Smart-Contract-Engineer-2cf7eaab1b704e9ab0356d7ce458503e?ref=workingincrypto\",[T]:\"Gains Network\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/l93USyeQszecinZO5pz3XESRPk.png\"},\"\"),[B]:\"https://gains.trade?ref=workingincrypto\",[I]:\"Gains Network is developing gTrade, a liquidity-efficient, user-friendly decentralized leveraged trading platform. gTrade is one of the largest leverage trading platforms in DeFi. Its novel and innovative technical architecture, as well as its strong and dedicated core contributors have positioned it for considerable, continued growth.\"},{index:22,id:\"G1DikRVrB\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Project & Events Executive\",[g]:\"project-events-executive\",[u]:\"JHFlwKeNG\",[m]:\"Projects, Events, Executive, Senior, Management, English, Spanish, Business operations,\",[f]:\"2023-08-04T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"Europe\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"We are looking for a Project & Event Executive to join IOV Labs during this exciting time of growth. Reporting to the Chief of Staff, you will support the ongoing transformation of our business.\"}),/*#__PURE__*/e(\"p\",{children:\"As a strong project leader, you will work across multiple different teams and support them in defining their needs and execute projects and events of all types. This role is an incredible opportunity to impact the products and culture of one of the world\u2019s leading smart contract platforms.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Understand the strategic objectives of the organization and translate them into project objectives, scope, and plans\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Coordinate multiple projects concurrently, providing input and direction to teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Own projects end to end and drive progress independently\\xa0Implement project governance, risk controls, and financial management processes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Be the owner of the most important cultural events in the company\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Manage the delivery of projects, ensuring full visibility of status & progress\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proactively identify opportunities for process improvement and efficiency optimizations\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Manage communication with partners and stakeholders effectively and collaborate with different teams across the organization\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Communicate project status and escalate issues to direct manager and internal/external stakeholders\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ensure that projects operate within the approved budgets and timelines\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"3+ years of Project Management, Consultancy, or equivalent experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bachelor or advanced degree, preferably in Business, Economics, or a comparable field\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fluent level of English\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proficiency in GSuite and lean Project Management tools\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent analytical and problem-solving skills, with a \u201Chands-on\u201D attitude and a focus on both detail and fast execution\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Passion to combine structured frameworks and creative approaches to propose actionable recommendations\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Superior interpersonal and communication skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working in a fast-growing start-up is a plus\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong interest in and familiarity with cryptocurrency and decentralized technologies is a plus\"})})]})}),[P]:null,[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Competitive salary and bonus\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"100% remote working (contractor) from anywhere in the world\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Possibility to work at your nearest WeWork space\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Flexible working hours. You\u2019re free to work however you work best\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Paid holidays and personal leave days\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Opportunity to work with state of art technology in a challenging and unique project\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Internationally diverse and dynamic team with a clear vision and strategy\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Training programs to learn everything about the crypto world\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"English & Spanish lessons\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Weekly scientific moments by our Research & Innovation team\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Employee assistance program offering legal, financial, family, psychological, and wellness counseling for you and your family\"})})]})}),[A]:\"https://jobs.lever.co/iovlabs/77346ec5-6e77-439c-869c-cea89647a4ce?ref=workingincrypto\",[T]:\"IOV Labs\",[D]:\"Gibraltar\",[M]:W({src:\"https://framerusercontent.com/images/LhL1PXGA3xCWRQNxpFRzeDPnc.svg\"},\"\"),[B]:\"https://www.iovlabs.org?ref=workingincrypto\",[I]:\"IOV Labs is on a mission to provide the next generation of fintech innovators with the decentralised tools and technology to build a new global economy.\\nIOV Labs develops, promotes, and supports Rootstock, a Bitcoin merge-mined smart contract platform - the most secure smart contract platform in the world. IOV Labs also develops RIF Apps & Services to provide our partners with everything they need to build decentralized apps and new Open Finance services on Rootstock.\"},{index:23,id:\"r4M1QyvxK\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Finance & Accounting Manager\",[g]:\"finance-accounting-manager\",[u]:\"s42e6ezlt\",[m]:\"Web3, Finance, Management, Senior\",[f]:\"2023-07-25T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"KsOjlFXSl\",[b]:\"Zug\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"You\u2019ll be joining a growing team that currently includes 50+ people overall. This role is based in Zug (\uD83C\uDDE8\uD83C\uDDED) , but we also have awesome teammates in Berlin (\uD83C\uDDE9\uD83C\uDDEA), A Coruna (\uD83C\uDDEA\uD83C\uDDF8), and Lisbon (\uD83C\uDDF5\uD83C\uDDF9).\"}),/*#__PURE__*/t(\"p\",{children:[\"As a \",/*#__PURE__*/e(\"strong\",{children:\"Finance & Accounting Manager\"}),\" you will be responsible for maintaining accurate and compliant financial records for SEF (Safe Ecosystem Foundation), preparing financial reports, and supporting the Head of Finance in cost and treasury management.\"]})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Manage year-end proceedings as well as the relationship with the external auditors\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Take charge of tax compliance processes (corporate income tax, value added taxes)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Produce monthly management accounts (P&Ls, balance sheet, variance analysis)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Support on build of performance management capabilities, regulatory reporting (ESA), auditing and other compliance matters\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Manage external service providers for payroll and external accounting and tax services\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Implement and improve robust internal control processes to ensure full compliance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide guidance and support to other departments in financial matters (budgeting, forecasting, and financial analysis)\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"At least 4 years worked in an international accounting environment\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong knowledge of Swiss GAAP and financial reporting requirements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong analytical and problem-solving skills, with the ability to analyse complex financial data and make sound business decisions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Examples of taking full ownership on accounts, payroll and compliance processes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Confident using Slack, Google Docs & Sheets, Notion and accounting software (e.g. Sage / SAP)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fluent in German and English; exceptional written and verbal proficiency\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Confidence navigating Swiss accounting standards topics\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Knowledge of crypto accounting (issuance, airdrops, grants, staking)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Swiss CPA or equivalent\"})})]})}),[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Personal education and conference budgets\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Friday afternoons on research or on a side project in our ecosystem\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Flexible workplace when it comes to your work schedule\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Token allocation for all employees\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Annual company retreats\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Office space in the heart of Zug\"})})]})}),[A]:\"https://jobs.ashbyhq.com/safe.global/06ab9cd6-2d45-4a05-8f8d-192252ddcdc8?ref=workingincrypto\",[T]:\"Safe\",[D]:\"Switzerland\",[M]:W({src:\"https://framerusercontent.com/images/Jrpk0YYfoTgFxawWa5tKYmiEo.png\"},\"\"),[B]:\"https://safe.global?ref=workingincrypto\",[I]:\"Safe is the most trusted decentralized custody protocol and Safe the flagship wallet for the ecosystem on Ethereum and the EVM. Our team is on a mission to unlock digital ownership for the world. By building robust and accessible tools, we aim to fix some of web3\u2019s biggest challenges. For more information about Safe, check out our website.\"},{index:24,id:\"RYRF5X2jH\",[d]:!1,[c]:!1,[p]:!1,[h]:\"UI/UX Designer, Head of Design\",[g]:\"ui-ux-designer-head-of-design\",[u]:\"ciEAYkEzq\",[m]:\"UX, UI, Head of Design, Ethereum\",[f]:\"2023-07-17T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"KsOjlFXSl\",[b]:\"Denver or Cayman Islands\",[v]:\"100k - 120k\",[k]:!1,[x]:\"0.1+\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"We are looking for a smart, ambitious designer to join the ether.fi team as our first full-time head of design.\"}),/*#__PURE__*/e(\"p\",{children:\"This is a hands-on role with a broad scope and an opportunity to really make your mark on a growing startup.\"}),/*#__PURE__*/e(\"p\",{children:\"The role will report into the CEO and involve owning all aspects of branding and design at ether.fi.\"}),/*#__PURE__*/e(\"p\",{children:\"Over time the opportunity is to hire and run a full design and user testing team as the compony grows.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Company sites (WordPress)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dapps UI/UX\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Branding\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Social\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"At least 3-5 years work experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience in a design ownership role at tech startup\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working in a crypto startup\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"UI/UX experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"User testing and customer development\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Illustration\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Figma, Adobe suite, Maze\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Basic knowledge of HTML/CSS, Javascript\"})})]})}),[P]:null,[E]:null,[A]:\"https://ether.fi/job/ether-fi-denver-or-cayman-islands-1366-ui-ux-designer-head-of-design?ref=workingincrypto\",[T]:\"Ether.fi\",[D]:\"Cayman Island\",[M]:W({src:\"https://framerusercontent.com/images/1CzRHd5xld0c9CWDBS37EZ4.webp\"},\"\"),[B]:\"https://ether.fi?ref=workingincrypto\",[I]:\"ether.fi is a new liquid staking protocol on Ethereum that makes it easy and fun to stake ETH and earn rewards. ether.fi is one of the fastest growing protocols on Ethereum and funded by some of the best investors in crypto.\"},{index:25,id:\"uXY_Xs52J\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Studio Design Lead\",[g]:\"studio-design-lead\",[u]:\"ciEAYkEzq\",[m]:\"Ethereum, Open Source, Product, Program Manager, Web3, Senior, Lead, UI, UX, Design System\",[f]:\"2023-07-13T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"Worldwide\",[v]:\"70,000-80,000\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"As a Studio Design Lead, you will play a critical role in leading and guiding the design team. Working closely with the Studio Lead, you will oversee all aspects of the design process, from research and development to prototyping and production. Your expertise will be instrumental in developing and maintaining a state-of-the-art design system with diverse themes. In addition to your design skills, your ability to manage and mentor the design team will be crucial. You will work closely with the Studio Lead and PMs to ensure a smooth and efficient workflow, while fostering a culture of collaboration and creativity within the team. As a senior team member, you will be expected to lead by example and make meaningful contributions to the continued evolution of our design language and foundations.\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"You will be the lead designer of our design team when it comes to UI/UX\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"You will be designing, documenting, maintaining and developing further our design systems (with the help of other designers in the team)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"You will carry out managerial responsibilities regarding design workflows\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"You help the Studio Lead defining and foreseeing work packages and asks and make sure that the those are delivered\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Extensive knowledge of designs tools suitable for everything from UX to (micro) interactions (e.g. Figma, Framer)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Good knowledge and understanding of design systems, typography and designing layout\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience in building products\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Authenticity in design and being able to stay away from design trends (especially trends in web3) and yet be able to adopt those styles if needed\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience collaborating with stakeholders to identify and design for user goals\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"A strong alignment to our principles: \",/*#__PURE__*/e(r,{href:\"https://status.im/about/#our-principles\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://status.im/about/#our-principles\"})})]})})]})}),[P]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"ou have experience working for an open source organisation\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"You have experience in designing publishing mediums such as online readers, zines, books and online publishing platforms\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"You have experience in field computational design, generative art or memes\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"[Don\u2019t worry if you don\u2019t meet all of these criteria, we\u2019d still love to hear from you anyway if you think you\u2019d be a great fit for this role. Just explain to us why in your cover letter].\"})})]}),[E]:null,[A]:\"https://jobs.status.im/?gh_jid=4374867&ref=workingincrypto\",[T]:\"Status\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/eIcaSiHLOFlO4VyWGrIef85yg8.svg\"},\"\"),[I]:\"As an organization, Status seeks to push the web3 ecosystem forward through research, creation of developer tools, and support of the open source community. \\n\\nAs a product, Status is an open source, Ethereum-based app that gives users the power to chat, transact, and access a revolutionary world of DApps on the decentralized web. But Status is also building foundational infrastructure for the whole Ethereum ecosystem, including the Nimbus ETH 1.0 and 2.0 clients, the Keycard hardware wallet, and the Waku messaging protocol (a continuation of Whisper).\"},{index:26,id:\"HrhM4qI9W\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Creative Director\",[g]:\"creative-director\",[u]:\"ciEAYkEzq\",[m]:\"Creative, Senior, Director, NFT, Marketing, Management, Web3, Metaverse, Brand, Photoshop, Premiere Pro, InDesign, Illustrator, Sketch, Figma, Adobe, Crypto, Typography, Color, DeFi\",[f]:\"2023-07-10T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At Metaversal, content, marketing and design are about understanding how to communicate directly with creators, consumers, and brands across diverse sectors: fine art, fashion, gaming, and more. We are seeking an experienced Creative Director to join our creative team.\"}),/*#__PURE__*/e(\"p\",{children:\"In this role, the Creative Director will be responsible for leading the creative design process for a variety of projects from concept development to final production. They will collaborate with cross-functional teams to conceive ideas and create high quality visuals that represent Metaversal\u2019s brand identity.\"}),/*#__PURE__*/e(\"p\",{children:\"The Creative Director will play a crucial role in developing, growing, and maintaining Metaversal's brand identity, conceptualizing and supporting strategic studio projects and initiatives, and delivering visually stunning designs and multimedia content that engages and resonates with our target audience.\"}),/*#__PURE__*/e(\"p\",{children:\"The ideal candidate will have a strong portfolio that showcases their expertise in user-centered design, typography, color theory, and layout, as well as excellent communication and leadership skills. They will generate assets that educate, inspire, and capture the attention of those who see them, yielding meaningful community growth measured by high attention metrics.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"This is an exciting opportunity to dive deep into the world of blockchain technology, NFTs, and the metaverse from the ground up at one of the fastest-growing companies in the ecosystem. The Metaversal team culture is inclusive, respectful, hardworking, ambitious, forward-thinking, fast-paced, and fully committed to helping independent creators unlock their potential in the metaverse.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lead the creative design process for a variety of projects, from concept development to final production, ensuring that design solutions are aligned with our brand and business objectives.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with cross-functional teams to understand project requirements and develop high-quality design solutions that meet project requirements.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with the team to conceive and implement concepts, guidelines, and strategies in various creative projects and oversee them to completion\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Direct and motivate a team of designers and copywriters to help them use their talents effectively and provide feedback on content, ideas, and presentations.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Establish and build upon current design and brand identity systems, including logos, typography, color palettes, and other visual elements to ensure consistency across all touchpoints\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide mentorship and guidance to junior creative designers, helping them develop their skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Conduct user research to inform design decisions and iterate on design solution\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Present design concept and solutions to stakeholders and incorporate feedback to refine designs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Manage multiple projects and/or initiatives simultaneously, prioritizing tasks and meeting deadlines\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proven experience as a creative director or in a similar creative role\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Outstanding leadership and organization skills\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Exemplary interpersonal and analytical abilities\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bachelor\u2019s degree in graphic design, visual communication, or a related field\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"10+ years of processional design experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A strong portfolio of work showcasing experience in branding and design, with a focus on digital products, experiences and concepts.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong understanding of marketing, website design, branding, advertising, and multimedia design\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A passion for making creative content\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Superior verbal and written communication skills, with the ability to work effectively with cross-functional teams and stakeholders\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Expert knowledge in design tools such as Adobe Creative Suite (Photoshop, Premiere Pro, InDesign, Illustrator, etc.), Sketch, Figma, and other design tools\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Working knowledge of web3, blockchain, crypto, NFTs, or DeFi\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent interpersonal and relationship management skills with the ability to provide guidance and oversee junior creative designers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to manage multiple projects and priorities simultaneously and ensure deadlines are met\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Self-motivated, detail-oriented, and able to thrive in a fast-paced environment\"})})]})}),[P]:null,[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Paid federal holidays\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Generous vacation policy\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Paid parental leave\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"401k and FSA\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Continued education opportunities\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Paid family medical leave\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fully remote\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"No meeting Wednesdays\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A supportive and collaborative team\"})})]})}),[A]:\"https://www.metaversal.gg/careers/social-media-coordinator?ref=workingincrypto\",[T]:\"Metaversal\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/51nitQTZxSDaT90NWXyBxiOr0c.png\",srcSet:\"https://framerusercontent.com/images/51nitQTZxSDaT90NWXyBxiOr0c.png?scale-down-to=512 512w,https://framerusercontent.com/images/51nitQTZxSDaT90NWXyBxiOr0c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/51nitQTZxSDaT90NWXyBxiOr0c.png 1433w\"},\"\"),[B]:\"https://www.metaversal.gg?ref=workingincrypto\",[I]:\"Metaversal is a Web3-native company focused on the acquisition and production of IP across the NFT ecosystem. We are incubating, producing, and curating the next generation of culture, while fueling the brands and businesses that will follow. We are building the most impactful community in Web3.\"},{index:27,id:\"GNNfMqqea\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Smart Contract Engineer\",[g]:\"smart-contract-engineer\",[u]:\"t0cu62ncf\",[m]:\"Smart Contract, Solidity, Ethers, Typescript, Hardhat, Foundry, Javascript, Node.js, Web3, React, Blockchain\",[f]:\"2023-07-13T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"wordlwide\",[v]:\"100-200k\",[k]:!1,[x]:\"0\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[\"We're looking for a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Senior Smart Contract Engineer \"}),\"to join our team. You'll have an opportunity to work across our entire Ethereum-based web3 stack on cutting-edge technology that reshapes the global financial system.\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Our tech stack:\"}),\"\\xa0Solidity, ethers, Typescript, hardhat, Foundry, Javascript, Node.js, web3, React\"]})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Protocol Architecture:\"}),\"\\xa0Research and develop protocol upgrades and new financial concepts.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Smart Contracts: \"}),\"Implement designs with a focus on security, simplicity, ease of use, and gas-efficiency.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Code Review and Mentorship:\"}),\"\\xa0Write code in a highly collaborative open source ecosystem. In-depth reviews of others\u2019 contributions is expected with a focus on helping others grow their technical expertise.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Bots:\"}),\"\\xa0Write off-chain code to interact with and manage smart contracts. Bot systems should have a high degree of correctness, efficiency, and antifragility.\"]})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"2+ years full-time experience in Engineering at a software or financial services technology organization\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"1+ years full-time experience working in solidity or other compiled language\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Demonstrated ability to learn new tech and write secure and high quality code\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Passion for blockchain technology, cryptoeconomic protocol design, game theory, or decentralized finance\"})})]})}),[P]:null,[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"UMA's pay packages include competitive salaries & substantial token options. Salaries are typically between $100-200k (USD), and your token allocation can grow with your voting rewards while you participate in the growing ecosystem.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Philosophies for a culture that show we care: Take vacation when you need it, family care, training and development (just to name a few)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"100% remote, which means we encourage you to create the work environment that you thrive in.\"})})]})}),[A]:\"https://jobs.lever.co/risklabs/86eace81-4606-4446-a7aa-34eeddad7db3?ref=workingincrypto\",[T]:\"UMA\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/TGI8lFAPUkM7kLJItvcyByEieY.png\"},\"\"),[B]:\"uma.xyz?ref=workinincrypto\",[I]:\"We are a team aligned with the ethos of the crypto community. We believe that because UMA's optimistic oracle is the decentralized truth machine which can verify any statement proposed on the blockchain- we have the ability to truly expand what web3 is building. We are building a robust ecosystem. Our growing team is relatively small but incredibly mighty, and strives to be an engaging leader in the DeFi community. \"},{index:28,id:\"y0Lc9RqeX\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Product Manager\",[g]:\"product-manager\",[u]:\"m3tAYHcBS\",[m]:\"Management, Agile, Web3, Blockchain, Cryptocurrency, Web3, Web2, DeFi\",[f]:\"2023-07-13T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"wordlwide\",[v]:\"100-200k\",[k]:!1,[x]:\"0\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"We believe that blockchains need real world data to be useful- and UMA enables any verifiable truth to be recorded on-chain, trustlessly.\"}),/*#__PURE__*/t(\"p\",{children:[\"We're looking for a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Product Lead\"}),\"\\xa0who has knowledge of the DeFi space and a passion for taking early stage products to scale. You\u2019ll define and implement technical product strategy while remaining agile to market feedback in the short term and steering your team and resources accordingly.\"]})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Strategize and develop: \"}),\"Create and drive the product vision for innovative DAO governance (oSnap), and oracle productization;\\xa0\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Collaborate: \"}),\"Work with engineering, sales, and marketing to define and execute on the product strategy and drive integrations;\\xa0\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Execute to win: \"}),\"maintain alignment for the vision, allocate resources, and lead your team to launching and maintaining a demanded product at scale;\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Own product operations:\"}),\" establish the systems and processes to define clear priorities, report on progress, prevent/overcome stuck points, and maintain alignment;\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Design novel systems: \"}),\"architect novel smart contract systems and decentralized applications. Assessing feasibility, scope and timing throughout the team;\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Make data driven decisions: \"}),\"Gather and evaluate product feedback and industry data to inform product strategy;\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Become an expert: \"}),\"Have the tenacity to develop all the knowledge and skills to be an expert in this space\"]})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"5+ years full-time relatable experience in product management\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Technical background and proven ability to collaborate with engineers, sales, and marketing\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Successfully built and shipped web2 or web3 products at scale\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Passion for DeFi and web3 along with enthusiasm for understanding complex concepts\"})})]})}),[P]:null,[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"UMA's pay packages include competitive salaries & substantial token options. Salaries are typically between $100-200k (USD), and your token allocation can grow with your voting rewards while you participate in the growing ecosystem.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Philosophies for a culture that show we care: Take vacation when you need it, family care, training and development (just to name a few)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"100% remote, which means we encourage you to create the work environment that you thrive in.\"})})]})}),[A]:\"https://jobs.lever.co/risklabs/afacabce-001f-4bcb-8586-7afc032c93c0?ref=workingincrypto\",[T]:\"UMA\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/TGI8lFAPUkM7kLJItvcyByEieY.png\"},\"\"),[B]:\"uma.xyz?ref=workinincrypto\",[I]:\"We are a team aligned with the ethos of the crypto community. We believe that because UMA's optimistic oracle is the decentralized truth machine which can verify any statement proposed on the blockchain- we have the ability to truly expand what web3 is building. We are building a robust ecosystem. Our growing team is relatively small but incredibly mighty, and strives to be an engaging leader in the DeFi community. \"},{index:29,id:\"L2wb86_Hf\",[d]:!1,[c]:!1,[p]:!1,[h]:\"AI BOT Operation Senior Manager\",[g]:\"ai-bot-operation-senior-manager\",[u]:\"s42e6ezlt\",[m]:\"Accounting, Audit, AI, Senior, Management, GAAP, IFRS, ERP, Oracle, Netsuite, Cryptocurrency, Exchange, Web3, Excel\",[f]:\"2023-07-07T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"UK\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"The Accounting team plays a pivotal role at Kraken. We are an agile globally distributed team of accountants, a group of hard-working crypto enthusiasts, who are shaping the future of crypto accounting.\\xa0\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Review and approve business unit transactions before they are recorded in the general ledger\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reconcile G/L accounts and review G/L account reconciliations prepared by others\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Take ownership of business unit general ledgers, understand the regulatory requirements in the jurisdiction of the business unit and be a point of contact for statutory audits\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ensure that business unit transactions are recorded in a timely, accuracy, and complete manner\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prepare business unit financial statements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interact effectively with multiple business units throughout the company; Payroll, Accounts Payable, Platform Operations, Tax, Treasury, Legal, Human Resources and Compliance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assist in the implementation of internal controls and accounting processes and procedures including documentation of process narratives, process flowcharts etc.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assist with the adoption of new U.S. GAAP accounting standards including coordinating with accounting process owners, developing implementation plans, and executing process, system, and financial reporting disclosure changes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interact with internal and external auditors\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perform intercompany accounting including reconciliation of intercompany balances, identifying and resolving gaps between assigned entities and respective counterparties globally\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work with Treasury and other departments to ensure proper accounting treatments of complex transactions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perform ad-hoc tasks as needed\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"University degree in Accounting or equivalent with at least 7 years of relevant working experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Chartered Accountant preferred\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experienced in IFRS and UK or Irish GAAP\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Background in accounting for financial services, fintech, banking, or an exchange strongly preferred\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experienced working in multi-entity organization with complex intercompany structure\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborative, innovative, flexible, and adept at building relationships across the organization\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work under pressure in a fast-paced, dynamic environment\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Attention to detail and ability to understand complex financial transactions and technical accounting concepts in a regulatory environment\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work independently and adjust priorities to achieve accurate and timely results\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent presentation skills, including strong oral and writing capabilities\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Google and Microsoft suite proficiency required, including having such skills in excel such as utilizing pivot tables, VLOOKUP, INDEX MATCH, SUMIF\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Working experience with ERP systems such as Netsuite or Oracle\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience or knowledge in cryptocurrency is preferred\"})})]})}),[P]:null,[E]:null,[A]:\"https://jobs.lever.co/kraken/6992d846-095b-47cb-b0b6-dfe79276a34d?ref=workingincrypto\",[T]:\"Kraken\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png\",srcSet:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png 1198w\"},\"\"),[B]:\"https://www.kraken.com?ref=workingincrypto\",[I]:\"As a fully remote company, we have Krakenites in 60+ countries who speak over 50 languages. Krakenites are industry pioneers who develop premium crypto products for experienced traders, institutions, and newcomers to the space. Kraken is committed to industry-leading security, crypto education, and world-class client support through our products like Kraken Pro, Kraken NFT, and Cryptowatch.\\n\\nBecome a Krakenite and build the internet of money!\"},{index:30,id:\"lHbog8aPj\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Senior Director - Global Revenue\",[g]:\"senior-director-global-revenue\",[u]:\"s42e6ezlt\",[m]:\"Accounting, Audit, Senior, Director, GAAP, IFRS, Excel, ERP, Oracle, Netsuite, Cryptocurrencies, Web3, Fintech, Banking, Exchange\",[f]:\"2023-07-15T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"UK\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"The Accounting team plays a pivotal role at Kraken. We are an agile globally distributed team of accountants, a group of hard-working crypto enthusiasts, who are shaping the future of crypto accounting.\\xa0\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Review and approve business unit transactions before they are recorded in the general ledger\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reconcile G/L accounts and review G/L account reconciliations prepared by others\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Take ownership of business unit general ledgers, understand the regulatory requirements in the jurisdiction of the business unit and be a point of contact for statutory audits\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ensure that business unit transactions are recorded in a timely, accuracy, and complete manner\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prepare business unit financial statements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interact effectively with multiple business units throughout the company; Payroll, Accounts Payable, Platform Operations, Tax, Treasury, Legal, Human Resources and Compliance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assist in the implementation of internal controls and accounting processes and procedures including documentation of process narratives, process flowcharts etc.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assist with the adoption of new U.S. GAAP accounting standards including coordinating with accounting process owners, developing implementation plans, and executing process, system, and financial reporting disclosure changes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interact with internal and external auditors\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perform intercompany accounting including reconciliation of intercompany balances, identifying and resolving gaps between assigned entities and respective counterparties globally\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work with Treasury and other departments to ensure proper accounting treatments of complex transactions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perform ad-hoc tasks as needed\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"University degree in Accounting or equivalent with at least 7 years of relevant working experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Chartered Accountant preferred\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experienced in IFRS and UK or Irish GAAP\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Background in accounting for financial services, fintech, banking, or an exchange strongly preferred\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experienced working in multi-entity organization with complex intercompany structure\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborative, innovative, flexible, and adept at building relationships across the organization\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work under pressure in a fast-paced, dynamic environment\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Attention to detail and ability to understand complex financial transactions and technical accounting concepts in a regulatory environment\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work independently and adjust priorities to achieve accurate and timely results\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent presentation skills, including strong oral and writing capabilities\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Google and Microsoft suite proficiency required, including having such skills in excel such as utilizing pivot tables, VLOOKUP, INDEX MATCH, SUMIF\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Working experience with ERP systems such as Netsuite or Oracle\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience or knowledge in cryptocurrency is preferred\"})})]})}),[P]:null,[E]:null,[A]:\"https://jobs.lever.co/kraken/6992d846-095b-47cb-b0b6-dfe79276a34d?ref=workingincrypto\",[T]:\"Kraken\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png\",srcSet:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png 1198w\"},\"\"),[B]:\"https://www.kraken.com?ref=workingincrypto\",[I]:\"As a fully remote company, we have Krakenites in 60+ countries who speak over 50 languages. Krakenites are industry pioneers who develop premium crypto products for experienced traders, institutions, and newcomers to the space. Kraken is committed to industry-leading security, crypto education, and world-class client support through our products like Kraken Pro, Kraken NFT, and Cryptowatch.\\n\\nBecome a Krakenite and build the internet of money!\"},{index:31,id:\"IjHDx8nmX\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Accounting Manager\",[g]:\"accounting-manager\",[u]:\"s42e6ezlt\",[m]:\"Accounting, Audit, Management, GAAP, IFRS, Excel, ERP, Oracle, Netsuite, Fintech, Banking, Exchange\",[f]:\"2023-07-07T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"UK\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"The Accounting team plays a pivotal role at Kraken. We are an agile globally distributed team of accountants, a group of hard-working crypto enthusiasts, who are shaping the future of crypto accounting.\\xa0\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Review and approve business unit transactions before they are recorded in the general ledger\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reconcile G/L accounts and review G/L account reconciliations prepared by others\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Take ownership of business unit general ledgers, understand the regulatory requirements in the jurisdiction of the business unit and be a point of contact for statutory audits\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ensure that business unit transactions are recorded in a timely, accuracy, and complete manner\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prepare business unit financial statements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interact effectively with multiple business units throughout the company; Payroll, Accounts Payable, Platform Operations, Tax, Treasury, Legal, Human Resources and Compliance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assist in the implementation of internal controls and accounting processes and procedures including documentation of process narratives, process flowcharts etc.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assist with the adoption of new U.S. GAAP accounting standards including coordinating with accounting process owners, developing implementation plans, and executing process, system, and financial reporting disclosure changes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interact with internal and external auditors\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perform intercompany accounting including reconciliation of intercompany balances, identifying and resolving gaps between assigned entities and respective counterparties globally\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work with Treasury and other departments to ensure proper accounting treatments of complex transactions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perform ad-hoc tasks as needed\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"University degree in Accounting or equivalent with at least 7 years of relevant working experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Chartered Accountant preferred\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experienced in IFRS and UK or Irish GAAP\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Background in accounting for financial services, fintech, banking, or an exchange strongly preferred\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experienced working in multi-entity organization with complex intercompany structure\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborative, innovative, flexible, and adept at building relationships across the organization\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work under pressure in a fast-paced, dynamic environment\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Attention to detail and ability to understand complex financial transactions and technical accounting concepts in a regulatory environment\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work independently and adjust priorities to achieve accurate and timely results\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent presentation skills, including strong oral and writing capabilities\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Google and Microsoft suite proficiency required, including having such skills in excel such as utilizing pivot tables, VLOOKUP, INDEX MATCH, SUMIF\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Working experience with ERP systems such as Netsuite or Oracle\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience or knowledge in cryptocurrency is preferred\"})})]})}),[P]:null,[E]:null,[A]:\"https://jobs.lever.co/kraken/6992d846-095b-47cb-b0b6-dfe79276a34d?ref=workingincrypto\",[T]:\"Kraken\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png\",srcSet:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png 1198w\"},\"\"),[B]:\"https://www.kraken.com?ref=workingincrypto\",[I]:\"As a fully remote company, we have Krakenites in 60+ countries who speak over 50 languages. Krakenites are industry pioneers who develop premium crypto products for experienced traders, institutions, and newcomers to the space. Kraken is committed to industry-leading security, crypto education, and world-class client support through our products like Kraken Pro, Kraken NFT, and Cryptowatch.\\n\\nBecome a Krakenite and build the internet of money!\"},{index:32,id:\"lkh2QceUY\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Core Infrastructure Engineer - Networking\",[g]:\"core-infrastructure-engineer-networking\",[u]:\"t0cu62ncf\",[m]:\"SRE, devops, Infrastructure, AWS, Cloud, Azure, Security, Cisco, Juniper, Routing, Switching\",[f]:\"2023-07-07T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"annywhere - EU pref\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"If you thrive in a challenging, fun and fast-paced environment, the Core Infrastructure Engineer at Kraken is for you! Not only is this role a strategic hands-on role that is critical to the continuing success of Kraken; you will join a highly dedicated team that is responsible for managing the entire network and compute infrastructure for one of the leading cryptocurrency exchanges in the world.\\xa0 We are looking for a dynamic and innovative self-starter with the ability to think \u201Coutside of the box\u201D to solve complex problems in a sustainable way.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(r,{href:\"https://blog.kraken.com/post/17936/performance-at-kraken/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Find our more about Core Infrastructure Engineering in our latest engineering blogpost!\"})})}),/*#__PURE__*/e(\"p\",{children:\"This role is fully remote.\\xa0 We would prefer candidates in European Timezones, to cover current needs.\"})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Design, implement, manage, and defend a \u201Czero trust\u201D, defense-in-depth network\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Implement and evolve enterprise network access controls\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:'Manage and deploy \"infrastructure as code\"'})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Write good quality policies, procedures, and technical documentation\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:'Coordinate with internal development teams and other stakeholders to ensure network security principles are \"built-in\" from the beginning'})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work with Engineering and IT Security teams to ensure that product features are securely deployed and monitored\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Monitor and maintain all physical infrastructure (network, security, and compute), cloud data center environments, remote office locations, and respond to critical network problems to maximize service uptime\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assist in various projects with network related requirements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Mentor and evangelize security practices through cross-functional work with internal stakeholders and teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assume on-call responsibilities and duties per the schedule\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Travel as needed to support physical datacenter and office locations\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"5+ years of network engineering background including offensive/defensive security\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Deep experience in public (AWS or Azure or Google), private and/or hybrid cloud infrastructure\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with network security management tools and techniques\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Familiarity with security testing tools (performance and threat-based)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proficient in network and security design, implementation, and administration leveraging industry standard platforms from vendors such as: Palo Alto Networks, Cisco, Juniper, and Aruba\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with Switching (Capacity Planning & VLAN\u2019s), Routing (OSPF, EIGRP, BGP, ECMP, PBF), WAN Technologies (MPLS, VPLS, VPN), public cloud networking, and Security (IPS, RBAC, etc.)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Previous experience monitoring and management of intrusion detection systems and firewall devices\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Demonstrated experience researching, building and implementing defensive security systems that are used against internal and external attack vectors\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent communication skills: demonstrated ability to explain complex technical issues to both technical and non-technical audiences\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent analytical and problem-solving skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to perform well under pressure, high attention to detail\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong desire / interest in learning new technology\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Highly motivated and passionate about infrastructure engineering and security\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"This role requires the ability to travel. For this reason, a valid passport will be mandatory\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"PhD in Mathematics, Statistics, Computer Science, or related field\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience in machine learning and data mining\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working in finance or related industry\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with cloud computing technologies such as AWS or Azure\"})})]})}),[E]:null,[A]:\"https://jobs.lever.co/kraken/e181f2aa-3d7f-4204-af7f-abab704c121b?ref=workingincrypto\",[T]:\"Kraken\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png\",srcSet:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png 1198w\"},\"\"),[B]:\"https://www.kraken.com?ref=workingincrypto\",[I]:\"As a fully remote company, we have Krakenites in 60+ countries who speak over 50 languages. Krakenites are industry pioneers who develop premium crypto products for experienced traders, institutions, and newcomers to the space. Kraken is committed to industry-leading security, crypto education, and world-class client support through our products like Kraken Pro, Kraken NFT, and Cryptowatch.\\n\\nBecome a Krakenite and build the internet of money!\"},{index:33,id:\"z0bL0wPRO\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Senior Quantitative Software Engineer - Trading Technologies\",[g]:\"senior-quantitative-software-engineer-trading-technologies\",[u]:\"t0cu62ncf\",[m]:\"Backend, C++, Mathematics, AWS, Python, Cloud, Cryptocurrencies, Web3, MLL\",[f]:\"2023-07-14T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"annywhere\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Join the Trading Technologies\\xa0 team and start building the internet of money by supporting the Sr Director of Engineering - Trading. The Trading Technology team is responsible for everything to do with the trading backend services such as the matching engine, market data gateways, internal and external APIs, and various other trading services. The Senior Quantitative Software Engineer will be a key contributor to the success of the Kraken Risk Desk team.\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Develop quantitative models and algorithms to build trading strategies for the Kraken Risk Desk\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Conduct research and analysis of large data sets to identify trends and patterns\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with cross-functional teams to ensure the accuracy and integrity of data\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Develop, maintain and improve tools, systems and processes to streamline the data analysis and modeling process\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work with cross functionally with other engineering teams to ensure proper implementation of models in production systems\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Participate in code reviews, identify and fix issues in the code, and develop testing frameworks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Stay up-to-date with the latest advancements in quantitative engineering and bring new ideas and techniques to the team\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Performing other duties as required\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bachelor's or Master's degree in Mathematics, Statistics, Computer Science, or related field\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Minimum of 5 years of experience in quantitative engineering or related field\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience developing high-performance, multi-threaded applications using several programming languages including C++\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Knowledge of scripting languages such as Python\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working with large data sets and statistical models\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong analytical and problem-solving skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to work in a fast-paced and dynamic environment\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent communication and collaboration skills\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"PhD in Mathematics, Statistics, Computer Science, or related field\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience in machine learning and data mining\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience working in finance or related industry\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with cloud computing technologies such as AWS or Azure\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with or knowledge of cryptocurrency is a plus\"})})]})}),[E]:null,[A]:\"https://jobs.lever.co/kraken/c05f1ed6-6189-4586-9871-c64e5fc11732?ref=workingincrypto\",[T]:\"Kraken\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png\",srcSet:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png 1198w\"},\"\"),[B]:\"https://www.kraken.com?ref=workingincrypto\",[I]:\"As a fully remote company, we have Krakenites in 60+ countries who speak over 50 languages. Krakenites are industry pioneers who develop premium crypto products for experienced traders, institutions, and newcomers to the space. Kraken is committed to industry-leading security, crypto education, and world-class client support through our products like Kraken Pro, Kraken NFT, and Cryptowatch.\\n\\nBecome a Krakenite and build the internet of money!\"},{index:34,id:\"KhXSqp1YN\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Staff Software Engineer - React Native - Mobile\",[g]:\"staff-software-engineer-react-native-mobile\",[u]:\"t0cu62ncf\",[m]:\"React, React native, Mobile, Frontend, Web3, iOS, Android, Typescript, Objective-C, Swift, Java, Kotlin\",[f]:\"2023-07-07T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"annywhere\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"We are currently seeking an outstanding Staff Software Engineer with a strong focus on mobile development to join our world-class Engineering team. In this role, you will be responsible for designing, developing, and maintaining innovative mobile applications for iOS and Android platforms using React Native. Your technical expertise, leadership, and ability to solve complex problems will make a significant impact on our products and help us maintain our competitive edge.\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Design, develop, and maintain high-quality mobile applications for iOS and Android using React Native\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with cross-functional teams, including Product, Design, and other Engineering teams, to deliver high-impact features and improvements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Drive the technical vision and direction of the company's mobile applications by participating in architectural decisions and technology evaluations\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Identify, analyze, and resolve complex technical challenges across multiple domains and technology stacks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Contribute to the development of best practices and engineering standards to ensure the highest quality of code\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Mentor and guide junior and senior engineers, fostering a culture of continuous learning and improvement\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Stay up-to-date with the latest industry trends and technologies to ensure our mobile applications remain current and competitive\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bachelor's or Master's degree in Computer Science or a related field, or equivalent experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"8+ years of experience in software development, with a proven track record of success in mobile development for iOS and Android platforms\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Expertise in React Native, TypeScript, and mobile app development tools and frameworks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Deep understanding of iOS and Android SDKs, as well as experience with native development (Objective-C/Swift/Java/Kotlin)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong understanding of mobile UI/UX best practices and principles\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with API design, security, and performance optimization\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent problem-solving skills, attention to detail, and ability to think critically and creatively\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Exceptional written and verbal communication skills in English\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with blockchain technology and the cryptocurrency industry\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience in leading or managing engineering teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Contributions to open-source projects or published technical articles\"})})]})}),[E]:null,[A]:\"https://jobs.lever.co/kraken/fa50cc06-12b7-4625-9f46-badd2c1cde87?ref=workingincrypto\",[T]:\"Kraken\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png\",srcSet:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png 1198w\"},\"\"),[B]:\"https://www.kraken.com?ref=workingincrypto\",[I]:\"As a fully remote company, we have Krakenites in 60+ countries who speak over 50 languages. Krakenites are industry pioneers who develop premium crypto products for experienced traders, institutions, and newcomers to the space. Kraken is committed to industry-leading security, crypto education, and world-class client support through our products like Kraken Pro, Kraken NFT, and Cryptowatch.\\n\\nBecome a Krakenite and build the internet of money!\"},{index:35,id:\"Gjr19_K9e\",[d]:!1,[c]:!1,[p]:!1,[h]:\"Senior Software Engineer - React - Web\",[g]:\"senior-software-engineer-react-web\",[u]:\"t0cu62ncf\",[m]:\"React, Web3, Frontend, React Native, JavaScript, TypeScript, UX, UI, RESTful, API, WebSockets\",[f]:\"2023-07-07T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"annywhere\",[v]:\"\",[k]:!1,[x]:\"\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"We are currently seeking an experienced Senior Software Engineer to join our growing Engineering team. In this role, you will be responsible for developing and maintaining both our Web and Mobile user interfaces using React and React Native, respectively. Your expertise in building scalable and high-performance applications will directly contribute to the success of our platform.\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Design, develop, and maintain high-quality web and mobile applications using React and React Native\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with cross-functional teams, including Product, Design, and Backend Engineering, to ensure seamless integration of new features and improvements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Contribute to the architecture and design of our web and mobile applications\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Identify, analyze, and resolve performance bottlenecks and inefficiencies in the codebase\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Write and maintain comprehensive unit tests and documentation\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Stay up-to-date with the latest industry trends and technologies to ensure our applications remain current and competitive\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Mentor junior developers and participate in code reviews to maintain a high standard of code quality\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bachelor's degree in Computer Science or a related field, or equivalent experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"5+ years of experience in software development, with a focus on web and mobile applications\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Deep understanding of JavaScript/TypeScript and proficiency with React and React Native frameworks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"Experience with \",/*#__PURE__*/e(r,{href:\"http://next.js/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Next.js\"})}),\", RESTful APIs and WebSockets\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Experience with frontend testing frameworks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Familiarity with modern front-end build pipelines and tooling\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong understanding of UI/UX best practices and principles\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Excellent problem-solving skills, attention to detail, and ability to work independently and as part of a team\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong written and verbal communication skills in English\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Knowledge of the cryptocurrency industry and blockchain technology\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Familiarity with native mobile app development (iOS/Android)\"})})]})}),[E]:null,[A]:\"https://jobs.lever.co/kraken/42ac2968-f431-41b9-8470-253d4cda8d28?ref=workingincrypto\",[T]:\"Kraken\",[D]:\"\",[M]:W({src:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png\",srcSet:\"https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBHRub7HGVXoP7Zwt9wI17atpXM.png 1198w\"},\"\"),[B]:\"https://www.kraken.com?ref=workingincrypto\",[I]:\"As a fully remote company, we have Krakenites in 60+ countries who speak over 50 languages. Krakenites are industry pioneers who develop premium crypto products for experienced traders, institutions, and newcomers to the space. Kraken is committed to industry-leading security, crypto education, and world-class client support through our products like Kraken Pro, Kraken NFT, and Cryptowatch.\\n\\nBecome a Krakenite and build the internet of money!\"},{index:36,id:\"JU8eqKCt4\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Senior Product Manager\",[g]:\"senior-product-manager\",[u]:\"m3tAYHcBS\",[m]:\"Senior, Agile, Web3, NFT, MBA, Startup\",[f]:\"2023-07-03T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"US\",[v]:\"158,400 - 194,688\",[k]:!1,[x]:\"0.08% - 0.145%\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"As our Senior Product Manager, you will be the first Product Manager at Co:Create Studios, a division of Co:Create which rapidly incubates and launches products built on top of the Co:Create Platform. You will play a pivotal role in driving the ideation and prototyping of new Co:Create Enabled Products. You will also be responsible for implementing project discipline across the team and leading both internal and external development resources to bring product ideas to life. Your contributions will be instrumental in expanding our client base and growing the Co:Create Network.\"}),/*#__PURE__*/e(\"p\",{children:\"The Senior Product Manager will be the first Product Manager at Co:Create Studios, a division of Co:Create which rapidly incubates and launches products built on top of the Co:Create Platform. The Senior Product Manager will own the ideation and prototyping of new Co:Create Enabled Products. This role will be required to exercise project discipline and instill it across the team. \\xa0Finally, the Senior Product Manager will be responsible for leading internal and external development resources to bring incubated product ideas to life.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Own our product roadmap\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Lead technical product teams focused on the strategy, design, and execution of products built on top of the Co:Create platform\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Partner with executives and cross-functional colleagues in executing the roadmap\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Work with Co:Create and its customers to scope and launch their instances of products built on top of the Co:Create platform\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Instill best practices across the company\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Ensure the quality of the deliverables is at the highest level from conception to launch\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Hire and ensure we have enough people to deliver on our promises\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Facilitate projects goals setting, planning, retrospectives, and backlog grooming meetings where those are needed\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"6+ years of Product Management experience with high-performing engineering teams, at least 1+ of experience of it in the crypto space.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"A deep understanding of the web3 space, including awareness of current market trends and familiarity with projects operating in a similar space to us\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"A visionary who can develop a deep understanding of the Co:Create protocol and its value proposition.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Someone who can engage with our potential customers and deliver a well-researched, unambiguous PRD\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"A good communicator with effective client management & conflict resolution skills\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A technical background, such as a software engineer or other technical IC roles\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"A deep passion for NFTs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Experience in a high-growth company or start-up\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"An MBA\"})})]})}),[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fully remote team (US time-zone based employees only at this time)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Team offsites twice a year at locations across the country\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Health insurance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"401k Retirement plan\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Unlimited vacation & paid time off\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Two company-wide shut downs a year to give everyone the week off in both the summer and winter.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"$325/month in \u201Cget what you need\u201D funds.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Hate Monday meetings? so do we! \\xa0We have a strong \u201Cno meetings\u201D policy on Mondays.\"})})]})}),[A]:\"https://coda.io/d/Careers-at-Co-Create_dNeNxVM4b-d/Senior-Product-Manager_suxii#_luSLY?ref=workingincrypto\",[T]:\"Co:create\",[D]:\"US\",[M]:W({src:\"https://framerusercontent.com/images/5pMiuHq20QQQHOoaCd0m8bi39zw.svg\",srcSet:\"https://framerusercontent.com/images/5pMiuHq20QQQHOoaCd0m8bi39zw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5pMiuHq20QQQHOoaCd0m8bi39zw.svg 976w\"},\"\"),[B]:\"https://www.usecocreate.io?ref=workingincrypto\",[I]:\"Co:Create enables innovative brands to unlock the power of their community.\\n\\nBrands are fueled by our astonishingly simple community activation tools built on web3. With Co:Create, brands can now drive so much more than loyalty by offering all kinds of gamified, truly self owned rewards such as digital collectibles, drops, loyalty points, on-chain status and more.\\n\\nWe\u2019ve raised a $25M seed round led by a16z crypto with participation from Packy McCormick of Not Boring, VaynerFund, Rarebreed Ventures, and notable angels at RTFKT, Tessera, OpenSea, CAA, Coinbase and BoysClub.\"},{index:37,id:\"qFRgAZHTo\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Senior Product Designer\",[g]:\"senior-product-designer\",[u]:\"ciEAYkEzq\",[m]:\"Design, Figma, Adobe, UX, UI, English, User Research, Senior\",[f]:\"2023-07-06T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"US\",[v]:\"144,000-176,800\",[k]:!1,[x]:\"0.08%-0.13%\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"As Senior Product Designer, you will help shape the Co:Create user experiences. You will work closely with our product team to create intuitive and beautifully designed, developer and business focused platforms. We are building something exciting in a fast-moving space, and we are looking for someone experienced who wants to help build and learn. \"})}),[C]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"The Senior Product Designer will lead the product design that is building the Co:Create Platform. They will create engaging, developer-centric product experiences, and inspire design thinking across the organization to help drive business outcomes.\"}),/*#__PURE__*/e(\"h4\",{children:\"Outcomes\"}),/*#__PURE__*/e(\"p\",{children:\"Help build the Co:Create Platform\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Maintain an elite product design system, focused on developer clients.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Produce design assets throughout the entire design lifecycle \u2014 from wireframes and prototypes to hi-fidelity production designs.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Conduct design reviews with the product team to gather feedback & input on design direction, ensuring alignment of product requirements & technical feasibility.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Deliver organized handoff assets to engineering that include specifications, assets, and style guides to be used during implementation.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with engineers to ensure product is implemented according to designs and to a high standard.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Become an expert on our customers and our product\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Conduct user research throughout the product lifecycle, such as interviews, surveys, and usability testing, to gain insights into customer needs and preferences.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Analyze user data and feedback to identify trends and patterns that can inform product design decisions.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Develop user personas and customer journey maps to understand & communicate the needs and behaviors of different user groups.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Develop a deep understanding of the Platform\u2019s features, functionality, and technical architecture to inform design decisions and ensure that the user experience is consistent and seamless.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Develop & maintain a deep understanding of traditional loyalty programs and web3 technology, especially with respect to product design.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Inspire design thinking across the organization to drive business outcomes\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Be responsible for design needs across the organization.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Discover design optimization points, improve design standards, and promote implementation.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Preach best practices and identify areas where design could improve business outcomes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Attend conferences and events, join groups, and follow the latest thinking, for the latest trends and design thinking innovation.\"})})]})]}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"4+ years of role related experience with at least 1 year of that experience at a developer focused product.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A portfolio of work examples relevant to platform offerings, preferably relevant to web3\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Expertise in design tools like Figma and user research tools like Maze\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"A passion for user research and empathy-driven design decision-making\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Superior UX/UI skills and digital design experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Ability to build rapport with engineers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Have good communication skills and proficiency in English (writing, reading, and speaking).\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"An \u201Cowners mindset\u201D\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Experience working with products built for developers or highly technical users\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A Bachelor's degree or higher in the field of HCI, Design, or a related field\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Previous experience helping build a loyalty or community focused product\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Previous experience as a UX engineer\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Remote working experience\"})})]})}),[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fully remote team (US time-zone based employees only at this time)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Team offsites twice a year at locations across the country\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Health insurance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"401k Retirement plan\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Unlimited vacation & paid time off\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Two company-wide shut downs a year to give everyone the week off in both the summer and winter.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"$325/month in \u201Cget what you need\u201D funds.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Hate Monday meetings? so do we! \\xa0We have a strong \u201Cno meetings\u201D policy on Mondays.\"})})]})}),[A]:\"https://coda.io/d/Careers-at-Co-Create_dNeNxVM4b-d/Senior-Product-Designer_suviq#_luRzR?ref=workingincrypto\",[T]:\"Co:Create\",[D]:\"US\",[M]:W({src:\"https://framerusercontent.com/images/5pMiuHq20QQQHOoaCd0m8bi39zw.svg\",srcSet:\"https://framerusercontent.com/images/5pMiuHq20QQQHOoaCd0m8bi39zw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5pMiuHq20QQQHOoaCd0m8bi39zw.svg 976w\"},\"\"),[B]:\"https://www.usecocreate.io?ref=workingincrypto\",[I]:\"Co:Create enables innovative brands to unlock the power of their community.\\n\\nBrands are fueled by our astonishingly simple community activation tools built on web3. With Co:Create, brands can now drive so much more than loyalty by offering all kinds of gamified, truly self owned rewards such as digital collectibles, drops, loyalty points, on-chain status and more.\\n\\nWe\u2019ve raised a $25M seed round led by a16z crypto with participation from Packy McCormick of Not Boring, VaynerFund, Rarebreed Ventures, and notable angels at RTFKT, Tessera, OpenSea, CAA, Coinbase and BoysClub.\"},{index:38,id:\"WgAFnWBNx\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Staff Senior Backend and Systems Engineer\",[g]:\"staff-senior-backend-and-systems-engineer\",[u]:\"t0cu62ncf\",[m]:\"Staff, NFT, Backend, Systems, NextJS, Typescript, PostgreSQL, CI/CD, EC2, S3, RDS, Lambda, SQS, SNS, ECS, EKS, AWS, Azure, Cloud, MySQL\",[f]:\"2023-07-06T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"US\",[v]:\"192,000-239,200\",[k]:!1,[x]:\"0.18%-0.49%\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"As a Backend and Systems Engineer, you will be responsible for building and maintaining the robust and reliable production systems that power our business. You will work with a team of engineers to design, develop, and deploy high-quality backend systems, infrastructure and APIs that meet our customers' needs.\"}),/*#__PURE__*/e(\"h4\",{children:\"Our tech stack\"}),/*#__PURE__*/e(\"p\",{children:\"Our Tech Stack consists of the following:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Multiple NextJS (Typescript) Applications that power the Frontend\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"NextJS Serverless and Edge functions that power the Backend\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Supabase based PostgreSQL DB powers the Data Store\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Github Actions and Vercel Build pipelines for CI/CD\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"A variety of services in AWS to power various pieces of the backend infrastructure\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(r,{href:\"https://upstash.com/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Upstash\"})}),\" for asynchronous workflow processing and cron scheduling\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(r,{href:\"https://zuplo.com/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Zuplo\"})}),\" powers our API Gateway\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Alchemy APIs as our RPC provider\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"DataDog is our Logging and APM provider\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(r,{href:\"https://www.dfns.co/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"DFNS\"})}),\" for Key Management\"]})})]})]}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work closely with our Chief Architect to manage a team of engineers and ensure that technical solutions align with Co:Create\u2019s goals\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Drive the technical roadmap for Co:Create, working with product management, design, and other stakeholders to understand customer needs and requirements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Oversee the design and architecture in the web-app end-to-end, from product definition, through implementation, testing and to deployment to production ensuring they are scalable and secure\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with cross-functional teams to ensure the successful delivery of technical solutions, including testing, deployment, and maintenance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Develop training programs to ensure the engineer teams are up to date on latest best practices and technologies with ongoing support as needed to keep our team at the forefront of the industry\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Communicate to new clients using both technical and non technical language to help sell the Co:Create web-app and its features\"})})]})}),[F]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"We are generally looking for 5+ years of experience in at least 8 of these categories:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Track record of designing, building, scaling and maintaining robust and reliable production systems.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"A very high proficiency in at least one Backend/Systems programming language such as Go, Rust, Javascript/Typescript(for Node.js systems) or similar.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Our codebase is in Typescript, but prior experience with Typescript is not strictly necessary. A solid understanding of a at least one strongly-typed backend/systems programming language is required.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Track record of experience working with relational databases such as Postgres, MySQL, etc. Must have a solid understanding of data modeling and schema design, as well as common database concepts like indexes, foreign keys, constraints, atomicity, consistency, transactions, etc.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Cloud infrastructure experience with either AWS, GCP, or Azure. Must have experience with at least 3-4 of the following cloud services: EC2, S3, RDS, Lambda, SQS, SNS, ECS, EKS, etc.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Experience working with or a solid understanding of message queues like Kafka, SQS, PubSub, etc. for building asynchronous processing systems\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Experience setting up testing frameworks for unit and integration testing of backend systems.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Experience building and shipping REST APIs.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Familiarity with security best practices on topics such as: authentication, authorization, role-based access control, JWTs, etc.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Familiarity with CI/CD systems like CircleCI, Github Actions, etc, and experience setting up efficient code development processes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Experience with some performance and metrics tools/systems like Prometheus, DataDog, NewRelic, etc\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Must have been part of an on-call rotation sometime and experience working with a system like PagerDuty\"})})]})]}),[P]:null,[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Team offsites twice a year at locations across the country\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Health insurance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"401k Retirement plan\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Unlimited vacation & paid time off\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"$325/month in \u201Cget what you need\u201D funds.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"A NFT Starter Pack, including money to grow your NFT collection\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Hate Monday meetings? so do we! \\xa0We have a strong \u201Cno meetings\u201D policy on Mondays.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Competitive salary, as well as lucrative equity and tokenomics incentives.\"})})]})}),[A]:\"https://coda.io/d/Careers-at-Co-Create_dNeNxVM4b-d/Staff-Senior-Backend-and-Systems-Engineer_suPhb#_lu8-G?ref=workingincrypto\",[T]:\"Co:Create\",[D]:\"US\",[M]:W({src:\"https://framerusercontent.com/images/5pMiuHq20QQQHOoaCd0m8bi39zw.svg\",srcSet:\"https://framerusercontent.com/images/5pMiuHq20QQQHOoaCd0m8bi39zw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5pMiuHq20QQQHOoaCd0m8bi39zw.svg 976w\"},\"\"),[B]:\"https://www.usecocreate.io?ref=workingincrypto\",[I]:\"Co:Create enables innovative brands to unlock the power of their community.\\n\\nBrands are fueled by our astonishingly simple community activation tools built on web3. With Co:Create, brands can now drive so much more than loyalty by offering all kinds of gamified, truly self owned rewards such as digital collectibles, drops, loyalty points, on-chain status and more.\\n\\nWe\u2019ve raised a $25M seed round led by a16z crypto with participation from Packy McCormick of Not Boring, VaynerFund, Rarebreed Ventures, and notable angels at RTFKT, Tessera, OpenSea, CAA, Coinbase and BoysClub.\"},{index:39,id:\"v6jtwNmXZ\",[d]:!0,[c]:!1,[p]:!1,[h]:\"Director of Engineering\",[g]:\"director-of-engineering\",[u]:\"t0cu62ncf\",[m]:\"Staff, Management, Director, Agile, web3\",[f]:\"2023-07-06T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"US\",[v]:\"254,400-275,600\",[k]:!1,[x]:\"0.31%-0.43%\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"As Director of Engineering, you will play a critical role reporting to our Chief Architect, helping to manage our technical team and overseeing the design, development, and delivery of all technical solutions, ensuring alignment with Co:Create\u2019s objectives to meet the needs of our clients. You will be responsible for providing technical guidance and mentorship, and setting an example in leading a culture of innovation and continuous improvement. This role is meant for someone who desires to help lead a talented impactful team within the web3 ecosystem.\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Work closely with our Chief Architect to manage a team of engineers and ensure that technical solutions align with Co:Create\u2019s goals\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Drive the technical roadmap for Co:Create, working with product management, design, and other stakeholders to understand customer needs and requirements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Oversee the design and architecture in the web-app end-to-end, from product definition, through implementation, testing and to deployment to production ensuring they are scalable and secure\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Collaborate with cross-functional teams to ensure the successful delivery of technical solutions, including testing, deployment, and maintenance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Develop training programs to ensure the engineer teams are up to date on latest best practices and technologies with ongoing support as needed to keep our team at the forefront of the industry\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Communicate to new clients using both technical and non technical language to help sell the Co:Create web-app and its features\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"7+ years of experience in a technical sales or sales engineering role.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"3+ years of experience in a leadership role, managing a team of engineers.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Strong understanding of Web3 technologies such as blockchain, smart contracts, decentralized finance (DeFi), and NFTs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Excellent presentation and communication skills, with the ability to explain complex technical concepts to non-technical audiences\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Experience with agile development methodologies and a deep understanding of software development lifecycles\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Strong communication skills and the ability to collaborate effectively with cross-functional teams\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"A motivated and driven self-starter\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Ability to work independently and manage multiple priorities in a fast-paced, dynamic environment.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Strong problem-solving skills and ability to think creatively.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Passion for innovation and a desire to stay at the forefront of the industry\"})})]})}),[P]:null,[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fully remote team (US time-zone based employees only at this time)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Team offsites twice a year at locations across the country\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Health insurance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"401k Retirement plan\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Unlimited vacation & paid time off\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Two company-wide shut downs a year to give everyone the week off in both the summer and winter.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"$325/month in \u201Cget what you need\u201D funds.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/e(\"p\",{children:\"Hate Monday meetings? so do we! \\xa0We have a strong \u201Cno meetings\u201D policy on Mondays.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/t(\"p\",{children:[\"Competitive salary, as well as lucrative equity and tokenomics incentives. \\xa0Curious what that means? Learn more about \",/*#__PURE__*/e(r,{href:\"https://coda.io/d/Careers-at-Co-Create_dNeNxVM4b-d/How-we-Determine-Salary-at-Co-Create_suO4K\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"how we determine salary at Co:Create\"})}),\".\"]})})]})}),[A]:\"https://coda.io/d/Careers-at-Co-Create_dNeNxVM4b-d/Director-of-Engineering_suk6p#_luLQQ?ref=workingincrypto\",[T]:\"Co:Create\",[D]:\"US\",[M]:W({src:\"https://framerusercontent.com/images/5pMiuHq20QQQHOoaCd0m8bi39zw.svg\",srcSet:\"https://framerusercontent.com/images/5pMiuHq20QQQHOoaCd0m8bi39zw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5pMiuHq20QQQHOoaCd0m8bi39zw.svg 976w\"},\"\"),[B]:\"https://www.usecocreate.io?ref=workingincrypto\",[I]:\"Co:Create enables innovative brands to unlock the power of their community.\\n\\nBrands are fueled by our astonishingly simple community activation tools built on web3. With Co:Create, brands can now drive so much more than loyalty by offering all kinds of gamified, truly self owned rewards such as digital collectibles, drops, loyalty points, on-chain status and more.\\n\\nWe\u2019ve raised a $25M seed round led by a16z crypto with participation from Packy McCormick of Not Boring, VaynerFund, Rarebreed Ventures, and notable angels at RTFKT, Tessera, OpenSea, CAA, Coinbase and BoysClub.\"},{index:40,id:\"L8asjXrXy\",[d]:!1,[c]:!1,[p]:!1,[h]:\"CFO\",[g]:\"cfo\",[u]:\"s42e6ezlt\",[m]:\"CFO, Tableau, Power BI, IPO, audits, payroll and accounting, tax\",[f]:\"2023-06-28T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"KsOjlFXSl\",[b]:\"Miami\",[v]:\"60k - 120k\",[k]:!1,[x]:\"0\",[S]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"The Milo team is looking to hire a hands-on Chief Financial Officer with a solid track record in Finance, Accounting & Capital Markets.\\xa0 Reporting into our CEO, the CFO will oversee all traditional finance functions including FP&A, tax, planning, budgeting, financial reporting & forecasting while also providing leadership and vision for capital markets & compliance by developing strategies for asset capital raising, capital deployment, and securitization.\\xa0 The CFO will develop Milo\u2019s financial and operational strategy, identify and track relevant KPIs, and continuously develop and monitor control systems to preserve the company assets and report accurate financial results.\\xa0 The CFO will help Milo build financial strategies that support our ambitious goals.\\xa0 This is an exciting opportunity to make a significant impact during a period of hyper growth within Milo and the opportunity to work in a fast paced, dynamic, venture capital backed fintech company at the intersection of crypto and real estate!\"})}),[C]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide hands-on, metrics-driven financial leadership to Milo and the finance team, accelerating growth and profitability\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Act as a trusted advisor to the Executive Team, including the CEO, VP of Engineering, VP of Marketing, & HR\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Provide the executive team with insights to better manage the business, evaluate investments, and improve decision-making\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Managing existing capital market relationships and establishing new ones\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Oversee the traditional finance & accounting functions, including preparing board materials, annual financial planning, FP&A, audits, payroll and accounting, tax, etc.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Formulate Milo\u2019s future direction by providing input on the company\u2019s business plan, financial and tax strategies, budgeting, and forecasting\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Develop performance measures that support Milo\u2019s strategic direction\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Manage any third parties where accounting or finance resources have been outsourced\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Play a strategic part in new and ongoing capital discussions with external parties\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Monitor cash balances and cash forecasts; arrange for debt and equity financing\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Ensure that Milo complies with all legal and regulatory requirements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Partner with Product, Engineering, Operations and other cross functional teams in support of budgeting, new procedures and initiatives\"})})]})}),[F]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bachelor\u2019s degree in finance, accounting, economics, or related analytical field.\\xa0 MBA/Masters a plus\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"10+ years of experience as a CFO or Finance leader in the mortgage industry, fintech, or equivalent experience\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Background in venture-backed startups, private equity, or other high-growth and entrepreneurial environments\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Advanced Excel proficiency with practical experience building and maintaining financial models & knowledge of other reporting software (Tableau, Power BI)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Experience in raising Series B to pre-IPO rounds\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Mission-driven and self-motivated, with ability to take the initiative with little direction\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Strong crypto experience, capacity to understand the markets, & enthusiast for the space\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Exceptional analytical, problem-solving, and strategic thinking skills with high attention to detail\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Excellent verbal, written, and interpersonal skills with the ability to communicate clearly and effectively with senior leaders, external partners and internal staff\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"An entrepreneurial mindset with excellent organizational skills, the ability to be flexible, & prioritize responsibilities\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(179, 179, 179)\"},children:/*#__PURE__*/e(\"p\",{children:\"Curiosity, willingness to learn, positive attitude, and self-thought mentality is a must\"})})]})}),[P]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/t(\"em\",{children:[\"Integrity\",/*#__PURE__*/e(\"br\",{})]}),\"Always do what is right and fair - for our clients, our partners, and our company.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/t(\"em\",{children:[\"Simple, Fast, & Obvious\\xa0\",/*#__PURE__*/e(\"br\",{})]}),\"Create simple solutions.\\xa0 Move Fast.\\xa0 Build trust through the process.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/t(\"em\",{children:[\"Curiosity\\xa0\",/*#__PURE__*/e(\"br\",{})]}),\"Our team is always learning! We\u2019re not afraid to ask questions, make mistakes, and find new ways.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/t(\"em\",{children:[\"Perseverance\\xa0\",/*#__PURE__*/e(\"br\",{})]}),\"We work hard through our challenges, commit to a plan, and never give up in the process!\"]})})]})}),[E]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Competitive compensation to the market and tech ecosystem\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Stock options, giving you ownership in a fast-growing company\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Generous vacation policy with 4 weeks PTO per year, encouraging our employees to disconnect, relax, & reenergize.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Medical, dental, & vision insurance with up to $1,000 of premiums covered per month\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Option to save for your future and enroll into our 401K program\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Your choice of equipment for you to get your job done!\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fully stocked kitchen & fridge -- with all the coffee, seltzers, & snacks you\u2019ll need to fuel yourself through the day\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Monthly social hours including virtual game nights, ping pong tournaments, happy hours, etc.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Quarterly out of office team-building events\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"New office in the heart of Brickell with a fun, energetic, & hardworking team committed to creating a product making a difference\"})})]})}),[T]:\"Milo\",[D]:\"Miami\",[M]:W(void 0,\"\"),[B]:\"https://www.milo.io\",[I]:\"Milo provides mortgages for foreign nationals, crypto investors, and U.S. consumers that deserve a better solution.\"},{index:41,id:\"jCJgj50SY\",[d]:!0,[c]:!0,[p]:!0,[h]:\"Wanna be featured?\",[g]:\"wanna-be-featured\",[u]:\"ciEAYkEzq\",[m]:\"promo\",[f]:\"2023-08-07T00:00:00.000Z\",[y]:\"dBZ0e3y3S\",[w]:\"T32GaDttf\",[b]:\"Worldwide\",[v]:\"50\",[k]:!0,[x]:\"\",[S]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"\uD83C\uDF1F Boost Your Hiring Success with Our Featured Position on Top Job Board List! \uD83C\uDF1F\"}),/*#__PURE__*/e(\"p\",{children:\"Are you tired of your job listings getting lost in the sea of competition? Do you want to attract the best talent to your company and fill your vacancies quickly? Look no further! Introducing our exclusive Featured Position offering on the leading job board list website - the ultimate solution to maximize your hiring success!\"}),/*#__PURE__*/e(\"p\",{children:\"Here's why our Featured Position is a game-changer for your hiring needs:\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Enhanced Visibility:\"}),\" Your job listing will receive prime placement on our job board list website, making it instantly noticeable to job seekers. It will be prominently displayed at the top of relevant search results, capturing the attention of talented candidates actively seeking opportunities in your industry.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Increased Exposure:\"}),\" Stand out from the competition by having your job listing featured in our curated selection of top positions. Job seekers frequently browse our list to find the most attractive opportunities, and your Featured Position will shine bright, increasing its exposure to a vast pool of qualified professionals.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Unparalleled Engagement:\"}),\" Capture the attention of job seekers with a captivating, eye-catching Featured Position badge. This exclusive designation distinguishes your listing, generating higher engagement rates and enticing potential candidates to click and learn more about your company and the available role.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"Want more?\"}),/*#__PURE__*/e(\"p\",{children:\"We have additional option we can discuss. \"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(r,{href:{webPageId:\"cK0s0BXkj\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Contact us now \u2014>\"})}),\" \"]})]}),[C]:null,[F]:null,[P]:null,[E]:null,[A]:{webPageId:\"cK0s0BXkj\"},[T]:\"WorkingInCrypto\",[D]:\"EU\",[M]:W({src:\"https://framerusercontent.com/images/I5MHaTshiAXJLPpZ3C8G2sSTg.png\"},\"WorkingInCrypto.com\"),[B]:\"https://www.workingincrypto.com\",[I]:\"WorkingInCrypto ids the best job board for professionals looking to join a web3, Metaverse, NFT, Crypto, Blockchain, AI project.\"}];for(let e of O)Object.freeze(e);n(O,{Q3v0RN2nG:{defaultValue:!1,title:\"Published\",type:a.Boolean},DQ9vR2Q2Z:{defaultValue:!1,title:\"Featured\",type:a.Boolean},aFQyr1zJf:{defaultValue:!1,title:\"Company featured\",type:a.Boolean},CSe1Juh5B:{defaultValue:\"\",title:\"Job Title\",type:a.String},TSxe8svTN:{title:\"Slug\",type:a.String},w_wIz44rM:{defaultValue:\"ctluPBAIO\",options:[\"ctluPBAIO\",\"ciEAYkEzq\",\"t0cu62ncf\",\"s42e6ezlt\",\"wcDUdl_7C\",\"k0EXSIdIB\",\"JHFlwKeNG\",\"m3tAYHcBS\",\"AkV_YiMeS\",\"I9AJpheMH\",\"dHG_SwjVr\"],optionTitles:[\"-- choose --\",\"Design\",\"Engineering\",\"Finance\",\"Legal\",\"Marketing\",\"Operations\",\"Product\",\"Sales\",\"Support\",\"Other\"],title:\"Category\",type:a.Enum},JUv1p0kH1:{defaultValue:\"\",title:\"Tag\",type:a.String},SMmbbXAt7:{title:\"Date\",type:a.Date},ng1P5vLAC:{defaultValue:\"c44GLcz9X\",options:[\"c44GLcz9X\",\"dBZ0e3y3S\",\"wp6ZdcHYP\",\"Bbi_nwH_Y\",\"WHNYLolvN\"],optionTitles:[\"-- choose --\",\"Full-time\",\"Part-time\",\"Contract\",\"Freelance\"],title:\"Job Type\",type:a.Enum},HkPHwWWqR:{defaultValue:\"bWObvFQgJ\",options:[\"bWObvFQgJ\",\"KsOjlFXSl\",\"aIB2WdBQY\",\"T32GaDttf\"],optionTitles:[\"-- choose --\",\"On-site\",\"Hybrid\",\"Remote\"],title:\"Job Location\",type:a.Enum},SEX_t_1cx:{defaultValue:\"\",displayTextArea:!1,title:\"Geo location\",type:a.String},gdYzsdm2E:{defaultValue:\"\",title:\"Salary Range\",type:a.String},kXMqJ4uDK:{defaultValue:!1,title:\"Crypto option\",type:a.Boolean},Iji0ohJZk:{defaultValue:\"\",placeholder:\"0.1%-0.2%\",title:\"Equity range\",type:a.String},Pmbbm_ZyR:{defaultValue:\"\",title:\"Job Description\",type:a.RichText},xY6ZdnYKK:{defaultValue:\"\",title:\"Key Responsibility\",type:a.RichText},pVO5Q_3eg:{defaultValue:\"\",title:\"Required Skills\",type:a.RichText},siOi0cdcH:{defaultValue:\"\",title:\"Other skills\",type:a.RichText},ezVA8B_dl:{defaultValue:\"\",title:\"Perks and Benefits\",type:a.RichText},kD9v5pvaa:{title:\"Application URL\",type:a.Link},yFUOJY7Rx:{defaultValue:\"\",title:\"Company Name\",type:a.String},tbjVT10iW:{defaultValue:\"\",title:\"Company Location\",type:a.String},hG8Pae5ld:{title:\"Company Logo\",type:a.ResponsiveImage},k7bt6eJGq:{title:\"Company Website\",type:a.Link},nnZLxFAz_:{defaultValue:\"\",displayTextArea:!0,placeholder:\"max 5 lines\",title:\"Company Description\",type:a.String}}),O.displayName=\"jobs\";export default O;export const w_wIz44rMToDisplayName=(e,t)=>{switch(null==t||t.fallback,e){case\"ctluPBAIO\":return\"-- choose --\";case\"ciEAYkEzq\":return\"Design\";case\"t0cu62ncf\":return\"Engineering\";case\"s42e6ezlt\":return\"Finance\";case\"wcDUdl_7C\":return\"Legal\";case\"k0EXSIdIB\":return\"Marketing\";case\"JHFlwKeNG\":return\"Operations\";case\"m3tAYHcBS\":return\"Product\";case\"AkV_YiMeS\":return\"Sales\";case\"I9AJpheMH\":return\"Support\";case\"dHG_SwjVr\":return\"Other\";default:return\"\";}};export const ng1P5vLACToDisplayName=(e,t)=>{switch(null==t||t.fallback,e){case\"c44GLcz9X\":return\"-- choose --\";case\"dBZ0e3y3S\":return\"Full-time\";case\"wp6ZdcHYP\":return\"Part-time\";case\"Bbi_nwH_Y\":return\"Contract\";case\"WHNYLolvN\":return\"Freelance\";default:return\"\";}};export const HkPHwWWqRToDisplayName=(e,t)=>{switch(null==t||t.fallback,e){case\"bWObvFQgJ\":return\"-- choose --\";case\"KsOjlFXSl\":return\"On-site\";case\"aIB2WdBQY\":return\"Hybrid\";case\"T32GaDttf\":return\"Remote\";default:return\"\";}};export const enumToDisplayNameFunctions={HkPHwWWqR:HkPHwWWqRToDisplayName,ng1P5vLAC:ng1P5vLACToDisplayName,w_wIz44rM:w_wIz44rMToDisplayName};export const utils={async getSlugByRecordId(e,t){var n;return null===(n=O.find(t=>t.id===e))||void 0===n?void 0:n[g];},async getRecordIdBySlug(e,t){var n;return null===(n=O.find(t=>t[g]===e))||void 0===n?void 0:n.id;}};\nexport const __FramerMetadata__ = {\"exports\":{\"HkPHwWWqRToDisplayName\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"utils\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ng1P5vLACToDisplayName\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"enumToDisplayNameFunctions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"w_wIz44rMToDisplayName\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"data\",\"name\":\"data\",\"annotations\":{\"framerCollectionId\":\"zMB9Bg1SE\",\"framerContractVersion\":\"1\",\"framerRecordIncludedLocalesKey\":\"includedLocales\",\"framerSlug\":\"TSxe8svTN\",\"framerRecordIdKey\":\"id\",\"framerCollectionUtils\":\"1\",\"framerData\":\"\",\"framerEnumToDisplayNameUtils\":\"2\",\"framerRecordIndexKey\":\"index\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "d", "c", "p", "h", "g", "u", "m", "f", "y", "w", "b", "v", "k", "x", "S", "C", "F", "P", "E", "T", "D", "M", "B", "I", "W", "e", "t", "O", "motion", "ComponentPresetsConsumer", "Youtube", "Link", "addPropertyControls", "ControlType", "zMB9Bg1SE_default", "w_wIz44rMToDisplayName", "ng1P5vLACToDisplayName", "HkPHwWWqRToDisplayName", "enumToDisplayNameFunctions", "utils", "n", "__FramerMetadata__"]
}
