/*! 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}))})(); Programmable economic security Archives - The Tach https://thetach.com/?tag=programmable-economic-security Tue, 26 Nov 2024 16:11:14 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.1 Kernel Secures Binance Labs Funding to Redefine Restaking on BNB Chain https://thetach.com/?p=861 https://thetach.com/?p=861#respond Tue, 26 Nov 2024 16:11:13 +0000 https://thetach.com/?p=861 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

The post Kernel Secures Binance Labs Funding to Redefine Restaking on BNB Chain appeared first on The Tach.

]]> 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 strengthen BNB’s 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.

A Pivotal Achievement for Kernel and the BNB Chain

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

Kernel’s Innovative Approach to Restaking

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

Unlocking the Potential of Economic Security

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

Achievements that Define Kernel’s Progress

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

$10 Million Raised in Funding Rounds

The announcement that Kernel Secures Binance Labs Funding 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, and many others.

BNB Chain restacking solutions

This funding solidifies Kernel’s financial foundation, enabling the team to advance its mission of redefining restocking on the BNB Chain. The backing from well-known investors demonstrates industry confidence in Kernel’s innovative solutions.

The Role of Binance Labs in Kernel’s Success

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

Kernel’s Vision for DeFi Innovation

As Kernel Secures Binance Labs Funding, its vision for the future becomes clearer. Kernel plans to use this funding to accelerate the adoption of restacking technologies on the BNB Chain. These technologies will not only increase the scalability of existing DeFi applications 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, reducing barriers to entry and enabling seamless collaboration within the ecosystem.

Driving Growth Across the Crypto Ecosystem

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

Co-Founder’s Perspective on Binance Labs’ Support

Amitej G., Co-Founder of Kernel, shared his enthusiasm about the funding and partnership with Binance Labs. “By 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.” This statement underscores the collaborative spirit between Kernel and Binance Labs. Together, they aim to redefine the standards for restacking infrastructure on BNB Chain.

The Future of Restaking on BNB Chain

The announcement that Kernel Secures Binance Labs Funding sets the stage for transformative changes in the crypto ecosystem. With its focus on programmable trust and scalable solutions, Kernel is poised to lead innovation in BNB Chain’s restaking infrastructure. 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.

BNB Liquid Staking Tokens

Decentralized trust is the ultimate solution for web3 delivery, and therefore, it should be unlocked. Ongoing development in the Web3 space will ensure Kernel’s 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.

Conclusion 

Kernel’s partnership with Binance Labs signifies a major step toward redefining restaking on BNB Chain. With $10 million raised and significant milestones achieved, Kernel aims to bring transformative innovations to the DeFi ecosystem. By integrating BNB Liquid Staking Tokens 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’s staking architecture. Driving decentralized trust, scalability, and utility for the crypto ecosystem and Web3 applications.

FAQs

How has Kernel impacted the BNB Chain ecosystem?

Kernel has enhanced BNB Chain’s staking capabilities, improving utility and scalability for assets.

What makes Kernel’s restaking solutions unique?

Kernel offers shared economic security, integrating staking tokens with enhanced DeFi solutions.

Who supported Kernel’s $10 million funding round?

Prominent investors, including Binance Labs, SCB Limited, and Draper Dragon, contributed.

What are Kernel’s plans for the BNB Chain?

Kernel plans to launch BNB Liquid Staking Tokens, boosting DeFi scalability and innovation.

How does Binance Labs’ support benefit Kernel?

The funding enables Kernel to redefine restaking and scale its infrastructure efficiently.

The post Kernel Secures Binance Labs Funding to Redefine Restaking on BNB Chain appeared first on The Tach.

]]>
https://thetach.com/?feed=rss2&p=861 0