/*! elementor-pro - v3.26.0 - 17-12-2024 */ (()=>{"use strict";class Screenshot extends elementorModules.ViewModule{getDefaultSettings(){return{empty_content_headline:"Empty Content.",crop:{width:1200,height:1500},excluded_external_css_urls:["https://kit-pro.fontawesome.com"],external_images_urls:["https://i.ytimg.com"],timeout:15e3,render_timeout:5e3,timerLabel:null,timer_label:`${ElementorScreenshotConfig.post_id} - timer`,image_placeholder:"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=",isDebug:elementorCommonConfig.isElementorDebug,isDebugSvg:!1,...ElementorScreenshotConfig}}getDefaultElements(){const e=jQuery(ElementorScreenshotConfig.selector),t=e.find(".elementor-section-wrap > .elementor-section, .elementor > .elementor-section");return{$elementor:e,$sections:t,$firstSection:t.first(),$notElementorElements:elementorCommon.elements.$body.find("> *:not(style, link)").not(e),$head:jQuery("head")}}onInit(){return super.onInit(),this.log("Screenshot init","time"),this.timeoutTimer=setTimeout(this.screenshotFailed.bind(this),this.getSettings("timeout")),this.captureScreenshot()}captureScreenshot(){return this.elements.$elementor.length||(elementorCommon.helpers.consoleWarn("Screenshots: The content of this page is empty, the module will create a fake conent just for this screenshot."),this.createFakeContent()),this.removeUnnecessaryElements(),this.handleIFrames(),this.removeFirstSectionMargin(),this.handleLinks(),this.loadExternalCss(),this.loadExternalImages(),Promise.resolve().then(this.createImage.bind(this)).then(this.createImageElement.bind(this)).then(this.cropCanvas.bind(this)).then(this.save.bind(this)).then(this.screenshotSucceed.bind(this)).catch(this.screenshotFailed.bind(this))}createFakeContent(){this.elements.$elementor=jQuery("
").css({height:this.getSettings("crop.height"),width:this.getSettings("crop.width"),display:"flex",alignItems:"center",justifyContent:"center"}),this.elements.$elementor.append(jQuery("

").css({fontSize:"85px"}).html(this.getSettings("empty_content_headline"))),document.body.prepend(this.elements.$elementor)}loadExternalCss(){const e=[this.getSettings("home_url"),...this.getSettings("excluded_external_css_urls")].map((e=>`[href^="${e}"]`)).join(", ");jQuery("link").not(e).each(((e,t)=>{const s=jQuery(t),n=s.clone();n.attr("href",this.getScreenshotProxyUrl(s.attr("href"))),this.elements.$head.append(n),s.remove()}))}loadExternalImages(){const e=this.getSettings("external_images_urls").map((e=>`img[src^="${e}"]`)).join(", ");jQuery(e).each(((e,t)=>{const s=jQuery(t);s.attr("src",this.getScreenshotProxyUrl(s.attr("src")))}))}handleIFrames(){this.elements.$elementor.find("iframe").each(((e,t)=>{const s=jQuery(t),n=jQuery("
",{css:{background:"gray",width:s.width(),height:s.height()}});s.before(n),s.remove()}))}removeUnnecessaryElements(){let e=0;this.elements.$sections.filter(((t,s)=>{let n=!1;return e>=this.getSettings("crop.height")&&(n=!0),e+=jQuery(s).outerHeight(),n})).each(((e,t)=>{t.remove()})),this.elements.$notElementorElements.remove()}handleLinks(){elementorCommon.elements.$body.find("a").attr("href","/")}removeFirstSectionMargin(){this.elements.$firstSection.css({marginTop:0})}createImage(){const e=new Promise((e=>{window.addEventListener("load",(()=>{e()}))})),t=new Promise((e=>{setTimeout((()=>{e()}),this.getSettings("render_timeout"))}));return Promise.race([e,t]).then((()=>{if(this.log("Start creating screenshot."),this.getSettings("isDebugSvg"))return domtoimage.toSvg(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}).then((e=>this.download(e))),Promise.reject("Debug SVG.");return/^((?!chrome|android).)*safari/i.test(window.userAgent)?(this.log('Creating screenshot with "html2canvas"'),html2canvas(document.body).then((e=>e.toDataURL("image/png")))):(this.log('Creating screenshot with "dom-to-image"'),domtoimage.toPng(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}))}))}download(e){const t=jQuery("",{href:e,download:"debugSvg.svg",html:"Download SVG"});elementorCommon.elements.$body.append(t),t.trigger("click")}createImageElement(e){const t=new Image;return t.src=e,new Promise((e=>{t.onload=()=>e(t)}))}cropCanvas(e){const t=this.getSettings("crop.width"),s=this.getSettings("crop.height"),n=document.createElement("canvas"),i=n.getContext("2d"),o=t/e.width;return n.width=t,n.height=s>e.height?e.height:s,i.drawImage(e,0,0,e.width,e.height,0,0,e.width*o,e.height*o),Promise.resolve(n)}save(e){return new Promise(((t,s)=>{elementorCommon.ajax.addRequest("screenshot_save",{data:{post_id:this.getSettings("post_id"),screenshot:e.toDataURL("image/png")},success:e=>{this.log(`Screenshot created: ${encodeURI(e)}`),t(e)},error:()=>{this.log("Failed to create screenshot."),s()}})}))}markAsFailed(){return new Promise(((e,t)=>{elementorCommon.ajax.addRequest("screenshot_failed",{data:{post_id:this.getSettings("post_id")},success:()=>{this.log("Marked as failed."),e()},error:()=>{this.log("Failed to mark this screenshot as failed."),t()}})}))}getScreenshotProxyUrl(e){return`${this.getSettings("home_url")}?screenshot_proxy&nonce=${this.getSettings("nonce")}&href=${e}`}screenshotSucceed(e){this.screenshotDone(!0,e)}screenshotFailed(e){this.log(e,null),this.markAsFailed().then((()=>this.screenshotDone(!1)))}screenshotDone(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;clearTimeout(this.timeoutTimer),this.timeoutTimer=null,window.parent.postMessage({name:"capture-screenshot-done",success:e,id:this.getSettings("post_id"),imageUrl:t},"*"),this.log(`Screenshot ${e?"Succeed":"Failed"}.`,"timeEnd")}log(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"timeLog";this.getSettings("isDebug")&&(console.log("string"==typeof e?`${this.getSettings("post_id")} - ${e}`:e),t&&console[t](this.getSettings("timer_label")))}}jQuery((()=>{new Screenshot}))})();{"id":861,"date":"2024-11-26T16:11:13","date_gmt":"2024-11-26T16:11:13","guid":{"rendered":"https:\/\/thetach.com\/?p=861"},"modified":"2024-11-26T16:11:14","modified_gmt":"2024-11-26T16:11:14","slug":"kernel-secures-binance-labs-funding-to-redefine-restaking-on-bnb-chain","status":"publish","type":"post","link":"https:\/\/thetach.com\/?p=861","title":{"rendered":"Kernel Secures Binance Labs Funding to Redefine Restaking on BNB Chain"},"content":{"rendered":"\n

Kernel Secures Binance Labs Funding has reached a crucial step in designing new Restacking solutions<\/strong> for the BNB Chain network.<\/strong> It is a great recognition for Kernel but also a major step in rethinking trust decentralization and scalability in the cryptosphere. The Binance coin, BNB through Kernel with the backing of Binance Labs will now strengthen BNB\u2019s economic security to become a programmable trust. On a positive note, such a shift will benefit not only Apps, middleware, and the rest of the crypto market but also developers and users of such software<\/strong>.<\/p>\n\n\n\n

A Pivotal Achievement for Kernel and the BNB Chain<\/strong><\/h2>\n\n\n\n

The announcement that Kernel Secures Binance Labs Funding<\/strong> highlights the trust and confidence of major players in the crypto industry<\/strong> in Kernel\u2019s vision. This strategic partnership enables Kernel to focus on advancing restaking infrastructure<\/strong>, addressing key challenges, and unlocking the full potential of BNB Chain\u2019s staking ecosystem<\/strong>. The funding will be directed toward Kernel\u2019s innovative mission to integrate native and liquid staking tokens (LSTs)<\/strong>, transforming BNB\u2019s staking architecture<\/strong>. Bernel aims to foster a shared economic security ecosystem, by offering a programmable security framework facilitating the creation of scalable DeFi applications<\/strong>.<\/p>\n\n\n\n

Kernel\u2019s Innovative Approach to Restaking<\/strong><\/h2>\n\n\n\n

Kernel design uniquely integrates native <\/strong>and liquid staking tokens (LSTs)<\/strong> from BNB Chain<\/strong>, Bitcoin<\/strong>, and other yield-generating assets. These integrations allow users to maximize the potential of their staking assets while enhancing capital efficiency<\/strong> across multiple blockchain networks. Developers benefit from Kernel\u2019s platform as it offers tools to bootstrap projects efficiently, using shared economic security<\/strong> to reduce overhead and increase scalability. As Kernel Secures Binance Labs Funding<\/strong>, the team is now better positioned to deliver developer-friendly solutions<\/strong> that enhance the utility and security of staking assets<\/strong>.<\/p>\n\n\n\n

Unlocking the Potential of Economic Security<\/strong><\/h3>\n\n\n\n

The funding will accelerate Kernel\u2019s efforts to unlock the economic security of BNB Chain<\/strong>. By converting staking assets into a programmable trust<\/strong>, Kernel fosters the growth of a more resilient and scalable DeFi ecosystem<\/strong>. This shift promises to create new opportunities for innovation across Web3 applications<\/strong>.<\/p>\n\n\n\n

Achievements that Define Kernel\u2019s Progress<\/strong><\/h2>\n\n\n\n

Before announcing that Kernel Secures Binance Labs Funding<\/strong>, the company had already made significant strides in its mission to enhance BNB Chain\u2019s ecosystem<\/strong>. These achievements include Total Value Locked (TVL):<\/strong> Over $1 billion in staking assets secured. Layer-2 Integrations:<\/strong> More than 10 partnerships for improved blockchain scalability. DeFi Collaborations:<\/strong> Over 120 integrations, expanding the reach of Kernel\u2019s solutions<\/strong>. Unique Users:<\/strong> Over 300,000 addresses are actively engaged in its platform. These milestones highlight Kernel\u2019s ability to innovate and create a scalable infrastructure for DeFi growth<\/strong>.<\/p>\n\n\n\n

$10 Million Raised in Funding Rounds<\/strong><\/h2>\n\n\n\n

The announcement that Kernel Secures Binance Labs Funding<\/strong> includes details about the $10 million raised across multiple rounds. Kernel has received support from prominent investors such as SCB Limited, Laser Digital, Bankless Ventures, Draper Dragon<\/strong>, and many others. <\/p>\n\n\n

\n
\"BNB<\/figure><\/div>\n\n\n

This funding solidifies Kernel\u2019s financial foundation, enabling the team to advance its mission of redefining restocking on the BNB Chain<\/strong>. The backing from well-known investors demonstrates industry confidence in Kernel\u2019s innovative solutions.<\/p>\n\n\n\n

The Role of Binance Labs in Kernel\u2019s Success<\/strong><\/h3>\n\n\n\n

Finance Labs’ support is crucial. Finance Labs<\/strong> plays a crucial role in helping Kernel scale its operations and introduce BNB Liquid Staking Tokens (LSTs)<\/strong>. These tokens will serve as economic security to power DeFi applications<\/strong>, offering users and developers a more flexible and scalable infrastructure for their projects.<\/p>\n\n\n\n

Kernel\u2019s Vision for DeFi Innovation<\/strong><\/h2>\n\n\n\n

As Kernel Secures Binance Labs Funding<\/strong>, its vision for the future becomes clearer. Kernel plans to use this funding to accelerate the adoption of restacking technologies<\/strong> on the BNB Chain<\/strong>. These technologies will not only increase the scalability of existing DeFi applications<\/strong> but also open doors to entirely new use cases. By integrating staking tokens with Layer-2 solutions, Kernel ensures improved scalability and utility. This shared economic security model encourages developers to build innovative Web3 applications<\/strong>, reducing barriers to entry and enabling seamless collaboration within the ecosystem.<\/p>\n\n\n\n

Driving Growth Across the Crypto Ecosystem<\/strong><\/h3>\n\n\n\n

Kernel vision aligns with the broader goals of enhancing BNB Chain\u2019s DeFi landscape<\/strong>. By focusing on retaking infrastructure<\/strong>, Kernel is creating a foundation for decentralized, scalable trust that benefits developers<\/strong>, investors<\/strong>, and end-users. The announcement that Kernel Secures Binance Labs Funding<\/strong> marks an important step in this journey.<\/p>\n\n\n\n

Co-Founder\u2019s Perspective on Binance Labs\u2019 Support<\/strong><\/h2>\n\n\n\n

Amitej G., Co-Founder of Kernel, shared his enthusiasm about the funding and partnership with Binance Labs<\/strong>. \u201cBy leveraging rrestackingsolutions, Kernel is driving greater utility and scalability for BNB-based assets while laying the groundwork for a more resilient and developer-friendly restocking and DeFi landscape. We are thrilled to have the support of Binance Labs to bring the vision of restacking to life across Web3. Their backing has been instrumental in helping Kernel build the foundation for a more secure, scalable, and utility-rich restacking and DeFi ecosystem on BNB Chain.\u201d This statement underscores the collaborative spirit between Kernel and Binance Labs<\/strong>. Together, they aim to redefine the standards for restacking infrastructure<\/strong> on BNB Chain<\/strong>.<\/p>\n\n\n\n

The Future of Restaking on BNB Chain<\/strong><\/h2>\n\n\n\n

The announcement that Kernel Secures Binance Labs Funding<\/strong> sets the stage for transformative changes in the crypto ecosystem<\/strong>. With its focus on programmable trust and scalable solutions, Kernel is poised to lead innovation in BNB Chain\u2019s restaking infrastructure<\/strong>. Kernel users, developers, and investors will reap from the newfound economic security model that offers the required freedom of expansion to unlock potential in DeFi solutions. The adoption of BNB Liquid Staking Tokens, as well as the use of Layer-2 solutions, brings value to the BNB ecosystem. <\/p>\n\n\n

\n
\"BNB<\/figure><\/div>\n\n\n

Decentralized trust is the ultimate solution for web3 delivery, and therefore, it should be unlocked. Ongoing development in the Web3 space will ensure Kernel\u2019s contribution to restaking technologies becomes critical in the future of trust within the ecosystem. This way, Kernel remains committed to creating capital-efficient solutions and experiences that keep BNB Chain at the forefront of crypto innovation.<\/p>\n\n\n\n

Conclusion <\/strong><\/h2>\n\n\n\n

Kernel\u2019s partnership with Binance Labs signifies a major step toward redefining restaking on BNB Chain<\/strong>. With $10 million raised and significant milestones achieved, Kernel aims to bring transformative innovations to the DeFi ecosystem<\/strong>. By integrating BNB Liquid Staking Tokens<\/strong> and shared economic security models. Kernel empowers developers and users to maximize the potential of their assets. The funding strengthens Kernel’s position to lead the evolution of BNB Chain\u2019s staking architecture<\/strong>. Driving decentralized trust, scalability, and utility for the crypto ecosystem<\/strong> and Web3 applications<\/strong>.<\/p>\n\n\n\n

FAQs<\/strong><\/h2>\n\n\n\n
How has Kernel impacted the BNB Chain ecosystem?<\/strong><\/strong>

Kernel has enhanced BNB Chain\u2019s staking capabilities<\/strong>, improving utility and scalability for assets.<\/p> <\/div>

What makes Kernel\u2019s restaking solutions unique?<\/strong><\/strong>

Kernel offers shared economic security, integrating staking tokens<\/strong> with enhanced DeFi solutions<\/strong>.<\/p> <\/div>

Who supported Kernel\u2019s $10 million funding round?<\/strong><\/strong>

Prominent investors, including Binance Labs<\/strong>, SCB Limited, and Draper Dragon, contributed.<\/p> <\/div>

What are Kernel\u2019s plans for the BNB Chain?<\/strong><\/strong>

Kernel plans to launch BNB Liquid Staking Tokens<\/strong>, boosting DeFi scalability<\/strong> and innovation.<\/p> <\/div>

How does Binance Labs\u2019 support benefit Kernel?<\/strong><\/strong>

The funding enables Kernel to redefine restaking and scale its infrastructure efficiently.<\/p> <\/div> <\/div>\n","protected":false},"excerpt":{"rendered":"

Kernel Secures Binance Labs Funding has reached a crucial step in designing new Restacking solutions for the BNB Chain network. It is a great recognition for Kernel but also a major step in rethinking trust decentralization and scalability in the cryptosphere. The Binance coin, BNB through Kernel with the backing of Binance Labs will now … Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":862,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[329,328,330],"class_list":["post-861","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech-startup-ideas","tag-bnb-chain-restacking-solutions","tag-kernel-secures-binance-labs-funding","tag-programmable-economic-security"],"yoast_head":"\nKernel Secures Binance Labs Funding to Restaking on BNB Chain<\/title>\n<meta name=\"description\" content=\"Kernel Secures Binance Labs Funding to redefine BNB Chain restacking, boosting scalability, DeFi innovation, and economic security.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/thetach.com\/?p=861\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Kernel Secures Binance Labs Funding to Restaking on BNB Chain\" \/>\n<meta property=\"og:description\" content=\"Kernel Secures Binance Labs Funding to redefine BNB Chain restacking, boosting scalability, DeFi innovation, and economic security.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thetach.com\/?p=861\" \/>\n<meta property=\"og:site_name\" content=\"The Tach\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-26T16:11:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T16:11:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Kernel-Secures-Binance-Labs-Funding.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"712\" \/>\n\t<meta property=\"og:image:height\" content=\"473\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"burhan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"burhan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"WebPage\",\"FAQPage\"],\"@id\":\"https:\/\/thetach.com\/?p=861\",\"url\":\"https:\/\/thetach.com\/?p=861\",\"name\":\"Kernel Secures Binance Labs Funding to Restaking on BNB Chain\",\"isPartOf\":{\"@id\":\"https:\/\/thetach.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/thetach.com\/?p=861#primaryimage\"},\"image\":{\"@id\":\"https:\/\/thetach.com\/?p=861#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Kernel-Secures-Binance-Labs-Funding.jpg\",\"datePublished\":\"2024-11-26T16:11:13+00:00\",\"dateModified\":\"2024-11-26T16:11:14+00:00\",\"author\":{\"@id\":\"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24\"},\"description\":\"Kernel Secures Binance Labs Funding to redefine BNB Chain restacking, boosting scalability, DeFi innovation, and economic security.\",\"breadcrumb\":{\"@id\":\"https:\/\/thetach.com\/?p=861#breadcrumb\"},\"mainEntity\":[{\"@id\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637029505\"},{\"@id\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637031026\"},{\"@id\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637031793\"},{\"@id\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637072618\"},{\"@id\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637086619\"}],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thetach.com\/?p=861\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thetach.com\/?p=861#primaryimage\",\"url\":\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Kernel-Secures-Binance-Labs-Funding.jpg\",\"contentUrl\":\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Kernel-Secures-Binance-Labs-Funding.jpg\",\"width\":712,\"height\":473,\"caption\":\"Kernel Secures Binance Labs\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thetach.com\/?p=861#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thetach.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Kernel Secures Binance Labs Funding to Redefine Restaking on BNB Chain\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thetach.com\/#website\",\"url\":\"https:\/\/thetach.com\/\",\"name\":\"The Tach\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thetach.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24\",\"name\":\"burhan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thetach.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g\",\"caption\":\"burhan\"},\"sameAs\":[\"https:\/\/thetach.com\"],\"url\":\"https:\/\/thetach.com\/?author=1\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637029505\",\"position\":1,\"url\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637029505\",\"name\":\"How has Kernel impacted the BNB Chain ecosystem?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Kernel has enhanced <strong>BNB Chain\u2019s staking capabilities<\/strong>, improving utility and scalability for assets.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637031026\",\"position\":2,\"url\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637031026\",\"name\":\"What makes Kernel\u2019s restaking solutions unique?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Kernel offers shared economic security, integrating <strong>staking tokens<\/strong> with enhanced <strong>DeFi solutions<\/strong>.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637031793\",\"position\":3,\"url\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637031793\",\"name\":\"Who supported Kernel\u2019s $10 million funding round?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Prominent investors, including <strong>Binance Labs<\/strong>, SCB Limited, and Draper Dragon, contributed.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637072618\",\"position\":4,\"url\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637072618\",\"name\":\"What are Kernel\u2019s plans for the BNB Chain?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Kernel plans to launch <strong>BNB Liquid Staking Tokens<\/strong>, boosting <strong>DeFi scalability<\/strong> and innovation.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637086619\",\"position\":5,\"url\":\"https:\/\/thetach.com\/?p=861#faq-question-1732637086619\",\"name\":\"How does Binance Labs\u2019 support benefit Kernel?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"The funding enables Kernel to redefine restaking and scale its infrastructure efficiently.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Kernel Secures Binance Labs Funding to Restaking on BNB Chain","description":"Kernel Secures Binance Labs Funding to redefine BNB Chain restacking, boosting scalability, DeFi innovation, and economic security.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/thetach.com\/?p=861","og_locale":"en_US","og_type":"article","og_title":"Kernel Secures Binance Labs Funding to Restaking on BNB Chain","og_description":"Kernel Secures Binance Labs Funding to redefine BNB Chain restacking, boosting scalability, DeFi innovation, and economic security.","og_url":"https:\/\/thetach.com\/?p=861","og_site_name":"The Tach","article_published_time":"2024-11-26T16:11:13+00:00","article_modified_time":"2024-11-26T16:11:14+00:00","og_image":[{"width":712,"height":473,"url":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Kernel-Secures-Binance-Labs-Funding.jpg","type":"image\/jpeg"}],"author":"burhan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"burhan","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["WebPage","FAQPage"],"@id":"https:\/\/thetach.com\/?p=861","url":"https:\/\/thetach.com\/?p=861","name":"Kernel Secures Binance Labs Funding to Restaking on BNB Chain","isPartOf":{"@id":"https:\/\/thetach.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thetach.com\/?p=861#primaryimage"},"image":{"@id":"https:\/\/thetach.com\/?p=861#primaryimage"},"thumbnailUrl":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Kernel-Secures-Binance-Labs-Funding.jpg","datePublished":"2024-11-26T16:11:13+00:00","dateModified":"2024-11-26T16:11:14+00:00","author":{"@id":"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24"},"description":"Kernel Secures Binance Labs Funding to redefine BNB Chain restacking, boosting scalability, DeFi innovation, and economic security.","breadcrumb":{"@id":"https:\/\/thetach.com\/?p=861#breadcrumb"},"mainEntity":[{"@id":"https:\/\/thetach.com\/?p=861#faq-question-1732637029505"},{"@id":"https:\/\/thetach.com\/?p=861#faq-question-1732637031026"},{"@id":"https:\/\/thetach.com\/?p=861#faq-question-1732637031793"},{"@id":"https:\/\/thetach.com\/?p=861#faq-question-1732637072618"},{"@id":"https:\/\/thetach.com\/?p=861#faq-question-1732637086619"}],"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thetach.com\/?p=861"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thetach.com\/?p=861#primaryimage","url":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Kernel-Secures-Binance-Labs-Funding.jpg","contentUrl":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Kernel-Secures-Binance-Labs-Funding.jpg","width":712,"height":473,"caption":"Kernel Secures Binance Labs"},{"@type":"BreadcrumbList","@id":"https:\/\/thetach.com\/?p=861#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thetach.com\/"},{"@type":"ListItem","position":2,"name":"Kernel Secures Binance Labs Funding to Redefine Restaking on BNB Chain"}]},{"@type":"WebSite","@id":"https:\/\/thetach.com\/#website","url":"https:\/\/thetach.com\/","name":"The Tach","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thetach.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24","name":"burhan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thetach.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g","caption":"burhan"},"sameAs":["https:\/\/thetach.com"],"url":"https:\/\/thetach.com\/?author=1"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=861#faq-question-1732637029505","position":1,"url":"https:\/\/thetach.com\/?p=861#faq-question-1732637029505","name":"How has Kernel impacted the BNB Chain ecosystem?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Kernel has enhanced <strong>BNB Chain\u2019s staking capabilities<\/strong>, improving utility and scalability for assets.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=861#faq-question-1732637031026","position":2,"url":"https:\/\/thetach.com\/?p=861#faq-question-1732637031026","name":"What makes Kernel\u2019s restaking solutions unique?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Kernel offers shared economic security, integrating <strong>staking tokens<\/strong> with enhanced <strong>DeFi solutions<\/strong>.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=861#faq-question-1732637031793","position":3,"url":"https:\/\/thetach.com\/?p=861#faq-question-1732637031793","name":"Who supported Kernel\u2019s $10 million funding round?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Prominent investors, including <strong>Binance Labs<\/strong>, SCB Limited, and Draper Dragon, contributed.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=861#faq-question-1732637072618","position":4,"url":"https:\/\/thetach.com\/?p=861#faq-question-1732637072618","name":"What are Kernel\u2019s plans for the BNB Chain?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Kernel plans to launch <strong>BNB Liquid Staking Tokens<\/strong>, boosting <strong>DeFi scalability<\/strong> and innovation.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=861#faq-question-1732637086619","position":5,"url":"https:\/\/thetach.com\/?p=861#faq-question-1732637086619","name":"How does Binance Labs\u2019 support benefit Kernel?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"The funding enables Kernel to redefine restaking and scale its infrastructure efficiently.","inLanguage":"en-US"},"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts\/861","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=861"}],"version-history":[{"count":1,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts\/861\/revisions"}],"predecessor-version":[{"id":866,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts\/861\/revisions\/866"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/media\/862"}],"wp:attachment":[{"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=861"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=861"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=861"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}