From 3020a33d1480e7933c3e761a3edacc7991a00dc3 Mon Sep 17 00:00:00 2001 From: Dmitriy Date: Tue, 25 Jun 2024 18:15:16 +0200 Subject: [PATCH 1/4] chore: bring search back --- src/components/layouts/DefaultLayout.tsx | 2 +- .../sidebar-navigation/LargeScreenHeader.tsx | 2 - src/components/sidebar-navigation/Sidebar.tsx | 74 ------------------- .../sidebar-navigation/SmallScreenHeader.tsx | 27 +------ src/components/sidebar-navigation/styles.ts | 2 + 5 files changed, 6 insertions(+), 101 deletions(-) diff --git a/src/components/layouts/DefaultLayout.tsx b/src/components/layouts/DefaultLayout.tsx index 61c92b797..f24a7e501 100644 --- a/src/components/layouts/DefaultLayout.tsx +++ b/src/components/layouts/DefaultLayout.tsx @@ -70,7 +70,7 @@ export function DefaultLayout({ children }: Props) { {sidebarLayoutEnabled ? : } - {/* {sidebarLayoutEnabled && } */} + {sidebarLayoutEnabled && } diff --git a/src/components/sidebar-navigation/LargeScreenHeader.tsx b/src/components/sidebar-navigation/LargeScreenHeader.tsx index 05a62e329..bb70c070c 100644 --- a/src/components/sidebar-navigation/LargeScreenHeader.tsx +++ b/src/components/sidebar-navigation/LargeScreenHeader.tsx @@ -6,7 +6,6 @@ import { useAuthStore } from '@/stores/auth'; import { Button } from '../lib/Button'; import { VmComponent } from '../vm/VmComponent'; -import { LargeScreenNotificationButton } from './LargeScreenNotificationButton'; import { LargeScreenProfileDropdown } from './LargeScreenProfileDropdown'; import { useNavigationStore } from './store'; import * as S from './styles'; @@ -47,7 +46,6 @@ export const LargeScreenHeader = () => { title: currentPageTitle, rightSideChildren: signedIn ? ( <> - ) : ( diff --git a/src/components/sidebar-navigation/Sidebar.tsx b/src/components/sidebar-navigation/Sidebar.tsx index 868ea12f2..9828776a8 100644 --- a/src/components/sidebar-navigation/Sidebar.tsx +++ b/src/components/sidebar-navigation/Sidebar.tsx @@ -3,14 +3,9 @@ import { useRouter } from 'next/router'; import { Tooltip } from '../lib/Tooltip'; import NearIconSvg from './icons/near-icon.svg'; -// import { PinnedApps } from './PinnedApps'; import { useNavigationStore } from './store'; import * as S from './styles'; import { currentPathMatchesRoute } from './utils'; -import { LargeScreenProfileDropdown } from './LargeScreenProfileDropdown'; -import { LargeScreenNameDropdown } from './LargeScreenNameDropdown'; -import { useSignInRedirect } from '@/hooks/useSignInRedirect'; -import { useAuthStore } from '@/stores/auth'; export const Sidebar = () => { const router = useRouter(); @@ -18,16 +13,8 @@ export const Sidebar = () => { const isSidebarExpanded = useNavigationStore((store) => store.isSidebarExpanded && !store.expandedDrawer); const isOpenedOnSmallScreens = useNavigationStore((store) => store.isOpenedOnSmallScreens); const toggleExpandedSidebar = useNavigationStore((store) => store.toggleExpandedSidebar); - // const toggleExpandedDrawer = useNavigationStore((store) => store.toggleExpandedDrawer); const handleBubbledClickInSidebar = useNavigationStore((store) => store.handleBubbledClickInSidebar); - const { requestAuthentication } = useSignInRedirect(); const tooltipsDisabled = isSidebarExpanded; - const signedIn = useAuthStore((store) => store.signedIn); - const signedAccountId = useAuthStore((store) => store.accountId); - - const handleSignIn = () => { - requestAuthentication(true); - }; const isNavigationItemActive = (route: string | string[], exactMatch = false) => { if (expandedDrawer) return false; @@ -60,12 +47,6 @@ export const Sidebar = () => { - {/* - - - Activity - - */} { Support - - {/* - toggleExpandedDrawer('discover', event)} - > - - Discover - - */} - {/* */} - Discover @@ -121,20 +86,6 @@ export const Sidebar = () => { - {/* - toggleExpandedDrawer('marketing', event)} - > - - More - - */} - { - - {/* TODO: Improve handling the sidebar opening */} - { - !isSidebarExpanded && toggleExpandedSidebar(); - }} - > - {signedIn ? ( - - - - - - - ) : ( - - - - Sign-up or Login - - - )} - - - {/* */} ); diff --git a/src/components/sidebar-navigation/SmallScreenHeader.tsx b/src/components/sidebar-navigation/SmallScreenHeader.tsx index d9520fdba..7947dbc2c 100644 --- a/src/components/sidebar-navigation/SmallScreenHeader.tsx +++ b/src/components/sidebar-navigation/SmallScreenHeader.tsx @@ -1,17 +1,14 @@ import Image from 'next/image'; -import { useCallback } from 'react'; import { useBosComponents } from '@/hooks/useBosComponents'; import { useSignInRedirect } from '@/hooks/useSignInRedirect'; import { useAuthStore } from '@/stores/auth'; -import { useVmStore } from '@/stores/vm'; import { Button } from '../lib/Button'; -import { VmComponent } from '../vm/VmComponent'; import NearIconSvg from './icons/near-icon.svg'; +import { LargeScreenProfileDropdown } from './LargeScreenProfileDropdown'; import { useNavigationStore } from './store'; import * as S from './styles'; -import { LargeScreenProfileDropdown } from './LargeScreenProfileDropdown'; export const SmallScreenHeader = () => { const components = useBosComponents(); @@ -20,26 +17,13 @@ export const SmallScreenHeader = () => { const setNavigation = useNavigationStore((store) => store.set); const showDrawerCollapse = useNavigationStore((store) => store.isOpenedOnSmallScreens && !!store.expandedDrawer); const expandedDrawerTitle = useNavigationStore((store) => store.expandedDrawerTitle); - - const near = useVmStore((store) => store.near); - const availableStorage = useAuthStore((store) => store.availableStorage); - const availableStorageDisplay = availableStorage?.gte(10) ? availableStorage.div(1000).toFixed(2) : '0'; - const logOut = useAuthStore((store) => store.logOut); const signedIn = useAuthStore((store) => store.signedIn); const { requestAuthentication } = useSignInRedirect(); - const handleSignIn = () => { - requestAuthentication(); - }; const handleCreateAccount = () => { requestAuthentication(true); }; - const withdrawTokens = useCallback(async () => { - if (!near) return; - await near.contract.storage_withdraw({}, undefined, '1'); - }, [near]); - return ( {showDrawerCollapse ? ( @@ -65,14 +49,9 @@ export const SmallScreenHeader = () => { )} {signedIn ? ( - + + \ No newline at end of file diff --git a/public/blog/category/case-studies/feed/index.xml b/public/blog/category/case-studies/feed/index.xml deleted file mode 100644 index fb92a4c93..000000000 --- a/public/blog/category/case-studies/feed/index.xml +++ /dev/null @@ -1,637 +0,0 @@ - - - - Case Studies Archives – NEAR Protocol - - /blog/category/case-studies/ - - Mon, 07 Aug 2023 15:35:34 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - /wp-content/uploads/2020/09/cropped-favicon-32x32.png - Case Studies Archives – NEAR Protocol - /blog/category/case-studies/ - 32 - 32 - - - Case Study: Flipside Crypto on Building an Analytics Platform on the BOS - /blog/case-study-flipside-crypto-on-building-an-analytics-platform-on-the-bos/ - - - Thu, 03 Aug 2023 02:30:00 +0000 - - - - /?p=20764 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: Flipside Crypto on Building an Analytics Platform on the BOS appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

- - - -

In the latest NEAR Foundation Case Study video, we hear Flipside Crypto’s Evan “Captain” Owens and GJ Flannery. Not only is Flipside a team building innovative on-chain data and analytics solutions on NEAR, but they were one of the first ecosystem projects to build on the Blockchain Operating System (BOS). 

- - - -

In this case study video, GJ Flannery (Growth & Community) and Captain Owens (Strategic Partnerships) talk about the platform’s ecosystem of analytics and developers building widgets on the BOS with Flipside’s on-chain data. If you’re a founder or developer looking to hear directly from developers who’ve built on the BOS, then this Flipside Case Study video is not to be missed. 

- - - -

- - - -
- -
-

The post Case Study: Flipside Crypto on Building an Analytics Platform on the BOS appeared first on NEAR Protocol.

-]]>
- - - -
- - Case Study: Satori’s Jeff Bissinger Talks NEAR Tasks for the Gig Economy - /blog/case-study-satoris-jeff-bissinger-talks-near-tasks-for-the-gig-economy/ - - - Mon, 31 Jul 2023 14:30:00 +0000 - - - - - /?p=20761 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: Satori’s Jeff Bissinger Talks NEAR Tasks for the Gig Economy appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

- - - -

In the latest NEAR Foundation Case Study video, we hear from Jeff Bissinger, Product Manager at Satori. As a product team building innovative Web3 solutions, Satori is creating AI integrations that enable people to work with purpose. NEAR Tasks, which launched at Consensus 2023 in Austin, is one of Satori’s latest products. 

- - - -

In this case study video, Jeff Bissinger takes viewers on a trip into NEAR Tasks — Satori’s effort to blend the gig economy with blockchain technology. With NEAR Tasks, users can earn $NEAR while completing simple, yet meaningful, AI related tasks. 

- - - -

- - - -
- -
-

The post Case Study: Satori’s Jeff Bissinger Talks NEAR Tasks for the Gig Economy appeared first on NEAR Protocol.

-]]>
- - - -
- - Case Study: NEAR Foundation’s Laura Cunningham on the NEAR Horizon Startup Accelerator - /blog/case-study-near-foundations-laura-cunningham-on-the-near-horizon-startup-accelerator/ - - - Wed, 26 Jul 2023 16:00:00 +0000 - - - - /?p=20758 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: NEAR Foundation’s Laura Cunningham on the NEAR Horizon Startup Accelerator appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

- - - -

In the latest NEAR Foundation Case Study video, viewers hear from Laura Cunningham, Team Lead at NEAR Horizon and General Manager at NEAR Foundation. NEAR Horizon is a Web3 accelerator program revolutionizing how founders and builders receive support in the open web. Laura takes viewers on a deep dive into Horizon’s startup accelerator marketplace, which the Horizon team built on the Blockchain Operating System (BOS). 

- - - -

“The BOS was our platform of choice for building NEAR Horizon because it makes Horizon much more accessible to founders and projects that are already in the ecosystem. And then ones coming in new, you can be building on another chain as long as you have some component of your stack on NEAR then you can apply and be part of NEAR Horizon,  ” she adds. “It is also incredibly composable, so we were able to fork different attributes that were already available on BOS and make use of them in our front end, so it made it a lot quicker to actually develop.”

- - - -
- -
-

The post Case Study: NEAR Foundation’s Laura Cunningham on the NEAR Horizon Startup Accelerator appeared first on NEAR Protocol.

-]]>
- - - -
- - Case Study: Building on the NEAR Blockchain Operating System (BOS) - /blog/case-study-building-on-the-near-blockchain-operating-system-bos/ - - - Mon, 24 Jul 2023 17:00:00 +0000 - - - - /?p=20749 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: Building on the NEAR Blockchain Operating System (BOS) appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

- - - -

In the latest NEAR Foundation Case Study video, viewers take a deep dive into the Blockchain Operating System (BOS). We explore how the BOS, like a decentralized app store, isn’t controlled by any centralized entities. Other topics of conversation include BOS Gateways, the discoverability and composability of BOS apps and components, building on the BOS with Javascript, and integrations with Visual Studio Code and Github.

- - - -
- -
-

The post Case Study: Building on the NEAR Blockchain Operating System (BOS) appeared first on NEAR Protocol.

-]]>
- - - -
- - How Solaire is Revolutionizing the Fashion Industry with Web3 Technology and Building the Retail Infrastructure on NEAR - /blog/how-solaire-is-revolutionizing-the-fashion-industry-with-web3-technology-and-building-the-retail-infrastructure-on-near/ - - - Thu, 30 Mar 2023 13:20:43 +0000 - - - - - /?p=20346 - - Solaire – an exciting web3 retail platform that merges physical and digital assets – is revolutionizing the way consumers interact …

-

The post How Solaire is Revolutionizing the Fashion Industry with Web3 Technology and Building the Retail Infrastructure on NEAR appeared first on NEAR Protocol.

-]]>
- Solaire – an exciting web3 retail platform that merges physical and digital assets – is revolutionizing the way consumers interact with fashion brands. By harnessing the power of web3 and the NEAR blockchain, Solaire is building out key protocol infrastructure and APIs that will expand decentralized retail and unlock new opportunities for both shoppers and fashion brands alike.

- - - -

- - - -

Solaire is pioneering phygital use cases and brands will be able to leverage the NEAR blockchain in tandem with Solair’s powerful APIs to engage with their audience in novel ways.  Solaire’s suite of APIs seamlessly integrates with a brand’s existing retail channels. This enables new revenue channels and richer data. 

- - - -

- - - -

Solaire’s entire backend is fully on-chain and facilitates an easy-to-use web2 interface, with no wallet or crypto needed from shoppers. The NEAR blockchain helps Solaire provide these benefits for brands, as well as unique integrations with NEAR. This includes Solaire integration with the NEAR Mainnet, native NEAR wallet support, and the NEAR token as a payment option.

- - - -

How Solaire is Changing Fashion with Phygital

- - - -

Solaire establishes a 1:1 connection between a physical object and its digital twin. Brands can then leverage Solaire’s infrastructure and suite of APIs to engage customers with NFTs and phygital experiences in a seamless, user-friendly way, removing some of the typical web3 friction points.

- - - -

- - - -

“We aim to do all the hard work on the backend so that brands and consumers can enjoy a familiar user experience with all the benefits of Web3 but without the hassle of dealing with wallet or crypto,” says Vivian Zhang, CEO of Solaire. “And NEAR’s blockchain is perfectly suited to run enterprise-level protocols to ensure a seamless and frictionless user experience.”

- - - -

- - - -

Soliare infrastructure helps brands create meaningful digital twins for physical goods, as well as providing a means for consumers to buy and trade phygital assets. Solaire allows for minting unique NFTs attached to physical goods and offers an end-to-end solution for securing and tracking a product from manufacturing through its entire product lifecycle.

- - - -

- - - -

Solaire has already collaborated with major fashion brands like Freeman’s Limited Edition Phygital Harry Potter™ Collection and Ilona Song. Smart contracts facilitate shipping, returns, and exchanges all on the NEAR blockchain This allows customers to shop and purchase with transparency and confidence.

- - - -

Benefits of Phygital Assets for Fashion Brands

- - - -

Phygital assets are a new way for fashion brands to engage consumers, combining the physical and digital worlds to create a more immersive shopping experience. For example, when a customer buys a dress in real life, they also receive a digital wearable. This can be in the form of an AR filter, a digital skin in their favorite game, or to wear in the metaverse. 

- - - -

- - - -

“Solaire’s mission is to empower the retail industry with web3 tools to cultivate a more connected and automated ecosystem,” Zhang continues. “With our suite of APIs, brands are able to maximize revenue and gain valuable data from digital assets, facilitate the secondary market, and build community.”

- - - -

- - - -

Brands can then use Solaire as a powerful CRM tool. Through the digital twin in customers’ wallets, brands will have a constant open channel of communication with both the primary customer and secondary owners. Smart contracts also automate royalties from secondary selling, giving brands visibility into trading data.

- - - -

- - - -

Another exciting feature is the secondary market experience brands can now provide. Solaire’s backend enables peer-to-peer physical asset trading without a middleman, utilizing blockchain-secured data and smart contracts. Buyers and sellers can independently confirm possession and authenticity of assets on-chain, and smart contracts resolve any disputes.

- - - -

Solaire and NEAR Building a Phygital Fashion Future

- - - -

“We’re building on NEAR because it champions community, and it’s one we have found to be incredibly supportive,” remarks Vivian Zhang, CEO of Solaire. “We’ve been able to connect and collaborate with so many partners as we build an entire retail ecosystem together on NEAR.”

- - - -

As fashion brands recognize the value of web3, NFTs, and phygital technology as important audience touchpoints, Solaire has the potential to partner with even more fashion brands and designers. Solaire’s game-changing approach and tech stack – aided by the NEAR blockchain – will bring web3 to more fashionistas without some of the usual pain points.

- - - -

“Together with NEAR, we hope to lay out the Web3 infrastructure for the retail industry to onboard the next billion users into web3,” concluded Zhang. 

-

The post How Solaire is Revolutionizing the Fashion Industry with Web3 Technology and Building the Retail Infrastructure on NEAR appeared first on NEAR Protocol.

-]]>
- - - -
- - Introducing SeatlabNFT: The Web3 Startup Changing the Ticketing Game  - /blog/introducing-seatlabnft-the-web3-startup-changing-the-ticketing-game/ - - - Thu, 27 Oct 2022 09:38:58 +0000 - - - - /?p=18720 - - Music, sports, and entertainment ticketing is about to be completely reimagined. SeatlabNFT, an NFT ticketing platform built on the NEAR …

-

The post Introducing SeatlabNFT: The Web3 Startup Changing the Ticketing Game  appeared first on NEAR Protocol.

-]]>
- Music, sports, and entertainment ticketing is about to be completely reimagined. SeatlabNFT, an NFT ticketing platform built on the NEAR blockchain, is bringing fans closer to their favorite artists and sports teams, while also making the ticketing game a lot fairer by reducing scalping and touting.

- - - -

NFTs in sports and entertainment are becoming more widespread and high-profile. Professional athletes and musicians love flexing their profile pic NFTs these days. But there are more meaningful ways to use NFT technology in the Web3 space. This is precisely SeatlabNFT’s aim: use NFTs and the underlying technology to revolutionize ticketing.

- - - -

How NFTs can make ticketing fairer

- - - -

A major long-standing issue in the ticketing industry is control over the secondary market. Tickets to popular events often sell out in a matter of minutes—often due to scalpers and ticket wholesalers—only to reappear on the secondary market at a significant markup. It’s an unfortunate reality that many music and sports fans have come to accept.

- - - -

“While various ideas to beat scalpers have been tried in the past, Web2 lacks the tools required to provide genuine control over the secondary market,” wrote Ryan Kenny, CEO of SeatlabNFT, in a recent op-ed for City A.M

- - - -

“The result, in many cases, is that fans are unable to see the performers they love without paying extortionate amounts of money,” he added. “And, with the profit falling into the hands of scalpers, artists miss out on any revenue generated by secondary sales.”

- - - -

The SeatlabNFT live event and ticketing platform, built on NEAR, has a clear plan to solve those issues. Artists will be able to mint and sell tickets directly to fans on SeatlabNFT, while those who purchase will avoid scalper markups. And unlike buying a ticket in today’s secondary market, NFT technology will ensure that the ticket they buy isn’t fraudulent.

- - - -

“With the arrival of Web3, there is a huge opportunity to change this dynamic by issuing tickets as NFTs,” wrote Kenny. “NFT technology is a natural fit for ticketing, as it solves many main problems plaguing the event ticketing industry.”

- - - -

But maintaining fair pricing and putting more revenue into the pockets of creators themselves is just the tip of the iceberg. SeatlabNFT has other ideas for how to use NFTs to change the ticketing landscape.

- - - -

Creating more profound relationships with fans

- - - -

SeatlabNFT has big plans to help artists and teams make the fan experience much more fun, immersive, and bi-directional. Fans and attendees will feel less like consumers being sold an experience, and more like active participants. SeatlabNFT’s NFT platform will open doors and opportunities to increase fan engagement and loyalty.

- - - -

For starters, artists will be able to create, issue, and sell NFT collectibles associated with various live events. This goes beyond images, as NFTs can also exist on the blockchain in the form of audio recordings, videos, and other forms of digital artwork. These event-associated NFTs could be airdropped on demand, displayed online, or traded with the same smart contracts used to control the secondary market for tickets. 

- - - -

Creators can also airdrop event-based NFTs or collectibles using SeatlabNFT smart contracts, rewarding some of the best and most loyal fans who attend live events. For instance, a musical artist could airdrop NFTs to fans who have been to multiple live shows, with their attendance verified by the blockchain. This gives creators the chance to issue everything from digital collectibles to utility NFTs that grant things like discounts on merch, early access to future sales or even unlock on-site perks like access to restricted areas or free food and drink.

- - - -

Ticket royalty splits and price ceilings

- - - -

Underpinning all of these NFT ticketing value propositions is SeatlabNFT’s smart contracts that enable royalty splits (on NEAR, royalty splits are baked into smart contracts) and price ceilings. Royalty splits and price ceilings give artists and event organizers the tools they need to fight back against scalping. It allows creators to configure the tickets before they go on sale, and ensures that even on the secondary market, event creators can still capture the value they create.  

- - - -

With these cutting-edge ticketing efforts, SeatlabNFT is working to create a fairer, more transparent, and equitable playing field for all parties.

- - - -

What’s next for SeatlabNFT

- - - -

SeatlabNFT is currently in Phase 2 of its roadmap, with a variety of features and functions already live. The SeatlabNFT app is downloadable on the Apple App Store and Google Play Store, with tickets to various events currently on sale. 

- - - -

The SeatlabNFT membership card available on the app is also a precursor to the Immersive Fan Pass, an NFT-based fan membership card program exclusively on SeatlabNFT. These passes will be NFTs with various tiered utility and benefits that artists can offer as part of an immersive fan club package. Backstage passes, early access to demo tracks, and artist meet-and-greets are just a few potential ways the Immersive Fan Pass could be used.

- - - -

SeatlabNFT also just announced a new partnership with Elrow, one of the world’s biggest dance brands. At Elrow’s Dubai festival, scheduled for February 18, 2023 , SeatlabNFT technology will be used for exclusive VIP ticketing and immersive experiences. Elrow Dubai is taking place at D3 Dubai Design District, which can accommodate up to 10,000 people, making it a great opportunity to onboard many new people into both NEAR and Web3.

- - - -
- -
- - - -

The ticketing industry and experience are long overdue for disruption, and SeatlabNFT is well on the way to doing just that. Artists, creators, and sports teams can offer more fair pricing to their fans while receiving a greater share of the revenue via SeatlabNFT’s royalty split smart contracts. And fans get better pricing with the peace of mind that they’re purchasing an authentic ticket.

- - - -

And even more exciting, integrating NFT technology into the ticketing space opens the door for limitless possibilities in connecting fans with their favorite artists and teams. Linking exclusive digital NFT collectibles and airdrops with tickets is ripe for experimentation, and the Immersive Fan Pass will engage fans on a level never before seen.

-

The post Introducing SeatlabNFT: The Web3 Startup Changing the Ticketing Game  appeared first on NEAR Protocol.

-]]>
- - - -
- - Inside the Tech: NFT.HipHop Marketplace - /blog/inside-the-tech-nft-hiphop/ - - - Mon, 12 Jul 2021 15:59:46 +0000 - - /?p=12549 - - The NFT.HipHop marketplace auction of the Hip Hop Heads collection began on Juneteenth and will run for 37 days, until …

-

The post Inside the Tech: NFT.HipHop Marketplace appeared first on NEAR Protocol.

-]]>
- The NFT.HipHop marketplace auction of the Hip Hop Heads collection began on Juneteenth and will run for 37 days, until July 25. A celebration of the history of hip hop and its most iconic artists, the pop-up marketplace also highlights some engineering innovations that highlight the advanced NFT developer and user experience on NEAR. NFT.HipHop incorporates seamless NEAR account creation, the ability to purchase NFTs with a credit card, customizable royalty splits that follow NFTs across marketplaces, and the debut of NFTs displaying in the NEAR wallet. 

-

Inside the User Experience

-

The NFT.HipHop auction marks a radical change in the way that NFT marketplaces can be executed. The user onboarding flow makes the process universally accessible and as familiar as any Web2 purchasing experience. With this new creative approach, end users with no existing crypto knowledge can easily purchase NFTs without the hurdles of onboarding to an exchange, purchasing cryptocurrency, or choosing and connecting a wallet. Thanks to the app’s wallet faucet and NEAR’s human-readable account naming system, all a user has to do is choose a NEAR name and the application handles the rest.

-

-

Marketplace credits for placing NFT bids can be purchased with a credit card. There is no complex, multi-step process of purchasing crypto through an exchange and paying high transaction fees as would be required with other NFT marketplaces today. Using crypto can be a confusing process for a novice, but by employing this progressive onboarding flow, the barrier to entry for crypto has been all but eliminated. The goal is to make NFTs accessible to all kinds of hip hop fans, not just crypto-native fans.

-

Inside the App

-

At its core, the NFT.HipHop marketplace is a standard React application with state management. dApp developers retrieve on-chain state using the NEAR API Helper, which interacts with the NEAR blockchain via CloudFlare. This tool allows caching heavy queries when the user lands on the page, as there are 103 portraits in the Hip Hop Heads collection and 37 available editions of each Head. As the user explores the marketplace, they’re only viewing one basic type of NFT. The canonical tokens, or “gem tokens,” are stored, and individual edition bids and sales are visible to the user within each gem. When clicking on an individual token, one sees which editions are for sale and the bidding history is pulled from the marketplace contract.

-

When the user is ready to bid on an NFT, a React component handles the flow of creating a NEAR account; if you already have a NEAR Wallet, you go straight to buying credits. Then the user gets a prompt to add “credits” to their account using Stripe. This happens through a custom-built stripe-payment-sandbox, which converts fiat into credits that are actually native fungible tokens usable only on the NFT.HipHop app.

-

This Stripe payment fiat onramp is accomplished by wrapping the fungible token standard with a custom API to ensure that only transfers to the marketplace or started by the marketplace are possible, in addition to tracking Stripe charges used to mint the tokens. The latter makes it possible to automate refunds when the auction concludes. The standard contract methods are wrapped so that an “assertion” can be added, verifying that transfer requests involve the marketplace. If the assertion fails, the smart contract will “panic,” displaying an alert indicating that “only transfers from the marketplace are allowed.”

-

Inside NFT Royalties on NEAR

-

Nearly all of the backend accounting is done transparently on the blockchain and is visible on NEAR Explorer, allowing for transparency paired with a real ability to illustrate the flow of funds. Using the Standard for a Multiple-Recipient-Payout mechanic on NFT Contracts, royalties on NEAR follow the NFTs in perpetuity. This allows for royalty enforcement across different marketplaces and applies to secondary sales. A user could have an NFT in their NEAR wallet and go to a different marketplace on NEAR, such as Paras or Mintbase, for a potential resale. With the royalties embedded in the actual NFT token, they must be respected in order to complete the transfer of that NFT. Completely customizable, royalties can be split between multiple contributors, beneficiaries, and even DAOs. This standard is the first of its kind and a key differentiator for NFT developers, artists, and users alike.

-

When the 36-day marketplace draws to a close, every auction winner will see their NFT displayed in their NEAR wallet––in fact, all NEAR NFTs from any marketplace are displayed in a collectibles tab in the wallet. Like art hanging on a gallery wall or in your home, the user’s collection is accessible within a few clicks, and not just within an individual marketplace. 

-

Inspired? Start Building!

-

Supporting documentation and open source repositories for building NFT marketplaces on NEAR are available to all. Any developer can utilize the concepts in this marketplace and model their dApps on this construct or remix different elements as part of a new idea. Head over to NFT.HipHop to see how NEAR’s seamless and easy tech can empower builders to create accessible, delightful user experiences.

-

The post Inside the Tech: NFT.HipHop Marketplace appeared first on NEAR Protocol.

-]]>
- - - -
- - How blockchain will save the Creator Economy - /blog/how-blockchain-will-save-the-creator-economy/ - - - Wed, 07 Jul 2021 16:05:37 +0000 - - /?p=12505 - - Why NFTs, DAOs and Open Finance will change the world for artists and their communities. Creators are Innovators Creative industries …

-

The post How blockchain will save the Creator Economy appeared first on NEAR Protocol.

-]]>
- Why NFTs, DAOs and Open Finance will change the world for artists and their communities.

-

Creators are Innovators

-

Creative industries have always led innovation because they’re fundamentally exploratory and hungry for ways to help create sustainably.

-

Hip Hop, for example, pushed the envelope in almost every possible way during its ascent from the streets to becoming the dominant form of music in the world.  DJ Kool Herc, its commonly acknowledged progenitor, birthed a new art form when he extended dance-friendly breaks by combining multiple records across turntables in the ‘70s and others in the industry have driven innovation ever since.

-

Just like that first technological experimentation to make better dance parties in the Bronx started a revolution in music production, today we’re seeing the emergence of a new set of tools with the same power to enable artists to engage their fans and change the world.

-

In this post, I’ll walk through some of the problems that creators and communities face today and how a new blockchain-enabled toolkit will make them more aligned, engaged and sustainable.

-

The Creator Economy

-

The advent of the Internet in the late ’90s ushered in an era where people around the world could both create and consume much more easily than ever before. You can do more with a Macbook today than a whole studio could 20 years ago.

-

It also became substantially easier to find communities of common interest regardless of geography, and a larger portion of all our lives migrated into the digital realm. New hardware and software tools made it much easier to produce content — whether multi-platinum albums or simply micro-niche blog posts — while the web’s scale made it much easier to distribute this content.

-

Unfortunately, the boom in creation and the massive expansion of platforms to support large fanbases wasn’t matched by a similar boom in the sustainability of creators. In fact, while the increased size of audiences allowed top creators to reach a grander scale, the infinite replication of content and the power of distributors as middlemen made it more difficult for most other creators to benefit from their intellectual property (“IP”).

-

The relationship between creators and their communities drives the so-called Creator Economy, which is a dynamic between 3 factors:

-
    -
  1. Creators who produce something of value
  2. -
  3. Communities who support these creators
  4. -
  5. Financial tools and platforms to help make creators and their communities sustainable
  6. -
-

The line between creators and communities can be blurry, for example when users generate content, but ultimately someone has to pay for something in order to create a sustainable economy.

-

-

Today, this economy is generally a one-way path where the creator produces something (eg an album), gets fans to consume it (typically losing most of the proceeds to the middlemen who control their relationship with fans) and tries to earn real income from secondary revenue streams like concerts or merchandise or sponsorships. This system is rife with problems and it’s only sustainable for creators with enormous or highly engaged fan bases, particularly if they’ve given away their IP rights along the way. This leaves the so-called “long tail” of smaller creators underserved and makes things tough even for the larger ones due to all the middlemen who have their hands in the pie.

-

 

-

What’s Changing Today

-

So how do we make the creator economy more sustainable for everyone?

-

It requires improving the underlying technology of the web to unlock new tools for both creators and their communities to build stronger, more sustainable bonds.  Specifically, it means merging the technological revolution which started with Bitcoin in 2008 with today’s Internet to create new tools like NFTs, DAOs, Fungible Tokens and Open Finance (“defi”).

-

Here’s how it all fits together.

-

If you go back to the Creator Economy Triangle from before, each corner has needs that weren’t met before:

-
    -
  • Creators haven’t been able to sustainably benefit from their IP because of the commodification of content in the digital world which devalues their creativity and which leaves them at the mercy of their distribution partners and the platforms holding their fanbases.
  • -
-
    -
  • Communities haven’t been able to effectively self-organize outside of existing social platforms, make themselves sustainable or align their interests with those of the creators they support.
  • -
-
    -
  • Financial tooling has limited the economy itself to one-time or recurring payments for goods or services because the tooling has been anchored in a world of bank accounts and Paypal-like providers. Royalty schemes and payments are also notoriously arcane, inconsistent and exploitative to creators.
  • -
-

In 2021, blockchain technology has finally arrived at the point where it can solve all three of these issues and unblock the Creator Economy.

-

This is because each of the key aspects of the Creator Economy is served by a specific set of tools which weren’t possible to combine like this before a platform like NEAR was available.  This gives us a new Creator Economy Triangle, which shows how these tools — NFTs, DAOs, Fungible Tokens and Open Finance (“defi”) — interact:

-

-

At a high level, it breaks down like this:

-
    -
  • NFTs are basically digital containers which can hold IP but which liberated it to be owned and traded so creators have a world of new ways to produce, distribute, remix and monetize content.
  • -
-
    -
  • DAOs are basically like shared bank accounts for communities which are entirely digital so it’s really easy for communities to act almost like official co-ops or companies and build sustainable models for themselves. They can issue fungible tokens which are basically membership cards with a lot more potential superpowers to drive more engagement.
  • -
-
    -
  • Open (“decentralized”) Finance is a whole toolkit which allows creators, communities, NFTs, DAOs, fungible tokens and all the other pieces of the digital economy to plug into each other in ways that no one has ever done before, allowing entirely new ways of earning income for creators or benefitting from the upside of membership for community members.
  • -
-

Let’s look a little deeper into each of these pieces and why they’re so powerful to help creators.

-

 

-

NFTs: Tools for Creators

-

NFTs are understandably confusing for many people, so I’ll break it down in plain English.

-

The most important concept in NFTs is that, after decades of infinitely sharing creative output on the Internet, we finally have digital scarcity. That means that we can finally prove that a particular file or piece of content or piece of data is uniquely owned by a single person.

-
> Aside: Bitcoin to NFTs

-

All digital tokens, including NFTs, are based on the same principle as Bitcoin because it uses the same type of technology — “blockchain.” What the creator of Bitcoin figured out is that, if we create a globally shared ledger that records the owner of every single bitcoin in the world, we can always know exactly how many Bitcoin there are in the world and make sure no one is spending them twice.

-

If you ever hosted a website on Geocities back in the day and watched it get lost forever because their platform shut down, you understand the value of protecting your important assets from deletion.  What Bitcoin figured out is that you can essentially share the hosting of this ledger among thousands of people around the world so, unlike Geocities, it can never get deleted just because one of them got shut down.

-

So, fundamentally, an NFT is just like a Bitcoin — it’s a unique piece of data that everyone in the world agrees is owned by, say, Joe Smith because thousands of people are running the NEAR network together and agree on it. What’s different is that NFTs are much more advanced than Bitcoins.

-

A bitcoin is really pretty boring — I can show you that I own one, I can send it to my friend to pay for something and I can do a few more simple operations with it. An NFT, because it’s built on a much more advanced network, is basically an empty container that can hold any type of data AND you can program it to do anything just like software.

-

Why NFTs are so powerful

-

Here’s why that’s so useful for artists, using a simple example. Let’s say an artist has created a piece of digital artwork.  In today’s world, those rights are usually stored in the server of some record label somewhere and backed up by a paper signature on some lawyer’s document or, if the creator is independent, it’s at least protected by copyright law so the artist just owns it. Every time the artist allows someone to use it (officially), they or their manager have to explicitly allow it to happen with some sort of signature, which really slows things down and limits how it can be used.

-

If the artist assigns the IP rights to an NFT, that NFT becomes like a bearer-bond because whoever holds it can now use the legal right. In the simplest case, that person can display it on their digital wall just like a piece of art in the real world and they can know that it’s truly *theirs* to display. But, unlike a painting in the real world which can be bought or sold in a smoke-filled room somewhere and the artist never knows, NFTs are digital objects that can be programmed to do anything and you can always know where they are.

-

In the physical world, the artist makes revenue from selling an original edition and maybe the rights to produce more. When these things are resold, the artist never knows about it and never earns any income from it.  Because NFTs are digital objects that live on the NEAR blockchain, every time they are bought and sold, the artist can be notified and paid a commission. Every time, in every location. Not just that, but the NFT can be programmed to permanently split that revenue however you want — maybe 10% goes to the artist, 5% to the agency which helped create it, 4% to the artist’s union and 1% to a charity they support. Maybe 5% gets split among everyone who previously owned this NFT so they are incentivized to help it retain value. Anything is possible.

-

That’s not even the best part.

-

Because NFTs can send cash back to the artist automatically when they’re traded, they can be traded anywhere. Before today, digital items were stuck in centralized marketplaces because that was the only way that companies could pull revenue from their resales.  For example, digital skins which are created and traded in the Fortnite ecosystem need to be purchased on Fortnite’s proprietary platform so they can get their cut.  But now that the NFT itself will always send the money back home, it can be traded anywhere and the artist or original IP holder will always get paid.

-

Let me ask you — back when you were a kid and traded collectibles, did you do so on some official company marketplace or unofficially among your friends? Exactly. Now, everyone from artists to big IP-holding companies are incentivized to set their NFTs free so people can trade them anywhere in the world.  Suddenly, everyone’s interests are aligned to set the art free! This will result in orders of magnitude more transactions. More trading.

-

Because NFTs are infinitely programmable, we don’t even know yet all the cool ways they can be used.  It’s possible to use NFTs as membership cards which give people access to special events. The artwork becomes more than just a thing to display or a cash flow, they become a special designation of status that the artist or anyone else can use to give special privileges to the holder of. What else might be possible?

-

DAOs and FTs: Tools for Communities

-

A “DAO” is a decentralized autonomous organization–– which uses an admittedly clunky acronym to represent a formalized community that can self-govern and take on some aspects of a company.

-

Everyone who uses the blockchain gets a NEAR account.  It’s sort of like a Facebook or Google or bank account except that, just like NFTs, it’s permanent because it lives on NEAR’s “forever network” and it’s not associated with any particular company.  It’s 100% yours and you can call it whatever you want – for example by naming it after your Twitter or Insta handle (I see you `machoman99`).  This account can store your tokens, your NFTs or pretty much anything else you do on the platform.

-

A DAO is basically just a more advanced account which can be shared between a group of people.  In this way, it’s similar to a bank account but it doesn’t actually need a bank.

-

Why DAOs are so powerful

-

DAOs are useful because they can do anything an individual user can but they can also represent all of the users who are their members. In the simplest example, you can store a bunch of tokens in a DAO and the group of users in the community can vote to send them to different places.  Let’s use the example of a fanclub DAO we’ll call `dj_blokk_fanclub`, where fans of that artist pool funds to buy VIP tickets for a show and raffle them off. Because the community exists on a permanent platform like NEAR, it isn’t lost if Facebook or Snap suddenly become less popular.

-

This example is simple but bear with me. Just like NFTs, DAOs are a basic tool that quickly gets extremely powerful.

-

For example, a community can issue a token (it’s called a “Fungible Token” aka “FT”) and use that token to determine what kind of privileges their members get.  For example, let’s say our DAO issues 10,000 `$BLOKK` tokens to split among the fanclub’s early members and then automatically creates another 10,000 each year that can be distributed to new members, really helpful members who help the group govern itself, or people who refer new members.  And let’s say members need to hold 10 `$BLOKK` tokens to join the VIP Discord server.  This incentivizes community members to be extra engaged and helpful.

-

Or maybe the community’s DAO issues the same 10,000 `$BLOKK` tokens but gives 1,000 to the actual DJ Blokk in appreciation and DJ Blokk gives special VIP show access to anyone who holds more than 100 `$BLOKK` tokens.  This is important because now the creator and the community are beginning to directly align themselves.  And the token suddenly has value as well.

-

Finally, it gets magical when we combine the DAO with NFTs. Let’s say DJ Blokk is putting together a new single and wants to fund it from within the community.  The artist can sell `$BLOKK` tokens and, in exchange, issue an NFT that sends some of its royalty stream back to the community’s DAO.

-

Suddenly, you’ve unlocked:

-
    -
  1. A way for communities to be platform independent and distribute funds
  2. -
  3. A crowdfunding mechanism for artists
  4. -
  5. A way for community members to be financially aligned with making the artists they support successful, creating extremely high engagement and virality.
  6. -
-

As with NFTs, we still don’t know all the ways you can use DAOs to support creators and communities but just these few are enough to break existing industry models.

-

Decentralized Finance: Making it Sustainable

-

Creators usually only think about payments when they’re broken.  “Can people in [insert country] buy my merch? Great.”  As a quick review, we’ve already introduced some new NEAR-powerd financial tools —

-
    -
  1. NFTs can be programmed to send royalties anywhere when they are traded
  2. -
  3. DAOs give communities the ability to send payments and issue tokens without a traditional bank account
  4. -
-

As before, let’s explore what’s possible by building up from the simple stuff.

-

For starters, our creator’s NFTs or our community’s `$BLOKK` token need to be bought and sold somehow.  Consumers need to easily click an Instagram link to purchase the initial NFT, buy it on a marketplace somewhere or get their hands on `$BLOKK` tokens so they can get in the VIP club. This is all straightforward stuff that can be done with familiar credit card processing on NEAR.

-

Things get more interesting when you consider what people might do when they are holding their new NFT or `$BLOKK` token in their accounts.  Before today, if I bought a collectible online or received it for attending a concert, it would just sit in my account on that one single platform or scattered across multiple independent platforms which don’t communicate with each other.

-

Today, getting those collectibles is just the beginning.  For example, a community of fans may decide to set up a DAO for themselves which purchases very rare NFTs. These NFTs can then be used as collateral in automated lending platforms to borrow more money to participate in future sales that might only be open to the holders of those NFTs.  The community DAO could even issue their own tokens so small pieces of the portfolio can be easily traded and people around the world can participate. All of this is part of a stable, global financial system which has previously only been accessible to the wealthier countries.

-

Essentially, assets that were created in the digital world have access to the entire suite of sophisticated financial tools that historically were only available to wealthy investors.  Because of this, there are markets around the world for each of these tokens and NFTs which makes them much more liquid and thus more desirable to hold.  It’s hard to sell a Picasso, but much easier to sell tiny portions of NFTs from the DAO above.

-

More simply, holders of these collectibles can buy, sell, trade or combine them with others to access real world benefits, play in digital games, or otherwise engage more deeply with their creators.

-

If you’re lost in the financial language, the key takeaway is this — NFTs issued by artists typically benefit most when they are frequently traded and the new decentralized financial toolkit makes this extremely easy compared to the way it works in the traditional world.

-

But, as with NFTs and DAOs, we still haven’t even figured out all the ways this technology can be used.  Luckily, it’s easier to remix these tools than it ever has been. A developer in a single weekend can now build sophisticated financial products that securely handle these assets and their cash flows, which normally would take a team of developers with millions of dollars in venture capital months to put together. This means that the speed of innovation is finally moving at the pace of creativity so artists can get directly involved in the creation, building, remixing and experimentation of new tools that produce new art, engage fans and generate novel revenue streams.

-

Tying it all Together

-

Where are we now and where is the ball going?

-

While blockchains have been around since Bitcoin arrived in 2008 and many of the core ideas — NFTs, DAOs, Fungible Tokens and Defi — have been in experimentation on Ethereum since 2016, NEAR’s launch late last year was the first time a platform came to life which could make these tools accessible to everyday creators, communities and fans.

-

A lot of the financial tooling of Defi was built and tested on Ethereum, particularly during mid-2020, but remains prohibitively expensive and complicated for most people to use.

-

NFTs had a moment in late 2020 and early 2021 when a bunch of artists started making eye-popping sales and big companies started playing with gamification but these experiences were incomplete because they either couldn’t be accessed by everyday people due to cost and and usability concerns or they were part of wholly owned “walled gardens” which leave the assets isolated.

-

DAOs are just starting to pick up momentum because, until now, there hasn’t been a way to make them useful to consumers due to cost and usability concerns. Now that this final piece has been solved on NEAR, DAOs will finally be able to serve communities as they were meant to.

-

So, the tech has finally arrived to use these tools but we’re still in the explore-and-mix phase. It’s like the first time DJ Kool Herc kept that break beat going between two records — we just had the major “aha!” moment and now it’s up to the creators and communities of the world to take these tools and get this party started.

-

…and, if you’re ready to do so, reach out!

-

For creators or IP holders with massive fanbases, reach out to bd@near.org to see how this can be transformed into an engaging, repeated revenue stream. For community leaders interested in upleveling their community engagement and sustainability, reach out to community@near.org. Finally, if you’re a developer who wants to hack on this stuff, check out https://docs.near.org/ and the free 5-day bootcamp at https://learnnear.club/certified-near-developer-application/.

-

The post How blockchain will save the Creator Economy appeared first on NEAR Protocol.

-]]>
- - - -
- - NFT Marketplace for Hip Hop Heads Launches on NEAR - /blog/nft-marketplace-for-hip-hop-heads-launches-on-near/ - - - Sat, 19 Jun 2021 16:49:04 +0000 - - /?p=11957 - - Hey NEAR and Hip Hop Heads! Get ready for our first consumer-facing NFT pop-up shop! This project sprang from the …

-

The post NFT Marketplace for Hip Hop Heads Launches on NEAR appeared first on NEAR Protocol.

-]]>
- Hey NEAR and Hip Hop Heads! -

Get ready for our first consumer-facing NFT pop-up shop! This project sprang from the mind of Ed Young, one of the co-founders of the bible of hip-hop: The Source Magazine. He had this crazy idea, our team thought it was rad, and so we built it with him. What did we build? An epic collection of hip hop icons that you can own: Hip Hop Heads.

-

The Hip Hop Heads First Edition NFT Collection is a tribute to the history and culture of hip hop, 47 years after its inception in the Bronx, New York City. The collection features 103 animated portraits of famous figures from Hip Hop created by André LeRoy Davis for “The Last Word” feature of The Source over the last few decades.

-

The marketplace auction is officially live! Check out the entire collection at nft.hiphop. Every day from now, Juneteenth, until July 25, one new edition of each Hip-Hop Head will be added to the auction. Each Hip-Hop Head will start with a reserve price and the current bid is bonded with the item until it is outbid or the auction closes. If a bid is returned, fans can immediately use the returned credits to bid again.

-

Here’s the best part: cash rules everything around me. Fans can purchase these NFTs with a credit card. The marketplace offers an easier way to buy NFTs than ever before: no complicated onboarding, no passing through an exchange, just a simple, familiar purchasing experience made possible on NEAR. Check out the auction flow in the graphic below. And at the end of the auction on day 37, each winning buyer’s NFTs will display right in their NEAR wallet. Boom. It’s radical.

-

-

Another cool part: NFT royalties on NEAR are written right into the NFT code, which means that any secondary sales will automatically distribute royalties back to the creators, even if the NFT moves into different marketplaces. This is uniquely possible on NEAR thanks to the protocol’s contract-level NFT standard. On-chain, programmable royalties at the smart contract level put creative and financial power back in the hands of artists, and when you buy a NEAR NFT, you can be certain that the creators you love will continue to benefit from their work. A percentage of the royalties from the Hip Hop Heads NFT auctions and secondary sales will be gifted in perpetuity to the artists depicted or to their estates by Ed Young and André LeRoy Davis.

-

-

I’m so pumped to announce this launch. This carries a lot of personal weight for me. I remember the very first time I listened to “Enter the Wu-Tang (36 Chambers).” Hip hop never let me go after that. It’s funny in some ways; imagine an angsty, small-town white kid, chasing his older brother and his surfer punk friends to the beach and singing every word to “C.R.E.A.M.” But in other ways, this was destined to happen because of the work of Ed Young at The Source. Hip hop has been a force pushing culture for almost 50 years, and now it is bridging into what’s been a somewhat fringe technology for the last five. This remix of crypto and hip hop is the first of what I’m sure will be many: a brand-new blend of culture and technology is now becoming possible.

-

We built this for people – fans – who know the feeling. Hip hop is so much more than music, and if you want to truly own a piece of its history, you should get on this! Try it out, start bidding, and let us know what you think. You only have 36 chambers…I mean days.

-

Bid on your favorite Hip Hop Head at NFT.hiphop!

-

The post NFT Marketplace for Hip Hop Heads Launches on NEAR appeared first on NEAR Protocol.

-]]>
- - - -
- - Toward a Better Planet:Green NFTs - /blog/toward-a-better-planet-green-nfts/ - - - Tue, 08 Jun 2021 19:18:35 +0000 - - /?p=11340 - - After the boom of decentralized finance in 2020, the blockchain industry has turned its attention to NFTs. Artists, celebrities, and …

-

The post Toward a Better Planet:<br>Green NFTs appeared first on NEAR Protocol.

-]]>
- After the boom of decentralized finance in 2020, the blockchain industry has turned its attention to NFTs. Artists, celebrities, and blockchain enthusiasts alike are minting, buying, and selling NFTs. But NFTs aren’t without controversy. Many people are against them because:

-
    -
  • Minting an NFT costs so much gas it becomes unviable for smaller artists.
  • -
  • NFTs run on technology that has a large, negative impact on the environment.
  • -
-

These are concerns that can both be addressed. The NEAR Foundation is excited to announce Green NFTs, a project where several environmentally conscious artists create art that will be put up for sale in a South Pole store on Mintbase. Half of the proceeds from these artworks will go to the artist and the other half will go to a selection of certified climate action projects developed by South Pole, an award-winning project developer.

-

View the Green NFT Project on Mintbase

-

South Pole projects range from protecting a strategic wildlife corridor in Zimbabwe and empowering local communities to generating renewable energy and helping create the circular economy with efficient waste disposal. While cutting carbon is the science underpinning their projects, building a socially just world is at the heart of what they do.

-

“We need to think about our impact on nature and take decisions that offset our impact. There aren’t that many crypto-art initiatives that are ethical and green, but NEAR and Mintbase fit the bill.” – Barbara Tosti, artist

-

Collaborating For the Greater Good

-

Because Mintbase is built on NEAR, creating a store and minting NFTs is affordable, fast, and scalable. Anyone can mint NFTs and sell them for whatever price they want, even if that’s less than ten dollars. Previously, gas fees would have made that economically unviable, but NFTs shouldn’t be a rich people’s game.

-

That’s not all. Artist collaborations have become much easier, because Mintbase allows anyone to easily split both the revenue and royalties of a piece of art. All you need to do is define who gets what percentage. The smart contract will do the rest. Consider how this encourages novelists to write a book together, musicians to compose music together, and artists to work together with climate organizations for the greater good.

-

Built on Carbon-Neutral Technology

-

Green NFTs are only possible because the underlying infrastructure is carbon-neutral. The NEAR Foundation has been working together with South Pole to measure and offset its carbon footprint, and South Pole recently awarded the NEAR protocol its climate-neutral product label.

-

NEAR purchased carbon offsets from South Pole’s certified climate action projects to compensate for all direct and indirect emissions associated with the blockchain. Importantly, the NEAR protocol uses a proof-of-stake consensus mechanism instead of a proof-of-work consensus mechanism, which means that the NEAR protocol’s carbon emissions only amount to a fraction of any proof-of-work blockchain.

-

Measuring the carbon footprint of any blockchain is still a new field with many gray areas. Developments and changes to current methodologies can be expected as the field develops over time. But it’s important to start measuring today and iterate until we get it right instead of waiting for the perfect solution.

-

“The environment should be at the core of any technological product. I lost interest in crypto-art when I learned about its environmental impact, but NEAR is on the right path to dealing with this problem.” – Riccardo Torresi, artist

-

A Step in the Right Direction

-

NFTs needn’t be expensive to create and they needn’t be bad for the climate. Instead, when the infrastructure is clean and when the incentives are aligned properly, they can be a force for good. Linking NFT art and their proceeds to real projects with measurable climate benefits can nudge NFT creators and buyers toward valuable social and environmental causes.

-

The Green NFT project is one of the first examples of how this can be made possible. We believe it’s a step in the right direction, and hope to see many other projects contributing in similar ways for the greater good in the NEAR future. Keep your eyes out on our social media channels for an announcement on where you’ll be able to see and buy art from the Green NFT project.

-

“Nobody is without sin when it comes to their carbon footprint. But, while I don’t think anybody can be perfect, you can try to make better individual choices, particularly when the right solutions are already out there.” – Zeitwarp, artist

-

View the Green NFT Project on Mintbase

-

-

As well as storing carbon, forests provide innumerable benefits to humans and wildlife alike. This picture shows a sunset over the Kariba Forest Protection project.  | Credit: South Pole

-

The post Toward a Better Planet:<br>Green NFTs appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/category/case-studies/index.html b/public/blog/category/case-studies/index.html deleted file mode 100644 index 7881a900b..000000000 --- a/public/blog/category/case-studies/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Case Studies Archives – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/case-studies/page/2/index.html b/public/blog/category/case-studies/page/2/index.html deleted file mode 100644 index bc9d8d940..000000000 --- a/public/blog/category/case-studies/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Case Studies Archives – Page 2 of 3 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/case-studies/page/3/index.html b/public/blog/category/case-studies/page/3/index.html deleted file mode 100644 index a234fb444..000000000 --- a/public/blog/category/case-studies/page/3/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Case Studies Archives – Page 3 of 3 – NEAR Protocol \ No newline at end of file diff --git a/public/blog/category/community/feed/index.xml b/public/blog/category/community/feed/index.xml deleted file mode 100644 index a0157f0f1..000000000 --- a/public/blog/category/community/feed/index.xml +++ /dev/null @@ -1,969 +0,0 @@ - - - - Community Archives – NEAR Protocol - - /blog/category/community/ - - Thu, 07 Mar 2024 14:59:32 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - /wp-content/uploads/2020/09/cropped-favicon-32x32.png - Community Archives – NEAR Protocol - /blog/category/community/ - 32 - 32 - - - NEAR @ ETHDenver Breakdown: We Came, We Saw, We Abstracted! - /blog/near-ethdenver-round-up/ - - - Thu, 07 Mar 2024 14:59:31 +0000 - - /?p=21261 - - NEAR’s presence at ETHDenver was nothing short of a triumph, demonstrating that collaboration is the key to success in the …

-

The post NEAR @ ETHDenver Breakdown: We Came, We Saw, We Abstracted! appeared first on NEAR Protocol.

-]]>
- NEAR’s presence at ETHDenver was nothing short of a triumph, demonstrating that collaboration is the key to success in the ever-evolving world of cryptocurrency. Forget about going it alone – NEAR brought the entire ecosystem to the party, and the results were epic.

- - - -

Here’s A Taste Of The Near-Flavored Goodness That Went Down

- - - -
- - - -

The week kicked off with Altan Tutar’s insightful presentation, “The Future of DeFi: NEAR Protocol’s Role and Potential,” where he shared NEAR’s DeFi vision, addressing fragmentation and modularity. NEAR aims to become the single platform seamlessly connecting users to DeFi applications across different blockchains.

- - - -

Illia Polosukhin, NEAR’s co-founder and CEO, followed suit at the Decentralized AGI Summit. His panel, “The Evolution to AGI,” explored the development of sovereign digital AGI and its ethical implications. He emphasized the need to balance centralization and decentralization to foster community ownership and innovation. Keeping AI in check is crucial, after all.

- - - -

But that wasn’t his only appearance. Illia managed to be ubiquitous across ETHDenver, including an exciting main stage talk with Erik Voorhees on decentralizing AI. He also delivered a captivating presentation on Digital Self-Sovereignty in the Age of AI just before presidential candidate Robert F. Kennedy Jr. took the stage for ETHDenver’s closing session.

- - - -

The education continued with Kendall Cole from Proximity Labs, who provided insights into Threshold Signatures and how they unlock the magic of bridgeless cross-chain interoperability. By enabling “bridgeless” cross-chain applications, this technology empowers developers to create applications that seamlessly work across different blockchains, even those without smart contracts like Bitcoin or Dogecoin, using programmable multi-party computation (MPC). Users can interact with these applications effortlessly while security remains ensured through MPC signing nodes.

- - - -

Meanwhile, Bowen Wang from Pagoda dove into Stateless validation, addressing both scalability and decentralization. This approach tackles the ever-growing state size by allowing validators to operate without storing the entire history, significantly reducing storage pressure and potentially enabling more powerful hardware and lower costs, fostering a more decentralized network over time. Furthermore, stateless validation using zero-knowledge proofs holds promise for even greater scalability and affordability – more power to the validators!

- - - -

Finally, NEAR Foundation’s COO, Chris Donovan, championed chain abstraction as the key to breaking down the barriers currently fragmenting the Web3 future. The fragmented landscape of blockchains presents a hurdle to widespread adoption and collaboration within Web3. By simplifying the user experience and fostering collaboration across the industry, chain abstraction paves the way for a frictionless and prosperous Web3 future. Think of it as a universal translator for blockchains.

- - - -

Phew, That was a lot! But NEAR’s impact went far beyond informative talks. The NEAR booth was ground zero for epicness, attracting big names.

- - - -

The NEAR Experience: A Journey Down the Rabbit Hole

- - - -
- - - -

Forget the standard, white-walled conference booths – the NEAR experience was a sensory explosion. Transformed into an immersive Alice in Wonderland inspired world called “NEAR in ETHerland,” it captivated attendees with whimsical tea parties and interactive installations. Unlike the usual Web3 frustrations, NEAR offered attendees a playful sip of the future with their “NEAR Chain Abstraction Pill”, symbolizing a smooth, enjoyable blockchain experience.

- - - -

Stepping into the booth was like falling down the rabbit hole into a world of infinite possibilities. The playful atmosphere sparked curiosity, fostering engaging conversations and leaving attendees buzzing with excitement. The NEAR booth wasn’t just a booth; it was a conversation starter, a community builder, and an unforgettable experience that left everyone wanting more, solidifying NEAR’s place as a creative powerhouse. 

- - - -

Chain Abstraction Day: Unveiling the CAKE Framework

- - - -
- - - -

NEAR, in partnership with Frontier Research and Agoric, hosted Chain Abstraction Day, a massive event that attracted over 1,200 attendees. This gathering brought together the brightest minds in blockchain, including industry leaders like Sreeram Kannan from EigenLayer and Adrian Brink from Anoma. The day was filled with insightful discussions and collaboration, fostering a shared vision for the future of Web3. We even got to see a live demo showcasing the ability to pay for a transaction on the BNB chain using $SWEAT, completely abstracted from the user, providing a glimpse into the future of chain abstraction.

- - - -

A cornerstone of the event was unveiling the CAKE framework (Chain Abstraction Key Elements). This framework provides a foundational understanding of chain abstraction and paves the way for further exploration. Discussions dived into cutting-edge topics like threshold signatures, multi-chain settlements, and abstracted security. The day culminated in the forming of the CAKE working group, a dedicated team committed to pushing the boundaries of chain abstraction.

- - - -

AI x Web3 Hackathon

- - - -

NEAR actively participated in and supported the AI x Web3 hackathon organized by Edge. This participation reflects the growing momentum and enthusiasm surrounding the convergence of artificial intelligence and Web3 technologies, even though the specific applications and direction of this space are still evolving.

- - - -

Looking Ahead: Launch and Beyond

- - - -

ETHDenver was just the beginning for NEAR’s Chain Abstraction vision. The momentum continues at BUIDL Asia 2024, where NEAR promises to unveil even more groundbreaking developments with the launch of Chain Signatures, Relayers, and Web Engine scheduled for the end of March. This marks a significant milestone in NEAR’s journey towards establishing itself as a leader in chain abstraction.

- - - -

Till’ next time Abstractooors!

-

The post NEAR @ ETHDenver Breakdown: We Came, We Saw, We Abstracted! appeared first on NEAR Protocol.

-]]>
- - - -
- - ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  - /blog/icymi-scootering-through-web3-at-near-apacs-vietnam-showcase/ - - - Mon, 18 Sep 2023 16:32:42 +0000 - - - - - - /?p=20862 - - It was an incredible first-ever NEAR APAC, with the NEAR ecosystem scootering through Saigon over the last two days. Vietnam …

-

The post ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  appeared first on NEAR Protocol.

-]]>
- It was an incredible first-ever NEAR APAC, with the NEAR ecosystem scootering through Saigon over the last two days. Vietnam served as the perfect backdrop for NEAR’s inaugural showcase in Asia-Pacific, with community members, B.O.S. builders, and general Web3 enthusiasts coming together in one of the region’s most dynamic countries.

- - - -

The event was spearheaded by the NEAR Vietnam Hub with support from the NEAR Foundation, exemplifying strong commitment and collaboration between local and global ecosystem stakeholders.  ICYMI, here are some of the biggest sessions, announcements, and events from NEAR APAC 2023.

- - - -

ICYMI, here are some of the biggest sessions, announcements, and events from NEAR APAC 2023.

- - - -

Web3’s bright investment outlook in Asia-Pacific

- - - -
- - - -

One of the most encouraging and optimistic sessions was moderated by NEAR’s Head of Finance, David Norris, focusing on the current and future outlook of blockchain investment and development in the region. David was joined by Web3 venture veterans Riccardo Pagano from Outlier Ventures and Whiplus Wang of IVC crypto.

- - - -

The trio dove into the current state of blockchain investment in APAC, and how Web3 might just ascend to becoming one of the most invested sectors in the region from a venture and infrastructure perspective. Ricardo in particular emphasized that he’s seeing a shift in perception from investors, with Web3 going from a niche technology to its own broad-based sector.

- - - -

“Even though we’re technically in a bear market, investment in Web3 sub-sectors like gaming is still strong,” added Whiplus. “Games like Angry Birds and Fruit Ninja were instrumental in onboarding Web2 users onto the smartphone, for example. That’s why investment into blockchain game publishers is increasing — to find that killer game that onboards billions.”

- - - -
- - - -

Whiplus also likened successful blockchain startups to a bowl of Pho, with a blend of technical and business elements being integral to a delicious final dish. The panel also touched on technical nuances like ZK rollups and modular blockchains, emphasizing the need to invest in talent and innovation through initiatives like hackathons.

- - - -

The session encapsulated a forward-looking perspective on Web3’s trajectory. With the bar for founder participation evidently rising, the panel stressed the importance of education in the space. There was unanimous optimism about Southeast Asia’s digital future as potentially outpacing even established tech hubs like Korea and Japan.

- - - -

NEAR supports B.O.S. and blockchain builders in APAC

- - - -
- - - -

Tons of activity also took place in and around the Builder Stage, with the NEAR Foundation and local blockchain organizations teaming up to educate and assist developers, builders, and job seekers in advancing themselves into Web3. Cameron Dennis, CEO of Banyan, led a panel on the stage informing developers on how to upskill from Web2 to Web3.

- - - -

Local developer advocates from notable projects like the Graph and Khyber network also participated in sessions, workshops, and panels on the Builder Stage designed to upskill local blockchain professionals. There was something for everyone, from a job fair for Web3 newbies to a Greenhouse area connecting founders and projects to VCs for funding.

- - - -

Exploring everything from dApp architecture to tokenomics, the Builder Stage action was highlighted by an incredible Hackathon, with participants receiving guidance from experts like Oleg Fomenko, founder of SWEAT. On the final night of the festivities, NEAR co-founder Illia Polosukhin presented awards to the winners on stage in front of a packed main hall.

- - - -

Pagoda takes the main stage to talk user adoption and FastAuth

- - - -
- - - -

Alex Chiocchi, the CPO of Pagoda, showcased FastAuth during his session titled “Unlocking the Power of B.O.S: Product Update for Founders & Developers.” FastAuth aims to redefine the user experience for developers and founders, addressing the longstanding challenges of both onboarding and retaining new Web3 users.

- - - -

A primary takeaway was how FastAuth’s next release will minimize gas fees when onboarding, thus removing barriers for end-users. The introduction of multiparty compute (MPC) allows proofs from various organizations to be combined, simplifying processes like email recovery. Chiocchi emphasized the potential for users to migrate effortlessly from Web2 logins, hinting at a seamless integration between the two web generations.

- - - -

Discussing the nuances of retaining users in Web3, Chiocchi stressed that coin incentives alone aren’t sufficient. The “toothbrush test” was highlighted, illustrating that many apps don’t become daily necessities for users. Trust plays a pivotal role, especially with the rise of scams in the decentralized space. 

- - - -

Side events and after-parties storm the streets of Saigon

- - - -
- - - -

NEAR APAC fully embraced the “work hard, play hard” ethos of Vietnam and Asia-Pacific. Even during the event, there were LED dancers, Manga Cosplay, and several massive DJs and party breaks. Not to mention the NEAR APAC Opening Night party at the Intercontinental Hotel, where Illia officially welcomed attendees and kicked things off in an intimate setting.

- - - -

And in one of the coolest side events in recent NEAR memory, Dap Dap showcased its platform to B.O.S. enthusiasts at the My House meeting venue nestled in one of Saigon’s many cozily-lit alleyways. Dap Dap is the first commercial B.O.S. product and will act as a gateway to hundreds of chains and protocols for users from a single, user-friendly interface.

- - - -
- - - -

B.O.S Beats by DAO Records was the grand finale of NEAR APAC, offering a vibrant blend of hip-hop beats from prominent DJs on the decentralized record label. Held at Indika Saigon — and with pizza supplied by Pizza DAO — attendees enjoyed live performances, refreshments, and networking opportunities with the global and APAC NEAR communities. 

- - - -

NEAR APAC was an incredible Web3 Bánh Mì, layering an eclectic mix of speakers, insights, and events to create something completely unique. The NEAR Foundation would like to thank every cook in the kitchen, especially local partners like the NEAR Vietnam Hub who made sure that the first ever NEAR APAC had the perfect mix of sweet, sour, and spicy.

-

The post ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  appeared first on NEAR Protocol.

-]]>
- - - -
- - Open Call for Feedback on NEAR Protocol Validator Delegation Proposals - /blog/open-call-for-feedback-on-near-protocol-validator-delegation-proposals/ - - - Thu, 14 Sep 2023 17:29:04 +0000 - - - - /?p=20890 - - Validators are the backbone of the NEAR Protocol, playing an integral role in upholding the network’s core values now and …

-

The post Open Call for Feedback on NEAR Protocol Validator Delegation Proposals appeared first on NEAR Protocol.

-]]>
- Validators are the backbone of the NEAR Protocol, playing an integral role in upholding the network’s core values now and into the future. Validators ensure that NEAR Protocol remains scalable, user-friendly, secure, trustworthy, and most importantly, decentralized. 

- - - -

NEAR validators provided community feedback on how to improve the validator experience, and we collectively listened. Responses suggested that routes to secure funding were unclear, and that existing delegations from the NEAR Foundation lacked transparency.
The result of the community feedback process is a new NEAR Protocol Validator Delegation Proposal and an open call RFP to coordinate the NEAR Protocol Institutional Validator Programme. The RFP will be open until Monday September 24th, 2023.

- - - -

Drafted in collaboration with a number of ecosystem participants — Meta Pool, Banyan Collective, DevHub, Pagoda, Proximity, Validator Community, and NEAR Foundation — this proposal creates a framework for a refreshed validator delegation structure. It clearly defines a number of expectations for validators, aims to align incentives, assigns ownership, and enhances transparency around securing funding support.

- - - -

The proposal’s framework addresses three delegation trackscommunity validators, institutional validators, and 100% fee project validators — with the goals of improving transparency, strengthening the Nakamoto coefficient of the NEAR Protocol, and increasing validator selection at custody providers: 

- - - -
    -
  • Community Validators — Individual participants or smaller entities within the NEAR Protocol ecosystem who choose to operate validator nodes. They are strong advocates of NEAR Protocol’s principles and values, and actively contribute to the decentralization and security of the blockchain. The proposal addresses issues that Community Validators face, including resource constraints, rewards, vulnerability to attacks, and limited influence, building on new proposals for Community validators put forward in June.
  • - - - -
  • Institutional Validators — Typically large entities, such as companies, financial institutions, or well-established organizations. They often have significant resources and stake in the NEAR Protocol, which allows them to operate powerful and reliable infrastructure to maintain the blockchain. This proposal addresses concerns around institutional validators such as network centralization, lack of community inclusivity, and inequality in influence.
  • - - - -
  • 100% Fee Project Validators  — A track to support growth activities resulting in onboarding of users to the NEAR Protocol, and continued engagement through retention programmes. 
  • -
- - - -

Firstly, check out the full NEAR Protocol Validator Delegation Proposal and provide any feedback publicly here. Your feedback is greatly appreciated to improve the proposal.

- - - -

Secondly, since this is an open call RFP to run the NEAR Protocol Institutional Validator programme, please return any applications to finance@near.foundation.

- - - -

Additionally, Restaking is coming to NEAR courtesy of Octopus Network. Under Octopus 2.0, $NEAR stakers will have the ability to secure appchains with their staked $NEAR. Find out more here

- - - -

Many thanks for your continued support to improve the validator experience and help secure the NEAR Protocol.  

-

The post Open Call for Feedback on NEAR Protocol Validator Delegation Proposals appeared first on NEAR Protocol.

-]]>
- - - -
- - Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  - /blog/cosmose-ai-harnesses-the-open-web-and-near-with-kaikainow/ - - - Thu, 14 Sep 2023 00:00:00 +0000 - - - - - - /?p=20877 - - Cosmose AI, the global platform that uses AI to predict and influence how people shop offline is launching a new …

-

The post Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  appeared first on NEAR Protocol.

-]]>
- Cosmose AI, the global platform that uses AI to predict and influence how people shop offline is launching a new piece of technology designed to disrupt the smartphone lock screen experience. 

- - - -

Called KAIKAINOW, it brings together artificial intelligence and blockchain to help users stay informed and engaged with the world around them without the hassle of unlocking their phones. 

- - - -

KAIKAINOW, an opt-in technology, sits on a user’s home screen. It offers a variety of curated content, including news, language learning, games, and trending stories which would be interspersed between users’ very own personal wallpaper pictures.

- - - -

“We check our smartphone lock screens on average 80 times a day, always seeing the same  wallpaper backdrop. Imagine, instead of seeing the same image over and over again you see it every other time, while enjoying personalized content during remaining interactions,” says Miron Mironiuk, Founder and CEO of Cosmose AI. 

- - - -

KAIKAINOW changes that by harnessing cutting edge AI technology, and pairing it with open web tools found on the NEAR blockchain to ensure the experience is tailored to the user while always adhering to the highest privacy standards.

- - - -

“The launch of KAIKAINOW by COSMOSE AI shows how far we’ve come in respects to transforming Web3 from an innovative idea to a something that can deliver real world benefits to consumers, while also helping foster brand loyalty and business growth in the retail space,” says Marieke Flament, CEO of the NEAR Foundation. 

- - - -

“We are thrilled to align ourselves with such a fantastic, rapidly growing tech firm such as Cosmose AI and look forward to seeing how it will truly transform the world of retail and get the world closer to Web3 mass adoption.”

- - - -

 

- - - -

Blockchain meets AI 

- - - -

Publishers and brands provide the content and KAIKAINOW enhances the experience by allowing users to unlock rewards via KAI-CHING, a native token pegged to the US Dollar built on the NEAR Protocol. These tokens can then be used to access exclusive offers only available to KAIKAINOW users. 

- - - -

Thanks to KAI-CHING, shoppers and retailers benefit from shorter payment processing time and significantly lower fees.

- - - -

By building both consumer products and its token on NEAR protocol, Cosmose AI is accelerating its Web3 offerings with one of the world’s leading, open source blockchain platforms and further advancing the AI-driven retail ecosystem.

- - - -

To date, Cosmose AI has served over 20 million stores and reached one billion phones globally. The integration of NEAR technologies means that Cosmose can ensure that users maintain complete control over their data and benefit from the ecosystem they help create. This approach ensures the highest level of privacy for users and aligns with the Company’s commitment to user safety.

- - - -

Blockchain’s digital record, paired with NEAR’s open web tooling, means AI services can help improve trust in data integrity and, by extension, in the recommendations that AI provides. Using blockchain to store and distribute AI models provides an audit trail, and pairing blockchain and AI can enhance data security. 

- - - -

NEAR is helping partners like Cosmose AI harness these tools to create better products that serve customers and partners equally. 

-

The post Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands - /blog/near-apac-day-2-recap-asia-gaming-trends-interoperability-and-web3-for-brands/ - - - Sun, 10 Sep 2023 14:28:46 +0000 - - - - - - - /?p=20841 - - It would’ve been hard to imagine topping a jam-packed Day 1 of NEAR APAC, but Day 2 managed to do …

-

The post NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands appeared first on NEAR Protocol.

-]]>
- It would’ve been hard to imagine topping a jam-packed Day 1 of NEAR APAC, but Day 2 managed to do just that. The gorgeous Sunday in Saigon covered a wide range of topics, including significant discussions on the future trends in Web3 such as how brands can hop on board the Web3 bandwagon and a creative proposal to unite all Layer 1’s for mass adoption.

- - - -

With each session, industry leaders shed light on challenges and the future trajectory of the fast-paced Web3 ecosystem in APAC. From the unique positioning of Web3 gaming in Asia to the potential rise of the next Web3 cycle, the discussions were varied and far-reaching. Let’s dive on into all the Day 2 happenings at NEAR APAC in Vietnam!

- - - - - - - -

Let’s begin the Day Two recap with a standout panel diving into the next big Web3 trends. Experts agreed that it won’t just be about technological progress, but also the transformative ways that blockchain will weave into daily life. Asset tokenization, generative AI integration, and the proliferation of decentralized creator economies were some top trends on the table.

- - - -
- - - -

“Generative AI and asset tokenization are revolutionizing Web3 ecosystems, especially in growing economies like India,” said Sudeep Choudhari, head of blockchain at the India National Payments Corporation. “As integration across borders accelerates, we’ll also challenge traditional FX rates, anticipating a future with minimal cross-border payment costs.”

- - - -

Hanna Tantoco, APAC Marketing Director at Blockdaemon, piggybacked on the transformative role of generative AI in enhancing blockchain user experiences. She also pointed out the rising prominence of gaming in Asia, particularly on NEAR. Additionally, she highlighted Singapore’s burgeoning creator economy, powered largely by NFTs, as another future trend.

- - - -

How brands can futureproof themselves with blockchain

- - - -

Another morning highlight was a panel discussion about how brands and enterprises can harness the potential of Web3 to adapt and thrive. Key points revolved around democratizing user data control, countering data monopolization by tech giants, tokenizing assets, and challenges in linking the physical and digital worlds.

- - - -

“Enterprises often face challenges with hiring experts who may quickly move on to other projects,” observed Oleg Fomenko, founder of SWEAT. “While consultancies can provide insights, the real breakthrough comes when you start building and experimenting with MVPs. Though initial attempts might fall short, perseverance can yield surprising results.”

- - - -
- - - -

Alex Chiocchi, CPO of Pagoda, added that Web3 streamlines verification, challenging traditional ad networks. By using an open blockchain system, excessive fees are prevented, promoting shared value with users. This shift allows benefits like self-custody and reputation while redistributing margins back to the people.

- - - -

Among the key takeaways from the session was that businesses harnessing blockchain’s capabilities can anticipate a transformative impact on the global economy, especially with asset tokenization’s projected growth through 2030. As brands navigate challenges like ensuring digital authenticity and early adoption, having a targeted strategy is crucial.

- - - -

Web3 gaming: Asia’s landscape and blockchain utilization

- - - -

The Asian gaming landscape is buzzing with the rise of Web3 development, promising an unprecedented era of innovation and user empowerment. Central to discussions at the “Web3 Gaming: Asia Landscape” session was the gaming community’s appetite for asset and data ownership, often prioritizing this over the complexities of Web3 itself.

- - - -

After attending Korea Blockchain Week, it’s evident that Japan and Korea’s mobile giants are pioneering in Web3 gaming,” said Luke Xie, founder of gaming VC fund Press Start Capital. “As opposed to Web3 games like Axie, creating AAA games takes much longer. Given the rapid pace of crypto, former mobile developers align better with this fast-paced dynamic.”

- - - -

Ishank Gupta, co-founder of Kratos Studios in India, emphasized that gamers prioritize asset and data ownership over backend Web3 tech. He predicted that blockchain games should bring benefits that gamers care about with a focus on ease of usability. For instance, leading studios in India are integrating well-known IP into Web3 games while ensuring they remain engaging.

- - - -

“We’re witnessing a new golden age of gaming driven by indie studios,” added Xie. “Small teams, empowered by AI, are crafting games that punch above their weight. We believe that on-chain gaming, while difficult to execute at present, is the future. It’s all about selecting the right chain based on tech, community, and support. NEAR excels at all of the above.”

- - - -

The panel agreed that the Web3 gaming industry in APAC and beyond is undergoing a transformative phase, with blockchain offering gamers more control over assets and data. As developers continue to build, the focus will be on seamless onboarding, speed, and user-centric experiences. Blockchains should be subtly integrated without disrupting the gaming experience.

- - - -

Bringing Web3 together with Multichain: a call for collaboration 

- - - -

Today’s blockchain landscape consists of independent Layer 1’s vying for supremacy, bringing up the core question of interoperability. With users often navigating several ecosystems, creating cross-chain experiences becomes paramount. This star-studded panel explored new frameworks to address hurdles and challenges in the current siloed multi-chain user experience.

- - - -
- - - -

“Web3’s ethos is modularity, similar to Lego blocks,” explained NEAR CEO Marike Flament. “While we prioritize access and user growth, interoperability challenges persist. But trust and unified solutions drive adoption, not a fractured approach. It’s essential that technology seamlessly serves the end user.”

- - - -

Cameron Dennis, CEO of Banyan, added that key management is a critical issue. He pointed out ways to simplify these processes with tools like FastAuth. Dennis added that addressing the noticeable gap in cross-chain liquidity should be a focus. He believes that a true multichain future that drives adoption will solve key and wallet management for a better UX.

- - - -

“Reflecting on a decade in this space, the competitive landscape has shifted,” mused Mary Beth Buchanan from the Cardano Foundation who is also an advisor to NEAR, “Earlier, exchanges hesitated to collaborate, fearing a loss of advantage. Today, there’s a collective push to learn from one another, ensuring technology works seamlessly for the end user.”

- - - -

Cameron believes that reinforcing the current ecosystem is paramount before extending cross-chain efforts, even though creating a decentralized internet remains a resource-intensive endeavor.

- - - -

Marieke stressed the importance of open-source technology in attracting top talent. Drawing inspiration from Web2’s approach to 5G standardization, she suggested that Layer 1 leaders could unite in an ‘L20’ alliance to champion unified standards, fostering a unified vision for the industry’s future.

- - - -

And that’s a wrap for the official Day 2 sessions at NEAR APAC. From gaming and brand adoption to multi-chain standards and collaboration, it was clear that this first-of-its-kind regional event was a rousing success for developers and the NEAR community alike. Sunday in Saigon rolls on with more side events and after-parties, so stay tuned for the full ICYMI tomorrow.

-

The post NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 - /blog/near-apac-day-one-scaling-local-adoption-regional-regulation-and-ai-in-focus/ - - - Sat, 09 Sep 2023 12:14:36 +0000 - - - - - - - - - /?p=20835 - - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. …

-

The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

-]]>
- After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. Held in conjunction with the NEAR Vietnam community and NEAR Foundation, NEAR APAC is showcasing the vibrant crypto and Web3 community across the region as well as the potential of the B.O.S. and Open Web both locally and globally.

- - - -

The day was charged with excitement, drawing over 8,000 attendees from various corners of the APAC region and beyond. With Web3 thought leaders, innovators, and enthusiasts converging in Vietnam, Day One of NEAR APAC kicked off with a slew of riveting discussions, industry insights, and speculations on the future of the Open Web with a focus on APAC.

- - - -

From discussions around regional growth and investment potential to how AI and blockchain will transform the future of work, here’s everything that went down at an incredible start to NEAR APAC.

- - - -

Setting the stage for NEAR APAC with Vietnam in focus

- - - -

The event kicked off with a focus on southeast Asia, with NEAR’s Vietnam country director Riley Tran welcoming attendees and providing context as to Asia’s critical role in the overarching development and expansion of Web3. Tran was followed by two NEAR luminaries, CEO Marieke Flament and co-founder Illia Polosukhin.

- - - -

“Asia’s young demographics and rapid digital growth, especially in Vietnam, position it as a leader in crypto and blockchain growth,” Riley explained. “With over 100 million new internet users in just three years, Asia’s momentum in Web3 is accelerating”

- - - -

Marieke added that the overall NEAR ecosystem remains strong with over 29M active wallets and 650K daily active accounts. She added that a collaborative approach to building tomorrow’s Open Web is critical for tackling significant societal and digital challenges.

“Today’s Web 2.0 is closed and siloed, with the prevailing digital culture being a toxic dialectic,” Marieke expressed. “But the value loop of an Open Web holds immense promise. We’re already seeing how projects like KaiKai, SWEAT, and PlayEmber can move the needle in the right direction.”

- - - -

Echoing Mariek’s sentiment, Illia emphasized that it’s not necessarily about championing a specific blockchain, but about creating a common layer and interface for the Open Web. This is precisely what the Blockchain Operating System (B.O.S.) is in the process of achieving.

- - - -

“Looking forward, tech isn’t the only focus,” said Illia. “It’s about blending scalable solutions with user-centric experiences, with the B.O.S. becoming the essential entry point into Web3 for both users and developers.”

- - - -

Asia’s role in mainstream adoption and regulatory hurdles

- - - -

The push for mainstream blockchain adoption in APAC was also in focus on Day One, with NEAR Foundation CMO Jack Collier leading a panel discussion on current adoption challenges and how APAC can potentially lead the way in overcoming them.

- - - -

“I’m extremely bullish on gaming as a key part of mass adoption,” opined Don Pham, Google Cloud’s regional Web3 specialist. “Vietnam is the birthplace of Axie Infinity, which is just the beginning of blockchain gaming’s potential. Use cases like loyalty, gaming, and music NFTs combined with better UX will likely be the path forward.”

- - - -

The discussion dove deeper into the importance of user experience in the adoption of blockchain. Marieke reiterated that while technology forms the backbone, the real test will be simplifying the user journey, which can significantly hasten adoption across the APAC region as well as globally.

- - - -

Regulation was also in focus with a panel about blockchain policies and APAC’s vision for governments and associations. Mary Beth Buchanan, a board member of the Cardano Foundation, drove home the need for regulatory clarity while discussing regional frameworks in countries like Hong Kong.

- - - -

“The biggest challenge is not necessarily regulation, but lack of clarity,” observed Buchanan. “If regulations are unclear that will cause investors not to want to invest in the space. Builders become hesitant to build and users aren’t going to know what the rules are. Regulators need to recognize that clarity is what everyone wants.”

- - - -

Spotlight on Artificial Intelligence during the afternoon sessions

- - - -

Day One of NEAR APAC dedicated a significant chunk of its schedule to exploring the intricate interplay between AI and blockchain, particularly their role in APAC’s future technology and Web3 landscape. Illia took the stage just after the lunch break to discuss the Convergence of AI and Web3, diving deep into AI-empowered DAO and the future of AI-assisted work.

- - - -

“While technologies like ChatGPT have found product market fit, much of AI is still siloed and doesn’t empower open source communities and projects,” Illia posited. “Web3 can operate in the middle, with AI models incorporating all participants and data sources. DAOs, for example, can be co-piloted by AI to achieve goals and KPIs faster and more efficiently.”

- - - -

In the following panel discussion entitled “The Roles of Blockchains in an AI World,” Illia was joined by several AI and blockchain experts from the APAC region. One of the more distinguished panel members was Dr. Nguyen An Khuong, a lecturer and blockchain researcher from Ho Chi Minh University of Technology, who provided an academic perspective. 

- - - -

“We have a lot of research endeavors in Vietnam around ensuring AI’s ethical applications using blockchain,” commented Dr. Nguyen. “We’re looking at how transparency and accountability in AI decisions can be drastically improved with blockchain technology. Combining a neutral AI with a blockchain’s public ledger could enhance the ecosystem and foster wider adoption.”

- - - -

Illia drove home that the potential “Skynet” scenario of AI taking over the world is mostly a projection of what humans might do if they were given supercomputing powers. In reality, developments like the B.O.S. and NEAR Tasks will aid humans in success and productivity, with AI agents acting as middlemen for assistance, sourcing, and even creativity.

- - - -

Day One of the first-ever NEAR APAC was a rousing success, with these highlights just being the tip of the iceberg. The crowd was treated to bánh mì’s and Manga cosplay during lunch, B.O.S. building and gaming workshops on the Builder Stage, and an awe-inspiring NFT gallery from APAC creators.

- - - -

As the sun sets in Saigon, the NEAR Foundation couldn’t be more appreciative of the Vietnamese crypto community. The momentum rolls on tomorrow with Day Two, so stay tuned for more updates and insights around emerging APAC trends in Web3, how blockchain gaming is taking off in Asia-Pacific, and local DeFi developments. 

- - - -

If Day One was any indication, the NEAR community’s growth, presence, and development in APAC will only continue accelerating through 2023 and beyond!

-

The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

-]]>
- - - -
- - How Vietnam Became a Web3 Powerhouse  - /blog/how-vietnam-became-a-web3-powerhouse/ - - - Mon, 04 Sep 2023 14:00:00 +0000 - - - - /?p=20828 - - Asia is Web3’s engine room. According to a report by Emergen Research, the Web3 global market is expected to be …

-

The post How Vietnam Became a Web3 Powerhouse  appeared first on NEAR Protocol.

-]]>
- Asia is Web3’s engine room. According to a report by Emergen Research, the Web3 global market is expected to be worth $81.5 billion by 2030, growing at an annual rate of more than 40%. Asia is set to capture most of that growth.  

- - - -

That’s because the region has some of the highest adoption rates of Web3 technologies anywhere in the world. In Japan, more than five million people currently own cryptocurrency, the South Korean government became the first to directly invest in the metaverse, and   almost 70% of people in Southeast Asia alone have used at least one metaverse-related tech in the last year.

- - - -

One of the leaders in the region is Vietnam. In recent years, international investors have flooded into Vietnam and established funds specialising in blockchain – with capital inflows into non-fungible token (NFT) assets rising from 37 million USD to 4.8 billion USD in 2021. 

- - - -

It’s why the NEAR Foundation is one of the leading investors in Asia, thanks to its partnerships with the likes of Alibaba Cloud, and why it’s hosting its first major conference in Vietnam.

- - - -

Taking place September 8-12 NEAR APAC will bring together more than 100 global blockchain leaders to discuss blockchain’s unlimited future through the latest blockchain technology updates, development trends, and how blockchain ecosystems drive Web3 mass adoption. 

- - - -

Vietnam on the rise 

- - - -

Vietnam has all the ingredients to become a Web3 super power. The country has 

- - - -

more than 400,000 skilled software engineers, produces 50,000 IT graduates annually, and has an IT labour force more than a million strong. 

- - - -

The nation’s software engineers rank at an impressive 8th place globally in terms of capability — 95% of which have bachelor’s degrees or higher in IT. It’s unsurprising then to hear that Vietnam now has 3,800 blockchain-related projects, 200 venture capital funds, and 100 project incubation funds to support the country’s startups. 

- - - -

Vietnam’s tech landscape is now full of startups and innovation hubs fostering creativity in Web3. Local incubators and accelerators provide mentorship, resources, and networking opportunities for Web3 entrepreneurs. 

- - - -

That growth also has government support. In 2021, Vietnamese Prime Minister Pham Minh Chinh greenlit the country’s “e-government” development strategy designed to create regulatory clarity for Web3 projects. Last year, the country launched its first official blockchain association, which is helping blockchain builders and business owners become a bigger part of the regulatory conversation.  

- - - -

Its chairman, Hoang Van Huay, has shared the Vietnam Blockchain Association’s commitment to “providing consultation on building legal framework, regulations, and standards in developing services and products on blockchain”. This commitment is part of a broader mission to accelerate the growth of blockchain technology in Vietnam.

- - - -

It’s no wonder then that Vietnam ranks first in the Global Cryptocurrency Adoption Index released by Chainalysis, up from 10th place the year before. 
Vietnam is on the rise, and the NEAR Foundation is here to support it. Join us at NEAR APAC on 8-12 September 2023 in Ho Chi Minh City.

-

The post How Vietnam Became a Web3 Powerhouse  appeared first on NEAR Protocol.

-]]>
- - - -
- - An Update on the NDC Funding and Support for Grassroots Projects - /blog/an-update-on-the-ndc-funding-and-support-for-grassroots-projects/ - - - Fri, 18 Aug 2023 15:04:37 +0000 - - - - /?p=20807 - - Executive Summary One of the central tenets of Web3 is decentralisation. Decentralisation is central to creating an open web because …

-

The post An Update on the NDC Funding and Support for Grassroots Projects appeared first on NEAR Protocol.

-]]>
- Executive Summary

- - - -
    -
  • The Foundation has set the future of funding for the NDC based on significant milestones post V1 Governance
  • - - - -
  • The launch of the Grassroots Support Initiative where projects in need of funding or support can engage directly with the NEAR Foundation to discuss options in the interim of direct support from the NDC 
  • - - - -
  • If you are looking for support, you can schedule time with the team here
  • -
- - - -

One of the central tenets of Web3 is decentralisation. Decentralisation is central to creating an open web because it underpins an ecosystem’s anti-fragility, sustainability, scalability, and censorship resistance (amongst other important characteristics). A core part of a decentralised ecosystem is a robust self-governance infrastructure that empowers users and the community.

- - - -

Decentralisation is something that has guided the Foundation as a northstar, but as in all emerging fields sometimes the path toward that goal can be winding, complicated, and messy. That’s why we thought it would be important to take a moment to discuss the place of the NDC on that journey, the steps ahead, and how we can help the community get the support it needs along the way. 

- - - -

Back in August 2022, the Community Working Group was formed by a collection of prominent NEAR community nodes with the purpose of establishing a new framework and implementation plan for ecosystem self-governance infrastructure and an associated treasury that could help ensure the ecosystem would continue on its path to decentralisation while giving everyone the chance to have their voice heard. This is how and why the NEAR Digital Collective (NDC) was formed. 

- - - -

As the champion supporting the creation of decentralised governance infrastructure, the NDC plays an important role in the future of the NEAR ecosystem. Decentralised governance infrastructure will enable the community to vote (using an on-chain mechanism) on the allocation of funds, help ensure that decisions are made in a fair and representative manner, and further decentralise the NEAR ecosystem, something that is important both philosophically and practically for the healthy development of any Web3 ecosystem.

- - - -

So far, the NDC has already successfully launched the NDC Community Treasury, the IAMHuman voting initiative and V0 Governance, all major milestones for the ecosystem and vital pieces of governance infrastructure.

- - - -

Funding for the NDC

- - - -

Understanding the important role that the NDC can play in the future of the ecosystem, the NEAR Foundation is fully committed to its long term success. Of the Foundation’s treasury, a substantial portion has been earmarked for community initiatives like the NDC, which the Foundation intends to advance to the NDC Community Treasury over time as the ecosystem’s governance infrastructure matures.

- - - -

In order to further support the mission of the NDC as they continue to make progress, the Foundation is announcing today that it will provide an advance to the NDC Community Treasury in the region of 15M NEAR, subject to the successful completion of the V1 Governance elections. The criteria for this initial treasury advance will include (a) all V1 Governance elected positions being filled; and (b) the implementation by the community of a standardized funding request framework as a benchmark for responsible work moving forward.

- - - -

After this initial advance, the Foundation is also reiterating its commitment to further treasury advances (up to 100M NEAR). These further advances will be based on careful work with the community to set out specific criteria for milestones that will ensure funds are deployed responsibly and in a way that helps achieve the long-term goals of the wider ecosystem. 

- - - -

Once V1 Governance is live, the community will be able to create success metrics for the NDC and vote on them as a collective with the support of the Foundation and other ecosystem nodes. 

- - - -

The Foundation is also aware that, as a result of various delays with the launch of V1 Governance, the NDC Community Treasury is close to reaching the original USD1.5m V0 Governance budget cap contained in the NDC Community Treasury trust instrument. To ensure the community can continue to move forwards to the critical goal of V1 Governance launch, the Foundation will support the NDC Community Treasury by providing an additional USD400k buffer above that original budget cap.

- - - -

The NDC nominations for all 3 houses in V1 Governance are currently live until September 7th, with elections then kicking off on September 8th and running until September 22nd. We would encourage anyone who is interested in getting involved in this critical ecosystem milestone, and playing a role in steering the ecosystem forwards, to nominate themselves.

- - - -

Support for grassroots projects

- - - -

As part of the Foundation’s commitment to decentralisation and ensuring the voice of the community is heard, the Foundation announced in November 2022 that in most instances it would stop providing capital to the ecosystem through grants and instead have the NDC gradually take over that responsibility. While the Foundation understands that grants are a vital resource for grassroots projects to build and grow, we believed it was important to support moving them to a more decentralised model.  

- - - -

However, since the timeline to implement V1 Governance has taken longer than anticipated, we recognise that ecosystem funding has been more limited, which has put significant pressure on builders in the ecosystem. Concerns around funding have been a major topic of discussion in the community over the last few weeks, and the Foundation appreciates that the community has rallied together to surface these issues in an open and constructive way. This feedback has helped the Foundation understand that it should have moved more quickly to provide interim support. 

- - - -

To help address this issue, and to better support grassroots projects who are in need of support while the NDC continues to ramp up, the Foundation is launching a grassroots support initiative for any project in the ecosystem that is currently in need of urgent support. The Ecosystem Relations team is leading on the initiative from the Foundation and they have set up an open calendar for community members to connect directly with them to discuss how the Foundation can best support. 

- - - -

Projects will be able to ask for emergency support, either financial or otherwise, by booking time with the team. This initiative will remain in place until NDC funding options become more readily available. While the Foundation will not be able to fund every request, we are committed to carefully reviewing every one we receive and prioritizing them based on immediate need and how well they line up with the goals of the broader ecosystem. 

- - - -

You can book time with the Ecosystem Relations Team here.

- - - -

Grassroots projects and the community are the lifeblood of the NEAR ecosystem and the Foundation is committed to ensuring projects have the resources they need as we continue to create a thriving, decentralised ecosystem together.

-

The post An Update on the NDC Funding and Support for Grassroots Projects appeared first on NEAR Protocol.

-]]>
- - - -
- - Case Study: Aurora’s Alex Shevchenko on Scaling Solidity Smart Contracts - /blog/case-study-auroras-alex-shevchenko-on-scaling-solidity-smart-contracts/ - - - Wed, 16 Aug 2023 18:50:01 +0000 - - - - /?p=20798 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: Aurora’s Alex Shevchenko on Scaling Solidity Smart Contracts appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

- - - -

In the latest NEAR Foundation Case Study video below, Alex Shevchenko, co-founder and CEO of Aurora Labs, talks about the developer studio’s work in making it easier for developers integrating Solidity smart contracts on NEAR. 

- - - -

“Aurora is a solution that allows you to launch your Solidity smart contracts on NEAR,” says Shevchenko.  “We’re also adding something new: a scalability feature for the NEAR Protocol — something that can make EVM future-safe and make a destination of Aurora plus NEAR a final one for businesses to come.”

- - - -

“We are focusing on the user experience,” he adds. “We have a whole set of products that are helping blockchain businesses to make the user experience much more convenient.” 

- - - -
- -
-

The post Case Study: Aurora’s Alex Shevchenko on Scaling Solidity Smart Contracts appeared first on NEAR Protocol.

-]]>
- - - -
- - With MeshFlux, Multimedia Art and Gaming Explore Blockchain Technology  - /blog/with-meshflux-multimedia-art-and-gaming-explore-blockchain-technology/ - - - Thu, 10 Aug 2023 12:00:00 +0000 - - - - /?p=20790 - - The worlds of art and blockchain are no strangers. On NEAR, art can be found on apps like Mintbase, Paras, …

-

The post With MeshFlux, Multimedia Art and Gaming Explore Blockchain Technology  appeared first on NEAR Protocol.

-]]>
- The worlds of art and blockchain are no strangers. On NEAR, art can be found on apps like Mintbase, Paras, and many other ecosystem projects.  With the MeshFlux project, however, Turkish artist and designer Ufuk Barış Mutlu shows a clear path to how physical artworks can be deeply integrated with the blockchain. 

- - - -

With funding from the NEAR ecosystem, Mutlu created MeshFlux — a series of interactive sculptures that highlight one of the fundamental aspects of blockchain technology — the distinction between centralized, decentralized, and distributed networks. To achieve this goal, Mutlu created a series of three interactive sculptures that deliver the experience of these systems’ characteristics through simple gamification.

- - - -

Mutlu recently exhibited MeshFlux at a couple of events. MeshFlux appeared at virtual art platform’s Monoco.io’s physical gallery in Istanbul from May 18 to June 17, 2023, then at Sónar+D Barcelona — the music festival’s digital trade show, from June 15 to June 17, 2023.

- - - -

Making blockchain art accessible to the masses

- - - -

Although crypto natives and blockchain curious might understand these concepts, Mutlu wanted to make his physical artworks that explore the blockchain comprehensible to the average person. To that end, he created physical artwork that explains blockchain by visualizing and gamifying it.

- - - -

“The project’s output consists of three interactive sculptures machined out of aluminum, which are sized similarly to an iPad,” said Mutlu. “The dynamics of the interaction are based on the conventional maze game, where the paths of the mazes represent three different network systems: centralized, decentralized, and distributed networks.”

- - - -
- -
- - - -

All three maze paths are mapped according to Paul Baran’s original work published in 1964. Steel bearing balls inside the sculptures represent data packets in the network. The usage of multiple bearing balls distinguishes this sculpture from a conventional maze game and visualizes a multi-user network schematic.

- - - -

“I narrowed down my approach to the fundamental principles of blockchain, specifically network models,” Mutlu explained. “To achieve this, I created three maze games using network models as the foundation. These maze games are often associated with children and were constructed using premium and industrial materials to strike a balance between play and serious tech.”

- - - -

Using computers to industrially mill materials — aluminum, in this case — requires designing a digital 3D model, programming the milling machine (referred to as CAM), securing the material into the CNC machine, and using automated cutting tools (CNC) to precisely shape the aluminum block according to the design. 

- - - -

“The process allows for accurate and efficient production of objects with complex shapes” explains Mutlu.

- - - -

MeshFlux: NFT meets 3D-printed sculpture

- - - -

Since his focus lies in physical objects, Mutlu wanted to offer the same sculpture as a 3D-printable file functioning as an NFT. His plan was to leverage all the advantages of blockchain technology through the creation of an NFT, while ensuring its potential to be transformed into a physical and tactile artwork. This would, he figured, satisfy the collector’s desire for touch and possession.

- - - -

With part of his NEAR ecosystem grant, Mutlu shot a documentary that explores the process of creating MeshFlux’s physical and digital (blockchain) aspects. NFT versions of MeshFlux are currently available, and Mutlu is working on integrating them with NEAR. 

- - - -

Follow Ufuk Barış Mutlu on Instagram. 

-

The post With MeshFlux, Multimedia Art and Gaming Explore Blockchain Technology  appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/category/community/index.html b/public/blog/category/community/index.html deleted file mode 100644 index d321ad462..000000000 --- a/public/blog/category/community/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – NEAR Protocol
<- Back to all posts

Category: Community

229 posts
\ No newline at end of file diff --git a/public/blog/category/community/page/10/index.html b/public/blog/category/community/page/10/index.html deleted file mode 100644 index 299cee343..000000000 --- a/public/blog/category/community/page/10/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 10 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/11/index.html b/public/blog/category/community/page/11/index.html deleted file mode 100644 index e0b1ed915..000000000 --- a/public/blog/category/community/page/11/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 11 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/12/index.html b/public/blog/category/community/page/12/index.html deleted file mode 100644 index 885c3ca22..000000000 --- a/public/blog/category/community/page/12/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 12 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/13/index.html b/public/blog/category/community/page/13/index.html deleted file mode 100644 index d74d7ebcf..000000000 --- a/public/blog/category/community/page/13/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 13 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/14/index.html b/public/blog/category/community/page/14/index.html deleted file mode 100644 index d442e14f5..000000000 --- a/public/blog/category/community/page/14/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 14 of 26 – NEAR Protocol
<- Back to all posts

Category: Community

229 posts
Community
April 6, 2021

The Rainbow Bridge Is Live

Community
March 24, 2021

Well hello, NEAR Academy!

Community
March 17, 2021

Octopus Network Partners with NEAR

Community
March 16, 2021

NEAR Protocol Partners with Mask Network

Community
February 25, 2021

NEAR Recap: ETHDenver 2021

Community
February 19, 2021

P2P Validator Joins NEAR as a Node Operator

Community
February 18, 2021

NEAR and The Graph Partnership

\ No newline at end of file diff --git a/public/blog/category/community/page/15/index.html b/public/blog/category/community/page/15/index.html deleted file mode 100644 index 02d67e051..000000000 --- a/public/blog/category/community/page/15/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 15 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/16/index.html b/public/blog/category/community/page/16/index.html deleted file mode 100644 index 0ecefc8d8..000000000 --- a/public/blog/category/community/page/16/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 16 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/17/index.html b/public/blog/category/community/page/17/index.html deleted file mode 100644 index 8809102f4..000000000 --- a/public/blog/category/community/page/17/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 17 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/18/index.html b/public/blog/category/community/page/18/index.html deleted file mode 100644 index 62a8c40e1..000000000 --- a/public/blog/category/community/page/18/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 18 of 26 – NEAR Protocol
<- Back to all posts

Category: Community

229 posts
NEAR Community update
Community
July 17, 2020

Community Update: July 17th, 2020

NEAR Community update
Community
July 3, 2020

Community Update: July 3rd, 2020

Community
June 19, 2020

NEAR Token Supply and Distribution

NEAR Community update
Community
June 19, 2020

Community Update: June 19th, 2020

Community
June 5, 2020

Community Update: June 5th, 2020

Community
June 4, 2020

Guild Program Launch

Community
May 27, 2020

Ready Layer One Rewind

NEAR Community update
Community
May 22, 2020

Community Update: May 22nd, 2020

\ No newline at end of file diff --git a/public/blog/category/community/page/19/index.html b/public/blog/category/community/page/19/index.html deleted file mode 100644 index fdf4a7027..000000000 --- a/public/blog/category/community/page/19/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 19 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/2/index.html b/public/blog/category/community/page/2/index.html deleted file mode 100644 index 9f69ffa55..000000000 --- a/public/blog/category/community/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 2 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/20/index.html b/public/blog/category/community/page/20/index.html deleted file mode 100644 index 2206ef3a4..000000000 --- a/public/blog/category/community/page/20/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 20 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/21/index.html b/public/blog/category/community/page/21/index.html deleted file mode 100644 index d01b6b8dc..000000000 --- a/public/blog/category/community/page/21/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 21 of 26 – NEAR Protocol
<- Back to all posts

Category: Community

229 posts
Community
February 14, 2020

NEAR Community Update: February 14th, 2020

NEAR_ETHDenver
Community
February 13, 2020

NEAR is going to ETHDenver!

Community
January 31, 2020

NEARcon Zero

Community
January 17, 2020

NEAR Community Update: January 17th, 2020

Community
January 8, 2020

NEAR 2019 Year in Review

Community
December 13, 2019

Our Last Update | December 13th, 2019

\ No newline at end of file diff --git a/public/blog/category/community/page/22/index.html b/public/blog/category/community/page/22/index.html deleted file mode 100644 index 4ace2527e..000000000 --- a/public/blog/category/community/page/22/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 22 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/23/index.html b/public/blog/category/community/page/23/index.html deleted file mode 100644 index 913e982c2..000000000 --- a/public/blog/category/community/page/23/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 23 of 26 – NEAR Protocol
<- Back to all posts

Category: Community

229 posts
\ No newline at end of file diff --git a/public/blog/category/community/page/24/index.html b/public/blog/category/community/page/24/index.html deleted file mode 100644 index 6215777ac..000000000 --- a/public/blog/category/community/page/24/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 24 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/25/index.html b/public/blog/category/community/page/25/index.html deleted file mode 100644 index 8f37e318f..000000000 --- a/public/blog/category/community/page/25/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 25 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/26/index.html b/public/blog/category/community/page/26/index.html deleted file mode 100644 index 29fd70cf3..000000000 --- a/public/blog/category/community/page/26/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 26 of 26 – NEAR Protocol \ No newline at end of file diff --git a/public/blog/category/community/page/3/index.html b/public/blog/category/community/page/3/index.html deleted file mode 100644 index 614010330..000000000 --- a/public/blog/category/community/page/3/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 3 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/4/index.html b/public/blog/category/community/page/4/index.html deleted file mode 100644 index 7f9adace3..000000000 --- a/public/blog/category/community/page/4/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 4 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/5/index.html b/public/blog/category/community/page/5/index.html deleted file mode 100644 index 17e1228f5..000000000 --- a/public/blog/category/community/page/5/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 5 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/6/index.html b/public/blog/category/community/page/6/index.html deleted file mode 100644 index 96d2efc4d..000000000 --- a/public/blog/category/community/page/6/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 6 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/7/index.html b/public/blog/category/community/page/7/index.html deleted file mode 100644 index 61691dbc0..000000000 --- a/public/blog/category/community/page/7/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 7 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/8/index.html b/public/blog/category/community/page/8/index.html deleted file mode 100644 index 230be1026..000000000 --- a/public/blog/category/community/page/8/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 8 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/community/page/9/index.html b/public/blog/category/community/page/9/index.html deleted file mode 100644 index 2d110523a..000000000 --- a/public/blog/category/community/page/9/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 9 of 26 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/developers/feed/index.xml b/public/blog/category/developers/feed/index.xml deleted file mode 100644 index c12b2487b..000000000 --- a/public/blog/category/developers/feed/index.xml +++ /dev/null @@ -1,1036 +0,0 @@ - - - - Developers Archives – NEAR Protocol - - /blog/category/developers/ - - Thu, 15 Feb 2024 16:58:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - /wp-content/uploads/2020/09/cropped-favicon-32x32.png - Developers Archives – NEAR Protocol - /blog/category/developers/ - 32 - 32 - - - Unlocking Web3 Usability with Account Aggregation - /blog/unlocking-web3-usability-with-account-aggregation/ - - - Thu, 15 Feb 2024 14:21:00 +0000 - - - /?p=21229 - - Since the start, the focus for the NEAR ecosystem has been on advancing Chain Abstraction, or hiding the elements of …

-

The post Unlocking Web3 Usability with Account Aggregation appeared first on NEAR Protocol.

-]]>
- Since the start, the focus for the NEAR ecosystem has been on advancing Chain Abstraction, or hiding the elements of the blockchain (“abstracting away”) from users so they are not barriers to entry or participation in the decentralized Web. In Web3, the data and assets belong to the user, tied to their on-chain, noncustodial account. Currently every user has separate (usually many) accounts on each blockchain and also needs separate wallet software to manage those accounts. This requires users to manage the security for each account and wallet individually, deal with complex recovery processes if they make a mistake, and go through a thorny series of manual steps to move any assets into their wallets or across different wallets and chains. 

- - - -

The current world, where every wallet is managing accounts on many chains, is untenable as each account slowly falls out of sync with the others. In order to provide a consistent, abstracted experience for users across all chains, we need to aggregate accounts across all chains within a single interface––account abstraction alone is not enough. Enter Account Aggregation.

- - - -

Account Aggregation––the ability to transact on any blockchain through a single account and interface––is a critical pillar of advancing Chain Abstraction, defragmenting Web3 for app users and increasing their ability to move across networks or between applications with ease. Developers should not be building apps on single chains anymore in order to reach some specific market or pool of liquidity. Now dApps can truly become decentralized applications, yet still feel like the unified experience of using an app. 

- - - -

To enable an effective user experience for using all blockchains, without users needing to think about underlying infrastructure or switch networks, it’s important to have a single account from which they can navigate all of Web3. This means no manual bridging, no managing long lists of addresses on different networks, no gas tokens, and no more switching between wallets and networks. In the true spirit of Web3, this single account should be non-custodial and non-dependent on a specific wallet software or any other single service provider. 

- - - -
- - - -

NEAR is enabling such an experience for all Web3 users with Account Aggregation, which consists of 3 core technologies. 

- - - -
    -
  • NEAR Account: account abstraction for smooth onboarding and recovery of accounts.
  • - - - -
  • Chain Signatures: enabling NEAR network to have MPC nodes that are jointly signing transactions and messages.
  • - - - -
  • Intent Relayers: parties in the ecosystem that are able to execute the intent of the user on different chains.
  • -
- - - -

By adding Chain Signatures and Intent Relayers to the already robust NEAR account model, NEAR can become the home for multichain apps that abstract the pain points of switching networks and managing gas fees, bridging, and long lists of accounts away from end users. 

- - - -

This post details the 3 technical pillars of Account Aggregation and how they combine to deliver the next generation of usability for any decentralized application. Chain Signatures and Intent Relayers will be available on NEAR testnet by early March 2024. 

- - - -

NEAR Account

- - - -

Account aggregation on NEAR begins with the innovative NEAR account model. Incorporating native account abstraction since launch, NEAR’s account model offers a high degree of flexibility to developers and users alike. Ethereum introduced its version of account abstraction, EIP-4337, in March 2023. 

- - - -

Native account abstraction means that a given NEAR account maps to a human-readable account name instead of a public key hash, so accounts can have a large number of keys with different permissions for different functions. This means that NEAR account security is both stronger and easier to manage for users, while also allowing much broader functionality within a single account.

- - - -
- - - -

FastAuth, the industry-leading account creation experience NEAR launched in 2023, offers a Web2-like onboarding flow: users can sign up with just an email, and they don’t need to save a seed phrase or password. Instead, their FastAuth account and keys are secured using “Passkeys,” a new technology that replaces passwords with biometrics such as fingerprints or FaceID linked to a device. Users can also recover access to their account at any time by using their email through the MPC recovery service.

- - - -

Now, with added multichain functionality on the horizon, the power of the NEAR account can extend across all of Web3 and offer easier onboarding and security management to users of any decentralized application. By having passkey integration, revocation, and recovery in one place rather than scattered across every chain, users will have a significantly streamlined experience for managing their Web3 accounts.

- - - -

Chain Signatures

- - - -

Chain signatures allow any NEAR account to have associated “remote” addresses on other chains and to sign transactions and messages from those addresses. 

- - - -

Traditionally a user would have different private keys in different wallet providers to facilitate multichain interactions and would need to manage them manually. With Chain Signatures, the NEAR MPC network is the signer for these remote addresses, meaning there is no explicit private key.

- - - -

MPC (multi-party computation) signing allows a number of independent nodes to sign a message with key shares separately generated by non-trusting parties without needing to assemble them anywhere. The challenge with the standard MPC signing approach is that if nodes are changed, a new public key needs to be generated. The introduction of a novel threshold signature protocol which has a procedure of key resharing allows the MPC signer to maintain the same aggregate public key even as key shares and nodes constantly change.

- - - -
- - - -

Chain Signatures is the NEAR approach to make this model programmable. Making MPC signer nodes that are also nodes in the NEAR network allows for a smart contract call to instantiate a signature procedure for a given account. By using different derivations constructed from a chain ID, a NEAR account ID, and a provided path, each account receives an infinite number of remote addresses on every chain. 

- - - -

This amplifies the power and flexibility of NEAR accounts by allowing them to operate on any chain. Any NEAR smart contract can sign transactions and messages targeted for other chains––introducing another novel account programming primitive and extending the NEAR account model across all of Web3.

- - - -

The MPC signer network will start as a subset of validators and partners of NEAR. Over time it is expected to be added to all NEAR validators on the protocol level to continue increasing the security of the system. 

- - - -

Intent Relayers

- - - -

We can’t expect app users to pay gas fees in various native tokens across different chains. We also should not require users to explicitly swap tokens on the destination chain in order to pay there. To achieve a smooth user experience, it should be easy for users to pay on the NEAR network and then be able to transact value on other chains, i.e. to relay their intent from NEAR to another chain.

- - - -

With intent, a user can state what they want to achieve and leave out how it should be done. Users should be able to specify any action they want to take without having to navigate or understand the intricate complexities of multiple transactions on multiple chains they will be executed on, nor the swaps and funding required to achieve that action. 

- - - -

Although Chain Signatures is a generic technology that can be used in many ways for the first iteration of Account Aggregation, the relayer smart contract will control the remote account for users. This means that instead of the user’s account mapping to an address, the relayer.near will have a derivation for each user, allowing this smart contract to initiate signing and offer other services (like trading derivations).

- - - -

Let’s look at an example of how the first iteration of intent relayer will abstract away cross-chain gas and payments for a NEAR user: 

- - - -
    -
  • User has a root.near account that maps to the remote Ethereum address 0xabc via the relayer’s smart contract.
  • - - - -
  • User initiates a transaction to buy a BAYC NFT on OpenSea using their NEAR account and pays in $NEAR by doing a transaction on the NEAR network to relayer smart contract with Ethereum transaction payload in arguments and attaching the required $NEAR amount.
  • - - - -
  • The relayer smart contract will then forward the transaction bundle to the NEAR MPC signature contract. This bundle consists of (1) the transaction to fund the user’s 0xabc with $ETH required for gas and NFT payment and (2) user’s transaction to buy the BAYC NFT on OpenSea.
  • - - - -
  • The Chain Signature contract will sign both transactions using different derivations respective to the relayer contract and originating user.
  • - - - -
  • The relayer operator will observe the response from MPC service with signed transactions and submit them to the Ethereum network. This starts with initiating a fund transfer from a treasury paymaster account on Ethereum. This paymaster account will transfer ETH to the user’s 0xabc Ethereum address, equivalent to the NEAR that was originally sent by the user. 
  • - - - -
  • Then the relayer will submit the final transaction and the BAYC NFT will be purchased from the user’s 0xabc address using ETH to cover gas and payment.
  • -
- - - -

The above example showcases how an intent relayer reduces complexity for a user to complete a cross-chain transaction. This is an intent-based architecture, and this is only a brief initial example of what will be possible in the future to provide a seamless user experience and abstract blockchains for users.

- - - -

The intent relayers approach allows users to pay with any assets they own, not just $NEAR, opening up wallet and application developers to offer a variety of options: using application tokens for paying for multichain transactions, offering a subscription model by charging a flat fee, or offering extra discounts to incentivize specific behaviors. 

- - - -

Use Cases

- - - -

One account for using apps on all chains unlocks a range of previously difficult use cases for founders and developers. Here are some examples for founders and developers to consider as the possibilities for excellent multichain user experiences expand with Account Aggregation.

- - - -

Expanding user base for existing applications. Currently applications are only targeting the user base of the single chain they have launched on. With Account Aggregation, users can log into applications from every chain as an alternative wallet option. Application developers will simply need to add “Connect with NEAR” to their wallet selector.

- - - -

Wallet developers can also leverage NEAR’s decentralized and composable interfaces together with Account Aggregation to surface applications across all chains directly within their wallet experience.

- - - -

Bridgeless DeFi. The first example is bridgeless, cross-chain DeFi where a NEAR account can be a gateway to multiple chains through a unified app experience. This is especially useful for apps like DapDap, built on NEAR, which lets users discover DeFi apps and experiences from a range of L2s and start using them within a single interface. 

- - - -

Multichain DEX. One of the most desired but also complex-to-build use cases is a decentralized exchange (DEX) that works across most if not all chains. Currently users must default to centralized exchanges for such a multichain experience due to the complexity of bridging, gas, and handling separate wallets. With Account Aggregation, DEX smart contracts can live on NEAR while having deposit addresses across all chains. This means there is no need to bridge assets to a single chain to swap or for the user to bridge to the chain where assets have liquidity. Instead they can easily swap $BTC on the Bitcoin network for $OP on Optimism using such a NEAR smart contract.

- - - -

Bridging Assets. Although the Account Aggregation approach really focuses on using canonical assets on where they are issued, sometimes there is value in having wrapped assets. For example, in cases like Bitcoin or Ethereum where the canonical assets are too expensive and slow to move, wrapping becomes quite useful. To build a specific token bridge using Account Aggregation is just to make a NEAR smart contract that keeps an account of deposits of a given token and issues that respective token balance.

- - - -

Trading multichain asset bundles. Beyond simple trading, Account Aggregation allows users to make a NEAR account into a bundle of multichain assets. NEAR accounts themselves are tradeable (see NEAR account marketplace NameSky), which also allows the trading of everything that is deposited to such an account across all chains. For example, say the account xyz.near has 2 BTC, some BRC-20, a BAYC NFT on Ethereum, and some veCRV. By trading this entire account, there is no need to move each of the underlying assets on the other chains.  Instead, the new owner comes into possession of the whole bundle when the keys are rotated to them on the account.

- - - -

There is also an interesting potential approach to implement a multichain exchange of assets via a smart contract that internally maintains a mapping from an owner account to a given path derivation (which is what determines remote addresses on other chains). One can trade the derivation paths inside this smart contract, trading everything deposited on a remote account without trading the entire account. For example:

- - - -
    -
  • Smart contract dex.near internally maintains: 
  • -
- - - -
    -
  • derivation=/0/0/1 → root.near
  • - - - -
  • derivation=/0/0/2 → alice.near which maps to 0xabc on Ethereum
  • -
- - - -
    -
  • alice.near can sell root.near the derivation inside this smart contract for some amount on NEAR and now it will be inside dex.near. Then root.near can request to draw Ethereum assets from it later. 
  • -
- - - -
    -
  • derivation=/0/0/1 → root.near
  • - - - -
  • derivation=/0/0/2 → root.near
  • -
- - - -

This approach means users can trade assets across all chains at the speed (1s block time) and cost (below $0.01) of using NEAR.

- - - -

Delegated Smart Contract Permissions on NEAR. Another use case for Chain Signatures is the ability for a NEAR smart contract to execute something on behalf of other users––for example, to recover keys for an app user. 

- - - -

Let’s say there is a social_recovery.near contract that keeps track of a mapping of friends for a given account root.near. This root.near account at some point added a public key that the social_recovery.near account can sign via Chain Signatures. Friends can initiate a recovery flow, where they send a new public key given to them by the user to social_recovery.near. If enough friends do this, the social_recovery.near requests to sign a NEAR transaction that adds a new key on behalf of its own remote key with signer root.near. When executed, this transaction adds a new key to root.near, allowing the user to recover their account via a social recovery process they can set up in case they need it. 

- - - -

Similarly, smart contracts can execute rebalancing of pools on behalf of the user based on some condition and any other logic that the user decides to “install” on their account by adding a remote key from that account.

- - - -

DeFi on Bitcoin (and other non-smart contract chains). Using chain signatures, smart contracts on NEAR can control externally-owned accounts on non-smart contract chains like Bitcoin, Dogecoin, Ripple, Bittensor, Cosmos Hub, etc. This enables developers to use NEAR as a smart contract “layer” for chains that do not support this functionality natively. 

- - - -

For example, a developer can build a decentralized exchange for Bitcoin Ordinals, using a smart contract on NEAR to manage deposits (into Bitcoin addresses controlled by the contract) and to verify and execute swaps when two users agree to trade BTC for an Ordinal or BRC20 token. 

- - - -

Coming Soon to NEAR Testnet

- - - -

Excited to build with Account Aggregation? Keep an eye on NEAR’s docs: Chain Signatures and Intent Relayers are expected to be available on testnet by March 1, 2024. And join members of the NEAR ecosystem at the Chain Abstraction Summit, co-sponsored by NEAR Foundation during ETHDenver, to learn more about Account Aggregation and exciting innovations from all the projects contributing to Chain Abstraction.

- - - -

–Illia Polosukhin, David Millar-Durrant, Gautham Ravi, Dio Ortega, Mally Anderson

-

The post Unlocking Web3 Usability with Account Aggregation appeared first on NEAR Protocol.

-]]>
- - - -
- - Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 - /blog/inaugural-ai-x-web3-hackathon-and-decentralized-ai-summit-to-debut-at-eth-denver-2024/ - - - Wed, 14 Feb 2024 18:59:43 +0000 - - - - - - - /?p=21226 - - In collaboration with Edge and Polygon Labs, the NEAR Foundation will co-sponsor a Decentralized AI Summit and “Autonomous Agent,” an …

-

The post Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 appeared first on NEAR Protocol.

-]]>
- In collaboration with Edge and Polygon Labs, the NEAR Foundation will co-sponsor a Decentralized AI Summit and “Autonomous Agent,” an AI x Web3 Hackathon, at ETHDenver on February 26 and 27. The events will bring together visionaries, developers, and enthusiasts working at the intersection of AI and Web3 along with a hackathon for builders and researchers to dive into the buzziest tech topic of today. Speakers at the Summit will include Vitalik Buterin of the Ethereum Foundation, Illia Polosukhin of NEAR Foundation, Sandeep Nailwal of Polygon Labs, and Sreeram Kannan of EigenLayer. 

- - - -

“Autonomous Agent” is the first event in the “{Chain}-of-Thought” series from Edge, which will explore and harness the potential of Web3 and open source AI. Edge is a research and development organization dedicated to democratizing access to open intelligence and advancing the evolution of next-generation web architecture. Hackers can expect hands-on hacking sessions, workshops, and mentorship opportunities with a chance to learn from those at the cutting edge of decentralized AI development. 

- - - -

The intersection of Artificial Intelligence (AI) and Web3 technology is poised to revolutionize industries, with many Web3 projects now incorporating AI into decentralized applications and developer tools. Ethereum Co-Founder Vitalik Buterin recently shared his observations about the intersection, and NEAR Co-Founder Illia Polosukhin shared how AI fits into the vision for the NEAR ecosystem in a recent post

- - - -

As the risks from centralized AI controlled primarily by major corporations become more apparent, investing in open source, transparent AI development will become increasingly important––along with community building, governance experiments, and advocacy. “{Chain} of Thought” will lead the way in bringing members of the AI and Web3 ecosystems together to advance these initiatives and make concrete progress.

- - - -

In addition to the premier sponsors, the “Autonomous Agent” hackathon is co-sponsored by EigenLayer, Gensyn, and Hyper Oracle, with co-hosting participation from Sentient, Lightspeed, and Symbolic Capital. Benefits of participation include:

- - - -
    -
  • Cutting-Edge Workshops: Engage with industry experts and thought leaders through immersive workshops exploring the latest trends and technologies in AI x Web3.
  • - - - -
  • Hackathon Challenges: Tackle real-world challenges and showcase your creativity by developing innovative solutions at the forefront of AI and Web3 integration.
  • - - - -
  • Networking Opportunities: Connect with like-minded individuals, potential collaborators, and industry professionals to expand your network and exchange ideas.
  • - - - -
  • Prizes and Recognition: Compete for exciting prizes and gain recognition for your contributions to the advancement of AI x Web3 technology.
  • -
- - - -

Join NEAR Foundation, Polygon Labs, and Edge in Denver and be a part of the next great tech revolution. Those interested in attending the Decentralized AI Summit can register here. Researchers, developers, and hackers interested in participating in the hackathon can apply here

-

The post Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 appeared first on NEAR Protocol.

-]]>
- - - -
- - Why NEAR Data Availability? - /blog/why-near-data-availability/ - - - Fri, 26 Jan 2024 16:28:31 +0000 - - - - - - /?p=21194 - - NEAR Protocol is built to onboard 1B+ users to Web3. Since its mainnet launch in October 2020, NEAR Protocol has …

-

The post Why NEAR Data Availability? appeared first on NEAR Protocol.

-]]>
- NEAR Protocol is built to onboard 1B+ users to Web3. Since its mainnet launch in October 2020, NEAR Protocol has achieved 100% uptime with 4 shards and has onboarded 35M accounts, of which 16M are monthly active accounts.

- - - -

Supporting the most users of any network in Web3 requires a scalable blockchain that is capable of having both high data availability and low-cost data posting in order for applications to scale to the level of mainstream global adoption. This post will explain NEAR’s technical approach to data availability and how NEAR DA, a solution designed for Ethereum rollups, will scale the modular ecosystem and defragment all of Web3.

- - - -

The modular Ethereum ecosystem seeks to scale the network by separating the functions of a blockchain––settlement, execution, and data availability––into separate layers. The Ethereum layer-one simply could not scale to accommodate the level of demand it reached, particularly during bull markets, without prohibitively high transaction fees. This demand becomes even more problematic when users want to do swaps on Ethereum or post transaction data for layer-twos to the layer-one network. 

- - - -

NEAR DA offers a solution to this scalability roadblock. With a simple architecture that is easy to implement and constantly improving efficiency, and thanks to NEAR having the cheapest transaction fees of any network in Web3, NEAR DA is an incredibly fast and cost-effective data availability option. Depending on the gas fees, NEAR DA is up to 85,000x cheaper than posting blob submissions on Ethereum and 30x cheaper than doing the same on Celestia. 

- - - -
- - - -

NEAR DA and the Chain Abstraction Vision

- - - -

The NEAR ecosystem’s focus for 2024 is expanding chain abstraction across more chains & ecosystems, with the goal of abstracting the blockchain away from the user & developer experience. While the modular Ethereum ecosystem has made Ethereum more scalable in some ways, it’s also resulted in a lot of incompatible infrastructure and fractured liquidity that places a huge burden on app builders and end users to manage. The chain abstraction vision is that apps should just work with all chains, onboarding should be seamless, and things like gas fees and bridging should become invisible to end users. 

- - - -

Data availability and NEAR DA play an important role in chain abstraction. As zero-knowledge technology enables unification of security across chains via state proofs, as described in the chain abstraction deep dive post linked above, settlement data will be easier to fetch from different networks. As dapps become truly multichain thanks to account aggregation and decentralized frontends, they can query data from multiple chains more easily when data is all posted in one place. Doing so on NEAR will be much cheaper for rollups.

- - - -

How is NEAR DA Implemented?

- - - -

NEAR DA leverages an important part of NEAR’s consensus mechanism, known as Nightshade, which parallelizes the network into multiple shards (essentially, multiple parallel blockchains). Each shard on NEAR produces a small portion of a block, which is called a chunk. These chunks are aggregated to produce blocks. All of this happens entirely at the protocol level and so is invisible to users and developers.

- - - -

NEAR DA uses this infrastructure to an ETH rollup’s benefit. When a chunk producer processes a receipt, there is consensus around the receipt. However, once the chunk has been processed and included in the block, the receipt is no longer required for consensus and can be pruned from the blockchain’s state. The pruning time is at least 3 NEAR epochs, where each epoch is 12 hours. In practice, this is usually around 5 NEAR epochs, so data is available in the network for around 60 hours. Once the receipt is pruned, it is the responsibility of archival nodes to retain the transaction data. 

- - - -

This means that NEAR doesn’t slow down its consensus with more data than it requires, yet any user of NEAR DA would have ample time to query transaction data. The advantage this architecture provides to rollups is cost-effective data availability, especially to those with high transaction volume, such as gaming chains. 

- - - -

NEAR DA provides an out-of-the-box solution for developers, making it easy for rollup builders to make the most of NEAR’s infrastructure––which has 3+ years of proven reliability behind it. The Pagoda engineering team has already built three important components that are open-source and ready to be integrated into any OP Stack, Polygon CDK, or Arbitrum Nitro rollups:

- - - -
    -
  • The Blob Store Contract: A contract that stores arbitrary data.
  • - - - -
  • Light Client: A trustless off-chain client that provides easy access to transaction and receipt data.
  • - - - -
  • RPC Client: A client to publish data blobs to the NEAR Protocol.
  • -
- - - -

Rollup builders looking to work with a cloud-like service could also leverage NEAR DA’s rollup-as-a-service (RaaS) providers (list provided here), in order to utilize these three components all in one place in a more abstracted manner. 

- - - -

What’s next? The Future of NEAR DA and Data Availability Sharding

- - - -

Another advantage NEAR’s sharding approach offers to users of NEAR DA is the future scaling roadmap. The NEAR Protocol Engineering team recently announced the move towards stateless validation, the next phase of sharding. This will further decrease the hardware requirements of certain types of validators (chunk validators) and move the state into memory, which will allow for more shards and increase the decentralization in the system by lowering the requirements to become a validator in the system. 

- - - -

This means that the number of shards will increase, greatly increasing the overall throughput of the NEAR Protocol. While NEAR is already fast, with 4 MB/s per shard with 4 shards, scaling towards n shards means that rollups, applications, and any other project or developer using NEAR will not have to compete for blockspace. This is a major contrast to the scaling limits of both monolithic systems as well as the modular ETH ecosystem and offers a substantial future-proof for anyone building on NEAR, including users of NEAR DA.

- - - -

As the NEAR Protocol starts increasing the number of shards to n, the amount of data that has to be stored for a single shard decreases. Eventually, in theory every account on NEAR Protocol could potentially become its own shard. This allows running very light RPC nodes that would only track the shard that a given user is interested in. 

- - - -

For L2s that use NEAR DA, this would mean running an in-memory RPC client that would only track the shard that your data blob contract is in for your retention period (for fraud proofs), or for a given interval of time (retention is configurable on the RPC nodes). Instead of relying on data availability sampling (DAS), a rollup can rely on its own shard by running a lightweight RPC through Data Availability with Sharding. The additional benefit here is that the RPC is also applying the chunks they are tracking, essentially acting as a validator without participating in the consensus, as opposed to statistical confidence with DAS. 

- - - -

While Data Availability Sharding remains in the research phase of development, it shows the major advantages the NEAR Protocol design offers to many kinds of builders and ecosystems. As the Web3 space pursues mainstream adoption, the scalability hurdles of the first ten years of Ethereum will seem minor, and it is not clear that modularity alone will solve the problem. The NEAR ecosystem’s goal of mainstream adoption of Web3 means the network is available for all builders to use for creating great applications and delivering the next generation of the internet.

- - - -

Fast, Cost-Effective DA is NEAR

- - - -

As Web3 adoption grows and as the number of rollups continues to climb, the need to scale the modular scalability solutions becomes greater. NEAR offers its innovative, reliable technology as a data availability solution for rollups that can save time and money while future-proofing projects for an increasingly multichain (and cross-chain) future. The bleeding-edge research driving the future development of NEAR DA will provide rollups with even more advantages over time. Interconnecting and defragmenting Web3 via chain abstraction will be a major theme of 2024 and utilizing NEAR DA puts rollups at the forefront of this evolution.

- - - -

-

The post Why NEAR Data Availability? appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR DA Integrates with Polygon CDK for Developers Building Ethereum ZK Rollups  - /blog/near-da-integrates-with-polygon-cdk-for-developers-building-ethereum-zk-rollups/ - - - Thu, 18 Jan 2024 15:09:34 +0000 - - /?p=21162 - - The NEAR Foundation and Polygon Labs announced today that the latest technical integration for NEAR DA’s efficient and highly scalable …

-

The post NEAR DA Integrates with Polygon CDK for Developers Building Ethereum ZK Rollups  appeared first on NEAR Protocol.

-]]>
- The NEAR Foundation and Polygon Labs announced today that the latest technical integration for NEAR DA’s efficient and highly scalable data availability is now available for Polygon CDK, the tech stack that allows developers to launch their own ZK-powered Layer 2s custom-fitted to their needs.

- - - -

The NEAR Data Availability layer (NEAR DA) is a highly efficient and robust data availability layer, designed to help Ethereum rollup builders simplify their network and lower costs, while ensuring they can scale like the NEAR Protocol. Polygon CDK is a simple-to-build L2 stack and a scaling solution for Ethereum that lets developers build custom L2 chains with their own configurations. Builders can enjoy customisable features (transaction costs, native token, throughput), while still enjoying familiar EVM-compatibility and trustless security. 

- - - -

With the latest NEAR DA integration, rollups can benefit from cheaper data availability costs to significantly reduce their overall rollup overheads. This is especially relevant considering data publishing costs are at all-time highs for L2s.

- - - -

NEAR DA paves the way for modular blockchain development

- - - -

This integration empowers rollup builders on Polygon CDK to use NEAR DA as a complete, out-of-the-box modular DA solution. 

- - - -

“We’re excited to make NEAR DA available to Polygon CDK rollup builders and share the benefits of cost-effective, lightning-fast data availability that scales with NEAR’s sharding for the modular Ethereum ecosystem,” said Illia Polosukhin, Co-Founder of NEAR Protocol. “This is another exciting collaboration between NEAR Foundation and Polygon Labs to drive Chain Abstraction and create better experiences for developers and users.”

- - - -
As of December 2023, 231 kB of calldata on NEAR costs $0.0016, while the same calldata on Ethereum L1 costs users $140.54  and on Celestia costs users $0.046.
- - - -

- - - -

NEAR DA helps developers reduce costs and enhance their rollup’s reliability, while maintaining the security guarantees provided by Ethereum. Another upside to NEAR DA is that high quality projects launching an app-chain or L2 will be able to get out-of-the-box NEAR DA compatibility and support.

- - - -

- - - -

Develop ZK L2s within the Polygon CDK ecosystem enabled by NEAR DA

- - - -

The NEAR-Polygon CDK integration allows developers building their own rollups to be part of the Polygon ecosystem, a network of blockchains which includes Polygon PoS, Polygon zkEVM and Polygon CDK-enabled blockchains. This is the first NEAR DA integration with a ZK-based L2 stack, increasing optionality for developers looking for scalable DA solutions. 

- - - -

This integration also builds upon the NEAR-Polygon research collaboration to build zkWASM, a new type of prover for WASM blockchains. In the future, builders could even create zkWASM chains built on NEAR DA. Together, NEAR DA and zkWASM technology will play significant roles in scaling EVM and Wasm ecosystems in parallel while maximizing interoperability for a multi-chain future. 

- - - -

Interested teams who want to work with NEAR DA are invited to fill out this form, with information about your project and how you would like to integrate with NEAR DA.

-

The post NEAR DA Integrates with Polygon CDK for Developers Building Ethereum ZK Rollups  appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR Q4 Protocol Roadmap Update - /blog/near-q4-protocol-roadmap-update/ - - - Fri, 12 Jan 2024 19:23:37 +0000 - - - - - - - /?p=21155 - - TLDR: 2023 saw major experience improvements via meta transactions and zero-balance accounts, as well as node performance improvements and optimizations. Preparations are underway for a major upgrade to stateless validation, completing Phase 2 of the sharding roadmap in early 2024.

-

The post NEAR Q4 Protocol Roadmap Update appeared first on NEAR Protocol.

-]]>
-
By Bowen Wang, Director of Protocol

In this post, the NEAR Protocol work group would like to provide an update of the protocol roadmap to show what we accomplished in 2023 and what is planned for 2024.

- - - -

TLDR: 2023 saw major experience improvements via meta transactions and zero-balance accounts, as well as node performance improvements and optimizations. Preparations are underway for a major upgrade to stateless validation, completing Phase 2 of the sharding roadmap in early 2024.

- - - -

What we accomplished in 2023

- - - -

There were a total of six protocol upgrades in 2023 which introduced a number of new protocol features. Meta transactions were added as a protocol feature at the beginning of the year to support gasless transactions, which means that users can transact on NEAR and start using apps without necessarily needing to pay transaction fees in NEAR. We also added zero-balance accounts, an important feature that enables users to create an account without holding NEAR to pay for storage. This makes it easy to onboard new users to applications. These two features form a solid foundation for a seamless onboarding experience for end users — a top goal for NEAR overall.

- - - -

In addition to easy user onboarding, we have also been working hard to optimize the performance of NEAR. Flat storage, which was released in Q2 this year, optimized state reads and improved the stability and performance of the network overall. Another feature that optimizes NEAR nodes is cold storage, which allows for a split between hot and cold storage for a node. This means an archival node does not need to store most of the historical data on SSD and therefore can save a lot on cost. We also optimized the network communication between validator nodes by introducing the tier1 network, which reduces the latency of network messages between two validator nodes. Furthermore, we improved state sync and reduced the time it took a node to synchronize the latest state. We have also worked on improving the stability and maintainability of contract runtime with initiatives like finite wasm and limited replayability.

- - - -

There are a few major initiatives that we started this year and expect to finish next year, such as stateless validation, congestion control, and transaction priority. We will dive deeper into those in the section below.

- - - -


Plans for 2024

- - - -

There are a few major projects that we want to deliver in 2024 to improve the usability, scalability, and decentralization of NEAR Protocol:

- - - -
    -
  • Stateless validation. Stateless validation is a major initiative that we have been working on for a few months. It adjusts the original Nightshade sharding design to avoid implementing fraud proofs while improving the performance of each shard significantly by putting state in memory. The stateless validation work is expected to be delivered in Q2 2024, which would also mark the completion of the original goal we set for Phase 2 of sharding. We expect the launch of stateless validation to also dramatically increase the throughput of each shard and prepare NEAR for the continued growth of usage.
  • - - - -
  • Congestion control and transaction priority. While NEAR’s sharding design is horizontally scalable, it is important to provide a good user experience when there is short-term congestion on the network. This includes localizing congestion so that gas price increase does not affect the entire network and allowing users to prioritize their transactions during congestion if they are willing to pay more in transaction fees.
  • - - - -
  • Support for account aggregation. Account aggregation allows a user to control accounts on different chains with one NEAR account, an important pillar of the chain abstraction vision for NEAR. It requires chain signatures, which does MPC to sign payload. This requires a new runtime API to facilitate the asynchronous nature of chain signatures.
  • - - - -
  • zkWASM. We have been working on zkWASM with the Polygon team for a few months and the work will continue in 2024. The goal is to build a prover for WebAssembly smart contracts. This could be used as a part of the initiative to prove the state transition of NEAR in a ZK proof. Moreover, zkWASM also provides wasm as an alternative execution environment to EVM for L2s.
  • - - - -
  • Data availability improvements. We launched NEAR DA in early November 2023 and there are a few things that we plan to work on to further improve the efficiency of NEAR DA. Those improvements include introducing KZG commitment to avoid having data availability fraud proofs, as well as real-time bridging to allow verification of data availability on Ethereum.
  • - - - -
  • Ethereum wallet support. Supporting wallets like MetaMask natively on NEAR allows us to attract more users to NEAR and also be more Ethereum aligned. This requires changes to the protocol to support Ethereum addresses natively and support processing of RLP serialized Ethereum transactions.
  • - - - -
  • Research into the future of sharding. There are two major directions of exploration: synchronous sharding and ZK-centric sharding. Synchronous sharding enables synchronous execution of smart contracts and addresses the developer experience pain point of having to deal with asynchronous execution. ZK-centric sharding leverages zero-knowledge proofs to validate state transition of different shards and improves the scalability and decentralization of the protocol. In addition, we will also research the next and final phase of sharding: dynamically adjusting the number of shards based on usage.
  • -
- - - -

The roadmap can be seen below for those interested in more timeline specifics. It is split into two parts: Experience and Core. The Experience section encompasses user and/or developer experience and the protocol features needed to enable those experiences. As an example, synchronous execution addresses the pain point that developers feel when they implement cross-contract calls.

- - - -
- - - -


The Core section, on the other hand, covers major efforts to improve the scalability and decentralization of the protocol. This includes stateless validation, zkWASM, improvements to data availability, and so on.

- - - -
- - - -



As always, the protocol team is proud to have made several important improvements to the core protocol with zero disruption for users and developers. We look forward to making some major advancements in 2024 to help the entire NEAR ecosystem deliver its vision of mainstream adoption of an Open Web, where all internet users can control their own data, assets, and power of governance. 

We will share more details on Phase 2 advancements and timelines soon. If you’d like to learn more, join the NEAR Protocol X Spaces on Tuesday, January 16 at 5pm UTC to hear from Director of Protocol Bowen Wang and NEAR Foundation CEO Illia Polosukhin on upcoming protocol developments.

-

The post NEAR Q4 Protocol Roadmap Update appeared first on NEAR Protocol.

-]]>
- - - -
- - Check Out the Pagoda Product Roadmap - /blog/check-out-the-pagoda-product-roadmap/ - - - Thu, 19 Oct 2023 14:00:00 +0000 - - - - /?p=20986 - - Over the past year, Pagoda has been working hard to build out the B.O.S, evolve near.org, and continue developing the …

-

The post Check Out the Pagoda Product Roadmap appeared first on NEAR Protocol.

-]]>
- Over the past year, Pagoda has been working hard to build out the B.O.S, evolve near.org, and continue developing the NEAR protocol. While Pagoda has built and launched proprietary services in the past, almost all of our work so far in 2023 and planned for the future is free open-source software,  which we intend to become vital parts of the NEAR ecosystem. We want the community to be aware of, excited by, and engaged in this work. 

- - - -

So I’m excited to announce that Pagoda is making its product roadmap public this week via GitHub. It’s honestly a bit overdue. Given our values of transparency and collaboration, we hope to involve more members of the community in the development process. We also hope this lets teams across the NEAR ecosystem plan ahead a bit better, build in parallel to Pagoda, and even get ideas for what to build based on what you feel is missing or should be prioritized. 

- - - -

Right now this roadmap covers the rest of 2023 and we are committing to update the roadmap at least quarterly. The roadmap on GitHub is arranged into several views covering both the company objectives (OKRs) as well as larger workstreams (initiatives). We’ve further organized our roadmap views by product vertical and priority level, along with status and expected delivery date (which the product leads will update in real time). You may see some roadmap items displayed as “private”; this is because certain partnerships and enterprise workstreams must remain under NDA or embargo until launch. The Pagoda team will continue to iterate on this roadmap tool to make it an even richer resource for ecosystem partners and the NEAR community.

- - - -

Delivering on the Open Web vision will take contributions far beyond Pagoda and we look forward to working alongside those who are as passionate about NEAR as we are. Please explore and leave comments or questions on the NEAR Social post – or on the roadmap itself – if you have feedback. 

- - - -


-Eric Winer, CTO Pagoda

-

The post Check Out the Pagoda Product Roadmap appeared first on NEAR Protocol.

-]]>
- - - -
- - Embracing Decentralization: What’s Next for the NEAR Wallet - /blog/embracing-decentralization-whats-next-for-the-near-wallet/ - - - Wed, 12 Jul 2023 16:30:00 +0000 - - - - /?p=20715 - - When NEAR Mainnet launched in late 2020, it included a wallet built and hosted by Pagoda’s (then known as Near …

-

The post Embracing Decentralization: What’s Next for the NEAR Wallet appeared first on NEAR Protocol.

-]]>
- When NEAR Mainnet launched in late 2020, it included a wallet built and hosted by Pagoda’s (then known as Near Inc.) core team on https://wallet.near.org/ to support NEAR’s unique account model. Nearly three years later, the NEAR wallet ecosystem is home to a myriad of high quality, open source wallets supported by NEAR’s community of active contributors. This significant milestone reflects NEAR’s ongoing commitment to empower users and foster decentralization. The evolution of NEAR wallets also showcases the substantial growth of the ecosystem, as NEAR now supports a diverse list of cross-chain wallets, as well as native wallets with innovative onboarding approaches such as FastAuth.

- - - -

To celebrate these excellent contributions from across the NEAR community, and to reflect the priority of decentralization, over the next few months Pagoda will start migrating the domain https://wallet.near.org/ from being a browser wallet to being a wallet hub. In this way, https://wallet.near.org/ will become the reference place for all NEAR wallets, allowing users to discover and implement the right wallets for their specific needs.

- - - -

If you currently use https://wallet.near.org/ as your main wallet, you have nothing to worry about. The Pagoda team has been working hard to build a Wallet Transfer Wizard to help you transfer your accounts to a new wallet easily and smoothly, while keeping your funds and assets safe. The Transfer Wizard will allow you to choose between Browser and Extension-based wallets, so you will still have the same friendly wallet experience you are accustomed to after the Wizard is finished.

- - - -

For more details, visit the Migrating from NEAR Wallet page. 

- - - -

Timeline for transitioning the main wallet domain 

- - - -

The NEAR Wallet will remain a browser wallet until January 1st, 2024, during which time the wallet will encourage and help you to transfer your accounts to a new wallet. You can do this manually with your recovery phrase or use the Transfer Wizard to securely migrate your accounts to the wallet of your choice. 

- - - -

Do not worry if you have not transferred your accounts by January 1st, 2024 the Transfer Wizard will still be available after the wallet functionality sunsets. Rest assured that your assets will remain secure until you import them to a new wallet.

- - - -

The Transfer Wizard will remain available on the new wallet landing page at wallet.near.org indefinitely. This repurposed page will act as an introduction to the various options for wallets in the NEAR ecosystem.

- - - -

A new era for NEAR Wallets

- - - -

This new step moves NEAR closer to achieving a truly decentralized ecosystem driven by its own community. Thanks to the wallet hub and the wallet selector (which enables the use of any compatible NEAR wallet in web applications), users will now be able to use any wallet they like. This will not only improve their experience on NEAR, but also the full spectrum of available Web3 experiences thanks to the BOS.

-

The post Embracing Decentralization: What’s Next for the NEAR Wallet appeared first on NEAR Protocol.

-]]>
- - - -
- - Vistara Lands in the NEAR Ecosystem for Seamless Base Layer Roll-up Deployment - /blog/vistara-lands-in-the-near-ecosystem-for-seamless-base-layer-roll-up-deployment/ - - - Fri, 07 Jul 2023 14:00:00 +0000 - - - - - /?p=20704 - - NEAR is welcoming Vistara, the groundbreaking rollup deployment framework, into the fold. Vistara is set to seamlessly integrate with the …

-

The post Vistara Lands in the NEAR Ecosystem for Seamless Base Layer Roll-up Deployment appeared first on NEAR Protocol.

-]]>
- NEAR is welcoming Vistara, the groundbreaking rollup deployment framework, into the fold. Vistara is set to seamlessly integrate with the BOS for the end-to-end, multi-chain deployment of rollups. This alliance will accelerate the pace of blockchain innovation, making rollup deployment faster, more efficient, and accessible across multiple chains for all developers.

- - - -

Vistara stands out as a game-changing one-click rollup deployment framework that simplifies creating application-specific rollups across multiple blockchains. Streamlining the intricate rollup deployment process into a straightforward, single-click operation, Vistara will build a front-end on the BOS to make user-friendly, multi-chain rollup deployment a reality.

- - - -

Simplifying multi-chain roll-ups with Vistara on the BOS 

- - - -

Existing frameworks such as Cosmos SDK and Substrate have sought to streamline certain software components in decentralized applications but often leave developers tied to one ecosystem that they must completely understand and master. Vistara will now present a unique solution by combining the BOS with backend chains like Ethereum and Celestia.

- - - -

Vistara’s emphasis on simplifying rollup component creation aligns with NEAR’s vision of user-centric decentralization and a serverless Web3. With this new BOS front-end integration, developers in the NEAR ecosystem and beyond can now build and deploy rollups in one convenient location.

- - - -

The result will be a user-friendly design that makes the deployment of a rollup as simple as selecting an option from a dropdown menu. The integration will also encourage a wider range of developers to build with rollups on the BOS with any chain, leading to a more diverse pool of innovations and robust growth.

- - - -

Vistara’s integration not only simplifies the process but also expands the scope for innovation. It demystifies rollup creation, making it accessible to a broader range of developers. This inclusivity fuels a more diverse pool of applications, fostering growth and vibrancy within the NEAR ecosystem.

- - - -

Vistara and BOS breaking base layer building barriers

- - - -

Developing decentralized applications on base layers can be a complex process. Coordination of node operators, high costs, and extended development times are among the major challenges. However, Vistara is designed to confront these issues directly, streamlining the process and fostering efficiency.

- - - -

Rollups — technologies that bundle or ‘roll up’ side-chain transactions into a single transaction — provide an effective solution. They help developers bypass the difficulties associated with building decentralized networks. Vistara leverages this rollup technology, pushing the NEAR ecosystem towards application-specific rollups. 

- - - -

The solution effectively untangles the complexities tied to base layer dependencies, forging a development environment on the BOS that stretches beyond traditional base layer confines. With Vistara, multi-chain developers can now bring their applications to life more swiftly and efficiently than ever before.

- - - -

To sum up, Vistara’s user-friendly, multi-chain rollup deployment capabilities on the BOS will have a huge impact on the NEAR ecosystem and beyond. The integration will take much of the complexity out of rollup deployment for anyone, helping Web3 creators, builders, and developers bring their applications to life faster than ever.

-

The post Vistara Lands in the NEAR Ecosystem for Seamless Base Layer Roll-up Deployment appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR Teams With Google Cloud to Accelerate Web3 Startups - /blog/near-teams-with-google-cloud-to-accelerate-web3-startups/ - - - Tue, 04 Oct 2022 12:02:24 +0000 - - - - /?p=18589 - - NEAR Foundation is excited to announce a new partnership between Google Cloud and NEAR Protocol. Going forward, Google Cloud will …

-

The post NEAR Teams With Google Cloud to Accelerate Web3 Startups appeared first on NEAR Protocol.

-]]>
- NEAR Foundation is excited to announce a new partnership between Google Cloud and NEAR Protocol. Going forward, Google Cloud will provide technical support for NEAR grant recipients. Open and developer-friendly, Google Cloud will support devs as they build and scale their Web3 projects and dApps.

- - - -

If you’re developing on NEAR, this is great news—the partnership will supercharge blockchain innovations. Developers will even more easily create without limits as they build dApps and help onboard the masses into Web3. 

- - - -

“We are thrilled to be collaborating with those who pioneered the Internet as we know it,” says Marieke Flament, CEO of the NEAR Foundation. “This partnership marks a new chapter for us as we continue to offer the best support possible for the next generation of visionaries choosing to build on the NEAR protocol.”

- - - -

Powering NEAR developers with Google Cloud

- - - -

In the last year, NEAR has grown exponentially thanks to its super-fast, incredibly secure, and infinitely scalable protocol. There are now over 20 million accounts, 200 million transactions to date, and 300,000 to 400,000 transactions per day on the NEAR network. Building upon the momentum of NEARCON 2022, which showcased the NEAR ecosystem’s vibrancy, 800 projects are now building on the protocol. 

- - - -

How will the hundreds of projects currently building on NEAR benefit from the Google Cloud partnership? 

- - - -

Google Cloud provides the infrastructure for NEAR’s Remote Procedure Call (RPC) node provider to Pagoda, NEAR’s Web3 startup platform. This allows developers to deploy code quickly, securely, and seamlessly. Pagoda helps developers easily and rapidly launch dApps on NEAR through a library of pre-audited templates and auto-generated contract user interfaces.

- - - -

 “We will be supporting NEAR and giving Web3 developers the most secure, reliable, and sustainable cloud infrastructure on which they can build and scale,” Carlos Arena, Director of Digital Assets at Google Cloud. “We continue to support tomorrow’s leaders in creating new products and services on blockchain-based platforms.”

- - - -

For more information on how Google Cloud is working to support Web3 innovation, check out Google Cloud’s Digital Assets blog

-

The post NEAR Teams With Google Cloud to Accelerate Web3 Startups appeared first on NEAR Protocol.

-]]>
- - - -
- - Hacking a New World with MetaBUILD III - /blog/hacking-a-new-world-with-metabuild-iii/ - - - Thu, 01 Sep 2022 20:55:58 +0000 - - - /?p=18193 - - UPDATE: MetaBUILD III’s Pre-Accelerator Program has some new details. Scroll down to the “After the Hack” section for more information.   …

-

The post Hacking a New World with MetaBUILD III appeared first on NEAR Protocol.

-]]>
- UPDATE: MetaBUILD III’s Pre-Accelerator Program has some new details. Scroll down to the “After the Hack” section for more information.  

- - - -

Six months ago, NEAR wrapped up the MetaBUILD 2 hackathon just as the world shut down. New challenges emerged, both inside and outside the NEAR ecosystem. The crypto market itself was seemingly falling apart, and everyone was talking about the looming “Crypto winter”. It was clear that in order to continue, a new, creative approach would be necessary.

- - - -

NEAR was founded during some of the gloomiest times of the previous “Crypto winter”, so at least some of this was already familiar territory. In fact, NEAR’s resilient design was informed by the uncertainty in the markets surrounding its release. This resilience is not just evident in the technology, but it can also be seen throughout the ecosystem. 

- - - -

To maintain the health of its vibrant community, NEAR focused the aim of its hackathons towards a broader, more ambitious journey for participants—what if these hackathons could foster each team from ideation all the way to forming a Web3 start-up with a market-ready product?

- - - -

MetaBUILD III: A Bigger, Better Impact

- - - -

MetaBUILD is considered one of the biggest hackathons in the blockchain community. With a $1 million in prizes pool, nearly 4,000 participants, and more than 350 submissions from across the world, it has helped realize ideas from streaming tokens to metaverse worlds. In fact, some of these winners will be featured at NEARCON in September, so the community can listen to their stories and learn from their challenges.

- - - -

This year, MetaBUILD III returns with its $1 million in prizes, with registrations opening today and submissions starting September 23rd. But participants should expect to see the hackathon’s format evolve. It’s shaping it up to become an 8-week product-oriented incubation program, hosted by Pagoda, focused on supporting teams beyond the prize money, towards securing funding, and producing a market-ready prototype. Here’s what else is new:

- - - -
  • Instead of the Welcome track (for newly created projects), a Web2 track will be established to help existing teams integrate NEAR blockchain into their current products.
  • Only newly created or substantively modified projects are allowed to enter the Native track to ensure that participants are committed to remaining in the ecosystem even after they win. Proofs of concept projects built during NEARCON’s 48hs IRL hackathon are welcome to join MetaBUILD. 
  • Challenges instead of bounties: MetaBUILD III is looking for sustained product teams who understand their market and are committed to building solutions addressing some of the most pressing challenges of today: rising unemployment, the energy crisis, refugee crises, climate change, access to education and other resources, media censorship, etc.
- - - -

This shift in perspective centers on an understanding of how impactful $1 million could be in the right hands. It is not only about proving great ideas, but growing them as products that can make a long-term impact in the ecosystem and beyond!

- - - -

Ways to MetaBUILD

- - - -

Whether you are a solo hacker or an ecosystem partner, there are several ways to participate in MetaBUILD III:

- - - -
  • As a developer
- - - -

Incubate your project from idea to an MVP in 8 weeks. Find some talented teammates, and win $20-60k to continue building. 

- - - -

Learn more >

- - - -
  • As a non-technical person
- - - -

Pivot your career into Web3, and join one of the teams as a designer, bizdev expert, product manager, or copywriter to build a winning project together.

- - - -
  • As a NEAR community member
- - - -

Host a workshop, share your success story, or provide mentorship to participants. 

- - - -

Learn more >

- - - -
  • As a Web3 company or VC
- - - -

Spread the word about MetaBUILD in your community, apply to become a mentor or a judge, or host an IRL event to inspire and support the MetaBUILD community. 

- - - -

Learn more > 

- - - -

To help fuel the ideas for the next big wave in Web3, a whole educational program will be added to the incubation process:

- - - -
  • The Education team behind NEAR University will provide self-paced NEAR workshops.
  • Team Docs will present their Zero to Hero tutorials to make sure the onboarding process is streamlined for everyone. 
  • The Pagoda team is already hosting monthly Developer Tooling meetings to demonstrate the features and capabilities of their latest releases.
- - - -

After the Hack: Pre-Accelerator Program from Pagoda and Startup Wise Guys

- - - -

This time, MetaBUILD is not just about building a quick project for competition. The new challenge is for developers to join and build a new product that can hit the market and make a long-term impact on the NEAR ecosystem. From MVP in the hack, to a first market release in the pre-accelerator program, MetaBUILD III is designed to get devs the resources they need to get there with a solid foundation.

- - - -

Of the winning submissions, 30 MetaBUILD projects will be welcomed to a pre-accelerator program hosted by Pagoda and Startup Wise Guys. Projects will have access to a roster of talented NEAR ecosystem mentors, who will support them in their early stages as projects focus on the key components of their business and idea. NEAR mentors will also help winning submissions develop go-to-market strategies with clear goals and propositions, acquire their first customers, operate sustainably for the long term, and attract investment with our roster of talented NEAR ecosystem partners, amongst other things. 

- - - -

Ultimately, the pre-accelerator program will help projects prepare to successfully apply for full-time accelerator programs or first-round investment opportunities. 

- - - -

The “We” in Web3

- - - -

Navigating a bear market is a sobering experience, but it is also an inspiring one, because Web3 is ready to face new challenges, new audiences, and new use cases. All it needs are open minds, ambitious ideas, and a willingness to work together to change the world—one decentralized project at a time.

- - - -

Ready to hack the ever changing world? Build your next project on NEAR. MetaBUILD III is here to guide you from idea to market, and beyond. We have the expertise, the funds, and the drive to face new challenges together.

- - - - -

The post Hacking a New World with MetaBUILD III appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/category/developers/index.html b/public/blog/category/developers/index.html deleted file mode 100644 index 6868d7e44..000000000 --- a/public/blog/category/developers/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Developers Archives – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/developers/page/2/index.html b/public/blog/category/developers/page/2/index.html deleted file mode 100644 index d118fd6d5..000000000 --- a/public/blog/category/developers/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Developers Archives – Page 2 of 9 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/developers/page/3/index.html b/public/blog/category/developers/page/3/index.html deleted file mode 100644 index b79408b7b..000000000 --- a/public/blog/category/developers/page/3/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Developers Archives – Page 3 of 9 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/developers/page/4/index.html b/public/blog/category/developers/page/4/index.html deleted file mode 100644 index f0f615a94..000000000 --- a/public/blog/category/developers/page/4/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Developers Archives – Page 4 of 9 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/developers/page/5/index.html b/public/blog/category/developers/page/5/index.html deleted file mode 100644 index a468031cc..000000000 --- a/public/blog/category/developers/page/5/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Developers Archives – Page 5 of 9 – NEAR Protocol
<- Back to all posts

Category: Developers

75 posts
Developers
January 13, 2020

We’re pausing Stake Wars

Developers
November 25, 2019

Stake Wars Week 3 Retro

Developers
November 18, 2019

Stake Wars Week 2 Retro

Developers
November 11, 2019

Stake Wars First Week Retro

Developers
September 10, 2019

Long Range Attacks, and a new Fork Choice Rule

Developers
August 9, 2019

Randomness in blockchain protocols

Developers
July 25, 2019

Announcing the IDEO + CoinList Hackathon

\ No newline at end of file diff --git a/public/blog/category/developers/page/6/index.html b/public/blog/category/developers/page/6/index.html deleted file mode 100644 index 1a5b46e99..000000000 --- a/public/blog/category/developers/page/6/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Developers Archives – Page 6 of 9 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/developers/page/7/index.html b/public/blog/category/developers/page/7/index.html deleted file mode 100644 index 8817fe2b9..000000000 --- a/public/blog/category/developers/page/7/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Developers Archives – Page 7 of 9 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/developers/page/8/index.html b/public/blog/category/developers/page/8/index.html deleted file mode 100644 index 7fedb4071..000000000 --- a/public/blog/category/developers/page/8/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Developers Archives – Page 8 of 9 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/developers/page/9/index.html b/public/blog/category/developers/page/9/index.html deleted file mode 100644 index 2d240832e..000000000 --- a/public/blog/category/developers/page/9/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Developers Archives – Page 9 of 9 – NEAR Protocol \ No newline at end of file diff --git a/public/blog/category/near-foundation/feed/index.xml b/public/blog/category/near-foundation/feed/index.xml deleted file mode 100644 index 41ca17fb6..000000000 --- a/public/blog/category/near-foundation/feed/index.xml +++ /dev/null @@ -1,1006 +0,0 @@ - - - - NEAR Foundation Archives – NEAR Protocol - - /blog/category/near-foundation/ - - Thu, 08 Feb 2024 14:10:43 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - /wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Foundation Archives – NEAR Protocol - /blog/category/near-foundation/ - 32 - 32 - - - NEAR Protocol Partners With D3 To Apply For .Near Top-Level Domain - /blog/near-protocol-partners-with-d3-to-apply-for-near-top-level-domain/ - - - Thu, 08 Feb 2024 14:10:42 +0000 - - /?p=21222 - - The NEAR Foundation, in partnership with D3, a leading digital infrastructure provider specializing in domains, is applying to obtain the …

-

The post NEAR Protocol Partners With D3 To Apply For .Near Top-Level Domain appeared first on NEAR Protocol.

-]]>
- The NEAR Foundation, in partnership with D3, a leading digital infrastructure provider specializing in domains, is applying to obtain the ‘.near’ Top-Level Domain (TLD) during the upcoming ICANN application window. The collaboration will integrate D3’s interoperable digital identities into the NEAR ecosystem, enhancing utility for both users and developers.

- - - -

Integrating web domains and the existing Domain Name System (DNS) presents a significant opportunity to advance mainstream adoption of the open web. With over 356 million domains currently using the DNS and more than 5.3 billion internet users worldwide, decentralized and interoperable domains could be a game-changer. 

- - - -

The goal is to catalyze mainstream adoption by extending NEAR’s reach beyond the blockchain community to include the broader Internet infrastructure. The partnership between NEAR and D3 highlights the importance of interoperability in achieving widespread adoption of the open web, offering users and developers enhanced utility and a more expansive definition of identity.

- - - -

Users will have the ability to use a single domain for various functions, such as a website, email address, or wallet address, and will also serve verified credentials within the NEAR ecosystem.

- - - -

“We’re excited to work with D3 to secure the .near top-level domain and extend the power of NEAR accounts across the entire internet. As the functionality of NEAR accounts expands with Chain Abstraction, combining Web3 identity with existing internet infrastructure will help drive mainstream adoption,” said Illia Polosukhin, Co-Founder of NEAR Protocol and Chief Executive Officer of the NEAR Foundation.

- - - -

Merging domains and identity for an accessible open web

- - - -

D3’s patent-pending technologies enable Web3 digital identities to be interoperable with the Internet, using the DNS as a foundation. Through these interoperable, human-readable digital identities – i.e. alice.near – users can use a single domain as a website, email, or wallet address. This also opens up the potential for cross-platform usernames through verified credentials.

- - - -

For the NEAR ecosystem, this means broader utility for developers and projects building on the open web, using identities that are interoperable between the traditional Web2 internet and a decentralized open web. As D3 helps expand functionality of NEAR accounts, along with Chain Abstraction, it potentially paves the way for broader mainstream Web3 adoption.

- - - -

“In order for Web3 to accelerate its growth, it will require interoperability with existing Internet infrastructure,” says Fred Hsu, Chief Executive Officer at D3. “We’re pleased to welcome NEAR on our journey to redefine digital identity, while offering NEAR users and projects alike more utility by bringing the ‘web’ to Web3.” 

- - - -

Bringing identity innovation to the NEAR ecosystem

- - - -

The collaboration with D3 to bridge the traditional internet and the open web using domains could lead to a host of innovative use cases on NEAR, from NFTs to SocialFi. Furthermore, D3’s mission of integrating traditional internet and Web3 for utility, security, and universal access dovetails with the NEAR ecosystem’s chain abstraction initiative. Making Web3 experiences feel familiar and smooth, while abstracting the blockchain hurdles away from end users, will improve the usability of decentralized applications for mainstream internet consumers.

-

The post NEAR Protocol Partners With D3 To Apply For .Near Top-Level Domain appeared first on NEAR Protocol.

-]]>
- - - -
- - Meta Pool Launches Enterprise Node Operators Program - /blog/meta-pool-launches-enterprise-node-operators-program/ - - - Wed, 07 Feb 2024 13:59:03 +0000 - - /?p=21219 - - TL;DR: Meta Pool proudly introduces the Enterprise Node Operators (ENO) program, marking a significant milestone in institutional engagement for the …

-

The post Meta Pool Launches Enterprise Node Operators Program appeared first on NEAR Protocol.

-]]>
- TL;DR:

- - - -
    -
  • The Enterprise Node Operators program aims to onboard top-tier Institutions and companies into the NEAR Ecosystem.
  • - - - -
  • Meta Pool, the liquid staking solution built on NEAR, partnered with the NEAR Foundation to provide guidance and oversee the rollout and operation of the program.
  • - - - -
  • Enterprise Node operators contribute to marketing, community building, and financial support.
  • -
- - - -

Meta Pool proudly introduces the Enterprise Node Operators (ENO) program, marking a significant milestone in institutional engagement for the NEAR Ecosystem. In collaboration with the NEAR Foundation, Meta Pool has curated a strategic initiative that empowers top-tier companies to contribute to the NEAR community’s growth, security, and decentralization. 

- - - -

The ENO program kicked off successfully in November 2023 with a vision to establish global institutional support and foster relationships with industry leaders. Now with more than fifteen projects onboarded, the Meta Pool team is excited to spread the word and seek to further grow the program. Each participating ENO is committed to advancing the NEAR Ecosystem, focusing on key areas such as marketing, institutional growth, and financial support.

- - - -

The primary goal of the ENO program is to enhance the NEAR Ecosystem’s institutional network by forging partnerships with enterprise-grade companies. These companies, in turn, facilitate the onboarding of their partners into the NEAR community, fostering a collaborative and interconnected environment that contributes to the overall growth of NEAR.

- - - -

As the operational backbone of the program, Meta Pool plays a pivotal role in guiding and facilitating ENOs. This includes managing the distribution of staking allocated to the program. Currently, there is a substantial pool of 5,000,000 $NEAR tokens earmarked to support the staking activities of these Enterprise Node Operators.

- - - -

Here is a list of some current participating ENOs so far (note that this list will be updated as new ENOs are added to the program):

- - - -
    -
  • North Stake
  • - - - -
  • Colossus
  • - - - -
  • Luga Nodes
  • - - - -
  • Sensei Node
  • - - - -
  • DSRV Labs
  • - - - -
  • Triton One
  • - - - -
  • Stakin
  • - - - -
  • Frens Validator
  • - - - -
  • Grassets Tech
  • - - - -
  • Nodes International
  • - - - -
  • Alpha Nodes
  • - - - -
  • A41
  • - - - -
  • Money Crypt
  • - - - -
  • Stable Lab
  • - - - -
  • Alum Labs
  • -
- - - -

The launch of the ENO program signifies Meta Pool’s and the NEAR Foundation’s shared commitment to fostering institutional collaboration and expanding the influence of the NEAR Ecosystem. As the program expands, the ENO initiative aims to strengthen global partnerships, driving collective success and innovation across the decentralized landscape.

- - - -

 Please join Meta Pool in welcoming these institutions to the NEAR community. For more updates about the ENO program or to refer a participant, follow along on X at @meta_pool or visit their blog.  The Meta Pool team will also host Spaces with each ENO team during the month of February to educate the NEAR community and let enterprise partners share what they are adding to the NEAR ecosystem. 

-

The post Meta Pool Launches Enterprise Node Operators Program appeared first on NEAR Protocol.

-]]>
- - - -
- - Phase 2 of NEAR Sharding Launches - /blog/phase-2-of-near-sharding-launches/ - - - Tue, 30 Jan 2024 14:33:22 +0000 - - - - - - - /?p=21200 - - The NEAR Foundation announced today that the Protocol Work Group will launch testing for Phase 2 of Sharding this week, …

-

The post Phase 2 of NEAR Sharding Launches appeared first on NEAR Protocol.

-]]>
- The NEAR Foundation announced today that the Protocol Work Group will launch testing for Phase 2 of Sharding this week, marking a major milestone in the network’s development roadmap. Phase 2 introduces fundamental upgrades to NEAR’s core protocol architecture, enabling even greater scalability and decentralization for the network. The fourth edition of Stake Wars, an incentivized community testing initiative, will kick off on February 1.  

- - - -

NEAR’s vision of chain abstraction to facilitate broad adoption of decentralized apps requires an extremely scalable blockchain layer. From the start, NEAR has been designed to scale with demand towards mainstream adoption. A primary benefit of the new sharding implementation will be an up-to-10x speed improvement to NEAR’s already-fast transaction throughput. Sharding is NEAR’s unique approach to scaling, which partitions the blockchain into multiple parallel “shards.” Combined with NEAR already having the lowest transaction fees in Web3, this sharding upgrade positions NEAR at the forefront of Web3 in terms of both performance and scalability. Phase 2 greatly improves the network’s capacity for end user volume and is an important landmark on the road to global-scale usage of Web3. 

- - - -

“NEAR continues to make progress on bringing Chain Abstraction infrastructure that can scale to a billion users and beyond,” said Illia Polosukhin, Co-Founder of NEAR Protocol and CEO of NEAR Foundation. “The scalability improvements from stateless validation can unlock even better user experiences for more end-user applications, whether multichain DeFi-style dapps or those aimed at mainstream users.”

- - - -

Phase 2 introduces the most significant changes to the NEAR Protocol since its Mainnet launch in 2020. The biggest of these is the implementation of stateless validation: an innovative approach to state change, or the process of updating the status of all the data posted to the blockchain. Now, NEAR validators no longer have to maintain the state of a shard locally and can retrieve all the information they need to validate state changes, or “state witness,” from the network. 

- - - -

With stateless validation, NEAR can finally achieve the truest form of sharding, where shards can function mostly independently at the consensus level to improve decentralization and throughput while preserving the highest security guarantees. An added benefit is that the hardware requirements to run most validator nodes are dramatically reduced (a smaller number of “chunk proposer” validators with specialized hardware will validate blocks with state held in memory). This also paves the way for greater decentralization of the network by lowering the barrier to entry to become a validator.

- - - -

“We’re very excited about the potential for future proofing the NEAR protocol design with stateless validation,” said Bowen Wang, Director of Protocol at Pagoda. “From a research perspective, we expect that as zero-knowledge tech matures, more protocols will adopt a similar approach, where a smaller set of expensive machines execute transactions and produce proofs, while a bigger validator set validates the proofs. This will enable more unified security across networks and defragment Web3, advancing a key aspect of the chain abstraction vision.” 

- - - -

Phase 2 is a shift in direction from the original Nightshade sharding architecture NEAR launched with in 2020, bypassing some fundamental roadblocks in that protocol design around the implementation of challenges in the initial idea of Phase 2, while also unlocking additional benefits. Other network improvements in Phase 2 include in-memory trie, wherein validator nodes can load the entire state into RAM for maximized performance. This will greatly improve transaction throughput thanks to minimizing storage access. 

- - - -
Phase 2 is the third major upgrade to NEAR Protocol’s sharding since Mainnet launch in October 2020, showcasing the incredible shipping speed of the protocol engineering team.
- - - -

- - - -

NEAR users should not experience any downtime with the transition to Phase 2 and no special action is required from validators, apart from adjusting hardware specs. Through dozens of protocol upgrades since Mainnet launch, including three major upgrades, the core NEAR protocol has had 100% uptime with zero disruption for developers and end users. 

- - - -

On Thursday, February 1, Stake Wars IV: Attack of the Transactions will launch to incentivize battle testing of the new sharding architecture. Planned to run through March 31, the latest edition of Stake Wars invites community members to test features and generate traffic. For more information about participating and deeper technical detail about Phase 2, visit the Stake Wars page on Github

- - - -

With the launch of Phase 2, NEAR becomes one of the only networks in Web3 to implement stateless validation to improve scaling and paves the way for further network performance and scalability improvements in the future roadmap. A technical paper with more detail about NEAR’s new sharding design is forthcoming later in Q1. Phase 2 is expected to launch on NEAR Mainnet in May 2024.

-

The post Phase 2 of NEAR Sharding Launches appeared first on NEAR Protocol.

-]]>
- - - -
- - MetaMask Is Now Usable on NEAR via NEAR Snap 🦊🤝 - /blog/metamask-snaps/ - - - Thu, 25 Jan 2024 16:58:27 +0000 - - /?p=21186 - - NEAR is now compatible with MetaMask, one of the most popular wallets in Web3! For the first time, MetaMask users …

-

The post MetaMask Is Now Usable on NEAR via NEAR Snap 🦊🤝 appeared first on NEAR Protocol.

-]]>
- NEAR is now compatible with MetaMask, one of the most popular wallets in Web3! For the first time, MetaMask users will be able to create NEAR accounts, sign NEAR Protocol transactions, and use a host of other features natively inside the MetaMask wallet thanks to the new NEAR Snap

- - - -

The NEAR Snap was developed by HERE Wallet (led by Petr Volnov and Andrey Zhevlakov) and supported by the Banyan Collective. NEAR Snap is one of several integrations in the recently launched MetaMask Snap ecosystem, a series of apps developed by independent teams across Web3 looking to expand the functionality of the MetaMask Wallet experience. 

- - - -

The launch of NEAR Snap makes the MetaMask ecosystem more accessible to the NEAR community. While Aurora, as an EVM compatible blockchain, can already be operated inside MetaMask, NEAR Snap is the first time NEAR transactions can be supported natively in MetaMask. Snaps allows for greater interoperability between blockchains, as MetaMask is also  able to interact and sign transactions on other non-EVM chains including NEAR, Solana, Cosmos, Tezos, Bitcoin, Sui, Aptos, Algorand, and others. Innovations like Snaps contribute to creating a frictionless Web3 experience for everyone. 

- - - -

Unlocking new NEAR Capabilities 

- - - -

In its first iteration, NEAR Snap allows MetaMask users to interact directly with the NEAR Protocol, but NEAR Snap isn’t stopping there. As part of its ongoing development, the NEAR builders community plans to develop BOS components to enable web wallet-like functionalities through a set of different gateways for not just NEAR Snaps, but also for other wallets in the ecosystem. NEAR Snap is also creating an easy integration for other dApps in the NEAR Ecosystem. Dapps can start integrating with NEAR Snaps via the NEAR Wallet Selector

- - - -

How to use NEAR applications with Metamask

- - - -
    -
  1. Assuming you already have a Metamask wallet, open https://my.herewallet.app/ 
  2. - - - -
  3. Click “I Already Have An Account”
  4. - - - -
  5. Click “Metamask Snap”
  6. - - - -
  7. Confirm transactions in via Metamask extension titled “Third-party software notice”, “Connection Request”, “Installation Request”, and “Sign Message”
  8. - - - -
  9. Create a .near username / “nickname”
  10. - - - -
  11. Approve transactions asking for your public data, to add a nickname to the account, and to sign message
  12. - - - -
  13. Use any of the applications that support NEAR Snap via the “HERE Connector”: https://my.herewallet.app/
  14. -
- - - -

- - - -

FAQ

- - - -

Isn’t MetaMask already supported through Aurora?

- - - -

Yes. Aurora is an EVM compatible blockchain, which means you can switch networks to Aurora within MetaMask. However, the NEAR Snap allows you to support transactions on NEAR’s non-EVM shards.

- - - -

What does the NEAR Snap do for BOS?

- - - -

The NEAR Snap can be added to BOS gateways so that EVM + NEAR experiences can both be in one wallet. Additionally, the power of BOS can bridge the gap of a lack of GUI to provide a wallet front end for not only the NEAR SNAP but other chain SNAPs as well. 

- - - -

How is this different from the NETH implementation made by Proximity?

- - - -

NETH is a smart contract designed to enable your Ethereum account to sign transactions and remotely manage your paired NEAR account. This allows you to directly interact with NEAR decentralized applications (dApps) using your Ethereum wallet, such as MetaMask. Essentially, it acts as a proxy that facilitates Ethereum-view transactions on the NEAR network. This functions as a separate EVM network, but has many limitations. 

- - - -

On the other hand, Snap is a miniature application that allows you to create and sign regular NEAR-view transactions. These mini-applications are typically opened from the websites where the signing process is required. Within these mini-applications, you can sign, review the transaction, and perform other related actions. Nevertheless, the user cannot open them as a separate network within MetaMask and view balances independently.

- - - -

How is this different from remote accounts coming to NEAR?

- - - -

Remote Accounts are the concept that you can use NEAR to to sign transactions on other blockchains, simply put. This concept’s implementation is still under development and being discussed on Github 

-

The post MetaMask Is Now Usable on NEAR via NEAR Snap 🦊🤝 appeared first on NEAR Protocol.

-]]>
- - - -
- - An Update from the NEAR Foundation - /blog/an-update-from-the-near-foundation/ - - - Thu, 11 Jan 2024 08:01:06 +0000 - - - - /?p=21148 - - Dear NEAR Community, The NEAR Foundation’s vision has always been to help the world create a truly Open Web, giving …

-

The post An Update from the NEAR Foundation appeared first on NEAR Protocol.

-]]>
- Dear NEAR Community,

- - - -

The NEAR Foundation’s vision has always been to help the world create a truly Open Web, giving all people full control of their data, privacy, and power of governance. In 2023, the NEAR ecosystem saw remarkable progress towards this vision, with the NEAR Protocol now home to three of the top ten apps in Web3, a record number of daily users, and closer collaboration than ever with the Ethereum community.

- - - -

With the NEAR Foundation Council (NFC), we’ve conducted a thorough review of the Foundation’s activities. During this process, we heard feedback that the Foundation has not always been as effective as it could be, sometimes moving too slowly and trying to do too many things at once. Following this review, we have decided to significantly consolidate the core Foundation team to focus on a narrower and higher-impact set of activities. Over time, Foundation’s footprint will continue to contract as the ecosystem further decentralizes and various nodes drive more activity in the network and across the ecosystem.

- - - -

As part of this realignment, NEAR Foundation will reduce its team by approximately 40%, impacting 35 colleagues, primarily across the marketing, business development, and community teams. The NEAR Protocol Engineering Team at Pagoda will continue to operate as it has. The NEAR Foundation will provide support to affected colleagues during this time to help them find new opportunities in the NEAR ecosystem, the Web3 industry, and beyond. We thank each of our departing colleagues for your efforts and contributions towards our shared vision of the Open Web.

The NEAR Foundation treasury remains strong and well-managed, with over $285m fiat, 305m NEAR (worth over $1B), and $70m of investments and loans. The Foundation is well-placed to continue to support the ongoing growth, development, and further decentralization of the NEAR Protocol and ecosystem.

- - - -

Thank you to everyone in the NEAR community for your ongoing efforts and support. We are excited to move forward with more focus, more efficiency, and more speed. We’ll share more updates soon about what comes next as we work to advance chain abstraction, user-owned AI, and mainstream adoption of the Open Web.

- - - -

Keep building,

- - - -

Illia

- - - -

–Illia Polosukhin, CEO of NEAR Foundation

- - - -

-

The post An Update from the NEAR Foundation appeared first on NEAR Protocol.

-]]>
- - - -
- - Arbitrum Integrates NEAR DA for Developers Building Ethereum Rollups  - /blog/arbitrum-integrates-near-da-for-developers-building-ethereum-rollups/ - - - Thu, 21 Dec 2023 15:00:00 +0000 - - - - /?p=21140 - - The NEAR Data Availability layer (NEAR DA) was one of the most exciting announcements to come out of NEARCON ‘23. …

-

The post Arbitrum Integrates NEAR DA for Developers Building Ethereum Rollups  appeared first on NEAR Protocol.

-]]>
- The NEAR Data Availability layer (NEAR DA) was one of the most exciting announcements to come out of NEARCON ‘23. Unveiled by NEAR Protocol co-founder and new NEAR Foundation CEO, Illia Polosukhin, NEAR DA is a highly efficient and robust data availability layer, designed to help Ethereum rollup builders simplify their network and lower costs, while ensuring they can scale like the NEAR Protocol.

- - - -

The latest technical integration for NEAR DA’s efficient and highly scalable data availability is now available for Arbitrum Orbit, the tech stack that allows developers to launch their own configurable rollups based on Arbitrum’s technology.

- - - -

Arbitrum Orbit is a L2/L3 scaling solution for Ethereum that lets developers build their own dedicated chains with their own configurations. Arbitrum Orbit chains derive trustless security, while scaling Ethereum. With the latest NEAR DA integration, rollup builders could benefit from cheaper data availability costs to significantly reduce their overall rollup overheads. 

- - - -

Develop Ethereum rollups within the Arbitrum Orbit ecosystem enabled by NEAR DA

- - - -

The NEAR-Arbitrum integration allows devs  building their own rollups to be part of Arbitrum Orbit, an ecosystem of blockchains that settle onto Arbitrum or Ethereum Mainnet, while leveraging the cost effectiveness and scalability of the NEAR Protocol. 

- - - -

Arbitrum is a clear innovative leader in developing the Optimistic Rollup technology, while also operating as an L2 with the highest TVL. Arbitrum now offers its own stack to other rollups builders with Arbitrum Orbit, one step closer to decentralizing Ethereum.  

- - - -

Arbitrum Orbit chains leverage the Arbitrum Nitro tech stack, the technology that Arbitrum developed to scale Ethereum. It allows builders to create their own blockchains, which settles transactions on Arbitrum One, Arbitrum Nova, or Ethereum Mainnet if the Arbitrum DAO grants an L2 license. 

- - - -

These Orbit chains, which use Arbitrum’s Rollup and AnyTrust protocols, offer customization across throughput, privacy, gas token, and governance to cater to specific use cases and business requirements. For instance, rollup builders looking for cheaper DA alternatives can now utilize NEAR DA within the Arbitrum Orbit stack. With this, developers can build self-managed, configurable blockchains with enhanced control over its features and governance, while deriving the security guarantees of Ethereum.  

- - - -

NEAR DA paves the way for modular blockchain development

- - - -

This integration empowers rollup builders on Arbitrum Orbit to use NEAR DA as a complete out-of-the-box modular DA solution. 

- - - -

As of December 2023, 231 kB of calldata on NEAR costs $0.0016, while the same calldata on Ethereum L1 costs users $140.54

- - - -

NEAR DA helps developers reduce costs and enhance their rollup’s reliability, while maintaining the security guarantees provided by Ethereum. Another upside to NEAR DA is that high quality projects launching an app-chain or L2 will be able to get out of the box NEAR DA compatibility and support. 

- - - -

“Offering a data availability layer to Ethereum rollups highlights the versatility of NEAR’s tech while also helping founders from across Web3 deliver great products that bring us closer to mainstream adoption of the Open Web,” said Polosukhin, when announcing NEAR DA at NEARCON ‘23. 

- - - -

“NEAR’s L1 has been live with 100% uptime for more than three years, so it can offer true reliability to projects looking for secure DA while also being cost-effective,” Polosukhin added. “NEAR provides great solutions to developers no matter which stack they’re building on and now that includes the Ethereum modular blockchain landscape.”
Interested teams who want to work with NEAR DA are invited to fill out this form, with information about your project and how you would like to integrate with NEAR DA.

-

The post Arbitrum Integrates NEAR DA for Developers Building Ethereum Rollups  appeared first on NEAR Protocol.

-]]>
- - - -
- - 2023: NEAR In Review - /blog/2023-near-in-review/ - - - Wed, 20 Dec 2023 18:10:12 +0000 - - - - /?p=21133 - - by Illia Polosukhin While this was a tough year in the market, we’re closing 2023 on a higher note for …

-

The post 2023: NEAR In Review appeared first on NEAR Protocol.

-]]>
- by Illia Polosukhin

- - - -

While this was a tough year in the market, we’re closing 2023 on a higher note for Web3. The NEAR ecosystem has made great progress on many fronts.

- - - -

Here’s a recap of some highlights and accomplishments from this year and a brief look ahead at 2024.

- - - -

Year in Review

- - - -

The NEAR ecosystem has made great strides in 2023 towards realizing the vision of mainstream adoption of the Open Web in spite of tough market conditions. Four of DappRadar’s top ten apps in all of Web3 are built on the NEAR Protocol and daily active users now regularly exceed a million per day. 

- - - -

From launching the Blockchain Operating System in February to NEAR DA in November, the NEAR ecosystem is offering solutions to builders across all Web3 networks to deliver the vision of the Open Web. With 7 million monthly active accounts, 35 million total accounts overall, and a current average of over 2 million transactions per day, the NEAR ecosystem has seen substantial growth in usage this year—and keeps outpacing its peers in terms of daily usage. 

- - - -

A lot of exciting technology built on NEAR was also released this year to enable chain abstraction. At EthDenver in February, NEAR Day featured the debut of the Blockchain Operating System—a fully decentralized open web stack and common layer for browsing and discovering open web experiences. By making it easier to build and deploy decentralized on-chain frontends for any network, B.O.S. helps developers build more discoverable and resilient apps while hiding the blockchain infrastructure from users.  

- - - -

Building on the benefits of the NEAR account model, the FastAuth onboarding solution lets users create an account in seconds using only an email address and device security. App developers can subsidize gas so users can start using apps immediately upon creating their account, and they only need to set up once in order to access any app on B.O.S. The team has gotten great feedback on the beta and will share some exciting next steps early next year. 

- - - -

B.O.S. also includes NEAR QueryAPI, a fully managed, open-source, serverless infrastructure offering NEAR blockchain indexers, storage, and GraphQL endpoints. QueryAPI simplifies the indexer building experience with JavaScript and interactive debugging and eliminates the need to manage cloud infrastructure. The beta already powers 25 indexers in production.

- - - -

Beyond rollups using decentralized frontends, I shared the news of 3 exciting Ethereum alignment initiatives to offer NEAR technology to the modular Ethereum ecosystem and benefit the broader Open Web. The collaboration with Polygon Labs on a zkWASM prover will optimize the NEAR L1 and bring NEAR to the forefront of the zero-knowledge research space. 

- - - -

The Foundation is working with Eigen Labs to build a fast finality layer for defragmenting Ethereum rollups and also launched NEAR DA, a cost-efficient and data availability layer compatible with L2s offering 11,000x cheaper DA than Ethereum and 30x cheaper than Celestia.

- - - -
NEAR reached #1 in daily active users for all of Web3 to close the year, per Artemis.
- - - -
4 of the top 10 apps in all of Web3 are built on NEAR & Aurora, per DappRadar’s 30-day ranking.
- - - -

Looking Ahead

- - - -

As we look towards 2024, the ecosystem will build upon the innovations and market recognition of 2023 with some major advancements at every layer of NEAR’s open web stack, plus expand into exciting new territory on the AI and product fronts. 

- - - -

2024 is the year of chain abstraction: blockchains and other infrastructure will become increasingly invisible to users and developers. Just as we don’t need to know if a given website or app we’re using every day is running on Google or Amazon servers, most app users on the Open Web shouldn’t need to manage infra, toggling between accounts and wallets, bridging, or gas. This is the biggest barrier to mainstream adoption. 

- - - -

The NEAR ecosystem has been building for chain abstraction since the very beginning with sharding and the account model, and more recently the B.O.S., FastAuth, and ETH alignment solutions. From the user perspective the NEAR blockchain functions like a single platform, but under the hood, every account and smart contract is its own logical chain. 

- - - -

Developers today pick an ecosystem based on where they can access liquidity and users, but that will matter less if they can access users and deposit liquidity from any chain – so they can just choose the infrastructure that works best for their application. 

- - - -

A big part of advancing chain abstraction for the Web3 space is account aggregation. In order to enable users to transact across all blockchains without needing to think about underlying infrastructure or switch networks, they need a single account from which they can navigate all of Web3. In the true spirit of Web3, this single account should be non-custodial and non-dependent on a specific wallet software or any other single service provider. In addition to FastAuth, Pagoda will launch chain signatures and intent relayers to deliver the full scope of this vision in the first half of 2024.

- - - -

At the protocol level, the team will launch Phase 2 of sharding, which is a big deal. TLDR: introducing stateless validation will expand the original Nightshade design, allowing us to avoid fraud proofs. As part of this transition, the state of each shard moves fully into memory, improving performance of each shard—currently 4, soon to be 5—by 10x+. Adding zkWASM on top as the next step will compress execution proofs, enabling even greater decentralization of validators. 

- - - -

Finally, the NEAR ecosystem will make bigger strides into AI. I’ve been sharing my views on how AI and blockchains can work together with humans to improve our collective systems and individual experiences while minimizing risk and centralization. We’re working both on AI-driven governance and AI-augmented Web3 experiences to work towards the vision of user-owned AI. 

- - - -

Stay tuned for more updates and specifics in January 2024. Thank you to every member of the NEAR community for staying the course and believing in our shared Open Web vision.

-

The post 2023: NEAR In Review appeared first on NEAR Protocol.

-]]>
- - - -
- - Pyth Price Feeds Launch on NEAR Protocol Bringing Equity, Commodities, and Market Data On Chain  - /blog/pyth-price-feeds-launch-on-near-protocol-bringing-equity-commodities-and-market-data-on-chain/ - - - Thu, 30 Nov 2023 14:00:00 +0000 - - - - - /?p=21126 - - Pyth, the largest first-party provider of real-time market data for crypto, equities, FX, and commodities to more than 40 blockchains, …

-

The post Pyth Price Feeds Launch on NEAR Protocol Bringing Equity, Commodities, and Market Data On Chain  appeared first on NEAR Protocol.

-]]>
- Pyth, the largest first-party provider of real-time market data for crypto, equities, FX, and commodities to more than 40 blockchains, has launched on NEAR protocol. Pyth, whose services are used by more than 80 market participants — including Jane Street, CBOE, Binance, OKX, and Bybit — brings high-fidelity, high frequency financial market data to the NEAR blockchain natively for the first time.

- - - -

Previously, Pyth had deployed its feeds to Aurora, the EVM chain built on NEAR. But today Pyth data feeds are fully compatible with NEAR Protocol.   

- - - -

The announcement is a boon to the burgeoning DeFi ecosystem built on top of NEAR, which stands to benefit from data feeds that update every 300 milliseconds.

- - - -

While other oracle providers use third-party data providers or relayers, Pyth’s data comes from institutions directly. Additionally, Pyth does not use price triggers to prevent certain prices from being pushed. Pyth uses Confidence Intervals to ensure continuous price availability. This new metric allows projects to consume Pyth’s price feeds during the most volatile market conditions.

- - - -

The Importance of Oracles 

- - - -

Oracles are an important part of any DeFi ecosystem, since they are the information bridges between blockchains and databases. Although oracles could be built by the developers of DeFi projects, out-of-box, decentralized oracles are helpful for builders to start quickly without losing time and effort creating their own oracles. 

- - - -

“Celebrating a new era of data reliability and trust, Douro Labs is thrilled to announce the seamless integration of Pyth Network with the NEAR blockchain,” says Abhimanyu Bansal, Head of Partnerships at Douro Labs. 

- - - -

“This strategic partnership empowers developers on NEAR with real-time, accurate data feeds, and as we bridge the gap between the physical and digital worlds this integration propels us towards a future of decentralized applications that are not only secure but also truly informed.”

- - - -

Pyth has a robust network that is able to deliver price data even during sizable events. During the LUNA/UST incident in May ‘22, Pyth managed to track the LUNA price very accurately during the UST de-peg, while other networks stopped updating the price, causing inaccurate price data. 

- - - -

In less than a year since Pyth’s launch, the network secured more than $2.0B in total value. Pyth has facilitated over $70 billion in trading volume and received over a million client downloads from passionate developers. Pyth supports 350+ low-latency price feeds across digital assets, equities, ETFs, forex pairs, and commodities. 

-

The post Pyth Price Feeds Launch on NEAR Protocol Bringing Equity, Commodities, and Market Data On Chain  appeared first on NEAR Protocol.

-]]>
- - - -
- - Meet the 2023 NEARCON IRL Hackathon Winners - /blog/meet-the-2023-nearcon-irl-hackathon-winners/ - - - Wed, 22 Nov 2023 14:00:00 +0000 - - - /?p=21104 - - The wait is over! After a week of intense, dedicated work from the NEARCON hackathon judges, the winners of the …

-

The post Meet the 2023 NEARCON IRL Hackathon Winners appeared first on NEAR Protocol.

-]]>
- The wait is over! After a week of intense, dedicated work from the NEARCON hackathon judges, the winners of the 2023 NEARCON IRL Hackathon have been chosen. 

- - - -

For the NEARCON IRL Hackathon, DevHub issued travel stipends to the most experienced hackers from all around the world. From Brazil and Canada to Spain, the UK, and beyond, the best builders traveled to NEARCON to celebrate NEAR’s global ecosystem. Those hackers who choose to stick around and keep building on NEAR will be eligible to apply to NEAR Horizon’s pre-acceleration program or the accelerator itself.

- - - -

Without further ado, let’s take a look at the amazing projects that were built on NEAR. 

- - - -

Developers Track Winner: Quex

- - - -

Quex is an AI-powered NEAR Grant program treasury. A smart contract can automatically fund a project if a pre-configured ChatGPT concludes that it will satisfy the grant program criteria.

- - - -

“The idea of a fully autonomous AI-controlled treasury captivated our imagination. We envisioned a system where AI, not humans, would have the sole discretion over the allocation of funds, paving the way for an unbiased and efficient distribution of resources,” wrote Quex developers Dmitry Meshkov (3x) and Alejandro V. Betancourt (Biz Dev, Metapool / Co-founder NEAR Misfits). 

- - - -

“We aim to achieve the fully autonomous and secure DAO — even being the developers of this DAO, we should not be able to fund our own project until we get a ‘funded’ response from AI, and we’re not able to censor transactions to fund projects good enough from the chosen AI point of view.”

- - - -

More details on Quex

- - - -

Entrepreneurs Track Winner: ClickDapp

- - - -

ClickDapp, a B.O.S-powered no-code tool to easily create, customize, and deploy dApps, was the winning project for the NEARCON IRL Hackathon’s Entrepreneurs Track. 

- - - -

“ClickDapp was inspired by how easy it is to start a Web 2 company,” said developers João Veiga, Pedro Destri, and Rafaeldkb Borges. “No-code tooling empowers a set of different players, from devs to PMs, to entrepreneurs, allowing them to create and iterate on their products with zero to no difficulty, low cost, and faster development speeds.”

- - - -

“ClickDapp is a no-code builder connected to the Near BOS library, giving devs, PMs and entrepreneurs the superpower of building entire blockchain applications and products without writing a single line of code.”

- - - -

More details on ClickDapp.

- - - -

Creators Track Winner: B4B 

- - - -

An influencer-marketing protocol for Near Social Graph, B4B collects on-chain data about channel activity and enables the amplification of new and existing projects in certain NEAR communities.

- - - -

“We have built a protocol that simplifies searching, analyzing, and managing influencer marketing through Near Social Graph,” said developers Anton Pecherkin, Ann Chuhnina, Gregory Melnikov, and Aleksandr Sokolov. “Additionally, it provides new monetization opportunities for content creators and influencers in the ecosystem.”

- - - -

“B4B is a Web3-native influencer ad network that connects advertisers with influencers willing to create and publish ads on their channels. The B4B protocol protects advertisers and influencers by escrowing the budget and maintaining a transparent history of ad orders owned by users. During the NEARHACK, we connected the protocol with the Near Social Graph.”

- - - -

More details on B4B

- - - -

Regulators Track Winner: Proof-of-Reputation

- - - -

Proof-of-Reputation is a mechanism that enables any user to get a loan using their on-chain activity as collateral and accomplishing the regulator’s requirement. In other words, it’s a simple, on-chain, and transparent loan protocol for underbanked regions. 

- - - -

Small and medium-sized businesses (SMBs) are the backbone of many economies. Still, they often face challenges in accessing loans — this is especially true in underbanked regions, where people may not have access to traditional banking services,” said the developers Luis Daniel Mendez Castellanos, Irving Yair Nava Hernández, and Alan Estrada. 

- - - -

“Avoid complicated, bureaucratic, and lengthy loan application processes. All tracking is done on-chain using a Soul Bond Token,” explain the developers. “If necessary, complete anti-money laundering (AML) procedures by completing quests for proof of identity, proof of citizenship, and other requirements provided by third parties. Allow anyone in regions with limited access to banking services to get a loan.”

- - - -

More details on Proof-of-Reputation.

- - - -

Pitch Competition Winner: DeFi Builder

- - - -

Using AI, DeFi Builder allows users to effortlessly launch powerful DeFi projects without coding. Its intuitive code-less tools unlock the doors to the next DeFi entrepreneurs on NEAR and Aurora.

- - - -

“For the NEAR hackathon, we introduced an innovative feature: the AI Smart Contract Generator,” said its developers  Ravi Rasadiya, Alexe Spataru, Lorenzo Castagnone, and Daniel Morosan. “Utilizing the latest AI technology — which has been trained and fine-tuned on NEAR Rust smart contracts, JavaScript smart contracts, and Aurora EVM smart contracts — NEARAI can generate a variety of smart contracts tailored to the user’s specific requests.”

- - - -

“The platform’s design focuses on automating complex processes like smart contract deployment, while offering integration across various blockchain networks, thus streamlining the journey from concept to market-ready DeFi project.”

- - - -

More details on DeFi Builder.

- - - -

Main Track Winners

- - - -

Three winners took home prizes for the NEARCON IRL Hackathon Main Track. 

- - - -

1st Prize — Obrigado

- - - -

Obrigado allows seamless execution of heavy computational tasks, distributed across multiple computational resource providers.

- - - -

“NEAR is aiming to be the OS for an open web with the on-chain frontend (B.O.S) and backend (WASM/zkWASM),” said the developers William S, João Vasco Pestana, Igor Perić, Souheila Sidennas, and Hojay Lee. “The missing piece is a way to process heavy computes such as training a LLM or analyzing DNA data.”

- - - -

“Obrigado will allow seamless execution of heavy computational tasks, distributed across multiple computational resource providers (Task Runners), ensuring efficient processing and integrity of results, all within NEAR. Computing happens off-chain and book-keeping like job queue handling, result validation, node reputation, slashing and balances happen on-chain.”

- - - -

More details on Obrigado

- - - -

2nd Prize — Magic Build

- - - -

Magic Build is a powerful tool designed to streamline the process of generating front-end interfaces for smart contracts on the B.O.S. It will help developers on B.O.S to deploy products faster without coding. 

- - - -

“Our B.O.S Composer is a tool that helps create widget connections within the BOS ecosystem. It enables infinite scalability of nested widgets, increasing the depth and resource utilization of a website,” said the developers Hai N and Kuro Denjiro. “With B.O.S Composer, you can create multiple pages, export them as widgets, and then select and link these widgets together.” 

- - - -

“Magic Build also supports horizontal widget connections through the “self customize” section, where you can input the URL of a widget, export it, and import it to establish connections with other widgets. B.O.S Composer simplifies the process of creating widget connections, enabling the creation of intricate and resource-rich web experiences within the B.O.S ecosystem.

- - - -

More details on Magic Build.

- - - -

3rd Prize — Web3 Plugin

- - - -

A web3.jd plugin for NEAR Protocol and its ecosystem, Web3 Plugin provides the functionality of near-api-js but in the web3.js style.

- - - -

“Developers who already use web3.js can quickly start working with NEAR technology  with fewer things to read and learn,” said the developer, Muhammad Altabba. “All they need to do is provide the web3.js library with a link to a NEAR provider, add it with the plugin, then they can start working just like they are used to. Even though there will be slight differences that they’ll have to adjust for, we do our best to reduce them to the minimum.”

- - - -

More details on Web3 Plugin.

- - - -

Thanks for joining the NEARCON IRL Hackathon

- - - -

Thanks to all of the participants who joined the NEARCON ‘23 hackathon! As you can see from the winners, there was no shortage of great, cutting edge projects built on NEAR. The NEAR community and ecosystem are strong and creative because of each and every project like yours. 

- - - -

A big thank you as well to the NEARCON IRL Hackathon judges: Max Zavershynskyi (Leader, NEAR DevHub), Eric Winer (CTO, Pagoda), Alex Shevchenko (CEO, Aurora), Nate Geier (CEO, Mintbase), Laura Cunningham (General Manager, NEAR Horizon), Samantha Bohbot (Chief Growth Officer, RockawayX), Oleg Fomenko (Co-founder, Sweat Economy), Bowen Wang(Head of Protocol, Pagoda), Sandi Fatic (Co-founder, Calimero Network), Joe Spano (Co-Founder, ShardDog), MJ (Head of Product, Proximity Labs), and Diogo Monica (Founder, Anchorage Digital). 

- - - -

The NEAR Foundation and the entire NEAR community looks forward to you participating in the hackathon at NEARCON ‘24! 

- - - -

Keep hacking and building on NEAR.

-

The post Meet the 2023 NEARCON IRL Hackathon Winners appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR Tasks Launches AI Marketplace on NEAR to Revolutionize the Future of Work - /blog/near-tasks-launches-ai-marketplace-on-near-to-revolutionize-the-future-of-work/ - - - Thu, 16 Nov 2023 14:00:00 +0000 - - /?p=21096 - - The convergence of AI and Web3 captured the tech industry’s imagination in 2023 — but few ideas have actually become …

-

The post NEAR Tasks Launches AI Marketplace on NEAR to Revolutionize the Future of Work appeared first on NEAR Protocol.

-]]>
- The convergence of AI and Web3 captured the tech industry’s imagination in 2023 — but few ideas have actually become a working reality. An exciting exception is NEAR Tasks, a global gigs marketplace poised to reshape AI training while leveraging the power of NEAR blockchain. Officially launched at NEARCON 2023 with its first product beta launching this week, NEAR Tasks is a self-service platform where anyone can easily list and complete AI requests, setting a new standard for quality data labeling.

- - - -

Unlocking the Power of AI and Web3

- - - -

NEAR Tasks envisions a future where AI and Web3 technologies complement each other, fostering an ecosystem driven by transparency and efficiency. This symbiotic relationship aims to streamline task matching, review processes, and manage data quality more effectively at scale.

- - - -

Implemented on the NEAR Protocol, NEAR Tasks utilizes on-chain tasker IDs, smart contracts for automated payments, and $NEAR transactions for global payments with minimal fees. This ensures accountability, motivates high-quality outcomes, and addresses the challenge of underpaid workers in the AI sector.

- - - -

NEAR Tasks in a Nutshell

- - - -

In the age of AI, despite popular narratives about LLMs replacing a range of human jobs, human intelligence actually becomes even more important: as models get more complex, they need human expertise for fine-tuning models and increasing subject matter specialization. This user-friendly platform seamlessly connects task listing, work review, and crypto rewards, propelling AI model training into a new era through direct human feedback loops and a flexible self-service marketplace.

- - - -

For business clients and AI builders, NEAR Tasks provides a self-service, plug-and-play solution, liberating users from the constraints of costly managed service options. Blockchain integration on NEAR facilitates efficient data labeling by verified human experts, who can build reputation and get paid in real time for contributing quality work to the platform. 

- - - -

For taskers, the NEAR Tasks marketplace offers a transparent path to monetizing their skills and knowledge, unlocking new revenue streams in the ever-evolving AI labor frontier, and changing the future of digital work. There are more than a billion participants in the global on-demand gig economy today, showing the need for more opportunities as well as greater specialization for those with particular training or expertise. With more reliable identity verification for accounts, faster work review, and the ability to pay taskers with crypto, taskers can get paid more reliably and work at the pace they wish — making the gig economy more supportive to specialized workers. 

- - - -

In his introduction to NEAR Tasks at NEARCON in Lisbon, Senior Engineer Momo Araki pointed out: “There’s an interdependence for the system to work properly. You have to reform the central inspection principle wielded by task providers, and maintain sybil-resistance so workers can’t spoof the platform. It’s loosely analogous to a ‘proof-of-work’ model, where work performed well also translates to earning reputation, which leads to accessing further opportunities.” Incorporating more trust into a tasks marketplace in this way also produces better results for the AI builders and businesses trying to refine their models. 

- - - -

A Fair and Transparent Platform for AI Training

- - - -

In an AI landscape where autonomy often overshadows human involvement, NEAR Tasks recognizes the vital role of a global workforce responsible for data labeling and validation. The platform introduces on-chain digital IDs for taskers, ensuring transparency and accountability.

- - - -

Transactions exclusively conducted in $NEAR guarantee rapid global payments with minimal fees, directly confronting the issue of underpaid AI workers in what is known in the industry as “AI sweatshops.”

- - - -

“Human intelligence forms the base of artificial intelligence, and it’s time we give AI tasks the recognition they deserve as legitimate jobs in the AI economy,” says Catherine Yushina, Head of Operations at NEAR Tasks.

- - - -

AI Is NEAR

- - - -

At NEARCON 2023, NEAR Co-Founder Illia Polosukhin — an AI researcher himself and co-creator of transformers, the architecture powering today’s major LLMs like ChatGPT — named AI as one of the core verticals for the NEAR ecosystem heading into 2024. From transforming governance and business operations with AI agents to provable provenance for data and content, as well as novel marketplaces like NEAR Tasks and hybrid human-AI working environments, we’re at the very beginning of an exciting revolution that will change the ways we work, collaborate, transact, research, and govern ourselves. More news is coming before the end of 2023 to position NEAR as the leader at the intersection of AI and Web3. 

- - - -

Join the AI + Blockchain Movement

- - - -

If you want to be part of this transformative AI and blockchain convergence shaping the human intelligence market, sign up for the NEAR Tasks waitlist — currently at more than 48,000 applicants. The marketplace opens for public access in Q1 of 2024. You can also reach out to the team directly to request entry into the current Beta. Drop them an email at info@neartasks.ai to express your interest by Monday, November 20.

- - - -

For more information about NEAR Tasks, please visit https://neartasks.ai/.

- - - -

Follow along on social media:

- - - - -

The post NEAR Tasks Launches AI Marketplace on NEAR to Revolutionize the Future of Work appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/category/near-foundation/index.html b/public/blog/category/near-foundation/index.html deleted file mode 100644 index db6b6fb83..000000000 --- a/public/blog/category/near-foundation/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/10/index.html b/public/blog/category/near-foundation/page/10/index.html deleted file mode 100644 index c13dc09b4..000000000 --- a/public/blog/category/near-foundation/page/10/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 10 of 23 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/11/index.html b/public/blog/category/near-foundation/page/11/index.html deleted file mode 100644 index 210722881..000000000 --- a/public/blog/category/near-foundation/page/11/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 11 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/12/index.html b/public/blog/category/near-foundation/page/12/index.html deleted file mode 100644 index 885f8bb7a..000000000 --- a/public/blog/category/near-foundation/page/12/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 12 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/13/index.html b/public/blog/category/near-foundation/page/13/index.html deleted file mode 100644 index ef42d882f..000000000 --- a/public/blog/category/near-foundation/page/13/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 13 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/14/index.html b/public/blog/category/near-foundation/page/14/index.html deleted file mode 100644 index 987ce2f23..000000000 --- a/public/blog/category/near-foundation/page/14/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 14 of 23 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/15/index.html b/public/blog/category/near-foundation/page/15/index.html deleted file mode 100644 index d9617f450..000000000 --- a/public/blog/category/near-foundation/page/15/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 15 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/16/index.html b/public/blog/category/near-foundation/page/16/index.html deleted file mode 100644 index 84b8f60ff..000000000 --- a/public/blog/category/near-foundation/page/16/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 16 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/17/index.html b/public/blog/category/near-foundation/page/17/index.html deleted file mode 100644 index 0d4d9eb09..000000000 --- a/public/blog/category/near-foundation/page/17/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 17 of 23 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/18/index.html b/public/blog/category/near-foundation/page/18/index.html deleted file mode 100644 index 283b3fae1..000000000 --- a/public/blog/category/near-foundation/page/18/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 18 of 23 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/19/index.html b/public/blog/category/near-foundation/page/19/index.html deleted file mode 100644 index a2034bd64..000000000 --- a/public/blog/category/near-foundation/page/19/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 19 of 23 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/2/index.html b/public/blog/category/near-foundation/page/2/index.html deleted file mode 100644 index c60527836..000000000 --- a/public/blog/category/near-foundation/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 2 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/20/index.html b/public/blog/category/near-foundation/page/20/index.html deleted file mode 100644 index 970db4ad4..000000000 --- a/public/blog/category/near-foundation/page/20/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 20 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
NEAR Foundation
November 1, 2022

A Time for Conviction

NEAR Foundation
October 28, 2022

NEAR Foundation Launches New AMA Series 

NEAR Foundation
October 12, 2022

Refer-and-Earn 2022 Q2 Report 

NEAR Foundation
October 6, 2022

NEAR Funding Updates: Funding Beyond Grants

NEAR Foundation
September 12, 2022

NEARCON Highlights

NEAR Foundation
September 12, 2022

NEAR Foundation Transparency Report 

NEAR Foundation
September 11, 2022

A Year on NEAR

\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/21/index.html b/public/blog/category/near-foundation/page/21/index.html deleted file mode 100644 index 125c9b40d..000000000 --- a/public/blog/category/near-foundation/page/21/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 21 of 23 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/22/index.html b/public/blog/category/near-foundation/page/22/index.html deleted file mode 100644 index 8cbe176c6..000000000 --- a/public/blog/category/near-foundation/page/22/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 22 of 23 – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/23/index.html b/public/blog/category/near-foundation/page/23/index.html deleted file mode 100644 index 3d9b339d8..000000000 --- a/public/blog/category/near-foundation/page/23/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 23 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/3/index.html b/public/blog/category/near-foundation/page/3/index.html deleted file mode 100644 index d029f7b8e..000000000 --- a/public/blog/category/near-foundation/page/3/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 3 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/4/index.html b/public/blog/category/near-foundation/page/4/index.html deleted file mode 100644 index c7ee47be0..000000000 --- a/public/blog/category/near-foundation/page/4/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 4 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/5/index.html b/public/blog/category/near-foundation/page/5/index.html deleted file mode 100644 index c5c3d788e..000000000 --- a/public/blog/category/near-foundation/page/5/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 5 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/6/index.html b/public/blog/category/near-foundation/page/6/index.html deleted file mode 100644 index b4d438e40..000000000 --- a/public/blog/category/near-foundation/page/6/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 6 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/7/index.html b/public/blog/category/near-foundation/page/7/index.html deleted file mode 100644 index 05a4238d8..000000000 --- a/public/blog/category/near-foundation/page/7/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 7 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/8/index.html b/public/blog/category/near-foundation/page/8/index.html deleted file mode 100644 index d7317467e..000000000 --- a/public/blog/category/near-foundation/page/8/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 8 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/near-foundation/page/9/index.html b/public/blog/category/near-foundation/page/9/index.html deleted file mode 100644 index 135352dc5..000000000 --- a/public/blog/category/near-foundation/page/9/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – Page 9 of 23 – NEAR Protocol
<- Back to all posts

Category: NEAR Foundation

205 posts
\ No newline at end of file diff --git a/public/blog/category/uncategorized/feed/index.xml b/public/blog/category/uncategorized/feed/index.xml deleted file mode 100644 index d4dc9d26d..000000000 --- a/public/blog/category/uncategorized/feed/index.xml +++ /dev/null @@ -1,785 +0,0 @@ - - - - Uncategorized Archives – NEAR Protocol - - /blog/category/uncategorized/ - - Thu, 22 Feb 2024 18:19:31 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - /wp-content/uploads/2020/09/cropped-favicon-32x32.png - Uncategorized Archives – NEAR Protocol - /blog/category/uncategorized/ - 32 - 32 - - - NEAR at ETHDenver: Get Chain-Abstracted with the Black Dragon - /blog/near-at-ethdenver-get-chain-abstracted-with-the-black-dragon/ - - - Thu, 22 Feb 2024 18:19:30 +0000 - - - /?p=21249 - - Ditch the ETHDenver small talk and brace yourself abstractooors! The NEAR Ecosystem is crashing the scene, armed with next-level chain …

-

The post NEAR at ETHDenver: Get Chain-Abstracted with the Black Dragon appeared first on NEAR Protocol.

-]]>
- Ditch the ETHDenver small talk and brace yourself abstractooors! The NEAR Ecosystem is crashing the scene, armed with next-level chain abstraction, mind-bending AI, and enough developer swag to make your node blush.

- - - -

But First, the Tea:

- - - -

Heard whispers of a Chain Abstraction Tea Party hosted by the elusive Black Dragon? It’s not just rumors. Mingle with the brightest minds in the NEARverse at our booth (number 314, remember it!).

- - - -

To celebrate the psychedelic “Alice in Wonderland” theme of ETHDenver, we’ve conjured up a magical animation that serves as your gateway to Chain Abstraction. Scan the code, embrace the future, and claim your own NFT powered by ShardDog.

- - - -

Dive down rabbit holes of chain abstraction, data that never forgets, and transactions faster than a Denver blizzard. The Black Dragon’s got your back, guiding you through the mind-bending potential of Web3.

- - - -


Follow the trail and join us for an exclusive event (space is limited, RSVP ASAP) where the real secrets of Web3’s future get spilled. 

- - - -

Ditch the FOMO, See What’s NEAR:

- - - -

- - - -

From on-chain rewards, airdrops, and more, powered by NEAR Ecosystem projects to hackathon bounties. The NEAR team is ready to onboard you and answer your burning questions.

Hacking not your jam? Don’t worry, there’s more!

Mark your calendars for February 26th, because the Decentralized AGI Summit is where AI and Web3 collide, igniting thought-provoking discussions on decentralized systems. This isn’t just another tech event; it’s an interactive experience where you’ll witness the explosive synergy between these two cutting-edge fields. Be part of building the future!

Then on February 28th, we’re bringing you hot fire —get it? because we’re dragons, hah— by partnering with Agoric and Frontier Research for Chain Abstraction Day, an exclusive apply-to-attend event featuring the most hardcore builders and researchers in the space. Prepare to witness the future of interoperability, where users hop seamlessly between chains without a second thought (or a gas fee headache). 

- - - -

Space is limited, and only the most curious minds need apply. So if you’re a developer dreaming of cross-chain dApps, a creator with an NFT vision spanning universes, or an entrepreneur ready to conquer the multiverse, submit your request to attend ASAP. Don’t miss your chance to rub shoulders with the brightest minds in the biz and unlock the true power of blockchain, unchained.

For a comprehensive overview of NEAR’s presence at ETHDenver, including speaker sessions and networking opportunities, visit our dedicated NEAR at ETHDenver landing page.

- - - -

- - - -

See you on the other side, chain abstractooors!

-

The post NEAR at ETHDenver: Get Chain-Abstracted with the Black Dragon appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR Q4 Protocol Roadmap Update - /blog/near-q4-protocol-roadmap-update/ - - - Fri, 12 Jan 2024 19:23:37 +0000 - - - - - - - /?p=21155 - - TLDR: 2023 saw major experience improvements via meta transactions and zero-balance accounts, as well as node performance improvements and optimizations. Preparations are underway for a major upgrade to stateless validation, completing Phase 2 of the sharding roadmap in early 2024.

-

The post NEAR Q4 Protocol Roadmap Update appeared first on NEAR Protocol.

-]]>
-
By Bowen Wang, Director of Protocol

In this post, the NEAR Protocol work group would like to provide an update of the protocol roadmap to show what we accomplished in 2023 and what is planned for 2024.

- - - -

TLDR: 2023 saw major experience improvements via meta transactions and zero-balance accounts, as well as node performance improvements and optimizations. Preparations are underway for a major upgrade to stateless validation, completing Phase 2 of the sharding roadmap in early 2024.

- - - -

What we accomplished in 2023

- - - -

There were a total of six protocol upgrades in 2023 which introduced a number of new protocol features. Meta transactions were added as a protocol feature at the beginning of the year to support gasless transactions, which means that users can transact on NEAR and start using apps without necessarily needing to pay transaction fees in NEAR. We also added zero-balance accounts, an important feature that enables users to create an account without holding NEAR to pay for storage. This makes it easy to onboard new users to applications. These two features form a solid foundation for a seamless onboarding experience for end users — a top goal for NEAR overall.

- - - -

In addition to easy user onboarding, we have also been working hard to optimize the performance of NEAR. Flat storage, which was released in Q2 this year, optimized state reads and improved the stability and performance of the network overall. Another feature that optimizes NEAR nodes is cold storage, which allows for a split between hot and cold storage for a node. This means an archival node does not need to store most of the historical data on SSD and therefore can save a lot on cost. We also optimized the network communication between validator nodes by introducing the tier1 network, which reduces the latency of network messages between two validator nodes. Furthermore, we improved state sync and reduced the time it took a node to synchronize the latest state. We have also worked on improving the stability and maintainability of contract runtime with initiatives like finite wasm and limited replayability.

- - - -

There are a few major initiatives that we started this year and expect to finish next year, such as stateless validation, congestion control, and transaction priority. We will dive deeper into those in the section below.

- - - -


Plans for 2024

- - - -

There are a few major projects that we want to deliver in 2024 to improve the usability, scalability, and decentralization of NEAR Protocol:

- - - -
    -
  • Stateless validation. Stateless validation is a major initiative that we have been working on for a few months. It adjusts the original Nightshade sharding design to avoid implementing fraud proofs while improving the performance of each shard significantly by putting state in memory. The stateless validation work is expected to be delivered in Q2 2024, which would also mark the completion of the original goal we set for Phase 2 of sharding. We expect the launch of stateless validation to also dramatically increase the throughput of each shard and prepare NEAR for the continued growth of usage.
  • - - - -
  • Congestion control and transaction priority. While NEAR’s sharding design is horizontally scalable, it is important to provide a good user experience when there is short-term congestion on the network. This includes localizing congestion so that gas price increase does not affect the entire network and allowing users to prioritize their transactions during congestion if they are willing to pay more in transaction fees.
  • - - - -
  • Support for account aggregation. Account aggregation allows a user to control accounts on different chains with one NEAR account, an important pillar of the chain abstraction vision for NEAR. It requires chain signatures, which does MPC to sign payload. This requires a new runtime API to facilitate the asynchronous nature of chain signatures.
  • - - - -
  • zkWASM. We have been working on zkWASM with the Polygon team for a few months and the work will continue in 2024. The goal is to build a prover for WebAssembly smart contracts. This could be used as a part of the initiative to prove the state transition of NEAR in a ZK proof. Moreover, zkWASM also provides wasm as an alternative execution environment to EVM for L2s.
  • - - - -
  • Data availability improvements. We launched NEAR DA in early November 2023 and there are a few things that we plan to work on to further improve the efficiency of NEAR DA. Those improvements include introducing KZG commitment to avoid having data availability fraud proofs, as well as real-time bridging to allow verification of data availability on Ethereum.
  • - - - -
  • Ethereum wallet support. Supporting wallets like MetaMask natively on NEAR allows us to attract more users to NEAR and also be more Ethereum aligned. This requires changes to the protocol to support Ethereum addresses natively and support processing of RLP serialized Ethereum transactions.
  • - - - -
  • Research into the future of sharding. There are two major directions of exploration: synchronous sharding and ZK-centric sharding. Synchronous sharding enables synchronous execution of smart contracts and addresses the developer experience pain point of having to deal with asynchronous execution. ZK-centric sharding leverages zero-knowledge proofs to validate state transition of different shards and improves the scalability and decentralization of the protocol. In addition, we will also research the next and final phase of sharding: dynamically adjusting the number of shards based on usage.
  • -
- - - -

The roadmap can be seen below for those interested in more timeline specifics. It is split into two parts: Experience and Core. The Experience section encompasses user and/or developer experience and the protocol features needed to enable those experiences. As an example, synchronous execution addresses the pain point that developers feel when they implement cross-contract calls.

- - - -
- - - -


The Core section, on the other hand, covers major efforts to improve the scalability and decentralization of the protocol. This includes stateless validation, zkWASM, improvements to data availability, and so on.

- - - -
- - - -



As always, the protocol team is proud to have made several important improvements to the core protocol with zero disruption for users and developers. We look forward to making some major advancements in 2024 to help the entire NEAR ecosystem deliver its vision of mainstream adoption of an Open Web, where all internet users can control their own data, assets, and power of governance. 

We will share more details on Phase 2 advancements and timelines soon. If you’d like to learn more, join the NEAR Protocol X Spaces on Tuesday, January 16 at 5pm UTC to hear from Director of Protocol Bowen Wang and NEAR Foundation CEO Illia Polosukhin on upcoming protocol developments.

-

The post NEAR Q4 Protocol Roadmap Update appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris - /blog/near-at-ethcc-highlights-sustainability-and-the-bos-take-center-stage-in-paris/ - - - Thu, 20 Jul 2023 17:00:00 +0000 - - - - - - - /?p=20742 - - Missed out on NEAR’s rendezvous at ETHCC 2023 in Paris? No need to worry. In this roundup, all NEAR enthusiasts …

-

The post NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris appeared first on NEAR Protocol.

-]]>
- Missed out on NEAR’s rendezvous at ETHCC 2023 in Paris? No need to worry. In this roundup, all NEAR enthusiasts can catch up on the enlightening presentations by BOS, Web3, and blockchain experts. You’re in the perfect place to delve into notable announcements made during the conference, from NEAR signing up to the Ethereum Climate Platform to an epic new interactive Polygon zkEVM app dashboard.

- - - -

ICYMI, it’s time to dive into all the key speeches, events, and announcements that unfolded in the City of Lights over this past weekend.

- - - -

Interactive Polygon zkEVM app dashboard launches on the BOS

- - - -

In the most significant partnership announcement of ETHCC, an interactive Polygon zkEVM app dashboard has launched on the Blockchain Operating System (BOS). This integration will not only increase accessibility and discoverability for zkEVM developers and users on the open web but also vastly improve user experience. 

- - - -

The collaboration is set to accelerate the creation of dApps that will onboard billions of users into the open web. The new Polygon zkEVM dashboard now combines the benefits of zero-knowledge technology with the power of the BOS to unlock even more seamless onboarding to the open web. 

- - - -

The dashboard brings a new suite of zero knowledge development capabilities to zkEVM developers and lets them build apps that can reach more users from day one. It’s a groundbreaking partnership that brings together the NEAR and Polygon ecosystems, two of the most innovative names in Ethereum and blockchain scalability.

- - - -

NEAR makes waves with sustainability commitment

- - - -

NEAR Foundation made a significant stride in its commitment to Web3 sustainability. As part of its ongoing efforts, NEAR signed up to the Ethereum Climate Platform, demonstrating its resolve towards minimizing the environmental impact of Web3 development. This move aligns with NEAR’s ethos and commitment to sustainable and scalable blockchain solutions.

- - - -

Marieke storms the BOS-tille at “Funding the Commons”

- - - -

Adding to the list of notable NEAR occurrences during ETHCC, NEAR Foundation CEO, Marieke Flament, was a keynote speaker at the “Funding the Commons” event held at Sorbonne Université on July 15. Marike’s message was one of bringing more ethics and equity to the entire blockchain and Web3 ecosystem.

- - - -

In her speech, titled “The Open Web is NEAR: How the BOS, NDC, and DAOs are creating a Decentralized Web,” Marieke explored how NEAR Foundation serves the ecosystem by building public goods like the BOS, DevHub, NDC, DAOs, and more. 

- - - -

“Funding the Commons” is an event designed to complement the Ethereum Community Conference, promoting connection amongst participants, and fostering new collaborations and projects. The event organizers also planned a dinner on July 15 at Le Procope Paris, where Marieke was among the most notable invited guests.

- - - -

Unpacking Insights: notable talks and events at ETH CC

- - - -

Near @ ETHCC wasn’t just a gathering of blockchain enthusiasts, but a hotbed of innovative discussions. Illia Polosukhin, co-founder of NEAR, and Nadir Dabit’s conversation around decentralized social networks piqued particular interest. They hinted at a shift in how we’ll connect and share information in the future and the potential role of decentralized social on the BOS.

- - - -

Matt Stephenson, head of crypto economics at crypto investment firm, Pantera Capital, took the audience on a thrilling Day Two journey through the intricacies of behavioral game theory. He showcased how game theory could be leveraged in this space, offering a unique lens to examine, understand, and potentially predict blockchain trends.

- - - -

Near @ ETHCC didn’t skimp on forward-looking conversations either. A panel featuring Max Mersch of Fabric Ventures, Maggie Love from SheFi, and Bilal El Alamy of PyratzLabs posed a pertinent question: “What’s the Next Big Use Case Being Built in the Bear Market?” Each speaker provided valuable insight about both challenges and opportunities posed by bear markets.

- - - -

Ecosystem Updates

- - - -

Despite the focus on the Near @ ETHCC side event itself, the NEAR ecosystem saw significant developments and milestones during the past few days.

- - - -
    -
  • The NEAR Digital Collective’s I-AM-HUMAN movement has crossed 2,000 members in the NEAR ecosystem. The initiative allows users to vote, elect candidates for office, and shape the future of NEAR. You can sign up here.
  • - - - -
  • MintbaseSearch has gone live on NEAR mainnet along with its own ChatGPT plugin. Mintbase now enables users to ask anything about NFTs on the NEAR Protocol. More details here.
  • - - - -
  • Opolis has raised $6.6M in a bridge fundraising round with support from NEAR Foundation, Polygon Ventures, and Draper Capital. Read more details about the full announcement here.
  • - - - -
  • Black Snow: Battle For Earth, launched its demo version, offering an exciting free-to-play-and-earn experience that aims to enhance the NEAR ecosystem by boosting user count and transactions. Check out the demo here
  • -
- - - -

C’est la vie in Paris as ETHCC 2023 wraps up. As we reflect on these dynamic days, it’s clear that the future of NEAR and the BOS is exciting and full of potential. From environmental commitments to bold collaborations and fascinating talks, NEAR’s Parisian journey was full of engagement, enlightenment, and enthusiasm for everyone involved.

-

The post NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris appeared first on NEAR Protocol.

-]]>
- - - -
- - TheFunPass™ Debuts at North America’s Largest Night Market with The Littles and NEAR - /blog/thefunpass-debuts-at-north-americas-largest-night-market-with-the-littles-and-near/ - - - Thu, 13 Jul 2023 22:00:00 +0000 - - - - - - /?p=20721 - - Everyone’s a winner playing carnival games thanks to TheFunPass™, a groundbreaking leap in Web3 that will redefine loyalty rewards and …

-

The post TheFunPass™ Debuts at North America’s Largest Night Market with The Littles and NEAR appeared first on NEAR Protocol.

-]]>
- Everyone’s a winner playing carnival games thanks to TheFunPass™, a groundbreaking leap in Web3 that will redefine loyalty rewards and transform the way we engage and connect with events and experiences. From the popular Web3 project, the littles, this innovative Web3 rewards app on the NEAR blockchain offers a solution that will transform the event landscape, that benefits event-goers but also empowers event operators. 

- - - -

It’s all about bridging the gap between the physical and digital worlds, as TheFunPass™ creates a seamless and immersive experience for users while driving value for businesses. 

- - - -

TheFunPass™ presents a brand-new model of interaction that empowers users, business operators, and The Littles holders alike. The Littles’ TheFunPass™ rewards app will debut at the Richmond Night Market, rethinking the entire carnival experience by connecting people through interactive missions, rewards, and personalized engagement. 

- - - -

Now every carnival-goer can win prizes, food, and once-in-a-lifetime trips — even if their skeeball doesn’t land in the bullseye — breathing new life into the classic carnival games.

- - - -

TheFunPass™ is the best way to win at carnival games

- - - -

Wil Lee and Cass Chan created the Web3 children’s media company, the littles, in 2021 offering a creative blend of animation, gaming, and real-world activations. The Littles is even joining up with TIME Studios to produce a children’s animation series. TheFunPass™, their latest endeavor, showcases their commitment to pushing the boundaries of interactive entertainment. Meanwhile, Lee is also the CEO and creator of Wun2Free Entertainment, a Company that has been producing events for over 10 years and hires over one hundred people each season, with TheFunPass™ as their latest endeavor. 

- - - -

TheFunPass™ is a rewards application that utilizes Web3 technology to enhance the way people emotionally engage with events. The application will debut at the Richmond Night Market in British Columbia, the largest night market in North America. TheFunPass™ engages user participation through missions, allowing them to earn digital and physical rewards unlocking exclusive benefits, digital collectibles, and unforgettable experiences. 

- - - -

TheFunPass™ not only engages event attendees but also presents a game-changing opportunity for businesses and operators. The app will also enable event operators and businesses to create customized missions and campaigns driving attendee participation and extending engagement before, during, and after the event. It’s a win-win scenario, where attendees enjoy immersive experiences and rewards, while businesses drive revenue growth and forge stronger connections with their audience.

- - - -

TheFunPass™ is a new and innovative way to experience the Richmond Night Market, which boasts over 500 food stalls, 100 retail shops, and an average attendance of over 1 million visitors per season. TheFunPass™ can reach tens of thousands of carnival-goers and engage them in unprecedented ways. The partnership between The Littles and NEAR will change the way people emotionally engage with events.

- - - -
- - - -

The Littles and TheFunPass™ are a NEAR perfect match

- - - -

TheFunPass™, powered by NEAR, revolutionizes the traditional carnival experience, offering dynamic gameplay with location-based missions and rewarding social engagements. The app’s integration of digital and physical missions enables users to accrue reward points beyond the physical space confines, effectively turning the standard carnival participation model on its head thanks to the development support of LaunchBadge, a leading software development team trusted by the littles and NEAR. 

- - - -

“800 users for a soft launch has reaffirmed our decision to support The Fun Pass and the team’s vision to reimagine how we experience the night market with blockchain technology,” said Dillon Freeman, Blockchain Success Manager on NEAR Foundation’s BD team. “The team has been executing at a high level and we’re excited to see what they deliver in the coming months.”

- - - -

Beyond the in-person carnival fun, TheFunPass™ also facilitates year-round engagement with unique missions and reward opportunities, making the carnival-style fun available wherever and whenever. This innovative blend of phygital experiences is a game changer, enabling events to expand their reach and engage audiences more effectively.

- - - -

The mechanics of TheFunPass™ are simple: Play Games, Collect STARs, Win Rewards! Attendees participate in carnival games, scan QR codes or tap to gather STARs on TheFunPass™, and subsequently exchange these STARs for various rewards, regardless of their game outcomes. The participation model offers a tangible sense of achievement, transforming the carnival experience.

- - - -
- - - -

TheFunPass™ ensures an exciting and ongoing engagement with its mission-based gameplay and reward system. After the carnival, users can continue to engage in digital missions, games, and rewards, offering an immersive experience that extends beyond its physical boundaries.

- - - -
- - - -

Debuting at Richmond Night Market, the partnership between The Littles and NEAR, with the development expertise from Launchbadge, showcases a unique use case of Web3 technology. By using TheFunPass™, every visitor stands a chance to win prizes, while also partaking in a unique Web3 event experience, thereby redefining event participation.

- - - -

Empowering all stakeholders in the events industry 

- - - -

TheFunPass™ empowers The Littles holders by integrating them into its growth through a unique referral program, reflecting the app’s commitment to decentralization and community empowerment. This groundbreaking approach enables Littles holders to earn commissions by referring businesses and operators to the app’s expanding network.

- - - -

Beyond rewarding users, TheFunPass™ is an invaluable tool for businesses and operators. It enhances customer engagement, fosters loyalty, and promotes revenue growth. Additionally, the app provides businesses with valuable consumer behavior insights, enabling them to customize their offerings and establish meaningful connections with their audience.

- - - -

The Littles are poised to lead the web3 industry into the future with the launch of TheFunPass™, powered by NEAR. By introducing gamification and immersive experiences to events, concerts, and festivals worldwide, TheFunPass™ aims to revolutionize the event experience, heralding a new frontier of interaction for fans.

- - - -

TheFunPass™ presents a unique convergence of loyalty rewards, immersive experiences, and Web3 technology. As we step into the future of truly phygital experiences, every event-goer can look forward to a redefined, gamified, and winning event experience like never before.

-

The post TheFunPass™ Debuts at North America’s Largest Night Market with The Littles and NEAR appeared first on NEAR Protocol.

-]]>
- - - -
- - Get to Know the BOS: FastAuth for Easy, Web2 Style Onboarding and Account Recovery - /blog/get-to-know-the-bos-fastauth-for-easy-web2-style-onboarding-and-account-recovery/ - - - Tue, 30 May 2023 12:53:40 +0000 - - - - - /?p=20543 - - With the recent launch of the NEAR Blockchain Operating system (BOS) on near.org, came one of the first and most …

-

The post Get to Know the BOS: FastAuth for Easy, Web2 Style Onboarding and Account Recovery appeared first on NEAR Protocol.

-]]>
- With the recent launch of the NEAR Blockchain Operating system (BOS) on near.org, came one of the first and most powerful features — FastAuth. 

- - - -

With FastAuth, BOS users get a better than Web2-style onboarding experience, allowing them to easily create an account for any app on the BOS without a new password or the need to buy any crypto. And perhaps most powerfully for developers, FastAuth is both the easiest and fastest way to get people to try their new components and apps, yet another reason why developers will want to build on the BOS. This helps dramatically lower the threshold for adoption and opens the door to bringing billions of Web2 users into the Web3 space.

- - - -

To get up to speed on FastAuth, here is a FastAuth primer with some product demo videos. 

- - - -

Easy onboarding and email recovery with FastAuth

- - - -

FastAuth gives users the power to quickly and easily create a single account that can be used for any website or app that integrates with the Blockchain Operating System (BOS). This feature makes FastAuth an ideal tool for developers building components on NEAR. 

- - - -

With a Web2-style onboarding experience that puts the user experience front and center, users can create a free account using biometrics, phone prompts, and an email address. This means that users can quickly interact with an app but also easily re-authenticate to the app using the same or different devices. 

- - - -
- -
- - - -

Since most users are accustomed to centralized authentication methods like “Sign in with Google”, Web3 account management using seed phrases and wallets have, until now, created a significant barrier to entry for many people. By combining FastAuth with decentralized email recovery, users no longer need to remember seed phrases or install third party wallet applications. Users can recover their accounts through a “Single Sign-on” (SSO) process with the email they used at registration. 

- - - -

Account recovery is also decentralized and does not give custodial access to full access keys to any single custodian. It is accomplished through a process called “multi-party computation”. This finally paves a way for mass adoption with an easy, secure, and decentralized account recovery system.

- - - -
- -
- - - -


With FastAuth, one of the most challenging parts in onboarding users to Web3 no longer exists. Now, users can set up a BOS account quicker than creating a Gmail, Facebook, Tiktok, or Instagram account. And developers can deliver their Web3 components, apps, and experiences more seamlessly than ever. 

- - - -

No third-party applications required

- - - -

FastAuth also removes the need to download any third-party applications. Everything just works seamlessly right from the browser on your desktop or mobile device.

- - - -

By creating an easy, user-centric experience, FastAuth makes the open web accessible to everyone right from the get-go and opens the door to mainstream adoption. Anyone developing components on the BOS can leverage this user-friendly experience to quickly and intuitively get their apps in front of users. 

- - - -

Create an account without crypto

- - - -

BOS FastAuth has another great trick up its sleeve. Until now, getting started in  Web3 and interacting with apps meant acquiring crypto first. 

- - - -

With FastAuth, new users can get started right away without having to buy or be gifted crypto. This is a game changer for developers, enterprises, and end-users alike. Through FastAuth’s use of NEAR’s Meta Transactions and Zero Balance Accounts, users can register an account free of charge. Developers can also use this to their advantage as Meta Transactions paired with relayers, which allow them to sponsor initial interactions for new users without needing to purchase $NEAR. 

- - - -

This streamlined onboarding experience allows developers to significantly increase conversion rates for people trying their components and apps for the first time. FastAuth also expands an app and website’s audience by making it more accessible to mainstream users. 

- - - -

FastAuth creates an easy way for enterprises to integrate Web3 and crypto technology into their business. With just a few lines of code, they can onboard existing users into powerful new community and commerce experiences that are accessible, highly secure , and decentralized. 

- - - -

End users can also get started using Web3 apps and experiences in an easy, accessible way. Setting up a secure  fully user-owned  account now only takes seconds. 

- - - -

What’s next for FastAuth 

- - - -

While FastAuth is already enabling fast and simple onboarding of mainstream users as well as streamlining component-building for developers on the BOS, a number of other features and upgrades are already in the works: 

- - - -
    -
  • The ability to extend relayers and FastAuth to additional gateways beyond near.org
  • - - - -
  • Further MPC decentralization
  • - - - -
  • Multi-chain compatibility 
  • - - - -
  • Two-factor authentication
  • -
- - - -

Stay tuned to near.org for new FastAuth features and upgrades, as they are rolled out. 

-

The post Get to Know the BOS: FastAuth for Easy, Web2 Style Onboarding and Account Recovery appeared first on NEAR Protocol.

-]]>
- - - -
- - Refining NEAR Foundation’s Grant Approach - /blog/refining-near-foundations-grant-approach/ - - - Tue, 03 Jan 2023 15:05:22 +0000 - - - - - /?p=19669 - - A few weeks ago, as part of a series of blogs on the state of funding, NEAR Foundation announced it …

-

The post Refining NEAR Foundation’s Grant Approach appeared first on NEAR Protocol.

-]]>
-
A few weeks ago, as part of a series of blogs on the state of funding, NEAR Foundation announced it would be examining its evolving funding strategy. This is in line with the Foundation’s  goal of providing a clear and concise update to continue to foster transparent communication. 

- - - -

At this time, NEAR Foundation is actively working towards a more decentralized model of capital allocation that will initially involve the DeveloperDAO, MarketingDAO, CreativesDAO, with an additional DAO that will begin formation in Q1 of 2023. This will impact the ecosystem in the following ways:

- - - -
    -
  1. Effective immediately, NEAR Foundation will cease allocating capital directly from our inbound start-up grants program, with the exception of our current events grants, which will be handed over to the MarketingDAO when they are set up to manage them.  Request events funding by following the steps outlined here.
  2. - - - -
  3. In January and February, we will be working directly with community members to outline a clear application process for funding via the DAOs. Processing time is expected to take 6-8 weeks. If you are interested in helping us form the new DAO with a focus on start-up projects, please submit your interest using this contact form.
  4. - - - -
  5. Any  projects that have already received a portion of their funding and are working towards their agreed milestones will continue to be supported through the remaining milestones.
  6. - - - -
  7. Any application that is not already in the approval stage will not receive funding. However, we will do our best to redirect you to appropriate, alternative funding sources.
  8. -
- - - -

NEAR Foundation’s goal is to empower the ecosystem to make decisions that support  the strategic approach that will drive NEAR  to the next phase of its roadmap, with a look ahead at new areas of product and development, as outlined in the NEAR Strategic Update and Outlook for 2023. We will continue to be as transparent as possible about the new funding strategy as it rolls out. The Foundation will communicate as often, and as frequently, as possible. We encourage the community to continue providing meaningful feedback so we can iterate more quickly as we unite to build the NEAR Ecosystem together.

-

The post Refining NEAR Foundation’s Grant Approach appeared first on NEAR Protocol.

-]]>
- - - -
- - Refer-and-Earn Guidelines Update: Q3 2022 - /blog/refer-and-earn-guidelines-update-q3-2022/ - - - Fri, 09 Dec 2022 17:00:00 +0000 - - - - - /?p=19539 - - NEAR’s ever-growing and engaged community is one of the ecosystem’s greatest strengths. Remember the NEAR Foundation Grants team’s Refer-and-Earn Program? …

-

The post Refer-and-Earn Guidelines Update: Q3 2022 appeared first on NEAR Protocol.

-]]>
- NEAR’s ever-growing and engaged community is one of the ecosystem’s greatest strengths. Remember the NEAR Foundation Grants team’s Refer-and-Earn Program? A number of NEAR community members participated in Refer-and-Earn in early 2022, resulting in grants for dozens of exciting projects currently building on the NEAR ecosystem.  

- - - -

The Foundation has had the pleasure of seeing the community being a key contributor in providing ecosystem support and building dapps. The community does this in a number of ways, including running and sponsoring events, educating developers and entrepreneurs on the benefits of NEAR, bringing projects with active user bases from other chains, and so on.

- - - -

NEAR Foundation wants to build on the community’s successes through a new incentive structure that aligns with the Grants Program (more information can be found at the Grants Program Handbook here bit.ly/Grants-Program-Handbook). 

- - - -
    -
  1. The payout for each project referred will be awarded a total of 10% of the project awarded grant amount. This amount is awarded in nUSDC (wrapped USDC on NEAR) and is calculated at the end of each quarter.
  2. - - - -
  3. The first half of the 5% will be awarded at the point of the contract signed.
  4. - - - -
  5. The second half of the 5% will be awarded once all project milestones are completed. 
  6. -
- - - -

Refer-and-Earn: Q3 Qualified Projects

- - - -

The NEAR ecosystem receives a number of your recommendations and referrals. A total of 12 quality projects emerged from Refer-and-Earn, each aligning with NEAR Foundation’s Grants program objectives. 

- - - -

In no particular order, here are the Q3 2022 qualified projects: 

- - - -
    -
  • Scene 
  • - - - -
  • Azadi Record
  • - - - -
  • Vital Carbon 
  • - - - -
  • Metavision Games 
  • - - - -
  • Murder Mystery Collective 
  • - - - -
  • MetaLordz 
  • - - - -
  • Klabrate and ClimaFi
  • - - - -
  • Meteor wallet 
  • - - - -
  • Mintmade 
  • - - - -
  • NEARKai
  • - - - -
  • EVIE Marketplace 
  • - - - -
  • Autify 
  • -
- - - -

The Grants team has reached out to all Refer-and-Earn referrers. Thanks to your help and support, the Grants team is able to support innovative projects like those listed above. 

-

The post Refer-and-Earn Guidelines Update: Q3 2022 appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR and Grupo Nutresa Partner for Customer Experience Innovations in Web3 - /blog/near-and-grupo-nutresa-partner-for-customer-experience-innovations-in-web3/ - - - Thu, 01 Dec 2022 09:45:00 +0000 - - - - /?p=18608 - - In a groundbreaking and innovative move, NEAR has partnered with Grupo Nutresa, one of the most important processors of food …

-

The post NEAR and Grupo Nutresa Partner for Customer Experience Innovations in Web3 appeared first on NEAR Protocol.

-]]>
- In a groundbreaking and innovative move, NEAR has partnered with Grupo Nutresa, one of the most important processors of food in South America, to bring Web3 to the grocery industry. This will see Grupo Nutresa building one of the first open-source loyalty points programs on NEAR with long-term aspirations to reach a million users in Colombia and Latin America. The partnership was established through the support of tech firm Peersyst.

- - - -

Grupo Nutresa customers will in turn gain more autonomy and control of their rewards. Customers will also get additional security and the reassurance that points will not be stolen or denied, and can be transferred more efficiently. Leveraging NEAR’s technology will also increase usability and accessibility of the rewards system as a whole, saving customers from having to create multiple accounts or different logins for multiple platforms — they just need their easy to use NEAR wallet.

- - - -

“We are excited to partner with one of the biggest multinationals in Latin America and help it to lead the way through its first Web3 loyalty programme,” says NEAR Foundation CEO Marieke Flament. “Leveraging NEAR’s first-rate technology, the partnership will redefine what is possible when combining retail with the latest blockchain innovation, not just in Latin America but throughout the rest of the world.” 

- - - -

Usability is key to loyalty

- - - -

Rewarding customers for their support has always been a priority for the world’s top brands. Such programs not only engage customers and deliver incentives for them to return but also act as analytical tools, giving businesses insights into customers’ behaviour and preferences. 

- - - -

With 87% of shoppers reporting they want brands to have loyalty programs and over 70% of consumers more likely to recommend a brand with a robust loyalty program, Web3 and digital wallets are pushing forward-thinking brands to explore new opportunities on platforms that are easy to use. 

- - - -

As one of the biggest multinationals in Colombia, Grupo Nutresa manages several loyalty programs for its customers, collaborators, and providers. Those loyalty programs are now coming together into a single easy-to-use platform underpinned by blockchain technology, through support from Spanish technology company Peersyst Technology.

- - - -

Onboarding the masses into NEAR and Web3

- - - -

Grupo Nutresa sees NEAR as the ideal partner for these types of loyalty programs. NEAR Foundation sees the Grupo Nutresa partnership as a great opportunity to onboard the masses into the NEAR and Web3 ecosystems.  

- - - -

“Our purpose is to make people feel recognized and valued by brands. Above all, what interests us most is that this is an opportunity to help build their dreams, through a service that provides them with significant redemption options and value,” says  Fabián Andrés Restrepo, Digital Transformation Leader at Grupo Nutresa. “This invitation is also addressed to companies that want to help make people’s dreams come true and reward their loyal customers, by becoming an ally of Grupo Nutresa and its portfolio of businesses. We see in NEAR an important ally for developing and implementing Grupo Nutresa’s loyalty strategy.” 

- - - -

NEAR’s sustainability credentials also align with Grupo Nutresa’s own business strategy and deep commitment to create value for society as a whole. According to the 2021 Dow Jones Sustainability Indices, Grupo Nutresa has been voted as the most sustainable food company in the world for two consecutive years, thanks to its effective implementation of social, environmental, and economic practices. 

-

The post NEAR and Grupo Nutresa Partner for Customer Experience Innovations in Web3 appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/category/uncategorized/index.html b/public/blog/category/uncategorized/index.html deleted file mode 100644 index 2eae05397..000000000 --- a/public/blog/category/uncategorized/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Uncategorized Archives – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/page/10/index.html b/public/blog/page/10/index.html deleted file mode 100644 index 0563fef0e..000000000 --- a/public/blog/page/10/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/11/index.html b/public/blog/page/11/index.html deleted file mode 100644 index f0c130313..000000000 --- a/public/blog/page/11/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

Filter by category

Filter by date

Clear
\ No newline at end of file diff --git a/public/blog/page/12/index.html b/public/blog/page/12/index.html deleted file mode 100644 index 694992574..000000000 --- a/public/blog/page/12/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/13/index.html b/public/blog/page/13/index.html deleted file mode 100644 index a49b0cc9b..000000000 --- a/public/blog/page/13/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

Filter by category

Filter by date

Clear
\ No newline at end of file diff --git a/public/blog/page/14/index.html b/public/blog/page/14/index.html deleted file mode 100644 index 6cbd4e650..000000000 --- a/public/blog/page/14/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/15/index.html b/public/blog/page/15/index.html deleted file mode 100644 index 5285c69ac..000000000 --- a/public/blog/page/15/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

Filter by category

Filter by date

Clear
\ No newline at end of file diff --git a/public/blog/page/16/index.html b/public/blog/page/16/index.html deleted file mode 100644 index ccff4b19f..000000000 --- a/public/blog/page/16/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/17/index.html b/public/blog/page/17/index.html deleted file mode 100644 index 69efa5a78..000000000 --- a/public/blog/page/17/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/18/index.html b/public/blog/page/18/index.html deleted file mode 100644 index e65fe1cbc..000000000 --- a/public/blog/page/18/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/19/index.html b/public/blog/page/19/index.html deleted file mode 100644 index dcb70a07d..000000000 --- a/public/blog/page/19/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/2/index.html b/public/blog/page/2/index.html deleted file mode 100644 index a5173b234..000000000 --- a/public/blog/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/20/index.html b/public/blog/page/20/index.html deleted file mode 100644 index b334356d1..000000000 --- a/public/blog/page/20/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/21/index.html b/public/blog/page/21/index.html deleted file mode 100644 index d510207e3..000000000 --- a/public/blog/page/21/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/22/index.html b/public/blog/page/22/index.html deleted file mode 100644 index 269fa5027..000000000 --- a/public/blog/page/22/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/23/index.html b/public/blog/page/23/index.html deleted file mode 100644 index 5e446e7fd..000000000 --- a/public/blog/page/23/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/24/index.html b/public/blog/page/24/index.html deleted file mode 100644 index 66008abe2..000000000 --- a/public/blog/page/24/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/25/index.html b/public/blog/page/25/index.html deleted file mode 100644 index b14c2e1aa..000000000 --- a/public/blog/page/25/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/26/index.html b/public/blog/page/26/index.html deleted file mode 100644 index bf9e6606f..000000000 --- a/public/blog/page/26/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/27/index.html b/public/blog/page/27/index.html deleted file mode 100644 index c0c1c3be5..000000000 --- a/public/blog/page/27/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/28/index.html b/public/blog/page/28/index.html deleted file mode 100644 index d7a78ebe6..000000000 --- a/public/blog/page/28/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/29/index.html b/public/blog/page/29/index.html deleted file mode 100644 index faa580096..000000000 --- a/public/blog/page/29/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/3/index.html b/public/blog/page/3/index.html deleted file mode 100644 index 22e7e102e..000000000 --- a/public/blog/page/3/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/30/index.html b/public/blog/page/30/index.html deleted file mode 100644 index 1e444e285..000000000 --- a/public/blog/page/30/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/31/index.html b/public/blog/page/31/index.html deleted file mode 100644 index 5e72417d2..000000000 --- a/public/blog/page/31/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/32/index.html b/public/blog/page/32/index.html deleted file mode 100644 index 7b4e42f05..000000000 --- a/public/blog/page/32/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/33/index.html b/public/blog/page/33/index.html deleted file mode 100644 index d770532d3..000000000 --- a/public/blog/page/33/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/34/index.html b/public/blog/page/34/index.html deleted file mode 100644 index ab8248566..000000000 --- a/public/blog/page/34/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/35/index.html b/public/blog/page/35/index.html deleted file mode 100644 index fa31d1c17..000000000 --- a/public/blog/page/35/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/36/index.html b/public/blog/page/36/index.html deleted file mode 100644 index 9687e3462..000000000 --- a/public/blog/page/36/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/37/index.html b/public/blog/page/37/index.html deleted file mode 100644 index d311ad516..000000000 --- a/public/blog/page/37/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/38/index.html b/public/blog/page/38/index.html deleted file mode 100644 index 7ee3508f8..000000000 --- a/public/blog/page/38/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/39/index.html b/public/blog/page/39/index.html deleted file mode 100644 index 4fe0742e8..000000000 --- a/public/blog/page/39/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/4/index.html b/public/blog/page/4/index.html deleted file mode 100644 index 87d6f0286..000000000 --- a/public/blog/page/4/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

Filter by category

Filter by date

Clear
\ No newline at end of file diff --git a/public/blog/page/40/index.html b/public/blog/page/40/index.html deleted file mode 100644 index 25adaf0d8..000000000 --- a/public/blog/page/40/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/41/index.html b/public/blog/page/41/index.html deleted file mode 100644 index 6541d0c3d..000000000 --- a/public/blog/page/41/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/42/index.html b/public/blog/page/42/index.html deleted file mode 100644 index 8f3b3f0e4..000000000 --- a/public/blog/page/42/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/43/index.html b/public/blog/page/43/index.html deleted file mode 100644 index 017e3cfad..000000000 --- a/public/blog/page/43/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/44/index.html b/public/blog/page/44/index.html deleted file mode 100644 index 91c1297d5..000000000 --- a/public/blog/page/44/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/45/index.html b/public/blog/page/45/index.html deleted file mode 100644 index 0c1fca477..000000000 --- a/public/blog/page/45/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/46/index.html b/public/blog/page/46/index.html deleted file mode 100644 index 03de709de..000000000 --- a/public/blog/page/46/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/47/index.html b/public/blog/page/47/index.html deleted file mode 100644 index eacf14d97..000000000 --- a/public/blog/page/47/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/48/index.html b/public/blog/page/48/index.html deleted file mode 100644 index 12de9c660..000000000 --- a/public/blog/page/48/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/49/index.html b/public/blog/page/49/index.html deleted file mode 100644 index b18ea9f7c..000000000 --- a/public/blog/page/49/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/5/index.html b/public/blog/page/5/index.html deleted file mode 100644 index e3ac1e377..000000000 --- a/public/blog/page/5/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

Filter by category

Filter by date

Clear
\ No newline at end of file diff --git a/public/blog/page/50/index.html b/public/blog/page/50/index.html deleted file mode 100644 index 16f04fba2..000000000 --- a/public/blog/page/50/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

Case Studies
February 15, 2020

Running Ethereum Applications On NEAR

Community
February 14, 2020

NEAR Community Update: February 14th, 2020

NEAR_ETHDenver
Community
February 13, 2020

NEAR is going to ETHDenver!

Developers
February 5, 2020

Doomslug vs PBFT, Tendermint, and Hotstuff

Community
January 31, 2020

NEARcon Zero

Community
January 17, 2020

NEAR Community Update: January 17th, 2020

Developers
January 13, 2020

We’re pausing Stake Wars

Community
January 8, 2020

NEAR 2019 Year in Review

Community
December 13, 2019

Our Last Update | December 13th, 2019

Filter by category

Filter by date

Clear
\ No newline at end of file diff --git a/public/blog/page/51/index.html b/public/blog/page/51/index.html deleted file mode 100644 index 01d136111..000000000 --- a/public/blog/page/51/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/52/index.html b/public/blog/page/52/index.html deleted file mode 100644 index 303e2d421..000000000 --- a/public/blog/page/52/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/53/index.html b/public/blog/page/53/index.html deleted file mode 100644 index 270c28d3a..000000000 --- a/public/blog/page/53/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/54/index.html b/public/blog/page/54/index.html deleted file mode 100644 index 116dc7342..000000000 --- a/public/blog/page/54/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/55/index.html b/public/blog/page/55/index.html deleted file mode 100644 index 483a702b5..000000000 --- a/public/blog/page/55/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/56/index.html b/public/blog/page/56/index.html deleted file mode 100644 index 7f970234a..000000000 --- a/public/blog/page/56/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

\ No newline at end of file diff --git a/public/blog/page/57/index.html b/public/blog/page/57/index.html deleted file mode 100644 index a40277d65..000000000 --- a/public/blog/page/57/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/58/index.html b/public/blog/page/58/index.html deleted file mode 100644 index 3c139cafa..000000000 --- a/public/blog/page/58/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/59/index.html b/public/blog/page/59/index.html deleted file mode 100644 index 0795dd1b6..000000000 --- a/public/blog/page/59/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/6/index.html b/public/blog/page/6/index.html deleted file mode 100644 index 42558dd9f..000000000 --- a/public/blog/page/6/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

Filter by category

Filter by date

Clear
\ No newline at end of file diff --git a/public/blog/page/60/index.html b/public/blog/page/60/index.html deleted file mode 100644 index f2ebd1e7f..000000000 --- a/public/blog/page/60/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR
\ No newline at end of file diff --git a/public/blog/page/7/index.html b/public/blog/page/7/index.html deleted file mode 100644 index 6d561cf88..000000000 --- a/public/blog/page/7/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

Filter by category

Filter by date

Clear
\ No newline at end of file diff --git a/public/blog/page/8/index.html b/public/blog/page/8/index.html deleted file mode 100644 index 1580bd340..000000000 --- a/public/blog/page/8/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

Filter by category

Filter by date

Clear
\ No newline at end of file diff --git a/public/blog/page/9/index.html b/public/blog/page/9/index.html deleted file mode 100644 index d41bd042f..000000000 --- a/public/blog/page/9/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Latest from NEAR

Latest posts

Filter by category

Filter by date

Clear
\ No newline at end of file diff --git a/public/blog/press-releases-categories/ecosystem/feed/index.xml b/public/blog/press-releases-categories/ecosystem/feed/index.xml deleted file mode 100644 index 454df4100..000000000 --- a/public/blog/press-releases-categories/ecosystem/feed/index.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - Ecosystem Archives – NEAR Protocol - - /blog/press-releases-categories/ecosystem/ - - Thu, 07 Mar 2024 14:59:32 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Ecosystem Archives – NEAR Protocol - /blog/press-releases-categories/ecosystem/ - 32 - 32 - - - diff --git a/public/blog/press-releases-categories/ecosystem/index.html b/public/blog/press-releases-categories/ecosystem/index.html deleted file mode 100644 index aa9a0eff6..000000000 --- a/public/blog/press-releases-categories/ecosystem/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ecosystem Archives – NEAR Protocol

Press Center

For media enquiries, please write to us at [email protected]

Press releases

Filter by category

Coverage

The Paypers
Dec 9, 2022

Wirex launches 52 new tokens in partnership with NEAR

Sail World
Nov 10, 2022

First fan-owned team launches for SailGP

Business Cloud
Oct 13, 2022

Near Foundation appoints new Chief Operating Officer and general counsel

Media Kit

Leadership
Image of Marieke Flament
Marieke Flament
CEO of NEAR Foundation
Download:
Image of Illia Polosukhin
Illia Polosukhin
CEO of NEAR Protocol
Download:
Image of Alexander Skidanov
Alexander Skidanov
Co-founder of NEAR Protocol
Download:
Brand assets
NEAR Protocol logo
NEAR Protocol logo
Logo as SVG
NEAR Foundation logo
NEAR Foundation logo
Logo as SVG
NEAR Brand Book
NEAR Brand Book
Archive with all styles and variations
\ No newline at end of file diff --git a/public/blog/press-releases-categories/governance/feed/index.xml b/public/blog/press-releases-categories/governance/feed/index.xml deleted file mode 100644 index 5ffea69f0..000000000 --- a/public/blog/press-releases-categories/governance/feed/index.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - Governance Archives – NEAR Protocol - - /blog/press-releases-categories/governance/ - - Thu, 07 Mar 2024 14:59:32 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Governance Archives – NEAR Protocol - /blog/press-releases-categories/governance/ - 32 - 32 - - - diff --git a/public/blog/press-releases-categories/governance/index.html b/public/blog/press-releases-categories/governance/index.html deleted file mode 100644 index 55bd3ec28..000000000 --- a/public/blog/press-releases-categories/governance/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Governance Archives – NEAR Protocol

Press Center

For media enquiries, please write to us at [email protected]

Press releases

Filter by category

Coverage

The Paypers
Dec 9, 2022

Wirex launches 52 new tokens in partnership with NEAR

Sail World
Nov 10, 2022

First fan-owned team launches for SailGP

Business Cloud
Oct 13, 2022

Near Foundation appoints new Chief Operating Officer and general counsel

Media Kit

Leadership
Image of Marieke Flament
Marieke Flament
CEO of NEAR Foundation
Download:
Image of Illia Polosukhin
Illia Polosukhin
CEO of NEAR Protocol
Download:
Image of Alexander Skidanov
Alexander Skidanov
Co-founder of NEAR Protocol
Download:
Brand assets
NEAR Protocol logo
NEAR Protocol logo
Logo as SVG
NEAR Foundation logo
NEAR Foundation logo
Logo as SVG
NEAR Brand Book
NEAR Brand Book
Archive with all styles and variations
\ No newline at end of file diff --git a/public/blog/press-releases-categories/inclusion/feed/index.xml b/public/blog/press-releases-categories/inclusion/feed/index.xml deleted file mode 100644 index 7dfed9bc8..000000000 --- a/public/blog/press-releases-categories/inclusion/feed/index.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - Inclusion Archives – NEAR Protocol - - /blog/press-releases-categories/inclusion/ - - Wed, 26 Oct 2022 12:36:23 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Inclusion Archives – NEAR Protocol - /blog/press-releases-categories/inclusion/ - 32 - 32 - - - NEAR Foundation and Forkast unveil shortlist for Women in Web3 Changemakers 2022 - /press-releases/near-foundation-and-forkast-unveil-shortlist-for-women-in-web3-changemakers-2022/ - - - Mon, 12 Sep 2022 12:34:57 +0000 - /?post_type=near_press_release#038;p=18718 - - The post NEAR Foundation and Forkast unveil shortlist for Women in Web3 Changemakers 2022 appeared first on NEAR Protocol.

-]]>
- The post NEAR Foundation and Forkast unveil shortlist for Women in Web3 Changemakers 2022 appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR opens submissions for Women in Web3 Changemakers 2022 - /press-releases/near-opens-submissions-for-women-in-web3-changemakers-2022/ - - - Thu, 21 Jul 2022 17:00:46 +0000 - /?post_type=near_press_release#038;p=18716 - - The post NEAR opens submissions for Women in Web3 Changemakers 2022 appeared first on NEAR Protocol.

-]]>
- The post NEAR opens submissions for Women in Web3 Changemakers 2022 appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/press-releases-categories/inclusion/index.html b/public/blog/press-releases-categories/inclusion/index.html deleted file mode 100644 index 652bed25f..000000000 --- a/public/blog/press-releases-categories/inclusion/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Inclusion Archives – NEAR Protocol

Press Center

For media enquiries, please write to us at [email protected]

Press releases

Inclusion, Partner
Sep 12, 2022

NEAR Foundation and Forkast unveil shortlist for Women in Web3 Changemakers 2022

Inclusion, Partner
Jul 21, 2022

NEAR opens submissions for Women in Web3 Changemakers 2022

Filter by category

Coverage

The Paypers
Dec 9, 2022

Wirex launches 52 new tokens in partnership with NEAR

Sail World
Nov 10, 2022

First fan-owned team launches for SailGP

Business Cloud
Oct 13, 2022

Near Foundation appoints new Chief Operating Officer and general counsel

Media Kit

Leadership
Image of Marieke Flament
Marieke Flament
CEO of NEAR Foundation
Download:
Image of Illia Polosukhin
Illia Polosukhin
CEO of NEAR Protocol
Download:
Image of Alexander Skidanov
Alexander Skidanov
Co-founder of NEAR Protocol
Download:
Brand assets
NEAR Protocol logo
NEAR Protocol logo
Logo as SVG
NEAR Foundation logo
NEAR Foundation logo
Logo as SVG
NEAR Brand Book
NEAR Brand Book
Archive with all styles and variations
\ No newline at end of file diff --git a/public/blog/press-releases-categories/other/feed/index.xml b/public/blog/press-releases-categories/other/feed/index.xml deleted file mode 100644 index d13ff1e7d..000000000 --- a/public/blog/press-releases-categories/other/feed/index.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - Other Archives – NEAR Protocol - - /blog/press-releases-categories/other/ - - Thu, 27 Oct 2022 08:39:13 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Other Archives – NEAR Protocol - /blog/press-releases-categories/other/ - 32 - 32 - - - Mintbase Raises $7.5 million in Series A and $5 million grant pool to pioneer NFT infrastructure - /press-releases/mintbase-raises-7-5-million-in-series-a-and-5-million-grant-pool-to-pioneer-nft-infrastructure/ - - - Tue, 19 Apr 2022 08:27:59 +0000 - /?post_type=near_press_release#038;p=18728 - - The post Mintbase Raises $7.5 million in Series A and $5 million grant pool to pioneer NFT infrastructure appeared first on NEAR Protocol.

-]]>
- The post Mintbase Raises $7.5 million in Series A and $5 million grant pool to pioneer NFT infrastructure appeared first on NEAR Protocol.

-]]>
- - - -
- - Marieke Flament appointed CEO of NEAR Foundation - /press-releases/marieke-flament-appointed-ceo-of-near-foundation/ - - - Thu, 16 Dec 2021 09:19:28 +0000 - /?post_type=near_press_release#038;p=18727 - - The post Marieke Flament appointed CEO of NEAR Foundation appeared first on NEAR Protocol.

-]]>
- The post Marieke Flament appointed CEO of NEAR Foundation appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/press-releases-categories/other/index.html b/public/blog/press-releases-categories/other/index.html deleted file mode 100644 index ceaf537bb..000000000 --- a/public/blog/press-releases-categories/other/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Other Archives – NEAR Protocol

Press Center

For media enquiries, please write to us at [email protected]

Press releases

Other, Technical
Apr 19, 2022

Mintbase Raises $7.5 million in Series A and $5 million grant pool to pioneer NFT infrastructure

Other
Dec 16, 2021

Marieke Flament appointed CEO of NEAR Foundation

Filter by category

Coverage

The Paypers
Dec 9, 2022

Wirex launches 52 new tokens in partnership with NEAR

Sail World
Nov 10, 2022

First fan-owned team launches for SailGP

Business Cloud
Oct 13, 2022

Near Foundation appoints new Chief Operating Officer and general counsel

Media Kit

Leadership
Image of Marieke Flament
Marieke Flament
CEO of NEAR Foundation
Download:
Image of Illia Polosukhin
Illia Polosukhin
CEO of NEAR Protocol
Download:
Image of Alexander Skidanov
Alexander Skidanov
Co-founder of NEAR Protocol
Download:
Brand assets
NEAR Protocol logo
NEAR Protocol logo
Logo as SVG
NEAR Foundation logo
NEAR Foundation logo
Logo as SVG
NEAR Brand Book
NEAR Brand Book
Archive with all styles and variations
\ No newline at end of file diff --git a/public/blog/press-releases-categories/partner/feed/index.xml b/public/blog/press-releases-categories/partner/feed/index.xml deleted file mode 100644 index 04c2be8d7..000000000 --- a/public/blog/press-releases-categories/partner/feed/index.xml +++ /dev/null @@ -1,191 +0,0 @@ - - - - Partner Archives – NEAR Protocol - - /blog/press-releases-categories/partner/ - - Fri, 09 Dec 2022 12:41:04 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Partner Archives – NEAR Protocol - /blog/press-releases-categories/partner/ - 32 - 32 - - - Wirex Launches 52 Tokens for Accessing Web3 - /press-releases/wirex-launches-52-tokens-for-accessing-web3/ - - - Fri, 09 Dec 2022 12:34:19 +0000 - /?post_type=near_press_release#038;p=19528 - - The post Wirex Launches 52 Tokens for Accessing Web3 appeared first on NEAR Protocol.

-]]>
- The post Wirex Launches 52 Tokens for Accessing Web3 appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR to join forces with Grupo Nutresa in LatAm to launch Web3 loyalty programme - /press-releases/near-to-join-forces-with-grupo-nutresa-in-latam-to-launch-web3-loyalty-programme/ - - - Thu, 01 Dec 2022 10:59:20 +0000 - /?post_type=near_press_release#038;p=19332 - - The post NEAR to join forces with Grupo Nutresa in LatAm to launch Web3 loyalty programme appeared first on NEAR Protocol.

-]]>
- The post NEAR to join forces with Grupo Nutresa in LatAm to launch Web3 loyalty programme appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR partners with Afropolitan - /press-releases/near-partners-with-afropolitan/ - - - Wed, 30 Nov 2022 11:43:42 +0000 - /?post_type=near_press_release#038;p=19313 - - The post NEAR partners with Afropolitan appeared first on NEAR Protocol.

-]]>
- The post NEAR partners with Afropolitan appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR Protocol Partners with ESG DAO to Support the Creation of “OpenESG”: an Open and Credibly Neutral ESG Scoring System - /press-releases/near-protocol-partners-with-esg-dao-to-support-the-creation-of-openesg-an-open-and-credibly-neutral-esg-scoring-system/ - - - Tue, 29 Nov 2022 17:36:46 +0000 - /?post_type=near_press_release#038;p=19308 - - The post NEAR Protocol Partners with ESG DAO to Support the Creation of “OpenESG”: an Open and Credibly Neutral ESG Scoring System appeared first on NEAR Protocol.

-]]>
- The post NEAR Protocol Partners with ESG DAO to Support the Creation of “OpenESG”: an Open and Credibly Neutral ESG Scoring System appeared first on NEAR Protocol.

-]]>
- - - -
- - FIRST FAN-OWNED TEAM LAUNCHES FOR SAILGP - /press-releases/first-fan-owned-team-launches-for-sailgp/ - - - Thu, 10 Nov 2022 16:49:06 +0000 - /?post_type=near_press_release#038;p=19077 - - The post FIRST FAN-OWNED TEAM LAUNCHES FOR SAILGP appeared first on NEAR Protocol.

-]]>
- The post FIRST FAN-OWNED TEAM LAUNCHES FOR SAILGP appeared first on NEAR Protocol.

-]]>
- - - -
- - Bitcoin Suisse announces full support of NEAR for institutional investors  - /press-releases/bitcoin-suisse-announces-full-support-of-near-for-institutional-investors/ - - - Tue, 08 Nov 2022 08:37:42 +0000 - /?post_type=near_press_release#038;p=19002 - - The post Bitcoin Suisse announces full support of NEAR for institutional investors  appeared first on NEAR Protocol.

-]]>
- The post Bitcoin Suisse announces full support of NEAR for institutional investors  appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR Protocol Enhances its Ecosystem with NEP-141 Integration on Binance Custody - /press-releases/near-protocol-enhances-its-ecosystem-with-nep-141-integration-on-binance-custody/ - - - Mon, 07 Nov 2022 14:16:35 +0000 - /?post_type=near_press_release#038;p=18996 - - The post NEAR Protocol Enhances its Ecosystem with NEP-141 Integration on Binance Custody appeared first on NEAR Protocol.

-]]>
- The post NEAR Protocol Enhances its Ecosystem with NEP-141 Integration on Binance Custody appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR wallet users soar to 20+ million - /press-releases/near-wallet-users-soar-to-20-million/ - - - Mon, 07 Nov 2022 11:24:28 +0000 - /?post_type=near_press_release#038;p=18993 - - The post NEAR wallet users soar to 20+ million appeared first on NEAR Protocol.

-]]>
- The post NEAR wallet users soar to 20+ million appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR Teams With Google Cloud to Accelerate Web3 Startups - /press-releases/near-teams-with-google-cloud-to-accelerate-web3-startups/ - - - Tue, 04 Oct 2022 11:30:23 +0000 - /?post_type=near_press_release#038;p=18711 - - The post NEAR Teams With Google Cloud to Accelerate Web3 Startups appeared first on NEAR Protocol.

-]]>
- The post NEAR Teams With Google Cloud to Accelerate Web3 Startups appeared first on NEAR Protocol.

-]]>
- - - -
- - Near and Circle announce USDC support for multi chain ecosystem - /press-releases/near-and-circle-announce-usdc-support-for-multi-chain-ecosystem/ - - - Wed, 28 Sep 2022 12:00:56 +0000 - /?post_type=near_press_release#038;p=18714 - - The post Near and Circle announce USDC support for multi chain ecosystem appeared first on NEAR Protocol.

-]]>
- The post Near and Circle announce USDC support for multi chain ecosystem appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/press-releases-categories/partner/index.html b/public/blog/press-releases-categories/partner/index.html deleted file mode 100644 index 1af056783..000000000 --- a/public/blog/press-releases-categories/partner/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Partner Archives – NEAR Protocol

Press Center

For media enquiries, please write to us at [email protected]

Press releases

Partner
Dec 9, 2022

Wirex Launches 52 Tokens for Accessing Web3

Partner
Dec 1, 2022

NEAR to join forces with Grupo Nutresa in LatAm to launch Web3 loyalty programme

Partner
Nov 30, 2022

NEAR partners with Afropolitan

Filter by category

Coverage

The Paypers
Dec 9, 2022

Wirex launches 52 new tokens in partnership with NEAR

Sail World
Nov 10, 2022

First fan-owned team launches for SailGP

Business Cloud
Oct 13, 2022

Near Foundation appoints new Chief Operating Officer and general counsel

Media Kit

Leadership
Image of Marieke Flament
Marieke Flament
CEO of NEAR Foundation
Download:
Image of Illia Polosukhin
Illia Polosukhin
CEO of NEAR Protocol
Download:
Image of Alexander Skidanov
Alexander Skidanov
Co-founder of NEAR Protocol
Download:
Brand assets
NEAR Protocol logo
NEAR Protocol logo
Logo as SVG
NEAR Foundation logo
NEAR Foundation logo
Logo as SVG
NEAR Brand Book
NEAR Brand Book
Archive with all styles and variations
\ No newline at end of file diff --git a/public/blog/press-releases-categories/partner/page/2/index.html b/public/blog/press-releases-categories/partner/page/2/index.html deleted file mode 100644 index a92c7a9df..000000000 --- a/public/blog/press-releases-categories/partner/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Partner Archives – Page 2 of 2 – NEAR Protocol

Press Center

For media enquiries, please write to us at [email protected]

Press releases

Partner
Dec 9, 2022

Wirex Launches 52 Tokens for Accessing Web3

Partner
Dec 1, 2022

NEAR to join forces with Grupo Nutresa in LatAm to launch Web3 loyalty programme

Partner
Nov 30, 2022

NEAR partners with Afropolitan

Filter by category

Coverage

The Paypers
Dec 9, 2022

Wirex launches 52 new tokens in partnership with NEAR

Sail World
Nov 10, 2022

First fan-owned team launches for SailGP

Business Cloud
Oct 13, 2022

Near Foundation appoints new Chief Operating Officer and general counsel

Media Kit

Leadership
Image of Marieke Flament
Marieke Flament
CEO of NEAR Foundation
Download:
Image of Illia Polosukhin
Illia Polosukhin
CEO of NEAR Protocol
Download:
Image of Alexander Skidanov
Alexander Skidanov
Co-founder of NEAR Protocol
Download:
Brand assets
NEAR Protocol logo
NEAR Protocol logo
Logo as SVG
NEAR Foundation logo
NEAR Foundation logo
Logo as SVG
NEAR Brand Book
NEAR Brand Book
Archive with all styles and variations
\ No newline at end of file diff --git a/public/blog/press-releases-categories/regional-hubs/feed/index.xml b/public/blog/press-releases-categories/regional-hubs/feed/index.xml deleted file mode 100644 index 3b20d24af..000000000 --- a/public/blog/press-releases-categories/regional-hubs/feed/index.xml +++ /dev/null @@ -1,79 +0,0 @@ - - - - Regional Hubs Archives – NEAR Protocol - - /blog/press-releases-categories/regional-hubs/ - - Tue, 29 Nov 2022 17:32:42 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Regional Hubs Archives – NEAR Protocol - /blog/press-releases-categories/regional-hubs/ - 32 - 32 - - - NEAR India backs wellness platform Growfitter to support global Web3 expansion - /press-releases/near-india-backs-wellness-platform-growfitter-to-support-global-web3-expansion/ - - - Tue, 29 Nov 2022 17:32:42 +0000 - /?post_type=near_press_release#038;p=19307 - - The post NEAR India backs wellness platform Growfitter to support global Web3 expansion appeared first on NEAR Protocol.

-]]>
- The post NEAR India backs wellness platform Growfitter to support global Web3 expansion appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR launches Web3 regional hub in Korea - /press-releases/near-launches-web3-regional-hub-in-korea/ - - - Mon, 07 Nov 2022 10:38:40 +0000 - /?post_type=near_press_release#038;p=18983 - - The post NEAR launches Web3 regional hub in Korea appeared first on NEAR Protocol.

-]]>
- The post NEAR launches Web3 regional hub in Korea appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR launches regional hub in Kenya to lead blockchain innovation and talent development in Africa - /press-releases/near-launches-regional-hub-in-kenya-to-lead-blockchain-innovation-and-talent-development-in-africa/ - - - Mon, 09 May 2022 08:40:41 +0000 - /?post_type=near_press_release#038;p=18729 - - The post NEAR launches regional hub in Kenya to lead blockchain innovation and talent development in Africa appeared first on NEAR Protocol.

-]]>
- The post NEAR launches regional hub in Kenya to lead blockchain innovation and talent development in Africa appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/press-releases-categories/regional-hubs/index.html b/public/blog/press-releases-categories/regional-hubs/index.html deleted file mode 100644 index 2744b44a0..000000000 --- a/public/blog/press-releases-categories/regional-hubs/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Regional Hubs Archives – NEAR Protocol

Press Center

For media enquiries, please write to us at [email protected]

Press releases

Regional Hubs
Nov 29, 2022

NEAR India backs wellness platform Growfitter to support global Web3 expansion

Regional Hubs
Nov 7, 2022

NEAR launches Web3 regional hub in Korea

Regional Hubs
May 9, 2022

NEAR launches regional hub in Kenya to lead blockchain innovation and talent development in Africa

Filter by category

Coverage

The Paypers
Dec 9, 2022

Wirex launches 52 new tokens in partnership with NEAR

Sail World
Nov 10, 2022

First fan-owned team launches for SailGP

Business Cloud
Oct 13, 2022

Near Foundation appoints new Chief Operating Officer and general counsel

Media Kit

Leadership
Image of Marieke Flament
Marieke Flament
CEO of NEAR Foundation
Download:
Image of Illia Polosukhin
Illia Polosukhin
CEO of NEAR Protocol
Download:
Image of Alexander Skidanov
Alexander Skidanov
Co-founder of NEAR Protocol
Download:
Brand assets
NEAR Protocol logo
NEAR Protocol logo
Logo as SVG
NEAR Foundation logo
NEAR Foundation logo
Logo as SVG
NEAR Brand Book
NEAR Brand Book
Archive with all styles and variations
\ No newline at end of file diff --git a/public/blog/press-releases-categories/technical/feed/index.xml b/public/blog/press-releases-categories/technical/feed/index.xml deleted file mode 100644 index 0f392097a..000000000 --- a/public/blog/press-releases-categories/technical/feed/index.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - Technical Archives – NEAR Protocol - - /blog/press-releases-categories/technical/ - - Thu, 27 Oct 2022 08:39:13 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Technical Archives – NEAR Protocol - /blog/press-releases-categories/technical/ - 32 - 32 - - - NEAR Releases JavaScript SDK, Bringing Web3 to 20 Million Developers - /press-releases/near-releases-javascript-sdk-bringing-web3-to-20-million-developers/ - - - Mon, 08 Aug 2022 23:30:34 +0000 - /?post_type=near_press_release#038;p=18712 - - The post NEAR Releases JavaScript SDK, Bringing Web3 to 20 Million Developers appeared first on NEAR Protocol.

-]]>
- The post NEAR Releases JavaScript SDK, Bringing Web3 to 20 Million Developers appeared first on NEAR Protocol.

-]]>
- - - -
- - Mintbase Raises $7.5 million in Series A and $5 million grant pool to pioneer NFT infrastructure - /press-releases/mintbase-raises-7-5-million-in-series-a-and-5-million-grant-pool-to-pioneer-nft-infrastructure/ - - - Tue, 19 Apr 2022 08:27:59 +0000 - /?post_type=near_press_release#038;p=18728 - - The post Mintbase Raises $7.5 million in Series A and $5 million grant pool to pioneer NFT infrastructure appeared first on NEAR Protocol.

-]]>
- The post Mintbase Raises $7.5 million in Series A and $5 million grant pool to pioneer NFT infrastructure appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/press-releases-categories/technical/index.html b/public/blog/press-releases-categories/technical/index.html deleted file mode 100644 index 78c620c93..000000000 --- a/public/blog/press-releases-categories/technical/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Technical Archives – NEAR Protocol

Press Center

For media enquiries, please write to us at [email protected]

Press releases

Technical
Aug 8, 2022

NEAR Releases JavaScript SDK, Bringing Web3 to 20 Million Developers

Other, Technical
Apr 19, 2022

Mintbase Raises $7.5 million in Series A and $5 million grant pool to pioneer NFT infrastructure

Filter by category

Coverage

The Paypers
Dec 9, 2022

Wirex launches 52 new tokens in partnership with NEAR

Sail World
Nov 10, 2022

First fan-owned team launches for SailGP

Business Cloud
Oct 13, 2022

Near Foundation appoints new Chief Operating Officer and general counsel

Media Kit

Leadership
Image of Marieke Flament
Marieke Flament
CEO of NEAR Foundation
Download:
Image of Illia Polosukhin
Illia Polosukhin
CEO of NEAR Protocol
Download:
Image of Alexander Skidanov
Alexander Skidanov
Co-founder of NEAR Protocol
Download:
Brand assets
NEAR Protocol logo
NEAR Protocol logo
Logo as SVG
NEAR Foundation logo
NEAR Foundation logo
Logo as SVG
NEAR Brand Book
NEAR Brand Book
Archive with all styles and variations
\ No newline at end of file diff --git a/public/blog/press-releases/bitcoin-suisse-announces-full-support-of-near-for-institutional-investors/index.html b/public/blog/press-releases/bitcoin-suisse-announces-full-support-of-near-for-institutional-investors/index.html deleted file mode 100644 index e87432170..000000000 --- a/public/blog/press-releases/bitcoin-suisse-announces-full-support-of-near-for-institutional-investors/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /press-releases/bitcoin-suisse-announces-full-support-of-near-for-institutional-investors/ \ No newline at end of file diff --git a/public/blog/press-releases/fireblocks-provides-custody-facility-for-institutional-investors-on-near/index.html b/public/blog/press-releases/fireblocks-provides-custody-facility-for-institutional-investors-on-near/index.html deleted file mode 100644 index 169ea5234..000000000 --- a/public/blog/press-releases/fireblocks-provides-custody-facility-for-institutional-investors-on-near/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /blog/fireblocks-provides-custody-facility-for-institutional-investors-on-near/ \ No newline at end of file diff --git a/public/blog/press-releases/marieke-flament-appointed-ceo-of-near-foundation/index.html b/public/blog/press-releases/marieke-flament-appointed-ceo-of-near-foundation/index.html deleted file mode 100644 index 598ed7dd0..000000000 --- a/public/blog/press-releases/marieke-flament-appointed-ceo-of-near-foundation/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /press-releases/marieke-flament-appointed-ceo-of-near-foundation/ \ No newline at end of file diff --git a/public/blog/press-releases/mintbase-raises-7-5-million-in-series-a-and-5-million-grant-pool-to-pioneer-nft-infrastructure/index.html b/public/blog/press-releases/mintbase-raises-7-5-million-in-series-a-and-5-million-grant-pool-to-pioneer-nft-infrastructure/index.html deleted file mode 100644 index 856ed12da..000000000 --- a/public/blog/press-releases/mintbase-raises-7-5-million-in-series-a-and-5-million-grant-pool-to-pioneer-nft-infrastructure/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /press-releases/mintbase-raises-7-5-million-in-series-a-and-5-million-grant-pool-to-pioneer-nft-infrastructure/ \ No newline at end of file diff --git a/public/blog/press-releases/near-and-circle-announce-usdc-support-for-multi-chain-ecosystem/index.html b/public/blog/press-releases/near-and-circle-announce-usdc-support-for-multi-chain-ecosystem/index.html deleted file mode 100644 index 140f41520..000000000 --- a/public/blog/press-releases/near-and-circle-announce-usdc-support-for-multi-chain-ecosystem/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /blog/near-and-circle-announce-usdc-support-for-multi-chain-ecosystem/ \ No newline at end of file diff --git a/public/blog/press-releases/near-foundation-and-forkast-unveil-shortlist-for-women-in-web3-changemakers-2022/index.html b/public/blog/press-releases/near-foundation-and-forkast-unveil-shortlist-for-women-in-web3-changemakers-2022/index.html deleted file mode 100644 index 7eff14004..000000000 --- a/public/blog/press-releases/near-foundation-and-forkast-unveil-shortlist-for-women-in-web3-changemakers-2022/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /press-releases/near-foundation-and-forkast-unveil-shortlist-for-women-in-web3-changemakers-2022/ \ No newline at end of file diff --git a/public/blog/press-releases/near-launches-regional-hub-in-kenya-to-lead-blockchain-innovation-and-talent-development-in-africa/index.html b/public/blog/press-releases/near-launches-regional-hub-in-kenya-to-lead-blockchain-innovation-and-talent-development-in-africa/index.html deleted file mode 100644 index 20425772e..000000000 --- a/public/blog/press-releases/near-launches-regional-hub-in-kenya-to-lead-blockchain-innovation-and-talent-development-in-africa/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /press-releases/near-launches-regional-hub-in-kenya-to-lead-blockchain-innovation-and-talent-development-in-africa/ \ No newline at end of file diff --git a/public/blog/press-releases/near-launches-web3-regional-hub-in-korea/index.html b/public/blog/press-releases/near-launches-web3-regional-hub-in-korea/index.html deleted file mode 100644 index 06d661909..000000000 --- a/public/blog/press-releases/near-launches-web3-regional-hub-in-korea/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /press-releases/near-launches-web3-regional-hub-in-korea/ \ No newline at end of file diff --git a/public/blog/press-releases/near-opens-submissions-for-women-in-web3-changemakers-2022/index.html b/public/blog/press-releases/near-opens-submissions-for-women-in-web3-changemakers-2022/index.html deleted file mode 100644 index a1aa515d6..000000000 --- a/public/blog/press-releases/near-opens-submissions-for-women-in-web3-changemakers-2022/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /press-releases/near-opens-submissions-for-women-in-web3-changemakers-2022/ \ No newline at end of file diff --git a/public/blog/press-releases/near-protocol-enhances-its-ecosystem-with-nep-141-integration-on-binance-custody/index.html b/public/blog/press-releases/near-protocol-enhances-its-ecosystem-with-nep-141-integration-on-binance-custody/index.html deleted file mode 100644 index 77941daf5..000000000 --- a/public/blog/press-releases/near-protocol-enhances-its-ecosystem-with-nep-141-integration-on-binance-custody/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /press-releases/near-protocol-enhances-its-ecosystem-with-nep-141-integration-on-binance-custody/ \ No newline at end of file diff --git a/public/blog/press-releases/near-releases-javascript-sdk-bringing-web3-to-20-million-developers/index.html b/public/blog/press-releases/near-releases-javascript-sdk-bringing-web3-to-20-million-developers/index.html deleted file mode 100644 index a54c192ee..000000000 --- a/public/blog/press-releases/near-releases-javascript-sdk-bringing-web3-to-20-million-developers/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /blog/near-releases-javascript-sdk-bringing-web3-to-20-million-developers/ \ No newline at end of file diff --git a/public/blog/press-releases/near-teams-with-google-cloud-to-accelerate-web3-startups/index.html b/public/blog/press-releases/near-teams-with-google-cloud-to-accelerate-web3-startups/index.html deleted file mode 100644 index 5dd4752c2..000000000 --- a/public/blog/press-releases/near-teams-with-google-cloud-to-accelerate-web3-startups/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /blog/near-teams-with-google-cloud-to-accelerate-web3-startups/ \ No newline at end of file diff --git a/public/blog/press-releases/near-wallet-users-soar-to-20-million/index.html b/public/blog/press-releases/near-wallet-users-soar-to-20-million/index.html deleted file mode 100644 index 19724da48..000000000 --- a/public/blog/press-releases/near-wallet-users-soar-to-20-million/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /press-releases/near-wallet-users-soar-to-20-million/ \ No newline at end of file diff --git a/public/blog/press-releases/sailgp-and-near-unveil-multi-year-global-league-partnership/index.html b/public/blog/press-releases/sailgp-and-near-unveil-multi-year-global-league-partnership/index.html deleted file mode 100644 index 136543cee..000000000 --- a/public/blog/press-releases/sailgp-and-near-unveil-multi-year-global-league-partnership/index.html +++ /dev/null @@ -1 +0,0 @@ -Redirecting...

You are being redirected to /press-releases/sailgp-and-near-unveil-multi-year-global-league-partnership/ \ No newline at end of file diff --git a/public/blog/tag/accelerator/feed/index.xml b/public/blog/tag/accelerator/feed/index.xml deleted file mode 100644 index d9709ca56..000000000 --- a/public/blog/tag/accelerator/feed/index.xml +++ /dev/null @@ -1,715 +0,0 @@ - - - - Accelerator Archives – NEAR Protocol - - /blog/tag/accelerator/ - - Thu, 04 May 2023 00:02:35 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Accelerator Archives – NEAR Protocol - /blog/tag/accelerator/ - 32 - 32 - - - NEAR Foundation Launches NEAR Horizon - /blog/near-foundation-launches-near-horizon/ - - - Wed, 26 Apr 2023 16:47:54 +0000 - - - - /?p=20420 - - Though there have been recent signs of crypto winter thawing, developers have continued to make the most of the current …

-

The post NEAR Foundation Launches NEAR Horizon appeared first on NEAR Protocol.

-]]> - Though there have been recent signs of crypto winter thawing, developers have continued to make the most of the current builder’s market. NEAR, in particular, has seen significant growth in new projects and increased adoption over the past year.  

- - - -

NEAR’s expansion is due in part to some significant upgrades and announcements from its core team. Most recently, NEAR announced its transition to a Blockchain Operating System (BOS), an industry first that further establishes NEAR as the direct entry point into Web3. With the BOS, NEAR is no longer just a Layer 1 — it’s the OS for an open web, free from the centralized platforms of Web2. 

- - - -

During the announcement, NEAR co-founder Illia Polosukhin signaled that the transition to the BOS was just the beginning of what’s to come for NEAR. With Consensus in full swing, and NEAR’s presence at the conference, many Web3 enthusiasts and NEAR community members anticipate more exciting announcements and were not disappointed. 

- - - -

At Consensus, NEAR Foundation announced NEAR Horizon, an accelerator revolutionizing how founders are supported in Web3. Made possible through partnerships with Dragonfly, Pantera, Lyric, Fabric Ventures, Decasonic, Hashed, and others, NEAR Horizon will enable founding teams to scale their projects with a wide range of support. This support will, in turn, enable the rapid growth of great products with real-world value in the NEAR ecosystem.

- - - -

A revolutionary accelerator for Web3 startups

- - - -

NEAR Horizon is an exciting opportunity for founder teams looking to build their startups on the BOS. Startups can interact with NEAR Horizon through a double-sided marketplace application that connects founders to each other, and to the people and organizations who are best able to accelerate their growth. 

- - - -

At launch, the marketplace will include over 15 service providers, 40 mentors, and over 300 backers. Founders in the NEAR ecosystem will have direct self-service access to NEAR Horizon, allowing them to make the connections and generate the resources that will help them succeed. In addition to these immediate resources, founders can apply for credits that cover service costs in critical development areas including marketing, legal, back-office finance, product, and infrastructure. 

- - - -
- -
- - - -

For founders looking for additional support and guidance throughout their Horizon journey, the platform will also be equipped with programs facilitated through a NEAR Foundation partner, providing mentorship, business resources, and a direct line to startup capital. These programs are available through a wide range of industry leading groups including Antler, Brinc, FabricX, CV Labs, Blockchain Founders Group, among others. Regardless of the path founders choose to take, NEAR Horizon will provide them with the support they need when they need it most to accelerate the growth of their Web3 projects built on NEAR.

- - - -

As crypto winter’s thawing hopefully promises the arrival of a crypto spring, NEAR is continuing to build momentum with both founders and investors in the Web3 community. With higher transaction speeds than Ethereum, a strong commitment to its ecosystem, and an industry-first Blockchain Operating System, NEAR has created a direct path toward success for founders. 

- - - -

Interested in getting involved? Over the next couple of months, the NEAR Foundation will be onboarding projects and founders to NEAR Horizon. If you don’t want to miss the introductions, advice, capital, or hires that come from the marketplace, reach out and get involved today:

- - - - -

The post NEAR Foundation Launches NEAR Horizon appeared first on NEAR Protocol.

-]]>
- - - - - - Open Call for NEAR Accelerator Service Partners - /blog/open-call-for-near-accelerator-service-partners/ - - - Wed, 05 Apr 2023 16:38:08 +0000 - - - - - /?p=20383 - - The NEAR blockchain is an open-source, decentralized blockchain protocol that is designed to be scalable, developer-friendly, and able to support …

-

The post Open Call for NEAR Accelerator Service Partners appeared first on NEAR Protocol.

-]]>
- The NEAR blockchain is an open-source, decentralized blockchain protocol that is designed to be scalable, developer-friendly, and able to support a wide range of decentralized applications (dApps) and smart contracts. NEAR has built the Blockchain Operating System (BOS), a Web3 stack to integrate experiences from across the Open Web and streamline the discovery and onboarding experience for users and developers alike.

- - - -

NEAR Foundation has committed over $90M in capital to ecosystem growth, and the NEAR ecosystem grew from 0 to over 1,000 teams. One of the central lessons learned during this time is that founding teams need a host of contributors — beyond investment — in order to be successful. 

- - - -

Partner with NEAR Foundation for Accelerator program

- - - -

NEAR Foundation recently announced Updates to Decentralized Funding, Development DAO, and the Accelerator, and released an Open Call for NEAR Accelerator Partners. To further assist founders and startups, the NEAR Foundation is looking to partner with existing products, experts, and services to support teams participating in NEAR Accelerator programs in a variety of different functions:

- - - -
    -
  • Legal Partner RFP — Comprehensive legal and regulatory guidance for cryptocurrency, web3, and general business matters such as intellectual property, taxation, governance, regulatory rulings, outsourcing, cross-border transactions, and consumer/data protection. Expertise in Anti-Money Laundering/Know Your Customer (AML/KYC) compliance and overall startup support from formation to governance.
  • - - - -
  • Marketing Partner RFP — Full-service marketing support for product engagement and go-to-market strategy execution, including digital marketing, branding, creative concept development, campaign planning, and design.
  • - - - -
  • Finance Partner RFP — Comprehensive financial services tailored to web3 startups, including accounting, bookkeeping, tax services, and general financial advisory.
  • - - - -
  • Talent / Recruiting Partner RFP — Specialized recruiting and talent acquisition services to help accelerator teams attract top-tier talent essential for building successful and sustainable businesses.
  • - - - -
  • Technical Partner RFP — Robust infrastructure and development tools designed to expedite technical and product development, encompassing web3 services, audit services, traditional cloud services as well as UX/UI services.
  • - - - -
  • Product Partner RFP — Expert guidance in product-market fit, go-to-market strategy, product vision and roadmap development, and tokenomics evaluation for web3 startups.
  • - - - -
  • PR / Comm Partner RFP — Strategic public relations and communications services aimed at boosting product engagement and supporting go-to-market strategies, covering PR campaigns, social media, communications, and community outreach.
  • -
- - - -

NEAR Foundation will offer service credits to teams participating in the accelerator program to use partner services to help them accomplish their vision. The ultimate goal is for founding teams to create great products and run successful fundraising campaigns, while also increasing revenue and market share for other stakeholders interacting with the product such as our service partners. NEAR Foundation commits to providing access to NEAR ecosystem teams for the selected service partner(s) as “preferred partners.” This will mean that the selected partner(s) are vetted and approved by the NEAR Foundation, and should lead to an increase in the number of projects that are interested in using the partner(s)’ product / services. 

- - - -

Important dates for NEAR accelerator service partners

- - - -

We will be assessing proposals based on the requirements outlined in each of the function-specific service partner open calls. Service partners are expected to submit their proposals by Apr 23, 2023. The NEAR Foundation review team will be conducting interviews with selected candidates between May 13-17. The review team will shortlist the service partners between May 20-23 and will communicate further with the selected parties. Final approval will be provided by the NEAR Foundation Counsel. 

-

The post Open Call for NEAR Accelerator Service Partners appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR and Startup Wise Guys Partner on MetaBUILD’s Pre-Accelerator Program - /blog/near-and-startup-wise-guys-partner-on-metabuilds-pre-accelerator-program/ - - - Thu, 16 Feb 2023 14:01:00 +0000 - - - - - /?p=19756 - - NEAR Foundation is excited to announce a new partnership with Startup Wise Guys — Europe’s biggest startup accelerator, which has …

-

The post NEAR and Startup Wise Guys Partner on MetaBUILD’s Pre-Accelerator Program appeared first on NEAR Protocol.

-]]>
- NEAR Foundation is excited to announce a new partnership with Startup Wise Guys — Europe’s biggest startup accelerator, which has empowered over 350 projects across the world. Together with SWG, the Foundation will bring  20 winning projects from the MetaBUILD III hackathon into an 8-week pre-acceleration program to grow and prepare these new teams to bring their first product iteration to market.

- - - -

The partnership’s goal is to bring great new products to life in Web3.  After the hack, NEAR Foundation and Startup Wise Guys will prepare all projects to join accelerators, make their first raise, and launch to market. 

- - - -

Startup Wise Guys’ Pre-Acceleration Program for MetaBUILD

- - - -
- - - -

Let’s go over the program. For this occasion, we’ll be running an 8-week program with Startup Wise Guys, covering everything from finding your project’s mission, to setting up team structure, finance, and communication programs for your brand.

- - - -


Each week covers a specific topic, and will feature both recorded and live events as well as exercises for the projects to take on! 

- - - -

Each week, all teams will progress to fleshing out their new project’s company setup, brand, and prepare to launch to market. Throughout the program, Startup Wise Guys and NEAR will aid projects with 1-1 mentorships (invited from the ecosystem and from Startup Wise Guys’ network), pitch training and drills, Q&As, and a folder of ready-to-use learning materials.

- - - -
    -
  • Week 1: Onboarding Session
  • -
- - - -

Onboarding of all projects into the program, and setting expectations for all upcoming weeks and events.

- - - -
    -
  • Week 2: Setting Goals & KPIs
  • -
- - - -

Structuring each project’s journey. How to find a mission and vision for your project long term.

- - - -
    -
  • Week 3: Problem Definition & Pitching
  • -
- - - -

Crafting your project’s pitch and problem-to-be-solved to define your selling points.

- - - -
    -
  • Week 4: Product development & effective planning
  • -
- - - -

Planning the product’s development, and identifying key differentiators to give it unique aspects in the market.

- - - -
    -
  • Week 5: Focus and Execution
  • -
- - - -

Crisis-handling in companies, and pace. How to maintain your team’s rhythm.

- - - -
    -
  • Week 6: Sales & Team Management Basics
  • -
- - - -

Sales, marketing, and branding for early startups and projects. How to define your vector for gaining traction in the world.

- - - -
    -
  • Week 7: Company Communications, Finances, Fundraising
  • -
- - - -

Company communications and finance preparations. How to define your key metrics of success, and prepare a structure to present to investors, as well as how to seek and select the right ones.

- - - -
    -
  • Week 8: Legal Basics
  • -
- - - -

How to register your business, understanding your basic legal structure and needs to get started as a company. Also, going over any regulatory requirements like GDPR, and Intellectual Property, as well as minimizing legal needs.

- - - -
    -
  • Week 9: Graduation & Pitches!
  • -
- - - -

Final day! Graduated projects who completed the program will present their project’s revamped pitches and go out to the world.

- - - -

Come Hack, and Build On!

- - - -

NEAR Foundation can’t wait to see the new exciting projects that will be born from MetaBUILD, and is excited about this new partnership with Startup Wise Guys in 2023. 

- - - -

The Foundation will share all progress along the way as we finalize the submission phase of MetaBUILD and move onto judging. So stay tuned and follow all updates on Twitter!

-

The post NEAR and Startup Wise Guys Partner on MetaBUILD’s Pre-Accelerator Program appeared first on NEAR Protocol.

-]]>
- - - -
- - Open Call for NEAR Accelerator Partners - /blog/open-call-for-near-accelerator-partners/ - - - Wed, 08 Feb 2023 15:49:11 +0000 - - - - /?p=19761 - - The NEAR blockchain is an open-source, decentralized blockchain protocol designed to be scalable, developer-friendly, and able to support a wide …

-

The post Open Call for NEAR Accelerator Partners appeared first on NEAR Protocol.

-]]>
- The NEAR blockchain is an open-source, decentralized blockchain protocol designed to be scalable, developer-friendly, and able to support a wide range of decentralized applications (dApps) and smart contracts.

- - - -

The NEAR Foundation is the non-profit organization behind the NEAR blockchain, responsible for the development and maintenance of the NEAR Protocol and its associated ecosystem. Since the inception of the grants program, the NEAR Foundation has committed over $90m capital and the ecosystem grew from 0 to over 1,000 teams. 

- - - -

One of the central lessons learned during this time is that founding teams need a host of contributors in order to be successful, including mentors/advisors, subject matter specific resources (e.g. legal playbooks, go-to-market strategies, tokenomics, etc), and access to investment opportunities. 

- - - -

NEAR Foundation is looking to partner with existing acceleration programs in two ways:

- - - -
    -
  1. Leverage the partner’s excellence and experience in running cohort-based acceleration programs. 
  2. - - - -
  3. Beta test and help build a digital product being developed by NEAR that connects projects with contributors (including investors).
  4. - - - -
  5. If you’re interested in becoming a NEAR Accelerator Partner, please read the requirements below. Proposals must be submitted via Google Form by February 17th.
  6. -
- - - -

*If you’re a startup looking for accelerator programs, NEAR Foundation is looking to engage with the best partners out there. Register your interest in the NEAR Accelerator here.

- - - -

NEAR Foundation’s Goal 

- - - -

Attract the most talented early stage teams to NEAR and provide them with the right tools, knowledge, and network to successfully raise external funds at a later stage. 

- - - -

Success metrics

- - - -
    -
  1. Quality of founder experience, as measured by an NPS score.
  2. - - - -
  3. Ability for founders that have graduated from the accelerator(s) to raise their first or next round within a year of graduation.
  4. -
- - - -

Requirements

- - - -

NEAR Foundation will be assessing proposals based on the two dimensions explained below: the Accelerator Partner Requirements and the Digital Product Beta Participation Requirements. 

- - - -

Accelerator Partner Requirements

- - - -
    -
  1. Strong sourcing capabilities in the areas of our investment thesis
  2. -
- - - -

NEAR Foundation believes in selecting teams building projects with real world, utility-based use cases that tap into the existing pools of Web2 users and companies. They must leverage Web3 in novel ways to solve real world problems better than Web2 tech is able to. The Foundation will not be focused on specific verticals, and instead be relatively opportunistic in terms of use case (at least in the first few cohorts). DeFi and Gaming verticals would be excluded from the accelerator purview.

- - - -

The Foundation is focused on pre-seed and seed stage teams. We expect that teams selected for a NEAR sponsored cohort will build on NEAR and leverage NEAR Discovery. More information on NEAR Discovery here

- - - -

In your response, please detail the following:

- - - -
    -
  • Your investment thesis and the degree to which it does / does not align with our focus.
  • - - - -
  • Your approach to sourcing and acquiring top calibur teams. 
  • - - - -
  • Your approach to vetting teams to ensure quality.
  • -
- - - -
    -
  1. Web3 accelerator program scope 
  2. -
- - - -

As NEAR Foundation aims to attract the best teams, we want our accelerator partner to provide a top class experience and focus on the main challenges that Web3 startups face nowadays, including but not limited to: go-to-market, token economy and launches, fundraising and pitching, marketing and comms, governance, legal, etc. This will be supplemented by the support of experts within the NEAR ecosystem. 

- - - -

In your response, please detail the following:

- - - -
    -
  • Program scope and sequence (learning opportunities and delivery method)
  • - - - -
  • Scope of advisory and mentorship services
  • - - - -
  • Length of program
  • - - - -
  • Post program services
  • - - - -
  • Number of cohorts and anticipated cohort size (number of projects)
  • - - - -
  • Geographic focus areas 
  • - - - -
  • Delivery mode (e.g. in person, on-line, hybrid)
  • -
- - - -
    -
  1. Track record of success
  2. -
- - - -

NEAR Foundation seeks accelerator partners that have a strong track record of success. In your response, please detail the following:

- - - -
    -
  • Date when your program started
  • - - - -
  • Number of projects and cohorts that have graduated from your program
  • - - - -
  • Projects names per cohort
  • - - - -
  • Feedback from teams that have gone through your program
  • - - - -
  • Percent of teams that have been able to close their first or next round after graduating from your program 
  • - - - -
  • Average and median amount that graduating teams have been able to raise post-graduation
  • -
- - - -
    -
  1. Attractive deal terms
  2. -
- - - -

One of the most important factors in attracting high quality founders to the accelerator will be the quality of the investment terms. 

- - - -

In your response, please detail the following:

- - - -
    -
  • Your approach to investment (including standard allocation if applicable, percent of equity and tokens your team takes, approach to follow-on investment etc.). 
  • -
- - - -
    -
  1. Cost & investment
  2. -
- - - -

NEAR Foundation is open to various proposals in terms of costs and investments. Where we land will largely depend on the proposed value to NEAR and its ecosystem. 

- - - -

For NEAR specific cohorts, the Foundation’s goal is for both NEAR and the Accelerator Partner to share operational cost and investment opportunity. 

- - - -

For chain agnostic cohorts, we would be willing to provide direct technical and non-technical support from the NEAR Foundation Accelerator’s team for startups who choose NEAR as their Layer 1. 

- - - -

In your response, please detail the following:

- - - -
    -
  • Proposed approach (NEAR cohort vs chain agnostic or both)
  • - - - -
  • Proposed budget in support of the proposal: this budget should provide details about what the money will be used for (e.g. administrative costs, costs to host events, etc) i.e. P&L
  • - - - -
  • If applicable, propose the role the NEAR Foundation could play in terms of investment (e.g. LP / co-investor etc.)
  • - - - -
  • Potential startup date of the program and/or adherence to ongoing program
  • -
- - - -
    -
  1. Broader NEAR ecosystem support
  2. -
- - - -

NEAR Foundation would like its ecosystem of startups to leverage the partner capabilities even though they are not actively participating in the accelerator (e.g., share ready-made class material, leverage investor network, connections to enterprise, etc.).

- - - -

In your response, please detail the following:

- - - -
    -
  • Your perspective on providing these resources and supports to NEAR ecosystem projects that do not go through the accelerator program
  • - - - -
  • Additional costs that might be associated with providing these services (if applicable)
  • - - - -
  • Your proposal for how your services scale 
  • -
- - - -

Digital Product Beta Participation Requirements

- - - -

In 2023, Pagoda, NEAR Foundation and other key ecosystem participants are increasing the integration and seamless experience for developers and end users into one common operating system that will leverage fast onboarding experience, user profiles, new chat/ social capabilities, and more. As part of this platform, the Foundation is building a founder-focused application that will be the place for both NEAR-native and non-NEAR-native projects to be discovered, find contributors and investors, and grow towards their goals. We would like to invite accelerator partners in as beta customers and builders for this application.

- - - -

If your organization is both an investment team and an accelerator:

- - - -
    -
  • Agreement to use the digital product as a project “contributor,” meaning: -
      -
    • One or more resources from your team will actively engage with projects on the platform, providing advisory services
    • - - - -
    • Your team will leverage the platform to identify projects for investment 
    • -
    -
  • - - - -
  • You will encourage founding teams from your portfolio to use to the platform (they do not need to be building on NEAR) 
  • - - - -
  • You will actively work to improve your user experience by providing feedback to the project team and/or contributing directly to the development effort
  • -
- - - -

If your organization is solely an accelerator:

- - - -
    -
  • Agreement to use the digital product as a project “contributor,” meaning: -
      -
    • One or more resources from your team will actively engage with projects on the platform, providing advisory services
    • -
    -
  • - - - -
  • You will encourage founding teams from your portfolio to use to the platform (they do not need to be building on NEAR) 
  • - - - -
  • You will actively work to improve your user experience by providing feedback to the project team and/or contributing directly to the development effort
  • -
- - - -

In your response, please detail the following:

- - - -
    -
  •  Your interest and commitment in participation
  • - - - -
  • Your proposal for how you would engage in the beta (e.g., you will dedicate three part-time resources for the beta; you will contribute part-time engineering resource to contribute to building with us) 
  • -
- - - -

NEAR Foundation Commitments

- - - -

NEAR Foundation is committed to complement the partner’s current programs with ecosystem support (technical and non-technical). 

- - - -

Selection criteria and timelines

- - - -

NEAR Foundation will be assessing proposals based on the previously mentioned requirements. Acceleration partners are expected to submit their proposals by February 17, 2023 via Google Form. The NEAR Foundation review team will be conducting interviews with selected candidates between February 13-24. The review team will shortlist the partners between February 27-28 and will communicate further with the selected parties. Final approval will be provided by the NEAR Foundation Counsel. 

- - - -

Legal Disclosure: 

- - - -

Participation in our accelerator partners program is subject to the following terms and conditions: (1) Confidentiality: Participants will be required to keep all information and materials shared by the program confidential, unless otherwise agreed to in writing or as required by law. (2) Intellectual Property: All intellectual property created or developed by a participant during the program will remain the property of the participant, unless otherwise agreed to in writing by the participant. (3) Disclaimer of Liability: The program will not be liable for any damages arising out of or in connection with the program or the participation of any participant. (4) Governing Law: These terms and conditions will be governed by and construed in accordance with the laws of Switzerland. By participating in the program, participants agree to be bound by these terms and conditions.

-

The post Open Call for NEAR Accelerator Partners appeared first on NEAR Protocol.

-]]>
- - - -
- - diff --git a/public/blog/tag/accelerator/index.html b/public/blog/tag/accelerator/index.html deleted file mode 100644 index 5925bd396..000000000 --- a/public/blog/tag/accelerator/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Accelerator Archives – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/tag/account-aggregation/feed/index.xml b/public/blog/tag/account-aggregation/feed/index.xml deleted file mode 100644 index 69a64dfdd..000000000 --- a/public/blog/tag/account-aggregation/feed/index.xml +++ /dev/null @@ -1,308 +0,0 @@ - - - - Account Aggregation Archives – NEAR Protocol - - /blog/tag/account-aggregation/ - - Thu, 15 Feb 2024 16:58:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Account Aggregation Archives – NEAR Protocol - /blog/tag/account-aggregation/ - 32 - 32 - - - Unlocking Web3 Usability with Account Aggregation - /blog/unlocking-web3-usability-with-account-aggregation/ - - - Thu, 15 Feb 2024 14:21:00 +0000 - - - /?p=21229 - - Since the start, the focus for the NEAR ecosystem has been on advancing Chain Abstraction, or hiding the elements of …

-

The post Unlocking Web3 Usability with Account Aggregation appeared first on NEAR Protocol.

-]]>
- Since the start, the focus for the NEAR ecosystem has been on advancing Chain Abstraction, or hiding the elements of the blockchain (“abstracting away”) from users so they are not barriers to entry or participation in the decentralized Web. In Web3, the data and assets belong to the user, tied to their on-chain, noncustodial account. Currently every user has separate (usually many) accounts on each blockchain and also needs separate wallet software to manage those accounts. This requires users to manage the security for each account and wallet individually, deal with complex recovery processes if they make a mistake, and go through a thorny series of manual steps to move any assets into their wallets or across different wallets and chains. 

- - - -

The current world, where every wallet is managing accounts on many chains, is untenable as each account slowly falls out of sync with the others. In order to provide a consistent, abstracted experience for users across all chains, we need to aggregate accounts across all chains within a single interface––account abstraction alone is not enough. Enter Account Aggregation.

- - - -

Account Aggregation––the ability to transact on any blockchain through a single account and interface––is a critical pillar of advancing Chain Abstraction, defragmenting Web3 for app users and increasing their ability to move across networks or between applications with ease. Developers should not be building apps on single chains anymore in order to reach some specific market or pool of liquidity. Now dApps can truly become decentralized applications, yet still feel like the unified experience of using an app. 

- - - -

To enable an effective user experience for using all blockchains, without users needing to think about underlying infrastructure or switch networks, it’s important to have a single account from which they can navigate all of Web3. This means no manual bridging, no managing long lists of addresses on different networks, no gas tokens, and no more switching between wallets and networks. In the true spirit of Web3, this single account should be non-custodial and non-dependent on a specific wallet software or any other single service provider. 

- - - -
- - - -

NEAR is enabling such an experience for all Web3 users with Account Aggregation, which consists of 3 core technologies. 

- - - -
    -
  • NEAR Account: account abstraction for smooth onboarding and recovery of accounts.
  • - - - -
  • Chain Signatures: enabling NEAR network to have MPC nodes that are jointly signing transactions and messages.
  • - - - -
  • Intent Relayers: parties in the ecosystem that are able to execute the intent of the user on different chains.
  • -
- - - -

By adding Chain Signatures and Intent Relayers to the already robust NEAR account model, NEAR can become the home for multichain apps that abstract the pain points of switching networks and managing gas fees, bridging, and long lists of accounts away from end users. 

- - - -

This post details the 3 technical pillars of Account Aggregation and how they combine to deliver the next generation of usability for any decentralized application. Chain Signatures and Intent Relayers will be available on NEAR testnet by early March 2024. 

- - - -

NEAR Account

- - - -

Account aggregation on NEAR begins with the innovative NEAR account model. Incorporating native account abstraction since launch, NEAR’s account model offers a high degree of flexibility to developers and users alike. Ethereum introduced its version of account abstraction, EIP-4337, in March 2023. 

- - - -

Native account abstraction means that a given NEAR account maps to a human-readable account name instead of a public key hash, so accounts can have a large number of keys with different permissions for different functions. This means that NEAR account security is both stronger and easier to manage for users, while also allowing much broader functionality within a single account.

- - - -
- - - -

FastAuth, the industry-leading account creation experience NEAR launched in 2023, offers a Web2-like onboarding flow: users can sign up with just an email, and they don’t need to save a seed phrase or password. Instead, their FastAuth account and keys are secured using “Passkeys,” a new technology that replaces passwords with biometrics such as fingerprints or FaceID linked to a device. Users can also recover access to their account at any time by using their email through the MPC recovery service.

- - - -

Now, with added multichain functionality on the horizon, the power of the NEAR account can extend across all of Web3 and offer easier onboarding and security management to users of any decentralized application. By having passkey integration, revocation, and recovery in one place rather than scattered across every chain, users will have a significantly streamlined experience for managing their Web3 accounts.

- - - -

Chain Signatures

- - - -

Chain signatures allow any NEAR account to have associated “remote” addresses on other chains and to sign transactions and messages from those addresses. 

- - - -

Traditionally a user would have different private keys in different wallet providers to facilitate multichain interactions and would need to manage them manually. With Chain Signatures, the NEAR MPC network is the signer for these remote addresses, meaning there is no explicit private key.

- - - -

MPC (multi-party computation) signing allows a number of independent nodes to sign a message with key shares separately generated by non-trusting parties without needing to assemble them anywhere. The challenge with the standard MPC signing approach is that if nodes are changed, a new public key needs to be generated. The introduction of a novel threshold signature protocol which has a procedure of key resharing allows the MPC signer to maintain the same aggregate public key even as key shares and nodes constantly change.

- - - -
- - - -

Chain Signatures is the NEAR approach to make this model programmable. Making MPC signer nodes that are also nodes in the NEAR network allows for a smart contract call to instantiate a signature procedure for a given account. By using different derivations constructed from a chain ID, a NEAR account ID, and a provided path, each account receives an infinite number of remote addresses on every chain. 

- - - -

This amplifies the power and flexibility of NEAR accounts by allowing them to operate on any chain. Any NEAR smart contract can sign transactions and messages targeted for other chains––introducing another novel account programming primitive and extending the NEAR account model across all of Web3.

- - - -

The MPC signer network will start as a subset of validators and partners of NEAR. Over time it is expected to be added to all NEAR validators on the protocol level to continue increasing the security of the system. 

- - - -

Intent Relayers

- - - -

We can’t expect app users to pay gas fees in various native tokens across different chains. We also should not require users to explicitly swap tokens on the destination chain in order to pay there. To achieve a smooth user experience, it should be easy for users to pay on the NEAR network and then be able to transact value on other chains, i.e. to relay their intent from NEAR to another chain.

- - - -

With intent, a user can state what they want to achieve and leave out how it should be done. Users should be able to specify any action they want to take without having to navigate or understand the intricate complexities of multiple transactions on multiple chains they will be executed on, nor the swaps and funding required to achieve that action. 

- - - -

Although Chain Signatures is a generic technology that can be used in many ways for the first iteration of Account Aggregation, the relayer smart contract will control the remote account for users. This means that instead of the user’s account mapping to an address, the relayer.near will have a derivation for each user, allowing this smart contract to initiate signing and offer other services (like trading derivations).

- - - -

Let’s look at an example of how the first iteration of intent relayer will abstract away cross-chain gas and payments for a NEAR user: 

- - - -
    -
  • User has a root.near account that maps to the remote Ethereum address 0xabc via the relayer’s smart contract.
  • - - - -
  • User initiates a transaction to buy a BAYC NFT on OpenSea using their NEAR account and pays in $NEAR by doing a transaction on the NEAR network to relayer smart contract with Ethereum transaction payload in arguments and attaching the required $NEAR amount.
  • - - - -
  • The relayer smart contract will then forward the transaction bundle to the NEAR MPC signature contract. This bundle consists of (1) the transaction to fund the user’s 0xabc with $ETH required for gas and NFT payment and (2) user’s transaction to buy the BAYC NFT on OpenSea.
  • - - - -
  • The Chain Signature contract will sign both transactions using different derivations respective to the relayer contract and originating user.
  • - - - -
  • The relayer operator will observe the response from MPC service with signed transactions and submit them to the Ethereum network. This starts with initiating a fund transfer from a treasury paymaster account on Ethereum. This paymaster account will transfer ETH to the user’s 0xabc Ethereum address, equivalent to the NEAR that was originally sent by the user. 
  • - - - -
  • Then the relayer will submit the final transaction and the BAYC NFT will be purchased from the user’s 0xabc address using ETH to cover gas and payment.
  • -
- - - -

The above example showcases how an intent relayer reduces complexity for a user to complete a cross-chain transaction. This is an intent-based architecture, and this is only a brief initial example of what will be possible in the future to provide a seamless user experience and abstract blockchains for users.

- - - -

The intent relayers approach allows users to pay with any assets they own, not just $NEAR, opening up wallet and application developers to offer a variety of options: using application tokens for paying for multichain transactions, offering a subscription model by charging a flat fee, or offering extra discounts to incentivize specific behaviors. 

- - - -

Use Cases

- - - -

One account for using apps on all chains unlocks a range of previously difficult use cases for founders and developers. Here are some examples for founders and developers to consider as the possibilities for excellent multichain user experiences expand with Account Aggregation.

- - - -

Expanding user base for existing applications. Currently applications are only targeting the user base of the single chain they have launched on. With Account Aggregation, users can log into applications from every chain as an alternative wallet option. Application developers will simply need to add “Connect with NEAR” to their wallet selector.

- - - -

Wallet developers can also leverage NEAR’s decentralized and composable interfaces together with Account Aggregation to surface applications across all chains directly within their wallet experience.

- - - -

Bridgeless DeFi. The first example is bridgeless, cross-chain DeFi where a NEAR account can be a gateway to multiple chains through a unified app experience. This is especially useful for apps like DapDap, built on NEAR, which lets users discover DeFi apps and experiences from a range of L2s and start using them within a single interface. 

- - - -

Multichain DEX. One of the most desired but also complex-to-build use cases is a decentralized exchange (DEX) that works across most if not all chains. Currently users must default to centralized exchanges for such a multichain experience due to the complexity of bridging, gas, and handling separate wallets. With Account Aggregation, DEX smart contracts can live on NEAR while having deposit addresses across all chains. This means there is no need to bridge assets to a single chain to swap or for the user to bridge to the chain where assets have liquidity. Instead they can easily swap $BTC on the Bitcoin network for $OP on Optimism using such a NEAR smart contract.

- - - -

Bridging Assets. Although the Account Aggregation approach really focuses on using canonical assets on where they are issued, sometimes there is value in having wrapped assets. For example, in cases like Bitcoin or Ethereum where the canonical assets are too expensive and slow to move, wrapping becomes quite useful. To build a specific token bridge using Account Aggregation is just to make a NEAR smart contract that keeps an account of deposits of a given token and issues that respective token balance.

- - - -

Trading multichain asset bundles. Beyond simple trading, Account Aggregation allows users to make a NEAR account into a bundle of multichain assets. NEAR accounts themselves are tradeable (see NEAR account marketplace NameSky), which also allows the trading of everything that is deposited to such an account across all chains. For example, say the account xyz.near has 2 BTC, some BRC-20, a BAYC NFT on Ethereum, and some veCRV. By trading this entire account, there is no need to move each of the underlying assets on the other chains.  Instead, the new owner comes into possession of the whole bundle when the keys are rotated to them on the account.

- - - -

There is also an interesting potential approach to implement a multichain exchange of assets via a smart contract that internally maintains a mapping from an owner account to a given path derivation (which is what determines remote addresses on other chains). One can trade the derivation paths inside this smart contract, trading everything deposited on a remote account without trading the entire account. For example:

- - - -
    -
  • Smart contract dex.near internally maintains: 
  • -
- - - -
    -
  • derivation=/0/0/1 → root.near
  • - - - -
  • derivation=/0/0/2 → alice.near which maps to 0xabc on Ethereum
  • -
- - - -
    -
  • alice.near can sell root.near the derivation inside this smart contract for some amount on NEAR and now it will be inside dex.near. Then root.near can request to draw Ethereum assets from it later. 
  • -
- - - -
    -
  • derivation=/0/0/1 → root.near
  • - - - -
  • derivation=/0/0/2 → root.near
  • -
- - - -

This approach means users can trade assets across all chains at the speed (1s block time) and cost (below $0.01) of using NEAR.

- - - -

Delegated Smart Contract Permissions on NEAR. Another use case for Chain Signatures is the ability for a NEAR smart contract to execute something on behalf of other users––for example, to recover keys for an app user. 

- - - -

Let’s say there is a social_recovery.near contract that keeps track of a mapping of friends for a given account root.near. This root.near account at some point added a public key that the social_recovery.near account can sign via Chain Signatures. Friends can initiate a recovery flow, where they send a new public key given to them by the user to social_recovery.near. If enough friends do this, the social_recovery.near requests to sign a NEAR transaction that adds a new key on behalf of its own remote key with signer root.near. When executed, this transaction adds a new key to root.near, allowing the user to recover their account via a social recovery process they can set up in case they need it. 

- - - -

Similarly, smart contracts can execute rebalancing of pools on behalf of the user based on some condition and any other logic that the user decides to “install” on their account by adding a remote key from that account.

- - - -

DeFi on Bitcoin (and other non-smart contract chains). Using chain signatures, smart contracts on NEAR can control externally-owned accounts on non-smart contract chains like Bitcoin, Dogecoin, Ripple, Bittensor, Cosmos Hub, etc. This enables developers to use NEAR as a smart contract “layer” for chains that do not support this functionality natively. 

- - - -

For example, a developer can build a decentralized exchange for Bitcoin Ordinals, using a smart contract on NEAR to manage deposits (into Bitcoin addresses controlled by the contract) and to verify and execute swaps when two users agree to trade BTC for an Ordinal or BRC20 token. 

- - - -

Coming Soon to NEAR Testnet

- - - -

Excited to build with Account Aggregation? Keep an eye on NEAR’s docs: Chain Signatures and Intent Relayers are expected to be available on testnet by March 1, 2024. And join members of the NEAR ecosystem at the Chain Abstraction Summit, co-sponsored by NEAR Foundation during ETHDenver, to learn more about Account Aggregation and exciting innovations from all the projects contributing to Chain Abstraction.

- - - -

–Illia Polosukhin, David Millar-Durrant, Gautham Ravi, Dio Ortega, Mally Anderson

-

The post Unlocking Web3 Usability with Account Aggregation appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/account-aggregation/index.html b/public/blog/tag/account-aggregation/index.html deleted file mode 100644 index de56349b1..000000000 --- a/public/blog/tag/account-aggregation/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Account Aggregation Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ai-is-near/feed/index.xml b/public/blog/tag/ai-is-near/feed/index.xml deleted file mode 100644 index 96cd7b254..000000000 --- a/public/blog/tag/ai-is-near/feed/index.xml +++ /dev/null @@ -1,286 +0,0 @@ - - - - AI is NEAR Archives – NEAR Protocol - - /blog/tag/ai-is-near/ - - Wed, 14 Feb 2024 18:59:44 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - AI is NEAR Archives – NEAR Protocol - /blog/tag/ai-is-near/ - 32 - 32 - - - Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 - /blog/inaugural-ai-x-web3-hackathon-and-decentralized-ai-summit-to-debut-at-eth-denver-2024/ - - - Wed, 14 Feb 2024 18:59:43 +0000 - - - - - - - /?p=21226 - - In collaboration with Edge and Polygon Labs, the NEAR Foundation will co-sponsor a Decentralized AI Summit and “Autonomous Agent,” an …

-

The post Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 appeared first on NEAR Protocol.

-]]>
- In collaboration with Edge and Polygon Labs, the NEAR Foundation will co-sponsor a Decentralized AI Summit and “Autonomous Agent,” an AI x Web3 Hackathon, at ETHDenver on February 26 and 27. The events will bring together visionaries, developers, and enthusiasts working at the intersection of AI and Web3 along with a hackathon for builders and researchers to dive into the buzziest tech topic of today. Speakers at the Summit will include Vitalik Buterin of the Ethereum Foundation, Illia Polosukhin of NEAR Foundation, Sandeep Nailwal of Polygon Labs, and Sreeram Kannan of EigenLayer. 

- - - -

“Autonomous Agent” is the first event in the “{Chain}-of-Thought” series from Edge, which will explore and harness the potential of Web3 and open source AI. Edge is a research and development organization dedicated to democratizing access to open intelligence and advancing the evolution of next-generation web architecture. Hackers can expect hands-on hacking sessions, workshops, and mentorship opportunities with a chance to learn from those at the cutting edge of decentralized AI development. 

- - - -

The intersection of Artificial Intelligence (AI) and Web3 technology is poised to revolutionize industries, with many Web3 projects now incorporating AI into decentralized applications and developer tools. Ethereum Co-Founder Vitalik Buterin recently shared his observations about the intersection, and NEAR Co-Founder Illia Polosukhin shared how AI fits into the vision for the NEAR ecosystem in a recent post

- - - -

As the risks from centralized AI controlled primarily by major corporations become more apparent, investing in open source, transparent AI development will become increasingly important––along with community building, governance experiments, and advocacy. “{Chain} of Thought” will lead the way in bringing members of the AI and Web3 ecosystems together to advance these initiatives and make concrete progress.

- - - -

In addition to the premier sponsors, the “Autonomous Agent” hackathon is co-sponsored by EigenLayer, Gensyn, and Hyper Oracle, with co-hosting participation from Sentient, Lightspeed, and Symbolic Capital. Benefits of participation include:

- - - -
    -
  • Cutting-Edge Workshops: Engage with industry experts and thought leaders through immersive workshops exploring the latest trends and technologies in AI x Web3.
  • - - - -
  • Hackathon Challenges: Tackle real-world challenges and showcase your creativity by developing innovative solutions at the forefront of AI and Web3 integration.
  • - - - -
  • Networking Opportunities: Connect with like-minded individuals, potential collaborators, and industry professionals to expand your network and exchange ideas.
  • - - - -
  • Prizes and Recognition: Compete for exciting prizes and gain recognition for your contributions to the advancement of AI x Web3 technology.
  • -
- - - -

Join NEAR Foundation, Polygon Labs, and Edge in Denver and be a part of the next great tech revolution. Those interested in attending the Decentralized AI Summit can register here. Researchers, developers, and hackers interested in participating in the hackathon can apply here

-

The post Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 appeared first on NEAR Protocol.

-]]>
- - - -
- - NEARCON ’23 Unwrapped: Lisbon Steps into the Open Web in Iconic Fashion - /blog/nearcon-23-unwrapped-lisbon-steps-into-the-open-web-in-iconic-fashion/ - - - Thu, 16 Nov 2023 13:00:00 +0000 - - - - - - /?p=21092 - - Over the course of three epic days, the NEAR ecosystem showed up and showed out to make NEARCON ‘23 the …

-

The post NEARCON ’23 Unwrapped: Lisbon Steps into the Open Web in Iconic Fashion appeared first on NEAR Protocol.

-]]>
- Over the course of three epic days, the NEAR ecosystem showed up and showed out to make NEARCON ‘23 the most iconic edition yet. Groundbreaking partnerships were announced, new bonds forged, and a new vision for AI and the open web was unveiled by some of the brightest minds in the blockchain business.

- - - -

“The open web is an internet where all people control their own assets, data, and power of governance,” remarked NEAR co-founder and newly minted CEO of NEAR Foundation, Illia Polosukhin, on Day One of NEARCON ‘23. “And that vision extends beyond NEAR to the entire space, with the B.O.S. acting as the single entry point to an open web.” 

- - - -

Illia’s remarks truly encapsulated the spirit of NEARCON ‘23, as innovative collaborations with the likes of Polygon and EigenLayer highlighted a cross-chain, multi-ecosystem future with NEAR enabling multiple key facets of tomorrow’s truly open web. 

- - - -

So ICYMI, here’s all the key happenings, hubbub, and highpoints of an iconic NEARCON ‘23.

- - - -

Partnerships, IRL Hackathon, and NCON make a splash

- - - -
- - - -

Things started off with a bang before the doors of the Convento Do Beato in Lisbon even opened, with the debut of the NCON token. The first ever native NEARCON token, attendees could download the NEARCON app and collect NCON tokens by completing tasks, bounties, and viewing sessions throughout the event.

- - - -

NEARCON-goers could then redeem NCON tokens for swag or a bite from the various food trucks, or even send NCON to other attendees via a slick native wallet on the NEARCON app. All told, over 110,000 NCON tokens were distributed during the event, making it a smash hit amongst attendees.

- - - -
- - - -

This year’s NEARCON also took place across three cool and contrasting venues: NEARCON HQ, Hacker HQ, and Community HQ, each providing a unique experience for those of varying interests. HackerHQ was popping in particular due to the three day IRL Hackathon. Held in a stunning seaview venue, the winners will be announced next week, so stay tuned.

- - - -

Once everyone settled in for Day One, the ecosystem was treated to a few major game-changing partnership announcements. Here’s a roundup of the major collabs that are already making an impact for NEAR builders, developers, and the community at large:

- - - -

NEAR releases the Data Availability Layer for ETH Rollups and Ethereum developers

- - - -
- -
- - - -

By far the biggest news of Day One was NEAR unveiling the NEAR Data Availability Layer (NEAR DA), offering robust, low-cost blockchain data to developers for modular open web development. NEAR DA will help developers reduce costs and enhance the reliability of rollups, while keeping the security of Ethereum. NEAR DA is a key part of tomorrow’s open web development stack, with early users including StarkNet, Caldera, Movement Labs, and others. 

- - - -

NEAR x EigenLayer streamline Ethereum

- - - -
- - - -

NEAR Foundation announced its partnership with EigenLayer, which will speed  up transaction times and slashing costs on the Ethereum blockchain. The collaboration will introduce a fast finality layer to Ethereum rollups, boosting their efficiency and scalability. The fast finality layer showcases the strengths of NEAR’s technology while making the open web more usable.

- - - -

LayerZero brings interoperability to NEAR

- - - -

In other big news, LayerZero integrated with NEAR, bringing over 40 blockchain networks into the open web. Layer brings trustless cross-chain messaging into the fold, making NEAR a more versatile ecosystem. The announcement highlighted NEAR’s commitment to seamless communication across various blockchain networks.

- - - -

Day One highlights: bringing the open web vision to life

- - - -
- - - -

While there were a ton of amazing sessions and panels on the first day — from open web gaming and sports to crypto economics — one of the major themes was how Illia would realize his vision for a truly open internet in his new role as CEO of the NEAR Foundation. With a renewed focus on developers in the ecosystem, it only makes sense for him to steer the ship.

- - - -

Piggybacking on Illia’s “NEAR: The Open Web Vision” keynote, new NEAR COO Chris Donovan made a case for the open web, while also sitting down to discuss Web3 regulatory issues with Coindesk’s Michael Casey. And in other developer tooling news, NEAR Data Availability (DA) was announced, giving developers low-cost access to modular, scalable blockchain data.

- - - -

Day Two highlights: the AI is NEAR track takes flight

- - - -
- - - -

The second day of NEARCON ‘23 was perhaps the boldest to date, with an epic “AI is NEAR” speaker and programming track that was simply mind blowing. Things kicked off with sessions featuring thought leaders from the likes of Pantera Capital and NEAR Tasks, and heated up even more with NEAR co-founder Alex Skidanov’s talk on generative AI and the open web.

- - - -

Illia returned in the afternoon to discuss “AI on NEAR: The Future of Work and Governance,” painting a picture of how AI will impact the future of governance, work, asset ownership, and beyond. He was then joined by Mike Butcher of TechCrunch, with the two unpacking the intersection of AI, blockchain, and global policy.

- - - -

“AI has the potential to be a huge driver for productivity,” Illia explained. “AI agents, for example,  are redefining the future of work. They have the unique ability to manage transactions and resources on blockchain platforms, communicate with secure cryptographic verification, and act as autonomous entities on people’s behalf — and directly for their benefit.”

- - - -

The AI is NEAR track was capped off when Illia then joined Michael Casey for a Coindesk podcast, where the two dove as deep as one can imagine down the AI rabbit hole. In particular, Illia shared his experience, views, and predictions regarding AI, blockchain, and the open web – simply a must listen. (Stay tuned for the release of this Coindesk podcast with Illia and Michael.)

- - - -

Day Three highlights: governance and hackathon on stage

- - - -
- - - -

Governance and current happenings with the NEAR Digital Collective (NDC) were front and center in a spirited Day Three. One of the most unique panels was the NEAR Governance Forum, featuring AVB from the Transparency Committee, Cameron Dennis from Banyan, and Blaze of Cheddar.

- - - -

All three gave their takes on what’s gone right — and wrong — with the NDC since its inception at last year’s NEARCON. And in a “Round Robin” format, the three fielded a variety of questions from the audience, some of whom were NDC members themselves. Blaze and AVB then joined NEAR’s Yadira Blocker in an afternoon session discussing Decentralized Democracy in 2024.

- - - -

The final season of NEARCON ‘23 featured presentations from the IRL Hackathon, where builders unveiled their work and ideas. Judges and panelists included Oleg Fomenko, CEO of Sweat Economy, with talented NEAR builders putting their best foot forward. They showcased some truly amazing ideas and tech, so you’ll want to keep your eyes peeled for the winners.

- - - -

And what’s Day Three of any NEARCON without a party? This year’s bash was held at the LX Factory, an enormous space where all attendees got their final chance to network, share ideas, and have a blast. The Littles sponsored the party, bringing an added element of excitement by setting up carnival games at the venue along with The Fun Pass to reward anyone who played.

- - - -

NEARCON ‘23: as iconic as it gets

- - - -
- - - -

If you joined us in Lisbon, a huge thanks for making this year’s edition so fun, spectacular, and rewarding. If you weren’t able to attend, we sincerely hope to see you next year. From transformative partnerships to leading the Web3 pack in AI, NEARCON ‘23 showcased the passion, momentum, and ingenuity of the entire NEAR ecosystem.

If you weren’t able to make it to Lisbon for NEARCON, don’t worry — you can still check out all of the talks. Visit NEAR Protocol’s YouTube page for the full livestreams from the Layer 1 and Layer 2 stages, or click the links below. 

- - - - - - - -

Anyone who built furiously at the HackerHQ or clinked a cocktail at the Glass Movers & Shakers Happy Hour will likely tell you something similar: that NEARCON ‘23 showed the importance of a truly open web — and how together we can all achieve it.

-

The post NEARCON ’23 Unwrapped: Lisbon Steps into the Open Web in Iconic Fashion appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/ai-is-near/index.html b/public/blog/tag/ai-is-near/index.html deleted file mode 100644 index 333439d0c..000000000 --- a/public/blog/tag/ai-is-near/index.html +++ /dev/null @@ -1,2 +0,0 @@ -AI is NEAR Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ai/feed/index.xml b/public/blog/tag/ai/feed/index.xml deleted file mode 100644 index 70a433352..000000000 --- a/public/blog/tag/ai/feed/index.xml +++ /dev/null @@ -1,283 +0,0 @@ - - - - AI Archives – NEAR Protocol - - /blog/tag/ai/ - - Thu, 26 Oct 2023 17:18:22 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - AI Archives – NEAR Protocol - /blog/tag/ai/ - 32 - 32 - - - AI is NEAR: Illia Polosukhin on AI and the Open Web at NEARCON ’23 - /blog/ai-is-near-illia-polosukhin-on-ai-and-the-open-web-at-nearcon-23/ - - - Thu, 26 Oct 2023 17:30:00 +0000 - - - - - - /?p=21004 - - Artificial Intelligence and Web3 have been two of the hottest topics of 2023. There has been significant interest in how …

-

The post AI is NEAR: Illia Polosukhin on AI and the Open Web at NEARCON ’23 appeared first on NEAR Protocol.

-]]>
- Artificial Intelligence and Web3 have been two of the hottest topics of 2023. There has been significant interest in how the two technology ecosystems may converge in the coming years, with lots of interest from investors.

- - - -

For NEARCON ‘23, we’ve designed a special track for AI and the open web: ”AI is NEAR”. Leading the way will be NEAR co-founder Illia Polosukhin, a pioneer in the world of AI. 

- - - -

Illia will share his perspective on this past year’s AI revolution, including its intersection with the Web3 space on NEAR in the months to come. 

- - - -

Attention Is All You need

- - - -

By now, everyone knows ChatGPT, which kicked off the latest AI revolution. But years before OpenAI released its AI chatbot, a group of researchers published a paper that would revolutionize the fields of AI and machine learning. 

- - - -

The “Attention is All You Need” paper, of which Illia is a co-author, introduced transformers — the “T” in ChatGPT. Illia’s research was instrumental in laying the groundwork for the major LLMs of today, such as ChatGPT and Bard. 

- - - -

At NEARCON ‘23, Illia will draw on his deep expertise in AI to offer a perspective on how AI and Web3 will converge and how blockchains can help AI develop in a more positive direction, mitigating potential risks and introducing more transparency. He will share the strategy for AI on NEAR going forward, including evolving NEAR governance with AI agents and the emergence of new business models. 

- - - -

Illia Polosukhin and TechCrunch’s Mike Butcher in a fireside chat

- - - -

In this candid discussion, Illia and TechCrunch’s Mike Butcher will explore the evolving role of AI in the open web, what we can expect next, and why the current state of AI controlled by major corporations needs to change. 

- - - -

As the case for open source AI becomes clearer, and as regulators across the globe mitigate risk with new policies, the question now becomes: how can Web3 help AI evolve in a more positive direction?

- - - -

Join the AI and Open Web chat at NEARCON ‘23

- - - -

With some of the brightest thought leaders in AI and the open web, NEARCON ‘23 is one not to be missed. Alongside Illia, you will also hear from NEAR co-founder Alex Skidanov, who is currently working on an AI startup that is building smarter large language models, or LLMs, in a more decentralized way. 

- - - -

There will also be a panel discussion on how AI and blockchain technologies will integrate with modern work environments. Niraj Pant, previously an investor at Polychain who is launching a startup at the intersection of AI and Web3, will also deliver a keynote on how AI can be leveraged for decentralized applications and services.

- - - -

The full NEARCON ‘23 schedule is now live, so check out the other tracks!

- - - -

If you’re a student in Spain or Portugal, or a Ukrainian citizen living in Portugal, you’re eligible for free tickets. Hackers also get in for free by applying to the NEARCON IRL Hackathon

-

The post AI is NEAR: Illia Polosukhin on AI and the Open Web at NEARCON ’23 appeared first on NEAR Protocol.

-]]>
- - - -
- - AI is NEAR: The Future of AI on the Open Web at NEARCON ‘23 - /blog/ai-is-near-the-future-of-ai-on-the-open-web-at-nearcon-23/ - - - Wed, 25 Oct 2023 12:50:31 +0000 - - - - - - /?p=20997 - - If you’re as excited as we are about the future of AI and blockchain, then get ready because NEARCON ’23 …

-

The post AI is NEAR: The Future of AI on the Open Web at NEARCON ‘23 appeared first on NEAR Protocol.

-]]>
- If you’re as excited as we are about the future of AI and blockchain, then get ready because NEARCON ’23 is just around the corner. If you haven’t registered yet, consider this your invitation to do so now on the official NEARCON ’23 site.

- - - -

This year’s edition has a special focus on the intersection of AI and Web3. NEAR co-founder Illia Polosukhin, a pioneer in the AI world, is leading the charge. Let’s  explore the amazing speakers sharing their perspectives on this game-changing new field in must-see NEARCON sessions.

- - - -

Keynote by Cosmose AI’s Miron Mironiuk

- - - -

Miron Mironiuk, the mind behind Cosmose AI, will enlighten NEARCON attendees on how AI is shaping the future of consumer behavior analysis with its unique “Shoppertainment” app that seamlessly blends personalization, loyalty, and blockchain-based rewards. KAIKAI has consistently ranked in the top 3 dApps in Web3 since its launch.

- - - -

AI on NEAR: The Future of Work and Governance by Illia Polosukhin

- - - -

Illia Polosukhin, another NEAR co-founder and head of Pagoda, will bring his deep roots in AI to this discussion of the future of AI strategy on NEAR. He’ll explore how NEAR is integrating AI to revolutionize work and evolve governance on the blockchain with AI. Topics will include why AI needs blockchain and the emergence of new business models as both AI and blockchain mature.

- - - -

Illia Polosukhin in Conversation With TechCrunch’s Mike Butcher

- - - -

In this candid discussion, Illia will join TechCrunch’s Mike Butcher to discuss the evolving role of AI in the open web and what we can expect in the coming years. As the case for open source AI becomes clearer and as regulators across the world introduce new policies designed to mitigate risk, how can Web3 help this revolutionary tech evolve in a more positive direction? Join this fireside chat to learn more. 

- - - -

AI + Blockchain = Future of Work

- - - -

This dynamic panel discussion will delve into the transformative potential of integrating AI and blockchain technologies in modern work environments. If you’re curious what the future of work will look like with AI on the open web, you’ll find those thoughts here. 

- - - -

AI+Web3 Keynote from Niraj Pant

- - - -

Niraj Pant, previously an investor at Polychain and now building a startup at the intersection of AI and Web3, will provide key insights into how AI can be leveraged for decentralized applications and services.

- - - -

AI Keynote by Alexander Skidanov

- - - -

When Alexander Skidanov and Illia Polosukhin originally founded NEAR, it was as an AI company called NEAR.ai. After transforming NEAR into a blockchain network, and working on its well-known Nightshade sharding technique, Alex turned his attention back to AI and founded an AI startup building smarter large language models, or LLMs, in a more decentralized way. 

- - - -

To get more details on these sessions, and to check out the full speakers list and agenda, head on over to nearcon.org.

- - - -

Wrap-Up and Next Steps

- - - -

NEARCON ’23 is set to blow last year’s away, with some of the brightest thought leaders in AI and the open web. And with NEAR’s co-founder Illia Polosukhin being an OG in the AI space, you can bet that the AI track at NEARCON will be awesome. So whether you’re a developer, an entrepreneur, or just a curious mind, NEARCON ‘23 has something for you. 

- - - -

And let’s not forget, if you’re a student in Spain or Portugal, or a Ukrainian citizen living in Portugal, you’re eligible for free tickets. Hackers can also get in for free by participating in our hackathon event.
NEAR is already delivering on its promise of a blockchain that is simple, scalable, and secure. Now’s your chance to be part of bringing AI into the open web. Register for NEARCON ’23 today and witness firsthand how NEAR is shaping the future of AI and decentralization.

-

The post AI is NEAR: The Future of AI on the Open Web at NEARCON ‘23 appeared first on NEAR Protocol.

-]]>
- - - -
- - Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  - /blog/cosmose-ai-harnesses-the-open-web-and-near-with-kaikainow/ - - - Thu, 14 Sep 2023 00:00:00 +0000 - - - - - - /?p=20877 - - Cosmose AI, the global platform that uses AI to predict and influence how people shop offline is launching a new …

-

The post Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  appeared first on NEAR Protocol.

-]]>
- Cosmose AI, the global platform that uses AI to predict and influence how people shop offline is launching a new piece of technology designed to disrupt the smartphone lock screen experience. 

- - - -

Called KAIKAINOW, it brings together artificial intelligence and blockchain to help users stay informed and engaged with the world around them without the hassle of unlocking their phones. 

- - - -

KAIKAINOW, an opt-in technology, sits on a user’s home screen. It offers a variety of curated content, including news, language learning, games, and trending stories which would be interspersed between users’ very own personal wallpaper pictures.

- - - -

“We check our smartphone lock screens on average 80 times a day, always seeing the same  wallpaper backdrop. Imagine, instead of seeing the same image over and over again you see it every other time, while enjoying personalized content during remaining interactions,” says Miron Mironiuk, Founder and CEO of Cosmose AI. 

- - - -

KAIKAINOW changes that by harnessing cutting edge AI technology, and pairing it with open web tools found on the NEAR blockchain to ensure the experience is tailored to the user while always adhering to the highest privacy standards.

- - - -

“The launch of KAIKAINOW by COSMOSE AI shows how far we’ve come in respects to transforming Web3 from an innovative idea to a something that can deliver real world benefits to consumers, while also helping foster brand loyalty and business growth in the retail space,” says Marieke Flament, CEO of the NEAR Foundation. 

- - - -

“We are thrilled to align ourselves with such a fantastic, rapidly growing tech firm such as Cosmose AI and look forward to seeing how it will truly transform the world of retail and get the world closer to Web3 mass adoption.”

- - - -

 

- - - -

Blockchain meets AI 

- - - -

Publishers and brands provide the content and KAIKAINOW enhances the experience by allowing users to unlock rewards via KAI-CHING, a native token pegged to the US Dollar built on the NEAR Protocol. These tokens can then be used to access exclusive offers only available to KAIKAINOW users. 

- - - -

Thanks to KAI-CHING, shoppers and retailers benefit from shorter payment processing time and significantly lower fees.

- - - -

By building both consumer products and its token on NEAR protocol, Cosmose AI is accelerating its Web3 offerings with one of the world’s leading, open source blockchain platforms and further advancing the AI-driven retail ecosystem.

- - - -

To date, Cosmose AI has served over 20 million stores and reached one billion phones globally. The integration of NEAR technologies means that Cosmose can ensure that users maintain complete control over their data and benefit from the ecosystem they help create. This approach ensures the highest level of privacy for users and aligns with the Company’s commitment to user safety.

- - - -

Blockchain’s digital record, paired with NEAR’s open web tooling, means AI services can help improve trust in data integrity and, by extension, in the recommendations that AI provides. Using blockchain to store and distribute AI models provides an audit trail, and pairing blockchain and AI can enhance data security. 

- - - -

NEAR is helping partners like Cosmose AI harness these tools to create better products that serve customers and partners equally. 

-

The post Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/ai/index.html b/public/blog/tag/ai/index.html deleted file mode 100644 index 58d1df374..000000000 --- a/public/blog/tag/ai/index.html +++ /dev/null @@ -1,2 +0,0 @@ -AI Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/alex-skidanov/feed/index.xml b/public/blog/tag/alex-skidanov/feed/index.xml deleted file mode 100644 index ce20a0bc8..000000000 --- a/public/blog/tag/alex-skidanov/feed/index.xml +++ /dev/null @@ -1,123 +0,0 @@ - - - - Alex Skidanov Archives – NEAR Protocol - - /blog/tag/alex-skidanov/ - - Wed, 25 Oct 2023 14:02:48 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Alex Skidanov Archives – NEAR Protocol - /blog/tag/alex-skidanov/ - 32 - 32 - - - AI is NEAR: The Future of AI on the Open Web at NEARCON ‘23 - /blog/ai-is-near-the-future-of-ai-on-the-open-web-at-nearcon-23/ - - - Wed, 25 Oct 2023 12:50:31 +0000 - - - - - - /?p=20997 - - If you’re as excited as we are about the future of AI and blockchain, then get ready because NEARCON ’23 …

-

The post AI is NEAR: The Future of AI on the Open Web at NEARCON ‘23 appeared first on NEAR Protocol.

-]]>
- If you’re as excited as we are about the future of AI and blockchain, then get ready because NEARCON ’23 is just around the corner. If you haven’t registered yet, consider this your invitation to do so now on the official NEARCON ’23 site.

- - - -

This year’s edition has a special focus on the intersection of AI and Web3. NEAR co-founder Illia Polosukhin, a pioneer in the AI world, is leading the charge. Let’s  explore the amazing speakers sharing their perspectives on this game-changing new field in must-see NEARCON sessions.

- - - -

Keynote by Cosmose AI’s Miron Mironiuk

- - - -

Miron Mironiuk, the mind behind Cosmose AI, will enlighten NEARCON attendees on how AI is shaping the future of consumer behavior analysis with its unique “Shoppertainment” app that seamlessly blends personalization, loyalty, and blockchain-based rewards. KAIKAI has consistently ranked in the top 3 dApps in Web3 since its launch.

- - - -

AI on NEAR: The Future of Work and Governance by Illia Polosukhin

- - - -

Illia Polosukhin, another NEAR co-founder and head of Pagoda, will bring his deep roots in AI to this discussion of the future of AI strategy on NEAR. He’ll explore how NEAR is integrating AI to revolutionize work and evolve governance on the blockchain with AI. Topics will include why AI needs blockchain and the emergence of new business models as both AI and blockchain mature.

- - - -

Illia Polosukhin in Conversation With TechCrunch’s Mike Butcher

- - - -

In this candid discussion, Illia will join TechCrunch’s Mike Butcher to discuss the evolving role of AI in the open web and what we can expect in the coming years. As the case for open source AI becomes clearer and as regulators across the world introduce new policies designed to mitigate risk, how can Web3 help this revolutionary tech evolve in a more positive direction? Join this fireside chat to learn more. 

- - - -

AI + Blockchain = Future of Work

- - - -

This dynamic panel discussion will delve into the transformative potential of integrating AI and blockchain technologies in modern work environments. If you’re curious what the future of work will look like with AI on the open web, you’ll find those thoughts here. 

- - - -

AI+Web3 Keynote from Niraj Pant

- - - -

Niraj Pant, previously an investor at Polychain and now building a startup at the intersection of AI and Web3, will provide key insights into how AI can be leveraged for decentralized applications and services.

- - - -

AI Keynote by Alexander Skidanov

- - - -

When Alexander Skidanov and Illia Polosukhin originally founded NEAR, it was as an AI company called NEAR.ai. After transforming NEAR into a blockchain network, and working on its well-known Nightshade sharding technique, Alex turned his attention back to AI and founded an AI startup building smarter large language models, or LLMs, in a more decentralized way. 

- - - -

To get more details on these sessions, and to check out the full speakers list and agenda, head on over to nearcon.org.

- - - -

Wrap-Up and Next Steps

- - - -

NEARCON ’23 is set to blow last year’s away, with some of the brightest thought leaders in AI and the open web. And with NEAR’s co-founder Illia Polosukhin being an OG in the AI space, you can bet that the AI track at NEARCON will be awesome. So whether you’re a developer, an entrepreneur, or just a curious mind, NEARCON ‘23 has something for you. 

- - - -

And let’s not forget, if you’re a student in Spain or Portugal, or a Ukrainian citizen living in Portugal, you’re eligible for free tickets. Hackers can also get in for free by participating in our hackathon event.
NEAR is already delivering on its promise of a blockchain that is simple, scalable, and secure. Now’s your chance to be part of bringing AI into the open web. Register for NEARCON ’23 today and witness firsthand how NEAR is shaping the future of AI and decentralization.

-

The post AI is NEAR: The Future of AI on the Open Web at NEARCON ‘23 appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/alex-skidanov/index.html b/public/blog/tag/alex-skidanov/index.html deleted file mode 100644 index e96595950..000000000 --- a/public/blog/tag/alex-skidanov/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Alex Skidanov Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/alibaba-cloud/feed/index.xml b/public/blog/tag/alibaba-cloud/feed/index.xml deleted file mode 100644 index 456f5ed86..000000000 --- a/public/blog/tag/alibaba-cloud/feed/index.xml +++ /dev/null @@ -1,199 +0,0 @@ - - - - Alibaba Cloud Archives – NEAR Protocol - - /blog/tag/alibaba-cloud/ - - Fri, 30 Jun 2023 18:24:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Alibaba Cloud Archives – NEAR Protocol - /blog/tag/alibaba-cloud/ - 32 - 32 - - - NEAR at Collision Highlights - /blog/near-at-collision-highlights/ - - - Fri, 30 Jun 2023 13:46:27 +0000 - - - - - /?p=20682 - - Missed NEAR’s booth at Collision? We’ve got you covered with content from NEAR talks and panels. There were also a …

-

The post NEAR at Collision Highlights appeared first on NEAR Protocol.

-]]>
- Missed NEAR’s booth at Collision? We’ve got you covered with content from NEAR talks and panels. There were also a number of awesome announcements, including the big news out of Collision: Alibaba Cloud.

- - - -

From the winners of the Women in Web3 Changemakers awards being announced to exciting ecosystem developments, here’s a run down on all things NEAR from Collision 2023!! 

- - - -

ICYMI: Major Announcements @ Collision

- - - -

NEAR kicked off Collision with a roar, with two major news items rolling hot off the presses yesterday. Here’s the scoop: 

- - - -

NEAR Foundation and Alibaba Cloud Join Forces 

- - - -

First off, the NEAR Foundation announced a major partnership with Alibaba Cloud, the digital technology and intelligence backbone of Alibaba Group. The two will collaborate to offer Remote Procedure Calls (RPC) as a service and multi-chain data indexing to NEAR developers, users, and the broader ecosystem. 

- - - -

The goal is to make building decentralized applications on the BOS a breeze, and working with one of the world’s biggest tech infrastructure companies is a huge step in the right direction. Alibaba Cloud will also enhance plug-and-play capabilities for BOS builders everywhere, from China and APAC to Europe and the Americas.

- - - -

Winners of the Women of Web3 Changemakers Awards

- - - -

In other news, the ten winners of the Women in Web3 Changemakers initiative were just announced. These incredible women are leading the charge in the Web3 space, and NEAR Foundation is proud to recognize their outstanding contributions. 

- - - -

Selected from over 200 nominations and voted for by the public, these were chosen based on their inclusive and innovative ideas, impact within the Web3 space, and their contributions to significant projects. Read the full announcement for NEAR’s Women in Web3 Changemakers winners

- - - -

Highlights from NEAR at Collision 

- - - -

Geekpay breaks barriers in crypto transactions on NEAR

- - - -

GeekPay, a crypto payments platform for businesses and freelancers built on NEAR, surpassed $500,000 in total transactions during Collision. It also just hit 205 verified users, companies, and 120 transactions. GeekPay is transforming how companies handle digital currency payments to contractors, eliminating the need for lengthy wallet addresses and providing greater security for cross-border transactions.

- - - -

“NEAR is a perfect ecosystem and technology for cross-border payments in digital currencies for remote workers and contractors,” said Veronica Korzh, CEO and co-founder of GeekPay.

- - - -

GeekPay supports a range of digital currencies including NEAR and ETH, including functionality with tracking and analytics, secure payment processing, invoicing, and transaction categorization. GeekPay hurdling the $400,000 transaction mark shows that the future of crypto payments for work is being built on the BOS.

- - - -

Tenamint launches Toronto Regional Community with a bang

- - - -

Tenamint, a marketplace for fractionalized trading card collectibles built on the NEAR blockchain, christened the launch of the NEAR Toronto Regional Community during the NEAR Toronto Launch Party. The soiree was held on an iconic yacht, the Yankee Lady, during a sunset cruise for an epic post-event party to cap off Collision.

- - - -

“We’re thrilled to announce the launch of the NEAR Toronto Regional Community, a vibrant community dedicated to fostering collaboration, innovation, and growth in the Toronto region’s blockchain ecosystem,” said Sal Chaudhry, Tenamint co-founder and Toronto local.

- - - -

“At the NEAR Toronto Regional Community, we’re on a mission to foster collaboration, education, and entrepreneurial support within the blockchain community,” Sal added. “We aim to empower individuals and businesses in Toronto and beyond to explore, adopt, and thrive in the world of blockchain technology and beyond,”

- - - -

NEAR after Collision: Onward to ETHCC

- - - -

Collision 2023 is only beginning, but the BOS momentum won’t stop in Toronto. NEAR will also be at the Ethereum Community Conference (ETHCC) in Paris, from July 19th to 23rd.

- - - -

From exciting cross-chain discussions to insightful panels, interactive workshops, and pitch events, ETHCC promises to be another remarkable platform for BOS building and the wider NEAR community.

- - - -

So after immersing yourself in Collision 2023, remember to mark your calendars for NEAR’s presence at ETHCC as well. Here’s to continuing to make waves in Web3 and expanding into the Open Web – with you as the BOS!

-

The post NEAR at Collision Highlights appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR and Alibaba Cloud Team Up to Grow the Open Web - /blog/near-and-alibaba-cloud-team-up-to-grow-the-open-web/ - - - Mon, 26 Jun 2023 14:05:48 +0000 - - - /?p=20665 - - NEAR Foundation is excited to announce a major new partnership with Alibaba Cloud, the digital technology and intelligence backbone of …

-

The post NEAR and Alibaba Cloud Team Up to Grow the Open Web appeared first on NEAR Protocol.

-]]>
- NEAR Foundation is excited to announce a major new partnership with Alibaba Cloud, the digital technology and intelligence backbone of Alibaba Group. 

- - - -

In this new partnership, NEAR Foundation will collaborate with Alibaba Cloud to offer Remote Procedure Calls (RPC) as a service to developers and users in the NEAR ecosystem, as well as multi-chain data indexing to provide data query API to developers. The partnership will also find the companies collaborating on tools to help developers build decentralized applications more easily. 

- - - -

“Our partnership with Alibaba Cloud is a major milestone for the NEAR Foundation as it proves that NEAR protocol’s technology has the capabilities to truly lift the restrictions surrounding Web3 development to allow more creators to build exciting applications while also helping to onboard billions of Web2 users to the possibility of Web3.,” said Marieke Flament, CEO of the NEAR Foundation. “We look forward to supporting Alibaba Cloud as it leverages the scalability of NEAR Blockchain and the BOS to expand its Web3 offerings to a global market.”

- - - -

Alibaba Cloud infrastructure to help power the BOS

- - - -

App developers building on the NEAR Blockchain Operating System (BOS) — a common layer for browsing and discovering open web experiences, compatible with any blockchain — will now also enjoy Alibaba Cloud’s infrastructure. 

- - - -

With BOS, now accessible directly on Near.org through a browser, developers can easily fork components and create new experiences, while end users can explore open web experiences, social, and news all in one place. FastAuth, a new standout BOS feature, allows app developers to onboard new users with only an email — no crypto required. 

- - - -

Alibaba Cloud’s plug-and-play infrastructure will empower NEAR developers

- - - -

Commenting on the partnership, Raymond Xiao, Head of International Web3 Solutions, Alibaba Cloud Intelligence, said: “The NEAR Foundation and Alibaba Cloud partnership is an important one as we continue to support Web3 developers to explore opportunities.”

- - - -

“It is also significant for developers and validators in the Asian markets, as they can leverage Alibaba Cloud’s comprehensive infrastructure in Asia,” Xioa added. “Together with NEAR’s Node-as-a-Service initiative and BOS, we supports the Web3 community create exciting applications that will benefit a wide consumer audience. We are looking forward to what we can achieve with this partnership.”

- - - -

NEAR Foundation and Alibaba Cloud will continue to expand its partnership together through collaborations at a variety of global Web3 conferences and events.

-

The post NEAR and Alibaba Cloud Team Up to Grow the Open Web appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/alibaba-cloud/index.html b/public/blog/tag/alibaba-cloud/index.html deleted file mode 100644 index dcca69c06..000000000 --- a/public/blog/tag/alibaba-cloud/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Alibaba Cloud Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/alpha-near-org/feed/index.xml b/public/blog/tag/alpha-near-org/feed/index.xml deleted file mode 100644 index c4e3cc55f..000000000 --- a/public/blog/tag/alpha-near-org/feed/index.xml +++ /dev/null @@ -1,114 +0,0 @@ - - - - alpha.nearpages.wpengine.com Archives – NEAR Protocol - - /blog/tag/alpha-near-org/ - - Fri, 05 May 2023 14:36:24 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - alpha.nearpages.wpengine.com Archives – NEAR Protocol - /blog/tag/alpha-near-org/ - 32 - 32 - - - Near Announces the Blockchain Operating System - /blog/near-announces-the-blockchain-operating-system/ - - - Thu, 02 Mar 2023 20:26:22 +0000 - - - - - /?p=20243 - - Near announced today that it is becoming the Blockchain Operating System (BOS). The BOS is an industry-first category: a common …

-

The post Near Announces the Blockchain Operating System appeared first on NEAR Protocol.

-]]>
- Near announced today that it is becoming the Blockchain Operating System (BOS). The BOS is an industry-first category: a common layer for browsing and discovering open web experiences, compatible with any blockchain. 

- - - -

The Blockchain Operating System will make Near the entry point for the Open Web, for users and developers alike. And it will make both Web3 and Web2 easier than ever to access and navigate. 

- - - -

Becoming more than just a blockchain 

- - - -
- - - -

Since inception, Near’s mission has been to onboard 1 billion users to the Open Web. The first step in the journey was to focus on building a best in class L1 blockchain that was easy to build on and easy to use. 

- - - -

Near was designed to be simple, with a flexible account model and human readable accounts — any name a user wants instead of a string of letters and numbers. And with Near’s Nightshade sharding approach, the Near blockchain was designed to be infinitely scalable and secure. At the same time, Near concentrated on building out tooling to support builders developing on the protocol, including the JavaScript SDK that now gives 15 million developers access to building on Near. 

- - - -

This has created and sustained a thriving Near ecosystem with more than 23 million accounts and over a thousand project building, but these were only the first steps toward delivering the vision of Web3 to a mainstream audience.

- - - -

Now, Near is building up the Web3 stack to integrate experiences from across the open web and streamline the discovery and onboarding experience for users and developers alike. 

- - - -

Enter Near: the Blockchain Operating System 

- - - -
- - - -

Today, Near is launching near.org — a composable frontend for Web3. It will allow end users to easily and frictionlessly discover all of Web3’s possibilities in one seamless experience. It will also empower developers to create and code interfaces in a single environment with the ability to fork a host of components to build apps faster, and more efficiently than ever before.

- - - -

Anyone in the Open Web ecosystem can create their own frontends (i.e., their own versions of near.org), compatible with the blockchain of their choice. This means that builders from any ecosystem can create components in just a few lines of code, and take advantage of fast onboarding to help make new and custom Web3 experiences.

- - - -

This is an industry first. With the addition of composable frontends to the tech stack, Near now becomes the Blockchain Operating System, allowing seamless, one-time onboarding and removing friction points like making accounts for every experience, while supercharging development from a collection of over 1,800 components. 

- - - -

Near.org is the first step in Near’s Blockchain Operating System journey. It’s the Alpha version, where builders can see the frontend come to life. 

- - - -

Try it out at near.org to experience the world’s first Blockchain Operating System — a revolutionary moment in Web3. If you’re a developer, see how easy it is to fork components and create new experiences. If you’re an end user, see how easy it is to explore Web3 experiences, social, and news all in one place. 

- - - -

The Blockchain Operating System is Near and it’s here. #NearistheBOS

-

The post Near Announces the Blockchain Operating System appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/alpha-near-org/index.html b/public/blog/tag/alpha-near-org/index.html deleted file mode 100644 index 52a41007b..000000000 --- a/public/blog/tag/alpha-near-org/index.html +++ /dev/null @@ -1,2 +0,0 @@ -alpha.nearpages.wpengine.com Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/analytics/feed/index.xml b/public/blog/tag/analytics/feed/index.xml deleted file mode 100644 index d11623de3..000000000 --- a/public/blog/tag/analytics/feed/index.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - Analytics Archives – NEAR Protocol - - /blog/tag/analytics/ - - Thu, 27 Apr 2023 19:07:36 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Analytics Archives – NEAR Protocol - /blog/tag/analytics/ - 32 - 32 - - - NEAR and Nansen Partner on On-Chain Analytics for Founders and Investors - /blog/near-and-nansen-partner-on-on-chain-analytics-for-founders-and-investors/ - - - Tue, 18 Apr 2023 14:10:00 +0000 - - - - /?p=20447 - - NEAR Foundation is excited to announce a new partnership with Nansen, a blockchain analytics firm, on advanced tools for dApp …

-

The post NEAR and Nansen Partner on On-Chain Analytics for Founders and Investors appeared first on NEAR Protocol.

-]]>
- NEAR Foundation is excited to announce a new partnership with Nansen, a blockchain analytics firm, on advanced tools for dApp developers and investors. Led by the NEAR Balkans Hub, the partnership with Nansen will give developers and investors new insights and data-driven solutions, like real-time data on transactions, addresses, and network activity.

- - - -

“We are excited to join forces with Nansen to offer our developer community even more valuable insights,” says Marieke Flament, CEO of the NEAR Foundation. “This partnership enables us to enhance our ecosystem and bring advanced analytics tools and data-driven insights to the forefront of the Web3 movement, ultimately accelerating the widespread adoption of decentralized applications.”

- - - -

Nansen gives users access to billions of on-chain data points

- - - -

With Nansen’s analytics platform, developers, investors, and other users get a comprehensive view of blockchain activity. This includes transaction flows, wallet holdings, and on-chain activity. 

- - - -

Nansen enables users to analyze billions of on-chain data points with over 250m+ wallet addresses across multiple blockchains, discover opportunities, perform due diligence, and defend their portfolios with real-time dashboards and alerts. The platform also provides users with a suite of tools for monitoring blockchain projects and tracking their performance.

- - - -

Alex Svanevik, CEO of Nansen, said that the platform is excited to join NEAR Foundation in giving NEAR in expediting “the next chapter of Web3 and empower[ing] developers to craft even more robust dApps.” 

- - - -

“We’re proud to have led this partnership — our commitment to enabling future Web3 creators is reflected in everything we do, and we are excited to unlock that potential through the power of decentralization,” adds Ida Pandur, CEO of NEAR Balkans. “At the heart of our mission is a desire to empower individuals to create and innovate in a brand new way, and we are committed to continuing our efforts to make this vision a reality.”

- - - -

As NEAR evolves into the Blockchain Operating System, a common layer for browsing and discovering open web experiences, compatible with all blockchains, this collaboration will help drive innovation on NEAR and onboard many new developers, investors, and end users into Web3. 

-

The post NEAR and Nansen Partner on On-Chain Analytics for Founders and Investors appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/analytics/index.html b/public/blog/tag/analytics/index.html deleted file mode 100644 index ce835d265..000000000 --- a/public/blog/tag/analytics/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Analytics Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/arbitrum/feed/index.xml b/public/blog/tag/arbitrum/feed/index.xml deleted file mode 100644 index 448a2d56e..000000000 --- a/public/blog/tag/arbitrum/feed/index.xml +++ /dev/null @@ -1,105 +0,0 @@ - - - - Arbitrum Archives – NEAR Protocol - - /blog/tag/arbitrum/ - - Thu, 21 Dec 2023 14:59:43 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Arbitrum Archives – NEAR Protocol - /blog/tag/arbitrum/ - 32 - 32 - - - Arbitrum Integrates NEAR DA for Developers Building Ethereum Rollups  - /blog/arbitrum-integrates-near-da-for-developers-building-ethereum-rollups/ - - - Thu, 21 Dec 2023 15:00:00 +0000 - - - - /?p=21140 - - The NEAR Data Availability layer (NEAR DA) was one of the most exciting announcements to come out of NEARCON ‘23. …

-

The post Arbitrum Integrates NEAR DA for Developers Building Ethereum Rollups  appeared first on NEAR Protocol.

-]]>
- The NEAR Data Availability layer (NEAR DA) was one of the most exciting announcements to come out of NEARCON ‘23. Unveiled by NEAR Protocol co-founder and new NEAR Foundation CEO, Illia Polosukhin, NEAR DA is a highly efficient and robust data availability layer, designed to help Ethereum rollup builders simplify their network and lower costs, while ensuring they can scale like the NEAR Protocol.

- - - -

The latest technical integration for NEAR DA’s efficient and highly scalable data availability is now available for Arbitrum Orbit, the tech stack that allows developers to launch their own configurable rollups based on Arbitrum’s technology.

- - - -

Arbitrum Orbit is a L2/L3 scaling solution for Ethereum that lets developers build their own dedicated chains with their own configurations. Arbitrum Orbit chains derive trustless security, while scaling Ethereum. With the latest NEAR DA integration, rollup builders could benefit from cheaper data availability costs to significantly reduce their overall rollup overheads. 

- - - -

Develop Ethereum rollups within the Arbitrum Orbit ecosystem enabled by NEAR DA

- - - -

The NEAR-Arbitrum integration allows devs  building their own rollups to be part of Arbitrum Orbit, an ecosystem of blockchains that settle onto Arbitrum or Ethereum Mainnet, while leveraging the cost effectiveness and scalability of the NEAR Protocol. 

- - - -

Arbitrum is a clear innovative leader in developing the Optimistic Rollup technology, while also operating as an L2 with the highest TVL. Arbitrum now offers its own stack to other rollups builders with Arbitrum Orbit, one step closer to decentralizing Ethereum.  

- - - -

Arbitrum Orbit chains leverage the Arbitrum Nitro tech stack, the technology that Arbitrum developed to scale Ethereum. It allows builders to create their own blockchains, which settles transactions on Arbitrum One, Arbitrum Nova, or Ethereum Mainnet if the Arbitrum DAO grants an L2 license. 

- - - -

These Orbit chains, which use Arbitrum’s Rollup and AnyTrust protocols, offer customization across throughput, privacy, gas token, and governance to cater to specific use cases and business requirements. For instance, rollup builders looking for cheaper DA alternatives can now utilize NEAR DA within the Arbitrum Orbit stack. With this, developers can build self-managed, configurable blockchains with enhanced control over its features and governance, while deriving the security guarantees of Ethereum.  

- - - -

NEAR DA paves the way for modular blockchain development

- - - -

This integration empowers rollup builders on Arbitrum Orbit to use NEAR DA as a complete out-of-the-box modular DA solution. 

- - - -

As of December 2023, 231 kB of calldata on NEAR costs $0.0016, while the same calldata on Ethereum L1 costs users $140.54

- - - -

NEAR DA helps developers reduce costs and enhance their rollup’s reliability, while maintaining the security guarantees provided by Ethereum. Another upside to NEAR DA is that high quality projects launching an app-chain or L2 will be able to get out of the box NEAR DA compatibility and support. 

- - - -

“Offering a data availability layer to Ethereum rollups highlights the versatility of NEAR’s tech while also helping founders from across Web3 deliver great products that bring us closer to mainstream adoption of the Open Web,” said Polosukhin, when announcing NEAR DA at NEARCON ‘23. 

- - - -

“NEAR’s L1 has been live with 100% uptime for more than three years, so it can offer true reliability to projects looking for secure DA while also being cost-effective,” Polosukhin added. “NEAR provides great solutions to developers no matter which stack they’re building on and now that includes the Ethereum modular blockchain landscape.”
Interested teams who want to work with NEAR DA are invited to fill out this form, with information about your project and how you would like to integrate with NEAR DA.

-

The post Arbitrum Integrates NEAR DA for Developers Building Ethereum Rollups  appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/arbitrum/index.html b/public/blog/tag/arbitrum/index.html deleted file mode 100644 index d86f377fb..000000000 --- a/public/blog/tag/arbitrum/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Arbitrum Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/art/feed/index.xml b/public/blog/tag/art/feed/index.xml deleted file mode 100644 index 995aba05d..000000000 --- a/public/blog/tag/art/feed/index.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - Art Archives – NEAR Protocol - - /blog/tag/art/ - - Wed, 09 Aug 2023 16:24:04 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Art Archives – NEAR Protocol - /blog/tag/art/ - 32 - 32 - - - With MeshFlux, Multimedia Art and Gaming Explore Blockchain Technology  - /blog/with-meshflux-multimedia-art-and-gaming-explore-blockchain-technology/ - - - Thu, 10 Aug 2023 12:00:00 +0000 - - - - /?p=20790 - - The worlds of art and blockchain are no strangers. On NEAR, art can be found on apps like Mintbase, Paras, …

-

The post With MeshFlux, Multimedia Art and Gaming Explore Blockchain Technology  appeared first on NEAR Protocol.

-]]>
- The worlds of art and blockchain are no strangers. On NEAR, art can be found on apps like Mintbase, Paras, and many other ecosystem projects.  With the MeshFlux project, however, Turkish artist and designer Ufuk Barış Mutlu shows a clear path to how physical artworks can be deeply integrated with the blockchain. 

- - - -

With funding from the NEAR ecosystem, Mutlu created MeshFlux — a series of interactive sculptures that highlight one of the fundamental aspects of blockchain technology — the distinction between centralized, decentralized, and distributed networks. To achieve this goal, Mutlu created a series of three interactive sculptures that deliver the experience of these systems’ characteristics through simple gamification.

- - - -

Mutlu recently exhibited MeshFlux at a couple of events. MeshFlux appeared at virtual art platform’s Monoco.io’s physical gallery in Istanbul from May 18 to June 17, 2023, then at Sónar+D Barcelona — the music festival’s digital trade show, from June 15 to June 17, 2023.

- - - -

Making blockchain art accessible to the masses

- - - -

Although crypto natives and blockchain curious might understand these concepts, Mutlu wanted to make his physical artworks that explore the blockchain comprehensible to the average person. To that end, he created physical artwork that explains blockchain by visualizing and gamifying it.

- - - -

“The project’s output consists of three interactive sculptures machined out of aluminum, which are sized similarly to an iPad,” said Mutlu. “The dynamics of the interaction are based on the conventional maze game, where the paths of the mazes represent three different network systems: centralized, decentralized, and distributed networks.”

- - - -
- -
- - - -

All three maze paths are mapped according to Paul Baran’s original work published in 1964. Steel bearing balls inside the sculptures represent data packets in the network. The usage of multiple bearing balls distinguishes this sculpture from a conventional maze game and visualizes a multi-user network schematic.

- - - -

“I narrowed down my approach to the fundamental principles of blockchain, specifically network models,” Mutlu explained. “To achieve this, I created three maze games using network models as the foundation. These maze games are often associated with children and were constructed using premium and industrial materials to strike a balance between play and serious tech.”

- - - -

Using computers to industrially mill materials — aluminum, in this case — requires designing a digital 3D model, programming the milling machine (referred to as CAM), securing the material into the CNC machine, and using automated cutting tools (CNC) to precisely shape the aluminum block according to the design. 

- - - -

“The process allows for accurate and efficient production of objects with complex shapes” explains Mutlu.

- - - -

MeshFlux: NFT meets 3D-printed sculpture

- - - -

Since his focus lies in physical objects, Mutlu wanted to offer the same sculpture as a 3D-printable file functioning as an NFT. His plan was to leverage all the advantages of blockchain technology through the creation of an NFT, while ensuring its potential to be transformed into a physical and tactile artwork. This would, he figured, satisfy the collector’s desire for touch and possession.

- - - -

With part of his NEAR ecosystem grant, Mutlu shot a documentary that explores the process of creating MeshFlux’s physical and digital (blockchain) aspects. NFT versions of MeshFlux are currently available, and Mutlu is working on integrating them with NEAR. 

- - - -

Follow Ufuk Barış Mutlu on Instagram. 

-

The post With MeshFlux, Multimedia Art and Gaming Explore Blockchain Technology  appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/art/index.html b/public/blog/tag/art/index.html deleted file mode 100644 index 930f8bb3c..000000000 --- a/public/blog/tag/art/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Art Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/arterra-labs/feed/index.xml b/public/blog/tag/arterra-labs/feed/index.xml deleted file mode 100644 index d6c42e91c..000000000 --- a/public/blog/tag/arterra-labs/feed/index.xml +++ /dev/null @@ -1,114 +0,0 @@ - - - - ARterra Labs Archives – NEAR Protocol - - /blog/tag/arterra-labs/ - - Tue, 30 May 2023 14:46:05 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - ARterra Labs Archives – NEAR Protocol - /blog/tag/arterra-labs/ - 32 - 32 - - - NEAR Foundation and ARterra Labs Level Up Gaming Fandom for the Open Web - /blog/near-foundation-and-arterra-labs-level-up-gaming-fandom-for-the-open-web/ - - - Wed, 31 May 2023 13:00:00 +0000 - - - - - /?p=20547 - - The ever-expanding gaming landscape faces significant challenges such as engagement and identity fragmentation. As fans navigate platforms like Twitch, Discord, …

-

The post NEAR Foundation and ARterra Labs Level Up Gaming Fandom for the Open Web appeared first on NEAR Protocol.

-]]>
- The ever-expanding gaming landscape faces significant challenges such as engagement and identity fragmentation. As fans navigate platforms like Twitch, Discord, and YouTube, brands and creators struggle to monetize their fan bases effectively. This is where ARterra Labs steps in — a company on a mission to revolutionize fan engagement and unlock Web3 fandom for the gaming industry.

- - - -

ARterra Labs aims to transform fan engagement in gaming by integrating its innovative Web3 solutions into existing Web2 ecosystems. Bridging the gap between platforms and simplifying monetization, ARterra Labs is set to attract millions of gamers through strategic partnerships and an ambitious plan to onboard over 5 million users, positioning itself as a game-changer in the industry.

- - - -

As ARterra Labs redefines gaming engagement, the NEAR Foundation’s blockchain technology will play a crucial role, powering ARterra’s innovative solutions such as the credential-based fan passport and the Battle Pass system.  

- - - -

How ARterra’s Battle Pass is energizing Web3 gaming

- - - -

ARterra Labs deploys three distinct products aimed at transforming the gaming landscape. With a credential-based fan passport, they offer a secure platform for fans to exhibit their unique identities and interests. 

- - - -

In addition, they introduce metaverse experiences, allowing fans to interact, engage, and form deeper bonds with their favorite franchises. Completing the trifecta is the Battle Pass system, a tiered reward structure that gamifies fan engagement, incentivizing both participation and loyalty. 

- - - -

ARterra Labs’ metaverse experiences immerse fans in virtual worlds where they can interact, engage, and connect with their favorite franchises. And the Battle Pass system gamifies fan engagement with a tiered reward system, incentivizing participation and loyalty.
Central to ARterra’s strategy, the Battle Pass is a reward system on the NEAR blockchain, connecting to other chains via the BOS and LayerZero. It propels NFT liquidity within the NEAR ecosystem and unites gaming communities across networks. By rewarding active engagement, Battle Pass bolsters user loyalty and underscores NEAR’s role in settling cross-chain gaming transactions.

- - - -

Together, these three products serve as the foundation for ARterra Labs’ Experience Hub — an open-source marketplace that enables the creation of User-Generated Content (UGC) experiences for distribution to their extensive network. ARterra’s User-Generated Content (UGC) — primarily enabled through Fortnite’s Creative mode — serves as another cornerstone to its success, already captivating over 46 million gamers and maintaining a steady base of 500,000 monthly players.

- - - -

User experience and seamless onboarding play a critical role in ushering these gamers into the Web3 ecosystem. Key alliances with industry leaders like Complexity Gaming and GRID Esports’ Champion of Champions Tournament (CCT) further reinforce ARterra’s prominence.

- - - -

ARterra’s market strategy is twofold. Initially, it centers on activating Web3 fandom, using user-generated content effectively, and fostering unity in the gaming community. The second focus involves collaborating with premier Web3 gaming entities, offering gamer incentives, and constantly refining these tactics with data insights.

- - - -

Reshaping gaming for an open web

- - - -

Blending NEAR’s fast and scalable blockchain with ARterra’s innovative approach to gaming, the partnership is set to bring about radical improvements to the Web3 gaming experience. ARterra’s unique tools like the Discord-native tournament platform and the Battle Pass will foster enhanced interactions between gamers, developers, and brands.

- - - -

The alliance, cemented by a 12-month agreement that’s extendable indefinitely, emphasizes the faith NEAR Foundation is placing in ARterra’s potential. This cooperative venture bolsters NEAR’s position as the gaming fandom’s settlement layer across multiple chains while also ensuring priority access for NEAR ecosystem games to ARterra’s platform.

- - - -

It’s also a win-win for both players and builders. Gamers gain an immersive environment where rewards and exclusive content are the norm. Developers are offered a supportive platform, underpinned by the NEAR BOS and protocol, while brands can tap into a vibrant, engaged, and diverse audience.

- - - -

With ARterra Labs and NEAR Foundation’s shared vision, the focus will be on expanding and refining gaming platforms to attract more users, developers, and partners. The two will be dedicated to adding value within the gaming community, setting the stage for a significant growth spurt in the NEAR and Web3 gaming ecosystems alike.

- - - -

Amplifying the open web gaming journey with Battle Pass, metaverse realities, and the fan passport, ARterra Labs and NEAR Foundation don’t merely enhance the experience — they define a new standard. It’s a game-changing era in Web3 and fans are just barely unlocking the first level.

-

The post NEAR Foundation and ARterra Labs Level Up Gaming Fandom for the Open Web appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/arterra-labs/index.html b/public/blog/tag/arterra-labs/index.html deleted file mode 100644 index b550332ca..000000000 --- a/public/blog/tag/arterra-labs/index.html +++ /dev/null @@ -1,2 +0,0 @@ -ARterra Labs Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/artificial-intelligence/feed/index.xml b/public/blog/tag/artificial-intelligence/feed/index.xml deleted file mode 100644 index ca6dab4d1..000000000 --- a/public/blog/tag/artificial-intelligence/feed/index.xml +++ /dev/null @@ -1,203 +0,0 @@ - - - - Artificial Intelligence Archives – NEAR Protocol - - /blog/tag/artificial-intelligence/ - - Thu, 26 Oct 2023 17:18:22 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Artificial Intelligence Archives – NEAR Protocol - /blog/tag/artificial-intelligence/ - 32 - 32 - - - AI is NEAR: Illia Polosukhin on AI and the Open Web at NEARCON ’23 - /blog/ai-is-near-illia-polosukhin-on-ai-and-the-open-web-at-nearcon-23/ - - - Thu, 26 Oct 2023 17:30:00 +0000 - - - - - - /?p=21004 - - Artificial Intelligence and Web3 have been two of the hottest topics of 2023. There has been significant interest in how …

-

The post AI is NEAR: Illia Polosukhin on AI and the Open Web at NEARCON ’23 appeared first on NEAR Protocol.

-]]>
- Artificial Intelligence and Web3 have been two of the hottest topics of 2023. There has been significant interest in how the two technology ecosystems may converge in the coming years, with lots of interest from investors.

- - - -

For NEARCON ‘23, we’ve designed a special track for AI and the open web: ”AI is NEAR”. Leading the way will be NEAR co-founder Illia Polosukhin, a pioneer in the world of AI. 

- - - -

Illia will share his perspective on this past year’s AI revolution, including its intersection with the Web3 space on NEAR in the months to come. 

- - - -

Attention Is All You need

- - - -

By now, everyone knows ChatGPT, which kicked off the latest AI revolution. But years before OpenAI released its AI chatbot, a group of researchers published a paper that would revolutionize the fields of AI and machine learning. 

- - - -

The “Attention is All You Need” paper, of which Illia is a co-author, introduced transformers — the “T” in ChatGPT. Illia’s research was instrumental in laying the groundwork for the major LLMs of today, such as ChatGPT and Bard. 

- - - -

At NEARCON ‘23, Illia will draw on his deep expertise in AI to offer a perspective on how AI and Web3 will converge and how blockchains can help AI develop in a more positive direction, mitigating potential risks and introducing more transparency. He will share the strategy for AI on NEAR going forward, including evolving NEAR governance with AI agents and the emergence of new business models. 

- - - -

Illia Polosukhin and TechCrunch’s Mike Butcher in a fireside chat

- - - -

In this candid discussion, Illia and TechCrunch’s Mike Butcher will explore the evolving role of AI in the open web, what we can expect next, and why the current state of AI controlled by major corporations needs to change. 

- - - -

As the case for open source AI becomes clearer, and as regulators across the globe mitigate risk with new policies, the question now becomes: how can Web3 help AI evolve in a more positive direction?

- - - -

Join the AI and Open Web chat at NEARCON ‘23

- - - -

With some of the brightest thought leaders in AI and the open web, NEARCON ‘23 is one not to be missed. Alongside Illia, you will also hear from NEAR co-founder Alex Skidanov, who is currently working on an AI startup that is building smarter large language models, or LLMs, in a more decentralized way. 

- - - -

There will also be a panel discussion on how AI and blockchain technologies will integrate with modern work environments. Niraj Pant, previously an investor at Polychain who is launching a startup at the intersection of AI and Web3, will also deliver a keynote on how AI can be leveraged for decentralized applications and services.

- - - -

The full NEARCON ‘23 schedule is now live, so check out the other tracks!

- - - -

If you’re a student in Spain or Portugal, or a Ukrainian citizen living in Portugal, you’re eligible for free tickets. Hackers also get in for free by applying to the NEARCON IRL Hackathon

-

The post AI is NEAR: Illia Polosukhin on AI and the Open Web at NEARCON ’23 appeared first on NEAR Protocol.

-]]>
- - - -
- - AI is NEAR: The Future of AI on the Open Web at NEARCON ‘23 - /blog/ai-is-near-the-future-of-ai-on-the-open-web-at-nearcon-23/ - - - Wed, 25 Oct 2023 12:50:31 +0000 - - - - - - /?p=20997 - - If you’re as excited as we are about the future of AI and blockchain, then get ready because NEARCON ’23 …

-

The post AI is NEAR: The Future of AI on the Open Web at NEARCON ‘23 appeared first on NEAR Protocol.

-]]>
- If you’re as excited as we are about the future of AI and blockchain, then get ready because NEARCON ’23 is just around the corner. If you haven’t registered yet, consider this your invitation to do so now on the official NEARCON ’23 site.

- - - -

This year’s edition has a special focus on the intersection of AI and Web3. NEAR co-founder Illia Polosukhin, a pioneer in the AI world, is leading the charge. Let’s  explore the amazing speakers sharing their perspectives on this game-changing new field in must-see NEARCON sessions.

- - - -

Keynote by Cosmose AI’s Miron Mironiuk

- - - -

Miron Mironiuk, the mind behind Cosmose AI, will enlighten NEARCON attendees on how AI is shaping the future of consumer behavior analysis with its unique “Shoppertainment” app that seamlessly blends personalization, loyalty, and blockchain-based rewards. KAIKAI has consistently ranked in the top 3 dApps in Web3 since its launch.

- - - -

AI on NEAR: The Future of Work and Governance by Illia Polosukhin

- - - -

Illia Polosukhin, another NEAR co-founder and head of Pagoda, will bring his deep roots in AI to this discussion of the future of AI strategy on NEAR. He’ll explore how NEAR is integrating AI to revolutionize work and evolve governance on the blockchain with AI. Topics will include why AI needs blockchain and the emergence of new business models as both AI and blockchain mature.

- - - -

Illia Polosukhin in Conversation With TechCrunch’s Mike Butcher

- - - -

In this candid discussion, Illia will join TechCrunch’s Mike Butcher to discuss the evolving role of AI in the open web and what we can expect in the coming years. As the case for open source AI becomes clearer and as regulators across the world introduce new policies designed to mitigate risk, how can Web3 help this revolutionary tech evolve in a more positive direction? Join this fireside chat to learn more. 

- - - -

AI + Blockchain = Future of Work

- - - -

This dynamic panel discussion will delve into the transformative potential of integrating AI and blockchain technologies in modern work environments. If you’re curious what the future of work will look like with AI on the open web, you’ll find those thoughts here. 

- - - -

AI+Web3 Keynote from Niraj Pant

- - - -

Niraj Pant, previously an investor at Polychain and now building a startup at the intersection of AI and Web3, will provide key insights into how AI can be leveraged for decentralized applications and services.

- - - -

AI Keynote by Alexander Skidanov

- - - -

When Alexander Skidanov and Illia Polosukhin originally founded NEAR, it was as an AI company called NEAR.ai. After transforming NEAR into a blockchain network, and working on its well-known Nightshade sharding technique, Alex turned his attention back to AI and founded an AI startup building smarter large language models, or LLMs, in a more decentralized way. 

- - - -

To get more details on these sessions, and to check out the full speakers list and agenda, head on over to nearcon.org.

- - - -

Wrap-Up and Next Steps

- - - -

NEARCON ’23 is set to blow last year’s away, with some of the brightest thought leaders in AI and the open web. And with NEAR’s co-founder Illia Polosukhin being an OG in the AI space, you can bet that the AI track at NEARCON will be awesome. So whether you’re a developer, an entrepreneur, or just a curious mind, NEARCON ‘23 has something for you. 

- - - -

And let’s not forget, if you’re a student in Spain or Portugal, or a Ukrainian citizen living in Portugal, you’re eligible for free tickets. Hackers can also get in for free by participating in our hackathon event.
NEAR is already delivering on its promise of a blockchain that is simple, scalable, and secure. Now’s your chance to be part of bringing AI into the open web. Register for NEARCON ’23 today and witness firsthand how NEAR is shaping the future of AI and decentralization.

-

The post AI is NEAR: The Future of AI on the Open Web at NEARCON ‘23 appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/artificial-intelligence/index.html b/public/blog/tag/artificial-intelligence/index.html deleted file mode 100644 index e6cfe8594..000000000 --- a/public/blog/tag/artificial-intelligence/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Artificial Intelligence Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/aurora-cloud/feed/index.xml b/public/blog/tag/aurora-cloud/feed/index.xml deleted file mode 100644 index afcf04eb3..000000000 --- a/public/blog/tag/aurora-cloud/feed/index.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - Aurora Cloud Archives – NEAR Protocol - - /blog/tag/aurora-cloud/ - - Wed, 16 Aug 2023 18:50:33 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Aurora Cloud Archives – NEAR Protocol - /blog/tag/aurora-cloud/ - 32 - 32 - - - Case Study: Aurora’s Alex Shevchenko on Scaling Solidity Smart Contracts - /blog/case-study-auroras-alex-shevchenko-on-scaling-solidity-smart-contracts/ - - - Wed, 16 Aug 2023 18:50:01 +0000 - - - - /?p=20798 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: Aurora’s Alex Shevchenko on Scaling Solidity Smart Contracts appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

- - - -

In the latest NEAR Foundation Case Study video below, Alex Shevchenko, co-founder and CEO of Aurora Labs, talks about the developer studio’s work in making it easier for developers integrating Solidity smart contracts on NEAR. 

- - - -

“Aurora is a solution that allows you to launch your Solidity smart contracts on NEAR,” says Shevchenko.  “We’re also adding something new: a scalability feature for the NEAR Protocol — something that can make EVM future-safe and make a destination of Aurora plus NEAR a final one for businesses to come.”

- - - -

“We are focusing on the user experience,” he adds. “We have a whole set of products that are helping blockchain businesses to make the user experience much more convenient.” 

- - - -
- -
-

The post Case Study: Aurora’s Alex Shevchenko on Scaling Solidity Smart Contracts appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/aurora-cloud/index.html b/public/blog/tag/aurora-cloud/index.html deleted file mode 100644 index f4c08c2bc..000000000 --- a/public/blog/tag/aurora-cloud/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Aurora Cloud Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/aurora-labs/feed/index.xml b/public/blog/tag/aurora-labs/feed/index.xml deleted file mode 100644 index 4c92d0149..000000000 --- a/public/blog/tag/aurora-labs/feed/index.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - Aurora Labs Archives – NEAR Protocol - - /blog/tag/aurora-labs/ - - Wed, 16 Aug 2023 18:50:33 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Aurora Labs Archives – NEAR Protocol - /blog/tag/aurora-labs/ - 32 - 32 - - - Case Study: Aurora’s Alex Shevchenko on Scaling Solidity Smart Contracts - /blog/case-study-auroras-alex-shevchenko-on-scaling-solidity-smart-contracts/ - - - Wed, 16 Aug 2023 18:50:01 +0000 - - - - /?p=20798 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: Aurora’s Alex Shevchenko on Scaling Solidity Smart Contracts appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

- - - -

In the latest NEAR Foundation Case Study video below, Alex Shevchenko, co-founder and CEO of Aurora Labs, talks about the developer studio’s work in making it easier for developers integrating Solidity smart contracts on NEAR. 

- - - -

“Aurora is a solution that allows you to launch your Solidity smart contracts on NEAR,” says Shevchenko.  “We’re also adding something new: a scalability feature for the NEAR Protocol — something that can make EVM future-safe and make a destination of Aurora plus NEAR a final one for businesses to come.”

- - - -

“We are focusing on the user experience,” he adds. “We have a whole set of products that are helping blockchain businesses to make the user experience much more convenient.” 

- - - -
- -
-

The post Case Study: Aurora’s Alex Shevchenko on Scaling Solidity Smart Contracts appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/aurora-labs/index.html b/public/blog/tag/aurora-labs/index.html deleted file mode 100644 index 37da5353d..000000000 --- a/public/blog/tag/aurora-labs/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Aurora Labs Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/aurora/feed/index.xml b/public/blog/tag/aurora/feed/index.xml deleted file mode 100644 index e848f7496..000000000 --- a/public/blog/tag/aurora/feed/index.xml +++ /dev/null @@ -1,804 +0,0 @@ - - - - Aurora Archives – NEAR Protocol - - /blog/tag/aurora/ - - Mon, 05 Jun 2023 07:03:52 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Aurora Archives – NEAR Protocol - /blog/tag/aurora/ - 32 - 32 - - - NEAR Foundation and MARBLEX to Expand Korea’s Web3 Gaming Industry with Aurora - /blog/near-foundation-and-marblex-to-expand-koreas-web3-gaming-industry-with-warp-bridge/ - - - Sun, 04 Jun 2023 06:35:49 +0000 - - - - - - /?p=20565 - - NEAR Foundation is excited to announce a new strategic partnership with MARBLEX, a blockchain subsidiary of Netmarble Corp, that will …

-

The post NEAR Foundation and MARBLEX to Expand Korea’s Web3 Gaming Industry with Aurora appeared first on NEAR Protocol.

-]]>
-

- - - -

NEAR Foundation is excited to announce a new strategic partnership with MARBLEX, a blockchain subsidiary of Netmarble Corp, that will help expand Korea’s Web3 gaming industry. MARBLEX will build on Aurora, NEAR’s Ethereum-compatible layer, for maximum scalability and blockchain gaming accessibility to onboard more players to Web3. 

- - - -

Under the new partnership facilitated by the NEAR Korea Hub, NEAR Foundation and MARBLEX plan to achieve mutual growth by linking the NEAR blockchain and Aurora with WARP Bridge to enable interactive collaboration, promote global joint marketing events, and enhance brand awareness. 

- - - -

- - - -

Through WARP Bridge, competitive and casual gamers alike will now be able to enjoy a variety of games and exclusive content through NEAR’s Blockchain Operating System (BOS). The BOS leverages the NEAR Protocol’s fast transaction speeds as well as effortless scalability and onboarding (via FastAuth) to make the onboarding experience as easy as possible for the masses. 

- - - -

MARBLEX: a developer and publisher of mobile games

- - - -

A Web3 gaming giant constantly pushing the boundaries of what’s possible, MARBLEX is a well-established developer and publisher of mobile games with more than 6,000 experts from across the globe. MARBLEX’s goal is to bring the highest quality Web3 games to market by providing key services such as a cryptocurrency wallet, decentralized exchange, token staking, and an NFT Marketplace.

“We expect NEAR’s core narrative to play a pivotal role in bolstering the overall MBX 3.0 ecosystem,” said Junki Moon, Business Division Director of MARBLEX added. “Through the collaborative integration of the NEAR Foundation’s extensive technical expertise with the content prowess of the MBX ecosystem, we will maintain our position as pioneers in the ever-evolving landscape of the global blockchain trends.”

- - - -

Robbie Lim, GM of Business Development at NEAR Foundation, added: “This collaboration with MARBLEX will be an important milestone in promoting various use cases based on BOS (Blockchain Operating System). We will continuously advance the gaming ecosystem of NEAR Protocol as well as attract numerous users to enter the Web3 scene by onboarding high-quality MBX content.”

- - - -

NEAR Korea Hub, which oversees business development in Korea and Asia, played a key role in this strategic partnership. The Hub also sees the partnership as breaking a barrier to Web3 entry for mobile gamers. 

- - - -

- - - -

“NEAR Protocol provides a user experience similar to Web2 using Fast Auth account abstraction feature, greatly lowering the initial entry barrier to Web3,” said a spokesperson from NEAR Korea Hub. “We will continue to strongly partner with excellent domestic companies such as MARBLEX to implement a user-centered ecosystem where users can easily enjoy all services.”

-

The post NEAR Foundation and MARBLEX to Expand Korea’s Web3 Gaming Industry with Aurora appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR’s Road to Decentralization: Building Bridges - /blog/near-bridges-decentralization-interconnection/ - - - Mon, 14 Mar 2022 13:59:10 +0000 - - - - /?p=16003 - - The NEAR community’s big-picture vision has always been straightforward — onboard billions of people into Web3. In this new iteration …

-

The post NEAR’s Road to Decentralization: Building Bridges appeared first on NEAR Protocol.

-]]>
- The NEAR community’s big-picture vision has always been straightforward — onboard billions of people into Web3. In this new iteration of the Internet, blockchain platforms and apps will be decentralized, open-source, transparent, and humane. This Open Web will be full of utility, encouraging maximum participation from developers and end-users. 

- - - -

Web3 won’t be dependent on central authorities to access services like social media, games, Metaverse experiences, and more. Decentralization, coupled with permissionless systems (i.e, open or public smart contracts), will give people a greater sense of ownership, control, and protection over their data in alignment with the financial outcomes of decentralized apps (dapps). With this regulatory foundation—or governance, as it is referred to in crypto—humanity can evolve into a new era of borderless economic opportunity for all. 

- - - -

A future built on creativity, community, and inclusivity requires a core based on interoperability between blockchains. There is no single blockchain that will own Web3. NEAR and other blockchain communities understand that the future is multi-chain, and bridges and decentralization are critical to getting there. 

- - - -

Rainbow Bridge: the first step toward a multi-chain future

- - - -

Enter Rainbow Bridge, one of the first fully permissionless, decentralized, and openly accessible bridges in the crypto-sphere. Almost a year after launch, Rainbow Bridge has more than a dozen projects utilizing this technical infrastructure.

- - - -

In connecting NEAR and Ethereum, Rainbow Bridge is a major first step toward the multi-chain future, allowing developers to use NEAR’s fast, simple, and low-cost transaction network to move assets back and forth between the two protocols. Crucially, Rainbow Bridge gives NEAR users access to familiar projects on Ethereum.

- - - -

The development of Rainbow Bridge evolved, as many blockchain projects do, out of a necessity to solve an immediate engineering problem: how does a project on a separate blockchain migrate its services to another without having to rebuild the entire product from scratch. Thanks to NEAR’s Rainbow Bridge, any token or Dapp that uses Ethereum’s Virtual Machine can run on NEAR. With this capability in place, the NEAR ecosystem is able to integrate ERC20 with native NEAR solutions. Anyone can use NEAR as a technical backend while operating in the Ethereum ecosystem. The NEAR-ETH Rainbow Bridge is entirely permissionless and decentralized. No single entity controls it.

- - - -

With Rainbow Bridge, NEAR effectively becomes a collaborative Layer 2 solution for existing applications and assets deployed on Ethereum. In addition to solving the problem of high gas fees and barriers to entry and scaling, NEAR brings about an additional value proposition: it’s incredibly easy to use and simple to get to grips with.

- - - -

Rainbow Bridge advances NEAR’s larger goal of advancing Web3 to create a more open and inclusive internet and financial ecosystem. The key is to empower NEAR community members to operate in a high quality, scalable, and self-sufficient manner.

- - - -
- - - -

Pagoda: accelerating ideation to application for Web3

- - - -

For developers looking to use Rainbow Bridge or other bridges, the NEAR community offers a number of projects, tools, and resources to get started. 

- - - -

Pagoda, the first-ever Web3 startup platform, gives developers and entrepreneurs access to interactive tutorials, scalable infrastructure, and operational analytics that are Web3 native. Using Pagoda’s Developer Console, tools and resources can be found at every layer of the stack, from the base blockchain protocol all the way up to the application and marketing and distribution layers. Aurora, the builders of Rainbow Bridge, also offers a number of resources on their website to developers looking to build atop their EVM. 

- - - -

With this technical foundation, NEAR has already begun its journey of creating a network of interoperable blockchains.

- - - -

Other bridges and collaborative partnerships

- - - -

NEAR is, at its core, an ecosystem. The technology is just one part of the equation, with the platform’s true infrastructure being its self-directed, decentralized community. Human decisions are the heartbeat of NEAR and its partnerships. 

- - - -

A number of exciting projects are already showcasing the collaborative efforts happening within the vibrant NEAR ecosystem. Let’s take a look at a few of them.

- - - -

Aurora

- - - -

A turnkey solution for developers seeking to extend their dapps to reach additional markets, Aurora uses a number of NEAR’s core technologies, including sharding and developer gas fee remuneration. 

- - - -

The solution consists of two core components. The first is the Aurora Engine, which allows for the seamless deployment of Solidity and Vyper smart contracts. The second is the Aurora Bridge. Based on NEAR’s Rainbow Bridge technology, Aurora Bridge enables the permissionless transfer of tokens and data between Ethereum and Aurora.

- - - -

Allbridge

- - - -

In December 2021, Allbridge announced an integration between Aurora and Terra, an open-source stablecoin network controlled by its stakeholders. The connection between the two networks brings Terra liquidity to the Aurora ecosystem.

- - - -

As a modular and expanding token bridge with on-chain consensus, Allbridge provides a fast, affordable, and secure way to move liquidity between EVM, non-EVM, and L2 blockchains. Allbridge’s mission is to make the blockchain world borderless, with the ability to freely move assets across different networks. 

- - - -

Octopus Network

- - - -

A decentralized network natively built on NEAR Protocol, Octopus provides out-of-box security, interoperability, and on-chain governance to projects that are creating application-specific blockchains (appchains) for their open web applications.

- - - -

Built around the $OCT Token, Octopus Network functions as a composable means by which applications can operate with different security parameters on NEAR. Octopus Network Relay runs a smart contract on NEAR, which provides infrastructure for a validator network that brings partners together.

- - - -

Woo Network

- - - -

In December 2021, NEAR Foundation and WOO Network completed a $5M token swap to create a partnership between the two projects. Think of this partnership, in which NEAR and WOO Network share tokens, as a symbolic bridge of sorts. 

- - - -

For the NEAR community, WOO Network provides a liquidity ecosystem that connects traders, exchanges, institutions, and DeFi platforms with access to liquidity, trading execution, and yield-generating strategies. For Woo Network, NEAR provides a carbon-neutral, high-scalability platform built on a proof-of-stake, layer-1 blockchain.

- - - -

Roadmap for connecting new networks

- - - -

The future is collaborative — a web of blockchain protocols and decentralized projects working together to build Web3. While NEAR wants to be the onramp for a billion users, the community also wants to help enable all ships to rise to meet the challenge of onboarding the world to Web3. And the NEAR ecosystem has the grants funding, technical infrastructure, and community resources and tools to help make this happen. 

- - - -

In October 2021, the NEAR ecosystem announced a $800M grants fund to accelerate the development of its blockchain. Of this $800M, the largest allocation — $350M from Proximity Labs — will go towards developing the protocol’s DeFi sector. A DeFi DAO will govern how these funds are spent. These grant funds will be absolutely crucial in connecting with new networks for the multi-chain Web3 future. 

- - - -

On March 2, 2022, NEAR announced a new partnership with Multichain, the most popular bridging platform in the crypto space, which supports more than 1,600 tokens, hundreds of millions of dollars in daily transactions, and 540,000 users. As a bridge operator, Multichain has developed the technology for all blockchains to interoperate. With this partnership, NEAR’s user-friendly interfaces and tools are now extendable across the entire Web3 ecosystem. The partnership is a meaningful step forward towards the advancement of a global network of open Web 3 platforms.

- - - -

A decentralized future begins with the right infrastructure. NEAR is committed to enabling the tools to ground this vision in reality, right now.

-

The post NEAR’s Road to Decentralization: Building Bridges appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR’s Road to Decentralization: A Deep Dive into Aurora - /blog/near-decentralization-aurora-evm/ - - - Mon, 07 Mar 2022 14:01:23 +0000 - - - - - - /?p=15973 - - One of NEAR Foundation’s core missions has been to create a network that empowers users to take control of their …

-

The post NEAR’s Road to Decentralization: A Deep Dive into Aurora appeared first on NEAR Protocol.

-]]>
- One of NEAR Foundation’s core missions has been to create a network that empowers users to take control of their data, their finances, and the tools to govern. 

- - - -

In the web3 world, this idea can be neatly summed up by one word: decentralization. This is a process whereby control and the tools to create and reimagine everything from business to creativity are progressively handed over to the contributors. 

- - - -

The NEAR Foundation has been steadily progressing in this mission, from the growing number of validators to the flourishing DAO community. But NEAR isn’t alone on this journey. It relies on projects in and around the ecosystem to help accelerate this mission. Enter Aurora.    

- - - -

This project, started originally by a core team of NEAR developers, is now helping build bridges to other ecosystems and accelerating the adoption and decentralization in equal measure. 

- - - -

A Bridge Between NEAR and Ethereum

- - - -

Built by NEAR Inc’s core team (now Pagoda), Aurora is an Ethereum Virtual Machine (EVM) smart contract platform that creates a bridge between Ethereum and NEAR. An EVM, for those who don’t know, is best thought of as a decentralized computer that allows anyone to create a smart contract on the Ethereum network.

- - - -

Although an EVM, Aurora works on top of the NEAR blockchain, giving it all of the benefits of the NEAR blockchain: super fast, incredibly secure, and infinitely scalable transactions. That’s possible thanks to Nightshade, NEAR’s unique sharded protocol design that allows the network to process thousands of transactions per second without skipping a beat. 

- - - -

With Aurora, the idea is that anyone building Ethereum projects can make use of the NEAR’s speed and low fees. The Aurora EVM allows developers to make use of NEAR’s blockchain, while the platform uses NEAR’s Rainbow Bridge to transfer assets. 

- - - -

Let’s look at Rainbow Bridge, as this protocol is where things got started. 

- - - -

Aurora and Rainbow Bridge

- - - -

NEAR’s core developer team wanted to create a smart contract that would perform the function of allowing tokens to flow freely between Ethereum, NEAR, and other projects. The team’s vision: create a tool that allowed assets to exist on both NEAR and Ethereum, creating a multi-chain Web3 user experience.

- - - -

To do this, the team would need to create a bridge that would be completely decentralized: anyone could use it, anywhere, and at any time—without permission. The developers were able to build the bridge and now, if one wants to move an Ethereum-based token—say, a stablecoin like DAI—and use it on NEAR’s network, they can do so via the Rainbow Bridge. 

- - - -

Some of NEAR’s core team that had helped create Rainbow Bridge split off to continue their work. The result: Aurora—a project that now offers the bridge and a whole host of other features designed to create a global network of open-source Web3 projects. 

- - - -

Aurora partnerships

- - - -

Other projects working to improve cross-chain accessibility have since taken notice of Aurora’s work and become partners. One example is Allbridge, an application that unites scattered blockchains by means of global interoperability across all networks. Since Allbridge partnered with Aurora, it has launched a bridge between Aurora and Terra, an open-source stablecoin network and one of the biggest cryptocurrencies by market cap. 

- - - -

Aurora is also playing a big part in decentalized finance (DeFi) growth in the NEAR ecosystem. DeFi refers to the peer-to-peer financial services built on public blockchains, and is one of the most active crypto sectors on NEAR. The NEAR community has been working tirelessly to make it easier for DeFi apps and tools to leverage the protocol’s developer-friendly advantages. 

- - - -

One way that Aurora has made this process much smoother and more decentralized is through its extremely low fees (so low, they’re negligible), which it achieves by using the NEAR network. A constant gripe from users about Ethereum-based DeFi products is that the fees are often too high, creating a barrier to entry for developers and end users, and creating a hurdle to Web3’s mainstream adoption. 

- - - -

Aurora adoption is growing so much that the team released Aurorascan, its very own version of Etherscan, the most popular Ethereum block explorer and analytics platform. Aurorascan has all of Etherscan’s features set and reliability, while giving developers the tools and data to see how Aurora’s EVM functions. 

- - - -

But Aurora goes beyond DeFi. The platform is also integral to the NEAR community’s NFT projects, which have exploded in popularity since 2020. When the Aurora team spoke at this year’s ETHDenver conference in February, and they were joined by members of Endemic, Chronicle, and TENKBay—all NFT platforms that have launched on the Aurora EVM and NEAR Protocol.  

- - - -

Future Aurora developments

- - - -

So what does Aurora have up its sleeve for the future? Well, Aurorascan is still in beta mode, so more features will be added to that platform. And the team is also working to build new bridges, which will be announced in the coming months. 

- - - -

There are also plans to allow NFTs to be able to hop between Ethereum and NEAR. You can keep up to date on all things Aurora on its Medium page.  

- - - -

All this and more will help those wanting to take advantage of NEAR’s super fast and extremely cost-effective network, and help the dream of a truly decentralized world become a reality. 

-

The post NEAR’s Road to Decentralization: A Deep Dive into Aurora appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR 2021: A Year in Review - /blog/near-2021-a-year-in-review/ - - - Tue, 28 Dec 2021 10:00:00 +0000 - - - - - /?p=15578 - - Welcome to the NEAR Retrospective! It’s been quite a year for NEAR Foundation, Near Inc., and, of course, all the …

-

The post NEAR 2021: A Year in Review appeared first on NEAR Protocol.

-]]>
- Welcome to the NEAR Retrospective! It’s been quite a year for NEAR Foundation, Near Inc., and, of course, all the incredible projects and community members that make all of this possible. 

- - - -

So we thought it was high time to look back at some of the highlights from 2021: everything from protocol upgrades, ecosystem funding, community developments, and new projects launching on NEAR mainnet. 

- - - -

We’ll also be giving a sneak peek at what’s to come in 2022 in a separate post, so keep a lookout for that. 

- - - -

Protocol Progress 

- - - -

The sign of a healthy network is one that is constantly adding improvements and tweaks to the performance, stability, and security—and NEAR protocol had that in abundance in 2021. 

- - - -

Near Inc.’s engineering team racked up 20 upgrades to the protocol. Among the highlights were protocol update 35 – implicit accounts. This allows NEAR to have Ethereum style accounts that are public keys. They are created on-chain when someone transfers a nonzero amount of tokens to this account.

- - - -
- -
- - - -

Another stand-out upgrade was protocol update 42. Here engineers lowered storage staking cost from 1N per 10kb to 1N per 100kb. This dramatically reduced the barrier of entry for contract developers. Before this change, when a developer deployed a 300kb contract, they needed to have at least 30 $NEAR on the account. After the change, they only need 3 $NEAR.

- - - -

Lastly, not leastly, protocol upgrade 48 brought our WebAssembly runtime from wasmer0 to wasmer2. This shift helped half the cost of wasm operations, helping unlock many applications building on Aurora that were previously blocked because their transactions could not fit in NEAR’s gas limit.

- - - -

This trend continued throughout the year, culminating in our biggest protocol announcement this year, Sharding. 

- - - -

Sharding Takes Shape 

- - - -

When NEAR released its design for the protocol back in 2019, we initially envisioned a completely sharded blockchain. We quickly realized that this brand new network didn’t have an immediate demand for processing hundreds of millions of transactions. Besides, a fully sharded blockchain is a complex endeavor, and we’d need a little time to do it right. 

- - - -

However, the average number of daily transactions has now surpassed 300K. As more and more projects are building on NEAR, the volume of transactions is only going to increase dramatically in 2022. While the NEAR network is still only using a fraction of its total capacity, we wanted to start the transition to sharding now to avoid any unpleasant surprises, as well as ensure we can support all applications on NEAR. 

- - - -

November 15th marked the beginning of this transition, as we unveiled Simple Nightshade, the first step (Phase 0) in our fully-sharded and secure blockchain. We dropped Simple Nightshade now so that we could preempt any unpleasant surprises with transaction speeds later. In Phase 0 of Nightshade, NEAR’s sharding is split across many nodes, making it super fast and ready for the onboarding of leagues of new developers and blockchain users. 

- - - -

In early 2022, NEAR will move into Nightshade Phase 1, in which we will introduce the new role of chunk-only producers—those who only validate one shard. They produce chunks (shard blocks) for a specific shard and don’t need expensive hardware to do so—all without sacrificing network security. In Phase 2, currently scheduled for Q3 of 2022, both state and processing will be fully sharded, and validators won’t need to track all shards. And in Q4 of 2022, we will enter Phase 3 (Dynamic Sharding), in which we will enable the network to dynamically split and merge shards based on resource utilization. This will make NEAR almost infinitely scalable and able to handle any short-term spikes in usage. 

- - - -

For more details on sharding, head over to the NEAR Medium page, where we’re publishing a series of features on how Nightshade is impacting the platform. Beyond a simple primer on how sharding works, we’re also exploring how Simple Nightshade is now powering the DeFi space and helping make NEAR carbon-neutral, amongst other things.   

- - - -

Funding finds its feet

- - - -

An ecosystem needs support, especially in its early days when projects are just finding their feet. In 2021, NEAR Foundation went above and beyond to foster growth and innovation. 

- - - -

First up, there was the news that the NEAR ecosystem announced a monumental $800 million in funding initiatives targeted at accelerating growth. While NEAR is giving all communities access to this record amount of funding, there will be a special focus on Decentralized Finance (DeFi) teams who are actively revolutionizing and reimagining the way we interact with money. 

- - - -

DeFi projects on NEAR have already been thriving this year, with $200 million total value locked across projects like Ref Finance, Skyward, and Octopus. In addition to ecosystem fund news, Proximity Labs, a research and development firm targeting the NEAR ecosystem, announced its own $350 million grants DAO to build on the momentum.

- - - -

In the ecosystem, key projects like Aurora raised $12 million in its first funding round. The Ethereum Virtual Machine (EVM) for scaling decentralized applications on NEAR, received funding from the likes of Pantera Capital, Electric Capital, Dragonfly Capital and other funds.  

- - - -

Flux Protocol, meanwhile, the decentralized oracle provider building on NEAR, raised $10.3 million to build the future of open finance earlier in the year. The project’s round was led by Distributed Global, with participation from Coinbase Ventures, CoinFund, Uncorrelated, Figment Capital, Maven 11, Reciprocal Ventures, Jabre Capital, Greenfield One, IOSG, and Flow Ventures.

- - - -

With funding in place, it was only a matter of time before the ecosystem took off. 

- - - -

Explosive Ecosystem Growth 

- - - -

NEAR’s 2021 was marked by massive growth. Fueled by Rainbow Bridge, which connects NEAR with Ethereum, as well as Simple Nightshade sharding, the NEAR ecosystem saw an exciting proliferation of gaming, Metaverse, NFT, and DeFi projects. 

- - - -

Gaming

- - - -

Gaming was probably always destined to be a strong crypto industry, and 2021 proved to be a fantastic year for NEAR-based gaming projects. We expect this Web3 gaming momentum to carry over into 2022. 

- - - -

In 2021, OP Games, a blockchain-based Web3 gaming platform, began transforming how users buy, own, and trade in-game assets. Unlike current gaming platforms, which often monopolize worlds by sandboxing digital assets, OP Games is offering them as NFTs and turning entire games into fractionalized NFTs. This way, players and fans can co-own projects and, if the game finds success, shape how it develops through its DAO. 

- - - -

Similarly, Vorto Network began developing its online marketplace, where users will be able to buy in-game items and digital assets through a crypto wallet. Hash Rush, a blockchain-based, real-time strategy (RTS) game set to launch on Vorto Network in January 2022, will let players immerse themselves in the Hermeian galaxy, where they build, compete, and exchange goods through various levels. Hash Rush will be a great example of Web3’s “play-to-earn” model, which creates a digital goods economy for participants. 

- - - -

Another title, NEAR Lands, is a pixelated land-based open-world game designed as much for the community as the gameplay. In the NEAR Lands online universe, players create characters and items, as well as engage with friends and other participants, while adventuring through the game’s landscape. 

- - - -

As Q4 drew to a close, Inite earned a $50,000 grant to help build its NFT gaming platform. A unique type of Metaverse experience, Inite is a motivational game based on the scientific method, where players receive daily tasks designed to boost their creativity. By playing Inite, players can earn tokens by generating ideas to improve individual cognitive skills and productivity. 

- - - -

NFTs 

- - - -

Even more than gaming, 2021 was a strong year for NFTs. And with NFTs percolating into the public consciousness, it’s easy to see why. Paras and Mintbase, two NEAR NFT marketplaces, led the charge in bringing more NFTs to the NEAR ecosystem. 

- - - -

Mintbase, which began building on NEAR in August of 2020, officially launched in 2021. The team had originally begun developing on Ethereum, but migrated over to NEAR when it became prohibitively expensive for them. With its fast transaction speeds and low costs, NEAR was the obvious choice for Mintbase, which hosts its own NFT marketplace but also has an NFT utility engine that helps people build their own.  

- - - -

In early December, electronic music DJ and producer deadmau5 and indie rock band Portugal. the Man collaborated with Mintbase and NEAR to mint their NFT single “this is fine”. If deadmau5 and Portugal. the Man go platinum (sell more than 1 million records in the US), they will make blockchain history. It’s already putting Mintbase firmly on the NFT map. 

- - - -

The NFT marketplace Paras offers real-world trading cards of artworks as collectibles, which users can quickly mint, buy, and sell quickly at little cost. Paras recently launched Boom Boom! the first mini digital comic series on NEAR, and PARADIGM. Both of these are part of Paras Comics, the platform’s new comics-specific feature. The Paras marketplace already has thousands of users purchasing one-of-a-kind NFT collections. It also boasts over 18,000 Twitter and 3,000 Telegram followers—a testament to its rapidly expanding community. 

- - - -

From July 17th to the 25th, 2021 at the Shanghai National Exhibition and Convention Centre, Paras collaborated with Web3Games and NEAR to showcase Chinese artists who were selling NFT artworks at an exhibition. One artist, Huang Heshen, created the “Toorich City Series”, a collection of exclusive NFTs on Paras that explores Bu Tu Garden Community, a digital set of 10 luxury single-family villas.

- - - -

Elsewhere in China, the NEAR dApp Feiyu recently debuted. Built atop NEAR, Feiyu is a new take on social media, where users express creativity by sharing memes and GIFs. All of this happens in an NFT-based metaverse where users don’t have to register a wallet. Driven by rewards, Feiyu users earn tokens or NFT items (skins, weapons, etc.) for participating in the community.

- - - -

On the audio NFT front, DAO Records is working to reimagine the record label and to fairly pay musicians for their recordings. In the current music industry model, record labels and streaming services take the majority of musicians’ earnings. With DAO records, the founders are encouraging independent artists to release and package new music as audio NFTs. 

- - - -

To Date, DAO Records has released over 150 NFTs from over 100 artists. And in the last 14 months, DAO Records has also produced over 50 virtual events, where musicians, fans, and NFT lovers can meet and socialize in custom-designed Metaverse gatherings. 

- - - -

Metaverse 

- - - -

While much crypto momentum found its way into DeFi and NFT apps, a number of Metaverse apps also launched on NEAR in 2021. These Metaverse apps laid the groundwork, in their own unique ways, for integration with blockchain gaming, DeFi, NFTs, and other crypto projects. 

- - - -

Metaverse AI, for example, is developing an Open Metaverse for Web3. Using Metaverse AI’s advanced AI engine, users will be able to create decentralized identities and high-fidelity 3D avatars. These blockchain-based DiD (decentralization identifier) avatars give users ownership of their virtual identities and assets, and the ability to move them across the larger Metaverse. 

- - - -

Another NEAR Metaverse project is Reality Chain, which will launch on Octopus Network, a substrate-based appchain network on NEAR. Reality Chain offers users gaming and social activities with the feel of immersive, multiplayer functionality and features.

- - - -

A radically different take on the Metaverse can be found in the Illust Space app. Billing itself as an “open augmented reality infrastructure for the world,” the Illust Space team is building an augmented reality Metaverse. The app gives users the tools to mix the real and digital worlds for their artworks while making them collectible through NFT technology. 

- - - -

Also in 2021, NEAR debuted its MetaBUILD series, a hackathon designed to encourage developers to build on NEAR. As the name indicates, building the Metaverse is a major emphasis of this hackathon. The first MetaBUILD held August 27th to September 19th, and the latest, MetaBUILD 2 (December 22 – February 10, 2022), both made $1 million in prizes available to developers and teams.

- - - -

DeFi 

- - - -

DeFi, or decentralized finance, has become a cornerstone of any crypto ecosystem. In little more than 12 months since mainnet launch, there are now more than 40 DeFi projects calling NEAR home. From infrastructure providers like Rainbow Bridge, Flux and Aurora, to token swap markets 1inch, Trisolaris, and Onomy Protocol, there are staking platforms, lenders, borrowers, credit scorers, and even BananaSwappers. 

- - - -

As noted above, both NEAR’s $800 million global ecosystem fund and Proximity Labs’ $350 million Grants DAO will support DeFi projects and other dapps building on NEAR. NEAR’s Nightshade sharding will also supercharge DeFI by expanding the blockchain’s transaction speeds and security. 

- - - -

Launched this year, Aurora is one of the most notable DeFi projects on NEAR. A platform that makes EVM contracts interoperable on NEAR, Aurora allows developers to keep using Ethereum while boosting their apps with NEAR’s super-fast transactions and low barriers to entry. Aurora is partnering with a number of other promising DeFi projects on NEAR, like the cross-chain oracle Flux and Rose, a stable swap and borrowing protocol, to level up the ecosystem’s DeFi game. 

- - - -

Yet another highly visible DeFi player on NEAR is Ref Finance, a community-led and multi-purpose decentralized exchange, asset issuer, and lender. Ref Finance accomplishes all of this through a single, synchronous DeFi stack. What’s more, it’s fun and easy to use. 

- - - -

If you’re looking for an interest rate market protocol, then Burrow is a dApp to check out. And if you’re looking for a token launchpad, be sure to dive into Skyward Finance, a DeFi platform that makes token launches fair and community-centric, as well as bot and attack-resistant. Another cool thing about Skyward Finance is that its DAO gives the community access to the token launch immediately instead of letting front-runners like private investors and VC firms pump and dump tokens. 

- - - -

If you’re looking for more on NEAR DeFi apps, we’ll be publishing an article on the top DeFi projects building on NEAR. So, stay tuned for that in the new year. 

- - - -

The DAO Community is Growing

- - - -

One of the major takeaways of 2021 is that NEAR’s community of Decentralized Autonomous Organizations is rapidly growing and diversifying. This is another trend that the NEAR ecosystem and larger blockchain community can expect to carry over into 2022 and beyond. 

- - - -

Sputnik DAO V1, a hub for NEAR’s DAO ecosystem, currently has a total of 248 DAOs, with a total of 17,633 transactions for a total payout of 989,598 $NEAR ($9,292,324 USD). The Sputnik DAO hub now has a Total Value Locked (TVL) of 113,969 $NEAR ($1,070,164 USD). Factoring in those decentralized organizations in the Astro DAOs ecosystem, it’s safe to say there are now over 400 DAOs on the NEAR platform. 

- - - -

Much of the DAO community growth can be seen in NEAR’s blockchain infrastructure and the DeFi space. The biggest DAO by total assets is Aurora, a token exchange bridge between NEAR and Ethereum, and Octopus, a platform for building appchains (independent, custom blockchains).

- - - -

2021 saw explosive growth in how DAOs experimented with governance tooling on NEAR. In the first half of the year, SputnikDAO went through two iterations—one for disseminating the Community Fund and the other to incorporate custom call ability. By the time Astro DAO launched in October, there was such demand for its offerings that hundreds of DAOs came into existence in only 2 months. And in Q4, the NEAR community did quite a lot of thinking about liability protection, legal entities, and state regulation of DAOs. 

- - - -

Creatives DAO, a fully community-run DAO Vertical, launched this year to support the ecosystem’s creative Guilds and DAOs. Discussions are just beginning about MultiDAOs, and how DAOs can better coalesce for collaborative decision-making efforts. NEAR is also supporting a research initiative hosted by Governauts that is examining DAO-based reward systems. 

- - - -

DAO projects are being supplemented by DAO Guilds, which support these and other blockchain sectors with different resources. Various Guilds are even acting as specialized sub-DAOs working in areas like legal, software development, and DeFi. These and other Guilds are there for when app founders and developers want to tap into specific expertise and resources to improve their own project, technology, or DAO.

- - - -

DaoBox, based in Switzerland, is another resource for projects and organizations looking to design DAOs. The company offers a toolkit for DAOs building in NEAR, helping them establish the DAO, get a headquarters address, raise funds, and stay compliant through accounting. 

- - - -

A Brief Look Toward 2022

- - - -

A number of developers building on NEAR will launch their projects in 2022, bringing many more DeFi, NFT, Gaming, Metaverse, and other exciting and cutting projects to the NEAR ecosystem. These teams came to NEAR because they know that whether you’re developing or simply using NEAR apps, joining the ecosystem is fast, easy, and secure.

- - - -

With NEAR’s $800 million global ecosystem funding initiative, expect to see many more DAOs established as we head into 2022. These funds, alongside Guilds and other blockchain-based expertise and resources, will be vital in helping DAOs succeed and, just as importantly, bringing the masses from Web2 to the Open Web. 

-

The post NEAR 2021: A Year in Review appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR Sharding Rollout and Aurora IDO Postmortems - /blog/near-sharding-rollout-and-aurora-ido-postmortems/ - - - Fri, 03 Dec 2021 14:24:47 +0000 - - - - - /?p=15402 - - Between November 8th and November 19th, multiple incidents related to Near Inc RPC services caused severe degradation of user experience. …

-

The post NEAR Sharding Rollout and Aurora IDO Postmortems appeared first on NEAR Protocol.

-]]>
- Between November 8th and November 19th, multiple incidents related to Near Inc RPC services caused severe degradation of user experience. The Near Inc team takes this kind of issue seriously and aims to continually improve its services.  

- - - -

The following postmortems on the NEAR sharding rollout and Aurora IDO summarize the incidents. They provide root cause analyses, mitigations, and the future improvements we are working on to prevent similar incidents from happening again.

- - - -

Incident 1 – November 10th (12:00 UTC – 15:00 UTC) NEAR Inc RPC Service degraded during Boca Chica Aurora token sale

- - - -

During the Boca Chica Aurora token sale, community members reported an inability to access the service to buy the Aurora lottery ticket. The cause: too much load on the RPC endpoint. Due to higher than expected demand during the sale, the RPC became overloaded in the EU region.

- - - -

We’ve increased our RPC capacity by rolling out new RPC nodes across all regions. In particular, we’ve bumped up the number of nodes in the EU region. In the meantime, we’ve made and are working on several other improvements to increase the RPC throughput and reliability.

- - - -

Incident 2 – November 16th (19:00 UTC – 19:30 UTC) Near Inc Services down due to global cloud provider outage

- - - -

All Near Inc services stopped working to some extent for a short period of time including RPC, Indexers, Explorer, and Wallet. Issues were reported from across the community and internally all alerts started to fire. 

- - - -

We rapidly identified the root cause: an outage affecting the load balancing stack hit our cloud provider, which impacted RPC and therefore made all other dependent services unavailable as well. Unfortunately, there was no quick mitigation we could do on our side. We had to wait for the cloud provider to resolve the issue to get our services operational again. The cloud provider was able to quickly detect and restore service in under 20 minutes.

- - - -


Currently, we use one cloud provider for the services we host. We do this for simplicity of maintenance. Due to the decentralized nature of NEAR, anyone is able to run their own RPC services, providing alternative ways to access the network. Making it easy for users to switch RPC nodes is something that both wallets and developer tooling will be looking into. 

- - - -

To prevent issues like this from happening to Near Inc services, we are also looking into implementing a multi-cloud deployment with client-side fallbacks in case the primary service goes down.

- - - -

Incident 3 – November 17th(03:00 UTC – 19:00 UTC)Near Inc services degraded including Skyward during Aurora IDO, Wallet, and Explorer

- - - -

During the sharding rollout on mainnet we encountered two issues caused by state splitting as part of the protocol upgrade: 1) high disk usage affecting the RPC service, and 2) the inability of archival nodes to split state within one epoch.

- - - -

Let’s discuss them separately.

- - - -

The first issue was caused by high disk usage (IOPS) during the process of splitting state. Even though the RPC traffic was very low across the network, performance of our RPC nodes drastically deteriorated and we observed that RPC latency in some regions jumped from 1s to 60s. 

- - - -

This was not a capacity problem: each RPC request takes longer to respond and adding more nodes wouldn’t help much. Most services were almost unavailable, but due to client side retries they could be used with high response times. Most affected users were in Europe and Asia.

- - - -

The second issue was caused by archival nodes being unable to finish state splitting within one epoch as expected and, therefore, they got stuck when the new epoch arrived. This issue arose unexpectedly, as we ran simulations beforehand for regular RPC for the sharding upgrade using mainnet data. The edge case we missed was running the simulation on archival nodes, which took significantly longer. The issue had not been previously identified on testnet, as archival data is smaller there. 

- - - -

The failure of archival nodes affected all services depending on them: Indexer, Explorer, Wallet, Aurora, etc. The Infrastructure team was able to rapidly redirect traffic to non-archival nodes as a patch until archival nodes were restored. We waited until archival nodes finished splitting their states, and once the first node synced we generated a backup and started the rest of the archival nodes from there. This was a failure of not testing for all cases and we plan to invest more time and effort in making sure releases go as smoothly as previous ones.

- - - -

Some Final Thoughts

- - - -

It’s important to note that, despite all the aforementioned incidents, the network was always functioning as expected and only RPC services were affected, causing dependent services to have issues.

- - - -

We want to be transparent about all past and future issues we face. We believe the community members will understand that “NEAR stands for iteration” and we are doing our best to prevent such incidents from happening in the future.

-

The post NEAR Sharding Rollout and Aurora IDO Postmortems appeared first on NEAR Protocol.

-]]>
- - - -
- - Aurora Partners With ConsenSys, Bringing MetaMask, Infura and More Ethereum Tools to NEAR - /blog/aurora-consensys-partnership-metamask-infura/ - - - Thu, 02 Dec 2021 14:00:08 +0000 - - - - - /?p=15392 - - Aurora, the Ethereum scaling solution that allows projects built on Ethereum to utilize the cutting-edge technology of the NEAR Protocol, …

-

The post Aurora Partners With ConsenSys, Bringing MetaMask, Infura and More Ethereum Tools to NEAR appeared first on NEAR Protocol.

-]]>
- Aurora, the Ethereum scaling solution that allows projects built on Ethereum to utilize the cutting-edge technology of the NEAR Protocol, is partnering with ConsenSys, the enterprise blockchain company to provide access to its suite of developer tools. 

- - - -

The partnership aims to empower both the NEAR and Ethereum ecosystems by improving developer facilities – through the availability of the product suite – with the goal of increasing cross-chain interoperability. 

- - - -

The product suite features projects including MetaMask, Infura, ConsenSys Quorum, Truffle, Codefi, and Diligence. MetaMask is the primary way a global user base of over 21 million monthly active users interact with applications on Web3. Over 350,000 developers use Infura to access Ethereum, IPFS and Layer 2 networks. In addition, 4.7 million developers create and deploy smart contracts using Truffle and ConsenSys Diligence has secured more than $25 billion in smart contracts with its hands-on dapp audits and testing tools. 

- - - -

“We are thrilled to join forces with ConsenSys on our shared mission of empowering the Ethereum ecosystem and extending its economy,” said Alex Shevchenko, the CEO of Aurora Labs.

- - - -

The partnership means ConsenSys will now have official participation in the ongoing development of the AuroraDAO. 

- - - -

“We are excited to be partnering with the talented Aurora and NEAR protocol teams. Developer interest in EVM-compatible scaling solutions continues to grow at the same pace as the rapid expansion of the Web3 ecosystem, says E.G. Galano, Co-Founder and Head of Engineering at Infura.

- - - -

“We believe developers will benefit from the addition of Aurora to the Infura product suite by enabling them to utilize the NEAR network with the EVM tooling they are already familiar with.”

- - - -

Infura is directly involved in the AuroraDAO, which hands over key decision making to its community as a part of its vision to create a scaling solution that is as decentralized as possible.

- - - -

About Aurora

- - - -

Aurora is an EVM built on the NEAR Protocol, delivering a turn-key solution for developers to operate their apps on an Ethereum-compatible, high-throughput, scalable and future-safe platform, with low transaction costs for their users.

- - - -

Join Aurora’s community

- - - - -

The post Aurora Partners With ConsenSys, Bringing MetaMask, Infura and More Ethereum Tools to NEAR appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/aurora/index.html b/public/blog/tag/aurora/index.html deleted file mode 100644 index bf6b1d3d7..000000000 --- a/public/blog/tag/aurora/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Aurora Archives – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/tag/b-o-s-web-push-notifications/feed/index.xml b/public/blog/tag/b-o-s-web-push-notifications/feed/index.xml deleted file mode 100644 index 3dd42b898..000000000 --- a/public/blog/tag/b-o-s-web-push-notifications/feed/index.xml +++ /dev/null @@ -1,124 +0,0 @@ - - - - B.O.S web push notifications Archives – NEAR Protocol - - /blog/tag/b-o-s-web-push-notifications/ - - Wed, 04 Oct 2023 18:16:58 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - B.O.S web push notifications Archives – NEAR Protocol - /blog/tag/b-o-s-web-push-notifications/ - 32 - 32 - - - Announcing Web Push Notifications on B.O.S - /blog/announcing-web-push-notifications-on-b-o-s/ - - - Wed, 04 Oct 2023 18:12:01 +0000 - - - - - /?p=20948 - - Starting today, developers can better engage with their users thanks to Web Push Notifications on both desktop and mobile for …

-

The post Announcing Web Push Notifications on B.O.S appeared first on NEAR Protocol.

-]]>
- Starting today, developers can better engage with their users thanks to Web Push Notifications on both desktop and mobile for applications built on B.O.S.

- - - -

Apps and components built on the NEAR B.O.S have always benefited from in-site notifications to keep their users informed about relevant updates. Until now, these notifications were only shown within near.org (and other compatible gateways), meaning that users had to visit the website to see them. Now, users can opt-in to receive push notifications directly on their computers and phones about important events in their favorite apps. This way, users can be notified in real time, even if they are not actively navigating near.org.

- - - -

Why are push notifications useful?

- - - -

Thanks to push notifications, users can receive timely updates and information about their account’s activities in real time and through multiple channels. The increase in awareness also benefits application developers by encouraging users to return to the app, thus significantly improving user engagement. This way, push notifications help to tackle one of the biggest problems for founders in Web3: re-engaging and retaining users. Nowadays, user retention rates in Web3 fall short of the industry standard for web apps, which stands at a 35% retention rate after 30 days. Thanks to web push notifications, developers on BOS now benefit from a powerful new tool to re-engage their user base.

- - - -

What will the notification experience look like on near.org?

- - - -

On near.org, users will be asked to opt-in to the new push notification system on their desktop and iOS/Android mobile browsers. (To enable browser push notifications on iOS, users need to update their device at least to iOS 16.4 and will also need to add the near.org website as an app icon to their home screen – see link.) If the user accepts, they will automatically start to receive notifications for baseline social activities on their account. Users will be able to view all notifications in the notification center, and set their notification preferences via the designated settings menu.

- - - -

For developers implementing components and apps, the new notification system is completely transparent. Apps that already leverage the in-site notification system will automatically benefit from web push notifications, meaning their users will also be notified on their desktop and mobile in real time.

- - - -

For gateway developers, Pagoda is releasing a comprehensive guide on how to add web push notifications using a simple web service.

- - - -

What are some examples of notifications I could add to my application?

- - - -

Notifications can apply to any event that developers want to inform users about. Some examples of how  developers have used these are:

- - - -
    -
  • Notify updates on the status of a bid placed on an NFT marketplace.
  • - - - -
  • Tell users that they gained a new follower.  
  • - - - -
  • Inform of a reply to a comment on a discussion.
  • - - - -
  • Any other on-chain action that is sent to the current notification system.
  • -
- - - -

How do I learn more and get started?

- - - -

The best place to start is by checking the official documentation. You can also check examples of apps sending notifications such as the LikeButton and FollowButton. If you have any questions or need to reach out to the Pagoda product team, remember that we have weekly office hours, and an active Telegram channel where members of the community can help you. 

- - - -

What’s coming next?

- - - -

Stay tuned! Pagoda plans to release additional notification features later this year, including support for more granular notification settings and safeguards to manage notification volume for users on near.org. They will also be exploring support for near.org notifications via email.

-

The post Announcing Web Push Notifications on B.O.S appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/b-o-s-web-push-notifications/index.html b/public/blog/tag/b-o-s-web-push-notifications/index.html deleted file mode 100644 index 0975b144b..000000000 --- a/public/blog/tag/b-o-s-web-push-notifications/index.html +++ /dev/null @@ -1,2 +0,0 @@ -B.O.S web push notifications Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/b-o-s/feed/index.xml b/public/blog/tag/b-o-s/feed/index.xml deleted file mode 100644 index e97705e84..000000000 --- a/public/blog/tag/b-o-s/feed/index.xml +++ /dev/null @@ -1,374 +0,0 @@ - - - - B.O.S Archives – NEAR Protocol - - /blog/tag/b-o-s/ - - Thu, 12 Oct 2023 13:08:22 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - B.O.S Archives – NEAR Protocol - /blog/tag/b-o-s/ - 32 - 32 - - - NEAR Query API Beta Is Now Open for Apps Building on B.O.S - /blog/near-query-api-beta-is-now-open-for-apps-building-on-b-o-s/ - - - Thu, 12 Oct 2023 14:00:00 +0000 - - - - - /?p=20967 - - Pagoda has officially opened the Beta version of NEAR Query API, a fully managed serverless infrastructure offering NEAR blockchain #indexers, …

-

The post NEAR Query API Beta Is Now Open for Apps Building on B.O.S appeared first on NEAR Protocol.

-]]>
- Pagoda has officially opened the Beta version of NEAR Query API, a fully managed serverless infrastructure offering NEAR blockchain #indexers, storage, and GraphQL endpoints. Developers can now build indexers for any smart contract using JavaScript and the NEAR Lake Primitives library, and store data in custom SQL schemas, all without needing to manage any infrastructure. This approach significantly simplifies the way developers interact with blockchain data and empowers them to build B.O.S applications with great user experiences.

- - - -

NEAR Query API allows developers to store indexer code on-chain and receive an auto-provisioned database with GraphQL API and indexed historical data, continuously updated through an indexer service that closely tracks the blockchain. The GraphQL API supports paginated and aggregate queries such as count, avg, min, etc. It also enables subscriptions through web sockets, allowing you to create user interfaces that update data without page refresh.

- - - -

With QueryAPI, you can quickly get GraphQL endpoints and use them directly in your dApps to enrich the user experience and improve user interface performance.

- - - -

In the latest release, Pagoda moved to a more scalable and stable infrastructure and open-sourced the code to make it easy to run it yourself and contribute to future development.

- - - -

Sample Indexers

- - - -

Additionally, Pagoda introduced several sample indexers:

- - - - - - - -

User Interface

- - - -

The NEAR Query API’s user-friendly interface, built using B.O.S components, provides easy access to all indexers and key features of the platform that streamline the process of building indexers:

- - - -
    -
  • Access to all indexers built on the platform. Developers can learn from practical examples as indexers’ code and schemas are stored on-chain.
  • - - - -
  • Edit code online with autocomplete for easy access to block data and SQL tables for efficient development.
  • - - - -
  • Debug indexers on any block using the browser console for a familiar debugging experience.
  • - - - -
  • Build GraphQL queries using the GraphiQL playground.
  • - - - -
  • Auto-generate JSX code for swift B.O.S component development.
  • - - - -
  • Monitor indexer status and access logs written from JavaScript code.
  • - - - -
  • Start historical indexing from any block.
  • -
- - - -

Documentation

- - - -

Pagoda created documentation for QueryAPI to help you get started. Take a look at how it works, read about indexer functions, the context object, and check out the tutorials. To provide more insight into the capabilities of the NEAR Query API, the product team has prepared a walkthrough video that you can watch here.

- - - -

Invitation to Beta Testing

- - - -

Pagoda invites developers to register their interest in closed Beta testing of NEAR Query API. If you are interested in indexing smart contracts on Mainnet with moderate transactions per day, the team is eager to engage with you and help you get started. Please use this link to register your interest.

- - - -

Build full-stack JavaScript dApps on NEAR

- - - -

On NEAR, JavaScript developers can build smart contracts with low gas fees, fast and decentralized user interfaces on the B.O.S and powered by QueryAPI, and all without needing to worry about cloud infrastructure.

- - - -

Pagoda will be working with B.O.S developers on improving the developer experience of building, debugging, using and maintaining indexers, as well as performance and scalability to prepare for general availability later this year.

- - - -

Join in this exciting new chapter of full-stack JavaScript dApps with NEAR B.O.S. and NEAR Query API!

-

The post NEAR Query API Beta Is Now Open for Apps Building on B.O.S appeared first on NEAR Protocol.

-]]>
- - - -
- - Announcing Web Push Notifications on B.O.S - /blog/announcing-web-push-notifications-on-b-o-s/ - - - Wed, 04 Oct 2023 18:12:01 +0000 - - - - - /?p=20948 - - Starting today, developers can better engage with their users thanks to Web Push Notifications on both desktop and mobile for …

-

The post Announcing Web Push Notifications on B.O.S appeared first on NEAR Protocol.

-]]>
- Starting today, developers can better engage with their users thanks to Web Push Notifications on both desktop and mobile for applications built on B.O.S.

- - - -

Apps and components built on the NEAR B.O.S have always benefited from in-site notifications to keep their users informed about relevant updates. Until now, these notifications were only shown within near.org (and other compatible gateways), meaning that users had to visit the website to see them. Now, users can opt-in to receive push notifications directly on their computers and phones about important events in their favorite apps. This way, users can be notified in real time, even if they are not actively navigating near.org.

- - - -

Why are push notifications useful?

- - - -

Thanks to push notifications, users can receive timely updates and information about their account’s activities in real time and through multiple channels. The increase in awareness also benefits application developers by encouraging users to return to the app, thus significantly improving user engagement. This way, push notifications help to tackle one of the biggest problems for founders in Web3: re-engaging and retaining users. Nowadays, user retention rates in Web3 fall short of the industry standard for web apps, which stands at a 35% retention rate after 30 days. Thanks to web push notifications, developers on BOS now benefit from a powerful new tool to re-engage their user base.

- - - -

What will the notification experience look like on near.org?

- - - -

On near.org, users will be asked to opt-in to the new push notification system on their desktop and iOS/Android mobile browsers. (To enable browser push notifications on iOS, users need to update their device at least to iOS 16.4 and will also need to add the near.org website as an app icon to their home screen – see link.) If the user accepts, they will automatically start to receive notifications for baseline social activities on their account. Users will be able to view all notifications in the notification center, and set their notification preferences via the designated settings menu.

- - - -

For developers implementing components and apps, the new notification system is completely transparent. Apps that already leverage the in-site notification system will automatically benefit from web push notifications, meaning their users will also be notified on their desktop and mobile in real time.

- - - -

For gateway developers, Pagoda is releasing a comprehensive guide on how to add web push notifications using a simple web service.

- - - -

What are some examples of notifications I could add to my application?

- - - -

Notifications can apply to any event that developers want to inform users about. Some examples of how  developers have used these are:

- - - -
    -
  • Notify updates on the status of a bid placed on an NFT marketplace.
  • - - - -
  • Tell users that they gained a new follower.  
  • - - - -
  • Inform of a reply to a comment on a discussion.
  • - - - -
  • Any other on-chain action that is sent to the current notification system.
  • -
- - - -

How do I learn more and get started?

- - - -

The best place to start is by checking the official documentation. You can also check examples of apps sending notifications such as the LikeButton and FollowButton. If you have any questions or need to reach out to the Pagoda product team, remember that we have weekly office hours, and an active Telegram channel where members of the community can help you. 

- - - -

What’s coming next?

- - - -

Stay tuned! Pagoda plans to release additional notification features later this year, including support for more granular notification settings and safeguards to manage notification volume for users on near.org. They will also be exploring support for near.org notifications via email.

-

The post Announcing Web Push Notifications on B.O.S appeared first on NEAR Protocol.

-]]>
- - - -
- - FastAuth SDK Beta Now Available - /blog/fastauth-sdk-beta-now-available/ - - - Mon, 02 Oct 2023 16:30:00 +0000 - - - - - /?p=20940 - - Developers can now start integrating FastAuth into their dApps for a seamless, intuitive onboarding experience with the FastAuth SDK, now …

-

The post FastAuth SDK Beta Now Available appeared first on NEAR Protocol.

-]]>
- Developers can now start integrating FastAuth into their dApps for a seamless, intuitive onboarding experience with the FastAuth SDK, now in Beta.

- - - -

Onboarding new users is one of the biggest hurdles for Web3 dApps. Creating a Web3 wallet is still a painful process for most users who are new to crypto, because it usually involves downloading an app or browser extension, purchasing cryptocurrency on an exchange, and understanding and saving a seed phrase. For these reasons, conversion rates for new user sign-ups tend to be very low in Web3 as compared to Web2.

- - - -

What is FastAuth?

- - - -

FastAuth addresses this problem through a familiar, “Web2-like” onboarding flow: users can sign up with just an email, and they don’t need to save a seed phrase or password. Instead, their FastAuth account and keys are secured using “Passkeys,” a new technology that replaces passwords with biometrics such as fingerprints or FaceID linked to a device. 

- - - -

Users can also recover access to their account at any time by using their email through the “MPC recovery” service. Developers can also choose to subsidize gas costs for a certain smart contract so that users can start interacting with their dApp immediately, without having to fund their own account. 

- - - -

Who can apply for the FastAuth SDK Beta?

- - - -

FastAuth is currently in a closed Beta. Any developer and/or founder building NEAR apps transacting on NEAR can apply for access to the SDK. The goal of this Beta is to collect feedback from founders and developers to help inform our roadmap and upcoming releases (see more on these below). 

- - - -

Pagoda will request feedback from participants in the Beta, as they start building with FastAuth.

- - - -

How do I learn more and get started?

- - - -

You can try FastAuth for yourself by creating a new account on near.org

- - - -

You can also apply to be part of the beta, and check out the SDK documentation

- - - -

What’s coming next?

- - - -

Pagoda is planning to release some additional key features later this year, including the ability to “white-label” the sign-up and sign-in flows, as well as multi-chain support. 

-

The post FastAuth SDK Beta Now Available appeared first on NEAR Protocol.

-]]>
- - - -
- - Mantle Ecosystem Gateway Launches on the NEAR Blockchain Operating System (B.O.S) - /blog/mantle-ecosystem-gateway-launches-on-the-near-blockchain-operating-system-b-o-s/ - - - Wed, 20 Sep 2023 13:00:00 +0000 - - - - - - /?p=20896 - - An ecosystem gateway for Mantle, the layer-2 scaling solution built on Ethereum, has launched on the NEAR Blockchain Operating System …

-

The post Mantle Ecosystem Gateway Launches on the NEAR Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

-]]>
- An ecosystem gateway for Mantle, the layer-2 scaling solution built on Ethereum, has launched on the NEAR Blockchain Operating System (B.O.S) to offer a unified point of entry into the Mantle ecosystem. 

- - - -

Hosted by popular Mantle dApp FusionX, the gateway, built in collaboration with the NEAR community, streamlines the discovery of Mantle applications and helps aggregate components of top dApps including the Mantle Bridge, Agni, Ammos, iZiSwap, FusionX, Gamma, Lendle, and soon Pendle, in one place. 

- - - -

The gateway offers greater accessibility for developers and users, easier discoverability for the apps they build, and powerful composability. This was all made possible thanks to the B.O.S.

- - - -

“Mantle has seen some great traction since their launch and we’re very excited to have a Mantle gateway built on B.O.S. Ethereum and DeFi users interested in discovering new projects can now find lots of Mantle apps in one place, with bridging already solved so they can get started right away,” says Illia Polosukhin, co-founder of NEAR Protocol. “The Mantle gateway demonstrates the value of B.O.S gateways for other L2s and EVM projects looking to increase discoverability.” 

- - - -

Unlocking the Web3 ecosystem 

- - - -

Mantle’s development on NEAR is a testament to the protocol’s commitment to creating the foundations for the open web. “We are delighted to ally with NEAR in bringing leading Mantle dApps to a wider community through the Mantle Ecosystem Gateway on B.O.S,” says Arjun Kalsy, head of ecosystem of Mantle. “Through this effort, we look to provide even more support to our dev community, and allow for more cross-pollination in our respective Web3 communities.” 

- - - -

The Mantle gateway joins a growing list of projects that have partnered with the B.O.S to help unlock the full potential of Web3. A zkEVM B.O.S gateway for the Polygon ecosystem launched on NEAR to help increase accessibility and discoverability for developers, while also improving the user experience for end users exploring L2 ecosystems. 

- - - -

While the B.O.S is built on NEAR, it offers many benefits  to founders and builders from EVM projects and across the whole Web3 ecosystem. The Blockchain Operating System speeds up the process of building multi-chain experiences, empowering builders from any ecosystem––including EVM projects such as Ethereum layer 2s––to focus on creating great products for users rather than on managing infrastructure. 

- - - -

Developers can quickly build composable apps for the open web from thousands of flexible components, as well as seamlessly onboard users and increase discoverability across Web3 since every application utilising B.O.S is visible on a common interface. This collaboration brings new capabilities to developers and lets them build apps that can quickly reach more users.

-

The post Mantle Ecosystem Gateway Launches on the NEAR Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/b-o-s/index.html b/public/blog/tag/b-o-s/index.html deleted file mode 100644 index be09e097d..000000000 --- a/public/blog/tag/b-o-s/index.html +++ /dev/null @@ -1,2 +0,0 @@ -B.O.S Archives – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/tag/berklee-college-of-music/feed/index.xml b/public/blog/tag/berklee-college-of-music/feed/index.xml deleted file mode 100644 index 685ef14c0..000000000 --- a/public/blog/tag/berklee-college-of-music/feed/index.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - - Berklee College of Music Archives – NEAR Protocol - - /blog/tag/berklee-college-of-music/ - - Thu, 02 Nov 2023 15:02:18 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Berklee College of Music Archives – NEAR Protocol - /blog/tag/berklee-college-of-music/ - 32 - 32 - - - Berklee College of Music Partners with NEAR Foundation to Build Music Licensing Platform  - /blog/berklee-college-of-music-partners-with-near-foundation-to-build-music-licensing-platform/ - - - Thu, 02 Nov 2023 16:00:00 +0000 - - - - - - /?p=21039 - - Berklee College of Music, the largest independent college of contemporary music and performing arts in the world, announced today a …

-

The post Berklee College of Music Partners with NEAR Foundation to Build Music Licensing Platform  appeared first on NEAR Protocol.

-]]>
- Berklee College of Music, the largest independent college of contemporary music and performing arts in the world, announced today a partnership with the NEAR Foundation to help build a music licensing platform. 

- - - -

The agreement, which will harness NEAR Protocol’s easy-to-use tech stack, will lead to the creation of a marketplace where musicians can upload their music, and creators can license music from the students of this world-class music institution. 

- - - -

The project will be released under an app called RAIDAR, which stands for Rights and Asset Information in Decentralized, Authoritative Repositories. Thanks to NEAR’s Web3 technology, all transactions will be recorded on the NEAR blockchain, ensuring a creators’ rights and representation are recorded on-chain. 

- - - -

Behind Berklee’s music licensing app, built on NEAR

- - - -

RAIDAR will use smart contracts to disintermediate the licensing process and ensure that musicians receive the full economic value and credit for their works. 

- - - -

“This is a first of its kind product that will help to democratize the world of music by putting creators first and ensuring they are always rewarded and protected from exploitation for their original work,” says George Howard, Distinguished Professor of Music Business at Berklee. 

- - - -

“Those who are seeking to license music for their projects now have a chance to access and support new creators by tapping into an exciting marketplace through the RAIDAR app, which is easy to navigate and offers a safe and reliable way to pay for music.”

- - - -

RAIDAR — simple to use, accessible to all

- - - -

The product is designed to be simple to use, which is a cornerstone of building on the NEAR Protocol. Musicians simply upload their music files and relevant metadata through a mobile- and desktop-friendly web app. 

- - - -

Their song is then represented by a unique, secure smart contract and assigned to the creator’s wallet as an asset or NFT, empowering the creator to view and showcase the song, wherever they go.  

- - - -

On the customer side, users can browse, search, and preview songs uploaded to the RAIDAR app and purchase single-use licenses for songs via the app. The song’s smart contract distributes funds received from the payment to the song’s creator. After the purchase transaction completes, the buyer receives an email with the corresponding song download link and a copy of the license agreement.

- - - -

“We are extremely excited to be working with Berklee to support a new and unique use case that has real world value for those that use it,” says  Chris Donovan, CEO of the NEAR Foundation. 

- - - -

“The RAIDAR app is a disruptive technology built on NEAR  that will help students to explore the power of smart contracts to ensure they are being paid fairly for their work, and that the world of music becomes more inclusive, safe and exciting for everyone.” 

-

The post Berklee College of Music Partners with NEAR Foundation to Build Music Licensing Platform  appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/berklee-college-of-music/index.html b/public/blog/tag/berklee-college-of-music/index.html deleted file mode 100644 index 33c574189..000000000 --- a/public/blog/tag/berklee-college-of-music/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Berklee College of Music Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/berklee-raidar/feed/index.xml b/public/blog/tag/berklee-raidar/feed/index.xml deleted file mode 100644 index bc9eabfad..000000000 --- a/public/blog/tag/berklee-raidar/feed/index.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - - Berklee RAIDAR Archives – NEAR Protocol - - /blog/tag/berklee-raidar/ - - Thu, 02 Nov 2023 15:02:18 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Berklee RAIDAR Archives – NEAR Protocol - /blog/tag/berklee-raidar/ - 32 - 32 - - - Berklee College of Music Partners with NEAR Foundation to Build Music Licensing Platform  - /blog/berklee-college-of-music-partners-with-near-foundation-to-build-music-licensing-platform/ - - - Thu, 02 Nov 2023 16:00:00 +0000 - - - - - - /?p=21039 - - Berklee College of Music, the largest independent college of contemporary music and performing arts in the world, announced today a …

-

The post Berklee College of Music Partners with NEAR Foundation to Build Music Licensing Platform  appeared first on NEAR Protocol.

-]]>
- Berklee College of Music, the largest independent college of contemporary music and performing arts in the world, announced today a partnership with the NEAR Foundation to help build a music licensing platform. 

- - - -

The agreement, which will harness NEAR Protocol’s easy-to-use tech stack, will lead to the creation of a marketplace where musicians can upload their music, and creators can license music from the students of this world-class music institution. 

- - - -

The project will be released under an app called RAIDAR, which stands for Rights and Asset Information in Decentralized, Authoritative Repositories. Thanks to NEAR’s Web3 technology, all transactions will be recorded on the NEAR blockchain, ensuring a creators’ rights and representation are recorded on-chain. 

- - - -

Behind Berklee’s music licensing app, built on NEAR

- - - -

RAIDAR will use smart contracts to disintermediate the licensing process and ensure that musicians receive the full economic value and credit for their works. 

- - - -

“This is a first of its kind product that will help to democratize the world of music by putting creators first and ensuring they are always rewarded and protected from exploitation for their original work,” says George Howard, Distinguished Professor of Music Business at Berklee. 

- - - -

“Those who are seeking to license music for their projects now have a chance to access and support new creators by tapping into an exciting marketplace through the RAIDAR app, which is easy to navigate and offers a safe and reliable way to pay for music.”

- - - -

RAIDAR — simple to use, accessible to all

- - - -

The product is designed to be simple to use, which is a cornerstone of building on the NEAR Protocol. Musicians simply upload their music files and relevant metadata through a mobile- and desktop-friendly web app. 

- - - -

Their song is then represented by a unique, secure smart contract and assigned to the creator’s wallet as an asset or NFT, empowering the creator to view and showcase the song, wherever they go.  

- - - -

On the customer side, users can browse, search, and preview songs uploaded to the RAIDAR app and purchase single-use licenses for songs via the app. The song’s smart contract distributes funds received from the payment to the song’s creator. After the purchase transaction completes, the buyer receives an email with the corresponding song download link and a copy of the license agreement.

- - - -

“We are extremely excited to be working with Berklee to support a new and unique use case that has real world value for those that use it,” says  Chris Donovan, CEO of the NEAR Foundation. 

- - - -

“The RAIDAR app is a disruptive technology built on NEAR  that will help students to explore the power of smart contracts to ensure they are being paid fairly for their work, and that the world of music becomes more inclusive, safe and exciting for everyone.” 

-

The post Berklee College of Music Partners with NEAR Foundation to Build Music Licensing Platform  appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/berklee-raidar/index.html b/public/blog/tag/berklee-raidar/index.html deleted file mode 100644 index 8e044bcca..000000000 --- a/public/blog/tag/berklee-raidar/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Berklee RAIDAR Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/bernoulli-locke/feed/index.xml b/public/blog/tag/bernoulli-locke/feed/index.xml deleted file mode 100644 index 1979e6bd1..000000000 --- a/public/blog/tag/bernoulli-locke/feed/index.xml +++ /dev/null @@ -1,64 +0,0 @@ - - - - Bernoulli-Locke Archives – NEAR Protocol - - /blog/tag/bernoulli-locke/ - - Wed, 14 Jun 2023 15:35:33 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Bernoulli-Locke Archives – NEAR Protocol - /blog/tag/bernoulli-locke/ - 32 - 32 - - - Case Study: Bernoulli-Locke-Locke’s David Palmer on the DAO-Owned SailGP Team - /blog/case-study-bernoulli-locke-lockes-david-palmer-on-the-dao-owned-sailgp-team/ - - - Wed, 14 Jun 2023 17:30:00 +0000 - - - - - /?p=20635 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: Bernoulli-Locke-Locke’s David Palmer on the DAO-Owned SailGP Team appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In recent installments, NEAR Foundation explored the BOS with Pagoda’s Chief Product Officer Alex Chiocchi, heard from OnMachina co-founder Jonathan Bryce on building decentralized storage, and dove into Move-to-Earn with Sweat Economy’s Oleg Fomenko.

- - - -

In the latest case study video, Bernouilli-Locke founder David Palmer details how his group is implementing a DAO for team ownership and governance for SailGP boat racing, by leveraging the power of NEAR.

- - - -
- -
-

The post Case Study: Bernoulli-Locke-Locke’s David Palmer on the DAO-Owned SailGP Team appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/bernoulli-locke/index.html b/public/blog/tag/bernoulli-locke/index.html deleted file mode 100644 index 43e37665b..000000000 --- a/public/blog/tag/bernoulli-locke/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Bernoulli-Locke Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/bigquery/feed/index.xml b/public/blog/tag/bigquery/feed/index.xml deleted file mode 100644 index 36bbc0693..000000000 --- a/public/blog/tag/bigquery/feed/index.xml +++ /dev/null @@ -1,156 +0,0 @@ - - - - BigQuery Archives – NEAR Protocol - - /blog/tag/bigquery/ - - Fri, 22 Sep 2023 14:39:57 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - BigQuery Archives – NEAR Protocol - /blog/tag/bigquery/ - 32 - 32 - - - NEAR Protocol BigQuery Public Dataset - /blog/near-protocol-bigquery-public-dataset/ - - - Fri, 22 Sep 2023 14:00:00 +0000 - - - - - /?p=20911 - - NEAR Protocol is a user-friendly, carbon-neutral blockchain, built from the ground up to be performant, secure, and unparalleled scalability. In …

-

The post NEAR Protocol BigQuery Public Dataset appeared first on NEAR Protocol.

-]]>
- NEAR Protocol is a user-friendly, carbon-neutral blockchain, built from the ground up to be performant, secure, and unparalleled scalability. In technical terms, NEAR is a layer one, sharded, proof-of-stake blockchain built with usability in mind. In simple terms, NEAR is a blockchain for everyone.

- - - -

Today, we are excited to announce the NEAR BigQuery Public Dataset for anyone who wants to query blockchain data in an easy and cost-effective way.

- - - -

Why BigQuery Public Dataset

- - - -

Until now, a user’s data query needs were fulfilled by indexers. Those indexers were either supplied by NEAR Protocol or custom made. To build custom indexers required JSON files from the NEAR Lake storage layer to be transformed and loaded into a target database engine like PostgreSQL, and only then could a user execute queries against it. This approach is complex, time-consuming, and resource-draining. It requires constant monitoring to ensure databases have the most up-to-date information.
NEAR BigQuery Public Dataset changes this. It provides near real-time blockchain data that can be easily queried with SQL.

- - - -

What we did

- - - -

We built the NEAR LakeHouse in Databricks. The data is loaded into raw bronze files using Databricks Autoloader, and transformed with Databricks Delta Live Tables into cleaned and enriched silver tables following the Databricks Medallion Architecture. The silver tables are then copied into the GCP BigQuery Public Dataset ready for consumption.

- - - -

The solution design

- - - -
- - - -

The code is open-source and can be found in our GitHub repository: near/near-public-lakehouse

- - - -

To learn more about how to get started and the data available, please check our documentation:

- - - -

https://docs.near.org/bos/queryapi/big-query

- - - -

Benefits

- - - -
    -
  • NEAR instant insights: Historic on-chain data queried at scale.
  • - - - -
  • Cost-effective: Eliminate the need to store and process bulk NEAR Protocol data; query as little or as much data as preferred.
  • - - - -
  • Easy to use: No prior experience with blockchain technology is required; bring a general knowledge of SQL to unlock insights.
  • -
- - - -

Conclusion

- - - -

NEAR BigQuery Public Dataset  is now available for anyone wanting to harness blockchain data for their own needs. BigQuery can help not only developers, but broader audiences including: 

- - - -
    -
  • Users: Create queries to track NEAR Protocol assets, monitor transactions, or analyze on-chain events at a massive scale.
  • - - - -
  • Researchers: Use indexed data for data science tasks, including on-chain activities, identifying trends, or feeding AI/ML pipelines for predictive analysis.
  • - - - -
  • Startups: Use NEAR Protocol’s indexed data for deep insights on user engagement, smart contract utilization, or insights across tokens and NFT adoption.
  • -
- - - -

Acknowledgments

- - - -

We are grateful for the following contributors who helped us to deliver the NEAR BigQuery Public Dataset. 

- - - - -

The post NEAR Protocol BigQuery Public Dataset appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/bigquery/index.html b/public/blog/tag/bigquery/index.html deleted file mode 100644 index 6011ee27c..000000000 --- a/public/blog/tag/bigquery/index.html +++ /dev/null @@ -1,2 +0,0 @@ -BigQuery Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/blockchain-operating-system/feed/index.xml b/public/blog/tag/blockchain-operating-system/feed/index.xml deleted file mode 100644 index b9641432a..000000000 --- a/public/blog/tag/blockchain-operating-system/feed/index.xml +++ /dev/null @@ -1,797 +0,0 @@ - - - - Blockchain Operating System Archives – NEAR Protocol - - /blog/tag/blockchain-operating-system/ - - Wed, 04 Oct 2023 18:16:58 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Blockchain Operating System Archives – NEAR Protocol - /blog/tag/blockchain-operating-system/ - 32 - 32 - - - Announcing Web Push Notifications on B.O.S - /blog/announcing-web-push-notifications-on-b-o-s/ - - - Wed, 04 Oct 2023 18:12:01 +0000 - - - - - /?p=20948 - - Starting today, developers can better engage with their users thanks to Web Push Notifications on both desktop and mobile for …

-

The post Announcing Web Push Notifications on B.O.S appeared first on NEAR Protocol.

-]]>
- Starting today, developers can better engage with their users thanks to Web Push Notifications on both desktop and mobile for applications built on B.O.S.

- - - -

Apps and components built on the NEAR B.O.S have always benefited from in-site notifications to keep their users informed about relevant updates. Until now, these notifications were only shown within near.org (and other compatible gateways), meaning that users had to visit the website to see them. Now, users can opt-in to receive push notifications directly on their computers and phones about important events in their favorite apps. This way, users can be notified in real time, even if they are not actively navigating near.org.

- - - -

Why are push notifications useful?

- - - -

Thanks to push notifications, users can receive timely updates and information about their account’s activities in real time and through multiple channels. The increase in awareness also benefits application developers by encouraging users to return to the app, thus significantly improving user engagement. This way, push notifications help to tackle one of the biggest problems for founders in Web3: re-engaging and retaining users. Nowadays, user retention rates in Web3 fall short of the industry standard for web apps, which stands at a 35% retention rate after 30 days. Thanks to web push notifications, developers on BOS now benefit from a powerful new tool to re-engage their user base.

- - - -

What will the notification experience look like on near.org?

- - - -

On near.org, users will be asked to opt-in to the new push notification system on their desktop and iOS/Android mobile browsers. (To enable browser push notifications on iOS, users need to update their device at least to iOS 16.4 and will also need to add the near.org website as an app icon to their home screen – see link.) If the user accepts, they will automatically start to receive notifications for baseline social activities on their account. Users will be able to view all notifications in the notification center, and set their notification preferences via the designated settings menu.

- - - -

For developers implementing components and apps, the new notification system is completely transparent. Apps that already leverage the in-site notification system will automatically benefit from web push notifications, meaning their users will also be notified on their desktop and mobile in real time.

- - - -

For gateway developers, Pagoda is releasing a comprehensive guide on how to add web push notifications using a simple web service.

- - - -

What are some examples of notifications I could add to my application?

- - - -

Notifications can apply to any event that developers want to inform users about. Some examples of how  developers have used these are:

- - - -
    -
  • Notify updates on the status of a bid placed on an NFT marketplace.
  • - - - -
  • Tell users that they gained a new follower.  
  • - - - -
  • Inform of a reply to a comment on a discussion.
  • - - - -
  • Any other on-chain action that is sent to the current notification system.
  • -
- - - -

How do I learn more and get started?

- - - -

The best place to start is by checking the official documentation. You can also check examples of apps sending notifications such as the LikeButton and FollowButton. If you have any questions or need to reach out to the Pagoda product team, remember that we have weekly office hours, and an active Telegram channel where members of the community can help you. 

- - - -

What’s coming next?

- - - -

Stay tuned! Pagoda plans to release additional notification features later this year, including support for more granular notification settings and safeguards to manage notification volume for users on near.org. They will also be exploring support for near.org notifications via email.

-

The post Announcing Web Push Notifications on B.O.S appeared first on NEAR Protocol.

-]]>
- - - -
- - Mantle Ecosystem Gateway Launches on the NEAR Blockchain Operating System (B.O.S) - /blog/mantle-ecosystem-gateway-launches-on-the-near-blockchain-operating-system-b-o-s/ - - - Wed, 20 Sep 2023 13:00:00 +0000 - - - - - - /?p=20896 - - An ecosystem gateway for Mantle, the layer-2 scaling solution built on Ethereum, has launched on the NEAR Blockchain Operating System …

-

The post Mantle Ecosystem Gateway Launches on the NEAR Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

-]]>
- An ecosystem gateway for Mantle, the layer-2 scaling solution built on Ethereum, has launched on the NEAR Blockchain Operating System (B.O.S) to offer a unified point of entry into the Mantle ecosystem. 

- - - -

Hosted by popular Mantle dApp FusionX, the gateway, built in collaboration with the NEAR community, streamlines the discovery of Mantle applications and helps aggregate components of top dApps including the Mantle Bridge, Agni, Ammos, iZiSwap, FusionX, Gamma, Lendle, and soon Pendle, in one place. 

- - - -

The gateway offers greater accessibility for developers and users, easier discoverability for the apps they build, and powerful composability. This was all made possible thanks to the B.O.S.

- - - -

“Mantle has seen some great traction since their launch and we’re very excited to have a Mantle gateway built on B.O.S. Ethereum and DeFi users interested in discovering new projects can now find lots of Mantle apps in one place, with bridging already solved so they can get started right away,” says Illia Polosukhin, co-founder of NEAR Protocol. “The Mantle gateway demonstrates the value of B.O.S gateways for other L2s and EVM projects looking to increase discoverability.” 

- - - -

Unlocking the Web3 ecosystem 

- - - -

Mantle’s development on NEAR is a testament to the protocol’s commitment to creating the foundations for the open web. “We are delighted to ally with NEAR in bringing leading Mantle dApps to a wider community through the Mantle Ecosystem Gateway on B.O.S,” says Arjun Kalsy, head of ecosystem of Mantle. “Through this effort, we look to provide even more support to our dev community, and allow for more cross-pollination in our respective Web3 communities.” 

- - - -

The Mantle gateway joins a growing list of projects that have partnered with the B.O.S to help unlock the full potential of Web3. A zkEVM B.O.S gateway for the Polygon ecosystem launched on NEAR to help increase accessibility and discoverability for developers, while also improving the user experience for end users exploring L2 ecosystems. 

- - - -

While the B.O.S is built on NEAR, it offers many benefits  to founders and builders from EVM projects and across the whole Web3 ecosystem. The Blockchain Operating System speeds up the process of building multi-chain experiences, empowering builders from any ecosystem––including EVM projects such as Ethereum layer 2s––to focus on creating great products for users rather than on managing infrastructure. 

- - - -

Developers can quickly build composable apps for the open web from thousands of flexible components, as well as seamlessly onboard users and increase discoverability across Web3 since every application utilising B.O.S is visible on a common interface. This collaboration brings new capabilities to developers and lets them build apps that can quickly reach more users.

-

The post Mantle Ecosystem Gateway Launches on the NEAR Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

-]]>
- - - -
- - ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  - /blog/icymi-scootering-through-web3-at-near-apacs-vietnam-showcase/ - - - Mon, 18 Sep 2023 16:32:42 +0000 - - - - - - /?p=20862 - - It was an incredible first-ever NEAR APAC, with the NEAR ecosystem scootering through Saigon over the last two days. Vietnam …

-

The post ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  appeared first on NEAR Protocol.

-]]>
- It was an incredible first-ever NEAR APAC, with the NEAR ecosystem scootering through Saigon over the last two days. Vietnam served as the perfect backdrop for NEAR’s inaugural showcase in Asia-Pacific, with community members, B.O.S. builders, and general Web3 enthusiasts coming together in one of the region’s most dynamic countries.

- - - -

The event was spearheaded by the NEAR Vietnam Hub with support from the NEAR Foundation, exemplifying strong commitment and collaboration between local and global ecosystem stakeholders.  ICYMI, here are some of the biggest sessions, announcements, and events from NEAR APAC 2023.

- - - -

ICYMI, here are some of the biggest sessions, announcements, and events from NEAR APAC 2023.

- - - -

Web3’s bright investment outlook in Asia-Pacific

- - - -
- - - -

One of the most encouraging and optimistic sessions was moderated by NEAR’s Head of Finance, David Norris, focusing on the current and future outlook of blockchain investment and development in the region. David was joined by Web3 venture veterans Riccardo Pagano from Outlier Ventures and Whiplus Wang of IVC crypto.

- - - -

The trio dove into the current state of blockchain investment in APAC, and how Web3 might just ascend to becoming one of the most invested sectors in the region from a venture and infrastructure perspective. Ricardo in particular emphasized that he’s seeing a shift in perception from investors, with Web3 going from a niche technology to its own broad-based sector.

- - - -

“Even though we’re technically in a bear market, investment in Web3 sub-sectors like gaming is still strong,” added Whiplus. “Games like Angry Birds and Fruit Ninja were instrumental in onboarding Web2 users onto the smartphone, for example. That’s why investment into blockchain game publishers is increasing — to find that killer game that onboards billions.”

- - - -
- - - -

Whiplus also likened successful blockchain startups to a bowl of Pho, with a blend of technical and business elements being integral to a delicious final dish. The panel also touched on technical nuances like ZK rollups and modular blockchains, emphasizing the need to invest in talent and innovation through initiatives like hackathons.

- - - -

The session encapsulated a forward-looking perspective on Web3’s trajectory. With the bar for founder participation evidently rising, the panel stressed the importance of education in the space. There was unanimous optimism about Southeast Asia’s digital future as potentially outpacing even established tech hubs like Korea and Japan.

- - - -

NEAR supports B.O.S. and blockchain builders in APAC

- - - -
- - - -

Tons of activity also took place in and around the Builder Stage, with the NEAR Foundation and local blockchain organizations teaming up to educate and assist developers, builders, and job seekers in advancing themselves into Web3. Cameron Dennis, CEO of Banyan, led a panel on the stage informing developers on how to upskill from Web2 to Web3.

- - - -

Local developer advocates from notable projects like the Graph and Khyber network also participated in sessions, workshops, and panels on the Builder Stage designed to upskill local blockchain professionals. There was something for everyone, from a job fair for Web3 newbies to a Greenhouse area connecting founders and projects to VCs for funding.

- - - -

Exploring everything from dApp architecture to tokenomics, the Builder Stage action was highlighted by an incredible Hackathon, with participants receiving guidance from experts like Oleg Fomenko, founder of SWEAT. On the final night of the festivities, NEAR co-founder Illia Polosukhin presented awards to the winners on stage in front of a packed main hall.

- - - -

Pagoda takes the main stage to talk user adoption and FastAuth

- - - -
- - - -

Alex Chiocchi, the CPO of Pagoda, showcased FastAuth during his session titled “Unlocking the Power of B.O.S: Product Update for Founders & Developers.” FastAuth aims to redefine the user experience for developers and founders, addressing the longstanding challenges of both onboarding and retaining new Web3 users.

- - - -

A primary takeaway was how FastAuth’s next release will minimize gas fees when onboarding, thus removing barriers for end-users. The introduction of multiparty compute (MPC) allows proofs from various organizations to be combined, simplifying processes like email recovery. Chiocchi emphasized the potential for users to migrate effortlessly from Web2 logins, hinting at a seamless integration between the two web generations.

- - - -

Discussing the nuances of retaining users in Web3, Chiocchi stressed that coin incentives alone aren’t sufficient. The “toothbrush test” was highlighted, illustrating that many apps don’t become daily necessities for users. Trust plays a pivotal role, especially with the rise of scams in the decentralized space. 

- - - -

Side events and after-parties storm the streets of Saigon

- - - -
- - - -

NEAR APAC fully embraced the “work hard, play hard” ethos of Vietnam and Asia-Pacific. Even during the event, there were LED dancers, Manga Cosplay, and several massive DJs and party breaks. Not to mention the NEAR APAC Opening Night party at the Intercontinental Hotel, where Illia officially welcomed attendees and kicked things off in an intimate setting.

- - - -

And in one of the coolest side events in recent NEAR memory, Dap Dap showcased its platform to B.O.S. enthusiasts at the My House meeting venue nestled in one of Saigon’s many cozily-lit alleyways. Dap Dap is the first commercial B.O.S. product and will act as a gateway to hundreds of chains and protocols for users from a single, user-friendly interface.

- - - -
- - - -

B.O.S Beats by DAO Records was the grand finale of NEAR APAC, offering a vibrant blend of hip-hop beats from prominent DJs on the decentralized record label. Held at Indika Saigon — and with pizza supplied by Pizza DAO — attendees enjoyed live performances, refreshments, and networking opportunities with the global and APAC NEAR communities. 

- - - -

NEAR APAC was an incredible Web3 Bánh Mì, layering an eclectic mix of speakers, insights, and events to create something completely unique. The NEAR Foundation would like to thank every cook in the kitchen, especially local partners like the NEAR Vietnam Hub who made sure that the first ever NEAR APAC had the perfect mix of sweet, sour, and spicy.

-

The post ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  appeared first on NEAR Protocol.

-]]>
- - - -
- - Case Study: Building on the NEAR Blockchain Operating System (BOS) - /blog/case-study-building-on-the-near-blockchain-operating-system-bos/ - - - Mon, 24 Jul 2023 17:00:00 +0000 - - - - /?p=20749 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: Building on the NEAR Blockchain Operating System (BOS) appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

- - - -

In the latest NEAR Foundation Case Study video, viewers take a deep dive into the Blockchain Operating System (BOS). We explore how the BOS, like a decentralized app store, isn’t controlled by any centralized entities. Other topics of conversation include BOS Gateways, the discoverability and composability of BOS apps and components, building on the BOS with Javascript, and integrations with Visual Studio Code and Github.

- - - -
- -
-

The post Case Study: Building on the NEAR Blockchain Operating System (BOS) appeared first on NEAR Protocol.

-]]>
- - - -
- - Get to Know the BOS: FastAuth for Easy, Web2 Style Onboarding and Account Recovery - /blog/get-to-know-the-bos-fastauth-for-easy-web2-style-onboarding-and-account-recovery/ - - - Tue, 30 May 2023 12:53:40 +0000 - - - - - /?p=20543 - - With the recent launch of the NEAR Blockchain Operating system (BOS) on near.org, came one of the first and most …

-

The post Get to Know the BOS: FastAuth for Easy, Web2 Style Onboarding and Account Recovery appeared first on NEAR Protocol.

-]]>
- With the recent launch of the NEAR Blockchain Operating system (BOS) on near.org, came one of the first and most powerful features — FastAuth. 

- - - -

With FastAuth, BOS users get a better than Web2-style onboarding experience, allowing them to easily create an account for any app on the BOS without a new password or the need to buy any crypto. And perhaps most powerfully for developers, FastAuth is both the easiest and fastest way to get people to try their new components and apps, yet another reason why developers will want to build on the BOS. This helps dramatically lower the threshold for adoption and opens the door to bringing billions of Web2 users into the Web3 space.

- - - -

To get up to speed on FastAuth, here is a FastAuth primer with some product demo videos. 

- - - -

Easy onboarding and email recovery with FastAuth

- - - -

FastAuth gives users the power to quickly and easily create a single account that can be used for any website or app that integrates with the Blockchain Operating System (BOS). This feature makes FastAuth an ideal tool for developers building components on NEAR. 

- - - -

With a Web2-style onboarding experience that puts the user experience front and center, users can create a free account using biometrics, phone prompts, and an email address. This means that users can quickly interact with an app but also easily re-authenticate to the app using the same or different devices. 

- - - -
- -
- - - -

Since most users are accustomed to centralized authentication methods like “Sign in with Google”, Web3 account management using seed phrases and wallets have, until now, created a significant barrier to entry for many people. By combining FastAuth with decentralized email recovery, users no longer need to remember seed phrases or install third party wallet applications. Users can recover their accounts through a “Single Sign-on” (SSO) process with the email they used at registration. 

- - - -

Account recovery is also decentralized and does not give custodial access to full access keys to any single custodian. It is accomplished through a process called “multi-party computation”. This finally paves a way for mass adoption with an easy, secure, and decentralized account recovery system.

- - - -
- -
- - - -


With FastAuth, one of the most challenging parts in onboarding users to Web3 no longer exists. Now, users can set up a BOS account quicker than creating a Gmail, Facebook, Tiktok, or Instagram account. And developers can deliver their Web3 components, apps, and experiences more seamlessly than ever. 

- - - -

No third-party applications required

- - - -

FastAuth also removes the need to download any third-party applications. Everything just works seamlessly right from the browser on your desktop or mobile device.

- - - -

By creating an easy, user-centric experience, FastAuth makes the open web accessible to everyone right from the get-go and opens the door to mainstream adoption. Anyone developing components on the BOS can leverage this user-friendly experience to quickly and intuitively get their apps in front of users. 

- - - -

Create an account without crypto

- - - -

BOS FastAuth has another great trick up its sleeve. Until now, getting started in  Web3 and interacting with apps meant acquiring crypto first. 

- - - -

With FastAuth, new users can get started right away without having to buy or be gifted crypto. This is a game changer for developers, enterprises, and end-users alike. Through FastAuth’s use of NEAR’s Meta Transactions and Zero Balance Accounts, users can register an account free of charge. Developers can also use this to their advantage as Meta Transactions paired with relayers, which allow them to sponsor initial interactions for new users without needing to purchase $NEAR. 

- - - -

This streamlined onboarding experience allows developers to significantly increase conversion rates for people trying their components and apps for the first time. FastAuth also expands an app and website’s audience by making it more accessible to mainstream users. 

- - - -

FastAuth creates an easy way for enterprises to integrate Web3 and crypto technology into their business. With just a few lines of code, they can onboard existing users into powerful new community and commerce experiences that are accessible, highly secure , and decentralized. 

- - - -

End users can also get started using Web3 apps and experiences in an easy, accessible way. Setting up a secure  fully user-owned  account now only takes seconds. 

- - - -

What’s next for FastAuth 

- - - -

While FastAuth is already enabling fast and simple onboarding of mainstream users as well as streamlining component-building for developers on the BOS, a number of other features and upgrades are already in the works: 

- - - -
    -
  • The ability to extend relayers and FastAuth to additional gateways beyond near.org
  • - - - -
  • Further MPC decentralization
  • - - - -
  • Multi-chain compatibility 
  • - - - -
  • Two-factor authentication
  • -
- - - -

Stay tuned to near.org for new FastAuth features and upgrades, as they are rolled out. 

-

The post Get to Know the BOS: FastAuth for Easy, Web2 Style Onboarding and Account Recovery appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR Blockchain Operating System is Now Live on Near.org - /blog/near-blockchain-operating-system-is-now-live-on-near-org/ - - - Tue, 25 Apr 2023 16:59:30 +0000 - - - - /?p=20422 - - Earlier this year, NEAR announced the Blockchain Operating System. An industry-first category, the BOS is a common layer for browsing …

-

The post NEAR Blockchain Operating System is Now Live on Near.org appeared first on NEAR Protocol.

-]]>
- Earlier this year, NEAR announced the Blockchain Operating System. An industry-first category, the BOS is a common layer for browsing and discovering open web experiences, compatible with any blockchain. 

- - - -

A real alternative to the Operating Systems of centralized platforms, the BOS is now live at near.org. As a blockchain operating system for an open web, the BOS is accessible to everyone, not just web3 natives. And it makes Web3 and Web2 easier than ever to access and navigate for users and developers alike. 

- - - -

With the BOS, you no longer have to choose between decentralization and discoverability. Devs and users get the best of both worlds, whether they are new to Web3 experiences and want to play around, or developers looking to build an open web. 

- - - -

Seamless Web2 style onboarding for Web3

- - - -

When entering Web3, users want an easy Web2-style onboarding experience. Until the BOS, this just wasn’t possible. 

- - - -

With FastAuth, BOS users get to experience a simple and seamless Web2 style onboarding. Users can get started quickly by creating an account for any app on the BOS — without the need for crypto. 

- - - -

By putting the user experience at the center, FastAuth creates a familiar style of onboarding experience, in which users can create a free account with biometrics, phone prompts, and an email address. Users can now quickly interact with an app without having to remember long seed phrases and other difficult passwords. 

- - - -

This will help dramatically move Web2 users into the Web3 space with ease. 

- - - -

Developers are empowered to start and build quickly

- - - -

The BOS isn’t just built for Web3 natives. It’s designed for any developer interested in open-source and decentralization. 

- - - -

To make Web3 app development fast and easy, the BOS offers a comprehensive set of tools and capabilities to get developers started quickly. These developer enablement tools and capabilities make it possible for developers to quickly build composable apps for the open web, as well as build complete projects using current workflows, seamlessly onboard users, get feedback from real users, and increase discoverability. 

- - - -

From Day 1, any developer can start building on the BOS, making Web3 a more accessible space for all. 

- - - -

Making Web3 search as intuitive as Web2

- - - -

Finding things in Web3 isn’t always easy. While decentralization is a core attraction to Web3, this very same benefit can make it hard to discover everything that Web3 has to offer. 

- - - -

The NEAR Blockchain Operating System fixes this problem with a comprehensive search experience. On the BOS, users can now quickly find all of the apps and components for building on Web3, as well as connect to people and communities. 

- - - -

BOS users can quickly discover apps, components, and reference documents with an integrated search bar, filtering, and sorting panels. Comprehensive search and discovery also benefits developers, entrepreneurs, and projects across the BOS by exposing their work to a large audience. 

- - - -

Add and maintain new app experiences with BOS gateways

- - - -

The BOS also features gateways — access points to Web3 apps that pull front-end code directly from the NEAR blockchain and render it for their users. 

- - - -

Gateways assume a variety of forms, from wallets and portfolio management tools to popular single-use applications — like, SWEAT — that want to add additional functionality. Gateways help with simple tasks, like adding swap functionality, all the way up to creating decentralized app stores, and much more. This functionality is available by simply adding a JS library, then choosing which app front-ends you want to include.

- - - -

Typically in Web3, developers spend a lot of time building and getting their apps discovered. During this process, users often need to switch between multiple platforms to discover apps and experiences. Gateways help to overcome this by making it possible to meet users where they already are, while giving them a broader range of apps and experiences. 

- - - -

Govern your Web3 experience with a content moderation framework 

- - - -

Traditional content moderation processes — seen most notably in Web2 social network apps— are centralized and often lack transparency, making them ill-equipped to meet the demands of content that is potentially offensive, risky, or illegal. With the growing influence of Web3 platforms the need for an innovative solution that addresses these challenges is more critical than ever. 

- - - -

The BOS features a scalable, open source content moderation system. With these BOS features, users can govern their own online experience. 

- - - -

The moderation framework leverages the power of the BOS to tackle the many challenges of managing User Generated Content (UGC) through community engagement and automation, providing a scalable, transparent solution to content review that is easy to use and legally compliant. 

- - - -

With a decentralized approach and community-driven governance and moderation, the BOS’s moderation framework is poised to redefine content moderation for Web3 platforms and contribute significantly to a healthier online environment for all stakeholders. 

- - - -

Build and discover apps on NEAR: the Blockchain Operating System for an Open Web

- - - -

Whether you’re a Web3 developer, founder, end user, or someone just looking to get into crypto, the NEAR Blockchain Operating System is your easy entry point into the Open Web. 

- - - -

Experiencing the BOS is as easy as visiting Near.org. Let’s build an open web!

-

The post NEAR Blockchain Operating System is Now Live on Near.org appeared first on NEAR Protocol.

-]]>
- - - -
- - Near at ETHDenver: the Blockchain Operating System, Near Day, and More - /blog/near-at-ethdenver-the-blockchain-operating-system-near-day-and-more/ - - - Wed, 08 Mar 2023 21:30:00 +0000 - - - - - /?p=20288 - - Missed Near Day and ETHDenver 2023? We’ve got you covered with content from Near talks and panels. There were also …

-

The post Near at ETHDenver: the Blockchain Operating System, Near Day, and More appeared first on NEAR Protocol.

-]]>
- Missed Near Day and ETHDenver 2023? We’ve got you covered with content from Near talks and panels. There were also a number of awesome announcements, including the big news out of ETHDenver — the Blockchain Operating System.

- - - -

Let’s take a look at all that was Near at ETHDenver. 

- - - -

Near Day talks

- - - -
Near co-founder and Pagoda CEO Illia Polosukhin unveiling the Blockchain Operating System.
- - - -

Near Day, the 1-day mini summit on all things Near, was jam-packed with the latest technological and protocol updates. Chief among them was the announcement of the Blockchain Operating System.

- - - -

Things got started with a Regenerative Finance (ReFI) talk from Open Forest Protocol’s Frederic Fournier and Flow Carbon’s Phil Fogel. Later in the morning programme, OnMachina’s Polina Aladina and Mark Collier talked about building decentralized storage on Near. As a vital Near ecosystem project, it was great for the ETHDenver crowd to hear from OnMachina on Web3 storage. 

- - - -
OnMachina’s Mark Collier talking decentralized storage on Near.
- - - -

Keypom, which also recently launched on Near, got some much needed visibility at Near Day. In “Instant Crypto Experiences with Keypom”,  Ben Kurrek and Matt Lockyer took the audience on a tour of their Web3 onboarding solution, in which users are given a special type of access key that can be used to experience a crypto application and later be turned into a wallet. (Read more about Keypom here.)

- - - -

The morning programme also featured talks from Calimero Network’s Sandi Fatic on privacy and scaling with private sharding; Aurora Labs’ Alex Shevchenko on Containers, Aurora’s cloud computing solution for blockchains; Sweat Economy’s Oleg Fomenko on how to effectively onboard people from Web2 to Web3; and Near co-founder Alex Skidanov on how the future of AI will be decentralized. 

- - - -

In the afternoon, there were a range of talks, starting with Pagoda’s Max Zavershynskyi presentation on creating “high velocity developer communities” via Near DevGov DAO. But the big news on Near Day was the Blockchain Operating System talk from Near co-founder Illia Polosukhin. After Illia primed the audience, Pagoda’s Chief Product Officer Alex Chiocchi elaborated on how Blockchain Operating System will help in onboarding millions of users to Near, while Pagoda’s Bowen Wang detailed the protocol innovations powering the Blockchain Operating System. 

- - - -
Marieke Flament on the ETHDenver main stage for the ‘Crypto Winter, Bullish Builders’ panel.
- - - -

Near Foundation CEO Marieke Flament and Dragonfly Capital’s Haseeb Qureshi also talked about why the future remains bright for Web3 even during the crypto winter. There were also talks from Pagoda’s Pavel Kudinov on the Near data stack and Josh Ford on a fully decentralized Javascript. 

- - - -

Other topics included the building of infrastructure to onboard 1 billion users on Near, NFT infrastructure, a “DeFi survival kit” for the bear market, and the regulatory landscape in Web3.

- - - -

Near speakers at ETHDenver 

- - - -
Pagoda’s Bowen Wang discussing Near’s vision for Layer 1 infrastructure.
- - - -

A number of speakers represented the Near ecosystem at ETHDenver talks. Topics included the Blockchain Operating System, sustainability, UX design, and more. 

- - - -

Aurora Labs’ Alex Shevchenko kicked things off with a presentation on Web3 infrastructure and scalability — specifically, how not to hack everything up in creating bridges. Alex also gave another talk on next generation user experience. Near Foundation CEO Marieke Flament delivered a talk on the three pillars of Web3 sustainability, while Proximity Labs’ Kendall Cole explored how Web3 can win in the DeFi battle against app stores. 

- - - -
Aurora Labs CEO Alex Shevchenko delivering a talk at ETHDenver.
- - - -

In separate talks, Illia Polosukhin and Pagoda’s Bowen Wang spoke to the ETHDenver audience about the Blockchain Operating System. While Bowen mapped out Near’s vision for Layer 1 Infrastructure, Illia talked about reinventing Web3 development with decentralized frontends and social networking. 

- - - -

Near Announcements

- - - -

While the Near is the Blockchain Operating System announcement was the talk of ETHDenver, there were plenty of other announcements. Find the full run-down of Near ecosystem announcements here.

- - - -

In other news, the Near ecosystem had two wins at ETHVC’s Startup Demo Day during ETHDenver — Niche Protocol, a Web3 social media platform, and Kino, a film financing platform.  

-

The post Near at ETHDenver: the Blockchain Operating System, Near Day, and More appeared first on NEAR Protocol.

-]]>
- - - -
- - Near Announces the Blockchain Operating System - /blog/near-announces-the-blockchain-operating-system/ - - - Thu, 02 Mar 2023 20:26:22 +0000 - - - - - /?p=20243 - - Near announced today that it is becoming the Blockchain Operating System (BOS). The BOS is an industry-first category: a common …

-

The post Near Announces the Blockchain Operating System appeared first on NEAR Protocol.

-]]>
- Near announced today that it is becoming the Blockchain Operating System (BOS). The BOS is an industry-first category: a common layer for browsing and discovering open web experiences, compatible with any blockchain. 

- - - -

The Blockchain Operating System will make Near the entry point for the Open Web, for users and developers alike. And it will make both Web3 and Web2 easier than ever to access and navigate. 

- - - -

Becoming more than just a blockchain 

- - - -
- - - -

Since inception, Near’s mission has been to onboard 1 billion users to the Open Web. The first step in the journey was to focus on building a best in class L1 blockchain that was easy to build on and easy to use. 

- - - -

Near was designed to be simple, with a flexible account model and human readable accounts — any name a user wants instead of a string of letters and numbers. And with Near’s Nightshade sharding approach, the Near blockchain was designed to be infinitely scalable and secure. At the same time, Near concentrated on building out tooling to support builders developing on the protocol, including the JavaScript SDK that now gives 15 million developers access to building on Near. 

- - - -

This has created and sustained a thriving Near ecosystem with more than 23 million accounts and over a thousand project building, but these were only the first steps toward delivering the vision of Web3 to a mainstream audience.

- - - -

Now, Near is building up the Web3 stack to integrate experiences from across the open web and streamline the discovery and onboarding experience for users and developers alike. 

- - - -

Enter Near: the Blockchain Operating System 

- - - -
- - - -

Today, Near is launching near.org — a composable frontend for Web3. It will allow end users to easily and frictionlessly discover all of Web3’s possibilities in one seamless experience. It will also empower developers to create and code interfaces in a single environment with the ability to fork a host of components to build apps faster, and more efficiently than ever before.

- - - -

Anyone in the Open Web ecosystem can create their own frontends (i.e., their own versions of near.org), compatible with the blockchain of their choice. This means that builders from any ecosystem can create components in just a few lines of code, and take advantage of fast onboarding to help make new and custom Web3 experiences.

- - - -

This is an industry first. With the addition of composable frontends to the tech stack, Near now becomes the Blockchain Operating System, allowing seamless, one-time onboarding and removing friction points like making accounts for every experience, while supercharging development from a collection of over 1,800 components. 

- - - -

Near.org is the first step in Near’s Blockchain Operating System journey. It’s the Alpha version, where builders can see the frontend come to life. 

- - - -

Try it out at near.org to experience the world’s first Blockchain Operating System — a revolutionary moment in Web3. If you’re a developer, see how easy it is to fork components and create new experiences. If you’re an end user, see how easy it is to explore Web3 experiences, social, and news all in one place. 

- - - -

The Blockchain Operating System is Near and it’s here. #NearistheBOS

-

The post Near Announces the Blockchain Operating System appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/blockchain-operating-system/index.html b/public/blog/tag/blockchain-operating-system/index.html deleted file mode 100644 index 8f7fd3175..000000000 --- a/public/blog/tag/blockchain-operating-system/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Blockchain Operating System Archives – NEAR Protocol
<- Back to all posts

Tag: Blockchain Operating System

8 posts
\ No newline at end of file diff --git a/public/blog/tag/blockchain/feed/index.xml b/public/blog/tag/blockchain/feed/index.xml deleted file mode 100644 index 0615a0e53..000000000 --- a/public/blog/tag/blockchain/feed/index.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - Blockchain Archives – NEAR Protocol - - /blog/tag/blockchain/ - - Wed, 09 Aug 2023 16:24:04 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Blockchain Archives – NEAR Protocol - /blog/tag/blockchain/ - 32 - 32 - - - With MeshFlux, Multimedia Art and Gaming Explore Blockchain Technology  - /blog/with-meshflux-multimedia-art-and-gaming-explore-blockchain-technology/ - - - Thu, 10 Aug 2023 12:00:00 +0000 - - - - /?p=20790 - - The worlds of art and blockchain are no strangers. On NEAR, art can be found on apps like Mintbase, Paras, …

-

The post With MeshFlux, Multimedia Art and Gaming Explore Blockchain Technology  appeared first on NEAR Protocol.

-]]>
- The worlds of art and blockchain are no strangers. On NEAR, art can be found on apps like Mintbase, Paras, and many other ecosystem projects.  With the MeshFlux project, however, Turkish artist and designer Ufuk Barış Mutlu shows a clear path to how physical artworks can be deeply integrated with the blockchain. 

- - - -

With funding from the NEAR ecosystem, Mutlu created MeshFlux — a series of interactive sculptures that highlight one of the fundamental aspects of blockchain technology — the distinction between centralized, decentralized, and distributed networks. To achieve this goal, Mutlu created a series of three interactive sculptures that deliver the experience of these systems’ characteristics through simple gamification.

- - - -

Mutlu recently exhibited MeshFlux at a couple of events. MeshFlux appeared at virtual art platform’s Monoco.io’s physical gallery in Istanbul from May 18 to June 17, 2023, then at Sónar+D Barcelona — the music festival’s digital trade show, from June 15 to June 17, 2023.

- - - -

Making blockchain art accessible to the masses

- - - -

Although crypto natives and blockchain curious might understand these concepts, Mutlu wanted to make his physical artworks that explore the blockchain comprehensible to the average person. To that end, he created physical artwork that explains blockchain by visualizing and gamifying it.

- - - -

“The project’s output consists of three interactive sculptures machined out of aluminum, which are sized similarly to an iPad,” said Mutlu. “The dynamics of the interaction are based on the conventional maze game, where the paths of the mazes represent three different network systems: centralized, decentralized, and distributed networks.”

- - - -
- -
- - - -

All three maze paths are mapped according to Paul Baran’s original work published in 1964. Steel bearing balls inside the sculptures represent data packets in the network. The usage of multiple bearing balls distinguishes this sculpture from a conventional maze game and visualizes a multi-user network schematic.

- - - -

“I narrowed down my approach to the fundamental principles of blockchain, specifically network models,” Mutlu explained. “To achieve this, I created three maze games using network models as the foundation. These maze games are often associated with children and were constructed using premium and industrial materials to strike a balance between play and serious tech.”

- - - -

Using computers to industrially mill materials — aluminum, in this case — requires designing a digital 3D model, programming the milling machine (referred to as CAM), securing the material into the CNC machine, and using automated cutting tools (CNC) to precisely shape the aluminum block according to the design. 

- - - -

“The process allows for accurate and efficient production of objects with complex shapes” explains Mutlu.

- - - -

MeshFlux: NFT meets 3D-printed sculpture

- - - -

Since his focus lies in physical objects, Mutlu wanted to offer the same sculpture as a 3D-printable file functioning as an NFT. His plan was to leverage all the advantages of blockchain technology through the creation of an NFT, while ensuring its potential to be transformed into a physical and tactile artwork. This would, he figured, satisfy the collector’s desire for touch and possession.

- - - -

With part of his NEAR ecosystem grant, Mutlu shot a documentary that explores the process of creating MeshFlux’s physical and digital (blockchain) aspects. NFT versions of MeshFlux are currently available, and Mutlu is working on integrating them with NEAR. 

- - - -

Follow Ufuk Barış Mutlu on Instagram. 

-

The post With MeshFlux, Multimedia Art and Gaming Explore Blockchain Technology  appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/blockchain/index.html b/public/blog/tag/blockchain/index.html deleted file mode 100644 index 266f3e083..000000000 --- a/public/blog/tag/blockchain/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Blockchain Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/bora/feed/index.xml b/public/blog/tag/bora/feed/index.xml deleted file mode 100644 index fa8872859..000000000 --- a/public/blog/tag/bora/feed/index.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - BORA Archives – NEAR Protocol - - /blog/tag/bora/ - - Mon, 06 Mar 2023 18:50:11 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - BORA Archives – NEAR Protocol - /blog/tag/bora/ - 32 - 32 - - - Near Partners with BORA, Web3 GameFi Platform of Kakao Games - /blog/near-partners-with-bora-one-of-koreas-largest-gamefi-platforms/ - - - Mon, 06 Mar 2023 14:00:00 +0000 - - - - - - - /?p=20253 - - Near is excited to announce a new strategic partnership with BORA, a Web3  gaming subsidiary of METABORA. Near and BORA …

-

The post Near Partners with BORA, Web3 GameFi Platform of Kakao Games appeared first on NEAR Protocol.

-]]>
- Near is excited to announce a new strategic partnership with BORA, a Web3  gaming subsidiary of METABORA. Near and BORA will support each other in spreading local brand awareness, invest in research and collaboration on cross-chain, host events, and generate Web3 opportunities in Korea. 

- - - -

An affiliate of Kakao Games and its parent company BORANETWORK, BORA is focused on game development and blockchain-based gaming ecosystems. Its mobile gaming titles include Friends Popcorn, Friends Town, and Friends Shot

- - - -

“We are thrilled to be working with Near and welcome their expertise, knowledge and network as we aim to transform the world of Web3 gaming,” said Vincent Lim, a CBO of BORA. “Together with Near we will not only explore cross-promotion opportunities, but also seek future collaborations on IP-based game development that will lead to mass adoption and give us the competitive edge we need to position ourselves as leading players in the web3 gaming space.”

- - - -

Since the launch of Near’s Korean Hub in November of 2022, BORA has been steadily building up awareness throughout South Korea, while focusing on Web3  innovation, business development, education, and talent. The hub is led by entrepreneurs Scott Lee and Ben Kang — both influential figures within South Korea’s growing blockchain community.

- - - -

“One of the big ambitions of the hub  is  to tap into the country’s active gaming community, and to  bring  amazing projects and creators to the Near ecosystem.” said Robbie Lim, GM, Partners & International at Near. “ The partnership with BORA is our first major win – and a big step forward for NEAR as it accelerates its ambition to become the go to layer 1 for the Web3 gaming community.” 

-

The post Near Partners with BORA, Web3 GameFi Platform of Kakao Games appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/bora/index.html b/public/blog/tag/bora/index.html deleted file mode 100644 index b78f9800f..000000000 --- a/public/blog/tag/bora/index.html +++ /dev/null @@ -1,2 +0,0 @@ -BORA Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/bos/feed/index.xml b/public/blog/tag/bos/feed/index.xml deleted file mode 100644 index d0e00e253..000000000 --- a/public/blog/tag/bos/feed/index.xml +++ /dev/null @@ -1,1136 +0,0 @@ - - - - BOS Archives – NEAR Protocol - - /blog/tag/bos/ - - Tue, 12 Sep 2023 07:21:32 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - BOS Archives – NEAR Protocol - /blog/tag/bos/ - 32 - 32 - - - NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 - /blog/near-apac-day-one-scaling-local-adoption-regional-regulation-and-ai-in-focus/ - - - Sat, 09 Sep 2023 12:14:36 +0000 - - - - - - - - - /?p=20835 - - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. …

-

The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

-]]>
- After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. Held in conjunction with the NEAR Vietnam community and NEAR Foundation, NEAR APAC is showcasing the vibrant crypto and Web3 community across the region as well as the potential of the B.O.S. and Open Web both locally and globally.

- - - -

The day was charged with excitement, drawing over 8,000 attendees from various corners of the APAC region and beyond. With Web3 thought leaders, innovators, and enthusiasts converging in Vietnam, Day One of NEAR APAC kicked off with a slew of riveting discussions, industry insights, and speculations on the future of the Open Web with a focus on APAC.

- - - -

From discussions around regional growth and investment potential to how AI and blockchain will transform the future of work, here’s everything that went down at an incredible start to NEAR APAC.

- - - -

Setting the stage for NEAR APAC with Vietnam in focus

- - - -

The event kicked off with a focus on southeast Asia, with NEAR’s Vietnam country director Riley Tran welcoming attendees and providing context as to Asia’s critical role in the overarching development and expansion of Web3. Tran was followed by two NEAR luminaries, CEO Marieke Flament and co-founder Illia Polosukhin.

- - - -

“Asia’s young demographics and rapid digital growth, especially in Vietnam, position it as a leader in crypto and blockchain growth,” Riley explained. “With over 100 million new internet users in just three years, Asia’s momentum in Web3 is accelerating”

- - - -

Marieke added that the overall NEAR ecosystem remains strong with over 29M active wallets and 650K daily active accounts. She added that a collaborative approach to building tomorrow’s Open Web is critical for tackling significant societal and digital challenges.

“Today’s Web 2.0 is closed and siloed, with the prevailing digital culture being a toxic dialectic,” Marieke expressed. “But the value loop of an Open Web holds immense promise. We’re already seeing how projects like KaiKai, SWEAT, and PlayEmber can move the needle in the right direction.”

- - - -

Echoing Mariek’s sentiment, Illia emphasized that it’s not necessarily about championing a specific blockchain, but about creating a common layer and interface for the Open Web. This is precisely what the Blockchain Operating System (B.O.S.) is in the process of achieving.

- - - -

“Looking forward, tech isn’t the only focus,” said Illia. “It’s about blending scalable solutions with user-centric experiences, with the B.O.S. becoming the essential entry point into Web3 for both users and developers.”

- - - -

Asia’s role in mainstream adoption and regulatory hurdles

- - - -

The push for mainstream blockchain adoption in APAC was also in focus on Day One, with NEAR Foundation CMO Jack Collier leading a panel discussion on current adoption challenges and how APAC can potentially lead the way in overcoming them.

- - - -

“I’m extremely bullish on gaming as a key part of mass adoption,” opined Don Pham, Google Cloud’s regional Web3 specialist. “Vietnam is the birthplace of Axie Infinity, which is just the beginning of blockchain gaming’s potential. Use cases like loyalty, gaming, and music NFTs combined with better UX will likely be the path forward.”

- - - -

The discussion dove deeper into the importance of user experience in the adoption of blockchain. Marieke reiterated that while technology forms the backbone, the real test will be simplifying the user journey, which can significantly hasten adoption across the APAC region as well as globally.

- - - -

Regulation was also in focus with a panel about blockchain policies and APAC’s vision for governments and associations. Mary Beth Buchanan, a board member of the Cardano Foundation, drove home the need for regulatory clarity while discussing regional frameworks in countries like Hong Kong.

- - - -

“The biggest challenge is not necessarily regulation, but lack of clarity,” observed Buchanan. “If regulations are unclear that will cause investors not to want to invest in the space. Builders become hesitant to build and users aren’t going to know what the rules are. Regulators need to recognize that clarity is what everyone wants.”

- - - -

Spotlight on Artificial Intelligence during the afternoon sessions

- - - -

Day One of NEAR APAC dedicated a significant chunk of its schedule to exploring the intricate interplay between AI and blockchain, particularly their role in APAC’s future technology and Web3 landscape. Illia took the stage just after the lunch break to discuss the Convergence of AI and Web3, diving deep into AI-empowered DAO and the future of AI-assisted work.

- - - -

“While technologies like ChatGPT have found product market fit, much of AI is still siloed and doesn’t empower open source communities and projects,” Illia posited. “Web3 can operate in the middle, with AI models incorporating all participants and data sources. DAOs, for example, can be co-piloted by AI to achieve goals and KPIs faster and more efficiently.”

- - - -

In the following panel discussion entitled “The Roles of Blockchains in an AI World,” Illia was joined by several AI and blockchain experts from the APAC region. One of the more distinguished panel members was Dr. Nguyen An Khuong, a lecturer and blockchain researcher from Ho Chi Minh University of Technology, who provided an academic perspective. 

- - - -

“We have a lot of research endeavors in Vietnam around ensuring AI’s ethical applications using blockchain,” commented Dr. Nguyen. “We’re looking at how transparency and accountability in AI decisions can be drastically improved with blockchain technology. Combining a neutral AI with a blockchain’s public ledger could enhance the ecosystem and foster wider adoption.”

- - - -

Illia drove home that the potential “Skynet” scenario of AI taking over the world is mostly a projection of what humans might do if they were given supercomputing powers. In reality, developments like the B.O.S. and NEAR Tasks will aid humans in success and productivity, with AI agents acting as middlemen for assistance, sourcing, and even creativity.

- - - -

Day One of the first-ever NEAR APAC was a rousing success, with these highlights just being the tip of the iceberg. The crowd was treated to bánh mì’s and Manga cosplay during lunch, B.O.S. building and gaming workshops on the Builder Stage, and an awe-inspiring NFT gallery from APAC creators.

- - - -

As the sun sets in Saigon, the NEAR Foundation couldn’t be more appreciative of the Vietnamese crypto community. The momentum rolls on tomorrow with Day Two, so stay tuned for more updates and insights around emerging APAC trends in Web3, how blockchain gaming is taking off in Asia-Pacific, and local DeFi developments. 

- - - -

If Day One was any indication, the NEAR community’s growth, presence, and development in APAC will only continue accelerating through 2023 and beyond!

-

The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

-]]>
- - - -
- - Case Study: Flipside Crypto on Building an Analytics Platform on the BOS - /blog/case-study-flipside-crypto-on-building-an-analytics-platform-on-the-bos/ - - - Thu, 03 Aug 2023 02:30:00 +0000 - - - - /?p=20764 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: Flipside Crypto on Building an Analytics Platform on the BOS appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

- - - -

In the latest NEAR Foundation Case Study video, we hear Flipside Crypto’s Evan “Captain” Owens and GJ Flannery. Not only is Flipside a team building innovative on-chain data and analytics solutions on NEAR, but they were one of the first ecosystem projects to build on the Blockchain Operating System (BOS). 

- - - -

In this case study video, GJ Flannery (Growth & Community) and Captain Owens (Strategic Partnerships) talk about the platform’s ecosystem of analytics and developers building widgets on the BOS with Flipside’s on-chain data. If you’re a founder or developer looking to hear directly from developers who’ve built on the BOS, then this Flipside Case Study video is not to be missed. 

- - - -

- - - -
- -
-

The post Case Study: Flipside Crypto on Building an Analytics Platform on the BOS appeared first on NEAR Protocol.

-]]>
- - - -
- - Case Study: Building on the NEAR Blockchain Operating System (BOS) - /blog/case-study-building-on-the-near-blockchain-operating-system-bos/ - - - Mon, 24 Jul 2023 17:00:00 +0000 - - - - /?p=20749 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: Building on the NEAR Blockchain Operating System (BOS) appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

- - - -

In the latest NEAR Foundation Case Study video, viewers take a deep dive into the Blockchain Operating System (BOS). We explore how the BOS, like a decentralized app store, isn’t controlled by any centralized entities. Other topics of conversation include BOS Gateways, the discoverability and composability of BOS apps and components, building on the BOS with Javascript, and integrations with Visual Studio Code and Github.

- - - -
- -
-

The post Case Study: Building on the NEAR Blockchain Operating System (BOS) appeared first on NEAR Protocol.

-]]>
- - - -
- - Vistara Lands in the NEAR Ecosystem for Seamless Base Layer Roll-up Deployment - /blog/vistara-lands-in-the-near-ecosystem-for-seamless-base-layer-roll-up-deployment/ - - - Fri, 07 Jul 2023 14:00:00 +0000 - - - - - /?p=20704 - - NEAR is welcoming Vistara, the groundbreaking rollup deployment framework, into the fold. Vistara is set to seamlessly integrate with the …

-

The post Vistara Lands in the NEAR Ecosystem for Seamless Base Layer Roll-up Deployment appeared first on NEAR Protocol.

-]]>
- NEAR is welcoming Vistara, the groundbreaking rollup deployment framework, into the fold. Vistara is set to seamlessly integrate with the BOS for the end-to-end, multi-chain deployment of rollups. This alliance will accelerate the pace of blockchain innovation, making rollup deployment faster, more efficient, and accessible across multiple chains for all developers.

- - - -

Vistara stands out as a game-changing one-click rollup deployment framework that simplifies creating application-specific rollups across multiple blockchains. Streamlining the intricate rollup deployment process into a straightforward, single-click operation, Vistara will build a front-end on the BOS to make user-friendly, multi-chain rollup deployment a reality.

- - - -

Simplifying multi-chain roll-ups with Vistara on the BOS 

- - - -

Existing frameworks such as Cosmos SDK and Substrate have sought to streamline certain software components in decentralized applications but often leave developers tied to one ecosystem that they must completely understand and master. Vistara will now present a unique solution by combining the BOS with backend chains like Ethereum and Celestia.

- - - -

Vistara’s emphasis on simplifying rollup component creation aligns with NEAR’s vision of user-centric decentralization and a serverless Web3. With this new BOS front-end integration, developers in the NEAR ecosystem and beyond can now build and deploy rollups in one convenient location.

- - - -

The result will be a user-friendly design that makes the deployment of a rollup as simple as selecting an option from a dropdown menu. The integration will also encourage a wider range of developers to build with rollups on the BOS with any chain, leading to a more diverse pool of innovations and robust growth.

- - - -

Vistara’s integration not only simplifies the process but also expands the scope for innovation. It demystifies rollup creation, making it accessible to a broader range of developers. This inclusivity fuels a more diverse pool of applications, fostering growth and vibrancy within the NEAR ecosystem.

- - - -

Vistara and BOS breaking base layer building barriers

- - - -

Developing decentralized applications on base layers can be a complex process. Coordination of node operators, high costs, and extended development times are among the major challenges. However, Vistara is designed to confront these issues directly, streamlining the process and fostering efficiency.

- - - -

Rollups — technologies that bundle or ‘roll up’ side-chain transactions into a single transaction — provide an effective solution. They help developers bypass the difficulties associated with building decentralized networks. Vistara leverages this rollup technology, pushing the NEAR ecosystem towards application-specific rollups. 

- - - -

The solution effectively untangles the complexities tied to base layer dependencies, forging a development environment on the BOS that stretches beyond traditional base layer confines. With Vistara, multi-chain developers can now bring their applications to life more swiftly and efficiently than ever before.

- - - -

To sum up, Vistara’s user-friendly, multi-chain rollup deployment capabilities on the BOS will have a huge impact on the NEAR ecosystem and beyond. The integration will take much of the complexity out of rollup deployment for anyone, helping Web3 creators, builders, and developers bring their applications to life faster than ever.

-

The post Vistara Lands in the NEAR Ecosystem for Seamless Base Layer Roll-up Deployment appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR at Collision: Start Your BOS Journey and Expand into the Open Web - /blog/near-at-collision-start-your-bos-journey-and-expand-into-the-open-web/ - - - Wed, 28 Jun 2023 00:00:00 +0000 - - - - - /?p=20672 - - Collision is here. Today, June 26th through the 29th in Toronto, Ontario, NEAR experts will be on hand at Collision …

-

The post NEAR at Collision: Start Your BOS Journey and Expand into the Open Web appeared first on NEAR Protocol.

-]]>
- Collision is here. Today, June 26th through the 29th in Toronto, Ontario, NEAR experts will be on hand at Collision to showcase how brands and companies can make a move into the Open Web with NEAR’s Blockchain Operating System (BOS). The BOS redefines the Web2-to-Web3 experience. Now anyone can effortlessly create and distribute decentralized applications, using any blockchain — all in one browser.  

- - - -

Don’t miss NEAR Horizon, NEAR Foundation’s new Web3 startup support platform, which will also be at Collision. If you’re a founder or developer, then you will definitely want to meet with the Horizon team to get started on the Web3 funding and building journey.  

- - - -

Here is what to expect from NEAR at Collision 2023

- - - -

NEAR Speaker Sessions you won’t want to miss

- - - -

Tuesday, Jun 27, 12:00 – 12:45 PM

- - - -

Location: Beanfield Centre, Masterclass 1

- - - -

Masterclass: “The Fastest Way to Add Web3 to Your App”

- - - -

NEAR is transforming Web3 for developers, enterprises, and users alike with the Blockchain Operating System (BOS) – a common layer for browsing and discovering open web experiences compatible with any blockchain. NEAR founder Illia Polosukhin shows how the fastest onboarding in Web3 combined with decentralized frontends and embedded social features can help Web2 brands and Web3 projects deliver new & easy experiences and grow their communities.

- - - -

Speaker: Illia Polosukhin, NEAR Protocol, Co-founder

- - - -

Tuesday, Jun 27, 2:10 – 2:35 PM

- - - -

Location: Enercare Centre, MoneyConf

- - - -

Fireside Chat: “At the intersection of AI and Web3

- - - -

Speakers:

- - - -
    -
  • lllia Polosukhin, Near Protocol, Co-founder
  • - - - -
  • Elad Gil, Investor
  • -
- - - -

Moderator: Lucinda Shen, Axios, Fintech Reporter

- - - -

Wednesday, Jun 28, 01:30 – 02:15 PM

- - - -

Location: Beanfield Centre, Masterclass 4

- - - -

Masterclass: “How to Decentralize Any Frontend Using BOS”

- - - -

Learn how to store your frontend codebase entirely on-chain and make it more accessible to users with NEAR’s Blockchain Operating System (BOS).

- - - -

Speaker: Miao Jiang, Head of Product, Proximity Labs

- - - -

Wednesday, Jun 28, 02:30 – 03:15 PM

- - - -

Location: Beanfield Centre, Masterclass 4
Panel: “Charting the Course for a Thriving Web3 Ecosystem”

- - - -

Delve into the current state of web3 investing, identify the crucial elements for building a thriving web3 ecosystem, and explore innovative strategies for scaling startup support platforms.

- - - -

Speakers:

- - - -
    -
  • Joyce Yang, Founder, Global Coin Research
  • - - - -
  • Steven Chien, Founder, Press Start Capital
  • - - - -
  • Paul Hsu, Co-founder, Decasonic
  • - - - -
  • Moderator: Laura Cunningham, General Manager, NEAR Foundation
  • -
- - - -

Thursday, Jun 29, 12:23 – 12:27 PM

- - - -

Location: Enercare Centre, Growth Summit

- - - -

Keynote: “Solving the Blockchain Enterprise Dilemma”

- - - -

Speaker: Sandi Fatic, Co-founder, CEO, Calimero Network

- - - -

Events from the NEAR Community

- - - -

June 27, 6-9 PM – NEAR Horizon Pitch & Networking | Collision 2023

- - - -

The NEAR Horizon team is partnering with VCs and Funding Teams from around the world who are looking to back exceptional entrepreneurs for the long term to build the future of Web3.

- - - -

June 28, 10 AM-8 PM – Web3 Day (& Night) | Collision Conference Toronto

- - - -

An invite-only event for the Web3 community & Web3 curious during the Collision conference in Toronto. Panels, speakers, networking, art, music, food & drinks, pitch opportunities, and more.

- - - -

June 29, 6-9 PM – NEAR Toronto Launch Party
An exhilarating event that marks the launch of the NEAR Toronto Regional Community and concludes the three-day Collision Conference.

- - - -

Stay tuned to Near.org/collision for the latest event updates. 

-

The post NEAR at Collision: Start Your BOS Journey and Expand into the Open Web appeared first on NEAR Protocol.

-]]>
- - - -
- - Case Study: Pagoda Chief Product Officer Alex Chiocchi on the BOS - /blog/case-study-pagoda-chief-product-officer-alex-chiocchi-on-the-bos/ - - - Wed, 31 May 2023 17:04:07 +0000 - - - - /?p=20551 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: Pagoda Chief Product Officer Alex Chiocchi on the BOS appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms.

- - - -

To showcase some of the innovative products launching on NEAR, the Case Studies content vertical is making a return. With its new multimedia makeover, Case Studies will demonstrate how these projects are leveraging the power of NEAR’s layer 1 protocol and the Blockchain Operating System (BOS) to distribute their apps and onboard the masses into the open web. 

- - - -

The new NEAR Case Studies series kicks off with a video featuring Pagoda’s Chief Product Officer Alex Chiocchi. For much of the last year Alex has been deeply embedded in the development and launch of the BOS — an OS for an Open Web. 

- - - -

In the BOS Case Study video, Alex explains how the BOS takes advantage of the NEAR Protocol’s scaling architecture, while allowing builders to code in languages they already know, like Javascript. As you’ll learn from Alex, the BOS makes it easy to use the tools you already know to build apps that engage users, while fostering an open web free from centralized platforms. 

- - - -

Stay tuned for more Case Study videos on NEAR, the Blockchain Operating System for an open web.

- - - -
- -
-

The post Case Study: Pagoda Chief Product Officer Alex Chiocchi on the BOS appeared first on NEAR Protocol.

-]]>
- - - -
- - Get to Know the BOS: FastAuth for Easy, Web2 Style Onboarding and Account Recovery - /blog/get-to-know-the-bos-fastauth-for-easy-web2-style-onboarding-and-account-recovery/ - - - Tue, 30 May 2023 12:53:40 +0000 - - - - - /?p=20543 - - With the recent launch of the NEAR Blockchain Operating system (BOS) on near.org, came one of the first and most …

-

The post Get to Know the BOS: FastAuth for Easy, Web2 Style Onboarding and Account Recovery appeared first on NEAR Protocol.

-]]>
- With the recent launch of the NEAR Blockchain Operating system (BOS) on near.org, came one of the first and most powerful features — FastAuth. 

- - - -

With FastAuth, BOS users get a better than Web2-style onboarding experience, allowing them to easily create an account for any app on the BOS without a new password or the need to buy any crypto. And perhaps most powerfully for developers, FastAuth is both the easiest and fastest way to get people to try their new components and apps, yet another reason why developers will want to build on the BOS. This helps dramatically lower the threshold for adoption and opens the door to bringing billions of Web2 users into the Web3 space.

- - - -

To get up to speed on FastAuth, here is a FastAuth primer with some product demo videos. 

- - - -

Easy onboarding and email recovery with FastAuth

- - - -

FastAuth gives users the power to quickly and easily create a single account that can be used for any website or app that integrates with the Blockchain Operating System (BOS). This feature makes FastAuth an ideal tool for developers building components on NEAR. 

- - - -

With a Web2-style onboarding experience that puts the user experience front and center, users can create a free account using biometrics, phone prompts, and an email address. This means that users can quickly interact with an app but also easily re-authenticate to the app using the same or different devices. 

- - - -
- -
- - - -

Since most users are accustomed to centralized authentication methods like “Sign in with Google”, Web3 account management using seed phrases and wallets have, until now, created a significant barrier to entry for many people. By combining FastAuth with decentralized email recovery, users no longer need to remember seed phrases or install third party wallet applications. Users can recover their accounts through a “Single Sign-on” (SSO) process with the email they used at registration. 

- - - -

Account recovery is also decentralized and does not give custodial access to full access keys to any single custodian. It is accomplished through a process called “multi-party computation”. This finally paves a way for mass adoption with an easy, secure, and decentralized account recovery system.

- - - -
- -
- - - -


With FastAuth, one of the most challenging parts in onboarding users to Web3 no longer exists. Now, users can set up a BOS account quicker than creating a Gmail, Facebook, Tiktok, or Instagram account. And developers can deliver their Web3 components, apps, and experiences more seamlessly than ever. 

- - - -

No third-party applications required

- - - -

FastAuth also removes the need to download any third-party applications. Everything just works seamlessly right from the browser on your desktop or mobile device.

- - - -

By creating an easy, user-centric experience, FastAuth makes the open web accessible to everyone right from the get-go and opens the door to mainstream adoption. Anyone developing components on the BOS can leverage this user-friendly experience to quickly and intuitively get their apps in front of users. 

- - - -

Create an account without crypto

- - - -

BOS FastAuth has another great trick up its sleeve. Until now, getting started in  Web3 and interacting with apps meant acquiring crypto first. 

- - - -

With FastAuth, new users can get started right away without having to buy or be gifted crypto. This is a game changer for developers, enterprises, and end-users alike. Through FastAuth’s use of NEAR’s Meta Transactions and Zero Balance Accounts, users can register an account free of charge. Developers can also use this to their advantage as Meta Transactions paired with relayers, which allow them to sponsor initial interactions for new users without needing to purchase $NEAR. 

- - - -

This streamlined onboarding experience allows developers to significantly increase conversion rates for people trying their components and apps for the first time. FastAuth also expands an app and website’s audience by making it more accessible to mainstream users. 

- - - -

FastAuth creates an easy way for enterprises to integrate Web3 and crypto technology into their business. With just a few lines of code, they can onboard existing users into powerful new community and commerce experiences that are accessible, highly secure , and decentralized. 

- - - -

End users can also get started using Web3 apps and experiences in an easy, accessible way. Setting up a secure  fully user-owned  account now only takes seconds. 

- - - -

What’s next for FastAuth 

- - - -

While FastAuth is already enabling fast and simple onboarding of mainstream users as well as streamlining component-building for developers on the BOS, a number of other features and upgrades are already in the works: 

- - - -
    -
  • The ability to extend relayers and FastAuth to additional gateways beyond near.org
  • - - - -
  • Further MPC decentralization
  • - - - -
  • Multi-chain compatibility 
  • - - - -
  • Two-factor authentication
  • -
- - - -

Stay tuned to near.org for new FastAuth features and upgrades, as they are rolled out. 

-

The post Get to Know the BOS: FastAuth for Easy, Web2 Style Onboarding and Account Recovery appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR at Consensus Highlights - /blog/near-at-consensus-highlights/ - - - Thu, 27 Apr 2023 20:18:30 +0000 - - - - - - /?p=20451 - - NEAR has a monolithic mega-booth at Consensus 2023, where there have been a number of awesome NEAR announcements, talks, and …

-

The post NEAR at Consensus Highlights appeared first on NEAR Protocol.

-]]>
- NEAR has a monolithic mega-booth at Consensus 2023, where there have been a number of awesome NEAR announcements, talks, and events, including the big news out: the Blockchain Operating System is now live on Near.org and the NEAR Horizon accelerator is open for business. If you haven’t stopped by yet to meet our NEAR experts or are unable to attend, we’ve got you covered with all of the highlights.

- - - -

Let’s take a look at everything NEAR at Consensus, including the BOS, NEAR Horizon, a submissions call for the latest edition of Women in Web3, and much more! And stay tuned for more NEAR at Consensus highlights over the next few days.

- - - -

The BOS is now live on Near.org

- - - -
- - - -

On April 26th at Consensus, NEAR co-founder and Pagoda CEO Illia Polosukhin and Pagoda Chief Product Officer Alex Chiocchi announced that the Blockchain Operating System (BOS) — a real alternative to the Operating Systems of centralized platforms — is now live at near.org. 

- - - -

As a blockchain operating system for an open web, the BOS is accessible to everyone, not just web3 natives. And it makes Web3 and Web2 easier than ever to access and navigate for users and developers alike. With the BOS, you no longer have to choose between decentralization and discoverability. Devs and users get the best of both worlds, whether they are new to Web3 experiences and want to play around, or developers looking to build an open web. 

- - - -

Read the full BOS announcement here

- - - -

NEAR Horizon: A revolutionary accelerator for Web3 startups

- - - -
- - - -

NEAR Foundation also announced the launch of Near Horizon, a Web3 accelerator program, on the 26th from Consensus. Built on the Blockchain Operating System (BOS), Horizon features a revolutionary marketplace where Web3 startups can find the support they need for building on Near and cross-chain platforms. 

- - - -

Together with partners Dragonfly, Pantera, Decasonc, Blockchange, Fabric Ventures, dLab, Hashed, and Factomind, and Outlier Ventures, Near Horizon is on a mission to empower founding teams with the tools and support they require to accelerate the development of sustainable, profitable, innovative startups on Near.

- - - -

Near Horizon’s robust network of support is a game-changer for Near builders, offering new opportunities and resources to propel the best minds in the Near ecosystem to success.

- - - -

Read the full NEAR Horizon announcement here

- - - -

NEAR opens submissions for Women in Web3 Changemakers 2023

- - - -
- - - -

Following its hugely successful launch a year ago, Women in Web3 is back! On Day 2 of Consensus, NEAR Foundation announced the return of its global Women in Web3 Changemakers list.  

- - - -

Nominations are now open for 2023! Designed to showcase the talented and socially mindful women who make up the Web3 ecosystem, the initiative will once again spotlight ten exceptional leaders across the international sector and the amazing, sustainable work they do.

- - - -

Members of the Web3 community — both men and women — are welcome to nominate and submit the names of female colleagues who they feel should be recognized for their exemplary contribution to Web3. Women who work in Web3 can also nominate themselves. 

- - - -

Each nominee should meet the following criteria, which NEAR uses to define impact:

- - - -
    -
  1. Inclusion – driving ideas that are good for society, sustainable, and socially impactful.
  2. - - - -
  3. Influence – in the community and among peers.
  4. - - - -
  5. Innovation – contributing to interesting and socially impactful projects at work or independently.
  6. -
- - - -

The top ten Changemakers will be decided by you — the community! 

- - - -

Important Dates for Submissions and Voting

- - - -

More details on the voting process will be announced shortly. But here are some important dates.

- - - -
    -
  • June 1, 2023 — Nominations Deadline
  • - - - -
  • June 5, 2023 — Voting Begins
  • - - - -
  • June 19, 2023 (Midnight) — Voting Ends
  • - - - -
  • June 29, 2023 — 10 Changemakers for 2023 will be announced
  • -
- - - -

Those selected will be included in the Women in Web3 Changemakers list, which will be shared with the press and the global community. NEAR will also feature the winners in a special series of video interviews that will air across NEAR’s social platforms and distribution network to share each award-winner’s story and contributions to Web3. Founders of Web3 companies that have made the list will also have the opportunity to meet with investors and pitch for funding at the event.

- - - -

Google Cloud Unveils Web3 Startup Program 

- - - -
- - - -

Google Cloud recently made a splash in the Web3 space by announcing its Web3 Startup program via a Twitter thread during Consensus. Catering to seed and Series A projects and startups, the program offers up to $200K in cloud credits, and access to technical training. Recipients also receive partner perks including discounts on Nansen AI products and platform credits from Alchemy, and Thirdweb’s gasless contract deployment, support, and co-marketing opportunities.

- - - -

Google’s support of Web3 will benefit founders building on the Blockchain Operating System (BOS) and those partnering with the recently launched NEAR Horizon, an accelerator revolutionizing how founders are supported in Web3. NEAR Horizon will enable founding teams to scale their project with the support they need, increasing the number of founding teams building great products with real-world value on the NEAR Protocol.

- - - -

To apply, visit the application portal and explore more information on the official website.

- - - -

Here’s how to get involved:

- - - - - - - -

NEARCON is Returning to Lisbon and NEAR APAC is Headed to HCMC, Vietnam!

- - - -

Today at Consensus, NEAR Foundation announced that NEARCON will take place in Lisbon, Portugal on November 7 – 10, 2023. In an effort to globally scale and create more accessible events, the NEAR Foundation also announced that NEAR APAC will take place in Ho Chi Minh City, Vietnam on September 8 – 12, 2023. Both events will gather an audience of builders, Web2 and Web3 entrepreneurs, industry professionals, investors, and creators from all over the world.

- - - -

NEAR APAC will be the NEAR Ecosystem’s first and largest event in the APAC region. NEAR APAC delivers a world-class lineup of speakers to share latest APAC developments, unlimited potential of the blockchain industry, regional market insights, Web3 hacker festival, and insightful events for networking opportunities with local communities and partners. Head to https://nearapac.org/ on May 15th to secure your NEAR APAC tickets!

- - - -

NEARCON, the NEAR Ecosystem’s Annual flagship conference is headed back to Lisbon. The Mainnet anniversary of the protocol’s launch and the biggest announcements from the Ecosystem will be featured at NEARCON. Hear from some of the most iconic names in Web3 speak on Technical updates, Web2 and Web3 trends, the latest on Governance and Regulation, Arts and Culture, and much more. 

- - - -

This year the conference will take over two venues: Convento De Beato and Armazem Lisboa. Convento de Beato will host the core conference and will feature two larger stages whereas Armazem Lisboa will be Developers HQ where hackers will build all day. Both venues are just a 10 minute walk from each other. Mark your calendars because on June 1st NEARCON tickets will go live on nearcon.org!  

- - - -

See you in HCMC and Lisbon this Fall!

- - - -

Updates from around the NEAR Ecosystem

- - - -
- - - -

Mailchain brings encrypted communication to NEAR-based dApps

- - - -

Mailchain, an open source, multi-chain communication layer for Web3, announced integration with NEAR. Now, NEAR developers can send encrypted messages between blockchain wallet addresses with simple, unified inbox to view and send messages and keep track of on-chain activity. 

- - - -

NEAR’s vision has always been to onboard the next billion users to the Open Web. With Mailchain, these next billion users can communicate natively with one another, regardless of blockchain. 

- - - -

Mailchain’s integration with NEAR is a significant step towards strengthening the interoperability mission of NEAR’s blockchain operating system (BOS). NEAR’s BOS and Mailchain are both chain-agnostic, prioritize usability and security, and together make Web3 more accessible and interoperable for users.

- - - -

“Our vision aligns perfectly with NEAR’s–to onboard the next billion users,” said Tim Boeckmann, CEO of Mailchain. “When building Mailchain, we knew these next billion users would want to communicate with what mattered most to them, their blockchain identities. Mailchain’s secure communication protocol makes this a reality. We believe that this integration is a big step forwards for the developers who are building the next generation of the Internet.”

- - - -

XP Network brings cross-chain NFT bridge to NEAR

- - - -

During Consensus, the XP Network, a cross chain NFT bridge, went live on NEAR mainnet. XP Network allows NFT holders to transfer their NFTs to any other supported chain. XP Network recently showcased their cross-chain NFT bridge  by transferring a BSC NFT over to Near via the XP Network bridge, and selling it on Mintbase. 

- - - -

Now, NFT marketplaces built on NEAR Protocol like Paras, Berry Club, Mintbase, Flux, Few & Far can list the most promising NFT collections from almost 30 other chains. XP Network’s integration will supercharge both arts and collectibles, as well as Web3 gaming on NEAR, with players now being able to buy and trade NFTs in-game across chains. 

- - - -

kuutamo and Lattitude.sh give NEAR validators access to premium infrastructure

- - - -

From Consensus, Kuutamo announced its partnership with enterprise-grade infrastructure provider Lattitude.sh, which will give developers and current NEAR validators more flexibility and control. NEAR validators using both kuutamo and Latitude can now access premium infrastructure at a limited promotional price, or apply for the kuutamo x Latitude Program.

- - - -

A venture-backed technology company, Kuutamo offers a resilient and user-friendly node infrastructure, designed for the peer-to-peer economy. kuutamo launched the world’s first high availability node for the NEAR Protocol, giving users full control and flexibility (no lock-in effect) to execute their desired cloud strategies — differentiating itself from most large public cloud providers in the process.

- - - -

Latitude is an emerging global leader, offering access to enterprise-grade infrastructure in the world’s most advanced data centers. In its partnership with kuutamo, Latitude is expanding its offering to developers and NEAR validators. Latitude already supports other leading blockchains and Web3 companies such as Solana, Ankr, and Riot Games.

- - - -

WOMBI brings Web2-style analytics to NEAR

- - - -

During Consensus, Wombi — a Web3 attribution platform — announced that it is now live on NEAR. With an aim to be the Google Analytics of Web3, Wombi helps decentralized app developers by connecting Web2 and Web3 funnels, so they can instantly see which marketing channels are bringing them the most impactful users. 

- - - -

Wombi is now publicly available to all dApps fully live or building on the NEAR Blockchain Operating System or Protocol. All developers get free product and marketing analytics, making NEAR the first Layer 1 with a live attribution product. 

-

The post NEAR at Consensus Highlights appeared first on NEAR Protocol.

-]]>
- - - -
- - NEAR Blockchain Operating System is Now Live on Near.org - /blog/near-blockchain-operating-system-is-now-live-on-near-org/ - - - Tue, 25 Apr 2023 16:59:30 +0000 - - - - /?p=20422 - - Earlier this year, NEAR announced the Blockchain Operating System. An industry-first category, the BOS is a common layer for browsing …

-

The post NEAR Blockchain Operating System is Now Live on Near.org appeared first on NEAR Protocol.

-]]>
- Earlier this year, NEAR announced the Blockchain Operating System. An industry-first category, the BOS is a common layer for browsing and discovering open web experiences, compatible with any blockchain. 

- - - -

A real alternative to the Operating Systems of centralized platforms, the BOS is now live at near.org. As a blockchain operating system for an open web, the BOS is accessible to everyone, not just web3 natives. And it makes Web3 and Web2 easier than ever to access and navigate for users and developers alike. 

- - - -

With the BOS, you no longer have to choose between decentralization and discoverability. Devs and users get the best of both worlds, whether they are new to Web3 experiences and want to play around, or developers looking to build an open web. 

- - - -

Seamless Web2 style onboarding for Web3

- - - -

When entering Web3, users want an easy Web2-style onboarding experience. Until the BOS, this just wasn’t possible. 

- - - -

With FastAuth, BOS users get to experience a simple and seamless Web2 style onboarding. Users can get started quickly by creating an account for any app on the BOS — without the need for crypto. 

- - - -

By putting the user experience at the center, FastAuth creates a familiar style of onboarding experience, in which users can create a free account with biometrics, phone prompts, and an email address. Users can now quickly interact with an app without having to remember long seed phrases and other difficult passwords. 

- - - -

This will help dramatically move Web2 users into the Web3 space with ease. 

- - - -

Developers are empowered to start and build quickly

- - - -

The BOS isn’t just built for Web3 natives. It’s designed for any developer interested in open-source and decentralization. 

- - - -

To make Web3 app development fast and easy, the BOS offers a comprehensive set of tools and capabilities to get developers started quickly. These developer enablement tools and capabilities make it possible for developers to quickly build composable apps for the open web, as well as build complete projects using current workflows, seamlessly onboard users, get feedback from real users, and increase discoverability. 

- - - -

From Day 1, any developer can start building on the BOS, making Web3 a more accessible space for all. 

- - - -

Making Web3 search as intuitive as Web2

- - - -

Finding things in Web3 isn’t always easy. While decentralization is a core attraction to Web3, this very same benefit can make it hard to discover everything that Web3 has to offer. 

- - - -

The NEAR Blockchain Operating System fixes this problem with a comprehensive search experience. On the BOS, users can now quickly find all of the apps and components for building on Web3, as well as connect to people and communities. 

- - - -

BOS users can quickly discover apps, components, and reference documents with an integrated search bar, filtering, and sorting panels. Comprehensive search and discovery also benefits developers, entrepreneurs, and projects across the BOS by exposing their work to a large audience. 

- - - -

Add and maintain new app experiences with BOS gateways

- - - -

The BOS also features gateways — access points to Web3 apps that pull front-end code directly from the NEAR blockchain and render it for their users. 

- - - -

Gateways assume a variety of forms, from wallets and portfolio management tools to popular single-use applications — like, SWEAT — that want to add additional functionality. Gateways help with simple tasks, like adding swap functionality, all the way up to creating decentralized app stores, and much more. This functionality is available by simply adding a JS library, then choosing which app front-ends you want to include.

- - - -

Typically in Web3, developers spend a lot of time building and getting their apps discovered. During this process, users often need to switch between multiple platforms to discover apps and experiences. Gateways help to overcome this by making it possible to meet users where they already are, while giving them a broader range of apps and experiences. 

- - - -

Govern your Web3 experience with a content moderation framework 

- - - -

Traditional content moderation processes — seen most notably in Web2 social network apps— are centralized and often lack transparency, making them ill-equipped to meet the demands of content that is potentially offensive, risky, or illegal. With the growing influence of Web3 platforms the need for an innovative solution that addresses these challenges is more critical than ever. 

- - - -

The BOS features a scalable, open source content moderation system. With these BOS features, users can govern their own online experience. 

- - - -

The moderation framework leverages the power of the BOS to tackle the many challenges of managing User Generated Content (UGC) through community engagement and automation, providing a scalable, transparent solution to content review that is easy to use and legally compliant. 

- - - -

With a decentralized approach and community-driven governance and moderation, the BOS’s moderation framework is poised to redefine content moderation for Web3 platforms and contribute significantly to a healthier online environment for all stakeholders. 

- - - -

Build and discover apps on NEAR: the Blockchain Operating System for an Open Web

- - - -

Whether you’re a Web3 developer, founder, end user, or someone just looking to get into crypto, the NEAR Blockchain Operating System is your easy entry point into the Open Web. 

- - - -

Experiencing the BOS is as easy as visiting Near.org. Let’s build an open web!

-

The post NEAR Blockchain Operating System is Now Live on Near.org appeared first on NEAR Protocol.

-]]>
- - - -
- - Near Announces the Blockchain Operating System - /blog/near-announces-the-blockchain-operating-system/ - - - Thu, 02 Mar 2023 20:26:22 +0000 - - - - - /?p=20243 - - Near announced today that it is becoming the Blockchain Operating System (BOS). The BOS is an industry-first category: a common …

-

The post Near Announces the Blockchain Operating System appeared first on NEAR Protocol.

-]]>
- Near announced today that it is becoming the Blockchain Operating System (BOS). The BOS is an industry-first category: a common layer for browsing and discovering open web experiences, compatible with any blockchain. 

- - - -

The Blockchain Operating System will make Near the entry point for the Open Web, for users and developers alike. And it will make both Web3 and Web2 easier than ever to access and navigate. 

- - - -

Becoming more than just a blockchain 

- - - -
- - - -

Since inception, Near’s mission has been to onboard 1 billion users to the Open Web. The first step in the journey was to focus on building a best in class L1 blockchain that was easy to build on and easy to use. 

- - - -

Near was designed to be simple, with a flexible account model and human readable accounts — any name a user wants instead of a string of letters and numbers. And with Near’s Nightshade sharding approach, the Near blockchain was designed to be infinitely scalable and secure. At the same time, Near concentrated on building out tooling to support builders developing on the protocol, including the JavaScript SDK that now gives 15 million developers access to building on Near. 

- - - -

This has created and sustained a thriving Near ecosystem with more than 23 million accounts and over a thousand project building, but these were only the first steps toward delivering the vision of Web3 to a mainstream audience.

- - - -

Now, Near is building up the Web3 stack to integrate experiences from across the open web and streamline the discovery and onboarding experience for users and developers alike. 

- - - -

Enter Near: the Blockchain Operating System 

- - - -
- - - -

Today, Near is launching near.org — a composable frontend for Web3. It will allow end users to easily and frictionlessly discover all of Web3’s possibilities in one seamless experience. It will also empower developers to create and code interfaces in a single environment with the ability to fork a host of components to build apps faster, and more efficiently than ever before.

- - - -

Anyone in the Open Web ecosystem can create their own frontends (i.e., their own versions of near.org), compatible with the blockchain of their choice. This means that builders from any ecosystem can create components in just a few lines of code, and take advantage of fast onboarding to help make new and custom Web3 experiences.

- - - -

This is an industry first. With the addition of composable frontends to the tech stack, Near now becomes the Blockchain Operating System, allowing seamless, one-time onboarding and removing friction points like making accounts for every experience, while supercharging development from a collection of over 1,800 components. 

- - - -

Near.org is the first step in Near’s Blockchain Operating System journey. It’s the Alpha version, where builders can see the frontend come to life. 

- - - -

Try it out at near.org to experience the world’s first Blockchain Operating System — a revolutionary moment in Web3. If you’re a developer, see how easy it is to fork components and create new experiences. If you’re an end user, see how easy it is to explore Web3 experiences, social, and news all in one place. 

- - - -

The Blockchain Operating System is Near and it’s here. #NearistheBOS

-

The post Near Announces the Blockchain Operating System appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/bos/index.html b/public/blog/tag/bos/index.html deleted file mode 100644 index e746db77b..000000000 --- a/public/blog/tag/bos/index.html +++ /dev/null @@ -1,2 +0,0 @@ -BOS Archives – NEAR Protocol
<- Back to all posts

Tag: BOS

10 posts
\ No newline at end of file diff --git a/public/blog/tag/bos/page/2/index.html b/public/blog/tag/bos/page/2/index.html deleted file mode 100644 index ae1934e97..000000000 --- a/public/blog/tag/bos/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -BOS Archives – Page 2 of 2 – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/captains-call/feed/index.xml b/public/blog/tag/captains-call/feed/index.xml deleted file mode 100644 index ded132616..000000000 --- a/public/blog/tag/captains-call/feed/index.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - Captain's Call Archives – NEAR Protocol - - /blog/tag/captains-call/ - - Thu, 26 Oct 2023 19:27:17 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Captain's Call Archives – NEAR Protocol - /blog/tag/captains-call/ - 32 - 32 - - - ICC Launches ‘Captain’s Call’ Game on NEAR to Level Up Cricket Fandom During World Cup - /blog/icc-launches-captains-call-game-on-near-to-level-up-cricket-fandom-during-world-cup/ - - - Thu, 26 Oct 2023 15:00:00 +0000 - - - - - /?p=21008 - - Cricket fans are getting a Web3-powered path to engaging with their favorite international sport. NEAR Foundation and the  International Cricket …

-

The post ICC Launches ‘Captain’s Call’ Game on NEAR to Level Up Cricket Fandom During World Cup appeared first on NEAR Protocol.

-]]>
- Cricket fans are getting a Web3-powered path to engaging with their favorite international sport. NEAR Foundation and the  International Cricket Council (ICC), the global governing body of cricket, just teamed up  to explore different ways of getting fans closer to their favorite teams and players. 

- - - -

This ICC and NEAR partnership arrives just as the cricket world is watching the Men’s Cricket World Cup 2023. The partnership’s first cricket fan experience, the Captain’s Call gaming app, taps into the NEAR Protocol’s infinite scalability. 

- - - -

Watch an animated primer below on the gameplay in Captain’s Call.

- - - -

Level up cricket fandom with Captain’s Call game

- - - -

In Captain’s Call, ICC’s first app on the NEAR blockchain, cricket fans compete against each other for the chance of winning prizes. Developed by Wincast, Captain’s Call allows fans to strategize around bowling, batting, and fielding actions during live cricket matches.

- - - -

To play, fans simply navigate to the ICC’s mobile apps or website, click on the Match Centre for the game they intend to watch, and submit their predictions before the match begins. Players then compete for a chance to win prizes, merchandise, and more. 

- - - -

Beyond Captain’s Call

- - - -

With NEAR and ICC, Web3 and and sports are on a path of continual innovation. A fan passport is currently in early discussions, which would enable fans to record their actions and memories in a tamper proof way, both on and off chain. Captain’s Call will serve as a template in creating other games that fuses other Web2 and Web3 worlds. 

- - - -

All of these sporting innovations are possible thanks to the Blockchain Operating System (B.O.S). With its full stack of Web3 tools and easy onboarding, partners like the ICC and others can take advantage of the world’s most highly scalable, community-driven, and secure blockchains that deliver proven, best-in-class performance that can support any kind of Web3 strategy. 

- - - -
- -
-

The post ICC Launches ‘Captain’s Call’ Game on NEAR to Level Up Cricket Fandom During World Cup appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/captains-call/index.html b/public/blog/tag/captains-call/index.html deleted file mode 100644 index f00952dd5..000000000 --- a/public/blog/tag/captains-call/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Captain's Call Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/case-study/feed/index.xml b/public/blog/tag/case-study/feed/index.xml deleted file mode 100644 index 1347b74c6..000000000 --- a/public/blog/tag/case-study/feed/index.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - Case Study Archives – NEAR Protocol - - /blog/tag/case-study/ - - Thu, 01 Jun 2023 14:01:28 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Case Study Archives – NEAR Protocol - /blog/tag/case-study/ - 32 - 32 - - - Case Study: Pagoda Chief Product Officer Alex Chiocchi on the BOS - /blog/case-study-pagoda-chief-product-officer-alex-chiocchi-on-the-bos/ - - - Wed, 31 May 2023 17:04:07 +0000 - - - - /?p=20551 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

-

The post Case Study: Pagoda Chief Product Officer Alex Chiocchi on the BOS appeared first on NEAR Protocol.

-]]>
- NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms.

- - - -

To showcase some of the innovative products launching on NEAR, the Case Studies content vertical is making a return. With its new multimedia makeover, Case Studies will demonstrate how these projects are leveraging the power of NEAR’s layer 1 protocol and the Blockchain Operating System (BOS) to distribute their apps and onboard the masses into the open web. 

- - - -

The new NEAR Case Studies series kicks off with a video featuring Pagoda’s Chief Product Officer Alex Chiocchi. For much of the last year Alex has been deeply embedded in the development and launch of the BOS — an OS for an Open Web. 

- - - -

In the BOS Case Study video, Alex explains how the BOS takes advantage of the NEAR Protocol’s scaling architecture, while allowing builders to code in languages they already know, like Javascript. As you’ll learn from Alex, the BOS makes it easy to use the tools you already know to build apps that engage users, while fostering an open web free from centralized platforms. 

- - - -

Stay tuned for more Case Study videos on NEAR, the Blockchain Operating System for an open web.

- - - -
- -
-

The post Case Study: Pagoda Chief Product Officer Alex Chiocchi on the BOS appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/case-study/index.html b/public/blog/tag/case-study/index.html deleted file mode 100644 index ae6f2eaea..000000000 --- a/public/blog/tag/case-study/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Case Study Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/cathy-hackl/feed/index.xml b/public/blog/tag/cathy-hackl/feed/index.xml deleted file mode 100644 index 536f6844f..000000000 --- a/public/blog/tag/cathy-hackl/feed/index.xml +++ /dev/null @@ -1,138 +0,0 @@ - - - - Cathy Hackl Archives – NEAR Protocol - - /blog/tag/cathy-hackl/ - - Tue, 31 Oct 2023 17:24:46 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Cathy Hackl Archives – NEAR Protocol - /blog/tag/cathy-hackl/ - 32 - 32 - - - Women of Web3 Changemakers: Cathy Hackl - /blog/women-of-web3-changemakers-cathy-hackl/ - - - Tue, 31 Oct 2023 17:24:46 +0000 - - - - - /?p=21016 - - “I have always said that I’m not the typical face you see representing technology, and that’s why it’s essential for …

-

The post Women of Web3 Changemakers: Cathy Hackl appeared first on NEAR Protocol.

-]]>
- “I have always said that I’m not the typical face you see representing technology, and that’s why it’s essential for everyone to know that the future is for all,” says Cathy Hackl, a leading authority in emerging tech and co-founder of Journey, a consultancy that advises companies, brands, cities and governments about gaming, AR, AI, spatial computing, metaverse, web3, and virtual world strategies.

- - - -

Hackl is one of the 10 finalists of the 2023 Women in Web3 Changemakers List, an annual competition designed to champion women pushing boundaries in the space. Hackl, along with nine other outstanding candidates, are showing the industry the change women are bringing about during the advent of the Open Web. 

- - - -

Hackl was selected not only for her work advising companies like Nike, Walmart, Louis Vuitton, and Clinique on navigating emerging digital spaces and technologies, but her tireless work as an educator.

- - - -

She has taught at IE Business School and SDA Bocconi School of Management, two of the world’s leading business schools, and spoke at Ivy League universities across America. Hackl is one of the world’s leading female tech trailblazers that is constantly evolving and helping build a more inclusive future.

- - - -

But Hackl’s journey to becoming one of the world’s foremost leaders on emerging technologies nearly didn’t happen. 

- - - -

A chance encounter 

- - - -

Hackl started her career working in live video and live streaming in silicon valley. But it wasn’t until a chance encounter with VR that led her career in a completely new direction. 

- - - -

“I was invited to an event where there were some VR demos. I had the opportunity to try on a VR headset for the first time and experienced what it would be like to be in a solitary confinement cell in virtual reality. Within a few minutes, I felt claustrophobic and I took the device off, but something had changed. It felt like I was able to fully turn on my humanity dial again. I also knew I had seen something important, maybe it was part of the future of storytelling or maybe it was the future of business, but I was sure of one thing: this is what I wanted to do for the rest of my life.”

- - - -

Soon after that moment, Hackl left the video production space and went all in on AR and VR. Stints at companies like HTC and its VIVE VR project led Hackl to landing her dream job at Magic Leap, the American technology company specialising in augmented reality. 

- - - -

It was here that technologist Neal Stephenson and Chief Futurist at Magic Leap first coined the term “Metaverse”. But for Hackl, it wasn’t to be. When the pandemic struck she was among many that were laid off as the company contracted. 

- - - -

“I had to ask myself: what do I do now? This led me to Amazon Web Services, where I worked on several projects including large scale simulations and learned a lot about cloud computing.”

- - - -

During the Covid years, Hackl had been writing a lot about the Metaverse after she was first exposed to it at Magic Leap, helping her to connect to companies looking to explore the space.  

- - - -

“I eventually got the courage to leave AWS and launch off on my own. In 2021 I founded my own consulting firm. In just 10 months my company was acquired by Journey, where I am currently the co-founder and I lead the company’s virtual, gaming, and Metaverse studio.”

- - - -

Since then, Hackl has become one of the main proponents of metaverse technology, especially for women. 

- - - -

The future is female 

- - - -

According to research by McKinsey, women are spending more time in the proto-metaverse than men are and are more likely to spearhead and implement metaverse initiatives. 

- - - -

However, just as in the tech sector as a whole, women represent a minority in the metaverse economy. Both the entrepreneurial capital and the CEO roles in the metaverse space remain disproportionately reserved for men.

- - - -

“The research shows that women are more likely than men to engage in hybrid use cases in the metaverse, traversing both physical and digital worlds to participate in gaming, fitness, education, live events, and shopping via AR/VR technologies,” says Hackl. 

- - - -

“By contrast, men use the metaverse to participate in purely digital experiences such as gaming, trading nonfungible tokens (NFTs), and attending social events.”

- - - -

For Hackl, bringing women into technology results in more creative solutions and has more significant potential for innovations that meet women’s needs and promote gender equality. But their lack of inclusion comes with massive costs. 

- - - -

“Suppose women cannot access the Internet and do not feel safe online. In that case, they cannot develop the necessary digital skills to engage in digital spaces, which diminishes their opportunities to pursue careers in science, technology, engineering, and mathematics (STEM) related fields. By 2050, 75% of jobs will be connected to STEM areas. Yet today, women hold just 22% of positions in artificial intelligence”

- - - -

But Hackl feels the Web3 world is ready for change. “My message is always to be bold, speak your mind, and settle for more. The world needs your essence, work, art, creativity, femininity, intuition, and heart to make the Web3 industry. There will always be obstacles, but there is a vast community to mentor, support and stand by you to continue exploring, building, and creating in the Web3 industry.”

-

The post Women of Web3 Changemakers: Cathy Hackl appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/cathy-hackl/index.html b/public/blog/tag/cathy-hackl/index.html deleted file mode 100644 index 7dc457e6a..000000000 --- a/public/blog/tag/cathy-hackl/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Cathy Hackl Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/chain-abstraction/feed/index.xml b/public/blog/tag/chain-abstraction/feed/index.xml deleted file mode 100644 index 486915a43..000000000 --- a/public/blog/tag/chain-abstraction/feed/index.xml +++ /dev/null @@ -1,543 +0,0 @@ - - - - Chain Abstraction Archives – NEAR Protocol - - /blog/tag/chain-abstraction/ - - Tue, 30 Jan 2024 14:33:23 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Chain Abstraction Archives – NEAR Protocol - /blog/tag/chain-abstraction/ - 32 - 32 - - - Phase 2 of NEAR Sharding Launches - /blog/phase-2-of-near-sharding-launches/ - - - Tue, 30 Jan 2024 14:33:22 +0000 - - - - - - - /?p=21200 - - The NEAR Foundation announced today that the Protocol Work Group will launch testing for Phase 2 of Sharding this week, …

-

The post Phase 2 of NEAR Sharding Launches appeared first on NEAR Protocol.

-]]>
- The NEAR Foundation announced today that the Protocol Work Group will launch testing for Phase 2 of Sharding this week, marking a major milestone in the network’s development roadmap. Phase 2 introduces fundamental upgrades to NEAR’s core protocol architecture, enabling even greater scalability and decentralization for the network. The fourth edition of Stake Wars, an incentivized community testing initiative, will kick off on February 1.  

- - - -

NEAR’s vision of chain abstraction to facilitate broad adoption of decentralized apps requires an extremely scalable blockchain layer. From the start, NEAR has been designed to scale with demand towards mainstream adoption. A primary benefit of the new sharding implementation will be an up-to-10x speed improvement to NEAR’s already-fast transaction throughput. Sharding is NEAR’s unique approach to scaling, which partitions the blockchain into multiple parallel “shards.” Combined with NEAR already having the lowest transaction fees in Web3, this sharding upgrade positions NEAR at the forefront of Web3 in terms of both performance and scalability. Phase 2 greatly improves the network’s capacity for end user volume and is an important landmark on the road to global-scale usage of Web3. 

- - - -

“NEAR continues to make progress on bringing Chain Abstraction infrastructure that can scale to a billion users and beyond,” said Illia Polosukhin, Co-Founder of NEAR Protocol and CEO of NEAR Foundation. “The scalability improvements from stateless validation can unlock even better user experiences for more end-user applications, whether multichain DeFi-style dapps or those aimed at mainstream users.”

- - - -

Phase 2 introduces the most significant changes to the NEAR Protocol since its Mainnet launch in 2020. The biggest of these is the implementation of stateless validation: an innovative approach to state change, or the process of updating the status of all the data posted to the blockchain. Now, NEAR validators no longer have to maintain the state of a shard locally and can retrieve all the information they need to validate state changes, or “state witness,” from the network. 

- - - -

With stateless validation, NEAR can finally achieve the truest form of sharding, where shards can function mostly independently at the consensus level to improve decentralization and throughput while preserving the highest security guarantees. An added benefit is that the hardware requirements to run most validator nodes are dramatically reduced (a smaller number of “chunk proposer” validators with specialized hardware will validate blocks with state held in memory). This also paves the way for greater decentralization of the network by lowering the barrier to entry to become a validator.

- - - -

“We’re very excited about the potential for future proofing the NEAR protocol design with stateless validation,” said Bowen Wang, Director of Protocol at Pagoda. “From a research perspective, we expect that as zero-knowledge tech matures, more protocols will adopt a similar approach, where a smaller set of expensive machines execute transactions and produce proofs, while a bigger validator set validates the proofs. This will enable more unified security across networks and defragment Web3, advancing a key aspect of the chain abstraction vision.” 

- - - -

Phase 2 is a shift in direction from the original Nightshade sharding architecture NEAR launched with in 2020, bypassing some fundamental roadblocks in that protocol design around the implementation of challenges in the initial idea of Phase 2, while also unlocking additional benefits. Other network improvements in Phase 2 include in-memory trie, wherein validator nodes can load the entire state into RAM for maximized performance. This will greatly improve transaction throughput thanks to minimizing storage access. 

- - - -
Phase 2 is the third major upgrade to NEAR Protocol’s sharding since Mainnet launch in October 2020, showcasing the incredible shipping speed of the protocol engineering team.
- - - -

- - - -

NEAR users should not experience any downtime with the transition to Phase 2 and no special action is required from validators, apart from adjusting hardware specs. Through dozens of protocol upgrades since Mainnet launch, including three major upgrades, the core NEAR protocol has had 100% uptime with zero disruption for developers and end users. 

- - - -

On Thursday, February 1, Stake Wars IV: Attack of the Transactions will launch to incentivize battle testing of the new sharding architecture. Planned to run through March 31, the latest edition of Stake Wars invites community members to test features and generate traffic. For more information about participating and deeper technical detail about Phase 2, visit the Stake Wars page on Github

- - - -

With the launch of Phase 2, NEAR becomes one of the only networks in Web3 to implement stateless validation to improve scaling and paves the way for further network performance and scalability improvements in the future roadmap. A technical paper with more detail about NEAR’s new sharding design is forthcoming later in Q1. Phase 2 is expected to launch on NEAR Mainnet in May 2024.

-

The post Phase 2 of NEAR Sharding Launches appeared first on NEAR Protocol.

-]]>
- - - -
- - Why NEAR Data Availability? - /blog/why-near-data-availability/ - - - Fri, 26 Jan 2024 16:28:31 +0000 - - - - - - /?p=21194 - - NEAR Protocol is built to onboard 1B+ users to Web3. Since its mainnet launch in October 2020, NEAR Protocol has …

-

The post Why NEAR Data Availability? appeared first on NEAR Protocol.

-]]>
- NEAR Protocol is built to onboard 1B+ users to Web3. Since its mainnet launch in October 2020, NEAR Protocol has achieved 100% uptime with 4 shards and has onboarded 35M accounts, of which 16M are monthly active accounts.

- - - -

Supporting the most users of any network in Web3 requires a scalable blockchain that is capable of having both high data availability and low-cost data posting in order for applications to scale to the level of mainstream global adoption. This post will explain NEAR’s technical approach to data availability and how NEAR DA, a solution designed for Ethereum rollups, will scale the modular ecosystem and defragment all of Web3.

- - - -

The modular Ethereum ecosystem seeks to scale the network by separating the functions of a blockchain––settlement, execution, and data availability––into separate layers. The Ethereum layer-one simply could not scale to accommodate the level of demand it reached, particularly during bull markets, without prohibitively high transaction fees. This demand becomes even more problematic when users want to do swaps on Ethereum or post transaction data for layer-twos to the layer-one network. 

- - - -

NEAR DA offers a solution to this scalability roadblock. With a simple architecture that is easy to implement and constantly improving efficiency, and thanks to NEAR having the cheapest transaction fees of any network in Web3, NEAR DA is an incredibly fast and cost-effective data availability option. Depending on the gas fees, NEAR DA is up to 85,000x cheaper than posting blob submissions on Ethereum and 30x cheaper than doing the same on Celestia. 

- - - -
- - - -

NEAR DA and the Chain Abstraction Vision

- - - -

The NEAR ecosystem’s focus for 2024 is expanding chain abstraction across more chains & ecosystems, with the goal of abstracting the blockchain away from the user & developer experience. While the modular Ethereum ecosystem has made Ethereum more scalable in some ways, it’s also resulted in a lot of incompatible infrastructure and fractured liquidity that places a huge burden on app builders and end users to manage. The chain abstraction vision is that apps should just work with all chains, onboarding should be seamless, and things like gas fees and bridging should become invisible to end users. 

- - - -

Data availability and NEAR DA play an important role in chain abstraction. As zero-knowledge technology enables unification of security across chains via state proofs, as described in the chain abstraction deep dive post linked above, settlement data will be easier to fetch from different networks. As dapps become truly multichain thanks to account aggregation and decentralized frontends, they can query data from multiple chains more easily when data is all posted in one place. Doing so on NEAR will be much cheaper for rollups.

- - - -

How is NEAR DA Implemented?

- - - -

NEAR DA leverages an important part of NEAR’s consensus mechanism, known as Nightshade, which parallelizes the network into multiple shards (essentially, multiple parallel blockchains). Each shard on NEAR produces a small portion of a block, which is called a chunk. These chunks are aggregated to produce blocks. All of this happens entirely at the protocol level and so is invisible to users and developers.

- - - -

NEAR DA uses this infrastructure to an ETH rollup’s benefit. When a chunk producer processes a receipt, there is consensus around the receipt. However, once the chunk has been processed and included in the block, the receipt is no longer required for consensus and can be pruned from the blockchain’s state. The pruning time is at least 3 NEAR epochs, where each epoch is 12 hours. In practice, this is usually around 5 NEAR epochs, so data is available in the network for around 60 hours. Once the receipt is pruned, it is the responsibility of archival nodes to retain the transaction data. 

- - - -

This means that NEAR doesn’t slow down its consensus with more data than it requires, yet any user of NEAR DA would have ample time to query transaction data. The advantage this architecture provides to rollups is cost-effective data availability, especially to those with high transaction volume, such as gaming chains. 

- - - -

NEAR DA provides an out-of-the-box solution for developers, making it easy for rollup builders to make the most of NEAR’s infrastructure––which has 3+ years of proven reliability behind it. The Pagoda engineering team has already built three important components that are open-source and ready to be integrated into any OP Stack, Polygon CDK, or Arbitrum Nitro rollups:

- - - -
    -
  • The Blob Store Contract: A contract that stores arbitrary data.
  • - - - -
  • Light Client: A trustless off-chain client that provides easy access to transaction and receipt data.
  • - - - -
  • RPC Client: A client to publish data blobs to the NEAR Protocol.
  • -
- - - -

Rollup builders looking to work with a cloud-like service could also leverage NEAR DA’s rollup-as-a-service (RaaS) providers (list provided here), in order to utilize these three components all in one place in a more abstracted manner. 

- - - -

What’s next? The Future of NEAR DA and Data Availability Sharding

- - - -

Another advantage NEAR’s sharding approach offers to users of NEAR DA is the future scaling roadmap. The NEAR Protocol Engineering team recently announced the move towards stateless validation, the next phase of sharding. This will further decrease the hardware requirements of certain types of validators (chunk validators) and move the state into memory, which will allow for more shards and increase the decentralization in the system by lowering the requirements to become a validator in the system. 

- - - -

This means that the number of shards will increase, greatly increasing the overall throughput of the NEAR Protocol. While NEAR is already fast, with 4 MB/s per shard with 4 shards, scaling towards n shards means that rollups, applications, and any other project or developer using NEAR will not have to compete for blockspace. This is a major contrast to the scaling limits of both monolithic systems as well as the modular ETH ecosystem and offers a substantial future-proof for anyone building on NEAR, including users of NEAR DA.

- - - -

As the NEAR Protocol starts increasing the number of shards to n, the amount of data that has to be stored for a single shard decreases. Eventually, in theory every account on NEAR Protocol could potentially become its own shard. This allows running very light RPC nodes that would only track the shard that a given user is interested in. 

- - - -

For L2s that use NEAR DA, this would mean running an in-memory RPC client that would only track the shard that your data blob contract is in for your retention period (for fraud proofs), or for a given interval of time (retention is configurable on the RPC nodes). Instead of relying on data availability sampling (DAS), a rollup can rely on its own shard by running a lightweight RPC through Data Availability with Sharding. The additional benefit here is that the RPC is also applying the chunks they are tracking, essentially acting as a validator without participating in the consensus, as opposed to statistical confidence with DAS. 

- - - -

While Data Availability Sharding remains in the research phase of development, it shows the major advantages the NEAR Protocol design offers to many kinds of builders and ecosystems. As the Web3 space pursues mainstream adoption, the scalability hurdles of the first ten years of Ethereum will seem minor, and it is not clear that modularity alone will solve the problem. The NEAR ecosystem’s goal of mainstream adoption of Web3 means the network is available for all builders to use for creating great applications and delivering the next generation of the internet.

- - - -

Fast, Cost-Effective DA is NEAR

- - - -

As Web3 adoption grows and as the number of rollups continues to climb, the need to scale the modular scalability solutions becomes greater. NEAR offers its innovative, reliable technology as a data availability solution for rollups that can save time and money while future-proofing projects for an increasingly multichain (and cross-chain) future. The bleeding-edge research driving the future development of NEAR DA will provide rollups with even more advantages over time. Interconnecting and defragmenting Web3 via chain abstraction will be a major theme of 2024 and utilizing NEAR DA puts rollups at the forefront of this evolution.

- - - -

-

The post Why NEAR Data Availability? appeared first on NEAR Protocol.

-]]>
- - - -
- - Why Chain Abstraction Is the Next Frontier for Web3 - /blog/why-chain-abstraction-is-the-next-frontier-for-web3/ - - - Wed, 24 Jan 2024 19:55:01 +0000 - - - - - - /?p=21182 - - Most of today’s dapps are not actually dapps, i.e. decentralized applications. If you need to leave the app in order …

-

The post Why Chain Abstraction Is the Next Frontier for Web3 appeared first on NEAR Protocol.

-]]>
- Most of today’s dapps are not actually dapps, i.e. decentralized applications. If you need to leave the app in order to start using it, it’s not really an app––it’s just a frontend. If users have to manually onboard themselves through exchanges and manage multiple accounts and gas fees and bridges, did you even build an app? I think not––which may explain why only a few million people in the world are using dapps. 

- - - -

If we want to see mainstream adoption of Web3 because we believe a more open, decentralized internet that supports self-sovereignty for all people is better for the world, then we will need to do better.

- - - -

The prevailing narrative in Web3 today is modularity, or separating out the different functional layers of a blockchain, i.e. settlement, data availability, and execution, for the sake of scalability. Layer-twos, optimistic and ZK rollups, data availability layers, sidechains, and state channels are all examples of modularity solutions. 

- - - -

This proliferation of blockchains & rollups has led to a degraded experience for users and developers. Modularity and a world of many chains leads to more fragmentation of liquidity, apps, and users––a significant degree of complexity in the user experience that no mainstream user could ever be expected to navigate. This also applies to developers, who feel pressure to commit to a specific tech stack while limiting the audience for their application. Now when you build a dapp, you’re enshrining yourself into a small addressable market by choosing a single chain.

- - - -

I want to propose a better vision for the entire Ethereum ecosystem and all of Web3: let’s work together on advancing mainstream adoption via chain abstraction. The idea is that blockchains must be abstracted away from the user so they are not barriers to entry or participation. NEAR has been focusing on this vision since 2018 and today has achieved the most users of any network in Web3: 12.4 million monthly active accounts and 34 million accounts overall. 

- - - -

Here’s how we can defragment Web3 and onboard billions of users via dapps. 

- - - -

What does this look like for the user? 

- - - -

Let’s imagine how using a dapp should actually work: transacting across networks and navigating between experiences with ease, all within a single interface. As one example, Alice picks up her phone and opens KAIKAI from her lockscreen. She orders a smoothie from a local place and sees in the app that there’s a discount offer from her favorite clothing store, Maison, and orders a pair of shoes for the spring. Alice sees she has earned enough KAICHING rewards to get a badge from Maison, not knowing it’s an NFT on Polygon, and redeems it in her account. 

- - - -

When she browses Maison on the KAIKAI app later that day, she notices that her new badge reveals an offer to buy tickets for an exclusive event at their store with a DJ she likes. She buys the ticket with KAICHING and receives 2 tickets, still not knowing it’s an NFT on Arbitrum. Since she gets a +1, Alice invites her friend Bob to come with her and pings him for his address. 

- - - -

Bob sends his NEAR address to Alice and opens his app to check out the ticket. He sends Alice some ETH to say thanks for the invite and looks at the different cryptos he has in his account. Since he’s on the metro and has some time, he decides to buy some BTC and borrow against it with USDC so he can mint a Fighting Dragon NFT on Magic Eden. His friend Charles texted him earlier to get one so they could play each other in Year of the Dragon, a new game on NEAR where their dragons can battle each other for coins they can stake.

- - - -

All of these interactions and transactions can take place in a single interface and in a completely private way. There are no wallets, no switching networks, and no transaction fees to deal with; those are embedded directly in the swap or the buy and handled on behalf of the user. Alice didn’t need to worry about which network the ticket is on and Bob can send her funds for the ticket in whichever crypto he wants, moving seamlessly into buying a different one the next second. All inside of an app. This is the level of seamlessness we should be striving for as an ecosystem.

- - - -

How do we achieve Chain Abstraction?

- - - -

Everyone building an app in Web3 will benefit from being able to access such a broad market of potential users as in this example––i.e. anyone who uses apps. Whereas today, developers choose a network based on access to liquidity or the users of a specific rollup or chain, in a chain abstraction future they can just build with the best tech. The users will show up for the best experiences. 

- - - -

Imagine if a Gmail user couldn’t just send a message to an Outlook address––it doesn’t make sense. The same is true for Web3 addresses. The core assumption of chain abstraction is: end users don’t care about the underlying blockchain. They just want apps to work. In reality, blockchains are simply infrastructure to receive value out of Web3: security of assets from seizure, economic opportunity, removing middlemen for transactions, global permissionless identity, data provenance, entertaining experiences, and more.

- - - -

The core goal of chain abstraction is to defragment the increasingly fractured modular landscape of Web3. While this will be most visible at the user experience layer, this defragmentation of liquidity and accounts is possible thanks to innovation at the security layer. 

- - - -

Zero knowledge (ZK) introduces a principally new approach to ledger security. Whereas before one needed to trust a decentralized set of validators, now even a single computer can prove that rules were followed with a simple proof. This means that where before, developers would be forced to either build on a shared chain or spend immense resources to launch a new one, now they can just spin one up on their single server.

- - - -

This new paradigm introduces the idea of cross settlement: as more chains become fully ZK provable, if some proof is published on other chains, there is no way to revert this chain without also needing to revert other chains. Transactions from one chain can also settle on multiple others via ZK proofs. This provides mesh security as all proofs continuously get aggregated, allowing the safe movement of assets between such chains.

- - - -

In order to achieve unified security, two things are needed at the bottom of the stack: Data availability, which provides a way for everyone to sync even if the operator is offline, and a decentralized sequencer for applications that don’t have a central operator. 

- - - -

The next layer is identity with that security unified. Users can have an address on all possible chains and move assets between them freely. From a user perspective, this should be a single account where they interact with apps on different chains, and assets either get bridged or swapped automatically. 

- - - -

I call this “account aggregation” and will share more details about it in another post soon. NEAR will launch the next version of FastAuth in March 2024, which has mapping for NEAR addresses to EVM, Bitcoin, and other addresses. NEAR accounts can request to sign a transaction for another chain. This allows them to build multichain apps directly as smart contracts on NEAR. 

- - - -

The final layer is unifying the experience layer, or the application layer (e.g. DapDap)––providing a way to interact with apps on various chains without users switching or needing to leave a single interface. A decentralized frontend can provide easy components to build in a chain-abstracted way. NEAR can achieve this through NearJS, combining data indexing and decentralized frontends––V2 also coming in March 2024. 

- - - -

How is NEAR enabling Chain Abstraction? 

- - - -

The NEAR ecosystem has been building towards the chain abstraction vision since its beginnings in 2018, focusing on usability, a flexible account model, and a highly scalable blockchain that could support mainstream apps with billions of users. Today, the stack has expanded to support full chain abstraction across chains and all kinds of apps. 

- - - -
    -
  • Scalable, integrated blockchain that can grow to 1B+ daily active accounts.
  • - - - -
  • Security aggregation stack consisting of NEAR DA, zkWASM (collaboration with Polygon Labs), and EigenLayer-powered Fast Finality.
  • - - - -
  • Account aggregation on top of this to enable transacting on all chains using a single account
  • - - - -
  • Data layer that supports everything from monolithic, integrated, modular, private and permissioned chains to query data in a predictable protocol.
  • - - - -
  • Intent relayers that can execute complex intents across chains using this infra.
  • - - - -
  • Decentralized frontends that provide discoverability and composability for multiple apps across chains into one experience.
  • - - - -
  • Super (app) wallets that are user friendly and offer a way to navigate all of Web3 without having to switch networks or deal with gas tokens and bridges.
  • -
- - - -

Importantly, each of these layers supports builders from across Web3, including Ethereum, rollups & L2s, and beyond––the multichain future is becoming the chain abstraction future. 

- - - -

Call to Action

- - - -

2024 is the year of hiding the complexity of multichain infrastructure to deliver the Web3 experiences we’re striving for. Improving usability and discoverability should be a priority for all Web3 builders, as well as solving for liquidity fragmentation and security tradeoffs. 

- - - -

Let’s make chain abstraction a movement. The NEAR ecosystem invites builders from across Web3 to take advantage of the solutions we’re offering and to collaborate with us to build more chain abstraction solutions together. Stay tuned for more news on collaborations as well as details on an exciting event that NEAR Foundation will co-host at ETHDenver 2024.

Special thanks to Zaki Manian for conversations that led to this post as well as for his review.

-

The post Why Chain Abstraction Is the Next Frontier for Web3 appeared first on NEAR Protocol.

-]]>
- - - -
- - Self-Sovereignty Is NEAR: A Vision for Our Ecosystem - /blog/self-sovereignty-is-near-a-vision-for-our-ecosystem/ - - - Fri, 19 Jan 2024 20:19:02 +0000 - - - - - - - /?p=21170 - - As a kid growing up in Ukraine in the ’90s after the dissolution of the USSR, I remember we watched …

-

The post Self-Sovereignty Is NEAR: A Vision for Our Ecosystem appeared first on NEAR Protocol.

-]]>
-

- - - -

As a kid growing up in Ukraine in the ’90s after the dissolution of the USSR, I remember we watched the price of bread go from 1,000 karbovanets, to 10,000, to 100,000 in less than five years (until that currency was thrown out altogether and replaced with hryvnia). When I first started working as a software developer as a teenager, I kept my earnings in cash in my room because I already understood that we couldn’t trust corrupt banks with our money.

- - - -

Between 2014 and 2016 alone, 77 banks failed in Ukraine. My grandparents still have their savings account bank books tracking the money they put away during the USSR years––but those savings don’t exist anymore. So even something that is yours, that you rightfully own, can go away if the system you’re a part of fails. The same thing is happening to millions of people living under hyperinflation, dictatorships, and war zones across the world, of course. And while these may seem like abstract or distant problems that won’t arrive at your doorstep, let me tell you from my own experience: nothing is guaranteed. 

- - - -

Every system is as fragile as the rules holding it together. And the rules can change. They’re changing around us right now, and I believe we are approaching a point of no return. 

- - - -

The Need for Digital Self-Sovereignty

- - - -

We need to create new economic opportunities for people everywhere via self-sovereignty, which should be a universal right and which technology can now provide, not just nation-states as in most other points in history. For citizens of nations who’ve enjoyed economic security and a high degree of sovereignty, this may not seem like an immediate-term issue. But it is. 

- - - -

The economics of tech companies leads inevitably to corrupting their original product or vision for the sake of profit in order to maintain growth, and more importantly, they naturally involve creating barriers for someone else to disrupt. In order to maintain their power, governments will use pressure and ingenuity in order to control their populations, too often to the point of violating human rights in the name of safety or security. 

- - - -

We all use our phones and computers a thousand times a day, prioritizing convenience over self-sovereignty because until now, we haven’t had a choice. We are now approaching a tipping point towards a dystopian future that we may not be able to come back from, brought on not just by governments but by the economics of tech companies. What happens when these incentives increasingly collide and push each other deeper into the lives of individuals for the sake of maintaining control and profit? 

- - - -

That’s right about where we are today. 

- - - -

Changing the Stakes with Generative AI

- - - -

Before founding NEAR, I was an AI researcher. I worked at Google where I contributed to TensorFlow, and eventually published a paper with a handful of colleagues called “Attention Is All You Need.” That paper introduced the Transformers architecture that powers ChatGPT, Bard, and most of the well-known LLMs behind last year’s explosive growth in AI. 

- - - -

I was first interested in AI because of the 2001 movie, “Artificial Intelligence.” Changing how we interact with computing and augmenting one’s intelligence to maximize human potential was, and still is, very appealing to me. And I still think it has the potential to make human lives, organizations, even governments better. But like any other technology, in the hands of the wrong people or with the wrong incentives, it also has the potential to make our lives terrible. 

- - - -

Generative AI is creating a universal and scalably personal method of enabling control and manipulation. Practically, it means your social feed and search results can ensure that you buy specific products or form a specific opinion. This will start in the form of commercial improvements that lead to more profit for tech giants: Netflix will generate a movie script that can shape your opinion, Facebook can reinforce that opinion by showing you more of it, and so on. This could even happen at a more fundamental level, such as flooding training data with specific information to influence all models trained on it. 

- - - -

If this granular information and vector of manipulation on such a personal level can be extracted or bought, it will be, and then it will become a tool for control. If it’s stored somewhere centralized and hackable, it will be stolen––we see this constantly with Web2 giants as it is. If governments can get access to this data, they will use it to maintain or grow their power. 

- - - -

The true danger that generative AI introduces is that this exploitation won’t just be on a systems level or a population level, it will become personal and incredibly specific. The depth of potential control and manipulation goes to the level of each and every human, no matter where they live, no matter where they keep their money. Such a powerful technology simply cannot remain in the hands of centralized companies, nor be too easy for governments to take over.

- - - -

So What Should We Do About It?

- - - -

So if people don’t yet feel the sense of urgency towards building new systems that uphold self-sovereignty, what will make it real for people? Changes in collective values are always driven by economic opportunity. The major revolutions of history started because of economic failures: American independence from Britain, the French Revolution, the collapse of the USSR, and so on. If people see ways to create better economic realities for themselves and their families, then they will turn values into actions. 

- - - -

Creating new opportunities for people via self-sovereignty is what NEAR is about. Complete self-sovereignty  has been the NEAR vision since day one: we want to build a world where all people can control their own assets, data, and power of governance. This sovereignty must apply not only at the level of individuals but also the organizations and communities they create, and eventually societies. 

- - - -

Self-sovereignty is a new primitive that hasn’t existed before today. One always needed to rely on some power of violence for ensuring rules are followed, most recently nation-states. One of the core principles of digital self-sovereignty is the ability to choose and switch between any service provider. There is no lock- in. There are no middlemen like banks or government agencies that can lose or steal assets, or change the rules on you out of nowhere. 

- - - -

Importantly, this must also apply to AI. People need to own their data so they know what it’s being used for and so they can actively consent to personalized experiences they think will improve their lives. Models must be governed transparently, in public, with clear rules and monitoring to proactively manage risk and reputation systems to build more clarity around information and traceability. Web3 can help to uphold, scale, and manage such systems to ensure AI is a force for good while also preventing it from being too exploitable. 

- - - -

Another major challenge, which is especially clear in governance but it also applies to corporations, is that when we select someone to represent our ideas for us as our delegate, they will always have their own interests and motivations in the mix as well. They don’t necessarily have nefarious intentions, it’s just a natural tendency. This is the “principal agent problem,” wherein the person elected behaves differently than the people who elected them or pay them would prefer based on their best interests. This is where AI governance systems can help by introducing neutral agents, where unbiased AI agents governed directly by a community can act on their behalf in a more reliable way. With transparent governance and monitoring, AI can be a force for good in individual lives as well as for the collective. 

- - - -

A Vision for the NEAR Future

- - - -

Despite my concerns about where the traditional tech paradigm is potentially heading, I remain a techno-optimist. I wouldn’t be doing this work if I didn’t think it was for the good of everyone, and I’ve read enough sci-fi to know that the outcomes of science and technology are much more about what people do with them than the tech itself. If we want something, we should build it. 

- - - -

I would like NEAR to become a fully sovereign operating system that is equipped with a personal AI assistant that optimizes for users’ needs without revealing private information about the user’s data or assets. It should also be able to interact and transact with other people’s AIs and the community’s AIs peer-to-peer. I call this “user-owned AI.”

- - - -

We also need shared community AIs, which are governed by the members of such a community. They represent the mix of needs and knowledge of all the members of such a community, from something like a small club or startup, to the city, to the nation-state, to the global level. There is always an opportunity to fork one community and create new ones. The community governs which data goes into training its community model, and can run inference (running live data through a model) privately in such a way that only the user sees input and output, while getting a proof that the selected model was used.

- - - -

To facilitate this vision, a lot of pieces need to come together:

- - - -
    -
  • Economic and technological opportunity to enable users to onboard en masse.
  • - - - -
  • Open source software across the stack, from blockchain tech to AI models.
  • - - - -
  • Blockchains must get abstracted away from the user so they are not barriers to entry or participation. I call this the principle of Chain Abstraction.
  • - - - -
  • Applications must provide a novel value unlock: for example, Cosmose and Sweat. These apps reward users and serve as an economic gateway into a broader ecosystem of opportunities.
  • - - - -
  • On-edge, meaning hyperlocal, AI models that are usable by individuals (and free of manipulation).
  • - - - -
  • Community-owned AI models with governance and economic opportunity, replacing everything from business ops to government agencies. Self-governance by the people, for the people, at scale with the help of technology and decentralized peer-to-peer systems.
  • -
- - - -

Blockchains, peer-to-peer payments, Web3, zero-knowledge, very large language models and on-edge AI models: these are not separate technology verticals, but rather interconnected facets of a new digital paradigm of self-sovereignty. 

- - - -

We have the tools to remake how we provide for ourselves, how we work together and govern ourselves, and how we consume and generate information. Without gatekeepers, fair and open to everyone. And this is not a futuristic vision: it’s possible to start experimenting and building now, before our fragile and outdated systems and structures get weaker or fail, before too much centralization leads to the worst outcomes instead of the ones we all design and share together.

––Illia Polosukhin, Co-Founder of NEAR and CEO of NEAR Foundation

-

The post Self-Sovereignty Is NEAR: A Vision for Our Ecosystem appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/chain-abstraction/index.html b/public/blog/tag/chain-abstraction/index.html deleted file mode 100644 index d9093c77b..000000000 --- a/public/blog/tag/chain-abstraction/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Chain Abstraction Archives – NEAR Protocol
\ No newline at end of file diff --git a/public/blog/tag/circle/feed/index.xml b/public/blog/tag/circle/feed/index.xml deleted file mode 100644 index c3bb723df..000000000 --- a/public/blog/tag/circle/feed/index.xml +++ /dev/null @@ -1,127 +0,0 @@ - - - - Circle Archives – NEAR Protocol - - /blog/tag/circle/ - - Thu, 14 Sep 2023 13:39:47 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Circle Archives – NEAR Protocol - /blog/tag/circle/ - 32 - 32 - - - USDC Launches Natively on the NEAR Protocol  - /blog/usdc-launches-natively-on-the-near-protocol/ - - - Thu, 14 Sep 2023 13:00:00 +0000 - - - - /?p=20883 - - USDC, the open-source, permissionless protocol and stablecoin that enables any app to send and store digital dollars, is now native …

-

The post USDC Launches Natively on the NEAR Protocol  appeared first on NEAR Protocol.

-]]>
- USDC, the open-source, permissionless protocol and stablecoin that enables any app to send and store digital dollars, is now native on the NEAR blockchain. 

- - - -

The announcement opens the door for businesses built on NEAR to easily withdraw NEAR USDC and send it on-chain in seconds. Users can also swap USDC natively from Ethereum to NEAR and back — without incurring costs or delays from third-party bridges. MyNearWallet, Ledger, and wallet.near.org have all confirmed support allowing a user to hold USDC and interact with dapps on the B.O.S. Other wallets will follow over the coming days.

- - - -

Before this, USDC was only available on NEAR as a bridged form of USDC, known as USDC.e from Ethereum. This announcement means users get all the benefits of a native stablecoin, empowering developers to integrate stablecoin payments flows into their Javascript and  Rust-based decentralized applications. 

- - - -

This will unlock a new wave of accessibility for Web2 builders moving into Web3. It will also serve a vital role in NEAR’s mission of Web3 mass adoption, while helping developers build without limits on an open web.

- - - -

Native versus Bridged

- - - -

Circle brings USDC natively to new blockchain networks to empower developers to build on a stable foundation they can trust. Native USDC is officially issued by Circle and is always redeemable 1:1 for US dollars.

- - - -

In the case of NEAR, historically USDC was only available as a bridged version of USDC from Ethereum. USDC.e is not issued by Circle and is not compatible with Circle Account or Circle APIs. This brings a NEAR native version of USDC on chain. 

- - - -

To facilitate this shift, the NEAR Foundation will be working with ecosystem partners to help facilitate the migration of liquidity from bridged USDC to native USDC.

- - - -

Exchanges, digital wallets, institutional traders, and developers can now all access NEAR USDC via the Circle Account and Circle APIs. This unlocks a whole range of use cases including:  

- - - -
    -
  • Making low cost payments and remittances globally in seconds.
  • - - - -
  • 24/7 trading, borrowing, and lending on apps like Burrow, Orderly, and Ref Finance.
  • - - - -
  • Enable users to hold savings in digital dollars without needing a traditional bank account. 
  • - - - -
  • Allow for enhanced cross-chain interoperability with other blockchains via NEAR’s extensive range of bridges. 
  • -
- - - -

In the DeFi realm, Ref Finance will also launch its stable 4-pool on September 14 onwards. Trisolaris, Burrow, Orderly, VEAX and others are all planning on bringing USDC to its platforms within the coming weeks.  

- - - -

USDC.e will still be supported by the ecosystem during the transition.

- - - -

Getting started with USDC 

- - - -

If you’re a business or project working on NEAR, you can readily access on/off-ramps for converting fiat currency to NEAR USDC by applying for a Circle Account.

- - - -

If you’re new to NEAR, you can find free resources for building apps, deploying smart contracts, creating B.O.S components, and more on the DevRel resources page. 

- - - -

For developers looking for documentation on building with USDC, check out Circle’s developer docs

-

The post USDC Launches Natively on the NEAR Protocol  appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/circle/index.html b/public/blog/tag/circle/index.html deleted file mode 100644 index 1b2f641a5..000000000 --- a/public/blog/tag/circle/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Circle Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/coin98-super-app/feed/index.xml b/public/blog/tag/coin98-super-app/feed/index.xml deleted file mode 100644 index ec87a2aa6..000000000 --- a/public/blog/tag/coin98-super-app/feed/index.xml +++ /dev/null @@ -1,94 +0,0 @@ - - - - Coin98 super app Archives – NEAR Protocol - - /blog/tag/coin98-super-app/ - - Wed, 01 Nov 2023 19:11:24 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Coin98 super app Archives – NEAR Protocol - /blog/tag/coin98-super-app/ - 32 - 32 - - - Coin98 Launches Decentralized Dapp Store for its 7 Million Users on NEAR’s Blockchain Operating System (B.O.S) - /blog/coin98-launches-decentralized-dapp-store-for-its-7-million-users-on-nears-blockchain-operating-system-b-o-s/ - - - Thu, 02 Nov 2023 13:00:00 +0000 - - - - - /?p=21028 - - Coin98, the multichain wallet and DeFi platform, has today launched a decentralized dapp store for its 7 million users across …

-

The post Coin98 Launches Decentralized Dapp Store for its 7 Million Users on NEAR’s Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

-]]>
- Coin98, the multichain wallet and DeFi platform, has today launched a decentralized dapp store for its 7 million users across 170 countries, built on NEAR. 

- - - -

The company behind the Super app, designed to seamlessly connect a billion users to the crypto world safely and securely, has created an innovative marketplace that allows users to access a range of apps on prominent Ethereum Layer-2 ecosystems such as Polygon zkEVM, zkSync, Base, and Linea, greatly increasing accessibility and discoverability for users. 

- - - -

The result is a both a web app and mobile app (details below) that provides a gateway to more than 70 chains and 15,000 dapps including cross-chain bridging, money markets, and decentralized exchanges — all in a single interface. Coin98 has achieved this by harnessing the power of NEAR’s B.O.S, the Blockchain Operating System. 

- - - -

“At Coin98, we are dedicated to providing our users with the very best one-stop DeFi experience in our pursuit of the vision to make Web3 accessible for everyone.” says Thanh Le, Coin98 Founder. 

- - - -

“With NEAR’s B.O.S, we can create a user-friendly interface thanks to its composability, while enabling decentralization under the hood,” he said. “Our dapp store offers hassle-free interaction with the most exciting L2s in the market. Soon, we will expand our collection to offer even more ecosystems and dapps, as B.O.S greatly reduces the development process, enabling a fast and scalable way to integrate new applications.”

- - - -

Coin98 selected NEAR’s B.O.S thanks to the ease in the development process. All the widgets and components running on the B.O.S are fully composable, enabling developers to freely combine them to fit their needs. 

- - - -

Coin98 utilized the B.O.S as a frontend layer to fully decentralize the user experience. Instead of routing parts of the process through centralized servers, all the featured dapps on the Coin98 gateway have frontend components whose code are stored on-chain on NEAR, which directly interact with the smart contracts on the original chains. No centralized servers are used.

- - - -

“The NEAR ecosystem is excited to see Coin98 build their decentralized app store on the B.O.S and deliver much better experiences to their users,” says Illia Polosukhin, co-founder of NEAR Protocol. 

- - - -

“This is exactly why we set out to build the B.O.S: because NEAR’s technology can help founders achieve decentralization and discoverability in parallel,” he added. “Now Coin98’s users can explore multiple L2 ecosystems all in one app, through the wallet of their choice, in seconds, with no complexity or switching costs. NEAR’s mission is to drive mainstream adoption of the Open Web through great user experiences and we hope more founders and projects will join us on the B.O.S.”

- - - -

Coin98’s decentralized app store offering follows the launches of major B.O.S gateways by Polygon zkEVM and Mantle, two top L2 ecosystems. The success of these wallet gateway partners highlights the benefits that B.O.S helps Web3 founders deliver to end-users, demonstrating NEAR’s commitment to enabling products that simplify the blockchain experience and globally expand access to the Open Web.

- - - -

Want to try the new B.O.S integration? Download the mobile app on Apple or Google Play store today.

-

The post Coin98 Launches Decentralized Dapp Store for its 7 Million Users on NEAR’s Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/coin98-super-app/index.html b/public/blog/tag/coin98-super-app/index.html deleted file mode 100644 index 246bc2bd0..000000000 --- a/public/blog/tag/coin98-super-app/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Coin98 super app Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/coinbase/feed/index.xml b/public/blog/tag/coinbase/feed/index.xml deleted file mode 100644 index b50bc4a2f..000000000 --- a/public/blog/tag/coinbase/feed/index.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - - Coinbase Archives – NEAR Protocol - - /blog/tag/coinbase/ - - Wed, 07 Jun 2023 08:18:09 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Coinbase Archives – NEAR Protocol - /blog/tag/coinbase/ - 32 - 32 - - - NEAR Foundation’s Response to the SEC’s Recent Coinbase Complaint - /blog/near-foundations-response-to-the-coinbase-sec-filing/ - - - Tue, 06 Jun 2023 18:01:37 +0000 - - - /?p=20578 - - We are aware of the news that the most recent SEC complaint against Coinbase, published today, alleges the NEAR token …

-

The post NEAR Foundation’s Response to the SEC’s Recent Coinbase Complaint appeared first on NEAR Protocol.

-]]>
- We are aware of the news that the most recent SEC complaint against Coinbase, published today, alleges the NEAR token (along with many other crypto assets) is a crypto asset that is being offered and sold as an investment contract, and thus as a security (see the full complaint here). 

- - - -

This SEC enforcement action is not against the NEAR Foundation (the “Foundation”) (or any other participant in the NEAR ecosystem). In any event, the Foundation disagrees with (and is surprised by) the inclusion of the NEAR token in the complaint, and we believe the Foundation has not violated any applicable US securities laws. 

- - - -

The Foundation is regulated in Switzerland and the NEAR token has been characterized as a payment token (and not as a security) under Swiss law.

- - - -

Over the last few months, given the increased regulatory scrutiny and hostility in the US, we have continued to strengthen our team and surround ourselves with the best advisors in the industry, and we will continue to do so. 

- - - -

Keeping our ecosystem safe has always been – and will remain – at the forefront of what we do. 

- - - -

We understand this might feel unsettling, however we are concerned but confident and the Foundation leadership and legal team are prepared for this development. 

- - - -

The best thing we can all be doing is to continue focusing on building great products, bringing delightful user experiences, and onboarding millions into web3. In other words, business as usual.

-

The post NEAR Foundation’s Response to the SEC’s Recent Coinbase Complaint appeared first on NEAR Protocol.

-]]>
- - - -
-
-
diff --git a/public/blog/tag/coinbase/index.html b/public/blog/tag/coinbase/index.html deleted file mode 100644 index 50e72506a..000000000 --- a/public/blog/tag/coinbase/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Coinbase Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/coingecko-raffle/feed/index.xml b/public/blog/tag/coingecko-raffle/feed/index.xml deleted file mode 100644 index fa79993dc..000000000 --- a/public/blog/tag/coingecko-raffle/feed/index.xml +++ /dev/null @@ -1,184 +0,0 @@ - - - - CoinGecko Raffle Archives – NEAR Protocol - - /blog/tag/coingecko-raffle/ - - Thu, 18 May 2023 22:12:57 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - CoinGecko Raffle Archives – NEAR Protocol - /blog/tag/coingecko-raffle/ - 32 - 32 - - - NEAR x CoinGecko Raffle Winner: Terms and Conditions - /blog/near-x-coingecko-raffle-winner-terms-and-conditions/ - - - Wed, 17 May 2023 15:41:09 +0000 - - - /?p=20514 - - The following terms and conditions (the “Terms”) govern the use of the NEAR Foundation Raffle (the “Raffle”) provided by NEAR …

-

The post NEAR x CoinGecko Raffle Winner: Terms and Conditions appeared first on NEAR Protocol.

-]]>
- -
  • Introduction:
  • - - - - -

    The following terms and conditions (the “Terms”) govern the use of the NEAR Foundation Raffle (the “Raffle”) provided by NEAR Foundation (“we,” “us,” “our” or the “Company”). By participating in the Raffle, you (“you” or “Participant”) agree to be bound by these Terms. If you do not agree to these Terms, you may not be eligible to participate in the Raffle or receive any rewards. Note: the Raffle is in conjunction with CoinGecko’s NFT giveaway. Terms of the NFT giveaway can be found here. 

    - - - -
      -
    1. Eligibility:
    2. -
    - - - -

    The Raffle is available only to individuals who are at least 18 years old. By participating in the Raffle, you represent and warrant that you are at least 18 years old.

    - - - -
      -
    1. Participation in the Raffle:
    2. -
    - - - -

    We are excited to collaborate with CoinGecko users and allow them the opportunity to participate in the Raffle, you acknowledge and agree that any information you provide may be used by us in connection with the Raffle. To participate, users must follow these steps: 

    - - - -
      -
    1. CoinGecko users will be able to redeem a NEAR NFT Raffle ticket with 800 candies on CoinGecko’s Candy Rewards Store between Thursday, May 18, 2023, 10pm EDT / Friday, May 19, 2023, 10am MYT through Sunday, May 21, 2023, 10pm EDT / Monday, May 22, 2023, 10am MYT.
    2. - - - -
    3. Upon Raffle ticket redemption, users will receive a unique Candy Rewards code and a link to a Sweep Widget page. Users are required to fill in their details and may complete bonus actions like following CoinGecko and NEAR’s social accounts to boost chances of winning.
    4. - - - -
    5. 20,000 winners will be randomly selected to win a NEAR NFT each on Monday, May 22, 2023, of which 1 special winner* out of the 20,000 winners will additionally score a pair of tickets to NEARCON 2023 and $5,000 USD paid out in NEAR tokens. Winners will receive an email with a Keypom link allowing them to claim the NFT and open a NEAR Wallet in the week of May 22, 2023. 
    6. - - - -
    7. Winners will be required to hold the NFT in their NEAR wallet in order to be selected as the special winner that scores a pair of tickets to NEARCON 2023 and $5,000 USD worth of NEAR tokens.Only one winner will be selected as the special winner, of which will be notified via email and announced on the Near and CoinGecko’s social media channels on Friday, May 26, 2023.
    8. -
    - - - -
      -
    1. Raffle Prize:
    2. -
    - - - -

    Selected winners will be announced and contacted via email. The Raffle prize consists of: 20,000 NFTs, 2x Tickets to NEARCON 2023 and $5,000 USD paid out in NEAR Tokens. The $5,000 amount can be used to book flights, accommodations, and as a meal stipend for NEARCON 2023. 

    - - - -

    5. Disclaimer:

    - - - -

    The Prize is awarded ‘as is’ and without warranty of any kind, express or implied, including without limitation any warranty of merchantability or fitness for a particular purpose. The Raffle organizers and affiliated companies make no representations or warranties regarding the prize or its use and are not responsible for any claims arising out of or in connection with the prize or its use. Furthermore, we are not associated with any third-party companies or organizations mentioned in the raffle event (i.e. CoinGecko) or related promotional materials. The raffle event and prizes are solely sponsored and organized by us, and any reference to third-party companies or organizations is for informational purposes only. 

    - - - -
      -
    1. Limitation of Liability:
    2. -
    - - - -

    The Raffle organizers, sponsors, and affiliated companies are not responsible for any injury, loss, or damage to property or person, including death, arising out of participation in the raffle or use or misuse of the prize.

    - - - -
      -
    1. Intellectual Property:
    2. -
    - - - -

    The Service, including all content provided by the expert(s) or other participants, is protected by copyright and other intellectual property laws. You may not reproduce, distribute, or create derivative works from any content provided by the Service without our prior written consent.

    - - - -
      -
    1. Modification of Terms:
    2. -
    - - - -

    We reserve the right to modify these Terms at any time without notice. Your continued use of the Service following any changes to these Terms constitutes your acceptance of the revised Terms.

    - - - -
      -
    1. Governing Law:
    2. -
    - - - -

    These Terms and your use of the Service are governed by the laws of Switzerland without regard to its conflict of laws provisions.

    - - - -
      -
    1. Dispute Resolution:
    2. -
    - - - -

    Any disputes arising out of or in connection with these Terms or the Service will be resolved through binding arbitration in accordance with the rules of the Switzerland Arbitration Association.

    - - - -
      -
    1. Entire Agreement:
    2. -
    - - - -

    These Terms constitute the entire agreement between you and us with respect to the Raffle and supersede all prior or contemporaneous agreements and understandings, whether written or oral.

    - - - -
      -
    1. Contact Information:
    2. -
    - - - -

    If you have any questions or comments about these Terms, please contact us at social@near.foundation.

    -

    The post NEAR x CoinGecko Raffle Winner: Terms and Conditions appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/coingecko-raffle/index.html b/public/blog/tag/coingecko-raffle/index.html deleted file mode 100644 index 95bf7b629..000000000 --- a/public/blog/tag/coingecko-raffle/index.html +++ /dev/null @@ -1,2 +0,0 @@ -CoinGecko Raffle Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/collision/feed/index.xml b/public/blog/tag/collision/feed/index.xml deleted file mode 100644 index 9986fe1eb..000000000 --- a/public/blog/tag/collision/feed/index.xml +++ /dev/null @@ -1,427 +0,0 @@ - - - - Collision Archives – NEAR Protocol - - /blog/tag/collision/ - - Fri, 30 Jun 2023 18:24:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Collision Archives – NEAR Protocol - /blog/tag/collision/ - 32 - 32 - - - NEAR at Collision Highlights - /blog/near-at-collision-highlights/ - - - Fri, 30 Jun 2023 13:46:27 +0000 - - - - - /?p=20682 - - Missed NEAR’s booth at Collision? We’ve got you covered with content from NEAR talks and panels. There were also a …

    -

    The post NEAR at Collision Highlights appeared first on NEAR Protocol.

    -]]>
    - Missed NEAR’s booth at Collision? We’ve got you covered with content from NEAR talks and panels. There were also a number of awesome announcements, including the big news out of Collision: Alibaba Cloud.

    - - - -

    From the winners of the Women in Web3 Changemakers awards being announced to exciting ecosystem developments, here’s a run down on all things NEAR from Collision 2023!! 

    - - - -

    ICYMI: Major Announcements @ Collision

    - - - -

    NEAR kicked off Collision with a roar, with two major news items rolling hot off the presses yesterday. Here’s the scoop: 

    - - - -

    NEAR Foundation and Alibaba Cloud Join Forces 

    - - - -

    First off, the NEAR Foundation announced a major partnership with Alibaba Cloud, the digital technology and intelligence backbone of Alibaba Group. The two will collaborate to offer Remote Procedure Calls (RPC) as a service and multi-chain data indexing to NEAR developers, users, and the broader ecosystem. 

    - - - -

    The goal is to make building decentralized applications on the BOS a breeze, and working with one of the world’s biggest tech infrastructure companies is a huge step in the right direction. Alibaba Cloud will also enhance plug-and-play capabilities for BOS builders everywhere, from China and APAC to Europe and the Americas.

    - - - -

    Winners of the Women of Web3 Changemakers Awards

    - - - -

    In other news, the ten winners of the Women in Web3 Changemakers initiative were just announced. These incredible women are leading the charge in the Web3 space, and NEAR Foundation is proud to recognize their outstanding contributions. 

    - - - -

    Selected from over 200 nominations and voted for by the public, these were chosen based on their inclusive and innovative ideas, impact within the Web3 space, and their contributions to significant projects. Read the full announcement for NEAR’s Women in Web3 Changemakers winners

    - - - -

    Highlights from NEAR at Collision 

    - - - -

    Geekpay breaks barriers in crypto transactions on NEAR

    - - - -

    GeekPay, a crypto payments platform for businesses and freelancers built on NEAR, surpassed $500,000 in total transactions during Collision. It also just hit 205 verified users, companies, and 120 transactions. GeekPay is transforming how companies handle digital currency payments to contractors, eliminating the need for lengthy wallet addresses and providing greater security for cross-border transactions.

    - - - -

    “NEAR is a perfect ecosystem and technology for cross-border payments in digital currencies for remote workers and contractors,” said Veronica Korzh, CEO and co-founder of GeekPay.

    - - - -

    GeekPay supports a range of digital currencies including NEAR and ETH, including functionality with tracking and analytics, secure payment processing, invoicing, and transaction categorization. GeekPay hurdling the $400,000 transaction mark shows that the future of crypto payments for work is being built on the BOS.

    - - - -

    Tenamint launches Toronto Regional Community with a bang

    - - - -

    Tenamint, a marketplace for fractionalized trading card collectibles built on the NEAR blockchain, christened the launch of the NEAR Toronto Regional Community during the NEAR Toronto Launch Party. The soiree was held on an iconic yacht, the Yankee Lady, during a sunset cruise for an epic post-event party to cap off Collision.

    - - - -

    “We’re thrilled to announce the launch of the NEAR Toronto Regional Community, a vibrant community dedicated to fostering collaboration, innovation, and growth in the Toronto region’s blockchain ecosystem,” said Sal Chaudhry, Tenamint co-founder and Toronto local.

    - - - -

    “At the NEAR Toronto Regional Community, we’re on a mission to foster collaboration, education, and entrepreneurial support within the blockchain community,” Sal added. “We aim to empower individuals and businesses in Toronto and beyond to explore, adopt, and thrive in the world of blockchain technology and beyond,”

    - - - -

    NEAR after Collision: Onward to ETHCC

    - - - -

    Collision 2023 is only beginning, but the BOS momentum won’t stop in Toronto. NEAR will also be at the Ethereum Community Conference (ETHCC) in Paris, from July 19th to 23rd.

    - - - -

    From exciting cross-chain discussions to insightful panels, interactive workshops, and pitch events, ETHCC promises to be another remarkable platform for BOS building and the wider NEAR community.

    - - - -

    So after immersing yourself in Collision 2023, remember to mark your calendars for NEAR’s presence at ETHCC as well. Here’s to continuing to make waves in Web3 and expanding into the Open Web – with you as the BOS!

    -

    The post NEAR at Collision Highlights appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at Collision: Start Your BOS Journey and Expand into the Open Web - /blog/near-at-collision-start-your-bos-journey-and-expand-into-the-open-web/ - - - Wed, 28 Jun 2023 00:00:00 +0000 - - - - - /?p=20672 - - Collision is here. Today, June 26th through the 29th in Toronto, Ontario, NEAR experts will be on hand at Collision …

    -

    The post NEAR at Collision: Start Your BOS Journey and Expand into the Open Web appeared first on NEAR Protocol.

    -]]>
    - Collision is here. Today, June 26th through the 29th in Toronto, Ontario, NEAR experts will be on hand at Collision to showcase how brands and companies can make a move into the Open Web with NEAR’s Blockchain Operating System (BOS). The BOS redefines the Web2-to-Web3 experience. Now anyone can effortlessly create and distribute decentralized applications, using any blockchain — all in one browser.  

    - - - -

    Don’t miss NEAR Horizon, NEAR Foundation’s new Web3 startup support platform, which will also be at Collision. If you’re a founder or developer, then you will definitely want to meet with the Horizon team to get started on the Web3 funding and building journey.  

    - - - -

    Here is what to expect from NEAR at Collision 2023

    - - - -

    NEAR Speaker Sessions you won’t want to miss

    - - - -

    Tuesday, Jun 27, 12:00 – 12:45 PM

    - - - -

    Location: Beanfield Centre, Masterclass 1

    - - - -

    Masterclass: “The Fastest Way to Add Web3 to Your App”

    - - - -

    NEAR is transforming Web3 for developers, enterprises, and users alike with the Blockchain Operating System (BOS) – a common layer for browsing and discovering open web experiences compatible with any blockchain. NEAR founder Illia Polosukhin shows how the fastest onboarding in Web3 combined with decentralized frontends and embedded social features can help Web2 brands and Web3 projects deliver new & easy experiences and grow their communities.

    - - - -

    Speaker: Illia Polosukhin, NEAR Protocol, Co-founder

    - - - -

    Tuesday, Jun 27, 2:10 – 2:35 PM

    - - - -

    Location: Enercare Centre, MoneyConf

    - - - -

    Fireside Chat: “At the intersection of AI and Web3

    - - - -

    Speakers:

    - - - -
      -
    • lllia Polosukhin, Near Protocol, Co-founder
    • - - - -
    • Elad Gil, Investor
    • -
    - - - -

    Moderator: Lucinda Shen, Axios, Fintech Reporter

    - - - -

    Wednesday, Jun 28, 01:30 – 02:15 PM

    - - - -

    Location: Beanfield Centre, Masterclass 4

    - - - -

    Masterclass: “How to Decentralize Any Frontend Using BOS”

    - - - -

    Learn how to store your frontend codebase entirely on-chain and make it more accessible to users with NEAR’s Blockchain Operating System (BOS).

    - - - -

    Speaker: Miao Jiang, Head of Product, Proximity Labs

    - - - -

    Wednesday, Jun 28, 02:30 – 03:15 PM

    - - - -

    Location: Beanfield Centre, Masterclass 4
    Panel: “Charting the Course for a Thriving Web3 Ecosystem”

    - - - -

    Delve into the current state of web3 investing, identify the crucial elements for building a thriving web3 ecosystem, and explore innovative strategies for scaling startup support platforms.

    - - - -

    Speakers:

    - - - -
      -
    • Joyce Yang, Founder, Global Coin Research
    • - - - -
    • Steven Chien, Founder, Press Start Capital
    • - - - -
    • Paul Hsu, Co-founder, Decasonic
    • - - - -
    • Moderator: Laura Cunningham, General Manager, NEAR Foundation
    • -
    - - - -

    Thursday, Jun 29, 12:23 – 12:27 PM

    - - - -

    Location: Enercare Centre, Growth Summit

    - - - -

    Keynote: “Solving the Blockchain Enterprise Dilemma”

    - - - -

    Speaker: Sandi Fatic, Co-founder, CEO, Calimero Network

    - - - -

    Events from the NEAR Community

    - - - -

    June 27, 6-9 PM – NEAR Horizon Pitch & Networking | Collision 2023

    - - - -

    The NEAR Horizon team is partnering with VCs and Funding Teams from around the world who are looking to back exceptional entrepreneurs for the long term to build the future of Web3.

    - - - -

    June 28, 10 AM-8 PM – Web3 Day (& Night) | Collision Conference Toronto

    - - - -

    An invite-only event for the Web3 community & Web3 curious during the Collision conference in Toronto. Panels, speakers, networking, art, music, food & drinks, pitch opportunities, and more.

    - - - -

    June 29, 6-9 PM – NEAR Toronto Launch Party
    An exhilarating event that marks the launch of the NEAR Toronto Regional Community and concludes the three-day Collision Conference.

    - - - -

    Stay tuned to Near.org/collision for the latest event updates. 

    -

    The post NEAR at Collision: Start Your BOS Journey and Expand into the Open Web appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at Collision: Expand into the Open Web with the Blockchain Operating System - /blog/near-at-collision-expand-into-the-open-web-with-the-blockchain-operating-system/ - - - Wed, 24 May 2023 07:00:46 +0000 - - - - /?p=20524 - - NEAR Foundation is excited to announce that NEAR is heading to the 2023 edition of Collision from June 26-29 in …

    -

    The post NEAR at Collision: Expand into the Open Web with the Blockchain Operating System appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce that NEAR is heading to the 2023 edition of Collision from June 26-29 in Toronto, Ontario. 

    - - - -

    NEAR experts will be at Collision to demonstrate how brands and companies can expand into the open web using the Blockchain Operating System (BOS). The BOS is  an industry-first category: a common layer for browsing and discovering open web experiences with any blockchain — all in one browser. 

    - - - -

    Here is what to expect from NEAR at Collision 2023. 

    - - - -

    The BOS and NEAR Horizon at Collision 

    - - - -

    If you saw NEAR’s big announcement out of ETHDenver and Collision, NEAR isn’t just a Layer 1 blockchain. It’s a Blockchain Operating System that makes it easy to use the tools you already know to build apps that engage users, while fostering an open web free from centralized platforms.

    - - - -

    Also appearing at Collision will be NEAR Horizon — NEAR Foundation’s new Web3 startup support platform. Meet with the Horizon team and get started on the Web3 funding and building journey.  

    - - - -

    NEAR speakers at Collision

    - - - -

    At Collision, catch a number of exciting NEAR speakers and sessions. 

    - - - -

    Illia Polosukhin – Co-founder, NEAR Protocol; CEO, Pagoda

    - - - -

    Elad Gil – Investor

    - - - -

    Kendall Cole – Founder, Proximity

    - - - -

    Laura Cunningham – General Manager, NEAR Horizon

    - - - -

    Joyce Yang – Founder, Global Coin Research

    - - - -

    Steven Chien –  Founder, Press Start Capital

    - - - -

    Paul Hsu – CEO & Founder, Decasonic

    - - - -

    Stay updated on the complete slate of confirmed speakers at near.org/Collision

    - - - - - - - -

    NEAR Horizon pitch and networking event

    - - - -

    NEAR Horizon will be hosting another Pitch and networking event with VC partners the evening of June 27th. Applications to pitch are being accepted now through June 7th. 

    - - - - -

    The post NEAR at Collision: Expand into the Open Web with the Blockchain Operating System appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/collision/index.html b/public/blog/tag/collision/index.html deleted file mode 100644 index 8c7451c8e..000000000 --- a/public/blog/tag/collision/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Collision Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/communication/feed/index.xml b/public/blog/tag/communication/feed/index.xml deleted file mode 100644 index e5dca7763..000000000 --- a/public/blog/tag/communication/feed/index.xml +++ /dev/null @@ -1,64 +0,0 @@ - - - - Communication Archives – NEAR Protocol - - /blog/tag/communication/ - - Thu, 15 Dec 2022 13:37:04 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Communication Archives – NEAR Protocol - /blog/tag/communication/ - 32 - 32 - - - NEAR Foundation Launches New AMA Series  - /blog/near-foundation-launches-new-ama-series/ - - - Fri, 28 Oct 2022 17:43:53 +0000 - - - /?p=18737 - - The NEAR Foundation realizes there has been an issue with communication to the NEAR ecosystem. We hear you.  To that …

    -

    The post NEAR Foundation Launches New AMA Series  appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation realizes there has been an issue with communication to the NEAR ecosystem. We hear you. 

    - - - -

    To that end, NEAR Foundation will host its first AMA on Twitter Spaces next Tuesday, November 1, which will be moderated by Community Team member Marcus Ribeiro. Bring your questions and concerns to Foundation CEO Marieke Flament, NEAR Co-founder Illia Polosukhin, and the rest of the Foundation leadership team. 

    - - - -

    NEAR Foundation’s commitment to improving communication will also include a weekly blog and more regular AMAs designed to update the community on the Foundation’s activities. Bring your ideas to next week’s AMA as well as other future ones! 

    - - - -

    Stay tuned for AMA details this coming Monday.

    -

    The post NEAR Foundation Launches New AMA Series  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/communication/index.html b/public/blog/tag/communication/index.html deleted file mode 100644 index c71b6cd8c..000000000 --- a/public/blog/tag/communication/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Communication Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/community/feed/index.xml b/public/blog/tag/community/feed/index.xml deleted file mode 100644 index 4d9709ddb..000000000 --- a/public/blog/tag/community/feed/index.xml +++ /dev/null @@ -1,1286 +0,0 @@ - - - - Community Archives – NEAR Protocol - - /blog/tag/community/ - - Wed, 14 Feb 2024 18:59:44 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Community Archives – NEAR Protocol - /blog/tag/community/ - 32 - 32 - - - Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 - /blog/inaugural-ai-x-web3-hackathon-and-decentralized-ai-summit-to-debut-at-eth-denver-2024/ - - - Wed, 14 Feb 2024 18:59:43 +0000 - - - - - - - /?p=21226 - - In collaboration with Edge and Polygon Labs, the NEAR Foundation will co-sponsor a Decentralized AI Summit and “Autonomous Agent,” an …

    -

    The post Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 appeared first on NEAR Protocol.

    -]]>
    - In collaboration with Edge and Polygon Labs, the NEAR Foundation will co-sponsor a Decentralized AI Summit and “Autonomous Agent,” an AI x Web3 Hackathon, at ETHDenver on February 26 and 27. The events will bring together visionaries, developers, and enthusiasts working at the intersection of AI and Web3 along with a hackathon for builders and researchers to dive into the buzziest tech topic of today. Speakers at the Summit will include Vitalik Buterin of the Ethereum Foundation, Illia Polosukhin of NEAR Foundation, Sandeep Nailwal of Polygon Labs, and Sreeram Kannan of EigenLayer. 

    - - - -

    “Autonomous Agent” is the first event in the “{Chain}-of-Thought” series from Edge, which will explore and harness the potential of Web3 and open source AI. Edge is a research and development organization dedicated to democratizing access to open intelligence and advancing the evolution of next-generation web architecture. Hackers can expect hands-on hacking sessions, workshops, and mentorship opportunities with a chance to learn from those at the cutting edge of decentralized AI development. 

    - - - -

    The intersection of Artificial Intelligence (AI) and Web3 technology is poised to revolutionize industries, with many Web3 projects now incorporating AI into decentralized applications and developer tools. Ethereum Co-Founder Vitalik Buterin recently shared his observations about the intersection, and NEAR Co-Founder Illia Polosukhin shared how AI fits into the vision for the NEAR ecosystem in a recent post

    - - - -

    As the risks from centralized AI controlled primarily by major corporations become more apparent, investing in open source, transparent AI development will become increasingly important––along with community building, governance experiments, and advocacy. “{Chain} of Thought” will lead the way in bringing members of the AI and Web3 ecosystems together to advance these initiatives and make concrete progress.

    - - - -

    In addition to the premier sponsors, the “Autonomous Agent” hackathon is co-sponsored by EigenLayer, Gensyn, and Hyper Oracle, with co-hosting participation from Sentient, Lightspeed, and Symbolic Capital. Benefits of participation include:

    - - - -
      -
    • Cutting-Edge Workshops: Engage with industry experts and thought leaders through immersive workshops exploring the latest trends and technologies in AI x Web3.
    • - - - -
    • Hackathon Challenges: Tackle real-world challenges and showcase your creativity by developing innovative solutions at the forefront of AI and Web3 integration.
    • - - - -
    • Networking Opportunities: Connect with like-minded individuals, potential collaborators, and industry professionals to expand your network and exchange ideas.
    • - - - -
    • Prizes and Recognition: Compete for exciting prizes and gain recognition for your contributions to the advancement of AI x Web3 technology.
    • -
    - - - -

    Join NEAR Foundation, Polygon Labs, and Edge in Denver and be a part of the next great tech revolution. Those interested in attending the Decentralized AI Summit can register here. Researchers, developers, and hackers interested in participating in the hackathon can apply here

    -

    The post Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Built on NEAR: Celebrating Partners and Innovators at NEARCON ’23 - /blog/built-on-near-celebrating-partners-and-innovators-at-nearcon-23/ - - - Fri, 13 Oct 2023 15:59:43 +0000 - - - - - /?p=20968 - - Partnerships are one of the biggest pillars to expanding NEAR’s footprint. They help drive the ecosystem toward fostering new and …

    -

    The post Built on NEAR: Celebrating Partners and Innovators at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - Partnerships are one of the biggest pillars to expanding NEAR’s footprint. They help drive the ecosystem toward fostering new and innovative use cases that will bring the next billion users to the open web. And that’s exactly what’s happening on NEAR, with partnerships ranging from sports to social taking center stage. At NEARCON — the ultimate Web3 education — a number of NEAR partners will be on-hand to talk about Web3 partnerships and innovation. 

    - - - -

    Throughout the past few years, NEAR has engaged, collaborated, and built with partners who share the vision of a decentralized, user-centric open web. Each partnership is contributing their unique, innovative flair to the ecosystem, with a scalable, user-friendly blockchain helping to propel their efforts.

    - - - -

    As NEARCON ‘23 approaches, let’s celebrate and explore how NEAR’s collaborations and partnerships are shaping the future of the open web. By registering for and attending NEARCON ‘23, you’ll be able to meet some of the following founders, entrepreneurs, and innovators below.

    - - - -

    And these names are just the tip of the iceberg, so don’t forget to register for NEARCON ‘23 and let’s take part in learning, networking, and building an open web together.

    - - - - - - - -

    Creating consumer fun and engagement in the open web

    - - - -

    An area where NEAR partnerships are thriving is making the blockchain more fun and engaging for the masses. NEAR’s partnership with NFT launchpad Mintbase is a perfect illustration. Mintbase recently celebrated the traditional Indian festival, Raksha Bandhan, by seamlessly transforming photos into NFTs on the NEAR blockchain. 

    - - - -

    During Raksha Bandan, sisters tie a good-luck talisman around the wrists of their brothers, a special moment often photographed and cherished by families. With Mintbase’s open web wallet built on NEAR, users could easily create an account without seed phrases and seamlessly upload their photos, transforming them into NFTs in an instant.

    - - - -

    Let’s also toast to  GLASS, a one-of-a-kind Web3 platform that empowers alcohol brands to engage directly with consumers. Built on the NEAR blockchain, spirit brands can issue token rewards and other blockchain perks to social drinkers who try new cocktail recipes, socialize with friends, and vote on brand decisions. 

    - - - -

    Gaming is also a key entry point into the open web, and NEAR’s partnership with PlayEmber is kicking the door wide open. PlayEmber’s creative gaming studio is fusing AAA quality mobile games on the blockchain, with NEAR providing the backend foundation. Decentralized mobile gaming experiences are now becoming more accessible to a wider audience.

    - - - -

    Then there’s Cosmose AI’s KaiKai, a fusion of shopping, retail, and gamification dubbed”Shoppertainment.” Built on NEAR’s Blockchain Operating System (B.O.S), KaiKai offers a captivating brand discovery avenue, with features like Augmented Reality (AR) product interactions, exclusive product drops, and celebrity live streams. 

    - - - -

    More than just a shopping app, KaiKai also uses a native cryptocurrency, Kai-Ching. Shoppers earn rewards with the help of Cosmose’s AI-powered personalization, all while transacting on the NEAR blockchain. It’s all about enhancing personalization, user empowerment, and engagements in the retail space with a unique, powerful blockchain twist.

    - - - -

    And in a fusion of health and blockchain, Sweatcoin’s partnership with NEAR helps people earn SWEAT tokens with literally every step towards better fitness. With a user base of over 63 million who’ve clocked in more than 19 trillion steps, Sweatcoin and NEAR are incentivizing  healthier lifestyles.

    - - - -

    Oleg Fomenko, co-founder of Sweatcoin, believes in the potential of merging health and blockchain, enabling users to “walk into the world of crypto.” This partnership, built on the NEAR blockchain, personifies the next level of open web adoption, encouraging physical wellness via crypto-based rewards.

    - - - -

    Financial empowerment and innovation on NEAR

    - - - -

    One of the biggest challenges that the open web is addressing is financial empowerment and inclusion. NEAR Foundation’s partnerships in this area are helping bring that vision to life. The Foundation’s collaboration with Proximity Labs is helping talented builders create innovative Web3 financial solutions, with substantial grants and support.

    - - - -

    Calimero Network is another example of NEAR’s commitment to financial innovation. Calimero provides what’s called ‘private sharding’ infrastructure, a feature that ensures  data privacy in Web3 finance without sacrificing the power of open-source platforms. With both financial and technical support from NEAR, more business can be safely conducted on the blockchain.

    - - - -

    Building the technical foundation for tomorrow’s open web

    - - - -

    The ongoing partnership between NEAR Protocol and Octopus Network signifies the ecosystem’s infrastructure strides. Early on, Octopus Network selected NEAR as its “mother-chain” protocol citing speed ability to accommodate a large user base. Octopus Network and NEAR are paving the way for developers aiming to launch tailored applications using their own dedicated blockchains — also known as “Appchains” — making deployment a breeze.

    - - - -

    Partnering with a tech infrastructure behemoth like Google Cloud is another way of giving Web3 startups pathways to world-class startup expertise. It’s all part of NEAR’s commitment to making blockchain solutions more accessible, robust, and primed for mainstream adoption.

    - - - -

    In collaboration with Urbit, NEAR is also continuing to make the open web more user friendly. Urbit’s vision — shared and supported by the NEAR Foundation — is to improve the frontend experience of open web apps. Urbit allows developers to easily create sleek designs so that tomorrow’s decentralized applications are as seamless as the most popular ones in the App Store.

    - - - -

    On another front, NEAR’s collaboration with SailGP is bringing Decentralized Autonomous Organizations (DAOs) to professional sports, creating a bridge between leagues and fans. The introduction of a DAO-owned racing team on the NEAR Protocol gives fans a novel way to engage, interact with, and participate in active decision making along with teams and athletes.

    - - - -

    Partnership innovation rolls on at NEARCON

    - - - -

    Past, current, and future partnership will take center stage at NEARCON 2023 — now less than a month away. It’ll be four full days of full immersion into the NEAR ecosystem — a place for you to truly step into the open web. Build on the B.O.S and network with thousands of other blockchain enthusiasts. Get the inside scoop on onboarding Web2 companies into Web3 with Google Cloud’s James Tromans, and get the low down on SWEAT with Oleg Fomenko.

    - - - -

    From raising a glass to blockchain brand loyalty with GLASS and setting sail towards new DAO horizons with SailGP, each and every NEAR partner is playing its own pivotal role in crafting how tomorrow’s open web experiences will look, feel, and even taste. Better decentralized infrastructure, financial empowerment, and exciting consumer experiences are just the start.

    - - - -

    Ready to dive into sessions, hackathons, and more in Lisbon at NEARCON 2023? Go ahead and register now to secure your spot.

    - - - - -

    The post Built on NEAR: Celebrating Partners and Innovators at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  - /blog/icymi-scootering-through-web3-at-near-apacs-vietnam-showcase/ - - - Mon, 18 Sep 2023 16:32:42 +0000 - - - - - - /?p=20862 - - It was an incredible first-ever NEAR APAC, with the NEAR ecosystem scootering through Saigon over the last two days. Vietnam …

    -

    The post ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  appeared first on NEAR Protocol.

    -]]>
    - It was an incredible first-ever NEAR APAC, with the NEAR ecosystem scootering through Saigon over the last two days. Vietnam served as the perfect backdrop for NEAR’s inaugural showcase in Asia-Pacific, with community members, B.O.S. builders, and general Web3 enthusiasts coming together in one of the region’s most dynamic countries.

    - - - -

    The event was spearheaded by the NEAR Vietnam Hub with support from the NEAR Foundation, exemplifying strong commitment and collaboration between local and global ecosystem stakeholders.  ICYMI, here are some of the biggest sessions, announcements, and events from NEAR APAC 2023.

    - - - -

    ICYMI, here are some of the biggest sessions, announcements, and events from NEAR APAC 2023.

    - - - -

    Web3’s bright investment outlook in Asia-Pacific

    - - - -
    - - - -

    One of the most encouraging and optimistic sessions was moderated by NEAR’s Head of Finance, David Norris, focusing on the current and future outlook of blockchain investment and development in the region. David was joined by Web3 venture veterans Riccardo Pagano from Outlier Ventures and Whiplus Wang of IVC crypto.

    - - - -

    The trio dove into the current state of blockchain investment in APAC, and how Web3 might just ascend to becoming one of the most invested sectors in the region from a venture and infrastructure perspective. Ricardo in particular emphasized that he’s seeing a shift in perception from investors, with Web3 going from a niche technology to its own broad-based sector.

    - - - -

    “Even though we’re technically in a bear market, investment in Web3 sub-sectors like gaming is still strong,” added Whiplus. “Games like Angry Birds and Fruit Ninja were instrumental in onboarding Web2 users onto the smartphone, for example. That’s why investment into blockchain game publishers is increasing — to find that killer game that onboards billions.”

    - - - -
    - - - -

    Whiplus also likened successful blockchain startups to a bowl of Pho, with a blend of technical and business elements being integral to a delicious final dish. The panel also touched on technical nuances like ZK rollups and modular blockchains, emphasizing the need to invest in talent and innovation through initiatives like hackathons.

    - - - -

    The session encapsulated a forward-looking perspective on Web3’s trajectory. With the bar for founder participation evidently rising, the panel stressed the importance of education in the space. There was unanimous optimism about Southeast Asia’s digital future as potentially outpacing even established tech hubs like Korea and Japan.

    - - - -

    NEAR supports B.O.S. and blockchain builders in APAC

    - - - -
    - - - -

    Tons of activity also took place in and around the Builder Stage, with the NEAR Foundation and local blockchain organizations teaming up to educate and assist developers, builders, and job seekers in advancing themselves into Web3. Cameron Dennis, CEO of Banyan, led a panel on the stage informing developers on how to upskill from Web2 to Web3.

    - - - -

    Local developer advocates from notable projects like the Graph and Khyber network also participated in sessions, workshops, and panels on the Builder Stage designed to upskill local blockchain professionals. There was something for everyone, from a job fair for Web3 newbies to a Greenhouse area connecting founders and projects to VCs for funding.

    - - - -

    Exploring everything from dApp architecture to tokenomics, the Builder Stage action was highlighted by an incredible Hackathon, with participants receiving guidance from experts like Oleg Fomenko, founder of SWEAT. On the final night of the festivities, NEAR co-founder Illia Polosukhin presented awards to the winners on stage in front of a packed main hall.

    - - - -

    Pagoda takes the main stage to talk user adoption and FastAuth

    - - - -
    - - - -

    Alex Chiocchi, the CPO of Pagoda, showcased FastAuth during his session titled “Unlocking the Power of B.O.S: Product Update for Founders & Developers.” FastAuth aims to redefine the user experience for developers and founders, addressing the longstanding challenges of both onboarding and retaining new Web3 users.

    - - - -

    A primary takeaway was how FastAuth’s next release will minimize gas fees when onboarding, thus removing barriers for end-users. The introduction of multiparty compute (MPC) allows proofs from various organizations to be combined, simplifying processes like email recovery. Chiocchi emphasized the potential for users to migrate effortlessly from Web2 logins, hinting at a seamless integration between the two web generations.

    - - - -

    Discussing the nuances of retaining users in Web3, Chiocchi stressed that coin incentives alone aren’t sufficient. The “toothbrush test” was highlighted, illustrating that many apps don’t become daily necessities for users. Trust plays a pivotal role, especially with the rise of scams in the decentralized space. 

    - - - -

    Side events and after-parties storm the streets of Saigon

    - - - -
    - - - -

    NEAR APAC fully embraced the “work hard, play hard” ethos of Vietnam and Asia-Pacific. Even during the event, there were LED dancers, Manga Cosplay, and several massive DJs and party breaks. Not to mention the NEAR APAC Opening Night party at the Intercontinental Hotel, where Illia officially welcomed attendees and kicked things off in an intimate setting.

    - - - -

    And in one of the coolest side events in recent NEAR memory, Dap Dap showcased its platform to B.O.S. enthusiasts at the My House meeting venue nestled in one of Saigon’s many cozily-lit alleyways. Dap Dap is the first commercial B.O.S. product and will act as a gateway to hundreds of chains and protocols for users from a single, user-friendly interface.

    - - - -
    - - - -

    B.O.S Beats by DAO Records was the grand finale of NEAR APAC, offering a vibrant blend of hip-hop beats from prominent DJs on the decentralized record label. Held at Indika Saigon — and with pizza supplied by Pizza DAO — attendees enjoyed live performances, refreshments, and networking opportunities with the global and APAC NEAR communities. 

    - - - -

    NEAR APAC was an incredible Web3 Bánh Mì, layering an eclectic mix of speakers, insights, and events to create something completely unique. The NEAR Foundation would like to thank every cook in the kitchen, especially local partners like the NEAR Vietnam Hub who made sure that the first ever NEAR APAC had the perfect mix of sweet, sour, and spicy.

    -

    The post ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands - /blog/near-apac-day-2-recap-asia-gaming-trends-interoperability-and-web3-for-brands/ - - - Sun, 10 Sep 2023 14:28:46 +0000 - - - - - - - /?p=20841 - - It would’ve been hard to imagine topping a jam-packed Day 1 of NEAR APAC, but Day 2 managed to do …

    -

    The post NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands appeared first on NEAR Protocol.

    -]]>
    - It would’ve been hard to imagine topping a jam-packed Day 1 of NEAR APAC, but Day 2 managed to do just that. The gorgeous Sunday in Saigon covered a wide range of topics, including significant discussions on the future trends in Web3 such as how brands can hop on board the Web3 bandwagon and a creative proposal to unite all Layer 1’s for mass adoption.

    - - - -

    With each session, industry leaders shed light on challenges and the future trajectory of the fast-paced Web3 ecosystem in APAC. From the unique positioning of Web3 gaming in Asia to the potential rise of the next Web3 cycle, the discussions were varied and far-reaching. Let’s dive on into all the Day 2 happenings at NEAR APAC in Vietnam!

    - - - - - - - -

    Let’s begin the Day Two recap with a standout panel diving into the next big Web3 trends. Experts agreed that it won’t just be about technological progress, but also the transformative ways that blockchain will weave into daily life. Asset tokenization, generative AI integration, and the proliferation of decentralized creator economies were some top trends on the table.

    - - - -
    - - - -

    “Generative AI and asset tokenization are revolutionizing Web3 ecosystems, especially in growing economies like India,” said Sudeep Choudhari, head of blockchain at the India National Payments Corporation. “As integration across borders accelerates, we’ll also challenge traditional FX rates, anticipating a future with minimal cross-border payment costs.”

    - - - -

    Hanna Tantoco, APAC Marketing Director at Blockdaemon, piggybacked on the transformative role of generative AI in enhancing blockchain user experiences. She also pointed out the rising prominence of gaming in Asia, particularly on NEAR. Additionally, she highlighted Singapore’s burgeoning creator economy, powered largely by NFTs, as another future trend.

    - - - -

    How brands can futureproof themselves with blockchain

    - - - -

    Another morning highlight was a panel discussion about how brands and enterprises can harness the potential of Web3 to adapt and thrive. Key points revolved around democratizing user data control, countering data monopolization by tech giants, tokenizing assets, and challenges in linking the physical and digital worlds.

    - - - -

    “Enterprises often face challenges with hiring experts who may quickly move on to other projects,” observed Oleg Fomenko, founder of SWEAT. “While consultancies can provide insights, the real breakthrough comes when you start building and experimenting with MVPs. Though initial attempts might fall short, perseverance can yield surprising results.”

    - - - -
    - - - -

    Alex Chiocchi, CPO of Pagoda, added that Web3 streamlines verification, challenging traditional ad networks. By using an open blockchain system, excessive fees are prevented, promoting shared value with users. This shift allows benefits like self-custody and reputation while redistributing margins back to the people.

    - - - -

    Among the key takeaways from the session was that businesses harnessing blockchain’s capabilities can anticipate a transformative impact on the global economy, especially with asset tokenization’s projected growth through 2030. As brands navigate challenges like ensuring digital authenticity and early adoption, having a targeted strategy is crucial.

    - - - -

    Web3 gaming: Asia’s landscape and blockchain utilization

    - - - -

    The Asian gaming landscape is buzzing with the rise of Web3 development, promising an unprecedented era of innovation and user empowerment. Central to discussions at the “Web3 Gaming: Asia Landscape” session was the gaming community’s appetite for asset and data ownership, often prioritizing this over the complexities of Web3 itself.

    - - - -

    After attending Korea Blockchain Week, it’s evident that Japan and Korea’s mobile giants are pioneering in Web3 gaming,” said Luke Xie, founder of gaming VC fund Press Start Capital. “As opposed to Web3 games like Axie, creating AAA games takes much longer. Given the rapid pace of crypto, former mobile developers align better with this fast-paced dynamic.”

    - - - -

    Ishank Gupta, co-founder of Kratos Studios in India, emphasized that gamers prioritize asset and data ownership over backend Web3 tech. He predicted that blockchain games should bring benefits that gamers care about with a focus on ease of usability. For instance, leading studios in India are integrating well-known IP into Web3 games while ensuring they remain engaging.

    - - - -

    “We’re witnessing a new golden age of gaming driven by indie studios,” added Xie. “Small teams, empowered by AI, are crafting games that punch above their weight. We believe that on-chain gaming, while difficult to execute at present, is the future. It’s all about selecting the right chain based on tech, community, and support. NEAR excels at all of the above.”

    - - - -

    The panel agreed that the Web3 gaming industry in APAC and beyond is undergoing a transformative phase, with blockchain offering gamers more control over assets and data. As developers continue to build, the focus will be on seamless onboarding, speed, and user-centric experiences. Blockchains should be subtly integrated without disrupting the gaming experience.

    - - - -

    Bringing Web3 together with Multichain: a call for collaboration 

    - - - -

    Today’s blockchain landscape consists of independent Layer 1’s vying for supremacy, bringing up the core question of interoperability. With users often navigating several ecosystems, creating cross-chain experiences becomes paramount. This star-studded panel explored new frameworks to address hurdles and challenges in the current siloed multi-chain user experience.

    - - - -
    - - - -

    “Web3’s ethos is modularity, similar to Lego blocks,” explained NEAR CEO Marike Flament. “While we prioritize access and user growth, interoperability challenges persist. But trust and unified solutions drive adoption, not a fractured approach. It’s essential that technology seamlessly serves the end user.”

    - - - -

    Cameron Dennis, CEO of Banyan, added that key management is a critical issue. He pointed out ways to simplify these processes with tools like FastAuth. Dennis added that addressing the noticeable gap in cross-chain liquidity should be a focus. He believes that a true multichain future that drives adoption will solve key and wallet management for a better UX.

    - - - -

    “Reflecting on a decade in this space, the competitive landscape has shifted,” mused Mary Beth Buchanan from the Cardano Foundation who is also an advisor to NEAR, “Earlier, exchanges hesitated to collaborate, fearing a loss of advantage. Today, there’s a collective push to learn from one another, ensuring technology works seamlessly for the end user.”

    - - - -

    Cameron believes that reinforcing the current ecosystem is paramount before extending cross-chain efforts, even though creating a decentralized internet remains a resource-intensive endeavor.

    - - - -

    Marieke stressed the importance of open-source technology in attracting top talent. Drawing inspiration from Web2’s approach to 5G standardization, she suggested that Layer 1 leaders could unite in an ‘L20’ alliance to champion unified standards, fostering a unified vision for the industry’s future.

    - - - -

    And that’s a wrap for the official Day 2 sessions at NEAR APAC. From gaming and brand adoption to multi-chain standards and collaboration, it was clear that this first-of-its-kind regional event was a rousing success for developers and the NEAR community alike. Sunday in Saigon rolls on with more side events and after-parties, so stay tuned for the full ICYMI tomorrow.

    -

    The post NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 - /blog/near-apac-day-one-scaling-local-adoption-regional-regulation-and-ai-in-focus/ - - - Sat, 09 Sep 2023 12:14:36 +0000 - - - - - - - - - /?p=20835 - - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. …

    -

    The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

    -]]>
    - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. Held in conjunction with the NEAR Vietnam community and NEAR Foundation, NEAR APAC is showcasing the vibrant crypto and Web3 community across the region as well as the potential of the B.O.S. and Open Web both locally and globally.

    - - - -

    The day was charged with excitement, drawing over 8,000 attendees from various corners of the APAC region and beyond. With Web3 thought leaders, innovators, and enthusiasts converging in Vietnam, Day One of NEAR APAC kicked off with a slew of riveting discussions, industry insights, and speculations on the future of the Open Web with a focus on APAC.

    - - - -

    From discussions around regional growth and investment potential to how AI and blockchain will transform the future of work, here’s everything that went down at an incredible start to NEAR APAC.

    - - - -

    Setting the stage for NEAR APAC with Vietnam in focus

    - - - -

    The event kicked off with a focus on southeast Asia, with NEAR’s Vietnam country director Riley Tran welcoming attendees and providing context as to Asia’s critical role in the overarching development and expansion of Web3. Tran was followed by two NEAR luminaries, CEO Marieke Flament and co-founder Illia Polosukhin.

    - - - -

    “Asia’s young demographics and rapid digital growth, especially in Vietnam, position it as a leader in crypto and blockchain growth,” Riley explained. “With over 100 million new internet users in just three years, Asia’s momentum in Web3 is accelerating”

    - - - -

    Marieke added that the overall NEAR ecosystem remains strong with over 29M active wallets and 650K daily active accounts. She added that a collaborative approach to building tomorrow’s Open Web is critical for tackling significant societal and digital challenges.

    “Today’s Web 2.0 is closed and siloed, with the prevailing digital culture being a toxic dialectic,” Marieke expressed. “But the value loop of an Open Web holds immense promise. We’re already seeing how projects like KaiKai, SWEAT, and PlayEmber can move the needle in the right direction.”

    - - - -

    Echoing Mariek’s sentiment, Illia emphasized that it’s not necessarily about championing a specific blockchain, but about creating a common layer and interface for the Open Web. This is precisely what the Blockchain Operating System (B.O.S.) is in the process of achieving.

    - - - -

    “Looking forward, tech isn’t the only focus,” said Illia. “It’s about blending scalable solutions with user-centric experiences, with the B.O.S. becoming the essential entry point into Web3 for both users and developers.”

    - - - -

    Asia’s role in mainstream adoption and regulatory hurdles

    - - - -

    The push for mainstream blockchain adoption in APAC was also in focus on Day One, with NEAR Foundation CMO Jack Collier leading a panel discussion on current adoption challenges and how APAC can potentially lead the way in overcoming them.

    - - - -

    “I’m extremely bullish on gaming as a key part of mass adoption,” opined Don Pham, Google Cloud’s regional Web3 specialist. “Vietnam is the birthplace of Axie Infinity, which is just the beginning of blockchain gaming’s potential. Use cases like loyalty, gaming, and music NFTs combined with better UX will likely be the path forward.”

    - - - -

    The discussion dove deeper into the importance of user experience in the adoption of blockchain. Marieke reiterated that while technology forms the backbone, the real test will be simplifying the user journey, which can significantly hasten adoption across the APAC region as well as globally.

    - - - -

    Regulation was also in focus with a panel about blockchain policies and APAC’s vision for governments and associations. Mary Beth Buchanan, a board member of the Cardano Foundation, drove home the need for regulatory clarity while discussing regional frameworks in countries like Hong Kong.

    - - - -

    “The biggest challenge is not necessarily regulation, but lack of clarity,” observed Buchanan. “If regulations are unclear that will cause investors not to want to invest in the space. Builders become hesitant to build and users aren’t going to know what the rules are. Regulators need to recognize that clarity is what everyone wants.”

    - - - -

    Spotlight on Artificial Intelligence during the afternoon sessions

    - - - -

    Day One of NEAR APAC dedicated a significant chunk of its schedule to exploring the intricate interplay between AI and blockchain, particularly their role in APAC’s future technology and Web3 landscape. Illia took the stage just after the lunch break to discuss the Convergence of AI and Web3, diving deep into AI-empowered DAO and the future of AI-assisted work.

    - - - -

    “While technologies like ChatGPT have found product market fit, much of AI is still siloed and doesn’t empower open source communities and projects,” Illia posited. “Web3 can operate in the middle, with AI models incorporating all participants and data sources. DAOs, for example, can be co-piloted by AI to achieve goals and KPIs faster and more efficiently.”

    - - - -

    In the following panel discussion entitled “The Roles of Blockchains in an AI World,” Illia was joined by several AI and blockchain experts from the APAC region. One of the more distinguished panel members was Dr. Nguyen An Khuong, a lecturer and blockchain researcher from Ho Chi Minh University of Technology, who provided an academic perspective. 

    - - - -

    “We have a lot of research endeavors in Vietnam around ensuring AI’s ethical applications using blockchain,” commented Dr. Nguyen. “We’re looking at how transparency and accountability in AI decisions can be drastically improved with blockchain technology. Combining a neutral AI with a blockchain’s public ledger could enhance the ecosystem and foster wider adoption.”

    - - - -

    Illia drove home that the potential “Skynet” scenario of AI taking over the world is mostly a projection of what humans might do if they were given supercomputing powers. In reality, developments like the B.O.S. and NEAR Tasks will aid humans in success and productivity, with AI agents acting as middlemen for assistance, sourcing, and even creativity.

    - - - -

    Day One of the first-ever NEAR APAC was a rousing success, with these highlights just being the tip of the iceberg. The crowd was treated to bánh mì’s and Manga cosplay during lunch, B.O.S. building and gaming workshops on the Builder Stage, and an awe-inspiring NFT gallery from APAC creators.

    - - - -

    As the sun sets in Saigon, the NEAR Foundation couldn’t be more appreciative of the Vietnamese crypto community. The momentum rolls on tomorrow with Day Two, so stay tuned for more updates and insights around emerging APAC trends in Web3, how blockchain gaming is taking off in Asia-Pacific, and local DeFi developments. 

    - - - -

    If Day One was any indication, the NEAR community’s growth, presence, and development in APAC will only continue accelerating through 2023 and beyond!

    -

    The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Update on the Grassroots Support Initiative - /blog/update-on-the-grassroots-support-initiative/ - - - Mon, 28 Aug 2023 16:14:02 +0000 - - - - - /?p=20816 - - One of the things the NEAR Foundation has always been most proud of is the passion and enthusiasm of our …

    -

    The post Update on the Grassroots Support Initiative appeared first on NEAR Protocol.

    -]]>
    - One of the things the NEAR Foundation has always been most proud of is the passion and enthusiasm of our builders and grassroots projects — something we have seen demonstrated again since the recent post about the NDC. Over the past week alone, over 30 projects have reached out to the Ecosystem Team and a number of conversations are already underway. This has allowed NEAR Foundation to begin mapping out current needs, and understand the best way to provide support that will ensure the NEAR ecosystem remains a vibrant, open, and accessible place to build. 

    - - - -

    For us at the Foundation, hearing directly from builders provides invaluable insight into the state of the ecosystem and how we can best continue to support the people and projects that make it what it is. What we have heard so far is that while financial support is important as the NDC fully ramps up, every project has a unique set of needs that requires a holistic approach to provide the right support, and that simply re-starting a grants program is not the right solution. To make sure that we get as many perspectives from across the ecosystem, we will be leaving the form open for one more week (until September 4th) to give anyone who needs support a chance to have their voice heard.

    - - - -

    Once the form is closed and we have had a chance to review all of the inputs, we will then begin setting out a broader plan — in alignment with the NDC — to ensure projects get the support they need as we continue moving forward on the path to decentralization. The moment we have the full insights from these conversations, which should be within the next few weeks, we will share them in a follow-up blog post along with a clear plan on how we will be moving forward. 

    - - - -

    We are excited to have so much interest from builders, and look forward to creating a plan that can help keep grassroots projects engaged and building.

    - - - -

    You can sign up for a time to speak with the Ecosystem Relations Team here.  

    -

    The post Update on the Grassroots Support Initiative appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris - /blog/near-at-ethcc-highlights-sustainability-and-the-bos-take-center-stage-in-paris/ - - - Thu, 20 Jul 2023 17:00:00 +0000 - - - - - - - /?p=20742 - - Missed out on NEAR’s rendezvous at ETHCC 2023 in Paris? No need to worry. In this roundup, all NEAR enthusiasts …

    -

    The post NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris appeared first on NEAR Protocol.

    -]]>
    - Missed out on NEAR’s rendezvous at ETHCC 2023 in Paris? No need to worry. In this roundup, all NEAR enthusiasts can catch up on the enlightening presentations by BOS, Web3, and blockchain experts. You’re in the perfect place to delve into notable announcements made during the conference, from NEAR signing up to the Ethereum Climate Platform to an epic new interactive Polygon zkEVM app dashboard.

    - - - -

    ICYMI, it’s time to dive into all the key speeches, events, and announcements that unfolded in the City of Lights over this past weekend.

    - - - -

    Interactive Polygon zkEVM app dashboard launches on the BOS

    - - - -

    In the most significant partnership announcement of ETHCC, an interactive Polygon zkEVM app dashboard has launched on the Blockchain Operating System (BOS). This integration will not only increase accessibility and discoverability for zkEVM developers and users on the open web but also vastly improve user experience. 

    - - - -

    The collaboration is set to accelerate the creation of dApps that will onboard billions of users into the open web. The new Polygon zkEVM dashboard now combines the benefits of zero-knowledge technology with the power of the BOS to unlock even more seamless onboarding to the open web. 

    - - - -

    The dashboard brings a new suite of zero knowledge development capabilities to zkEVM developers and lets them build apps that can reach more users from day one. It’s a groundbreaking partnership that brings together the NEAR and Polygon ecosystems, two of the most innovative names in Ethereum and blockchain scalability.

    - - - -

    NEAR makes waves with sustainability commitment

    - - - -

    NEAR Foundation made a significant stride in its commitment to Web3 sustainability. As part of its ongoing efforts, NEAR signed up to the Ethereum Climate Platform, demonstrating its resolve towards minimizing the environmental impact of Web3 development. This move aligns with NEAR’s ethos and commitment to sustainable and scalable blockchain solutions.

    - - - -

    Marieke storms the BOS-tille at “Funding the Commons”

    - - - -

    Adding to the list of notable NEAR occurrences during ETHCC, NEAR Foundation CEO, Marieke Flament, was a keynote speaker at the “Funding the Commons” event held at Sorbonne Université on July 15. Marike’s message was one of bringing more ethics and equity to the entire blockchain and Web3 ecosystem.

    - - - -

    In her speech, titled “The Open Web is NEAR: How the BOS, NDC, and DAOs are creating a Decentralized Web,” Marieke explored how NEAR Foundation serves the ecosystem by building public goods like the BOS, DevHub, NDC, DAOs, and more. 

    - - - -

    “Funding the Commons” is an event designed to complement the Ethereum Community Conference, promoting connection amongst participants, and fostering new collaborations and projects. The event organizers also planned a dinner on July 15 at Le Procope Paris, where Marieke was among the most notable invited guests.

    - - - -

    Unpacking Insights: notable talks and events at ETH CC

    - - - -

    Near @ ETHCC wasn’t just a gathering of blockchain enthusiasts, but a hotbed of innovative discussions. Illia Polosukhin, co-founder of NEAR, and Nadir Dabit’s conversation around decentralized social networks piqued particular interest. They hinted at a shift in how we’ll connect and share information in the future and the potential role of decentralized social on the BOS.

    - - - -

    Matt Stephenson, head of crypto economics at crypto investment firm, Pantera Capital, took the audience on a thrilling Day Two journey through the intricacies of behavioral game theory. He showcased how game theory could be leveraged in this space, offering a unique lens to examine, understand, and potentially predict blockchain trends.

    - - - -

    Near @ ETHCC didn’t skimp on forward-looking conversations either. A panel featuring Max Mersch of Fabric Ventures, Maggie Love from SheFi, and Bilal El Alamy of PyratzLabs posed a pertinent question: “What’s the Next Big Use Case Being Built in the Bear Market?” Each speaker provided valuable insight about both challenges and opportunities posed by bear markets.

    - - - -

    Ecosystem Updates

    - - - -

    Despite the focus on the Near @ ETHCC side event itself, the NEAR ecosystem saw significant developments and milestones during the past few days.

    - - - -
      -
    • The NEAR Digital Collective’s I-AM-HUMAN movement has crossed 2,000 members in the NEAR ecosystem. The initiative allows users to vote, elect candidates for office, and shape the future of NEAR. You can sign up here.
    • - - - -
    • MintbaseSearch has gone live on NEAR mainnet along with its own ChatGPT plugin. Mintbase now enables users to ask anything about NFTs on the NEAR Protocol. More details here.
    • - - - -
    • Opolis has raised $6.6M in a bridge fundraising round with support from NEAR Foundation, Polygon Ventures, and Draper Capital. Read more details about the full announcement here.
    • - - - -
    • Black Snow: Battle For Earth, launched its demo version, offering an exciting free-to-play-and-earn experience that aims to enhance the NEAR ecosystem by boosting user count and transactions. Check out the demo here
    • -
    - - - -

    C’est la vie in Paris as ETHCC 2023 wraps up. As we reflect on these dynamic days, it’s clear that the future of NEAR and the BOS is exciting and full of potential. From environmental commitments to bold collaborations and fascinating talks, NEAR’s Parisian journey was full of engagement, enlightenment, and enthusiasm for everyone involved.

    -

    The post NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation PR Roundup for June - /blog/near-foundation-pr-roundup-for-june/ - - - Tue, 04 Jul 2023 00:00:00 +0000 - - - - - - - /?p=20694 - - As June comes to a close, summer in the NEAR ecosystem is heating up with a wave of new announcements, …

    -

    The post NEAR Foundation PR Roundup for June appeared first on NEAR Protocol.

    -]]>
    - As June comes to a close, summer in the NEAR ecosystem is heating up with a wave of new announcements, events, media appearances, and more. Not to mention a few notable celebrities bringing some star power into NEAR’s orbit. Here’s a rundown of all the newsworthy NEAR happenings over the past month.

    - - - -

    Sammy Hagar and Guy Fieri jump into NFTs on NEAR

    - - - -

    In the US, Grammy-winning musician Sammy Hagar and celebrity chef Guy Fieri joined the NEAR ecosystem, teaming up with NEAR on-ramp Trident3 to launch an NFT loyalty program. The Santo Spirits Club loyalty program, as reported by Coindesk and Decrypt, will enable tequila fans to earn on-chain tiered perks and an opportunity to win a virtual tasting with the duo.

    - - - -

    Mirae Asset, MARBLEX, and Vortex boost South Korea

    - - - -

     Over in Asia, NEAR Foundation continued to make inroads in South Korea. Mirae Asset, a subsidiary of Asia’s largest financial group, announced a partnership to research Web3’s role in global business. Per  Bloomberg, Mirae Asset will collaborate with NEAR Foundation to strengthen the Web2/3 business network and identify opportunities for real-world blockchain value creation.

    - - - -

    Meanwhile,  Blockchain Reporter broke that Marblex – a Korean blockchain infrastructure provider for high-quality gaming – will integrate NEAR protocol with Marblex’s gaming universe, enhancing user convenience and Web3 adoption. NEAR will integrate with MARBLEX’s WARP Bridge, taking advantage of NEAR’s high scalability and speed to improve the gaming experience in Web3. The partnership will also enable joint marketing initiatives and events, boosting awareness of the global blockchain gaming market. 

    - - - -

    Then there’s Vortex Gaming, a Web3 subsidiary of Inven, the largest game media community in Korea. Coverage by European Gaming reported that Vortex will leverage NEAR protocol to integrate a  gaming community encompassing Web2 and Web3 by building innovative infrastructure for gaming developers. The NEAR Foundation and Inven will also collaborate on marketing and business development, adding to NEAR’s exciting Web3 gaming ecosystem.  

    - - - -

    Skoda launches metaverse for auto fans in India

    - - - -

    Czech Automobile Manufacturer Skoda entered the Metaverse in the world’s most populous country, giving users an opportunity to explore, collect and own digital art pieces on NEAR. The platform, as reported by Cointelegraph and Entrepreneur India, will enable NFT owners to access exclusive perks and rewards, while allowing owners to trade digital artwork in the future. 

    - - - -

    SailGP christens The Dock for decentralized fandom

    - - - -

    In more partnership news, the Global racing league SailGP and Oracle announced the launch of “The Dock”, a decentralized fan engagement platform powered by Oracle and NEAR’s ongoing partnership to bridge the worlds of Web2 and Web3. As reported by SailWeb, The Dock will revolutionize how fans follow SailGP, increasing engagement through exclusive content and enabling fans to earn points, redeemable for exciting rewards including VIP access to SailGP events and more.

    - - - -

    Alibaba Cloud and Women in Web3 headline Collision

    - - - -

    The NEAR ecosystem took over Toronto this month, showcasing the best of BOS at Collision 2023,  one of the world’s biggest tech conferences.  During the event, the NEAR Foundation announced a groundbreaking partnership with Alibaba, enabling developers across Asia to launch new NEAR validators with Alibaba Cloud’s infrastructure as a service. 

    - - - -

    The partnership was covered in myriad outlets such as Coindesk, Journal du Coin, and BTC Echo. Partnering with Alibaba means the NEAR ecosystem will have access to Remote Procedure Calls (RPC) and enable users to interact with NEAR’s Blockchain Operating System while using Alibaba Cloud’s infrastructure. 

    - - - -

    The NEAR Foundation also released the Women in Web3 Changemakers List 2023, celebrating the achievements of extraordinary women throughout the Web3 ecosystem. As reported by Tech Funding News, the ten women were selected by the public and hail from all corners of the globe, following hundreds of nominations from the Web3 community. 

    - - - -

    Leadership viewpoints on media and social fairness

    - - - -

    Illia Polosukhin, Founder of NEAR and CEO of Pagoda, took the time to write a thought leadership piece in Blockworks about crypto’s potential to transform how we interact with the media. Illia sets out the emerging problem with the status quo: bad actors are beginning to utilize generative AI to dramatically scale up misinformation campaigns. 

    - - - -

    However, Illia explains that blockchain-based “sign-and-trace” systems can enable the public to reliably source and validate real news stories, with a legitimate trail of sources available online.

    - - - -

    CEO of NEAR Foundation Marieke Flament also penned an article for London’s leading daily business paper CityAM about using Web3 to build a fair and inclusive digital world.  “Too often technology has only benefited the few: those who have money, those who have power, or those of a certain gender, ethnicity, or skin color.

    - - - -

    But this doesn’t need to be the case,” she explained. “Technology can and should be in the service of all people. But to achieve this, we will need a change in perspective, something that Web3 can help us achieve.”

    - - - -

    Marieke also talked about blockchain, Web3, and BOS on a podcast hosted by the editor Journal du Coin – France’s leading crypto media outlet, and for a video interview with Fintech Finance at the Paris Fintech Forum. 

    - - - -

    That’s all for this month. If we missed anything or want to share anything for next month’s roundup, get in touch!

    -

    The post NEAR Foundation PR Roundup for June appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Korea Hub: June 2023 Highlights - /blog/near-korea-hub-june-2023-highlights/ - - - Tue, 04 Jul 2023 00:00:00 +0000 - - - - /?p=20685 - - Since launching in November of 2022, NEAR Korea Hub has hit a number of major milestones in the Korean Web3 …

    -

    The post NEAR Korea Hub: June 2023 Highlights appeared first on NEAR Protocol.

    -]]>
    - Since launching in November of 2022, NEAR Korea Hub has hit a number of major milestones in the Korean Web3 industry. The Hub has significantly contributed to the expansion of the Web3 ecosystem over the past 6 months by forming partnerships with leading domestic game companies, providing generous developer support, and forging long-term relationships with college blockchain clubs. 

    - - - -

    Let’s take a look at all of the exciting things that came out of the NEAR Korea Hub during NEAR co-founder Illia Polosukhin’s visit.

    - - - -

    NEAR co-founder Illia Polosukhin talks Web3 and AI

    - - - -
    - - - -

    A number of major Korean media outlets conducted interviews with Illia on NEAR Protocol’s Web3 and AI strategy. Illia pointed out that NEAR Protocol’s principle focus is on the Blockchain Operating System (BOS) and FastAuth, an important new product that provides a better-than-Web2 onboarding experience that can help foster the mass adoption of Web3.
    Here is a list of Illia’s interviews (the coverage is in Korean):

    - - - -
      -
    • Hankyung (Korea Economy) – “Blockchain and AI will Create the Best Synergy”
    • - - - -
    • Kyunghyang – Blockchain AI Synergy will be Amazing
    • - - - -
    • Kyunghyang Weekly – Is Fake News the Fault of Generative AI?
    • - - - -
    • TechM – Korean Games Leading in Web3.0 Business Model… Synergy with AI and Blockchain
    • - - - -
    • CoinDesk – Popularization of Web3 Starts from User-Centered Thinking
    • -
    - - - -

    Illia’s talk at ETHSeoul & Buidl Asia — June 2nd – June 7th

    - - - -
    - - - -

    Illia attended ETH Seoul and BUIDL Asia — both major Web3 events — as the first keynote speaker, where he gave a speech entitled “Web3’s Future, BOS.”  

    - - - -

    “One of the major problems with Web3 is the user inconvenience when making and using wallets,” Illia pointed out. “With BOS, which provides a Web2-like experience and ease for developers and users, NEAR Protocol wants to connect all blockchain and users to onboard 1 billion users to Web3”. He also added: “BOS acts as a gateway to combine all features such as DeFi and NFT which are scattered around the Web3 network”.

    - - - -

    Illia further emphasized the importance of the Korean market and shared achievements of NEAR Korea Hub. 

    - - - -

    Illia’s Speech at the Gyeonggi Province ‘AI Expert Policy Roundtable’ — June 8th

    - - - -
    - - - -

    Illia was invited to give his speech “The Intersection of AI and Web3” at the “AI Expert Policy Roundtable” hosted by Gyeonggi-do, the largest province in Korea. He also discussed potential partnership opportunities with the governor of Gyeonggi-do, who is also a presidential candidate.

    - - - -
    - - - -

    In his speech, Illia noted: “AI should be open source instead of closed source. We need to find institutional measures to secure and manage high-quality data based on Web3 technology in the public domain. The combination of Web3 and AI has the potential to act as a pillar of the new policy for mass adoption. NEAR Protocol will be the strongest use case if allowed to become a bridge for onboarding users to Web3”.

    - - - -

    Business Meetings and Major Partnerships 

    - - - -

    Meetings with global companies 

    - - - -
    - - - -

    NEAR Foundation and NEAR Korea Hub hosted meetings between Illia and the management of major global companies in Korea. There were constructive discussions with companies looking to expand into Web3, which have already shown significant results.

    - - - -

    From having small discussions to signing MOUs with major companies including Netmarble and Mirae Asset, the Korea Hub laid the foundation for solid collaboration. This foundation will serve as an important first step in expanding the Web3 industry in Korea.

    - - - -

    MARBLEX Partnership — June 5th

    - - - -

    NEAR Foundation has joined forces with MARBLEX, a blockchain subsidiary of Netmarble, to Expand Korea’s Web3 Gaming Industry with Aurora. Netmarble is a global top 7 game publisher with 1M+ MAU in the last three games.

    - - - -

    Through this strategic business agreement, NEAR Foundation and MARBLEX plan to achieve mutual growth by linking the NEAR blockchain and Aurora with WARP Bridge to enable interactive collaboration, promote global joint marketing events, and enhance brand awareness. Furthermore, competitive and casual gamers alike will now be able to enjoy a variety of games and exclusive content through NEAR’s Blockchain Operating System (BOS).

    - - - -

    More information on the NEAR Blog and Twitter.

    - - - -

    Mirae Asset Partnership – June 7th

    - - - -
    - - - -

    In a pivotal partnership for the blockchain industry, NEAR Foundation is joining forces with Mirae Asset — a subsidiary of Asia’s largest financial group Mirae Asset Global — to help bridge the gap between traditional finance and Web3.

    - - - -

    Through this strategic business agreement, NEAR Foundation and Mirae Asset aim to expand the Web3 business domain and lead the global financial paradigm by conducting joint research and collaboration on Real-World Assets Technology. Furthermore, both parties have agreed to organize global joint events to enhance brand awareness and establish a mutual support system to strengthen the Web2/Web3 business network.

    - - - -

    More information on the NEAR Blog and Twitter.

    - - - -

    Vortex Gaming Onboarding — June 22nd

    - - - -
    - - - -

    NEAR Foundation is excited to announce a new partnership with Vortex Gaming, a Web3 subsidiary of the leading game industry INVEN. INVEN is the largest game media·community in Korea, with a monthly active user (MAU) count of 7.2 million.

    - - - -

    With the guidance of the NEAR Korea Hub, NEAR Foundation and Vortex Gaming plan to achieve mutual growth by collaborating to support the growth of Vortex Gaming; strengthen the NEAR game ecosystem; conduct offline hackathons and events to foster developer talent; and enhance brand awareness and business networks.

    - - - -

    Read the full announcement on the NEAR Foundation blog

    - - - -

    Major Events

    - - - -

    Glitch Hackathon Winners Dinner – May 30th

    - - - -
    - - - -

    During the Glitch Hackathon, which took place from May 19th to 21st, Illia and the NEAR Korea team organized a meetup event with the participants of the NEAR Track. Despite being a multi-chain hackathon with five mainnets participating, the NEAR Track had the highest number of participants, and PokaTika from the NEAR Track won the hackathon.

    - - - -

    NEAR Korea Hub’s constant support throughout the hackathon helped achieve these remarkable results. NEAR Korea Hub provided comprehensive support and mentoring to the participating teams. Furthermore, the meetup event, which was hosted to continuously build the Korean Web3 ecosystem and establish strong relationships with new builders, saw participation from over 70 builders.

    - - - -

     It provided builders with valuable opportunities to showcase their products. A considerable number of teams participating in the Glitch Hackathon also took part in the ETHSeoul Hackathon, which serves as evidence of the growth of the domestic builder ecosystem for NEAR Protocol.

    - - - -

    ETHSeoul Hackathon — June 2nd – 4th

    - - - -
    - - - -

    NEAR Protocol held “NEAR Track at ETHSeoul”, an event for the blockchain ecosystem and community. ETHSeoul served as a platform for discussions on Web3 mass adoption, with participation from 46 hackathon teams (including over 250 builders) and 800 Web3 users. 

    - - - -

    Among the 46 participating teams, 24 teams chose NEAR Protocol despite the event’s focus on Ethereum, indicating the strong interest and influence of NEAR in Korea. 

    - - - -

    At NEAR Track, after an intense competition among outstanding teams, the following teams emerged victorious:

    - - - -
      -
    • 1st. Pokatika, is a mobile application that enhances the post-event experience with unique NFT photo cards.
    • - - - -
    • 2nd. On Stage(What’s Next), turns artists’ characters and illustrations into NFTs, providing AI training data to NFT holders for integrating them into new AI images.
    • - - - -
    • Co-3rd. AGLIPPA, combines blockchain and AI to democratize artistic creation, allowing anyone to transform personal experiences into everlasting NFT.
    • - - - -
    • Co-3rd. 0xtail, matches football enthusiasts for a football game.
    • -
    - - - -

    BUIDL Asia — June 6th – 7th

    - - - -
    - - - -

    BUIDL Asia 2023 provided a platform for various projects and communities to come together, share insights, and discuss development trends. The event, organized by Erica Kang — a prominent figure representing Korean Web3 women — garnered significant media and corporate attention.

    - - - -

    Illia and Alex Shevchenko, co-founder of Aurora, participated as speakers and shared insights on the NEAR ecosystem’s current trends and future prospects. Additionally, NEAR Korea Hub operated a booth at the event, allowing attendees to experience the Blockchain Operating System (BOS) first-hand.

    - - - -

    NEAR x Hashed Night — June 8th

    - - - -
    - - - -

    NEAR x Hashed Night was a highly successful event co-organized with Hashed, a distinguished venture capital firm representing the Web3 industry. The event witnessed the participation of 35 partner companies and an impressive attendance of 410 individuals. Illia led the event alongside key executives from the NEAR ecosystem who served as distinguished speakers. They provided insightful introductions to NEAR Protocol and its notable projects, facilitating valuable networking opportunities for all attendees.

    - - - -

    Speakers like Alex Shevchenko, co-founder of Aurora, Bowen Shen, co-founder of Proximity Labs, and Ran Yi, co-founder of Orderly Network attended the event. Representatives from Mirae Asset and MARBLEX, who recently formed a strategic partnership with NEAR Foundation, were also present. It was amazing to see so many major Web2 and Web3 companies in one place, as it created a fantastic opportunity to explore new business prospects.

    - - - -

    As one attendee noted: “The place was so crowded that it was running out of oxygen”. This achievement was made possible thanks to NEAR’s growing reputation in the Korean Web3 industry and the onboarding of numerous builders through Glitch and ETHSeoul Hackathon.

    - - - -

    NEAR Korea is really excited about NEAR’s upcoming events, including Korea Blockchain Week(KBW), and they look forward to high expectations and participation!

    - - - -

    Raising NEAR awareness in Korea

    - - - -

    Overall, Illia’s time in Korea along with the hard work of NEAR Korea Hub has greatly enhanced the awareness and influence of NEAR Protocol within Korea. This was made possible through the active support of the NEAR Foundation and the strong collaboration with ecosystem partners. 

    -

    The post NEAR Korea Hub: June 2023 Highlights appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Web3’s Leading Ladies: NEAR Foundation Honors 2023’s Women Changemakers  - /blog/web3s-leading-ladies-near-foundation-honors-2023s-women-changemakers/ - - - Thu, 29 Jun 2023 13:00:00 +0000 - - - - /?p=20674 - - As Collision 2023 rolls on, NEAR Foundation announced the ten winners of the Women in Web3 Changemakers award. These exceptional …

    -

    The post Web3’s Leading Ladies: NEAR Foundation Honors 2023’s Women Changemakers  appeared first on NEAR Protocol.

    -]]>
    - As Collision 2023 rolls on, NEAR Foundation announced the ten winners of the Women in Web3 Changemakers award. These exceptional women, chosen from a pool of 200 nominees worldwide, underline the significant contributions women can make throughout the Web3 ecosystem.

    - - - -

    “These Changemakers show us that together we can make a positive difference and shape the collective good of Web3,” says Marieke Flament, CEO of NEAR Foundation. “We must continue to help one another and nurture a strong, international community that includes both men and women.”

    - - - -

    The Women in Web3 Changemakers competition illuminates the groundbreaking work of influential women in the Web3 space. As this platform appreciates the significant strides made by these remarkable women, it’s important to recognize the unique journeys of all ten winners, each of whom has contributed to the evolution of the blockchain industry.

    - - - -

    Women behind the success of Web3 honored at Collision

    - - - -

    Candidates for the Women in Web3 Changemakers award come from all corners of the globe, each making unique marks on the Web3 ecosystem in their own respective ways. Each of the following women made the final top ten because they’ve carved out a niche, advocated for transformative solutions, and been a part of breakthrough blockchain initiatives.

    - - - -

    The full list of winners includes:

    - - - -
      -
    • Emily Rose Dallara: Web3 Leadership Coach and Podcast Producer
    • - - - -
    • Janine Grainger:  Co-founder and CEO, Easy Crypto AI
    • - - - -
    • Bridget Greenwood: Founder, The Bigger Pie
    • - - - -
    • Cathy Hackl: Chief Futurist and Chief Metaverse Officer at Journey
    • - - - -
    • Erica Kang: Founder and CEO, KrptoSeoul
    • - - - -
    • Irina Karagyaur: Founder and Director, BQ9
    • - - - -
    • Veronica Korzh: Co-founder and CEO, Geekpay
    • - - - -
    • Zoe Leavitt: Founder and CEO, Glass
    • - - - -
    • Alana Podrx: Founder and CEO, Eve Wealth
    • - - - -
    • Yaliwe Soko: Chair, United Africa Blockchain Association
    • -
    - - - -
    - - - -

    Handpicked by public vote from a pool of hundreds of applications, these Changemakers were assessed on criteria of inclusion, influence, and innovation. Each woman demonstrated the ability to drive societal good, make a substantial impact in the Web3 community, and contribute to critical projects, uplifting the global female presence in the Web3 landscape.

    - - - -

    “The Changemakers show that we can forge our own path into the ecosystem and create a collective narrative that has the power to break down barriers to entry and make Web3 more inclusive for everyone,” Flament continues. “I’m extremely honored to be championing this initiative and to spotlight these exceptionally talented women.”

    - - - -

    The diverse journeys of Women in Web3 Changemakers

    - - - -

    All ten winners of the Women in Web3 Changemakers awards come from a variety of backgrounds, geographies, and skill sets. Yaliwe Soko, for instance, is championing opportunities in Web3 to alleviate poverty and provide opportunities across Africa. Others like Cathy Hackle are icons in spheres like the metaverse.

    - - - -

    Erica Kang, meanwhile, spearheads KryptoSeoul and was responsible for  BUIDL ASIA 2022 conference, attended by ETH co-founder Vitalik Buterin and NEAR Protocol co-founder Illia Polosukhin. And through her organization The Bigger Pie, Bridget Greenwood is building an entire support ecosystem to advance both women and minorities in blockchain and crypto.

    - - - -

    Another changemaker, Emily Rose Dallara, is a Web3 leadership coach and podcast producer, who uses a Holistic Growth Coaching method to help overwhelmed leaders thrive — without the burnout. Helping to make digital assets more accessible, Kiwi-born Janine Grainger is the co-founder and CEO of Easy Crypto, a simple and secure way for anyone to get involved in crypto. Irina Karagyaur, the founder and director of BQ9, is working to turn great ideas into even better Web3 products through her crypto-fintech boutique advisory firm. 

    - - - -

    With Geekpay, co-founder and CEO Veronica Korzh is streamlining and securing digital payments without the stress and need for long wallet addresses. Zoe Leavitt, the founder and CEO of Glass, has set up shop in the loyalty space, allowing customers to level up their nights out by earning rewards from their favorite alcohol brands. And Alana Podrx, the founder and CEO of Eve Wealth, has created a community of women who share portfolios, co-invest, and support each other in self-guided wealth management through peer-to-peer learning. 

    - - - -

    Celebrating the individual successes and collective efforts of these Changemakers reflects the massive impact and influence of women in Web3. From Africa to Asia, from the metaverse and marketing to crypto media and education, each winner has blazed her unique trail and is impacting the Web3 ecosystem, inspiring both men and women to do the same.

    - - - -

    “I’m grateful for the hundreds of nominations we received from peers and employers who took the time to highlight the many achievements that the global female workforce has made to their organizations,” Flament continues. “By casting their ballot, the international community has shown that the contributions of women are being noticed.” 

    - - - -

    By celebrating the contributions of these Changemakers, the NEAR Foundation underscores its commitment to diversity, inclusion, and innovation in the Web3 space. As females in crypto continue to make strides, it’s vital to recognize and appreciate the efforts of women who are paving the way for an equitable and inclusive future in Web3 and beyond.

    -

    The post Web3’s Leading Ladies: NEAR Foundation Honors 2023’s Women Changemakers  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/community/index.html b/public/blog/tag/community/index.html deleted file mode 100644 index ae8718061..000000000 --- a/public/blog/tag/community/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – NEAR Protocol
    <- Back to all posts

    Tag: Community

    19 posts

    Filter by tags

    Show all tags ->

    Filter by date

    Clear
    \ No newline at end of file diff --git a/public/blog/tag/community/page/2/index.html b/public/blog/tag/community/page/2/index.html deleted file mode 100644 index 383232e81..000000000 --- a/public/blog/tag/community/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 2 of 3 – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/community/page/3/index.html b/public/blog/tag/community/page/3/index.html deleted file mode 100644 index 440bf4554..000000000 --- a/public/blog/tag/community/page/3/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Community Archives – Page 3 of 3 – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/competition/feed/index.xml b/public/blog/tag/competition/feed/index.xml deleted file mode 100644 index 5a6adf55b..000000000 --- a/public/blog/tag/competition/feed/index.xml +++ /dev/null @@ -1,187 +0,0 @@ - - - - Competition Archives – NEAR Protocol - - /blog/tag/competition/ - - Wed, 31 May 2023 17:04:58 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Competition Archives – NEAR Protocol - /blog/tag/competition/ - 32 - 32 - - - NEAR FastAuth Competition Terms and Conditions - /blog/near-fastauth-competition-terms-and-conditions/ - - - Wed, 31 May 2023 15:22:00 +0000 - - - - /?p=20552 - - The following terms and conditions (the “Terms”) govern the use of the NEAR Foundation Fast Auth Competition (the “Competition”) provided …

    -

    The post NEAR FastAuth Competition Terms and Conditions appeared first on NEAR Protocol.

    -]]>
    - -
  • Introduction:
  • - - - - -

    The following terms and conditions (the “Terms”) govern the use of the NEAR Foundation Fast Auth Competition (the “Competition”) provided by NEAR Foundation (“we,” “us,” “our” or the “Company”). By participating in the Competition, you (“you” or “Participant”) agree to be bound by these Terms. If you do not agree to these Terms, you may not be eligible to participate in the Competition or receive any rewards. For more information on FastAuth, please visit the link here

    - - - -
      -
    1. Eligibility:
    2. -
    - - - -

    The Competition is available only to individuals who are at least 18 years old. By participating in the Competition, you represent and warrant that you are at least 18 years old.

    - - - -
      -
    1. Participation in the Competition:
    2. -
    - - - -

    We are excited to provide NEAR users with the ability to win, you acknowledge and agree that any information you provide may be used by us in connection with the Competition. To participate, users must follow these steps: 

    - - - -
      -
    1. Participants must submit a video of their screen while opening a NEAR wallet using FastAuth. The video should be in the form of a screen recording. All videos must be legible and any sensitive information can be blacked out. 
    2. - - - -
    3. The Participant must submit the video to their personal Twitter account using the hashtags #FastAuthTimeTrial and #NEARistheBOS by June 9th, 13:00 UTC.
    4. - - - -
    5. Videos submitted after the deadline will not be accepted. 
    6. - - - -
    7. The time taken to open the wallet, will be taken into consideration. 
    8. - - - -
    9. Winners will be notified via Twitter and announced on the Near social media channels on June 12th.
    10. - - - -
    11. Competition Prize:
    12. -
    - - - -

    Five Selected winners will be announced and contacted via email. The Competition prize consists of: 100 NEAR tokens for each winner. 

    - - - -

    5. Disclaimer:

    - - - -

    The Prize is awarded ‘as is’ and without warranty of any kind, express or implied, including without limitation any warranty of merchantability or fitness for a particular purpose. The Competition organizers and affiliated companies make no representations or warranties regarding the prize or its use and are not responsible for any claims arising out of or in connection with the prize or its use. The Competition event and prizes are solely sponsored and organized by us, and any reference to third-party companies or organizations is for informational purposes only. 

    - - - -
      -
    1. Limitation of Liability:
    2. -
    - - - -

    The Competition organizers, sponsors, and affiliated companies are not responsible for any injury, loss, or damage to property or person, including death, arising out of participation in the Competition or use or misuse of the prize.

    - - - -
      -
    1. Intellectual Property:
    2. -
    - - - -

    The Service, including all content provided by the expert(s) or other participants, is protected by copyright and other intellectual property laws. You may not reproduce, distribute, or create derivative works from any content provided by the Service without our prior written consent.

    - - - -
      -
    1. Modification of Terms:
    2. -
    - - - -

    We reserve the right to modify these Terms at any time without notice. Your continued use of the Service following any changes to these Terms constitutes your acceptance of the revised Terms.

    - - - -
      -
    1. Governing Law:
    2. -
    - - - -

    These Terms and your use of the Service are governed by the laws of Switzerland without regard to its conflict of laws provisions.

    - - - -
      -
    1. Dispute Resolution:
    2. -
    - - - -

    Any disputes arising out of or in connection with these Terms or the Service will be resolved through binding arbitration in accordance with the rules of the Switzerland Arbitration Association.

    - - - -
      -
    1. Entire Agreement:
    2. -
    - - - -

    These Terms constitute the entire agreement between you and us with respect to the Competition and supersede all prior or contemporaneous agreements and understandings, whether written or oral.

    - - - -
      -
    1. Contact Information:
    2. -
    - - - -

    If you have any questions or comments about these Terms, please contact us at social@near.foundation.

    -

    The post NEAR FastAuth Competition Terms and Conditions appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/competition/index.html b/public/blog/tag/competition/index.html deleted file mode 100644 index 1926ba016..000000000 --- a/public/blog/tag/competition/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Competition Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/consensus/feed/index.xml b/public/blog/tag/consensus/feed/index.xml deleted file mode 100644 index 7858f3f3c..000000000 --- a/public/blog/tag/consensus/feed/index.xml +++ /dev/null @@ -1,440 +0,0 @@ - - - - Consensus Archives – NEAR Protocol - - /blog/tag/consensus/ - - Fri, 28 Apr 2023 23:02:20 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Consensus Archives – NEAR Protocol - /blog/tag/consensus/ - 32 - 32 - - - NEAR at Consensus Highlights - /blog/near-at-consensus-highlights/ - - - Thu, 27 Apr 2023 20:18:30 +0000 - - - - - - /?p=20451 - - NEAR has a monolithic mega-booth at Consensus 2023, where there have been a number of awesome NEAR announcements, talks, and …

    -

    The post NEAR at Consensus Highlights appeared first on NEAR Protocol.

    -]]>
    - NEAR has a monolithic mega-booth at Consensus 2023, where there have been a number of awesome NEAR announcements, talks, and events, including the big news out: the Blockchain Operating System is now live on Near.org and the NEAR Horizon accelerator is open for business. If you haven’t stopped by yet to meet our NEAR experts or are unable to attend, we’ve got you covered with all of the highlights.

    - - - -

    Let’s take a look at everything NEAR at Consensus, including the BOS, NEAR Horizon, a submissions call for the latest edition of Women in Web3, and much more! And stay tuned for more NEAR at Consensus highlights over the next few days.

    - - - -

    The BOS is now live on Near.org

    - - - -
    - - - -

    On April 26th at Consensus, NEAR co-founder and Pagoda CEO Illia Polosukhin and Pagoda Chief Product Officer Alex Chiocchi announced that the Blockchain Operating System (BOS) — a real alternative to the Operating Systems of centralized platforms — is now live at near.org. 

    - - - -

    As a blockchain operating system for an open web, the BOS is accessible to everyone, not just web3 natives. And it makes Web3 and Web2 easier than ever to access and navigate for users and developers alike. With the BOS, you no longer have to choose between decentralization and discoverability. Devs and users get the best of both worlds, whether they are new to Web3 experiences and want to play around, or developers looking to build an open web. 

    - - - -

    Read the full BOS announcement here

    - - - -

    NEAR Horizon: A revolutionary accelerator for Web3 startups

    - - - -
    - - - -

    NEAR Foundation also announced the launch of Near Horizon, a Web3 accelerator program, on the 26th from Consensus. Built on the Blockchain Operating System (BOS), Horizon features a revolutionary marketplace where Web3 startups can find the support they need for building on Near and cross-chain platforms. 

    - - - -

    Together with partners Dragonfly, Pantera, Decasonc, Blockchange, Fabric Ventures, dLab, Hashed, and Factomind, and Outlier Ventures, Near Horizon is on a mission to empower founding teams with the tools and support they require to accelerate the development of sustainable, profitable, innovative startups on Near.

    - - - -

    Near Horizon’s robust network of support is a game-changer for Near builders, offering new opportunities and resources to propel the best minds in the Near ecosystem to success.

    - - - -

    Read the full NEAR Horizon announcement here

    - - - -

    NEAR opens submissions for Women in Web3 Changemakers 2023

    - - - -
    - - - -

    Following its hugely successful launch a year ago, Women in Web3 is back! On Day 2 of Consensus, NEAR Foundation announced the return of its global Women in Web3 Changemakers list.  

    - - - -

    Nominations are now open for 2023! Designed to showcase the talented and socially mindful women who make up the Web3 ecosystem, the initiative will once again spotlight ten exceptional leaders across the international sector and the amazing, sustainable work they do.

    - - - -

    Members of the Web3 community — both men and women — are welcome to nominate and submit the names of female colleagues who they feel should be recognized for their exemplary contribution to Web3. Women who work in Web3 can also nominate themselves. 

    - - - -

    Each nominee should meet the following criteria, which NEAR uses to define impact:

    - - - -
      -
    1. Inclusion – driving ideas that are good for society, sustainable, and socially impactful.
    2. - - - -
    3. Influence – in the community and among peers.
    4. - - - -
    5. Innovation – contributing to interesting and socially impactful projects at work or independently.
    6. -
    - - - -

    The top ten Changemakers will be decided by you — the community! 

    - - - -

    Important Dates for Submissions and Voting

    - - - -

    More details on the voting process will be announced shortly. But here are some important dates.

    - - - -
      -
    • June 1, 2023 — Nominations Deadline
    • - - - -
    • June 5, 2023 — Voting Begins
    • - - - -
    • June 19, 2023 (Midnight) — Voting Ends
    • - - - -
    • June 29, 2023 — 10 Changemakers for 2023 will be announced
    • -
    - - - -

    Those selected will be included in the Women in Web3 Changemakers list, which will be shared with the press and the global community. NEAR will also feature the winners in a special series of video interviews that will air across NEAR’s social platforms and distribution network to share each award-winner’s story and contributions to Web3. Founders of Web3 companies that have made the list will also have the opportunity to meet with investors and pitch for funding at the event.

    - - - -

    Google Cloud Unveils Web3 Startup Program 

    - - - -
    - - - -

    Google Cloud recently made a splash in the Web3 space by announcing its Web3 Startup program via a Twitter thread during Consensus. Catering to seed and Series A projects and startups, the program offers up to $200K in cloud credits, and access to technical training. Recipients also receive partner perks including discounts on Nansen AI products and platform credits from Alchemy, and Thirdweb’s gasless contract deployment, support, and co-marketing opportunities.

    - - - -

    Google’s support of Web3 will benefit founders building on the Blockchain Operating System (BOS) and those partnering with the recently launched NEAR Horizon, an accelerator revolutionizing how founders are supported in Web3. NEAR Horizon will enable founding teams to scale their project with the support they need, increasing the number of founding teams building great products with real-world value on the NEAR Protocol.

    - - - -

    To apply, visit the application portal and explore more information on the official website.

    - - - -

    Here’s how to get involved:

    - - - - - - - -

    NEARCON is Returning to Lisbon and NEAR APAC is Headed to HCMC, Vietnam!

    - - - -

    Today at Consensus, NEAR Foundation announced that NEARCON will take place in Lisbon, Portugal on November 7 – 10, 2023. In an effort to globally scale and create more accessible events, the NEAR Foundation also announced that NEAR APAC will take place in Ho Chi Minh City, Vietnam on September 8 – 12, 2023. Both events will gather an audience of builders, Web2 and Web3 entrepreneurs, industry professionals, investors, and creators from all over the world.

    - - - -

    NEAR APAC will be the NEAR Ecosystem’s first and largest event in the APAC region. NEAR APAC delivers a world-class lineup of speakers to share latest APAC developments, unlimited potential of the blockchain industry, regional market insights, Web3 hacker festival, and insightful events for networking opportunities with local communities and partners. Head to https://nearapac.org/ on May 15th to secure your NEAR APAC tickets!

    - - - -

    NEARCON, the NEAR Ecosystem’s Annual flagship conference is headed back to Lisbon. The Mainnet anniversary of the protocol’s launch and the biggest announcements from the Ecosystem will be featured at NEARCON. Hear from some of the most iconic names in Web3 speak on Technical updates, Web2 and Web3 trends, the latest on Governance and Regulation, Arts and Culture, and much more. 

    - - - -

    This year the conference will take over two venues: Convento De Beato and Armazem Lisboa. Convento de Beato will host the core conference and will feature two larger stages whereas Armazem Lisboa will be Developers HQ where hackers will build all day. Both venues are just a 10 minute walk from each other. Mark your calendars because on June 1st NEARCON tickets will go live on nearcon.org!  

    - - - -

    See you in HCMC and Lisbon this Fall!

    - - - -

    Updates from around the NEAR Ecosystem

    - - - -
    - - - -

    Mailchain brings encrypted communication to NEAR-based dApps

    - - - -

    Mailchain, an open source, multi-chain communication layer for Web3, announced integration with NEAR. Now, NEAR developers can send encrypted messages between blockchain wallet addresses with simple, unified inbox to view and send messages and keep track of on-chain activity. 

    - - - -

    NEAR’s vision has always been to onboard the next billion users to the Open Web. With Mailchain, these next billion users can communicate natively with one another, regardless of blockchain. 

    - - - -

    Mailchain’s integration with NEAR is a significant step towards strengthening the interoperability mission of NEAR’s blockchain operating system (BOS). NEAR’s BOS and Mailchain are both chain-agnostic, prioritize usability and security, and together make Web3 more accessible and interoperable for users.

    - - - -

    “Our vision aligns perfectly with NEAR’s–to onboard the next billion users,” said Tim Boeckmann, CEO of Mailchain. “When building Mailchain, we knew these next billion users would want to communicate with what mattered most to them, their blockchain identities. Mailchain’s secure communication protocol makes this a reality. We believe that this integration is a big step forwards for the developers who are building the next generation of the Internet.”

    - - - -

    XP Network brings cross-chain NFT bridge to NEAR

    - - - -

    During Consensus, the XP Network, a cross chain NFT bridge, went live on NEAR mainnet. XP Network allows NFT holders to transfer their NFTs to any other supported chain. XP Network recently showcased their cross-chain NFT bridge  by transferring a BSC NFT over to Near via the XP Network bridge, and selling it on Mintbase. 

    - - - -

    Now, NFT marketplaces built on NEAR Protocol like Paras, Berry Club, Mintbase, Flux, Few & Far can list the most promising NFT collections from almost 30 other chains. XP Network’s integration will supercharge both arts and collectibles, as well as Web3 gaming on NEAR, with players now being able to buy and trade NFTs in-game across chains. 

    - - - -

    kuutamo and Lattitude.sh give NEAR validators access to premium infrastructure

    - - - -

    From Consensus, Kuutamo announced its partnership with enterprise-grade infrastructure provider Lattitude.sh, which will give developers and current NEAR validators more flexibility and control. NEAR validators using both kuutamo and Latitude can now access premium infrastructure at a limited promotional price, or apply for the kuutamo x Latitude Program.

    - - - -

    A venture-backed technology company, Kuutamo offers a resilient and user-friendly node infrastructure, designed for the peer-to-peer economy. kuutamo launched the world’s first high availability node for the NEAR Protocol, giving users full control and flexibility (no lock-in effect) to execute their desired cloud strategies — differentiating itself from most large public cloud providers in the process.

    - - - -

    Latitude is an emerging global leader, offering access to enterprise-grade infrastructure in the world’s most advanced data centers. In its partnership with kuutamo, Latitude is expanding its offering to developers and NEAR validators. Latitude already supports other leading blockchains and Web3 companies such as Solana, Ankr, and Riot Games.

    - - - -

    WOMBI brings Web2-style analytics to NEAR

    - - - -

    During Consensus, Wombi — a Web3 attribution platform — announced that it is now live on NEAR. With an aim to be the Google Analytics of Web3, Wombi helps decentralized app developers by connecting Web2 and Web3 funnels, so they can instantly see which marketing channels are bringing them the most impactful users. 

    - - - -

    Wombi is now publicly available to all dApps fully live or building on the NEAR Blockchain Operating System or Protocol. All developers get free product and marketing analytics, making NEAR the first Layer 1 with a live attribution product. 

    -

    The post NEAR at Consensus Highlights appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at Consensus: Get Started on the Blockchain Operating System - /blog/near-at-consensus-get-started-on-the-blockchain-operating-system/ - - - Mon, 03 Apr 2023 20:00:00 +0000 - - - - - /?p=20366 - - NEAR Foundation is excited to announce that NEAR is heading to the 2023 edition of Coindesk’s Consensus from April 26-28.  …

    -

    The post NEAR at Consensus: Get Started on the Blockchain Operating System appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce that NEAR is heading to the 2023 edition of Coindesk’s Consensus from April 26-28. 

    - - - -

    NEAR has a massive base at this year’s Consensus, from which we will introduce devs and end users to the Blockchain Operating System. The Blockchain Operating System is an industry-first category, functioning as a common layer for browsing and discovering open web experiences with any blockchain.

    - - - -

    Here is what to expect from NEAR at Consensus 2023. 

    - - - -

    The Blockchain Operating System at Consensus 

    - - - -

    If you saw NEAR’s big announcement out of ETHDenver, NEAR isn’t just a Layer 1 blockchain. It’s a Blockchain Operating System for the Open Web — your easy entry point into Web3. 

    - - - -

    With the BOS, NEAR has built an industry first, with decentralized frontends and forkable components for developers. For end users, the BOS makes app discovery easy and social. All designed to bring billions of people into Web3, on any blockchain.

    - - - -

    The BOS and much more will be on display at Consensus! 

    - - - -

    The NEAR booth at Consensus 

    - - - -

    Consensus is the world’s largest and longest-running crypto gathering, bringing together devs, VCs, founders, policymakers and many others in the Web3, blockchain, and cryptocurrency communities. NEAR will be at Consensus for three days of talks, panels, demos, parties, and more. 

    - - - -

    The NEAR booth at Consensus will be souped-up and multi-faceted, delivering the latest tech and ecosystem updates for the Web3 community at Consensus! 

    - - - -

    NEAR’s booth will feature 4 different components. Let’s explore them. 

    - - - -

    BOS for Devs 

    - - - -

    If you’re a developer, get onboarded into the Blockchain Operating System. Talk to NEAR and BOS experts. 

    - - - -

    Get started learning how to build widgets and experiences within the BOS. Create interfaces, fork components, and much more, with NEAR experts as your guides.

    - - - -

    BOS for End Users

    - - - -

    If you’re an end user who loves Web3, experience how the Blockchain Operating System is revolutionizing the access to and discovery of Web3 apps and experiences. Set up an account and get access to all of the latest exciting experiences that are now live or being built on NEAR.

    - - - -

    NEAR ecosystem members will be there to guide you throughout your Blockchain Operating System experience with demos, tutorials, and more! 

    - - - -

    NEAR Ecosystem Showcase 

    - - - -

    NEAR’s booth will also feature an Ecosystem Showcase component. Here you will learn about the latest game-changing announcements, and discover the apps and experiences being built on NEAR. 

    - - - -

    NEAR Horizon Accelerator

    - - - -

    The booth will also feature a space for NEAR Horizon, the ecosystem’s new accelerator. Meet with the Horizon team and get started on the Web3 funding and building journey. 

    - - - -

    NEAR speakers at Consensus

    - - - -

    Catch a number of exciting NEAR speakers and sessions at Consensus. The final list of participants and sessions is still being solidified. However, we do have some confirmed speakers to highlight. 

    - - - -

    April 28th from 12:45pm – 1:30pm on Main Stage Illia Polosukhin, CEO of Pagoda and Co-Founder of NEAR on “Devs Doing Something: BUIDLing in a Bear Market” panel with Sergey Nazarov, Co-Founder of Chainlink and Emin Gun Sirer, CEO of Ava Labs.

    - - - -

    April 28th from 3pm – 3:20pm on Protocol Village Stage — Illia Polosukhin, CEO of Pagoda and Co-Founder of NEAR, and Alex Chiocchi, Chief Product Officer of Pagoda will present on the latest Blockchain Operating System insights.

    - - - -

    April 28th from 3:20pm – 3:35pm on Protocol Village Stage — Marieke Flament, CEO of Near Foundation and Special Guest VC 

    - - - -

    April 28th from 3:35pm – 3:45pm on Protocol Village Stage — Alex Shevchenko, CEO and Co-Founder of Aurora: Web3 Cloud Containers

    - - - -

    April 28th from 3:45pm – 4pm on Protocol Village Stage — Web3 Media Tech Panel. Special guests TBA.

    - - - -

    Stay updated on the complete slate of confirmed speakers at Near.org/Consensus.

    -

    The post NEAR at Consensus: Get Started on the Blockchain Operating System appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/consensus/index.html b/public/blog/tag/consensus/index.html deleted file mode 100644 index 5b3f3859b..000000000 --- a/public/blog/tag/consensus/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Consensus Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/core-protocol/feed/index.xml b/public/blog/tag/core-protocol/feed/index.xml deleted file mode 100644 index c346ce617..000000000 --- a/public/blog/tag/core-protocol/feed/index.xml +++ /dev/null @@ -1,928 +0,0 @@ - - - - Core protocol Archives – NEAR Protocol - - /blog/tag/core-protocol/ - - Tue, 30 Jan 2024 14:33:23 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Core protocol Archives – NEAR Protocol - /blog/tag/core-protocol/ - 32 - 32 - - - Phase 2 of NEAR Sharding Launches - /blog/phase-2-of-near-sharding-launches/ - - - Tue, 30 Jan 2024 14:33:22 +0000 - - - - - - - /?p=21200 - - The NEAR Foundation announced today that the Protocol Work Group will launch testing for Phase 2 of Sharding this week, …

    -

    The post Phase 2 of NEAR Sharding Launches appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation announced today that the Protocol Work Group will launch testing for Phase 2 of Sharding this week, marking a major milestone in the network’s development roadmap. Phase 2 introduces fundamental upgrades to NEAR’s core protocol architecture, enabling even greater scalability and decentralization for the network. The fourth edition of Stake Wars, an incentivized community testing initiative, will kick off on February 1.  

    - - - -

    NEAR’s vision of chain abstraction to facilitate broad adoption of decentralized apps requires an extremely scalable blockchain layer. From the start, NEAR has been designed to scale with demand towards mainstream adoption. A primary benefit of the new sharding implementation will be an up-to-10x speed improvement to NEAR’s already-fast transaction throughput. Sharding is NEAR’s unique approach to scaling, which partitions the blockchain into multiple parallel “shards.” Combined with NEAR already having the lowest transaction fees in Web3, this sharding upgrade positions NEAR at the forefront of Web3 in terms of both performance and scalability. Phase 2 greatly improves the network’s capacity for end user volume and is an important landmark on the road to global-scale usage of Web3. 

    - - - -

    “NEAR continues to make progress on bringing Chain Abstraction infrastructure that can scale to a billion users and beyond,” said Illia Polosukhin, Co-Founder of NEAR Protocol and CEO of NEAR Foundation. “The scalability improvements from stateless validation can unlock even better user experiences for more end-user applications, whether multichain DeFi-style dapps or those aimed at mainstream users.”

    - - - -

    Phase 2 introduces the most significant changes to the NEAR Protocol since its Mainnet launch in 2020. The biggest of these is the implementation of stateless validation: an innovative approach to state change, or the process of updating the status of all the data posted to the blockchain. Now, NEAR validators no longer have to maintain the state of a shard locally and can retrieve all the information they need to validate state changes, or “state witness,” from the network. 

    - - - -

    With stateless validation, NEAR can finally achieve the truest form of sharding, where shards can function mostly independently at the consensus level to improve decentralization and throughput while preserving the highest security guarantees. An added benefit is that the hardware requirements to run most validator nodes are dramatically reduced (a smaller number of “chunk proposer” validators with specialized hardware will validate blocks with state held in memory). This also paves the way for greater decentralization of the network by lowering the barrier to entry to become a validator.

    - - - -

    “We’re very excited about the potential for future proofing the NEAR protocol design with stateless validation,” said Bowen Wang, Director of Protocol at Pagoda. “From a research perspective, we expect that as zero-knowledge tech matures, more protocols will adopt a similar approach, where a smaller set of expensive machines execute transactions and produce proofs, while a bigger validator set validates the proofs. This will enable more unified security across networks and defragment Web3, advancing a key aspect of the chain abstraction vision.” 

    - - - -

    Phase 2 is a shift in direction from the original Nightshade sharding architecture NEAR launched with in 2020, bypassing some fundamental roadblocks in that protocol design around the implementation of challenges in the initial idea of Phase 2, while also unlocking additional benefits. Other network improvements in Phase 2 include in-memory trie, wherein validator nodes can load the entire state into RAM for maximized performance. This will greatly improve transaction throughput thanks to minimizing storage access. 

    - - - -
    Phase 2 is the third major upgrade to NEAR Protocol’s sharding since Mainnet launch in October 2020, showcasing the incredible shipping speed of the protocol engineering team.
    - - - -

    - - - -

    NEAR users should not experience any downtime with the transition to Phase 2 and no special action is required from validators, apart from adjusting hardware specs. Through dozens of protocol upgrades since Mainnet launch, including three major upgrades, the core NEAR protocol has had 100% uptime with zero disruption for developers and end users. 

    - - - -

    On Thursday, February 1, Stake Wars IV: Attack of the Transactions will launch to incentivize battle testing of the new sharding architecture. Planned to run through March 31, the latest edition of Stake Wars invites community members to test features and generate traffic. For more information about participating and deeper technical detail about Phase 2, visit the Stake Wars page on Github

    - - - -

    With the launch of Phase 2, NEAR becomes one of the only networks in Web3 to implement stateless validation to improve scaling and paves the way for further network performance and scalability improvements in the future roadmap. A technical paper with more detail about NEAR’s new sharding design is forthcoming later in Q1. Phase 2 is expected to launch on NEAR Mainnet in May 2024.

    -

    The post Phase 2 of NEAR Sharding Launches appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Q4 Protocol Roadmap Update - /blog/near-q4-protocol-roadmap-update/ - - - Fri, 12 Jan 2024 19:23:37 +0000 - - - - - - - /?p=21155 - - TLDR: 2023 saw major experience improvements via meta transactions and zero-balance accounts, as well as node performance improvements and optimizations. Preparations are underway for a major upgrade to stateless validation, completing Phase 2 of the sharding roadmap in early 2024.

    -

    The post NEAR Q4 Protocol Roadmap Update appeared first on NEAR Protocol.

    -]]>
    -
    By Bowen Wang, Director of Protocol

    In this post, the NEAR Protocol work group would like to provide an update of the protocol roadmap to show what we accomplished in 2023 and what is planned for 2024.

    - - - -

    TLDR: 2023 saw major experience improvements via meta transactions and zero-balance accounts, as well as node performance improvements and optimizations. Preparations are underway for a major upgrade to stateless validation, completing Phase 2 of the sharding roadmap in early 2024.

    - - - -

    What we accomplished in 2023

    - - - -

    There were a total of six protocol upgrades in 2023 which introduced a number of new protocol features. Meta transactions were added as a protocol feature at the beginning of the year to support gasless transactions, which means that users can transact on NEAR and start using apps without necessarily needing to pay transaction fees in NEAR. We also added zero-balance accounts, an important feature that enables users to create an account without holding NEAR to pay for storage. This makes it easy to onboard new users to applications. These two features form a solid foundation for a seamless onboarding experience for end users — a top goal for NEAR overall.

    - - - -

    In addition to easy user onboarding, we have also been working hard to optimize the performance of NEAR. Flat storage, which was released in Q2 this year, optimized state reads and improved the stability and performance of the network overall. Another feature that optimizes NEAR nodes is cold storage, which allows for a split between hot and cold storage for a node. This means an archival node does not need to store most of the historical data on SSD and therefore can save a lot on cost. We also optimized the network communication between validator nodes by introducing the tier1 network, which reduces the latency of network messages between two validator nodes. Furthermore, we improved state sync and reduced the time it took a node to synchronize the latest state. We have also worked on improving the stability and maintainability of contract runtime with initiatives like finite wasm and limited replayability.

    - - - -

    There are a few major initiatives that we started this year and expect to finish next year, such as stateless validation, congestion control, and transaction priority. We will dive deeper into those in the section below.

    - - - -


    Plans for 2024

    - - - -

    There are a few major projects that we want to deliver in 2024 to improve the usability, scalability, and decentralization of NEAR Protocol:

    - - - -
      -
    • Stateless validation. Stateless validation is a major initiative that we have been working on for a few months. It adjusts the original Nightshade sharding design to avoid implementing fraud proofs while improving the performance of each shard significantly by putting state in memory. The stateless validation work is expected to be delivered in Q2 2024, which would also mark the completion of the original goal we set for Phase 2 of sharding. We expect the launch of stateless validation to also dramatically increase the throughput of each shard and prepare NEAR for the continued growth of usage.
    • - - - -
    • Congestion control and transaction priority. While NEAR’s sharding design is horizontally scalable, it is important to provide a good user experience when there is short-term congestion on the network. This includes localizing congestion so that gas price increase does not affect the entire network and allowing users to prioritize their transactions during congestion if they are willing to pay more in transaction fees.
    • - - - -
    • Support for account aggregation. Account aggregation allows a user to control accounts on different chains with one NEAR account, an important pillar of the chain abstraction vision for NEAR. It requires chain signatures, which does MPC to sign payload. This requires a new runtime API to facilitate the asynchronous nature of chain signatures.
    • - - - -
    • zkWASM. We have been working on zkWASM with the Polygon team for a few months and the work will continue in 2024. The goal is to build a prover for WebAssembly smart contracts. This could be used as a part of the initiative to prove the state transition of NEAR in a ZK proof. Moreover, zkWASM also provides wasm as an alternative execution environment to EVM for L2s.
    • - - - -
    • Data availability improvements. We launched NEAR DA in early November 2023 and there are a few things that we plan to work on to further improve the efficiency of NEAR DA. Those improvements include introducing KZG commitment to avoid having data availability fraud proofs, as well as real-time bridging to allow verification of data availability on Ethereum.
    • - - - -
    • Ethereum wallet support. Supporting wallets like MetaMask natively on NEAR allows us to attract more users to NEAR and also be more Ethereum aligned. This requires changes to the protocol to support Ethereum addresses natively and support processing of RLP serialized Ethereum transactions.
    • - - - -
    • Research into the future of sharding. There are two major directions of exploration: synchronous sharding and ZK-centric sharding. Synchronous sharding enables synchronous execution of smart contracts and addresses the developer experience pain point of having to deal with asynchronous execution. ZK-centric sharding leverages zero-knowledge proofs to validate state transition of different shards and improves the scalability and decentralization of the protocol. In addition, we will also research the next and final phase of sharding: dynamically adjusting the number of shards based on usage.
    • -
    - - - -

    The roadmap can be seen below for those interested in more timeline specifics. It is split into two parts: Experience and Core. The Experience section encompasses user and/or developer experience and the protocol features needed to enable those experiences. As an example, synchronous execution addresses the pain point that developers feel when they implement cross-contract calls.

    - - - -
    - - - -


    The Core section, on the other hand, covers major efforts to improve the scalability and decentralization of the protocol. This includes stateless validation, zkWASM, improvements to data availability, and so on.

    - - - -
    - - - -



    As always, the protocol team is proud to have made several important improvements to the core protocol with zero disruption for users and developers. We look forward to making some major advancements in 2024 to help the entire NEAR ecosystem deliver its vision of mainstream adoption of an Open Web, where all internet users can control their own data, assets, and power of governance. 

    We will share more details on Phase 2 advancements and timelines soon. If you’d like to learn more, join the NEAR Protocol X Spaces on Tuesday, January 16 at 5pm UTC to hear from Director of Protocol Bowen Wang and NEAR Foundation CEO Illia Polosukhin on upcoming protocol developments.

    -

    The post NEAR Q4 Protocol Roadmap Update appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Strategic Update and Outlook for 2023 - /blog/near-strategic-update-and-outlook-for-2023/ - - - Thu, 15 Dec 2022 14:32:27 +0000 - - - - - - - /?p=19581 - - The recent stream of news clearly demonstrates that the world needs Web3. Trust in legacy institutions is breaking down, individual …

    -

    The post NEAR Strategic Update and Outlook for 2023 appeared first on NEAR Protocol.

    -]]>
    - The recent stream of news clearly demonstrates that the world needs Web3. Trust in legacy institutions is breaking down, individual privacy and individual freedom are equally at risk, and the major Web2 platforms we use every day have become monopolies that focus on profit, not people. 

    - - - -

    Yet Web3 also hasn’t fully delivered on its promise to open the web. While important progress has been made, much more needs to be done for this technology to deliver fairer, freer digital systems. Today’s Web3 suffers from inaccessible user experience, siloed applications which are difficult to discover, few real-world use cases, and technology tribalism. Put simply, too much hype and not enough value for users. 

    - - - -

    Since 2018, NEAR has focused on building scalable, secure technology and infrastructure that is easy to use and enables developers to freely create usable applications. Since launching Mainnet in late 2020, the NEAR ecosystem has made incredible progress, becoming one of the top layer-one blockchains with 22 million accounts, 600K monthly active wallets (active defined as 2+ transactions), and 15x growth in users and projects just in the last year. And despite chaos in the market and a major downturn in recent months, NEAR Foundation has sufficient capital to sustain at least five years of operations in bear market conditions thanks to responsible treasury management. 

    - - - -
    - - - -

    While Web3 has yet to deliver on its promises, NEAR Foundation believes that NEAR is the only ecosystem where Web3 promises can be delivered and where mainstream adoption can happen. All the fundamentals have been established for some time and NEAR is charging full-speed ahead into its next growth phase in 2023. This post will cover NEAR’s convictions heading into next year, the strategic approach to drive our next phase, and a look ahead at new areas of product and development. 

    - - - -

    Fundamentals and Convictions

    - - - -
      -
    • NEAR has the best technology in Web3. Provably scalable, easy to onboard and use, developer friendly, secure, and decentralized, with the most advanced account model and onboarding in the blockchain space. 
    • - - - -
    • NEAR has world-class talent and ample runway. From the core teams at the Foundation and Pagoda, to the incredible NEAR Foundation Council and advisors, to the diverse group of brilliant entrepreneurs building companies, apps, and funds on NEAR, some of the best talent in the world is here on NEAR. And thanks to the Foundation’s responsible treasury management, core ecosystem operations and funding are well-positioned to run for many years to come. 
    • - - - -
    • Achieving mainstream adoption is about users. Not TVL, not flashy headlines, not cultish maximalism. NEAR focuses on what matters for the long term and the bear market will separate the high quality projects from the ones fueled mostly by hype. 
    • - - - -
    • Web 2.5 will get us there. Sweatcoin proved that NEAR can support an app with tens of millions of users on open web infrastructure. This is the next phase of adoption: helping another generation of Web2 apps and communities take advantage of the opportunities Web3 offers while providing a richer, more sustainable experience to their users. 
    • -
    - - - -

    Strategic Approach

    - - - -
    - - - -

    Enabling NEAR to make the most of these convictions in today’s climate means committing to the following goals over the next year. 

    - - - -

    Growing usage on NEAR will begin with a top-down approach focused on partnerships. The world-class business development team at the Foundation will focus on working with major applications and brands with substantial, established communities to partner with NEAR on real use cases that drive engagement, such as ticketing and earning. High-traction focus verticals include sports, entertainment, and loyalty. Major partnerships in recent months include Grupo Nutresa, Google Cloud, and Sweat Economy

    - - - -

    Any great Web3 ecosystem is an emergent product of a dedicated community of believers. The bottom-up, grassroots approach for the next year on NEAR will empower the community to invest in its own expansion through grants, primarily through 3 major community DAOs: Developer DAO, Marketing DAO, and Creatives DAO (visit the DAO websites to get involved). This means the NEAR Foundation will no longer directly allocate capital to projects, instead supporting the community in these decisions and further decentralizing key elements of the ecosystem. These grassroots DAOs will be supported by the NDC, which has achieved initial traction, including launching a new Governance Working Group and plans to roll out a v1 governance infrastructure for the ecosystem early next year.

    - - - -

    In the new year, the NEAR Foundation will form an early-stage accelerator that will provide support to promising projects and founders on NEAR in areas including education, tech, hiring, legal, UX, and GTM guidance, setting them up to grow into the landmark Web3 projects of tomorrow. 

    - - - -

    Looking Ahead 

    - - - -

    With NEAR’s protocol, infrastructure, and developer tooling already well established, the next step in providing the best user experience to Web3 will be at the discovery layer: the connective tissue that connects applications, tooling, social, earning, and developer components across the open web. This stack is what we call a “blockchain operating system.”

    - - - -
    - - - -

    Many of the building blocks of the blockchain operating system already exist on NEAR, either as features or apps. These include NEAR Crowd, a gig economy platform with 50% of users transacting every day, and NEAR Social, an on-chain social network with a widget framework that lets developers fork entire app frontends to build new experiences. Combined with upcoming improvements to onboarding, including from EVM wallets (which we’re calling remote accounts), native meta transactions, Keypom, and new chat/social capabilities, NEAR will deliver even more amazing value directly to developers and users. 

    - - - -

    All of these user-centric elements further up the stack, particularly at the app layer, will form the basis for a core component of the NEAR ecosystem’s product and technical focus in 2023. Pagoda, NEAR Foundation, and other key ecosystem participants will work together to deliver the best possible technology with an increasingly integrated and seamless experience for developers and end users. The goal from here is evolving NEAR to be more than just a layer-one blockchain: it will become a global blockchain operating system. It’s still early days, but building is underway and the vision is clear. 

    - - - -

    NEAR is Now 

    - - - -

    NEAR is the place where mainstream adoption of the open web will happen. Soon, anyone in the world—app users, developers, founders, creators—will be able to create without limits.

    - - - -

    - - - -

    Thank you for reading our NEAR 2023 Strategy Blog Post and/or participating in the NEAR Go Forward Strategy Twitter AMA! If you have questions or comments we would love to hear them!

    - - - -

    -

    The post NEAR Strategic Update and Outlook for 2023 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR’s Road to Decentralization: A Deep Dive into Aurora - /blog/near-decentralization-aurora-evm/ - - - Mon, 07 Mar 2022 14:01:23 +0000 - - - - - - /?p=15973 - - One of NEAR Foundation’s core missions has been to create a network that empowers users to take control of their …

    -

    The post NEAR’s Road to Decentralization: A Deep Dive into Aurora appeared first on NEAR Protocol.

    -]]>
    - One of NEAR Foundation’s core missions has been to create a network that empowers users to take control of their data, their finances, and the tools to govern. 

    - - - -

    In the web3 world, this idea can be neatly summed up by one word: decentralization. This is a process whereby control and the tools to create and reimagine everything from business to creativity are progressively handed over to the contributors. 

    - - - -

    The NEAR Foundation has been steadily progressing in this mission, from the growing number of validators to the flourishing DAO community. But NEAR isn’t alone on this journey. It relies on projects in and around the ecosystem to help accelerate this mission. Enter Aurora.    

    - - - -

    This project, started originally by a core team of NEAR developers, is now helping build bridges to other ecosystems and accelerating the adoption and decentralization in equal measure. 

    - - - -

    A Bridge Between NEAR and Ethereum

    - - - -

    Built by NEAR Inc’s core team (now Pagoda), Aurora is an Ethereum Virtual Machine (EVM) smart contract platform that creates a bridge between Ethereum and NEAR. An EVM, for those who don’t know, is best thought of as a decentralized computer that allows anyone to create a smart contract on the Ethereum network.

    - - - -

    Although an EVM, Aurora works on top of the NEAR blockchain, giving it all of the benefits of the NEAR blockchain: super fast, incredibly secure, and infinitely scalable transactions. That’s possible thanks to Nightshade, NEAR’s unique sharded protocol design that allows the network to process thousands of transactions per second without skipping a beat. 

    - - - -

    With Aurora, the idea is that anyone building Ethereum projects can make use of the NEAR’s speed and low fees. The Aurora EVM allows developers to make use of NEAR’s blockchain, while the platform uses NEAR’s Rainbow Bridge to transfer assets. 

    - - - -

    Let’s look at Rainbow Bridge, as this protocol is where things got started. 

    - - - -

    Aurora and Rainbow Bridge

    - - - -

    NEAR’s core developer team wanted to create a smart contract that would perform the function of allowing tokens to flow freely between Ethereum, NEAR, and other projects. The team’s vision: create a tool that allowed assets to exist on both NEAR and Ethereum, creating a multi-chain Web3 user experience.

    - - - -

    To do this, the team would need to create a bridge that would be completely decentralized: anyone could use it, anywhere, and at any time—without permission. The developers were able to build the bridge and now, if one wants to move an Ethereum-based token—say, a stablecoin like DAI—and use it on NEAR’s network, they can do so via the Rainbow Bridge. 

    - - - -

    Some of NEAR’s core team that had helped create Rainbow Bridge split off to continue their work. The result: Aurora—a project that now offers the bridge and a whole host of other features designed to create a global network of open-source Web3 projects. 

    - - - -

    Aurora partnerships

    - - - -

    Other projects working to improve cross-chain accessibility have since taken notice of Aurora’s work and become partners. One example is Allbridge, an application that unites scattered blockchains by means of global interoperability across all networks. Since Allbridge partnered with Aurora, it has launched a bridge between Aurora and Terra, an open-source stablecoin network and one of the biggest cryptocurrencies by market cap. 

    - - - -

    Aurora is also playing a big part in decentalized finance (DeFi) growth in the NEAR ecosystem. DeFi refers to the peer-to-peer financial services built on public blockchains, and is one of the most active crypto sectors on NEAR. The NEAR community has been working tirelessly to make it easier for DeFi apps and tools to leverage the protocol’s developer-friendly advantages. 

    - - - -

    One way that Aurora has made this process much smoother and more decentralized is through its extremely low fees (so low, they’re negligible), which it achieves by using the NEAR network. A constant gripe from users about Ethereum-based DeFi products is that the fees are often too high, creating a barrier to entry for developers and end users, and creating a hurdle to Web3’s mainstream adoption. 

    - - - -

    Aurora adoption is growing so much that the team released Aurorascan, its very own version of Etherscan, the most popular Ethereum block explorer and analytics platform. Aurorascan has all of Etherscan’s features set and reliability, while giving developers the tools and data to see how Aurora’s EVM functions. 

    - - - -

    But Aurora goes beyond DeFi. The platform is also integral to the NEAR community’s NFT projects, which have exploded in popularity since 2020. When the Aurora team spoke at this year’s ETHDenver conference in February, and they were joined by members of Endemic, Chronicle, and TENKBay—all NFT platforms that have launched on the Aurora EVM and NEAR Protocol.  

    - - - -

    Future Aurora developments

    - - - -

    So what does Aurora have up its sleeve for the future? Well, Aurorascan is still in beta mode, so more features will be added to that platform. And the team is also working to build new bridges, which will be announced in the coming months. 

    - - - -

    There are also plans to allow NFTs to be able to hop between Ethereum and NEAR. You can keep up to date on all things Aurora on its Medium page.  

    - - - -

    All this and more will help those wanting to take advantage of NEAR’s super fast and extremely cost-effective network, and help the dream of a truly decentralized world become a reality. 

    -

    The post NEAR’s Road to Decentralization: A Deep Dive into Aurora appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - An Update On the NEAR Validator Upgrade - /blog/an-update-on-the-near-validator-upgrade/ - - - Fri, 28 Jan 2022 17:28:26 +0000 - - - /?p=15746 - - At NEAR Foundation, our goal has always been to provide the best experience for validators, delegators, community members, and project …

    -

    The post An Update On the NEAR Validator Upgrade appeared first on NEAR Protocol.

    -]]>
    - At NEAR Foundation, our goal has always been to provide the best experience for validators, delegators, community members, and project builders. As part of NEAR Protocol’s goal to increase the number of validators securing the network and improve decentralization, we invited the community to submit an application through our call for applications on December 2, 2021. 

    - - - -

    We received an overwhelming interest of more than 160 applications for delegation.

    - - - -

    After the latest upgrade, which now allows up to 100 validators to the Mainnet and a lowered seat price of 64,000 $NEAR, many validators (73) managed to enter the validator pool with their own funds. The Foundation only had 27 seats available for delegation, which means that the selection process was extremely competitive. 

    - - - -

    As NEAR Protocol is certified carbon neutral by South Pole, we ask validators to think through how they offset their validator operation’s carbon footprint, and communicate any CO2 offsetting that they implement on their end, such as using a renewable energy source to operate the nodes. An important criteria in the selection for delegation was ecological, and validators who took steps to offset their carbon footprint were selected.

    - - - -

    Additionally, please note that the minimum criteria to qualify for delegation, such as keeping commission to 7% and maintaining high uptime on testnet node or mainnet node, is essential and the Foundation reserves the right to withdraw delegation and re-delegate to another validator. 

    - - - -

    Additional Opportunities 

    - - - -

    For any validators that were not selected in this round, there will be many more opportunities to be involved in the NEAR Ecosystem. 

    - - - -

    NEAR Protocol will introduce a new type of validator, Chunk-Only Producer, in mid-2022 to further decentralize NEAR and increase the number of validators on Mainnet from 100 to 300. 

    - - - -

    For those interested in being considered for a Chunk-Only Producer, please fill out this typeform.

    - - - -

    For additional information about Chunk-Only Producers, please visit the Decentralize page. Additional details can be found on the NEAR protocol roadmap. 

    - - - -

    Another route to helping secure the network is via the Open Shards Alliance. The Open Shards Alliance (OSA) and the GuildNet network have been an ecosystem guild since the Mainnet launch. It’s been a home for validators, those interested in becoming one, and new devs that enter the ecosystem. Ideas are bootstrapped in the OSA and often move on into their own projects. The OSA is comprised of technical aficionados, sysadmins, and devs. 

    - - - -

    Please join the Open Shards Alliance server at the OSA Discord.

    -

    The post An Update On the NEAR Validator Upgrade appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Enhances Decentralization with Validator Upgrade - /blog/near-validators-upgrade-decentralization/ - - - Fri, 07 Jan 2022 12:16:53 +0000 - - - /?p=15611 - - Since the NEAR Mainnet launch in October 2020, the network has seen a steady increase in the number of validators, …

    -

    The post NEAR Enhances Decentralization with Validator Upgrade appeared first on NEAR Protocol.

    -]]>
    - Since the NEAR Mainnet launch in October 2020, the network has seen a steady increase in the number of validators, with many more wanting to participate. Nevertheless, the extremely high threshold of 3.6M $NEAR has made it challenging for new validators to join the network. So much so, the NEAR Foundation has, at times, supported validators with substantial delegations in order to allow for some of the 60 validators to remain active on Mainnet.

    - - - -

    That is why, in December 2021, the NEAR Protocol team released the updated validator selection algorithm. The new selection algorithm now allows for up to 100 validator nodes on the Mainnet, and reduces the validators’ barrier to entry by bringing down the seat price from 3.6 million $NEAR to 67,000. This lowered seat price makes it easier for them to join the active validator set and to maintain their seats. 

    - - - -

    Additionally, the NEAR Foundation aims to limit delegation amounts to a maximum of 100,000 NEAR per validator, as part of its continuous commitment to building a fully decentralized network. 

    - - - -

    NEAR Delegation Role 

    - - - -

    Historically, the NEAR Foundation has used delegation to bootstrap network decentralization by helping new validators enter the active set and build their following but it wasn’t intended to be a long term grant. Current validators on NEAR Mainnet who had received historical delegation from NEAR Foundation should expect to see current delegations from NEAR Foundation to be withdrawn in the next 48 hours as part of this change.

    - - - -

    This will be followed by the NEAR Foundation delegating up to 100,000 NEAR to validators who had been selected to receive delegation by submitting their delegation application up to December 13, 2021. This new wave of delegation will take place during the coming weeks.

    - - - -

    This change is only the beginning of a number of ecosystem-wide initiatives that will continue increasing the number of validators and improving network decentralization. With the upcoming launch of phase 1 of sharding in early 2022, we expect another 200 validators to join Mainnet. 

    - - - -

    NEAR has always been, and will always be committed to building a secure, scalable, and decentralized network to help onboard the world into Web3. To take advantage of the upcoming expansion, there are other opportunities for NEAR Foundation delegation, including participating in the validator governance progress. 

    - - - -

    Please consider joining the NEAR Validator governance process by participating in the NEAR Validator Advisory Board general election in early 2022. Stay tuned for more announcements.

    -

    The post NEAR Enhances Decentralization with Validator Upgrade appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Zero to Hero NFT Series: Happy Holidays from DevRel! - /blog/zero-to-hero-nft-series-happy-holidays-from-devrel/ - - - Fri, 17 Dec 2021 17:09:08 +0000 - - - - - /?p=15527 - - It’s been a great year for the NEAR ecosystem and our developer community. We’ve hosted our first MetaBUIDL hackathon, rocked …

    -

    The post Zero to Hero NFT Series: Happy Holidays from DevRel! appeared first on NEAR Protocol.

    -]]>
    - It’s been a great year for the NEAR ecosystem and our developer community. We’ve hosted our first MetaBUIDL hackathon, rocked the crypto-boat in Portugal with the NEARCON, enjoyed a daily dose of Q&A on our Office Hours, and had a coding rush with the NEARvember challenge.

    - - - -

    The DevRel team is simply amazed by our dev community, and we are thankful for the support and time every developer spends building projects on NEAR. So, as a humble way to say “Thank You”, we’ve prepared an NFT tutorial series so you can go from Zero to NFT Hero before the new year knocks on your door.

    - - - -

    If you are new to Rust and want to dive into smart contract development, this series is a great place to start, especially if you want to learn about non-fungible tokens. 

    - - - -

    In this “NFT Zero to Hero” series, you’ll find a set of tutorials that will cover every aspect of a non-fungible token (NFT) smart contract. You’ll go from minting an NFT using a pre-deployed contract to building a fully-fledged NFT smart contract that supports every extension.

    - - - -
    - - - -

    NFT tutorials

    - - - -

    As a sneak peek, here’s a list of the NFT tutorials that will bring you from Zero to Hero in no time:

    - - - -
    • Pre-deployed contract: Get introduced to minting an NFT without the need to code, create, or deploy a smart contract.
    • Contract architecture: Learn the basic architecture of the NFT smart contract and you’ll compile this skeleton code with the Rust toolchain.
    • Minting: Flesh out the skeleton so the smart contract can mint a non-fungible token.
    • Upgrade a contract: Discover the process to upgrade an existing smart contract.
    • Enumeration: Explore different enumeration methods that can be used to return the smart contract’s states.
    • Core: Extend the NFT contract using the core standard, which will allow you to transfer non-fungible tokens.
    • Approvals: Expand the contract allowing other accounts to transfer NFTs on your behalf.
    • Royalty: Add the ability for non-fungible tokens to have royalties. This will allow people to get a percentage of the purchase price when an NFT is purchased.
    - - - -
    - - - -

    Next steps

    - - - -

    If you’re ready to start, jump into our Dev Docs and begin your Hero learning journey! If you already know about non-fungible tokens and smart contracts, feel free to skip and jump directly to the tutorial of your interest. 

    - - - -

    These tutorials have been designed so you can start at any given point, so you don’t need to start from zero if you’re already a Hero. 🙂

    - - - -

    Have any questions, comments, or feedback? 

    - - - -

    We hope you enjoy these holidays with your friends and family, and we wish you the best for 2022! May all our Web3 projects be successful, decentralized, and environmentally friendly, just like NEAR. 🙂

    - - - -

    Join us on Discord and let us know in the #development channels. 
    We also host daily Office Hours live Monday – Friday 11 AM – 12 PM PT (6 PM – 7 PM UTC), where the DevRel team will answer any questions you may have!

    -

    The post Zero to Hero NFT Series: Happy Holidays from DevRel! appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Sharding Rollout and Aurora IDO Postmortems - /blog/near-sharding-rollout-and-aurora-ido-postmortems/ - - - Fri, 03 Dec 2021 14:24:47 +0000 - - - - - /?p=15402 - - Between November 8th and November 19th, multiple incidents related to Near Inc RPC services caused severe degradation of user experience. …

    -

    The post NEAR Sharding Rollout and Aurora IDO Postmortems appeared first on NEAR Protocol.

    -]]>
    - Between November 8th and November 19th, multiple incidents related to Near Inc RPC services caused severe degradation of user experience. The Near Inc team takes this kind of issue seriously and aims to continually improve its services.  

    - - - -

    The following postmortems on the NEAR sharding rollout and Aurora IDO summarize the incidents. They provide root cause analyses, mitigations, and the future improvements we are working on to prevent similar incidents from happening again.

    - - - -

    Incident 1 – November 10th (12:00 UTC – 15:00 UTC) NEAR Inc RPC Service degraded during Boca Chica Aurora token sale

    - - - -

    During the Boca Chica Aurora token sale, community members reported an inability to access the service to buy the Aurora lottery ticket. The cause: too much load on the RPC endpoint. Due to higher than expected demand during the sale, the RPC became overloaded in the EU region.

    - - - -

    We’ve increased our RPC capacity by rolling out new RPC nodes across all regions. In particular, we’ve bumped up the number of nodes in the EU region. In the meantime, we’ve made and are working on several other improvements to increase the RPC throughput and reliability.

    - - - -

    Incident 2 – November 16th (19:00 UTC – 19:30 UTC) Near Inc Services down due to global cloud provider outage

    - - - -

    All Near Inc services stopped working to some extent for a short period of time including RPC, Indexers, Explorer, and Wallet. Issues were reported from across the community and internally all alerts started to fire. 

    - - - -

    We rapidly identified the root cause: an outage affecting the load balancing stack hit our cloud provider, which impacted RPC and therefore made all other dependent services unavailable as well. Unfortunately, there was no quick mitigation we could do on our side. We had to wait for the cloud provider to resolve the issue to get our services operational again. The cloud provider was able to quickly detect and restore service in under 20 minutes.

    - - - -


    Currently, we use one cloud provider for the services we host. We do this for simplicity of maintenance. Due to the decentralized nature of NEAR, anyone is able to run their own RPC services, providing alternative ways to access the network. Making it easy for users to switch RPC nodes is something that both wallets and developer tooling will be looking into. 

    - - - -

    To prevent issues like this from happening to Near Inc services, we are also looking into implementing a multi-cloud deployment with client-side fallbacks in case the primary service goes down.

    - - - -

    Incident 3 – November 17th(03:00 UTC – 19:00 UTC)Near Inc services degraded including Skyward during Aurora IDO, Wallet, and Explorer

    - - - -

    During the sharding rollout on mainnet we encountered two issues caused by state splitting as part of the protocol upgrade: 1) high disk usage affecting the RPC service, and 2) the inability of archival nodes to split state within one epoch.

    - - - -

    Let’s discuss them separately.

    - - - -

    The first issue was caused by high disk usage (IOPS) during the process of splitting state. Even though the RPC traffic was very low across the network, performance of our RPC nodes drastically deteriorated and we observed that RPC latency in some regions jumped from 1s to 60s. 

    - - - -

    This was not a capacity problem: each RPC request takes longer to respond and adding more nodes wouldn’t help much. Most services were almost unavailable, but due to client side retries they could be used with high response times. Most affected users were in Europe and Asia.

    - - - -

    The second issue was caused by archival nodes being unable to finish state splitting within one epoch as expected and, therefore, they got stuck when the new epoch arrived. This issue arose unexpectedly, as we ran simulations beforehand for regular RPC for the sharding upgrade using mainnet data. The edge case we missed was running the simulation on archival nodes, which took significantly longer. The issue had not been previously identified on testnet, as archival data is smaller there. 

    - - - -

    The failure of archival nodes affected all services depending on them: Indexer, Explorer, Wallet, Aurora, etc. The Infrastructure team was able to rapidly redirect traffic to non-archival nodes as a patch until archival nodes were restored. We waited until archival nodes finished splitting their states, and once the first node synced we generated a backup and started the rest of the archival nodes from there. This was a failure of not testing for all cases and we plan to invest more time and effort in making sure releases go as smoothly as previous ones.

    - - - -

    Some Final Thoughts

    - - - -

    It’s important to note that, despite all the aforementioned incidents, the network was always functioning as expected and only RPC services were affected, causing dependent services to have issues.

    - - - -

    We want to be transparent about all past and future issues we face. We believe the community members will understand that “NEAR stands for iteration” and we are doing our best to prevent such incidents from happening in the future.

    -

    The post NEAR Sharding Rollout and Aurora IDO Postmortems appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Launches New Validator Program To Further Decentralize the Network - /blog/near-foundation-launches-new-validator-program-to-further-decentralize-the-network/ - - - Thu, 02 Dec 2021 16:00:17 +0000 - - - /?p=15389 - - Since NEAR’s Mainnet launch in October 2020, the NEAR Foundation has helped foster the growth and decentralization of a vibrant …

    -

    The post NEAR Foundation Launches New Validator Program To Further Decentralize the Network appeared first on NEAR Protocol.

    -]]>
    -
    Since NEAR’s Mainnet launch in October 2020, the NEAR Foundation has helped foster the growth and decentralization of a vibrant validator community. Historically, to become a validator, you would apply to the Foundation Delegation Pilot Program, ensure you have the right amount of $NEAR, and meet the program requirements. While this process ensured the continued security of the network, the amount of $NEAR required to be eligible to become a validator was around 3.6 million, locking out many aspiring validators. 

    - - - -

    NEAR Foundation is happy to announce we’re making some changes to increase the number of validators who can take part in securing the NEAR network. With the introduction of a validator selection algorithm change, set to go live in mid-December, 2021, we expect the seat price to decrease significantly, allowing more capable validators to join the NEAR validator community. 

    - - - -

    Announcing the NEAR Foundation Delegation Program

    - - - -

    To support the growth and decentralization of the NEAR ecosystem, and to expand the validator set with the upcoming 1.23.0 Mainnet protocol upgrade, the NEAR Foundation is pleased to announce the NEAR Foundation Delegation Program.

    - - - -

    This delegation program is looking to support validators who have contributed to the ecosystem and are ready to join the NEAR Mainnet. To ensure that we select the best and most capable validators, we’re encouraging all existing validators and potential validators to apply. 

    - - - -

    NEAR Foundation will make the decision process for the Foundation Delegation as transparent as possible. 

    - - - -

    Validator Delegation Program Requirements 

    - - - -

    Technical Requirements: We expect the validator to run a NEAR testnet node and a NEAR mainnet node, demonstrating that they are ready and able to maintain nodes on the NEAR network. For mainnet readiness, having a mainnet node with a staking pool ready and standing by December 13th (the nearcore 1.23.0 protocol upgrade date) is a prerequisite for an applicant to receive NEAR Foundation delegation.

    - - - -

    We expect all nodes to diligently participate during protocol upgrades. Each node should upgrade to the latest nearcore version within 12 hours of release if the protocol upgrade is labeled “CODE_RED” or “CODE_YELLOW”, and within 24 hours if the protocol upgrade is labeled “CODE_GREEN”. 

    - - - -

    Additionally, nodes should show a high uptime on testnet and on mainnet. A monitoring period is implemented to ensure validator nodes have stable operations. 

    - - - -

    Marketing Requirements: Beyond technical prowess and uptime, validators who could  demonstrate exceptional customer service to delegators and provide the best educational content to delegators will be considered as prime candidates for receiving NEAR Foundation delegation.

    - - - -

    On the mainnet, we ask that validators present themselves to delegators and the NEAR community by providing metadata using the staking pool smart contract. Their name, description, and social media channels should be listed by providing the following metadata using the staking pool smart contract. The identifying information that we require the validators to provide are:

    - - - -
    1. Name
    2. Description 
    3. URL
    4. Country and country code
    5. Email (for support)
    6. Telegram, Discord, or Twitter
    - - - -

    This information allows the NEAR community to connect with the validators for support, fostering a two-way communication between validators and delegators, as well as the wider NEAR Ecosystem.

    - - - -

    Hosting: Validators self-declare whether they operate nodes themselves or use a third party, as well as whether they run their own hardware or use cloud services. We may ask validators to share some information regarding their setup. 

    - - - -

    As NEAR Protocol is carbon neutral, we ask validators to think through how they offset their validator operation’s CO2 footprint, and communicate any CO2 offsetting that they implement on their end, such as using a renewable energy source to operate the nodes.

    - - - -

    Commission Limit: We ask validators who would like to apply for a NEAR Foundation delegation to charge no more than 7% commission on delegation.

    - - - -

    Ecosystem Participation: Applicants are expected to actively participate in the NEAR Ecosystem. To further evaluate applicants, we ask the applicants to provide as much information as possible on the following questions:

    - - - -
    • How have you contributed to the NEAR Ecosystem in the past? 
    • How will you contribute to the NEAR Ecosystem in the future?
    • Have you helped to onboard any NEAR validator? Please specify the pool name of the validator you helped, and what did you do to help? 
    • What is your long term marketing plan to attract delegation?
    - - - -

    Application

    - - - -

    If you are interested in becoming a validator and apply to the NEAR Foundation delegation, please submit your NEAR Foundation Delegation Program Application as soon as possible. The applications will be reviewed on a rolling basis.

    - - - -

    December 13, 2021 is the deadline to submit your application.

    - - - -

    Existing Delegation: Given the expected reduction in seat price, the NEAR Foundation delegation will be smaller, compared to historical delegation, without jeopardizing decentralization of the network. For the validators who had historically received delegation from the NEAR Foundation, we encourage you to also apply in the same application process. It’s possible that the existing delegation may be reduced to enable additional validators to receive delegations.

    - - - -

    Validator Onboarding

    - - - -


    If you’re interested in becoming a validator and apply for delegation, we ask that you start by setting up Testnet and Mainnet nodes, then submit your application for delegation.

    We have collaborated with the Open Shard Alliance to build a bootcamp to help train new validators. To get started, please check out the Validator Bootcamp and join the Open Shards Alliance server for onboarding, as well as official validators announcement channels on Discord, Telegram and Twitter.

    - - - -

    As the NEAR Ecosystem rapidly scales to include new developers and users, we are working to quickly decentralize our organization and foster a vibrant validator community. These moves will be absolutely critical in reimagining the way NEAR’s community members can build, gather, innovate, and grow together.    

    -

    The post NEAR Foundation Launches New Validator Program To Further Decentralize the Network appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Validator Upgrade Allows Hundreds To Help Secure The Network - /blog/near-validator-upgrade-allows-hundreds-to-help-secure-the-network/ - - - Mon, 29 Nov 2021 17:38:23 +0000 - - - /?p=15380 - - Since the NEAR Mainnet launch in October 2020, we have seen steady growth in the number of validators. Today, NEAR …

    -

    The post NEAR Validator Upgrade Allows Hundreds To Help Secure The Network appeared first on NEAR Protocol.

    -]]>
    - Since the NEAR Mainnet launch in October 2020, we have seen steady growth in the number of validators. Today, NEAR has roughly 60 validators on mainnet, with many more wanting to join. Nevertheless, the extremely high threshold of 3.6M $NEAR makes it challenging for new validators to join. 

    - - - -

    This was certainly not our intention when we designed the current validator selection algorithm more than three years ago. That’s why we’re upgrading our validator process. 

    - - - -

    At present, the issue with the current algorithm is that the maximum number of validators allowed by the protocol is only achievable when everyone has an equal amount of stake. In practice, this is unrealistic. 

    - - - -

    The NEAR Ecosystem is working to add more validators to the blockchain to further decentralize the network. After reviewing a number of options, we made the decision to change the protocol’s validator selection process. This will take place in two steps: the top 100 proposals by stake amount will be listed as potential validators. The second step will be to ensure the number of tokens staked is high enough to maintain the security of the network. While 3.5 million $NEAR is very high, we want to avoid making the new number too low.  

    - - - -

    Improving access, one step at a time

    - - - -

    Compared to the existing selection algorithm, this seemingly simple change requires a lot of heavy lifting behind the scenes. NEAR’s target block speed of 1 second means that any validator selection process must be extremely fast while continuing to maintain the security of the network. This means the change requires very fast sampling from a discrete probability distribution. 

    - - - -

    NEAR’s core developer team is happy to announce that this change has now been implemented, allowing more validators to join NEAR. This is great news for validators as it will dramatically reduce the barrier of entry to mainnet and makes it easier for them to maintain their seats. If more than 100 proposals are submitted, the threshold will simply be the stake of the 100th proposal, provided that it’s larger than the minimum threshold*. 

    - - - -

    We expect to reach 100 validators soon after Mainnet is upgraded to this change—leading to a 60% increase in the number of validators we have active today. Other than the change to the validator selection process, everything else remains the same. Validators still produce blocks proportional to their stake and receive rewards accordingly.

    - - - -

    This change is only the beginning of a number of ecosystem-wide initiatives that will continue increasing the number of validators and improving network decentralization. With the upcoming launch of phase 1 of sharding in early 2022, we expect to add another 200 validators to Mainnet. 

    - - - -

    NEAR has always been, and will always be committed to building a secure, scalable, and decentralized network to help onboard the world into web3. To take advantage of the upcoming expansion, and to onboard validators onto the NEAR Mainnet, we have collaborated with the Open Shard Alliance to release a bootcamp to help train new validators. 

    - - - -

    If you’re interested in joining our bootcamp, you can find more information here. 

    - - - -

    If you’d like to start running your nodes on Testnet and Mainnet, head to the Open Shards Alliance server on Discord. 

    - - - -

    * The minimal threshold depends on the total amount of stake, which at this point we estimate it to be 67,000 NEAR.

    -

    The post NEAR Validator Upgrade Allows Hundreds To Help Secure The Network appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/core-protocol/index.html b/public/blog/tag/core-protocol/index.html deleted file mode 100644 index e1241740e..000000000 --- a/public/blog/tag/core-protocol/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Core protocol Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/core-protocol/page/2/index.html b/public/blog/tag/core-protocol/page/2/index.html deleted file mode 100644 index 7e26833e0..000000000 --- a/public/blog/tag/core-protocol/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Core protocol Archives – Page 2 of 2 – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/cosmose-ai/feed/index.xml b/public/blog/tag/cosmose-ai/feed/index.xml deleted file mode 100644 index 9bf4b1e2d..000000000 --- a/public/blog/tag/cosmose-ai/feed/index.xml +++ /dev/null @@ -1,232 +0,0 @@ - - - - Cosmose AI Archives – NEAR Protocol - - /blog/tag/cosmose-ai/ - - Thu, 14 Sep 2023 08:37:12 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Cosmose AI Archives – NEAR Protocol - /blog/tag/cosmose-ai/ - 32 - 32 - - - Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  - /blog/cosmose-ai-harnesses-the-open-web-and-near-with-kaikainow/ - - - Thu, 14 Sep 2023 00:00:00 +0000 - - - - - - /?p=20877 - - Cosmose AI, the global platform that uses AI to predict and influence how people shop offline is launching a new …

    -

    The post Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  appeared first on NEAR Protocol.

    -]]>
    - Cosmose AI, the global platform that uses AI to predict and influence how people shop offline is launching a new piece of technology designed to disrupt the smartphone lock screen experience. 

    - - - -

    Called KAIKAINOW, it brings together artificial intelligence and blockchain to help users stay informed and engaged with the world around them without the hassle of unlocking their phones. 

    - - - -

    KAIKAINOW, an opt-in technology, sits on a user’s home screen. It offers a variety of curated content, including news, language learning, games, and trending stories which would be interspersed between users’ very own personal wallpaper pictures.

    - - - -

    “We check our smartphone lock screens on average 80 times a day, always seeing the same  wallpaper backdrop. Imagine, instead of seeing the same image over and over again you see it every other time, while enjoying personalized content during remaining interactions,” says Miron Mironiuk, Founder and CEO of Cosmose AI. 

    - - - -

    KAIKAINOW changes that by harnessing cutting edge AI technology, and pairing it with open web tools found on the NEAR blockchain to ensure the experience is tailored to the user while always adhering to the highest privacy standards.

    - - - -

    “The launch of KAIKAINOW by COSMOSE AI shows how far we’ve come in respects to transforming Web3 from an innovative idea to a something that can deliver real world benefits to consumers, while also helping foster brand loyalty and business growth in the retail space,” says Marieke Flament, CEO of the NEAR Foundation. 

    - - - -

    “We are thrilled to align ourselves with such a fantastic, rapidly growing tech firm such as Cosmose AI and look forward to seeing how it will truly transform the world of retail and get the world closer to Web3 mass adoption.”

    - - - -

     

    - - - -

    Blockchain meets AI 

    - - - -

    Publishers and brands provide the content and KAIKAINOW enhances the experience by allowing users to unlock rewards via KAI-CHING, a native token pegged to the US Dollar built on the NEAR Protocol. These tokens can then be used to access exclusive offers only available to KAIKAINOW users. 

    - - - -

    Thanks to KAI-CHING, shoppers and retailers benefit from shorter payment processing time and significantly lower fees.

    - - - -

    By building both consumer products and its token on NEAR protocol, Cosmose AI is accelerating its Web3 offerings with one of the world’s leading, open source blockchain platforms and further advancing the AI-driven retail ecosystem.

    - - - -

    To date, Cosmose AI has served over 20 million stores and reached one billion phones globally. The integration of NEAR technologies means that Cosmose can ensure that users maintain complete control over their data and benefit from the ecosystem they help create. This approach ensures the highest level of privacy for users and aligns with the Company’s commitment to user safety.

    - - - -

    Blockchain’s digital record, paired with NEAR’s open web tooling, means AI services can help improve trust in data integrity and, by extension, in the recommendations that AI provides. Using blockchain to store and distribute AI models provides an audit trail, and pairing blockchain and AI can enhance data security. 

    - - - -

    NEAR is helping partners like Cosmose AI harness these tools to create better products that serve customers and partners equally. 

    -

    The post Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Cosmose and NEAR Foundation Set To Revolutionize Retail with Web3 and AI - /blog/cosmose-and-near-foundation-set-to-revolutionize-retail-with-web3-and-ai/ - - - Mon, 24 Apr 2023 07:46:00 +0000 - - - - - /?p=20441 - - The Artificial Intelligence (AI) wave is touching just about every corner of commerce and culture, and retail is no exception. …

    -

    The post Cosmose and NEAR Foundation Set To Revolutionize Retail with Web3 and AI appeared first on NEAR Protocol.

    -]]>
    - The Artificial Intelligence (AI) wave is touching just about every corner of commerce and culture, and retail is no exception. Cosmose AI, one of the leaders in AI and retail, has received a strategic investment from NEAR Foundation to create Web3, mobile, and retail experiences that enhance personalization without sacrificing privacy or security.

    - - - -

    “NEAR is the most secure, scalable, and sustainable blockchain protocol,” says Miron Mironiuk, founder and CEO of Cosmose. “As such, we’re grateful for the ongoing support from NEAR Foundation and are excited about what’s to come.”

    - - - -

    By utilizing the NEAR Blockchain Operating System (BOS) and AI-powered retail personalization, Cosmose gives users access to their data and personalized recommendations. This move toward a decentralized and user-focused Web3 future emphasizes how AI and blockchain have the power to completely alter current business structures in the retail sector.

    - - - -

    With the help of NEAR’s technology and ecosystem, Cosmose can now change conventional retail business models and produce hyper-personalized shopping experiences that increase loyalty and happiness. These experiences will include its flagship mobile application KaiKai and a suite of AI-powered personalization tools.

    - - - -

    Personalizing retail with Web3 experiences

    - - - -

    Shopper and user personalization is nothing new in retail, but Cosmose is blazing a new trail with the power of its proprietary AI engine. Cosmose’s AI gathers and analyzes user data to produce suggestions and experiences that are uniquely tailored to each user. 

    - - - -

    By building on NEAR, Cosmose is able to help retailers develop stronger customer interactions while also addressing privacy and data security issues endemic to Web2 retail data collection. Cosmose and its KaiKai mobile app are trusted by top brands including LVMH, Richemont, L’Oréal, and Estée Lauder.

    - - - -

    “Having built on NEAR in 2022 and while working with NEAR Foundation we discovered that our visions for the Web3-driven future are aligned,” Mironiuk continues.

    - - - -

    Through the partnership, Cosmose will be able to offer individualized experiences to its worldwide clientele through a number of channels, including online, in-store, and mobile. 

    - - - -

    “This investment from NEAR Foundation is a testament to Cosmose AI’s strength and potential to revolutionize e-commerce and the retail industry,” said George Raymond Zage III, founder and CEO of Tiga Investments and a Cosmose board member. “We’re excited to see Cosmose AI’s continued growth and success.”

    - - - -

    KaiKai: Introducing “Shoppertainment” on the NEAR Blockchain Operating System

    - - - -

    KaiKai, Cosmose AI’s flagship product, shopping, retail, and gamification to create a new category altogether: Shoppertainment. The mobile shopping experience is constructed in a very unique way, using the BOS as a backbone to make brand discovery and engagement more fun and rewarding.

    - - - -

    Some of KaiKai’s features that brands are already using include:

    - - - -
      -
    • Exclusive product drops available for a limited time
    • - - - -
    • Augmented Reality (AR) technology that brings products to life
    • - - - -
    • Livestreams featuring celebrities and influencers
    • - - - -
    • Ads displayed on users’ lock screens without interruptions
    • - - - -
    • Geolocation features displaying available products in the user’s area
    • - - - -
    • Rewards for collecting products and writing reviews
    • - - - -
    • A secure Near wallet accessible via the KaiKai app
    • -
    - - - -

    KaiKai also features a native cryptocurrency called Kai-Ching, which users earn and spend like any other retail rewards program. The difference is that Cosmose’s AI provides more personalized recommendations and rewards suggestions, with customers easily transacting on the NEAR blockchain with a native KaiKai crypto wallet.

    - - - -

    “We’re excited to support Cosmose as it continues to scale rapidly and create new ways for retailers to offer customers the best offline and online shopping experiences,” noted Marieke Flament, CEO of the NEAR Foundation. “Cosmose has already been building on NEAR testnet, and with this additional support it will have many more opportunities to grow and expand its offerings with Web3 in a sustainable, transparent, and infinitely scalable way.” 

    - - - -

    Flament added: “Cosmose’s excellent AI innovation will help to intensify its global marketplace lead, and with superior AI-driven personalization, its user base will undoubtedly continue to grow as new and existing customers are seamlessly transitioned into the world of Web3 and all the exciting opportunities it brings.”

    - - - -

    It’s no secret that AI is turning industries, communities, and business models on their heads – and that’s not a bad thing. NEAR Foundation’s commitment to developing Cosmose’s retail technology, including KaiKai, signals that consumers will now be even more empowered with more personal recommendations, a “shoppertaining” experience, and the sound of “Kai-Ching” as they earn crypto rewards powered by NEAR and BOS.

    - - - -

    “Together we’ll build a future where one billion users benefit from the ecosystem they’re part of, with complete control of their data and superior AI-driven personalization,” said Mironiuk.

    -

    The post Cosmose and NEAR Foundation Set To Revolutionize Retail with Web3 and AI appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/cosmose-ai/index.html b/public/blog/tag/cosmose-ai/index.html deleted file mode 100644 index 64e0db0da..000000000 --- a/public/blog/tag/cosmose-ai/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Cosmose AI Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/creatives/feed/index.xml b/public/blog/tag/creatives/feed/index.xml deleted file mode 100644 index c321b0596..000000000 --- a/public/blog/tag/creatives/feed/index.xml +++ /dev/null @@ -1,187 +0,0 @@ - - - - Creatives Archives – NEAR Protocol - - /blog/tag/creatives/ - - Wed, 01 Nov 2023 18:46:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Creatives Archives – NEAR Protocol - /blog/tag/creatives/ - 32 - 32 - - - NEARCON ’23: Developer, Founder, and Creative Talks You Shouldn’t Miss - /blog/nearcon-23-developer-founder-and-creative-talks-you-shouldnt-miss/ - - - Tue, 31 Oct 2023 19:39:29 +0000 - - - - - - /?p=21022 - - NEARCON ’23 in scenic Lisbon, Portugal is your go-to event for everything AI, the open web, and more. Whether you’re …

    -

    The post NEARCON ’23: Developer, Founder, and Creative Talks You Shouldn’t Miss appeared first on NEAR Protocol.

    -]]>
    - NEARCON ’23 in scenic Lisbon, Portugal is your go-to event for everything AI, the open web, and more. Whether you’re a developer, entrepreneur, or artist, there’s a session for you. Web3 regulatory aficionados, we’ve got you covered too (more on that later). 

    - - - -

    Here’s a rundown of sessions that are a must-see.

    - - - -

    Developer track: build better on NEAR

    - - - -

    NEAR: The Open Web Stack 

    - - - -

    NEAR co-founder Illia Polosuhin reveals game-changing updates for the NEAR ecosystem. A lot of new and exciting NEAR products and tools are in the works for developers. So, if you’re a dev, you won’t want to miss this talk from Illia. 

    - - - -

    Why Build Web3 Games 

    - - - -

    Hosted by PlayEmber’s Hugo Furneaux, this panel dissects the massive potential of gaming on the open web. Learn about player-owned economies and why you should consider NEAR for your next gaming project. An essential session for forward-thinking game developers.

    - - - -

    Unlocking NEAR Data 

    - - - -

    Data extraction got you puzzled? Pavel Kudinov, senior engineering manager at NEAR, will walk you through using SQL queries on NEAR BigQuery Datasets and the NEAR Query API to build and analyze. This is the toolkit you’ve been waiting for.

    - - - -

    Inside the BUILD Incubator 

    - - - -

    Will Russell, Michael Yu, and Max Mizzi from student hackathon league Major League Hacking take a deep dive into the BUILD Incubator Fellowship. Hear firsthand experiences and gather invaluable insights that could jump-start your open web development journey.

    - - - -

    Entrepreneurial track: jumpstart your journey

    - - - -

    Building Web3 Communities 

    - - - -

    This panel brings together experts from community building collective KryptoSeoul, decentralized identity project Galxe, NEAR DevHub, and Web incubator CryptoOracle Collective to discuss the art of fostering a vibrant, diverse community around any project.

    - - - -

    CryptoEconomics 101 

    - - - -

    Lisa Jy Tan, CEO of tokenomics consulting firm Economics Design, dives into the world of cryptoeconomics, helping you understand the fundamentals and real-world applications of economic principles, drivers, and incentives at play in the open web.

    - - - -

    Hiring Smart in Web3 

    - - - -

    Hiring in the open web is both exciting and fraught with potential landmines. Dan Eskow, founder of specialized Web3 talent agency Up Top, will share valuable tips on sourcing top talent, effective company branding, and red flags to look out for during the interview process.

    - - - -

    Funding Trends in Web3 

    - - - -

    A frontline perspective on open web investment from venture capital firms Accomplice VC, a_capital, RockawayX, and Generative Ventures. The expert VC panel will offer insights into funding trends and standout pitch decks to help founders stay ahead of the curve.

    - - - -

    Creative track: redefining art, marketing, and gaming

    - - - -

    Asia’s Impact on Web3 Gaming 

    - - - -

    This panel explores Asia’s key role in Web3 gaming, particularly Korea’s leadership in the space. Hear from Jay Hoonjai Lee, CEO of Vortex Gaming DAO, and NEAR Korea Hub’s general manager Scott Lee on what the entire blockchain gaming space can learn from Asia.

    - - - -

    Marketing in the Open Web 

    - - - -

    Learn how decentralization and the open web is changing marketing and branding from Lex B., co-founder of NEAR Studio, a creative agency dedicated to the NEAR ecosystem. Everything you need to know about marketing in the open web, including real-life case studies and successes.

    - - - -

    Advertising in Web3 

    - - - -

    Anjali Young from Collab.Land, an innovative project helping implement token-gated communities, discusses how Web3 is transforming the advertising landscape, allowing for more effective brand-customer engagement and immediate feedback.

    - - - -

    The Power of NFTs 

    - - - -

    Explore how NFTs are driving decentralized creativity, redefining loyalty, and reshaping cultural norms. Hear from the likes of Wilson Lee, co-founder of blockchain-based carnival app TheFunPass™, and Stipe Plejic, CEO of social NFT marketplace Endemic.

    - - - -

    NEARCON ‘23: get in on the action

    - - - -

    If you’re passionate about the transformative power of the open web, NEARCON ’23 is a can’t-miss conference. We’ve carefully curated speaker tracks and sessions to fuel your imagination and skills, whether you’re a developer, entrepreneur, or creative mind. And the policy-minded need not fret, there’s a special Regulatory Track chock full of insights about evolving legal frameworks, governance, and more. 

    - - - -

    With NEAR’s unique approach — super cheap, super fast, super secure — you’ll discover how the open web is solving real-world problems today.

    - - - -

    So why wait? Register for NEARCON ’23 now to secure your spot!

    - - - -

    Special offers are available for Ukrainians, students in Spain and Portugal, and hackathon registrants. Head over to those pages and register for your free NEARCON ‘23 pass!

    -

    The post NEARCON ’23: Developer, Founder, and Creative Talks You Shouldn’t Miss appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/creatives/index.html b/public/blog/tag/creatives/index.html deleted file mode 100644 index b82c9d26c..000000000 --- a/public/blog/tag/creatives/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Creatives Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/cricket-world-cup-2023/feed/index.xml b/public/blog/tag/cricket-world-cup-2023/feed/index.xml deleted file mode 100644 index 1019f968d..000000000 --- a/public/blog/tag/cricket-world-cup-2023/feed/index.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - Cricket World Cup 2023 Archives – NEAR Protocol - - /blog/tag/cricket-world-cup-2023/ - - Thu, 26 Oct 2023 19:27:17 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Cricket World Cup 2023 Archives – NEAR Protocol - /blog/tag/cricket-world-cup-2023/ - 32 - 32 - - - ICC Launches ‘Captain’s Call’ Game on NEAR to Level Up Cricket Fandom During World Cup - /blog/icc-launches-captains-call-game-on-near-to-level-up-cricket-fandom-during-world-cup/ - - - Thu, 26 Oct 2023 15:00:00 +0000 - - - - - /?p=21008 - - Cricket fans are getting a Web3-powered path to engaging with their favorite international sport. NEAR Foundation and the  International Cricket …

    -

    The post ICC Launches ‘Captain’s Call’ Game on NEAR to Level Up Cricket Fandom During World Cup appeared first on NEAR Protocol.

    -]]>
    - Cricket fans are getting a Web3-powered path to engaging with their favorite international sport. NEAR Foundation and the  International Cricket Council (ICC), the global governing body of cricket, just teamed up  to explore different ways of getting fans closer to their favorite teams and players. 

    - - - -

    This ICC and NEAR partnership arrives just as the cricket world is watching the Men’s Cricket World Cup 2023. The partnership’s first cricket fan experience, the Captain’s Call gaming app, taps into the NEAR Protocol’s infinite scalability. 

    - - - -

    Watch an animated primer below on the gameplay in Captain’s Call.

    - - - -

    Level up cricket fandom with Captain’s Call game

    - - - -

    In Captain’s Call, ICC’s first app on the NEAR blockchain, cricket fans compete against each other for the chance of winning prizes. Developed by Wincast, Captain’s Call allows fans to strategize around bowling, batting, and fielding actions during live cricket matches.

    - - - -

    To play, fans simply navigate to the ICC’s mobile apps or website, click on the Match Centre for the game they intend to watch, and submit their predictions before the match begins. Players then compete for a chance to win prizes, merchandise, and more. 

    - - - -

    Beyond Captain’s Call

    - - - -

    With NEAR and ICC, Web3 and and sports are on a path of continual innovation. A fan passport is currently in early discussions, which would enable fans to record their actions and memories in a tamper proof way, both on and off chain. Captain’s Call will serve as a template in creating other games that fuses other Web2 and Web3 worlds. 

    - - - -

    All of these sporting innovations are possible thanks to the Blockchain Operating System (B.O.S). With its full stack of Web3 tools and easy onboarding, partners like the ICC and others can take advantage of the world’s most highly scalable, community-driven, and secure blockchains that deliver proven, best-in-class performance that can support any kind of Web3 strategy. 

    - - - -
    - -
    -

    The post ICC Launches ‘Captain’s Call’ Game on NEAR to Level Up Cricket Fandom During World Cup appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/cricket-world-cup-2023/index.html b/public/blog/tag/cricket-world-cup-2023/index.html deleted file mode 100644 index f4d6d22f7..000000000 --- a/public/blog/tag/cricket-world-cup-2023/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Cricket World Cup 2023 Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/daos/feed/index.xml b/public/blog/tag/daos/feed/index.xml deleted file mode 100644 index d3c9ecb4c..000000000 --- a/public/blog/tag/daos/feed/index.xml +++ /dev/null @@ -1,1530 +0,0 @@ - - - - DAOs Archives – NEAR Protocol - - /blog/tag/daos/ - - Wed, 14 Jun 2023 15:35:33 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - DAOs Archives – NEAR Protocol - /blog/tag/daos/ - 32 - 32 - - - Case Study: Bernoulli-Locke-Locke’s David Palmer on the DAO-Owned SailGP Team - /blog/case-study-bernoulli-locke-lockes-david-palmer-on-the-dao-owned-sailgp-team/ - - - Wed, 14 Jun 2023 17:30:00 +0000 - - - - - /?p=20635 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: Bernoulli-Locke-Locke’s David Palmer on the DAO-Owned SailGP Team appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In recent installments, NEAR Foundation explored the BOS with Pagoda’s Chief Product Officer Alex Chiocchi, heard from OnMachina co-founder Jonathan Bryce on building decentralized storage, and dove into Move-to-Earn with Sweat Economy’s Oleg Fomenko.

    - - - -

    In the latest case study video, Bernouilli-Locke founder David Palmer details how his group is implementing a DAO for team ownership and governance for SailGP boat racing, by leveraging the power of NEAR.

    - - - -
    - -
    -

    The post Case Study: Bernoulli-Locke-Locke’s David Palmer on the DAO-Owned SailGP Team appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Backs Hydra Ventures to Create Web3’s First ‘Fund of Funds’ Investment DAO - /blog/near-foundation-backs-hydra-ventures-to-create-web3s-first-fund-of-funds-investment-dao/ - - - Wed, 29 Mar 2023 18:35:16 +0000 - - - - - - /?p=20340 - - NEAR Foundation is excited to announce that it has joined Hydra Ventures, a “fund of funds” investment DAO. A first …

    -

    The post NEAR Foundation Backs Hydra Ventures to Create Web3’s First ‘Fund of Funds’ Investment DAO appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce that it has joined Hydra Ventures, a “fund of funds” investment DAO. A first in the Web3 space, Hydra Ventures is designed to help other investment DAOs get off the ground. 

    - - - -

    By partnering with NEAR Foundation, Hydra Ventures will open the doors to the eventual launch of the first investment DAO in the Near ecosystem. 

    - - - -

    “The combined expertise of the leaders that have created this fund offers a winning formula that will help provide critical funding to purpose-driven, socially impactful web3 startups,” said Marieke Flament, CEO of NEAR Foundation. “We are delighted to be playing a part in launching this DAO and look forward to seeing the role it will play in developing our ecosystem.”

    - - - -

    Decentralizing Web3 investment with DAOs

    - - - -

    To power the “fund of funds” investment DAO, Hydra Ventures has raised $10M in capital from NEAR Foundation, MetaCartel Ventures, ConsenSys, 1kx Ventures, Collab + Currency, Nonagon Ventures, CMT Digital, among others. Hydra Ventures aims to take a hands-on approach to support investment DAOs, from community coordination and investment practices to organizational design, incentive design, and back office/operations.

    - - - -

    “While the first legally wrapped investment DAOs showed us what was possible, many of them have had major operating flaws which have been exposed over the years,” said Peter Pan, co-summoner of MetaCartel and Partner at 1kx Ventures. “Hydra looks to address many of these problems and ultimately emerge with a fundamentally better model for how investment DAOs should be operated. We are thrilled to have NEAR Foundation’s support in this venture.”

    Hydra Ventures is incubated by Thing3 and MetaCartel Ventures (the first and one of the most successful investment DAOs created), and backed by leading founders and thinkers in Web3. MetaCartel has incubated and made investments in several category-leading projects like Sky Mavis, Axie Infinity, Arweave, Open Zeppelin, DAOhaus, Zapper Finance, and Rarible, and were also one of the first investors in Mintbase, an NFT marketplace built on Near. MetaCartel members include Ameen Soleimani (founder, Moloch DAO), Stani Kulechov (founder, AAVE), Roneil Rumburg (founder, Audius), Bobby Ong (founder, Coingecko), RAC (Grammy award winner), Peter Pan (Partner, 1kx Ventures), amongst others.

    -

    The post NEAR Foundation Backs Hydra Ventures to Create Web3’s First ‘Fund of Funds’ Investment DAO appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Update on Near Decentralized Funding, DAOs, and Accelerator - /blog/update-on-near-decentralized-funding-daos-and-accelerator/ - - - Fri, 24 Feb 2023 16:00:00 +0000 - - - - - /?p=19785 - - Hello Nearians, We are more than halfway through the first quarter of 2023 and wanted to share a quick update …

    -

    The post Update on Near Decentralized Funding, DAOs, and Accelerator appeared first on NEAR Protocol.

    -]]>
    - Hello Nearians,

    - - - -

    We are more than halfway through the first quarter of 2023 and wanted to share a quick update on the progress NEAR Foundation has made on community funding and accelerator strategies.

    - - - -

    First, if you are a project building on NEAR or interested in building on NEAR and need some immediate support, please fill out this Project Support Form. NEAR Foundation will connect you with the appropriate person or organization who can assist. 

    - - - -

    Decentralizing Funding

    - - - -

    Important changes in the grant program were announced at the start of January, highlighting the Foundation’s goal for a more decentralized funding process by handing over decision making to community DAOs. What follows is the status of the initial DAOs. 

    - - - - - - - - - - - - - - - -
      -
    • NEAR Digital Collective (NDC) is a grassroots movement by the NEAR Community to decentralize. NDC V0 Governance is coming soon! The initial milestone is for the Community Treasury to come online, and it is actively being finalized. V0 focuses on funding the GrassrootsDAOs listed above: Marketing, Developer, and Creatives. - -
    • -
    - - - -

    The Accelerator

    - - - -

    From the accelerator side, NEAR Foundation’s past experience with the grants program showed us that founders and teams are in need of a variety of support in order to be successful and take their project to the next level. 

    - - - -

    To that end, the Foundation’s strategy consists of three elements

    - - - -
      -
    1. We are building a product on NEAR Discovery that will allow founders to connect with a range of contributors (e.g., investors, subject matter experts in areas like legal and finance) who can support them in their journey. We are launching an MVP in early March. -
        -
      1. If you are a founder, investor, mentor, or subject matter expert interested in being a beta tester, please fill out this form
      2. - - - -
      3. If you are a founder interested in participating in paid user research, please fill out this form.
      4. -
      -
    2. -
    - - - -
      -
    1. We recently made an open call to partner with accelerator programs that can help us fast track support needs for projects. We will be releasing additional open calls in the coming weeks as we continue building out the support network available for founders. These open calls will be for: -
        -
      1. Engineering support resources
      2. - - - -
      3. Talent / Recruitment platforms and services
      4. - - - -
      5. Legal platforms and services
      6. - - - -
      7. Back office accounting platforms and services
      8. - - - -
      9. Marketing services
      10. - - - -
      11. Product management services
      12. -
      -
    2. -
    - - - -
      -
    1. We are continuously developing and identifying learning content and tooling that are most helpful for early stage founders (e.g., accounting software geared towards Web3 teams, Go To Market exemplars, etc.). These resources will be available within the product.
    2. -
    - - - -

    Take 1 minute to help us pick a name for the Accelerator here (survey closes on March 1, 2023)!

    - - - -

    If you have any questions on decentralized funding, the DAOs, and Accelerator program, please reach out to the Community Team on Telegram, Discord, and other social media channels used by the NEAR community. 

    - - - -

    And again, if your project is building on NEAR or interested in doing so and you are in need of some immediate support, fill out this Project Support Form. NEAR Foundation will connect you with the appropriate person or organization who can assist. 

    -

    The post Update on Near Decentralized Funding, DAOs, and Accelerator appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR 2022: A Year in Review - /blog/near-2022-a-year-in-review/ - - - Fri, 23 Dec 2022 15:00:00 +0000 - - - - - - /?p=19607 - - It’s been a whirlwind year for NEAR – and it’s hard to believe that 2022 is coming to an end. …

    -

    The post NEAR 2022: A Year in Review appeared first on NEAR Protocol.

    -]]>
    - It’s been a whirlwind year for NEAR – and it’s hard to believe that 2022 is coming to an end. It’s been a year filled with massive milestones and achievements, including the biggest NEARCON ever, record-breaking new wallet creation, and much more.

    - - - -

    With 2023 around the corner, it’s a great time to reflect and take stock of all the exciting happenings and announcements that took place in 2022. NEAR Foundation congratulates every developer, community member, and partner that made 2022 a blast.

    - - - -

    Without further ado, here’s everything that happened with NEAR in 2022, how the ecosystem is successfully navigating bear market conditions, and why NEAR is primed for explosive growth heading into 2023!

    - - - -

    Protocol Progress and JavaScript SDK

    - - - -

    The last 12 months saw huge progress on the protocol level, with an exciting roadmap charting the course for 2023 and beyond. From staking upgrades to new developer tools, the NEAR protocol made huge strides in onboarding new builders and the next 1 billion users.

    - - - -

    NEAR introduced the brand new JavaScript SDK, enabling developers to build on NEAR using the most popular programming language in the world. Brendan Eiche, the inventor of JavaScript and co-founder of privacy-first browser Brave, even joined a panel at NEARCON to discuss the new SDK, Brave’s new support of Aurora, and why he’s excited about NEAR.

    - - - -

    NEAR also saw the introduction of meta-transactions, allowing third parties to pay transactions for the transaction cost of any account. Users can then be onboarded to NEAR apps without owning any NEAR tokens. Meta transaction development will continue through next year and will be critical to new wallet growth.

    - - - -

    Stake Wars’ latest iteration also began in 2022, marking another step towards decentralizing the network. Stake Wars will increase the total number of validators as chunk-only producers for the next phases of sharding. The chunk-only producer role will be more accessible to new validators who don’t have sufficient $NEAR to run a Block Producer node.

    - - - -

    Phase 1 of Nightshade Sharding Commences

    - - - -

    Stake Wars was a critical step in the transition from Simple Nightshade to Phase 1 of sharding in 2022. As Phase 1 continues, total validators will increase from around 100 to 300, with a significantly lower seat price. Phase 1 was crucial to facilitate scaling, improve decentralization, and bring the Open Web to mass adoption.

    - - - -

    There will be an 86% decrease in collateral requirements to become a chunk-only producer as Phase 1 of Nightshade concludes in 2022 and continues into the next year. Phase 1 went live on mainnet in September 2022 with key contributions and assistance from the Pagoda team.

    - - - -

    As NEAR co-founder Illia Polosukhin told CoinDesk in the lead-up to the Phase 1 roll-out, “the more users the network gets, the more decentralized the network gets as well.” This allows NEAR to add more validators in response to more demand for the network, delivering on the promise of speed, scalability, and efficiency. 

    - - - -

    Major Strides in Funding and Transparency

    - - - -

    A thriving NEAR ecosystem requires resources and trust, both of which made major strides. The birth of Transparency Reports assured the community that all core stakeholders in NEAR are operating in good faith and from a position of financial strength. These reports provide important information about the health of the protocol and ecosystem, including staking distribution, daily transactions, and new accounts created. (Read the Q3 Transparency Report.)

    - - - -

    NEAR Foundation CEO Marieke Flament also hosted a post-FTX AMA, re-assuring the ecosystem of NEAR’s runway and explaining why the current bear market is a time for a conviction to build.

    - - - -

    To see how NEAR Foundation and other ecosystem funding projects have been distributing portions of the $800M in funding throughout 2022, check out Q1/Q2 and Q3 Transparency Reports. Key areas of funding include Proximity Labs and DeFi, DAOs, NFT infrastructure, and Regional Hubs. The NEAR Digital Collective (NDC) was also announced and launched at NEARCON, with one of the goals being to further decentralize and democratize grants giving and decision-making processes.

    - - - -

    Ecosystem Growth

    - - - -

    NEAR’s 2022 was one of huge growth and innovation. New partnerships like Sweatcoin and SailGP were major stepping stones toward bringing Web3 to the masses. Projects in areas such as gaming, music, and NFTs showcased that the NEAR ecosystem is thriving and poised for new heights in 2023.

    - - - -

    The NEAR protocol experienced 15x growth in cumulative accounts over the past year with 22M+ today. NEAR also has 900K monthly active wallets, marking a major increase from this time last year. And in 2022, the NEAR ecosystem generated $330M of external capital in projects building on NEAR. 

    - - - -

    Movement Economy

    - - - -

    One of the biggest catalysts for new NEAR wallet and account creation was the partnership with Sweatcoin. The $SWEAT token rewards users for every step they take throughout the day, encouraging users to live healthy lifestyles. Sweatcoin migrating to NEAR pushed total wallets from 2 million at the beginning of the year to over 20 million by November. As Flament pointed out during the Sweatcoin keynote at NEARCON, the movement economy is in its infancy, and NEAR is poised to be a leader in the space with the help of Sweatcoin.

    - - - -

    DAO Innovation

    - - - -

    Another huge addition to the NEAR ecosystem was the world-renowned boat racing league, SailGP. SailGP partnered with NEAR to pioneer the intersection of sports, Web3, and Decentralized Autonomous Organizations (DAOs). In addition to offering NFT collectibles on the NEAR blockchain to fans, SailGP will use AstroDAO tooling to create the first fan-owned team as a DAO. In addition to the growth of ecosystem projects like Kin DAO for equity and inclusion, it was a banner year for NEAR and DAOs.

    - - - -

    Blockchain Music

    - - - -

    You may not have noticed, but 2022 saw a massive surge in interest about music and Web3. And one of the most innovative projects in this area was in the NEAR ecosystem, with the launch of Endlesss. The music creation, marketing, and community development platform’s NEAR integration went live in the summer as a virtual gathering place blending social media features with music production tools. Endlesss enables musicians of all skill levels to conduct “jam sessions” on the NEAR blockchain and mint their music as NFTs. 

    - - - -

    Gaming

    - - - -

    The NEAR ecosystem got a huge dose of star power with the unveiling of Armored Kingdom. Backed by Hollywood star Mila Kunis, Armored Kingdom will be an immersive gaming, NFT, storytelling, and metaverse experience built on the NEAR blockchain. The project kicked off with a first edition NFT comic book airdrop at Consensus, Austin. NEAR also announced the launch of the South Korea Regional Hub with a focus on bringing the NEAR blockchain to the massive local game development community. 

    - - - -

    PlayEmber also established itself as a key player in the NEAR gaming ecosystem, taking a mobile-first approach to Web3 gaming and bringing advertisers into the space. PlayEmber’s games now have over 4.2 million monthly active users, and recently closed a $2.3 million pre-seed raise led by Shima Capital.

    - - - -

    NFTs

    - - - -

    With core NFT infrastructure maturing in the NEAR ecosystem, 2022 was a year of innovative use cases and groundbreaking projects. NEARCON saw the announcement of a key grant to Few and Far, a premium NFT marketplace on NEAR with a seamless UX and simple minting solutions. One of NEAR’s biggest NFT projects, Mintbase, received over $12 million in funding this August. Mintbase empowers niche creators with the ability to mint NFTs of any type with little technical know-how, exemplifying NEAR’s commitment to making Web3 easy for everyone.

    - - - -

    Looking Ahead

    - - - -

    From the launch of Phase 1 sharding to protocol upgrades and ecosystem growth, 2022 was a huge leap for the NEAR ecosystem in many respects. It’s the year that the “Create Without Limits” vision was introduced, the biggest NEARCON ever took place, and some of the most important partnerships in the history of NEAR were cemented. It was also a year in which NEAR committed to more transparency and communication with the community.  

    - - - -

    Looking forward, NEAR will continue to champion Web3 as a catalyst for change, in addition to environmental sustainability as a carbon-neutral blockchain. In 2023, the NEAR community can expect even more partnerships that push boundaries and support projects that will enhance and empower a prosperous NEAR ecosystem.

    -

    The post NEAR 2022: A Year in Review appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Strategic Update and Outlook for 2023 - /blog/near-strategic-update-and-outlook-for-2023/ - - - Thu, 15 Dec 2022 14:32:27 +0000 - - - - - - - /?p=19581 - - The recent stream of news clearly demonstrates that the world needs Web3. Trust in legacy institutions is breaking down, individual …

    -

    The post NEAR Strategic Update and Outlook for 2023 appeared first on NEAR Protocol.

    -]]>
    - The recent stream of news clearly demonstrates that the world needs Web3. Trust in legacy institutions is breaking down, individual privacy and individual freedom are equally at risk, and the major Web2 platforms we use every day have become monopolies that focus on profit, not people. 

    - - - -

    Yet Web3 also hasn’t fully delivered on its promise to open the web. While important progress has been made, much more needs to be done for this technology to deliver fairer, freer digital systems. Today’s Web3 suffers from inaccessible user experience, siloed applications which are difficult to discover, few real-world use cases, and technology tribalism. Put simply, too much hype and not enough value for users. 

    - - - -

    Since 2018, NEAR has focused on building scalable, secure technology and infrastructure that is easy to use and enables developers to freely create usable applications. Since launching Mainnet in late 2020, the NEAR ecosystem has made incredible progress, becoming one of the top layer-one blockchains with 22 million accounts, 600K monthly active wallets (active defined as 2+ transactions), and 15x growth in users and projects just in the last year. And despite chaos in the market and a major downturn in recent months, NEAR Foundation has sufficient capital to sustain at least five years of operations in bear market conditions thanks to responsible treasury management. 

    - - - -
    - - - -

    While Web3 has yet to deliver on its promises, NEAR Foundation believes that NEAR is the only ecosystem where Web3 promises can be delivered and where mainstream adoption can happen. All the fundamentals have been established for some time and NEAR is charging full-speed ahead into its next growth phase in 2023. This post will cover NEAR’s convictions heading into next year, the strategic approach to drive our next phase, and a look ahead at new areas of product and development. 

    - - - -

    Fundamentals and Convictions

    - - - -
      -
    • NEAR has the best technology in Web3. Provably scalable, easy to onboard and use, developer friendly, secure, and decentralized, with the most advanced account model and onboarding in the blockchain space. 
    • - - - -
    • NEAR has world-class talent and ample runway. From the core teams at the Foundation and Pagoda, to the incredible NEAR Foundation Council and advisors, to the diverse group of brilliant entrepreneurs building companies, apps, and funds on NEAR, some of the best talent in the world is here on NEAR. And thanks to the Foundation’s responsible treasury management, core ecosystem operations and funding are well-positioned to run for many years to come. 
    • - - - -
    • Achieving mainstream adoption is about users. Not TVL, not flashy headlines, not cultish maximalism. NEAR focuses on what matters for the long term and the bear market will separate the high quality projects from the ones fueled mostly by hype. 
    • - - - -
    • Web 2.5 will get us there. Sweatcoin proved that NEAR can support an app with tens of millions of users on open web infrastructure. This is the next phase of adoption: helping another generation of Web2 apps and communities take advantage of the opportunities Web3 offers while providing a richer, more sustainable experience to their users. 
    • -
    - - - -

    Strategic Approach

    - - - -
    - - - -

    Enabling NEAR to make the most of these convictions in today’s climate means committing to the following goals over the next year. 

    - - - -

    Growing usage on NEAR will begin with a top-down approach focused on partnerships. The world-class business development team at the Foundation will focus on working with major applications and brands with substantial, established communities to partner with NEAR on real use cases that drive engagement, such as ticketing and earning. High-traction focus verticals include sports, entertainment, and loyalty. Major partnerships in recent months include Grupo Nutresa, Google Cloud, and Sweat Economy

    - - - -

    Any great Web3 ecosystem is an emergent product of a dedicated community of believers. The bottom-up, grassroots approach for the next year on NEAR will empower the community to invest in its own expansion through grants, primarily through 3 major community DAOs: Developer DAO, Marketing DAO, and Creatives DAO (visit the DAO websites to get involved). This means the NEAR Foundation will no longer directly allocate capital to projects, instead supporting the community in these decisions and further decentralizing key elements of the ecosystem. These grassroots DAOs will be supported by the NDC, which has achieved initial traction, including launching a new Governance Working Group and plans to roll out a v1 governance infrastructure for the ecosystem early next year.

    - - - -

    In the new year, the NEAR Foundation will form an early-stage accelerator that will provide support to promising projects and founders on NEAR in areas including education, tech, hiring, legal, UX, and GTM guidance, setting them up to grow into the landmark Web3 projects of tomorrow. 

    - - - -

    Looking Ahead 

    - - - -

    With NEAR’s protocol, infrastructure, and developer tooling already well established, the next step in providing the best user experience to Web3 will be at the discovery layer: the connective tissue that connects applications, tooling, social, earning, and developer components across the open web. This stack is what we call a “blockchain operating system.”

    - - - -
    - - - -

    Many of the building blocks of the blockchain operating system already exist on NEAR, either as features or apps. These include NEAR Crowd, a gig economy platform with 50% of users transacting every day, and NEAR Social, an on-chain social network with a widget framework that lets developers fork entire app frontends to build new experiences. Combined with upcoming improvements to onboarding, including from EVM wallets (which we’re calling remote accounts), native meta transactions, Keypom, and new chat/social capabilities, NEAR will deliver even more amazing value directly to developers and users. 

    - - - -

    All of these user-centric elements further up the stack, particularly at the app layer, will form the basis for a core component of the NEAR ecosystem’s product and technical focus in 2023. Pagoda, NEAR Foundation, and other key ecosystem participants will work together to deliver the best possible technology with an increasingly integrated and seamless experience for developers and end users. The goal from here is evolving NEAR to be more than just a layer-one blockchain: it will become a global blockchain operating system. It’s still early days, but building is underway and the vision is clear. 

    - - - -

    NEAR is Now 

    - - - -

    NEAR is the place where mainstream adoption of the open web will happen. Soon, anyone in the world—app users, developers, founders, creators—will be able to create without limits.

    - - - -

    - - - -

    Thank you for reading our NEAR 2023 Strategy Blog Post and/or participating in the NEAR Go Forward Strategy Twitter AMA! If you have questions or comments we would love to hear them!

    - - - -

    -

    The post NEAR Strategic Update and Outlook for 2023 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - First Fan-Owned Team Launches on NEAR - /blog/first-fan-owned-team-launches-on-near/ - - - Thu, 10 Nov 2022 11:05:41 +0000 - - - /?p=19062 - - Sports team ownership is on the verge of a watershed moment, and it’s happening on NEAR. Bernoulli I Locke’s member-based …

    -

    The post First Fan-Owned Team Launches on NEAR appeared first on NEAR Protocol.

    -]]>
    - Sports team ownership is on the verge of a watershed moment, and it’s happening on NEAR. Bernoulli I Locke’s member-based community is using NEAR’s Web3 technology to launch a fan-owned racing team in the SailGP international sailboat racing competition. 

    - - - -

    To pull this fan-owned team off, Bernouilli I Locke will use a DAO structure built on the NEAR Protocol. Launching Bermuda and across the Caribbean, this new, DAO-powered team will create new opportunities for fan engagement and sports ownership alike. 

    - - - -

    The DAO-owned team hopes to be the tenth squad in the SailGP league. The team is expected to debut in Season 4, which will comprise 14 events at iconic destinations around the globe. Season 4 kicks off June 17-18, 2023 with the United States Sail Grand Prix | Chicago at Navy Pier, and includes one event held at the team base in Bermuda in May 2024.

    - - - -

    How the DAO will power the fan-owned team

    - - - -

    A Distributed Autonomous Organization, commonly known as a “DAO”, is a blockchain-based  organization with governance managed transparently by its community. Fans interested in owning a part of the SailGP team will be able to purchase tokens that provide governance to the DAO—and with it, the right to vote on important team matters. 

    - - - -

    The sports team’s owners will be able to vote on decisions like team names, new flag design representing overall territory, and even team athlete selection. Fan owners will also be able to help make decisions on boat livery, fan benefits and access, sponsorship, management, team business decisions, and more. 

    - - - -

    “Last month we shared that we had updated our SailGP Participation Agreement to allow a DAO owned team to join the league and now we are very excited to see David Palmer and his team of founders at Bernoulli | Locke forming a team under these amended rules,” said SailGP CEO and Co-founder Russell Coutts. “David and his team have a unique marketing and operational background building global membership-based communities – demonstrating the unique expertise required to launch and assist in operating a fan owned team facilitated by a DAO.”

    - - - -

    “Professional sport is about building a passionate fanbase, and as a tech-forward global league SailGP has leaned into Web3 to develop the future of fandom,” Coutts continued. 

    - - - -

    “We look at the fan owned team as the ultimate implementation of a loyalty program, and this new Caribbean and Bermuda team will  redefine the fan experience and team ownership model. It is a testament to the power of our relationship with NEAR hat a decentralized team can be created to ultimately provide control of a team to a passionate community of fans.”

    - - - -

    How to join the historic fan-owned team

    - - - -

    Fans can take the first step in getting  involved in the new DAO team by heading over to FanVest.io to signal initial interest. The opportunity to participate is expected to be available to a limited number of individuals and institutions meeting financial and other applicable requirements. (See Legal Disclosure/Disclaimer below.) 

    - - - -

    Fans will also be able to own a seasonal membership pass through the purchase and holding of an NFT. This NFT provides season pass holders access to community as well as governance but not equity. 

    - - - -

    “With our partners, we are delighted to bring a new and exciting level of engagement and participation for sports team owners and fans, and add a new participant in SailGP,” said David Palmer, Bernoulli | Locke Founder and CEO. “Our goal is to have a vibrant community of owners and fans jointly sharing the incredible journey of establishing and operating a global racing team.”

    - - - -

    “Using the NEAR Protocol and the unique structure of the DAO we have established, we believe that we can achieve our goals with transparency and legal compliance, enabling the participation of an international community sharing a common sports interest and passion,” he added.  “We look forward to seeing everyone on the water at the first race next season!”

    - - - -

    “This historic partnership elevates fandom to a completely new level and creates a blueprint for building a successful use case for Web3,” said Marieke Flament, CEO of the NEAR Foundation.  “Launching this fan owned team breaks down the hierarchy of sport, giving enthusiastic spectators the chance to play an active role in shaping the future of competitive sailing by democratizing access to the sport and allowing fans to collectively own and manage a team like never before.” 

    - - - -

    For further details, please visit FanVest.io

    - - - -

    LEGAL DISCLOSURE/DISCLAIMER 

    - - - -

    The information contained in this press release is not directed at nor intended for use by any investors or prospective investors, and may not under any circumstances be relied upon when making a decision to invest in any equity tokens offered for sale by the DAO. An offering to invest in equity tokens of the DAO will be made only to accredited investors in accordance with U.S. Securities and Regulations by a private placement memorandum or equivalent information, subscription agreement, and other relevant documentation which should be read in their entirety. Any ultimate offering may be withdrawn or revoked, without obligation or commitment of any kind, at any time before notice of acceptance given. An indication of interest involves no obligation or commitment of any kind.

    - - - -

    Information in this release is not financial/investment advice.

    -

    The post First Fan-Owned Team Launches on NEAR appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Community in Focus: The Future of Community on NEAR - /blog/the-future-of-community-on-near/ - - - Thu, 23 Jun 2022 17:20:15 +0000 - - - /?p=16784 - - What will the world look like 20 years from now? By then, Web3 will be mainstream rather than in its …

    -

    The post NEAR Community in Focus: The Future of Community on NEAR appeared first on NEAR Protocol.

    -]]>
    - What will the world look like 20 years from now? By then, Web3 will be mainstream rather than in its nascent stages. It will be reality, not hype. So how can the NEAR community work towards a future that makes everyone proud?

    - - - -

    One question is whether Web3 will live up to its promises of creator empowerment through the coordination of decentralized systems. 

    - - - -

    Community is at the center of it all.

    - - - -

    “For NEAR, community is not about owning the narrative by trying to eat into each others’ share of the pie,” says Harshit Tiwari, Community Activation and Adoption Specialist at NEAR. “NEAR is committed to building a Web3 ecosystem where every human can find and build a digital home. We believe that true inclusion begins at the grassroots level.”

    - - - -

    Let’s take a look at the future of community on NEAR.

    - - - -

    Embracing timeless, unbreakable foundations

    - - - -

    The future of community on NEAR starts with commitments that the ecosystem is making now. From Tiwari’s perspective, several pillars define the NEAR community experience. 

    - - - -

    With a commitment to diversity, NEAR is working towards one of the most vibrant ecosystems in the world. In this diverse community, the vision is for people to have the freedom to pursue their passions and make an impact. Through shared governance, every community member will have a toolkit to protect the integrity of their ecosystem. 

    - - - -

    The culture, throughout NEAR, will inspire a sense of belonging so that everyone can find a home in the NEAR ecosystem. The overall impact is to facilitate collaborative uplifting, to make sure every person gets to enjoy upward socio-economic mobility while collaborating with people around the world.

    - - - -

    Tiwari believes that in the coming months and years the NEAR community will become increasingly decentralized. 

    - - - -

    “NEAR is really letting community members steer the community governance and building a safe environment for people from diverse backgrounds to come and thrive,” says Tiwari. “How the community decides to govern itself and organize around ideas is decided by the community through DAOs.”

    - - - -

    “The biggest things we are all collectively trying to figure out are equitable distribution of resources, opportunities, participation in governance experiments and decentralized ownership of ecosystem responsibilities,” adds Tiwari.

    - - - -

    ‘Phygital’ community building across cultures  

    - - - -

    India is known for its vibrant artist communities, traditional craftspersonship, and vibrant in-person marketplaces. Imagine being able to experience the rich beauty and cultural tradition of rural artists, from anywhere in the world. 

    - - - -

    It’s this “what if” that led to the creation of Naksh Marketplace, an NFT marketplace fueled by communities all over India. Founded by Srilakshmi Barathi and Nivedita Hail, Naksh grew out of the duo’s time in London working on a project in which Indian artists and artisans taught their skills to the world using a stitch kit. 

    - - - -

    “That’s when we realized the value a traditional artwork holds in the art space and we understood that there was a demand for such artwork which is associated with a cultural background of its own,” they adds. “We also saw the lack of artists in the NFT space who create their work on physical media, and lack of platforms that were accessible by the Indian audience and Indian artists.”

    - - - -

    Initially, Naksh focused on product instead of community building. But during the build, Barathi and Hail received support from many individuals. Through this feedback, a Naksh community evolved organically. 

    - - - -

    “That’s when we started interacting way more with our communities,” says Barathi. “We set up events and spaces for them to join and give us their opinions.”

    - - - -

    Since Naksh focuses on onboarding artists who produce work physically and not digitally, almost all onboarding efforts happen in person. 

    - - - -

    “We’ve been going to a lot of regional exhibitions and art galleries, meeting artists through some amazing curators,” say Barathi and Hail. “We have also found artists through virtual exhibitions.”

    - - - -

    The duo see Web3 as a pathway to connect the ingenuity of rural artists with the rest of the world.

    - - - -

    “Most rural artists are not aware of technology that can empower, educate, monetize and preserve their work,” explains Barathi. “The need for a vehicle to help Indian artists access the larger digital ecosystem with their physical products gave us an incentive to build Naksh.”

    - - - -

    Naksh’s next iteration will invite and onboard traditional artists from around the world. Envision a platform where traditional Indian artists—oftentimes individuals who have never left the country—can join the same communities as fellow creators from around the world. It’s a first-in-history mind-meld.

    - - - -

    “We are also trying to make our platform ‘phygital’ since all our traditional artworks have a physical asset,” says Barathi. “We aim to be the future of art exchanges.”

    - - - -

    Once Naksh launches digital and self-minting features for artists, Barathi expects more people to join. At that point, new communities will spring up around digital artists, just as with Naksh’s traditional Indian and fine artists. 

    - - - -

    Facilitating unique collaboration

    - - - -

    “Boo.”

    - - - -

    In a time of widespread negativity and distrust, that’s how Capardano, one of the project managers at BOO Monsters, has begun greeting people and signing off on emails. “It’s one of my favorite things to say,” says Capardano, who goes by “Cap” for short. 

    - - - -

    This perspective encapsulates the spirit of BOO Monsters, a collection of 100 NFT monikers roaming the internet. So what are these BOOs about?

    - - - -

    “We’re a group of people, who live across the world, who otherwise had no ties together,” says Cap. “We’re a DAO with decentralized project management.”

    - - - -

    In total, there are currently 37 BOOs roaming Web3. With BOO NFTs costing as much as $300,000 USD due to supply and demand economics, the community is exclusive to high net worth individuals.

    - - - -

    “Many of our members come from an investment perspective, with unique experiences and insights,” says Cap. “NFTs are just one gateway into our community. The money goes into the DAO to be spent across our endeavors and benefit the NEAR community.”

    - - - -

    One vision that the BOOs are building towards is evolutionary art. So what exactly does that mean, in practical terms? 

    - - - -

    With their RPG NEAR Future, built natively into Discord, a tribe of robots evolve beyond their initial programming. BOOs also created Antisocial Ape Club, a collection of 3,333 unique, generative pixel art NFTs. And Ev3reth, a machine learning artist and composer, is  partnering with artists such as GDM, whose work blends surrealism and fantasy. The BOOs also offer expertise and support to other NFT projects, like Skellies Secret Society and Few and Far

    - - - -

    “It’s about keeping growing, moving, and adding value to NEAR as a whole,” says Cap, who has been helping bring AnonymousFox to market.

    - - - -

    “It’s about helping people for the sake of doing good,” says Cap. “The Boos are curious and giving. We envision a future on NEAR built on empathy. There are people here in their 20s and people here in their 50s with a lot more life experience. What we share in common is that we’re curious. We embrace that there’s a lot we don’t know. It’s an environment built on love, where we are always learning and moving forward.”

    - - - -

    “Decentralization can be messy,” says Cap. “But we’re figuring it out with good intentions and mutual support. We see a future on NEAR built on these foundations.”

    - - - -

    Welcoming people who are hesitant to enter the space

    - - - -

    Understandably, many people stay away from cryptocurrencies and blockchain for reasons ranging from personal safety to confusion and barriers to technical adoption. 

    - - - -

    “I think working towards mass adoption with massive educational efforts and  onboarding for more diverse folks — namely women, people of diverse genders, people of color, and people in vulnerable social and financial situations is how I would like to see NEAR shaping its community infrastructure,” says Maria Neu, community manager at Mintbase, an NFT platform.”

    - - - -

    “It’s about giving them access not only to information but skills to work in the NEAR ecosystem,” she adds. “In terms of infrastructure and tooling, what I believe could help is a better overview of the existing guilds  — and a place to research. Think of a place to insert keywords to find communities already working on certain subjects. For example: art, utility NFTs, translation, education, etc.”

    - - - -

    In other words, the future of NEAR begins with a commitment to listening, observing, learning, and questioning assumptions.

    - - - -

    “The NEAR ecosystem is a very friendly and open place to start getting involved with Web3  but could be optimized and simplified for those who are still reluctant to enter the space,” says Wend.

    - - - -

    The road ahead

    - - - -

    It’s important to remember that these are still early days for NEAR. As Cap likes to say, “Web3 is the wild west.”

    - - - -

    It’s up to NEAR communities to create the future that they want to see. It also means that NEAR users must stretch their minds, and meet each other in a space of respect and kindness.

    - - - -

    “My biggest takeaway about the NEAR Community is that it’s in fact a ‘Community of Communities,’” says Rebecca Hallquist, a Community Team Lead at NEAR Foundation.

    - - - -

    “It contains incredible and ever-changing multitudes,” she says. “Whether it’s a group of digital artists in the Philippines, Web3 educators in Venezuela, or digital nomads hopping from crypto conference to crypto conference, they’re finding like-minded people here sharing similar interests, language, and enthusiasm for NEAR’s mandate and vision.”

    - - - -

    NEAR is a place where communities help new members settle in. It’s like a new family settling into a neighborhood, explains Halquist. It’s about helping people contribute where best they can.

    - - - -

    In the future, communities on NEAR will likely fulfill several functions. They could become gathering spaces and networks for social support, hobbies, income, learning, and so much more. For this to happen, the tools, platforms, and other means of organizing will have to be as multifaceted as the communities needs. And what NEAR communities build will manifest in the real world. They have the opportunity to be counterforces to the world’s more destabilizing forces. 

    - - - -

    “It’s a steady process of organic evolving self-organization with the potential for an increasing number of connections to emerge between the different communities, between communities and dapps, and between communities and projects, the more any new group ‘settles in,’” says Halquist.

    - - - -

    “We will need to be multifaceted enough to accommodate those needs more robustly.”

    - - - -

    Check out the complete series on the NEAR Community:

    - - - - -

    The post NEAR Community in Focus: The Future of Community on NEAR appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Community in Focus: Decentralized Community Building on NEAR - /blog/near-community-in-focus-decentralized-community-building-on-near/ - - - Thu, 16 Jun 2022 15:45:02 +0000 - - - /?p=16734 - - When Matt Aaron, project lead at DeFi and NFT analytics app UniWhales, saw the explosion of interest in the NEAR …

    -

    The post NEAR Community in Focus: Decentralized Community Building on NEAR appeared first on NEAR Protocol.

    -]]>
    - When Matt Aaron, project lead at DeFi and NFT analytics app UniWhales, saw the explosion of interest in the NEAR protocol, he also saw a gap in the market: an app that monitored its blockchain.

    - - - -

    The idea was to create a platform that provided real-time data for NEAR wallet activity, just like the platform he set-up to track Ethereum movements. After launching this week, the NEAR tracker bot is still a work in progress—but so far, so good. 

    - - - -

    “It was good vibes from the beginning,” says Matt. “As an analytics provider trying to tell the story of what’s going on on all these blockchains, we have to do our best to anticipate additional Layer 1s besides Ethereum where we think there can be meaningful activity our users would like to track.”

    - - - -

    “We’re getting all the help we need to get off to a good start,”he adds. “Community members and 4NTS helped connect me to the NEAR ecosystem and get things off to a smooth start.”

    - - - -

    Building Web3 products is different from building for Web2. Why? Because Web3 is decentralized, and users have—or at least are supposed to have—ownership. With no centralized authority making all the decisions singlehandedly, it is up to everyone to push things forward. 

    - - - -

    The importance of community in the Web3 world 

    - - - -

    For a project to be successful, those working on a protocol need to work in harmony and help newcomers. This can only be achieved with a strong community. 

    - - - -

    A recurring theme with those building NEAR products is getting a warm welcome from seasoned users of the blockchain, and the support needed to get off to a good start. “The people working on NEAR projects definitely want to help—especially newcomers,” adds Matt.  

    - - - -

    Community definitely exists in Web2. People interact on platforms like Reddit and writers can freely add to the world’s most popular websites, like Wikipedia. 

    - - - -

    But Web3 projects break down barriers, and users are much closer to the tools they use. People can have more control and say over how a project is built; there is no centralized authority (or, at least, there shouldn’t be—not for long, anyway); members can be rewarded for what they contribute. 

    - - - -

    In the Web3 world, communities are much more active and engaged (think DAOs and governance tokens.) And building a big, healthy community is key to a project’s success. The more people who believe in the project and are actively involved, the more likely it is to succeed. 

    - - - -

    How NEAR’s blockchain was built for communities 

    - - - -

    Jordan Gray, who is part of the TenK DAO and launched the NEAR Misfits NFT collection, says that building a community on NEAR is, for the most part, a smooth process—even for those moving from Web2 to Web3. This is in part due to NEAR’s unique and fool-proof architecture. 

    - - - -

    An example? NEAR’s web wallet. Getting started with it is far easier than getting started with other popular Web3 wallets, like MetaMask, says Jordan. Users get a human readable name that must be correctly entered to send money. And there are no lost funds on the NEAR blockchain. This is a feature many new users praise when entering Web3. 

    - - - -

    It’s one of the things that attracted Jordan to build upon blockchain in the first place.

    - - - -

    “The fact that when new users had their wallets, there was a human readable name—it wasn’t a long hexadecimal code—was just very friendly in that regard,” he says. “It’s really nice and easy for new users coming from the Web2 space, they find it pretty natural and it makes sense to them.” 

    - - - -

    Naksh, an NFT marketplace built on NEAR that puts traditional art on the blockchain, has gained traction in India’s art world. Naksh co-founder Sri Lakshmi says that NEAR’s impressive architecture—the wallet in particular—has helped get people using the marketplace, in turn helping to create a buzzing community. 

    - - - -

    “I think it’s pretty simple,” she says. “I have taught my artists how to open their wallets and they did not find it that difficult being completely new to this.”

    - - - -

    “Since all of the artists in our platform are completely new to the Web3 ecosystem and it was a first time experience for them, creating a wallet itself wasn’t much of a hassle for them,” she adds. “Including some of the deaf and dumb artists.”

    - - - -

    NEAR’s community is already bustling, and this makes building new communities easier. With a host of guilds and DAOs already in place to help new projects launch, things go more smoothly. 

    - - - -

    “NEAR’s community thrives on cross collaborating and helping each other out,” says Sri. “We have received a lot of help from guilds and other communities on NEAR in getting more people interested in Naksh through the various giveaways, Twitter spaces, video interviews, and articles.”

    - - - -

    A shared vision is also what keeps a decentralized community strong. And NEAR’s community shares one thing in common: a focus on building quality products. 

    - - - -

    “The kind of people who end up on NEAR are very collaborative and cooperative and want to help others,” adds Jordan. “Quality attracts quality.”  

    - - - -

    The strength of community during a bear market 

    - - - -

    NEAR Misfits co-creator Alejandro Betancourt, who does business development for the liquid staking app Meta Pool, finds strength in community. He says the NEAR community’s resilience during hard times is evidence of a solid community and project. 

    - - - -

    If anything, more people are noticing the NEAR ecosystem. Launched during the last crypto winter in 2020, it’s still going strong during today’s bear market, with more builders jumping aboard daily.  

    - - - -

    “There’s definitely a lot in the crypto culture that can be lost because everyone is just too obsessed with price or the herd mentality is too strong, so no one has the time or audacity to look into new things,” says Betancourt. “We launched during the bear market and now it’s a bear market again. The builder ethos and mentality keeps people motivated in the long-term.”

    - - - -

    It’s a bit quiet, there is less noise, and it makes it less pump and dumpy,” he adds. “Not everything is shiny, so people get a bit more critical of projects. So when people spend time looking into NEAR technology and the community, it definitely rises to the top in ways that other projects may have been attractive when everything was pumping but are now suddenly a bit more questionable.” 

    - - - -

    This is what makes NEAR a solid project. A strong community that keeps building, growing and helping others—even when things in the wider ecosystem have quieted down. 

    - - - -

    Check out the complete series on the NEAR Community:

    - - - - -

    The post NEAR Community in Focus: Decentralized Community Building on NEAR appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR’s March Town Hall Highlights - /blog/nears-march-town-hall-highlights/ - - - Thu, 07 Apr 2022 15:26:50 +0000 - - - /?p=16218 - - In the first quarter of 2022, the NEAR Foundation saw an explosion of activity in the ecosystem. The NEAR Town …

    -

    The post NEAR’s March Town Hall Highlights appeared first on NEAR Protocol.

    -]]>
    -
    In the first quarter of 2022, the NEAR Foundation saw an explosion of activity in the ecosystem. The NEAR Town Hall is a great place for the growing global NEAR community to see these new projects in action, as well as meet, learn, teach, and push the Web3 movement and NEAR adoption forward. 

    - - - -

    The March NEAR Town Hall explored ecosystem updates, MetaBUILD 2 winners, DAOs, and more. Here is the highlights from the NEAR Town Hall, which can be seen on NEAR’s YouTube channel or below. 

    - - - -

    NEAR in the news amid strong ecosystem growth

    - - - -

    In her opening remarks, NEAR Foundation CEO Marieke Flament gave an update on the NEAR community’s Ukrainian members. As Flament explained, many of them have settled in Lisbon, Portugal, one of the NEAR ecosystem’s major European hubs. 

    - - - -

    Flament reiterated the Foundation’s commitment to raising platform awareness, supporting projects with grants, and creating a safe path to decentralization via engagement with policymaking and regulation. She also showed some updated numbers from the NEAR community. 

    - - - -

    Through March, the NEAR community has onboarded 40,000 students and 120 NEAR-certified teachers, while grants grew to $124 million in funds spread across 509 recipients. The ecosystem also grew from 300 to 429 projects and DAOs, 110 million transactions (up from 95 million in February), and 5.2 million wallets—a growth of 1 million wallets in a single month.  

    - - - -

    Flament also highlighted recent news coverage on the Ukrainian fundraising effort Unchain Fund. This included a Cointelegraph feature, NEAR Co-founder Illia Polosukhin’s Wall Street Journal op-ed, and Sail GP’s NEAR announcement.

    - - - -

    Tune into Marieke’s talk here. 

    - - - -

    New brand partnerships: SailGP, Unchain Fund, and more 

    - - - -

    Chris Ghent, NEAR Foundation’s Global Head of Brand Strategy and Partnerships, went into greater detail on the SailGP announcement, and Unchain Fund. 

    - - - -

    “Sail GP is one of the most exciting and rapidly growing sports,” said Ghent. “The goal here is to look at the property as something we can drive really deep integrations with. The league is looking to announce a DAO, so we’re looking to see that evolve over the coming weeks and months as Season 3 approaches in May. From ticketing to NFTs, this is very much a deep tech integration as much as it is a global go-to-market.”

    - - - -

    Ghent also detailed NEAR’s ongoing partnership with privacy-preserving browser Brave—specifically, the homepage takeover for Unchain Fund and NEAR’s education initiatives. He also highlighted NEAR’s support of “Play Magnus,” a charity chess event that benefitted Unchain Fund’s humanitarian efforts in Ukraine.  

    - - - -

    Ghent’s segment also features “Marketing by the Numbers”, with talk of 700,000,000 global impressions and explosive social media engagement. 

    - - - -

    Catch Chris’ talk here. 

    - - - -

    MetaBUILD 2: the largest hackathon in NEAR history

    - - - -

    Pagoda’s Maria Yarotska, MetaBUILD 2’s Hackathon Coordinator, announced winners of the MetaBUILD 2 at the NEAR Town Hall. 

    - - - -

    “I’m happy to tell you that we just wrapped up the largest hackathon in NEAR’s history with a $1 million prize fund and almost 4,000 participants,” said Yarotska. “I was managing the judging process while fleeing the war in Ukraine, and I’m really proud of the community that made it happen and delivered some really exciting projects.”

    - - - -

    “Congratulations to Voog, MetaAds, and NEAR Playground,” she added. “Enjoy your bounties and don’t forget to respond to all the potential investors.”

    - - - -

    Yarotska also encouraged teams who didn’t win this time to get involved in the next MetaBUILD hackathon. For full details on the results, read “MetaBUILD 2 Hackathon Winners” on the NEAR blog. 

    - - - -

    You can see Maria’s talk here.

    - - - -

    Paris Blockchain Week Summit and other upcoming NEAR events

    - - - -

    Yadira Blocker, Experiential Marketing Lead at NEAR Foundation, spoke on NEAR’s involvement at Paris Blockchain Week Summit. NEAR speakers will be at PBWS (April 12-14th), so be sure to find them at the summit’s Discovery Stage. 

    - - - -

    For more information on NEAR’s events at PBWS, head to nearpages.wpengine.com/pbws

    - - - -

    From April 18-25th, NEAR heads to DevConnect in Amsterdam (more details to come), then Consensus 2022 in Austin (June 9-12th). 

    - - - -

    “[Consensus] is very big for the NEAR ecosystem,” said Blocker. “We’re coming on as a Block 4 partner, and we’ll have more information to share soon.” 

    - - - -

    Stay tuned to NEAR’s events calendar at nearpages.wpengine.com/events and watch Yadira’s talk here.

    - - - -

    Global NEAR Education and NEAR Grants updates

    - - - -

    Sherif Abushadi said NEAR Education continues to onboard new teachers through its global education initiatives. While 5,000 individuals registered for programs in the last week of March alone, Abushadi noted that only 120 people have become NEAR-certified. 

    - - - -

    “Certifications are still low—it’s not easy to get NEAR-certified,” said Abushadi. “You have to build an original project. We want to maintain a high bar but also make this program more accessible. So, you’ll see some new innovations from the education team in the coming weeks and months.” 

    - - - -

    Abushadi also spotlighted considerable growth in education fellowships in India, Nigeria, Mexico, Venezuela, and other c. 

    - - - -

    Want to become NEAR-certified? Visit near.university/certify

    - - - -

    You can see Sherif’s segment here. 

    - - - -

    Next, Josh Daniels, Head of Funding at NEAR Foundation, spoke on the Grants team’s core funding vision and statistics. To date, the Foundation has issued 234 direct grants committed for $15.4 million in 2022. Additionally, 8 projects have raised ~$70 million, with 84 currently fundraising for a total of $350 million. 

    - - - -

    Daniels also noted how NEAR Grants is currently exploring grant pools for select projects as part of the ecosystem fund. 

    - - - -

    “This is something that we announced at NEARCON in October of last year,” said Daniels. “We’re very much committed to continuing to move this forward.”

    - - - -

    Daniels also spoke on the expansion of the NEAR Regional Hub effort. Funding has been provided to four hubs to support local initiatives and projects in Kenya, the Balkans, Latin America, and Ukraine. 

    - - - -

    Check out Josh’s talk here.

    - - - -

    Open Web Collective on latest accelerator batch

    - - - -

    Mildred Idada, Head of Open Web Collective, had several updates at the NEAR Town Hall, including an announcement for OWC Accelerator’s Batch 4. 

    - - - -

    “This is going to be our biggest batch yet,” said Idada. “Just like other batches before, we want to see projects from all industries and sectors. So, if you’re focused on DeFi, NFTs, dev tooling—we want to see it all.”

    - - - -

    She also noted how every project in the accelerator gets up to $650,000 after Demo Day. 

    - - - -

    “That means when you join Day 1 of the program you’ll have $150,000,” Idada said. “At the close of Demo Day you’ll get another $500,000. Really, this allows you all to focus and build.”

    - - - -

    Check out Idada’s segment for more OWC Accelerator updates here. 

    - - - -

    Panel on NEAR’s growing DAO ecosystem

    - - - -

    The March Town Hall also featured a panel on NEAR DAOs, moderated by sports business analyst and ESPN alum Darren Rovell. The panel featured Ben Johnson (Strategy & Commercial, SailGP), Don Ho (Founder, Orange DAO), Rev Miller (Unchain Fund), and Julian Weisser, ConstitutionDAO). 

    - - - -

    After Rovell’s smooth introduction, SailGP’s Ben Johnson kicked things off with background on how SailGP partnered with NEAR to help create a groundbreaking sports team DAO. Unchain Funds’s Rev Miller talked about creating Unchain Fund DAO using Astro DAO, a NEAR-based DAO launchpad, to create the Unchain Fund DAO for humanitarian efforts in Ukraine. 

    - - - -

    Next, Julian Weisser explained why Constitution DAO was important in demonstrating what is possible when people assemble around a shared goal.

    - - - -

    “This wasn’t about saying, ‘Hey, we’re going to buy a copy of the Constitution, then we’re going to try and flip it 5 years from now, or we’re going to have a token and have the token appreciate in value,” he said. “The reason people were participating in this, including people who had never created a crypto wallet before, is that they wanted to be part of something that had emotional resonance to them. The constitution, like many artifacts, has significant cultural resonance to a lot of people—some positive, some negative.”

    - - - -

    “There is also the fact that it’s funny,” he added. “There’s this meme component to it. You combine that with a 7-day deadline. If we had started 90 days out we wouldn’t have had the traction.”

    - - - -

    Don Ho, Managing Director at Quantstamp, talked about why the DAO is an important structure to Orange DAO, a crypto collective formed by Y Combinator alums. 

    - - - -

    “I think DAOs are interesting, specifically in the context of Orange DAO, because it allows the community to actually own the community’s efforts,” Ho said. “What is Orange DAO? It’s the largest collective of builders in web3. To start, we have over 1,200 YC founders who are all part of this DAO, all who want to build in web3—that represents 20% of all YC founders.”

    - - - -

    “The craziest thing, though, is the YC community itself doesn’t have an inherent mechanism to capture the value it creates,” he added. “So, at Orange we want to create a community-owned fund and body of things that can promote this advancement of web3.”

    - - - -

    Check out the talk here.

    - - - -

    Read NEAR in March: Unchain Fund, SailGP, and DAOs to see what the NEAR community was up to in March.

    - - - -
    - -
    -

    The post NEAR’s March Town Hall Highlights appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - The Future of DAOs: DAOs at Work and IRL - /blog/the-future-of-daos-daos-at-work-and-irl-part-ii/ - - - Thu, 31 Mar 2022 14:44:55 +0000 - - - - /?p=16164 - - In “DAOs of the Near Future” Part I, we explored how DAO tooling, coordination, and standards will be crucial going …

    -

    The post The Future of DAOs: DAOs at Work and IRL appeared first on NEAR Protocol.

    -]]>
    - In “DAOs of the Near Future” Part I, we explored how DAO tooling, coordination, and standards will be crucial going forward. Now that we can imagine the ways in which DAOs can be improved, let’s explore how they will change things IRL. 

    - - - -

    As Web3 matures and goes mainstream, existing alongside and working in concert with Web2 platforms, DAOs will impact the world in more physical ways, from work to ReFi and sustainability to automation of business documentation and beyond. 

    - - - -

    Let’s take a look at how DAOs are already evolving, and how this process will be accelerated for mass Web3 adoption. 

    - - - -

    The DAO of work

    - - - -

    In the last few years, remote employment changed how people work—up to a point. But it’s possible that DAOs will be even more transformative with work in terms of how, when, how long, and under what conditions. 

    - - - -

    With more transparency in contracts and fund transfers, Marma J Foundation’s Chloe Lewis thinks DAOs will allow community members to work on what they want, when they want to, without worrying about the next paycheck. 

    - - - -

    “When you can see publicly that there are hundreds of funded DAOs that have open gigs, it’s less stressful to think of working for DAOs as being a reasonable way of life,” Lewis muses. “I also see DAOs using their governance token as a way to fund more projects without really selling or giving away the token through more advanced DeFi opportunities.”

    - - - -

    Belonging to a DAO is, in effect, a new type of work. A person isn’t hired so much as they join a DAO in a more participatory way. 

    - - - -

    With DAOs, work’s traditional top-down command structure can be flipped. This will create a fairer entry for ambitious individuals looking to get rewarded based on participation, output, and unity. 

    - - - -

    “Coming from both a startup and corporate world, I can say that a DAO is not comparable,” says Trevor Clarke, founder of Croncat, which does decentralized scheduling NEAR blockchain transactions. “A DAO utilizes elements of both, but when a startup or corporation would constantly require higher authority chains to finalize direction, DAOs can simply allow the community to be the decisive force.”

    - - - -

    Open Forest Protocol’s Rim Berjack is full-time crypto and notices that when she introduces herself, or interacts with different projects and stakeholders, she identifies herself as her role in the DAO. This isn’t simply an add-on to who she is. It’s necessary since she works as part of a DAO, and the DAO actually makes decisions and implements changes in projects. 

    - - - -

    “If I were to try and explain that I work for a DAO to my parents, they wouldn’t really understand what that means and not really consider it a ‘job,’,” she says. “But when you think about it simply in terms of effects, if you contribute to something, you produce results, and get compensated for it, that’s work.”

    - - - -

    In the current Web3 space, working for a DAO means freedom and creativity, with work being self-motivated and “earned” rather than assigned. A very startup-like ethos. Right now, DAOs offer a lot of equality and very little hierarchy in the decision-making processes. 

    - - - -

    “Working in a DAO is a testimony to the nature of work in crypto at large, which is much more entrepreneurial, undefined, and therefore creative,” says Berjack. “I was at ETH Denver recently and a Coordinape and Yearn contributor talked about how in DAOs work is defined by the intersection of what you like, what you can do, and what the project needs.”

    - - - -

    There is a lot of fluidity and flexibility in DAO governance, and this likely has something to do with the lack of contractual obligations for work. This might change for certain DAOs, like those operating in the DeFi space, who might be working with sensitive financial information. In the future, those DAOs that want a more traditional mode of work will balance it with the free-wheeling, creative Web3 startup ethos. 

    - - - -

    Beyond flattening work hierarchies, H.E.R. DAO’s Tracey Bowen sees future DAOs shifting the autonomy of work—centering the human rather than the company or machine. 

    - - - -

    “The DAOs of the future will look markedly different from today,” Bowen says. “Less dogmatic and rigid concerning technical requirements and more geared towards serving the needs of groups and populations across the globe.”

    - - - -

    “Equity is the new currency of our future cooperative world,” Bowen continues. “It’s the foundation on which many new Web3 projects are being built, and will be the standard bearer and rating system related to the efficacy of our ideas and the authenticity of our practices.”

    - - - -

    Jordan Gray of AstroDAO, a DAO launchpad platform, has a lot of different ideas on how DAOs will impact the world. For one, he thinks DAOs will have a huge impact on how business will be conducted.  

    - - - -

    “The last time things were really revolutionized in the business world was with spreadsheets—people use them to do any kind of business, computation, or keeping track of things,” says Gray. “I think that DAOs are going to revolutionize business in a very similar way, where many things that happen with spreadsheets are going to be automated, and processes are going to get put in place and cemented into code that allows organizations to work a lot more efficiently.”

    - - - -

    “That’s where I see DAOs maturing on the legal front, so that things like that are possible,” he adds. “That’s also where I see a huge opportunity in the future.”

    - - - -

    Jessica Zartler, Communications Advisor and Researcher at BlockScience, hopes that people won’t work for DAOs as anthropomorphized entities. 

    - - - -

    “[Ideally, people will] share collective ownership of the value created in the network and have unconditional basic income,” she says. “This will enable them to choose to work on things they are more passionate about—exploring via natural curiosity and intrinsic motivation.”

    - - - -

    Others aren’t so sure how DAOs will change the nature of work. But many Web3 natives, including Luis Freitas, Co-founder of 3XR—a platform for creating customer experiences like VR galleries—believe that DAOs are already changing how people work and cooperate in the NEAR ecosystem and on other blockchains.

    - - - -

    “When I started thinking more actively about DAOs in 2020 it was mostly because I was working remotely with a global team on a project owned by us—the team,” says Freitas. 

    - - - -

    “Now, I’ve started DAOs [DAOLEX and VR DAO] for the exact same reason and I think it has not only changed the way I work but also for everyone involved.”

    - - - -

    DAOs IRL

    - - - -

    Some might wonder how DAOs will interact with things outside of crypto. This was a question also put to developers of Web1 and Web2 platforms. The truth is that Web3, and DAOs themselves, are already IRL.

    - - - -

    “If we understand DAOs as a tool providing two primary functions—a digital stamp (for immutably publicizing decision making) and an on-chain treasury—then there is always the ‘swan’s legs underneath’ of weekly Zoom syncs, discussions on forums, notifying people on Telegram to vote on proposals, that happen off-chain, accompanying what is visible on-chain,” Berjack explains. “So, in that sense, you could say DAOs are never a purely on-chain affair.” 

    - - - -

    In the more literal sense, the physical and virtual worlds of Web3 are already being connected. OFP is a leader in the ReFi (regenerative finance) space, which is currently experiencing a lot of momentum. OFP acts as a “forest oracle,” bringing data from real forests and trees planted, then verifying them on-chain through the  distributed network of validators. 

    - - - -

    Berjack says that OFP is also planning to progressively decentralize and govern itself as a DAO. And they aren’t the only projects in the ReFi space doing so. The ReFi platform Ecorise’s DAO buying up land, staking it (as an NFT) in their vault, and creating a coin pegged to these natural assets to create an alternative income stream for ecosystem services and regeneration. Klima DAO, which brought an explosive interest to the ReFi space, tokenizes carbon credits and drives up demand in the market, urging carbon credit buyers to pay a higher price for their offsets, which incentivizes companies to reduce emissions.

    - - - -

    Block Science’s Zartler echoes this sentiment. Beyond land-based DAOs for carbon capture, soil regeneration, and other sustainability projects, she also envisions DAOs paving the way for cyber-physical commons and local currencies, where there would be real world impact. 

    - - - -
    - -
    - - - -

    “We will also see more NFT/AR tagging of artifacts which could be gameable for incentivizing coordination, like local trash clean up,” says Zartler. “DAOs are also an effective coordination tool to raise capital which could be used for pretty much anything; perhaps creating more land trusts, fighting injustices of the current system like supporting and developing affordable housing networks, sharing more unused resources (vehicles/houses), and enable layers of connection based on shared interest signaling/GPS proximity tech.”

    - - - -

    There is also the recent launch of Unchain Fund, a new DAO fund built on NEAR, which is currently collecting donations for Ukraine in multiple tokens, including BSC, ETH, Harmony, NEAR, and Polygon. Created on AstroDAO, a DAO launchpad built on NEAR, Unchain Fund is having real world impact by raising funds for humanitarian purposes in Ukraine, including evacuation, shelter, food, and more. Over 700 volunteers are currently helping out with Unchain Fund in one form or another, and the effort is growing quickly. 

    - - - -

    Using a funding model similar to Unchain, DAOs could be how community projects organize in the future, helping communities efficiently raise and manage funds for goals. 

    - - - -

    “A lot of the benefits of crypto are present with the DAOs of today,” says Chloe Lewis, Co-founder of Marma J Foundation. “What’s missing are a lot of the human coordination elements.”

    - - - -

    Lewis expects DAOs to evolve into community support platforms. All of the tooling will be built-in—the only other elements will be “the people and the purpose.”  

    - - - -

    “As Web3 gains traction, I see DAOs expanding and collaborating to manage assets in much more complex ways,” Lewis says. “This will hopefully allow for more individuals to be able to add and extract value to communities in ways that are rewarding for themselves while also supporting the wider communities that they interact with.”

    - - - -

    Luis Freitas believes that DAOs are flexible enough to pop up in most things humans and software do, playing important roles in how organizations operate, from households and larger corporations to use cases in warehouses, global logistics, and a myriad of things in between. 

    - - - -

    “The Digital Assets industry will keep on growing in the years to come,” says Freitas. “My belief is that DAOs need to be at the heart of creating and managing these assets, and to participate in all sorts of digital decision-making processes.”

    - - - -

    Faster and cheaper networks will probably yield more DAO experiments. In 3XR, one of Freitas’ DAO experiments, users create 3D spaces with references to other NFTs. 

    - - - -

    “This is really interesting because the minting can be proposed to DAOs, so in a way DAOs are curating curator’s work,” he says. “This incentivizes DAOs to participate by placing them in the lifetime royalties of the asset they helped create.”

    - - - -

    DAOs could also have an impact on team sports. Recently, NEAR announced a new partnership with SailGP, one of the world’s fastest-growing sailing events. As part of this multi-year partnership, SailGP is set to explore the sale of a new team to a DAO that will be launched on the NEAR Protocol. The SailGP team DAO’s community members  will have a say in athlete selection, team management, commercialization options, operations, and overall team strategy.

    - - - -

    Sail GP and MotorDAO, which is democratizing how racing drivers and teams get funding for high-level competition, could inspire the entry of other competitive sports into Web3. In MotorDAO’s membership-based platform, motorsports fans directly participate in the benefits of ownership, driver sponsorship, events; they can also get retail perks, ticket packages, race day NFT air drops, and more. 

    - - - -

    Ambitious, yes, but MotorDAO’s model could be used to create similarly functioning DAOs for other industries, like music, film and television, community investment, and more. 

    - - - -

    To DAO or not to DAO?

    - - - -

    It’s interesting to consider a future in which people, instead of telling others what job they have or social media platforms they use, identify themselves by the DAOs in which they participate. Individuals will remain individual, on their terms, but they will also be part of collectives that will have input into how Web3 evolves and integrates into the wider world. 

    - - - -

    Croncat’s Trevor Clark believes mass DAO adoption will happen when the UX meets people where they already coordinate like DAOs, but just don’t realize it yet.

    - - - -

    “Think of the mom groups that organize school activities, exercise groups at public parks, social good initiatives with a deadline—all of these groups are already DAOs utilizing disparate technologies (social media pages, SMS, email, etc) that could benefit from a DAO,” says Clarke. “The key will be unlocking the next generation DAO tools for everyday uses already in existence, similar to how Venmo took over the group dinner bill.”

    - - - -

    Will everyone be part of a DAO in the future? Perhaps not. As Astro DAO’s Jordan Gray says, everyone is at different stages of technological adoption—and that’s okay. 

    - - - -

    “There are still people who make candles and sell candles, or make soap and sell it,” says Gray. “So there’s always going to be people that are at different stages of technology adoption and technology relevant to their lives. I think that there will definitely be folks that are like in that Web2 mindset and they continue cranking away in the mindset.”

    - - - -

    Gray says Web3 tools like DAOs present new opportunities, even for people and businesses who have grown used to Web2 and found success in it. “It’s about recognizing that there’s another wave of opportunity hitting and stepping into it,” he says. 

    - - - -

    Check out the complete series on DAOs:

    - - - - -

    The post The Future of DAOs: DAOs at Work and IRL appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/daos/index.html b/public/blog/tag/daos/index.html deleted file mode 100644 index 4f2a243a3..000000000 --- a/public/blog/tag/daos/index.html +++ /dev/null @@ -1,2 +0,0 @@ -DAOs Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/daos/page/2/index.html b/public/blog/tag/daos/page/2/index.html deleted file mode 100644 index a062713f9..000000000 --- a/public/blog/tag/daos/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -DAOs Archives – Page 2 of 2 – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/decentralized-storage/feed/index.xml b/public/blog/tag/decentralized-storage/feed/index.xml deleted file mode 100644 index 3484c7d2a..000000000 --- a/public/blog/tag/decentralized-storage/feed/index.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - Decentralized Storage Archives – NEAR Protocol - - /blog/tag/decentralized-storage/ - - Tue, 06 Jun 2023 15:20:45 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Decentralized Storage Archives – NEAR Protocol - /blog/tag/decentralized-storage/ - 32 - 32 - - - Case Study: OnMachina’s Jonathan Bryce on Building Decentralized Storage for an Open Web - /blog/case-study-onmachinas-jonathan-bryce-on-building-decentralized-storage-for-an-open-web/ - - - Mon, 05 Jun 2023 16:00:00 +0000 - - - - /?p=20559 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: OnMachina’s Jonathan Bryce on Building Decentralized Storage for an Open Web appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. 

    - - - -

    The NEAR Case Studies content vertical made a return recently with a case study featuring Pagoda Chief Product Officer Alex Chiocchi, talking about the BOS.

    - - - -

    For the next entry in the NEAR Case Study series, OnMachina co-founder Jonathan Bryce talks about building decentralized infrastructure on NEAR — specifically, developing decentralized storage for an open web.

    - - - -
    - -
    -

    The post Case Study: OnMachina’s Jonathan Bryce on Building Decentralized Storage for an Open Web appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/decentralized-storage/index.html b/public/blog/tag/decentralized-storage/index.html deleted file mode 100644 index fe0dc29ea..000000000 --- a/public/blog/tag/decentralized-storage/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Decentralized Storage Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/defi/feed/index.xml b/public/blog/tag/defi/feed/index.xml deleted file mode 100644 index 3f569c567..000000000 --- a/public/blog/tag/defi/feed/index.xml +++ /dev/null @@ -1,172 +0,0 @@ - - - - DeFi Archives – NEAR Protocol - - /blog/tag/defi/ - - Thu, 09 Nov 2023 13:12:26 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - DeFi Archives – NEAR Protocol - /blog/tag/defi/ - 32 - 32 - - - Unlocking the Future of DeFi with the idOS on NEAR: A Developer’s Guide - /blog/unlocking-the-future-of-defi-with-the-idos-on-near-a-developers-guide/ - - - Thu, 09 Nov 2023 14:00:00 +0000 - - - - /?p=21069 - - In the ever-evolving landscape of web3, DeFi has stood apart as a driver of innovation, promising a decentralized financial future. …

    -

    The post Unlocking the Future of DeFi with the idOS on NEAR: A Developer’s Guide appeared first on NEAR Protocol.

    -]]>
    - In the ever-evolving landscape of web3, DeFi has stood apart as a driver of innovation, promising a decentralized financial future. But for developers and founders, the challenge has always been integrating real-world applications with the decentralized world, ensuring compliance, and providing a seamless user experience. Enter the idOS on NEAR, a solution — built with Fractal — that bridges this gap and brings the Open Web closer to mainstream adoption.

    - - - -

    Why the idOS Matters 

    - - - -

    For developers diving into DeFi, the idOS (Identity Operating System) on NEAR offers a robust framework. It’s not just about creating decentralized financial applications; it’s about crafting solutions that can interact with real-world systems, regulations, and meet user expectations.

    - - - -

    1. Composable & Permissionless Integration: With the idOS, developers can effortlessly combine different protocols that require identity verification, leveraging the “money legos” concept. This composability ensures that your DeFi applications can scale and evolve with the ecosystem.

    - - - -

    2. Enhanced User Experience & Identity Verification: One of the major pain points in the decentralized world is the repetitive identity verification processes, often known as KYC. With the idOS, this process is streamlined. Users verify their identity once, and then, by simply signing with their wallet, they can reuse their verified credentials across any NEAR dApp without undergoing KYC again. This not only enhances user experience but also ensures faster onboarding and interaction with dApps.

    - - - -

    3. Seamless On/Off Ramps: The idOS facilitates smoother crypto-fiat transactions, a significant pain point in web3 adoption. By integrating the idOS, developers can offer users the ability to easily transition between the decentralized and traditional financial worlds, unlocking use cases like remittances or DeCommerce payments.

    - - - -

    Beyond DeFi: Proof-of-Personhood Use Cases

    - - - -

    While DeFi is the cornerstone, the idOS’s potential extends beyond. For founders looking to innovate in areas like decentralized governance or community voting, the idOS provides the tools to ensure proof-of-personhood:

    - - - -

    1. Decentralized Voting: Governance is a critical aspect of any decentralized protocol. With the idOS, developers can integrate systems where users prove their unique human status, ensuring one person, one vote. This minimizes the influence of bots and whales, leading to fairer governance outcomes.

    - - - -

    2. Portable user profiles across Web3: For platforms that require user profiles like Near.org, the idOS offers a decentralized solution. Users can create and manage their profiles, ensuring data privacy and control. This is especially crucial for platforms that want to offer personalized experiences without compromising on user data sovereignty.

    - - - -

    Privacy-Preserving KYC & Compliance

    - - - -

    No developer wants to compromise on user privacy. With the idOS, KYC processes become more user-centric. Users can obtain KYC credentials from multiple providers, with the assurance that their data remains encrypted and under their control. For founders, this means complying with global financial regulations without sacrificing user trust.

    - - - -

    Join the revolution with idOS

    - - - -

    For developers and founders ready to shape the future of DeFi and decentralized applications, the idOS on NEAR offers the tools, scalability, and compliance required for success. As we venture into a world where decentralized finance and real-world applications converge, solutions like the idOS will be at the forefront, ensuring that innovation remains uncompromised.

    - - - -

    Join the revolution and explore how the idOS can redefine your DeFi applications and enhance user identity verification on NEAR.

    -

    The post Unlocking the Future of DeFi with the idOS on NEAR: A Developer’s Guide appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Coin98 Launches Decentralized Dapp Store for its 7 Million Users on NEAR’s Blockchain Operating System (B.O.S) - /blog/coin98-launches-decentralized-dapp-store-for-its-7-million-users-on-nears-blockchain-operating-system-b-o-s/ - - - Thu, 02 Nov 2023 13:00:00 +0000 - - - - - /?p=21028 - - Coin98, the multichain wallet and DeFi platform, has today launched a decentralized dapp store for its 7 million users across …

    -

    The post Coin98 Launches Decentralized Dapp Store for its 7 Million Users on NEAR’s Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

    -]]>
    - Coin98, the multichain wallet and DeFi platform, has today launched a decentralized dapp store for its 7 million users across 170 countries, built on NEAR. 

    - - - -

    The company behind the Super app, designed to seamlessly connect a billion users to the crypto world safely and securely, has created an innovative marketplace that allows users to access a range of apps on prominent Ethereum Layer-2 ecosystems such as Polygon zkEVM, zkSync, Base, and Linea, greatly increasing accessibility and discoverability for users. 

    - - - -

    The result is a both a web app and mobile app (details below) that provides a gateway to more than 70 chains and 15,000 dapps including cross-chain bridging, money markets, and decentralized exchanges — all in a single interface. Coin98 has achieved this by harnessing the power of NEAR’s B.O.S, the Blockchain Operating System. 

    - - - -

    “At Coin98, we are dedicated to providing our users with the very best one-stop DeFi experience in our pursuit of the vision to make Web3 accessible for everyone.” says Thanh Le, Coin98 Founder. 

    - - - -

    “With NEAR’s B.O.S, we can create a user-friendly interface thanks to its composability, while enabling decentralization under the hood,” he said. “Our dapp store offers hassle-free interaction with the most exciting L2s in the market. Soon, we will expand our collection to offer even more ecosystems and dapps, as B.O.S greatly reduces the development process, enabling a fast and scalable way to integrate new applications.”

    - - - -

    Coin98 selected NEAR’s B.O.S thanks to the ease in the development process. All the widgets and components running on the B.O.S are fully composable, enabling developers to freely combine them to fit their needs. 

    - - - -

    Coin98 utilized the B.O.S as a frontend layer to fully decentralize the user experience. Instead of routing parts of the process through centralized servers, all the featured dapps on the Coin98 gateway have frontend components whose code are stored on-chain on NEAR, which directly interact with the smart contracts on the original chains. No centralized servers are used.

    - - - -

    “The NEAR ecosystem is excited to see Coin98 build their decentralized app store on the B.O.S and deliver much better experiences to their users,” says Illia Polosukhin, co-founder of NEAR Protocol. 

    - - - -

    “This is exactly why we set out to build the B.O.S: because NEAR’s technology can help founders achieve decentralization and discoverability in parallel,” he added. “Now Coin98’s users can explore multiple L2 ecosystems all in one app, through the wallet of their choice, in seconds, with no complexity or switching costs. NEAR’s mission is to drive mainstream adoption of the Open Web through great user experiences and we hope more founders and projects will join us on the B.O.S.”

    - - - -

    Coin98’s decentralized app store offering follows the launches of major B.O.S gateways by Polygon zkEVM and Mantle, two top L2 ecosystems. The success of these wallet gateway partners highlights the benefits that B.O.S helps Web3 founders deliver to end-users, demonstrating NEAR’s commitment to enabling products that simplify the blockchain experience and globally expand access to the Open Web.

    - - - -

    Want to try the new B.O.S integration? Download the mobile app on Apple or Google Play store today.

    -

    The post Coin98 Launches Decentralized Dapp Store for its 7 Million Users on NEAR’s Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/defi/index.html b/public/blog/tag/defi/index.html deleted file mode 100644 index 8240346f3..000000000 --- a/public/blog/tag/defi/index.html +++ /dev/null @@ -1,2 +0,0 @@ -DeFi Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/dev-rel/feed/index.xml b/public/blog/tag/dev-rel/feed/index.xml deleted file mode 100644 index b63606971..000000000 --- a/public/blog/tag/dev-rel/feed/index.xml +++ /dev/null @@ -1,665 +0,0 @@ - - - - Developer relations Archives – NEAR Protocol - - /blog/tag/dev-rel/ - - Tue, 12 Sep 2023 07:21:32 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Developer relations Archives – NEAR Protocol - /blog/tag/dev-rel/ - 32 - 32 - - - NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 - /blog/near-apac-day-one-scaling-local-adoption-regional-regulation-and-ai-in-focus/ - - - Sat, 09 Sep 2023 12:14:36 +0000 - - - - - - - - - /?p=20835 - - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. …

    -

    The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

    -]]>
    - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. Held in conjunction with the NEAR Vietnam community and NEAR Foundation, NEAR APAC is showcasing the vibrant crypto and Web3 community across the region as well as the potential of the B.O.S. and Open Web both locally and globally.

    - - - -

    The day was charged with excitement, drawing over 8,000 attendees from various corners of the APAC region and beyond. With Web3 thought leaders, innovators, and enthusiasts converging in Vietnam, Day One of NEAR APAC kicked off with a slew of riveting discussions, industry insights, and speculations on the future of the Open Web with a focus on APAC.

    - - - -

    From discussions around regional growth and investment potential to how AI and blockchain will transform the future of work, here’s everything that went down at an incredible start to NEAR APAC.

    - - - -

    Setting the stage for NEAR APAC with Vietnam in focus

    - - - -

    The event kicked off with a focus on southeast Asia, with NEAR’s Vietnam country director Riley Tran welcoming attendees and providing context as to Asia’s critical role in the overarching development and expansion of Web3. Tran was followed by two NEAR luminaries, CEO Marieke Flament and co-founder Illia Polosukhin.

    - - - -

    “Asia’s young demographics and rapid digital growth, especially in Vietnam, position it as a leader in crypto and blockchain growth,” Riley explained. “With over 100 million new internet users in just three years, Asia’s momentum in Web3 is accelerating”

    - - - -

    Marieke added that the overall NEAR ecosystem remains strong with over 29M active wallets and 650K daily active accounts. She added that a collaborative approach to building tomorrow’s Open Web is critical for tackling significant societal and digital challenges.

    “Today’s Web 2.0 is closed and siloed, with the prevailing digital culture being a toxic dialectic,” Marieke expressed. “But the value loop of an Open Web holds immense promise. We’re already seeing how projects like KaiKai, SWEAT, and PlayEmber can move the needle in the right direction.”

    - - - -

    Echoing Mariek’s sentiment, Illia emphasized that it’s not necessarily about championing a specific blockchain, but about creating a common layer and interface for the Open Web. This is precisely what the Blockchain Operating System (B.O.S.) is in the process of achieving.

    - - - -

    “Looking forward, tech isn’t the only focus,” said Illia. “It’s about blending scalable solutions with user-centric experiences, with the B.O.S. becoming the essential entry point into Web3 for both users and developers.”

    - - - -

    Asia’s role in mainstream adoption and regulatory hurdles

    - - - -

    The push for mainstream blockchain adoption in APAC was also in focus on Day One, with NEAR Foundation CMO Jack Collier leading a panel discussion on current adoption challenges and how APAC can potentially lead the way in overcoming them.

    - - - -

    “I’m extremely bullish on gaming as a key part of mass adoption,” opined Don Pham, Google Cloud’s regional Web3 specialist. “Vietnam is the birthplace of Axie Infinity, which is just the beginning of blockchain gaming’s potential. Use cases like loyalty, gaming, and music NFTs combined with better UX will likely be the path forward.”

    - - - -

    The discussion dove deeper into the importance of user experience in the adoption of blockchain. Marieke reiterated that while technology forms the backbone, the real test will be simplifying the user journey, which can significantly hasten adoption across the APAC region as well as globally.

    - - - -

    Regulation was also in focus with a panel about blockchain policies and APAC’s vision for governments and associations. Mary Beth Buchanan, a board member of the Cardano Foundation, drove home the need for regulatory clarity while discussing regional frameworks in countries like Hong Kong.

    - - - -

    “The biggest challenge is not necessarily regulation, but lack of clarity,” observed Buchanan. “If regulations are unclear that will cause investors not to want to invest in the space. Builders become hesitant to build and users aren’t going to know what the rules are. Regulators need to recognize that clarity is what everyone wants.”

    - - - -

    Spotlight on Artificial Intelligence during the afternoon sessions

    - - - -

    Day One of NEAR APAC dedicated a significant chunk of its schedule to exploring the intricate interplay between AI and blockchain, particularly their role in APAC’s future technology and Web3 landscape. Illia took the stage just after the lunch break to discuss the Convergence of AI and Web3, diving deep into AI-empowered DAO and the future of AI-assisted work.

    - - - -

    “While technologies like ChatGPT have found product market fit, much of AI is still siloed and doesn’t empower open source communities and projects,” Illia posited. “Web3 can operate in the middle, with AI models incorporating all participants and data sources. DAOs, for example, can be co-piloted by AI to achieve goals and KPIs faster and more efficiently.”

    - - - -

    In the following panel discussion entitled “The Roles of Blockchains in an AI World,” Illia was joined by several AI and blockchain experts from the APAC region. One of the more distinguished panel members was Dr. Nguyen An Khuong, a lecturer and blockchain researcher from Ho Chi Minh University of Technology, who provided an academic perspective. 

    - - - -

    “We have a lot of research endeavors in Vietnam around ensuring AI’s ethical applications using blockchain,” commented Dr. Nguyen. “We’re looking at how transparency and accountability in AI decisions can be drastically improved with blockchain technology. Combining a neutral AI with a blockchain’s public ledger could enhance the ecosystem and foster wider adoption.”

    - - - -

    Illia drove home that the potential “Skynet” scenario of AI taking over the world is mostly a projection of what humans might do if they were given supercomputing powers. In reality, developments like the B.O.S. and NEAR Tasks will aid humans in success and productivity, with AI agents acting as middlemen for assistance, sourcing, and even creativity.

    - - - -

    Day One of the first-ever NEAR APAC was a rousing success, with these highlights just being the tip of the iceberg. The crowd was treated to bánh mì’s and Manga cosplay during lunch, B.O.S. building and gaming workshops on the Builder Stage, and an awe-inspiring NFT gallery from APAC creators.

    - - - -

    As the sun sets in Saigon, the NEAR Foundation couldn’t be more appreciative of the Vietnamese crypto community. The momentum rolls on tomorrow with Day Two, so stay tuned for more updates and insights around emerging APAC trends in Web3, how blockchain gaming is taking off in Asia-Pacific, and local DeFi developments. 

    - - - -

    If Day One was any indication, the NEAR community’s growth, presence, and development in APAC will only continue accelerating through 2023 and beyond!

    -

    The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Introducing Wallet Selector: A New Tool for the NEAR Ecosystem - /blog/introducing-wallet-selector-a-new-tool-for-the-near-ecosystem/ - - - Thu, 07 Apr 2022 13:45:33 +0000 - - - - /?p=16254 - - Web3 users looking for an easy way to interact with the NEAR blockchain using their wallet of choice now have …

    -

    The post Introducing Wallet Selector: A New Tool for the NEAR Ecosystem appeared first on NEAR Protocol.

    -]]>
    - Web3 users looking for an easy way to interact with the NEAR blockchain using their wallet of choice now have a slew of options. Wallet Selector, a new easy-to-navigate pop-up allows users to select their preferred wallet to easily interact with the NEAR protocol. 

    - - - -

    Launched in March 2022 by the NEAR Foundation, this simple modal will appear whenever users are given the option to “Connect Wallet” to the NEAR blockchain. 

    - - - -

    Wallet Selector provides developers and builders with new options to connect their projects to NEAR, and in future, will allow mobile apps to connect to the NEAR blockchain seamlessly in just a few clicks. 

    - - - -
    NEAR Wallet Selector
    - - - -

    Unlocking the wallet ecosystem 

    - - - -

    At launch, Wallet Selector will feature three supported wallets: 

    - - - -
    • NEAR Wallet – a simple, easy to use web-based wallet. 
    • Sender Wallet – a browser extension available Chrome, Brave, and other browsers.
    • Ledger Wallet – the secure hardware wallet that allows users to store their wallet in a secure place. 
    • Meteor Wallet – the simple and secure wallet to manage your crypto, access DeFi, and explore NEAR.
    - - - -

    Thanks to NEAR’s open and inclusive approach, other wallet developers will be able to contribute to the NEAR ecosystem.

    - - - -

    Developers looking to add their wallets, there is documentation and instructions on the NEAR Github repository.

    -

    The post Introducing Wallet Selector: A New Tool for the NEAR Ecosystem appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR’s Road to Decentralization: A Deep Dive into Aurora - /blog/near-decentralization-aurora-evm/ - - - Mon, 07 Mar 2022 14:01:23 +0000 - - - - - - /?p=15973 - - One of NEAR Foundation’s core missions has been to create a network that empowers users to take control of their …

    -

    The post NEAR’s Road to Decentralization: A Deep Dive into Aurora appeared first on NEAR Protocol.

    -]]>
    - One of NEAR Foundation’s core missions has been to create a network that empowers users to take control of their data, their finances, and the tools to govern. 

    - - - -

    In the web3 world, this idea can be neatly summed up by one word: decentralization. This is a process whereby control and the tools to create and reimagine everything from business to creativity are progressively handed over to the contributors. 

    - - - -

    The NEAR Foundation has been steadily progressing in this mission, from the growing number of validators to the flourishing DAO community. But NEAR isn’t alone on this journey. It relies on projects in and around the ecosystem to help accelerate this mission. Enter Aurora.    

    - - - -

    This project, started originally by a core team of NEAR developers, is now helping build bridges to other ecosystems and accelerating the adoption and decentralization in equal measure. 

    - - - -

    A Bridge Between NEAR and Ethereum

    - - - -

    Built by NEAR Inc’s core team (now Pagoda), Aurora is an Ethereum Virtual Machine (EVM) smart contract platform that creates a bridge between Ethereum and NEAR. An EVM, for those who don’t know, is best thought of as a decentralized computer that allows anyone to create a smart contract on the Ethereum network.

    - - - -

    Although an EVM, Aurora works on top of the NEAR blockchain, giving it all of the benefits of the NEAR blockchain: super fast, incredibly secure, and infinitely scalable transactions. That’s possible thanks to Nightshade, NEAR’s unique sharded protocol design that allows the network to process thousands of transactions per second without skipping a beat. 

    - - - -

    With Aurora, the idea is that anyone building Ethereum projects can make use of the NEAR’s speed and low fees. The Aurora EVM allows developers to make use of NEAR’s blockchain, while the platform uses NEAR’s Rainbow Bridge to transfer assets. 

    - - - -

    Let’s look at Rainbow Bridge, as this protocol is where things got started. 

    - - - -

    Aurora and Rainbow Bridge

    - - - -

    NEAR’s core developer team wanted to create a smart contract that would perform the function of allowing tokens to flow freely between Ethereum, NEAR, and other projects. The team’s vision: create a tool that allowed assets to exist on both NEAR and Ethereum, creating a multi-chain Web3 user experience.

    - - - -

    To do this, the team would need to create a bridge that would be completely decentralized: anyone could use it, anywhere, and at any time—without permission. The developers were able to build the bridge and now, if one wants to move an Ethereum-based token—say, a stablecoin like DAI—and use it on NEAR’s network, they can do so via the Rainbow Bridge. 

    - - - -

    Some of NEAR’s core team that had helped create Rainbow Bridge split off to continue their work. The result: Aurora—a project that now offers the bridge and a whole host of other features designed to create a global network of open-source Web3 projects. 

    - - - -

    Aurora partnerships

    - - - -

    Other projects working to improve cross-chain accessibility have since taken notice of Aurora’s work and become partners. One example is Allbridge, an application that unites scattered blockchains by means of global interoperability across all networks. Since Allbridge partnered with Aurora, it has launched a bridge between Aurora and Terra, an open-source stablecoin network and one of the biggest cryptocurrencies by market cap. 

    - - - -

    Aurora is also playing a big part in decentalized finance (DeFi) growth in the NEAR ecosystem. DeFi refers to the peer-to-peer financial services built on public blockchains, and is one of the most active crypto sectors on NEAR. The NEAR community has been working tirelessly to make it easier for DeFi apps and tools to leverage the protocol’s developer-friendly advantages. 

    - - - -

    One way that Aurora has made this process much smoother and more decentralized is through its extremely low fees (so low, they’re negligible), which it achieves by using the NEAR network. A constant gripe from users about Ethereum-based DeFi products is that the fees are often too high, creating a barrier to entry for developers and end users, and creating a hurdle to Web3’s mainstream adoption. 

    - - - -

    Aurora adoption is growing so much that the team released Aurorascan, its very own version of Etherscan, the most popular Ethereum block explorer and analytics platform. Aurorascan has all of Etherscan’s features set and reliability, while giving developers the tools and data to see how Aurora’s EVM functions. 

    - - - -

    But Aurora goes beyond DeFi. The platform is also integral to the NEAR community’s NFT projects, which have exploded in popularity since 2020. When the Aurora team spoke at this year’s ETHDenver conference in February, and they were joined by members of Endemic, Chronicle, and TENKBay—all NFT platforms that have launched on the Aurora EVM and NEAR Protocol.  

    - - - -

    Future Aurora developments

    - - - -

    So what does Aurora have up its sleeve for the future? Well, Aurorascan is still in beta mode, so more features will be added to that platform. And the team is also working to build new bridges, which will be announced in the coming months. 

    - - - -

    There are also plans to allow NFTs to be able to hop between Ethereum and NEAR. You can keep up to date on all things Aurora on its Medium page.  

    - - - -

    All this and more will help those wanting to take advantage of NEAR’s super fast and extremely cost-effective network, and help the dream of a truly decentralized world become a reality. 

    -

    The post NEAR’s Road to Decentralization: A Deep Dive into Aurora appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Zero to Hero NFT Series: Happy Holidays from DevRel! - /blog/zero-to-hero-nft-series-happy-holidays-from-devrel/ - - - Fri, 17 Dec 2021 17:09:08 +0000 - - - - - /?p=15527 - - It’s been a great year for the NEAR ecosystem and our developer community. We’ve hosted our first MetaBUIDL hackathon, rocked …

    -

    The post Zero to Hero NFT Series: Happy Holidays from DevRel! appeared first on NEAR Protocol.

    -]]>
    - It’s been a great year for the NEAR ecosystem and our developer community. We’ve hosted our first MetaBUIDL hackathon, rocked the crypto-boat in Portugal with the NEARCON, enjoyed a daily dose of Q&A on our Office Hours, and had a coding rush with the NEARvember challenge.

    - - - -

    The DevRel team is simply amazed by our dev community, and we are thankful for the support and time every developer spends building projects on NEAR. So, as a humble way to say “Thank You”, we’ve prepared an NFT tutorial series so you can go from Zero to NFT Hero before the new year knocks on your door.

    - - - -

    If you are new to Rust and want to dive into smart contract development, this series is a great place to start, especially if you want to learn about non-fungible tokens. 

    - - - -

    In this “NFT Zero to Hero” series, you’ll find a set of tutorials that will cover every aspect of a non-fungible token (NFT) smart contract. You’ll go from minting an NFT using a pre-deployed contract to building a fully-fledged NFT smart contract that supports every extension.

    - - - -
    - - - -

    NFT tutorials

    - - - -

    As a sneak peek, here’s a list of the NFT tutorials that will bring you from Zero to Hero in no time:

    - - - -
    • Pre-deployed contract: Get introduced to minting an NFT without the need to code, create, or deploy a smart contract.
    • Contract architecture: Learn the basic architecture of the NFT smart contract and you’ll compile this skeleton code with the Rust toolchain.
    • Minting: Flesh out the skeleton so the smart contract can mint a non-fungible token.
    • Upgrade a contract: Discover the process to upgrade an existing smart contract.
    • Enumeration: Explore different enumeration methods that can be used to return the smart contract’s states.
    • Core: Extend the NFT contract using the core standard, which will allow you to transfer non-fungible tokens.
    • Approvals: Expand the contract allowing other accounts to transfer NFTs on your behalf.
    • Royalty: Add the ability for non-fungible tokens to have royalties. This will allow people to get a percentage of the purchase price when an NFT is purchased.
    - - - -
    - - - -

    Next steps

    - - - -

    If you’re ready to start, jump into our Dev Docs and begin your Hero learning journey! If you already know about non-fungible tokens and smart contracts, feel free to skip and jump directly to the tutorial of your interest. 

    - - - -

    These tutorials have been designed so you can start at any given point, so you don’t need to start from zero if you’re already a Hero. 🙂

    - - - -

    Have any questions, comments, or feedback? 

    - - - -

    We hope you enjoy these holidays with your friends and family, and we wish you the best for 2022! May all our Web3 projects be successful, decentralized, and environmentally friendly, just like NEAR. 🙂

    - - - -

    Join us on Discord and let us know in the #development channels. 
    We also host daily Office Hours live Monday – Friday 11 AM – 12 PM PT (6 PM – 7 PM UTC), where the DevRel team will answer any questions you may have!

    -

    The post Zero to Hero NFT Series: Happy Holidays from DevRel! appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - near-api-js 0.44.0 Released - /blog/near-api-js-new-release-javascript/ - - - Fri, 10 Dec 2021 13:18:05 +0000 - - - /?p=15476 - - We have just released a new minor version of our JavaScript client library (NEAR-API-JS). v0.44.0 brings some significant changes, so …

    -

    The post near-api-js 0.44.0 Released appeared first on NEAR Protocol.

    -]]>
    - We have just released a new minor version of our JavaScript client library (NEAR-API-JS). v0.44.0 brings some significant changes, so let’s take a moment to go over the changelog and review what’s new.

    - - - -

    RPC API Keys

    - - - -
    • TL;DR: Added support for RPC Server API Keys (PR #729)
    - - - -

    The JavaScript library now allows you to define an API key to authenticate with the target RPC server. This feature comes in preparation for the upcoming change that will require keys to access our public RPC servers. Supporting API keys will also allow you to connect to third-party and non-public RPC servers in the future. If you’re wondering about the integration, you can find some practical code examples in our Cookbook.

    - - - -

    For the moment there’s no need to take action on your side: currently, this is a non-breaking change, and your JavaScript code will continue to work correctly if you don’t provide an API key.

    - - - -

    New verify method

    - - - -
    • TL;DR: Added a verify method on PublicKey type to verify signature correctness (PR #710)
    - - - -

    Before this change, you could only verify a message or signature with KeyPair, which also required having a secret key. This requirement was completely irrelevant in the context of the signature verification process.

    - - - -

    Thanks to the new verify method, it’s now possible to verify signatures using just a public key. You can find a code example on how to verify with a public key in our GitHub repository.

    - - - -

    Key file permissions

    - - - -
    • TL;DR: Key file permissions changed to 0o600 (#706)
    - - - -

    Account credentials are stored on your hard drive whenever you use the CLI with NEAR login. Regular file permissions allowed anyone on the system to access and read those credentials. As we care about security, we changed how the stored credentials’ file permissions are set, so only the owner can access the content.

    - - - -

    Please note that this change won’t affect the permissions on existing keys. If you are handling sensitive keys, we recommend changing the file permissions manually.

    - - - -

    Before:

    - - - -

    [near@x1 ~] stat –format ‘%a’ ~/.near-credentials/testnet/near-test.testnet.json

    - - - -

    644

    - - - -

    After:

    - - - -

    [near@x1 ~] stat –format ‘%a’ ~/.near-credentials/testnet/near-test.testnet.json

    - - - -

    600

    - - - -

    Fixes

    - - - -

    We also added some fixes and minor changes; if you’re curious, feel free to check them on the NEAR-API-JS 0.44.0 Official Changelog.

    -

    The post near-api-js 0.44.0 Released appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Minting Minecraft Blueprints As NFTs - /blog/minecraft-mint-nft-dev-rel-tutorial-near-how-to/ - - - Thu, 09 Dec 2021 15:52:21 +0000 - - - /?p=15448 - - Most of the time, when you hear people talking about non-fungible tokens (NFTs), your first thoughts may turn to media …

    -

    The post Minting Minecraft Blueprints As NFTs appeared first on NEAR Protocol.

    -]]>
    - Most of the time, when you hear people talking about non-fungible tokens (NFTs), your first thoughts may turn to media files such as images or music. But, actually, NFTs are not limited to such file types. In this article, you’ll discover how the DevRel team created non-fungible tokens based on Minecraft buildings designed inside the game.

    - - - -

    Blockheads

    - - - -

    Creative possibilities are endless thanks to the new developments and technologies rising in the crypto space. For example, Dorian (a member of Near Inc. DevRel team) runs a YouTube series called Blockheads, where he creates fun examples of things you can build on NEAR. He’s also fond of the world of Minecraft, especially during quarantine. 

    - - - -

    After learning about NFTs, Dorian thought it would be fun to give Minecraft artists and builders the ability to mint their buildings and creations as NFTs and sell them on the open web. So, using the Mineflayer JavaScript library, he created a bot that could monitor the in-game chat and pull information about the game’s environment. Then, using that bot, he created blueprints that a user could then mint onto the NEAR blockchain. The following video shows the bot named Jerry in action:

    - - - -
    - -
    Minting Minecraft with NEAR
    - - - -

    The app grew and took shape. Finally, Ben Kurrek from Near Inc. DevRel had the great idea of using the popular World Edit mod to get the building data and store it in a .schem file. This file then gets uploaded to IPFS for storage, and the content identifier (CID) is saved to the NEAR blockchain itself. The flow is smooth, and .schem files capture the building designs more accurately than Jerry could on his own.

    - - - -

    If you’re interested in seeing how the complete flow works in minting a Minecraft building, check out the NFTs tutorial Ben created. It’s simple, fun, and very straightforward (of course, if you have questions, you can ask us during Office Hours).

    - - - -

    As it currently stands, getting Jerry to read .schem files has been tricky since they aren’t a conventional file type that JavaScript (Jerry’s preferred language of choice) can understand right out of the box. But progress is still being made. So if you would like to join Dorian on this endeavor to make Minecraft NFTs on NEAR, you can contact him on Discord.

    - - - -

    Have any questions, comments, or feedback? 

    - - - -

    Join us on Discord and let us know in the #development channels. 

    - - - -

    We also host daily Office Hours live Monday – Friday 11 AM – 12 PM PT (6 PM – 7 PM UTC), where the DevRel team will answer any questions you may have!

    -

    The post Minting Minecraft Blueprints As NFTs appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Decentralized Storage for dApp Developers - /blog/decentralized-storage-for-dapp-developers/ - - - Wed, 08 Dec 2021 17:15:42 +0000 - - - /?p=15435 - - While security, speed, and reliable data records are key elements in developing a decentralized app (dApp) in the Web3 ecosystem, …

    -

    The post Decentralized Storage for dApp Developers appeared first on NEAR Protocol.

    -]]>
    - While security, speed, and reliable data records are key elements in developing a decentralized app (dApp) in the Web3 ecosystem, the complexity of decentralization is a critical factor that can drive the cost and effort required in deployment.

    - - - -

    Standard dApp development consists of a Web 2 tech stack for the front-end and state management handled by smart contracts deployed on the blockchain for the back-end. With this hybrid approach, it can be tricky to determine what to store on and off-chain. For example, keeping all of the files for a front-end’s UI on-chain is less efficient and cost-effective when compared to existing SQL or no-SQL solutions. However, there are times when larger data files will need to be stored in a permanent decentralized manner (such as NFTs that contain large images or songs), so the content is always accessible to its owner.

    - - - -

    As a new developer in the crypto space, your first approach to storing various media files might be to use the same blockchain where the smart contract is being deployed. However, the storage cost for large amounts of binary data on the blockchain can be prohibitive and ultimately not practical.

    - - - -
    - - - -

    To solve this problem, teams of developers have been working on creating decentralized storage solutions focused on storing large amounts of data at a competitive price. These solutions allow dApp developers to maintain a decentralized infrastructure that secures the availability of your data when needed. Arweave, IPFS, and Sia’s Skynet are three great examples of such projects, and we are excited to share ways you can integrate their platforms into your project.

    - - - -

    The DevRel team has published a new article on Decentralized Storage Solutions, that gives you a brief introduction to each solution and an integration example so you can quickly try them out and find the optimal solution for your project.

    At NEAR we are committed to helping create a healthy Web3 ecosystem where everyone can build projects that integrate different technologies, solutions, and networks that fit their needs. We want developers and users to choose which tool is the best for the job and ensure interoperability is maintained.

    - - - -

    Have any questions, comments, or feedback? 

    - - - -

    Join us on Discord and let us know in the #development channels. 
    We also host daily Office Hours live Monday – Friday 11AM – 12PM PT (6PM – 7PM UTC), where the DevRel team will answer any questions you may have!

    -

    The post Decentralized Storage for dApp Developers appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR CLI 3.0.0 Released - /blog/near-cli-command-line-tool-upgrade-explanation/ - - - Thu, 02 Dec 2021 21:53:43 +0000 - - - /?p=15397 - - Our command-line interface tool just got a new major version release that introduced some big changes. NEAR’s DevRel team would …

    -

    The post NEAR CLI 3.0.0 Released appeared first on NEAR Protocol.

    -]]>
    - Our command-line interface tool just got a new major version release that introduced some big changes. NEAR’s DevRel team would like to take a moment to go over these changes to not only show you the changelog but explain why these changes were made. This is a new initiative to give our developer community an insight into our decision-making process as well as a better understanding of how NEAR works.

    - - - -

    Deployment changes

    - - - -

    near deploy now warns users if there is an existing contract deployed. (PR #883)

    - - - -

    near deploy (used for deploying smart contracts to a given account) now has an added prompt warning users if an existing contract has already been deployed. NEAR accounts can only have one contract deployed per account, but we frequently saw developers would accidentally overwrite existing contracts, especially when first onboarding to our platform. This prompt should help folks understand the singular contract concept and mitigate any accidental state changes to existing smart contracts.  

    - - - -

    Access Keys changes

    - - - -

    near delete-key now prompts for confirmation of key deletion. (PR #890)

    - - - -

    Similar to the near deploy update, near delete-key (used for deleting an access key from an account) now prompts users for confirmation of this action. It will also ask the user to make sure this key is not for a recovery method. In addition, if you are deleting the last full-access key it will give a second prompt warning the user that this will fully lock the account/contract. Deleting all full-access keys will disable the ability to recover access to an account and should have an extra warning layer to prevent an accidental ownership lockout.

    - - - -

    New flags

    - - - -

    – `-f, –force`  flags added to override warning prompts. (PR #890)

    - - - -


    The two big changes introduced with this CLI release are only new for those who are already using scripts to run the above commands (deploy and delete-key). For those who want to upgrade to NEAR CLI 3.0.0 and still use scripting for these commands, we have added the -f or –force flags to override the warning prompts.

    NEAR-CLI 3.0.0 Official Changelog

    -

    The post NEAR CLI 3.0.0 Released appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/dev-rel/index.html b/public/blog/tag/dev-rel/index.html deleted file mode 100644 index 2d7b58526..000000000 --- a/public/blog/tag/dev-rel/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Developer relations Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/developer-tools/feed/index.xml b/public/blog/tag/developer-tools/feed/index.xml deleted file mode 100644 index 419d9ccad..000000000 --- a/public/blog/tag/developer-tools/feed/index.xml +++ /dev/null @@ -1,227 +0,0 @@ - - - - Developer tools Archives – NEAR Protocol - - /blog/tag/developer-tools/ - - Mon, 10 Jul 2023 22:31:23 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Developer tools Archives – NEAR Protocol - /blog/tag/developer-tools/ - 32 - 32 - - - Vistara Lands in the NEAR Ecosystem for Seamless Base Layer Roll-up Deployment - /blog/vistara-lands-in-the-near-ecosystem-for-seamless-base-layer-roll-up-deployment/ - - - Fri, 07 Jul 2023 14:00:00 +0000 - - - - - /?p=20704 - - NEAR is welcoming Vistara, the groundbreaking rollup deployment framework, into the fold. Vistara is set to seamlessly integrate with the …

    -

    The post Vistara Lands in the NEAR Ecosystem for Seamless Base Layer Roll-up Deployment appeared first on NEAR Protocol.

    -]]>
    - NEAR is welcoming Vistara, the groundbreaking rollup deployment framework, into the fold. Vistara is set to seamlessly integrate with the BOS for the end-to-end, multi-chain deployment of rollups. This alliance will accelerate the pace of blockchain innovation, making rollup deployment faster, more efficient, and accessible across multiple chains for all developers.

    - - - -

    Vistara stands out as a game-changing one-click rollup deployment framework that simplifies creating application-specific rollups across multiple blockchains. Streamlining the intricate rollup deployment process into a straightforward, single-click operation, Vistara will build a front-end on the BOS to make user-friendly, multi-chain rollup deployment a reality.

    - - - -

    Simplifying multi-chain roll-ups with Vistara on the BOS 

    - - - -

    Existing frameworks such as Cosmos SDK and Substrate have sought to streamline certain software components in decentralized applications but often leave developers tied to one ecosystem that they must completely understand and master. Vistara will now present a unique solution by combining the BOS with backend chains like Ethereum and Celestia.

    - - - -

    Vistara’s emphasis on simplifying rollup component creation aligns with NEAR’s vision of user-centric decentralization and a serverless Web3. With this new BOS front-end integration, developers in the NEAR ecosystem and beyond can now build and deploy rollups in one convenient location.

    - - - -

    The result will be a user-friendly design that makes the deployment of a rollup as simple as selecting an option from a dropdown menu. The integration will also encourage a wider range of developers to build with rollups on the BOS with any chain, leading to a more diverse pool of innovations and robust growth.

    - - - -

    Vistara’s integration not only simplifies the process but also expands the scope for innovation. It demystifies rollup creation, making it accessible to a broader range of developers. This inclusivity fuels a more diverse pool of applications, fostering growth and vibrancy within the NEAR ecosystem.

    - - - -

    Vistara and BOS breaking base layer building barriers

    - - - -

    Developing decentralized applications on base layers can be a complex process. Coordination of node operators, high costs, and extended development times are among the major challenges. However, Vistara is designed to confront these issues directly, streamlining the process and fostering efficiency.

    - - - -

    Rollups — technologies that bundle or ‘roll up’ side-chain transactions into a single transaction — provide an effective solution. They help developers bypass the difficulties associated with building decentralized networks. Vistara leverages this rollup technology, pushing the NEAR ecosystem towards application-specific rollups. 

    - - - -

    The solution effectively untangles the complexities tied to base layer dependencies, forging a development environment on the BOS that stretches beyond traditional base layer confines. With Vistara, multi-chain developers can now bring their applications to life more swiftly and efficiently than ever before.

    - - - -

    To sum up, Vistara’s user-friendly, multi-chain rollup deployment capabilities on the BOS will have a huge impact on the NEAR ecosystem and beyond. The integration will take much of the complexity out of rollup deployment for anyone, helping Web3 creators, builders, and developers bring their applications to life faster than ever.

    -

    The post Vistara Lands in the NEAR Ecosystem for Seamless Base Layer Roll-up Deployment appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Releases JavaScript SDK, Bringing Web3 to 20 Million Developers - /blog/near-releases-javascript-sdk-bringing-web3-to-20-million-developers/ - - - Mon, 08 Aug 2022 23:00:26 +0000 - - - - https://neardev.nmcgn.de/?p=17905 - - Blockchain development has just become a whole lot easier for Web2 developers. NEAR is thrilled to unveil its much anticipated …

    -

    The post NEAR Releases JavaScript SDK, Bringing Web3 to 20 Million Developers appeared first on NEAR Protocol.

    -]]>
    - Blockchain development has just become a whole lot easier for Web2 developers. NEAR is thrilled to unveil its much anticipated JavaScript Software Development Kit (JS SDK) at ETHToronto, the official hackathon of the Blockchain Futurist Conference, in a significant move to democratize Web3 development.

    - - - -

    With NEAR’s JS SDK, more than 20 million developers that make JavaScript the world’s most popular coding language can finally join the internet revolution and quickly build fast, scalable, and user-friendly decentralized applications. Having that many more contributors in the space could bring about a fascinating renaissance to the open web.

    - - - -

    Although Rust and Solidity are the most prominent programming languages for Layer 1 blockchains, there are fewer than 2.5 million developers worldwide who use these languages. So, opening up the doors nearly 10x is a major step towards mass adoption. JS runs in every browser, the basics can be taught in an afternoon, it requires no compiler setup, and it comes pre-loaded with useful libraries like RegExp, Math, and Array. The NEAR JS SDK brings this same capability and ease of use to developing smart contracts, unlocking the power of blockchain to a much, much wider audience. 

    - - - -

    Commenting on the launch, Illia Polosukhin, Founder of NEAR, says: “Developers can spend less time learning a new language and more time building their application in a language they already know. Millions of developers already know how to program in JavaScript; enabling this group to build novel applications on NEAR is a critical step in achieving our vision of a billion users interacting with NEAR.”

    - - - -

    Learn, build, and deploy in minutes

    - - - -

    NEAR’s commitment to putting simplicity and usability first is reinforced by this release, making the learning curve for blockchain far less steep than it has ever been. Javascript developers can now set up their first dApp in the same amount of time it takes to spin up a React app. 

    - - - -

    The JS SDK release has everything you need to dive right into blockchain development including the contract framework itself, JavaScript and TypeScript contract examples, and example tests. It is implemented in TypeScript, which offers developers implicit, strict, and structural typing, along with type annotations built into your favorite IDE. 

    - - - -

    Developers can get started building their first JavaScript decentralized application by following this quick start guide or heading to Pagoda’s landing page to learn more. 

    - - - -

    A Closer Look at the JS SDK

    - - - -

    The JS SDK provides each contract its own instance of a JS engine running inside it. This design allows developers to write contracts in pure JavaScript or TypeScript, and access all the same features, like oracles, available to Rust contracts.

    - - - -

    To get started, run npx create-near-app in your terminal and select JavaScript for your smart contract. Once everything is installed you can test, compile, and deploy your newly created project with ease.

    - - - -

    For a more detailed look at the contract structure and other configurations check out this dApp QuickStart Guide on NEAR’s Official Documentation site. 

    - - - -

    About Pagoda

    - - - -

    The JS SDK is developed by Pagoda, the engineering team that builds and maintains NEAR Protocol and some of the most important tools needed for decentralized application (dApp) development. Developers can use the Pagoda suite of tools to build, deploy, test, and interact with smart contracts on NEAR. For more information on the JS SDK, visit Pagoda or join the NEAR Discord and checkout the #engineering channels where resources like live support are available every day. 

    - - - -

    -

    The post NEAR Releases JavaScript SDK, Bringing Web3 to 20 Million Developers appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR partners with Ceramic on cross-chain identity and dynamic data storage - /blog/near-partners-with-ceramic/ - - - Fri, 28 May 2021 15:58:07 +0000 - - - - /?p=10861 - - Partnership with Ceramic brings streaming data and cross-chain identity protocols to NEAR developers. Developers building on NEAR Protocol now have …

    -

    The post NEAR partners with Ceramic on cross-chain identity and dynamic data storage appeared first on NEAR Protocol.

    -]]>
    - Partnership with Ceramic brings streaming data and cross-chain identity protocols to NEAR developers. -

    Developers building on NEAR Protocol now have a powerful way to manage user identities and dynamic off-chain data in their applications. Ceramic, the decentralized network for data stream processing, now supports NEAR wallets.

    -

    NEAR is currently hosting an Open Web Community Hackathon with a prize for integrating IDX profiles on Ceramic with a NEAR Sputnik DAO. To participate, check out the hackathon prize!

    -

    Blockchain, Data, & Identity: a full stack for Web3 developers

    -

    NEAR offers developers the most dev-friendly and end-user accessible infrastructure for building decentralized apps and services. Great Web3 and DeFi apps require more than a smart contract platform. They also need sophisticated, scalable, and dependable data management infrastructure for app builders using smart contracts. Ceramic provides advanced database-like features such as mutability, version control, access control, and programmable logic. It is also the foundation for IDX, Web3’s first cross-chain identity model.

    -

    With the integration of Ceramic on NEAR Protocol, developers on NEAR can: 

    -
      -
    • Build data-rich user experiences and social features on fully decentralized tech
    • -
    • Give users cloud-like backup, sync, and recovery without running a centralized server
    • -
    • Publish content on the open web without the need to anchor IPFS hashes on-chain
    • -
    • Leverage interoperable profiles, social graphs and reputations across the Web3 ecosystem
    • -
    -

    Ceramic now supports NEAR wallets

    -

    Starting today, developers building applications on NEAR can easily add support for Ceramic and IDX in their application with a seamless user experience. NEAR key pairs have been added as a supported signing and authentication method for Ceramic’s data streams, so users can now perform transactions on Ceramic with their existing NEAR wallets. 

    -

    Developers have already started combining NEAR and Ceramic to create new applications such as NEAR Personas, which links a NEAR wallet to a DID.

    -

    -

    About Ceramic: Decentralized data streams

    -

    Ceramic provides developers with database-like functionality for storing all kinds of dynamic, mutable content. This finally gives developers a Web3 native way to add critical features like rich identities (profiles, reputation, social graphs), user-generated content (posts, interactions), dynamic application-data, and much more.

    -

    Ceramic’s unique stream-based architecture is designed to handle any type of data model at web-scale volume and latency. Built on top of open standards including IPFS, libp2p, and DIDs and compatible with any raw storage protocol like Filecoin or Arweave, all information stored on Ceramic exists within a permissionless cross-chain network that lets developers tap into an ever growing library of identities and data while using their preferred stack.

    -

    IDX: Cross-chain identity and user-centric data

    -

    Identity is the first use case enabled by Ceramic’s building blocks for open source information. IDX (identity index) is a cross-chain identity protocol that inherits Ceramic’s properties to provide developers with a user-centric replacement for server-siloed user tables. By making it easy to structure and associate data to a user’s personal index, IDX lets applications save, discover, and route to users’ data.

    -

    The IDX SDK makes it simple to manage users and deliver great data-driven experiences using the same NEAR keys and wallets as developers and users are already relying on. Users can also link multiple keys, from any wallet and multiple blockchains, to the same identity. This is essential to developers who want to serve users over time, as it enables key rotation, data interoperability across accounts, and rich cross-chain profiles, reputations and experiences.

    -

    Getting started with Ceramic on NEAR

    -
      -
    • NEAR is currently hosting an Open Web Community hackathon! There is a prize for integrating IDX profiles on Ceramic with theSputnik DAO platform, built on NEAR. For more information, head to the NEAR Forum.
    • -
    • To install NEAR, start with our documentation.
    • -
    • To add IDX to your project, follow this installation guide.
    • -
    • To use Ceramic for streams without IDX, follow this installation guide.
    • -
    • Regardless of which option you choose, you should also select 3ID Connect as your DID wallet during the authentication process which handles the integration with NEAR wallets.
    • -
    • For questions or support, join the Ceramic Discord and the NEAR Discord.
    • -
    -

    The post NEAR partners with Ceramic on cross-chain identity and dynamic data storage appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/developer-tools/index.html b/public/blog/tag/developer-tools/index.html deleted file mode 100644 index 3146afe23..000000000 --- a/public/blog/tag/developer-tools/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Developer tools Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/developers/feed/index.xml b/public/blog/tag/developers/feed/index.xml deleted file mode 100644 index b83d8e472..000000000 --- a/public/blog/tag/developers/feed/index.xml +++ /dev/null @@ -1,237 +0,0 @@ - - - - Developers Archives – NEAR Protocol - - /blog/tag/developers/ - - Wed, 01 Nov 2023 18:46:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Developers Archives – NEAR Protocol - /blog/tag/developers/ - 32 - 32 - - - NEARCON ’23: Developer, Founder, and Creative Talks You Shouldn’t Miss - /blog/nearcon-23-developer-founder-and-creative-talks-you-shouldnt-miss/ - - - Tue, 31 Oct 2023 19:39:29 +0000 - - - - - - /?p=21022 - - NEARCON ’23 in scenic Lisbon, Portugal is your go-to event for everything AI, the open web, and more. Whether you’re …

    -

    The post NEARCON ’23: Developer, Founder, and Creative Talks You Shouldn’t Miss appeared first on NEAR Protocol.

    -]]>
    - NEARCON ’23 in scenic Lisbon, Portugal is your go-to event for everything AI, the open web, and more. Whether you’re a developer, entrepreneur, or artist, there’s a session for you. Web3 regulatory aficionados, we’ve got you covered too (more on that later). 

    - - - -

    Here’s a rundown of sessions that are a must-see.

    - - - -

    Developer track: build better on NEAR

    - - - -

    NEAR: The Open Web Stack 

    - - - -

    NEAR co-founder Illia Polosuhin reveals game-changing updates for the NEAR ecosystem. A lot of new and exciting NEAR products and tools are in the works for developers. So, if you’re a dev, you won’t want to miss this talk from Illia. 

    - - - -

    Why Build Web3 Games 

    - - - -

    Hosted by PlayEmber’s Hugo Furneaux, this panel dissects the massive potential of gaming on the open web. Learn about player-owned economies and why you should consider NEAR for your next gaming project. An essential session for forward-thinking game developers.

    - - - -

    Unlocking NEAR Data 

    - - - -

    Data extraction got you puzzled? Pavel Kudinov, senior engineering manager at NEAR, will walk you through using SQL queries on NEAR BigQuery Datasets and the NEAR Query API to build and analyze. This is the toolkit you’ve been waiting for.

    - - - -

    Inside the BUILD Incubator 

    - - - -

    Will Russell, Michael Yu, and Max Mizzi from student hackathon league Major League Hacking take a deep dive into the BUILD Incubator Fellowship. Hear firsthand experiences and gather invaluable insights that could jump-start your open web development journey.

    - - - -

    Entrepreneurial track: jumpstart your journey

    - - - -

    Building Web3 Communities 

    - - - -

    This panel brings together experts from community building collective KryptoSeoul, decentralized identity project Galxe, NEAR DevHub, and Web incubator CryptoOracle Collective to discuss the art of fostering a vibrant, diverse community around any project.

    - - - -

    CryptoEconomics 101 

    - - - -

    Lisa Jy Tan, CEO of tokenomics consulting firm Economics Design, dives into the world of cryptoeconomics, helping you understand the fundamentals and real-world applications of economic principles, drivers, and incentives at play in the open web.

    - - - -

    Hiring Smart in Web3 

    - - - -

    Hiring in the open web is both exciting and fraught with potential landmines. Dan Eskow, founder of specialized Web3 talent agency Up Top, will share valuable tips on sourcing top talent, effective company branding, and red flags to look out for during the interview process.

    - - - -

    Funding Trends in Web3 

    - - - -

    A frontline perspective on open web investment from venture capital firms Accomplice VC, a_capital, RockawayX, and Generative Ventures. The expert VC panel will offer insights into funding trends and standout pitch decks to help founders stay ahead of the curve.

    - - - -

    Creative track: redefining art, marketing, and gaming

    - - - -

    Asia’s Impact on Web3 Gaming 

    - - - -

    This panel explores Asia’s key role in Web3 gaming, particularly Korea’s leadership in the space. Hear from Jay Hoonjai Lee, CEO of Vortex Gaming DAO, and NEAR Korea Hub’s general manager Scott Lee on what the entire blockchain gaming space can learn from Asia.

    - - - -

    Marketing in the Open Web 

    - - - -

    Learn how decentralization and the open web is changing marketing and branding from Lex B., co-founder of NEAR Studio, a creative agency dedicated to the NEAR ecosystem. Everything you need to know about marketing in the open web, including real-life case studies and successes.

    - - - -

    Advertising in Web3 

    - - - -

    Anjali Young from Collab.Land, an innovative project helping implement token-gated communities, discusses how Web3 is transforming the advertising landscape, allowing for more effective brand-customer engagement and immediate feedback.

    - - - -

    The Power of NFTs 

    - - - -

    Explore how NFTs are driving decentralized creativity, redefining loyalty, and reshaping cultural norms. Hear from the likes of Wilson Lee, co-founder of blockchain-based carnival app TheFunPass™, and Stipe Plejic, CEO of social NFT marketplace Endemic.

    - - - -

    NEARCON ‘23: get in on the action

    - - - -

    If you’re passionate about the transformative power of the open web, NEARCON ’23 is a can’t-miss conference. We’ve carefully curated speaker tracks and sessions to fuel your imagination and skills, whether you’re a developer, entrepreneur, or creative mind. And the policy-minded need not fret, there’s a special Regulatory Track chock full of insights about evolving legal frameworks, governance, and more. 

    - - - -

    With NEAR’s unique approach — super cheap, super fast, super secure — you’ll discover how the open web is solving real-world problems today.

    - - - -

    So why wait? Register for NEARCON ’23 now to secure your spot!

    - - - -

    Special offers are available for Ukrainians, students in Spain and Portugal, and hackathon registrants. Head over to those pages and register for your free NEARCON ‘23 pass!

    -

    The post NEARCON ’23: Developer, Founder, and Creative Talks You Shouldn’t Miss appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR and Nansen Partner on On-Chain Analytics for Founders and Investors - /blog/near-and-nansen-partner-on-on-chain-analytics-for-founders-and-investors/ - - - Tue, 18 Apr 2023 14:10:00 +0000 - - - - /?p=20447 - - NEAR Foundation is excited to announce a new partnership with Nansen, a blockchain analytics firm, on advanced tools for dApp …

    -

    The post NEAR and Nansen Partner on On-Chain Analytics for Founders and Investors appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Nansen, a blockchain analytics firm, on advanced tools for dApp developers and investors. Led by the NEAR Balkans Hub, the partnership with Nansen will give developers and investors new insights and data-driven solutions, like real-time data on transactions, addresses, and network activity.

    - - - -

    “We are excited to join forces with Nansen to offer our developer community even more valuable insights,” says Marieke Flament, CEO of the NEAR Foundation. “This partnership enables us to enhance our ecosystem and bring advanced analytics tools and data-driven insights to the forefront of the Web3 movement, ultimately accelerating the widespread adoption of decentralized applications.”

    - - - -

    Nansen gives users access to billions of on-chain data points

    - - - -

    With Nansen’s analytics platform, developers, investors, and other users get a comprehensive view of blockchain activity. This includes transaction flows, wallet holdings, and on-chain activity. 

    - - - -

    Nansen enables users to analyze billions of on-chain data points with over 250m+ wallet addresses across multiple blockchains, discover opportunities, perform due diligence, and defend their portfolios with real-time dashboards and alerts. The platform also provides users with a suite of tools for monitoring blockchain projects and tracking their performance.

    - - - -

    Alex Svanevik, CEO of Nansen, said that the platform is excited to join NEAR Foundation in giving NEAR in expediting “the next chapter of Web3 and empower[ing] developers to craft even more robust dApps.” 

    - - - -

    “We’re proud to have led this partnership — our commitment to enabling future Web3 creators is reflected in everything we do, and we are excited to unlock that potential through the power of decentralization,” adds Ida Pandur, CEO of NEAR Balkans. “At the heart of our mission is a desire to empower individuals to create and innovate in a brand new way, and we are committed to continuing our efforts to make this vision a reality.”

    - - - -

    As NEAR evolves into the Blockchain Operating System, a common layer for browsing and discovering open web experiences, compatible with all blockchains, this collaboration will help drive innovation on NEAR and onboard many new developers, investors, and end users into Web3. 

    -

    The post NEAR and Nansen Partner on On-Chain Analytics for Founders and Investors appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/developers/index.html b/public/blog/tag/developers/index.html deleted file mode 100644 index 2edc0559a..000000000 --- a/public/blog/tag/developers/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Developers Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/dropt/feed/index.xml b/public/blog/tag/dropt/feed/index.xml deleted file mode 100644 index 2b5822c71..000000000 --- a/public/blog/tag/dropt/feed/index.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - - Dropt Archives – NEAR Protocol - - /blog/tag/dropt/ - - Wed, 20 Sep 2023 14:29:11 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Dropt Archives – NEAR Protocol - /blog/tag/dropt/ - 32 - 32 - - - Los Angeles Football Club and Dropt Rewrite Fan Experience Playbook Utilizing NEAR Protocol - /blog/los-angeles-football-club-and-dropt-rewrite-fan-experience-playbook-utilizing-near-protocol/ - - - Tue, 19 Sep 2023 19:00:00 +0000 - - - - - - /?p=20892 - - NEAR Foundation is excited to announce a new partnership between Los Angeles Football Club (LAFC) and Dropt — a fan …

    -

    The post Los Angeles Football Club and Dropt Rewrite Fan Experience Playbook Utilizing NEAR Protocol appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership between Los Angeles Football Club (LAFC) and Dropt — a fan engagement platform built on the NEAR Protocol — supporting the club’s vision to rewrite the playbook on the fan experience. The collaboration kicks off with LAFC Gold — a Loyalty Club designed to recognize Los Angeles FC’s most devoted fans with a wide range of unprecedented benefits.

    - - - -

    Let’s explore what LAFC’s new fan engagement product, LAFC Gold, looks like and what it means for an open web. 

    - - - -

    Elevating the football fan experience with LAFC Gold benefits

    - - - -

    In the sports worlds, fans love to be part of the action, and not just at the arena. Sports teams understand that fans like to feel that they are being seen, heard, and valued for their significant contributions to the organization and its athletes. And in the world of football (“soccer” to Americans), fanbases are truly global, making it important that sports franchises meet their fans wherever they are.
    With its new Loyalty Club, LAFC is acknowledging their fans and bringing them new benefits and experiences, utilizing Dropt’s digital engagement platform and NEAR technology.

    - - - -

    “LAFC Gold promises to make LAFC fans and supporters feel seen, heard, and valued wherever they are in the world,”  said LAFC Co-President & CBO Larry Freedman. “Watching a match at BMO Stadium is one of the best sports experiences anyone can have. With LAFC Gold, we now have a way to connect, recognize, and reward anyone who supports the Black & Gold.”

    - - - -

    LAFC Gold delivers on its promise with exclusive experiences 

    - - - -

    LAFC Gold kicked off with a ticket giveaway to the historic matchup between LAFC and Inter Miami, including the experience of holding the American Flag during the National Anthem before the match. And with the  2022 World Cup, 4-time Champions League, and 7-time Ballon d’Or winner Lionel Messi on the pitch for Inter Miami, this was a match not to be missed. 

    - - - -

    For the last three home matches of the season, including the momentous El Tráfico against LA Galaxy this past weekend, LAFC Gold has given away 4 premium tickets with pre-match field access to winning LAFC Gold Members. Unlocking your chance to win experiences and benefits like these for Real Salt Lake (10/1) and Minnesota United FC (10/4) is as easy as signing up and securing your LAFC Gold Membership.

    - - - -

    With Dropt’s digital fan engagement platform, LAFC Gold will be accessible and easy for fans to join. The kickoff is just the first of what will be a dynamic program designed to create new ways for fans to engage with LAFC and its club partners. And by utilizing the NEAR Protocol, LAFC will ensure that the team will remain at the forefront of the open web’s cutting-edge technology by allowing LAFC to verify and track every transaction in a secure environment.

    - - - -

    To experience LAFC Gold, visit gold.lafc.com and sign up for an Entry, Local, Global, or Youth Membership. 

    - - - -

    LAFC Season Ticket Members are automatically enrolled in the program. 

    -

    The post Los Angeles Football Club and Dropt Rewrite Fan Experience Playbook Utilizing NEAR Protocol appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/dropt/index.html b/public/blog/tag/dropt/index.html deleted file mode 100644 index 01b56f44f..000000000 --- a/public/blog/tag/dropt/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Dropt Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ecosystem-funding/feed/index.xml b/public/blog/tag/ecosystem-funding/feed/index.xml deleted file mode 100644 index cc3a396e5..000000000 --- a/public/blog/tag/ecosystem-funding/feed/index.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - ecosystem funding Archives – NEAR Protocol - - /blog/tag/ecosystem-funding/ - - Thu, 14 Sep 2023 08:38:18 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - ecosystem funding Archives – NEAR Protocol - /blog/tag/ecosystem-funding/ - 32 - 32 - - - Grassroots Support Initiative Update – September 11, 2023 - /blog/grassroots-support-closing-update/ - - - Mon, 11 Sep 2023 15:25:35 +0000 - - - - - /?p=20851 - - As a follow up to the NEAR Foundation’s previous grassroots support post, we wanted to take a moment to share …

    -

    The post Grassroots Support Initiative Update – September 11, 2023 appeared first on NEAR Protocol.

    -]]>
    - As a follow up to the NEAR Foundation’s previous grassroots support post, we wanted to take a moment to share an update on our progress. On September 4th, we closed the form through which projects could request support until the NDC funding mechanism is live. Over the past two weeks, we have spoken to builders across the ecosystem to understand their needs and begin mapping out the different paths forward to ensure they receive the support they need. 

    - - - -

    We have encountered a range of different requests and have been taking a holistic approach to understand the unique needs faced by each project and the resources available to help them achieve their goals moving forward. While financial support is only one part of this, there have been a number of questions about the range of options available, so we wanted to give everyone visibility into the next steps.

    - - - -

    Projects looking for funding will first explore internal resources including the BD/Ecosystem success team and ad hoc advisory support via a 1-1 call with the Horizon team, as well as by working closely with the MarketingDAO, CreativesDAO, and DevHub. Projects that do not qualify through any of these routes will have the ability to go to an internal review process. 

    - - - -

    To make sure the community voices are heard and involved in the process, members of the Governance Working Group (GWG) have collaborated with NEAR Foundation to define the criteria needed to receive financial support. The criteria the committee will use to make the selections are the following:

    - - - -
      -
    • Is the project built on NEAR and live on mainnet?
    • - - - -
    • Is there a current grant already in place? 
    • - - - -
    • Are there a minimum 100 monthly active users?
    • - - - -
    • Does the request cover a maximum of 3 months of runway?
    • -
    - - - -

    This process should be completed within the coming two weeks, at which point the NEAR Foundation will provide a further update. In the meantime, if you have any questions you can always reach us at community@near.foundation.

    - - - -

    -

    The post Grassroots Support Initiative Update – September 11, 2023 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ecosystem-funding/index.html b/public/blog/tag/ecosystem-funding/index.html deleted file mode 100644 index 98828e373..000000000 --- a/public/blog/tag/ecosystem-funding/index.html +++ /dev/null @@ -1,2 +0,0 @@ -ecosystem funding Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ecosystem/feed/index.xml b/public/blog/tag/ecosystem/feed/index.xml deleted file mode 100644 index 64e163eb2..000000000 --- a/public/blog/tag/ecosystem/feed/index.xml +++ /dev/null @@ -1,1054 +0,0 @@ - - - - Ecosystem Archives – NEAR Protocol - - /blog/tag/ecosystem/ - - Wed, 24 Jan 2024 19:55:02 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Ecosystem Archives – NEAR Protocol - /blog/tag/ecosystem/ - 32 - 32 - - - Why Chain Abstraction Is the Next Frontier for Web3 - /blog/why-chain-abstraction-is-the-next-frontier-for-web3/ - - - Wed, 24 Jan 2024 19:55:01 +0000 - - - - - - /?p=21182 - - Most of today’s dapps are not actually dapps, i.e. decentralized applications. If you need to leave the app in order …

    -

    The post Why Chain Abstraction Is the Next Frontier for Web3 appeared first on NEAR Protocol.

    -]]>
    - Most of today’s dapps are not actually dapps, i.e. decentralized applications. If you need to leave the app in order to start using it, it’s not really an app––it’s just a frontend. If users have to manually onboard themselves through exchanges and manage multiple accounts and gas fees and bridges, did you even build an app? I think not––which may explain why only a few million people in the world are using dapps. 

    - - - -

    If we want to see mainstream adoption of Web3 because we believe a more open, decentralized internet that supports self-sovereignty for all people is better for the world, then we will need to do better.

    - - - -

    The prevailing narrative in Web3 today is modularity, or separating out the different functional layers of a blockchain, i.e. settlement, data availability, and execution, for the sake of scalability. Layer-twos, optimistic and ZK rollups, data availability layers, sidechains, and state channels are all examples of modularity solutions. 

    - - - -

    This proliferation of blockchains & rollups has led to a degraded experience for users and developers. Modularity and a world of many chains leads to more fragmentation of liquidity, apps, and users––a significant degree of complexity in the user experience that no mainstream user could ever be expected to navigate. This also applies to developers, who feel pressure to commit to a specific tech stack while limiting the audience for their application. Now when you build a dapp, you’re enshrining yourself into a small addressable market by choosing a single chain.

    - - - -

    I want to propose a better vision for the entire Ethereum ecosystem and all of Web3: let’s work together on advancing mainstream adoption via chain abstraction. The idea is that blockchains must be abstracted away from the user so they are not barriers to entry or participation. NEAR has been focusing on this vision since 2018 and today has achieved the most users of any network in Web3: 12.4 million monthly active accounts and 34 million accounts overall. 

    - - - -

    Here’s how we can defragment Web3 and onboard billions of users via dapps. 

    - - - -

    What does this look like for the user? 

    - - - -

    Let’s imagine how using a dapp should actually work: transacting across networks and navigating between experiences with ease, all within a single interface. As one example, Alice picks up her phone and opens KAIKAI from her lockscreen. She orders a smoothie from a local place and sees in the app that there’s a discount offer from her favorite clothing store, Maison, and orders a pair of shoes for the spring. Alice sees she has earned enough KAICHING rewards to get a badge from Maison, not knowing it’s an NFT on Polygon, and redeems it in her account. 

    - - - -

    When she browses Maison on the KAIKAI app later that day, she notices that her new badge reveals an offer to buy tickets for an exclusive event at their store with a DJ she likes. She buys the ticket with KAICHING and receives 2 tickets, still not knowing it’s an NFT on Arbitrum. Since she gets a +1, Alice invites her friend Bob to come with her and pings him for his address. 

    - - - -

    Bob sends his NEAR address to Alice and opens his app to check out the ticket. He sends Alice some ETH to say thanks for the invite and looks at the different cryptos he has in his account. Since he’s on the metro and has some time, he decides to buy some BTC and borrow against it with USDC so he can mint a Fighting Dragon NFT on Magic Eden. His friend Charles texted him earlier to get one so they could play each other in Year of the Dragon, a new game on NEAR where their dragons can battle each other for coins they can stake.

    - - - -

    All of these interactions and transactions can take place in a single interface and in a completely private way. There are no wallets, no switching networks, and no transaction fees to deal with; those are embedded directly in the swap or the buy and handled on behalf of the user. Alice didn’t need to worry about which network the ticket is on and Bob can send her funds for the ticket in whichever crypto he wants, moving seamlessly into buying a different one the next second. All inside of an app. This is the level of seamlessness we should be striving for as an ecosystem.

    - - - -

    How do we achieve Chain Abstraction?

    - - - -

    Everyone building an app in Web3 will benefit from being able to access such a broad market of potential users as in this example––i.e. anyone who uses apps. Whereas today, developers choose a network based on access to liquidity or the users of a specific rollup or chain, in a chain abstraction future they can just build with the best tech. The users will show up for the best experiences. 

    - - - -

    Imagine if a Gmail user couldn’t just send a message to an Outlook address––it doesn’t make sense. The same is true for Web3 addresses. The core assumption of chain abstraction is: end users don’t care about the underlying blockchain. They just want apps to work. In reality, blockchains are simply infrastructure to receive value out of Web3: security of assets from seizure, economic opportunity, removing middlemen for transactions, global permissionless identity, data provenance, entertaining experiences, and more.

    - - - -

    The core goal of chain abstraction is to defragment the increasingly fractured modular landscape of Web3. While this will be most visible at the user experience layer, this defragmentation of liquidity and accounts is possible thanks to innovation at the security layer. 

    - - - -

    Zero knowledge (ZK) introduces a principally new approach to ledger security. Whereas before one needed to trust a decentralized set of validators, now even a single computer can prove that rules were followed with a simple proof. This means that where before, developers would be forced to either build on a shared chain or spend immense resources to launch a new one, now they can just spin one up on their single server.

    - - - -

    This new paradigm introduces the idea of cross settlement: as more chains become fully ZK provable, if some proof is published on other chains, there is no way to revert this chain without also needing to revert other chains. Transactions from one chain can also settle on multiple others via ZK proofs. This provides mesh security as all proofs continuously get aggregated, allowing the safe movement of assets between such chains.

    - - - -

    In order to achieve unified security, two things are needed at the bottom of the stack: Data availability, which provides a way for everyone to sync even if the operator is offline, and a decentralized sequencer for applications that don’t have a central operator. 

    - - - -

    The next layer is identity with that security unified. Users can have an address on all possible chains and move assets between them freely. From a user perspective, this should be a single account where they interact with apps on different chains, and assets either get bridged or swapped automatically. 

    - - - -

    I call this “account aggregation” and will share more details about it in another post soon. NEAR will launch the next version of FastAuth in March 2024, which has mapping for NEAR addresses to EVM, Bitcoin, and other addresses. NEAR accounts can request to sign a transaction for another chain. This allows them to build multichain apps directly as smart contracts on NEAR. 

    - - - -

    The final layer is unifying the experience layer, or the application layer (e.g. DapDap)––providing a way to interact with apps on various chains without users switching or needing to leave a single interface. A decentralized frontend can provide easy components to build in a chain-abstracted way. NEAR can achieve this through NearJS, combining data indexing and decentralized frontends––V2 also coming in March 2024. 

    - - - -

    How is NEAR enabling Chain Abstraction? 

    - - - -

    The NEAR ecosystem has been building towards the chain abstraction vision since its beginnings in 2018, focusing on usability, a flexible account model, and a highly scalable blockchain that could support mainstream apps with billions of users. Today, the stack has expanded to support full chain abstraction across chains and all kinds of apps. 

    - - - -
      -
    • Scalable, integrated blockchain that can grow to 1B+ daily active accounts.
    • - - - -
    • Security aggregation stack consisting of NEAR DA, zkWASM (collaboration with Polygon Labs), and EigenLayer-powered Fast Finality.
    • - - - -
    • Account aggregation on top of this to enable transacting on all chains using a single account
    • - - - -
    • Data layer that supports everything from monolithic, integrated, modular, private and permissioned chains to query data in a predictable protocol.
    • - - - -
    • Intent relayers that can execute complex intents across chains using this infra.
    • - - - -
    • Decentralized frontends that provide discoverability and composability for multiple apps across chains into one experience.
    • - - - -
    • Super (app) wallets that are user friendly and offer a way to navigate all of Web3 without having to switch networks or deal with gas tokens and bridges.
    • -
    - - - -

    Importantly, each of these layers supports builders from across Web3, including Ethereum, rollups & L2s, and beyond––the multichain future is becoming the chain abstraction future. 

    - - - -

    Call to Action

    - - - -

    2024 is the year of hiding the complexity of multichain infrastructure to deliver the Web3 experiences we’re striving for. Improving usability and discoverability should be a priority for all Web3 builders, as well as solving for liquidity fragmentation and security tradeoffs. 

    - - - -

    Let’s make chain abstraction a movement. The NEAR ecosystem invites builders from across Web3 to take advantage of the solutions we’re offering and to collaborate with us to build more chain abstraction solutions together. Stay tuned for more news on collaborations as well as details on an exciting event that NEAR Foundation will co-host at ETHDenver 2024.

    Special thanks to Zaki Manian for conversations that led to this post as well as for his review.

    -

    The post Why Chain Abstraction Is the Next Frontier for Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  - /blog/icymi-scootering-through-web3-at-near-apacs-vietnam-showcase/ - - - Mon, 18 Sep 2023 16:32:42 +0000 - - - - - - /?p=20862 - - It was an incredible first-ever NEAR APAC, with the NEAR ecosystem scootering through Saigon over the last two days. Vietnam …

    -

    The post ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  appeared first on NEAR Protocol.

    -]]>
    - It was an incredible first-ever NEAR APAC, with the NEAR ecosystem scootering through Saigon over the last two days. Vietnam served as the perfect backdrop for NEAR’s inaugural showcase in Asia-Pacific, with community members, B.O.S. builders, and general Web3 enthusiasts coming together in one of the region’s most dynamic countries.

    - - - -

    The event was spearheaded by the NEAR Vietnam Hub with support from the NEAR Foundation, exemplifying strong commitment and collaboration between local and global ecosystem stakeholders.  ICYMI, here are some of the biggest sessions, announcements, and events from NEAR APAC 2023.

    - - - -

    ICYMI, here are some of the biggest sessions, announcements, and events from NEAR APAC 2023.

    - - - -

    Web3’s bright investment outlook in Asia-Pacific

    - - - -
    - - - -

    One of the most encouraging and optimistic sessions was moderated by NEAR’s Head of Finance, David Norris, focusing on the current and future outlook of blockchain investment and development in the region. David was joined by Web3 venture veterans Riccardo Pagano from Outlier Ventures and Whiplus Wang of IVC crypto.

    - - - -

    The trio dove into the current state of blockchain investment in APAC, and how Web3 might just ascend to becoming one of the most invested sectors in the region from a venture and infrastructure perspective. Ricardo in particular emphasized that he’s seeing a shift in perception from investors, with Web3 going from a niche technology to its own broad-based sector.

    - - - -

    “Even though we’re technically in a bear market, investment in Web3 sub-sectors like gaming is still strong,” added Whiplus. “Games like Angry Birds and Fruit Ninja were instrumental in onboarding Web2 users onto the smartphone, for example. That’s why investment into blockchain game publishers is increasing — to find that killer game that onboards billions.”

    - - - -
    - - - -

    Whiplus also likened successful blockchain startups to a bowl of Pho, with a blend of technical and business elements being integral to a delicious final dish. The panel also touched on technical nuances like ZK rollups and modular blockchains, emphasizing the need to invest in talent and innovation through initiatives like hackathons.

    - - - -

    The session encapsulated a forward-looking perspective on Web3’s trajectory. With the bar for founder participation evidently rising, the panel stressed the importance of education in the space. There was unanimous optimism about Southeast Asia’s digital future as potentially outpacing even established tech hubs like Korea and Japan.

    - - - -

    NEAR supports B.O.S. and blockchain builders in APAC

    - - - -
    - - - -

    Tons of activity also took place in and around the Builder Stage, with the NEAR Foundation and local blockchain organizations teaming up to educate and assist developers, builders, and job seekers in advancing themselves into Web3. Cameron Dennis, CEO of Banyan, led a panel on the stage informing developers on how to upskill from Web2 to Web3.

    - - - -

    Local developer advocates from notable projects like the Graph and Khyber network also participated in sessions, workshops, and panels on the Builder Stage designed to upskill local blockchain professionals. There was something for everyone, from a job fair for Web3 newbies to a Greenhouse area connecting founders and projects to VCs for funding.

    - - - -

    Exploring everything from dApp architecture to tokenomics, the Builder Stage action was highlighted by an incredible Hackathon, with participants receiving guidance from experts like Oleg Fomenko, founder of SWEAT. On the final night of the festivities, NEAR co-founder Illia Polosukhin presented awards to the winners on stage in front of a packed main hall.

    - - - -

    Pagoda takes the main stage to talk user adoption and FastAuth

    - - - -
    - - - -

    Alex Chiocchi, the CPO of Pagoda, showcased FastAuth during his session titled “Unlocking the Power of B.O.S: Product Update for Founders & Developers.” FastAuth aims to redefine the user experience for developers and founders, addressing the longstanding challenges of both onboarding and retaining new Web3 users.

    - - - -

    A primary takeaway was how FastAuth’s next release will minimize gas fees when onboarding, thus removing barriers for end-users. The introduction of multiparty compute (MPC) allows proofs from various organizations to be combined, simplifying processes like email recovery. Chiocchi emphasized the potential for users to migrate effortlessly from Web2 logins, hinting at a seamless integration between the two web generations.

    - - - -

    Discussing the nuances of retaining users in Web3, Chiocchi stressed that coin incentives alone aren’t sufficient. The “toothbrush test” was highlighted, illustrating that many apps don’t become daily necessities for users. Trust plays a pivotal role, especially with the rise of scams in the decentralized space. 

    - - - -

    Side events and after-parties storm the streets of Saigon

    - - - -
    - - - -

    NEAR APAC fully embraced the “work hard, play hard” ethos of Vietnam and Asia-Pacific. Even during the event, there were LED dancers, Manga Cosplay, and several massive DJs and party breaks. Not to mention the NEAR APAC Opening Night party at the Intercontinental Hotel, where Illia officially welcomed attendees and kicked things off in an intimate setting.

    - - - -

    And in one of the coolest side events in recent NEAR memory, Dap Dap showcased its platform to B.O.S. enthusiasts at the My House meeting venue nestled in one of Saigon’s many cozily-lit alleyways. Dap Dap is the first commercial B.O.S. product and will act as a gateway to hundreds of chains and protocols for users from a single, user-friendly interface.

    - - - -
    - - - -

    B.O.S Beats by DAO Records was the grand finale of NEAR APAC, offering a vibrant blend of hip-hop beats from prominent DJs on the decentralized record label. Held at Indika Saigon — and with pizza supplied by Pizza DAO — attendees enjoyed live performances, refreshments, and networking opportunities with the global and APAC NEAR communities. 

    - - - -

    NEAR APAC was an incredible Web3 Bánh Mì, layering an eclectic mix of speakers, insights, and events to create something completely unique. The NEAR Foundation would like to thank every cook in the kitchen, especially local partners like the NEAR Vietnam Hub who made sure that the first ever NEAR APAC had the perfect mix of sweet, sour, and spicy.

    -

    The post ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands - /blog/near-apac-day-2-recap-asia-gaming-trends-interoperability-and-web3-for-brands/ - - - Sun, 10 Sep 2023 14:28:46 +0000 - - - - - - - /?p=20841 - - It would’ve been hard to imagine topping a jam-packed Day 1 of NEAR APAC, but Day 2 managed to do …

    -

    The post NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands appeared first on NEAR Protocol.

    -]]>
    - It would’ve been hard to imagine topping a jam-packed Day 1 of NEAR APAC, but Day 2 managed to do just that. The gorgeous Sunday in Saigon covered a wide range of topics, including significant discussions on the future trends in Web3 such as how brands can hop on board the Web3 bandwagon and a creative proposal to unite all Layer 1’s for mass adoption.

    - - - -

    With each session, industry leaders shed light on challenges and the future trajectory of the fast-paced Web3 ecosystem in APAC. From the unique positioning of Web3 gaming in Asia to the potential rise of the next Web3 cycle, the discussions were varied and far-reaching. Let’s dive on into all the Day 2 happenings at NEAR APAC in Vietnam!

    - - - - - - - -

    Let’s begin the Day Two recap with a standout panel diving into the next big Web3 trends. Experts agreed that it won’t just be about technological progress, but also the transformative ways that blockchain will weave into daily life. Asset tokenization, generative AI integration, and the proliferation of decentralized creator economies were some top trends on the table.

    - - - -
    - - - -

    “Generative AI and asset tokenization are revolutionizing Web3 ecosystems, especially in growing economies like India,” said Sudeep Choudhari, head of blockchain at the India National Payments Corporation. “As integration across borders accelerates, we’ll also challenge traditional FX rates, anticipating a future with minimal cross-border payment costs.”

    - - - -

    Hanna Tantoco, APAC Marketing Director at Blockdaemon, piggybacked on the transformative role of generative AI in enhancing blockchain user experiences. She also pointed out the rising prominence of gaming in Asia, particularly on NEAR. Additionally, she highlighted Singapore’s burgeoning creator economy, powered largely by NFTs, as another future trend.

    - - - -

    How brands can futureproof themselves with blockchain

    - - - -

    Another morning highlight was a panel discussion about how brands and enterprises can harness the potential of Web3 to adapt and thrive. Key points revolved around democratizing user data control, countering data monopolization by tech giants, tokenizing assets, and challenges in linking the physical and digital worlds.

    - - - -

    “Enterprises often face challenges with hiring experts who may quickly move on to other projects,” observed Oleg Fomenko, founder of SWEAT. “While consultancies can provide insights, the real breakthrough comes when you start building and experimenting with MVPs. Though initial attempts might fall short, perseverance can yield surprising results.”

    - - - -
    - - - -

    Alex Chiocchi, CPO of Pagoda, added that Web3 streamlines verification, challenging traditional ad networks. By using an open blockchain system, excessive fees are prevented, promoting shared value with users. This shift allows benefits like self-custody and reputation while redistributing margins back to the people.

    - - - -

    Among the key takeaways from the session was that businesses harnessing blockchain’s capabilities can anticipate a transformative impact on the global economy, especially with asset tokenization’s projected growth through 2030. As brands navigate challenges like ensuring digital authenticity and early adoption, having a targeted strategy is crucial.

    - - - -

    Web3 gaming: Asia’s landscape and blockchain utilization

    - - - -

    The Asian gaming landscape is buzzing with the rise of Web3 development, promising an unprecedented era of innovation and user empowerment. Central to discussions at the “Web3 Gaming: Asia Landscape” session was the gaming community’s appetite for asset and data ownership, often prioritizing this over the complexities of Web3 itself.

    - - - -

    After attending Korea Blockchain Week, it’s evident that Japan and Korea’s mobile giants are pioneering in Web3 gaming,” said Luke Xie, founder of gaming VC fund Press Start Capital. “As opposed to Web3 games like Axie, creating AAA games takes much longer. Given the rapid pace of crypto, former mobile developers align better with this fast-paced dynamic.”

    - - - -

    Ishank Gupta, co-founder of Kratos Studios in India, emphasized that gamers prioritize asset and data ownership over backend Web3 tech. He predicted that blockchain games should bring benefits that gamers care about with a focus on ease of usability. For instance, leading studios in India are integrating well-known IP into Web3 games while ensuring they remain engaging.

    - - - -

    “We’re witnessing a new golden age of gaming driven by indie studios,” added Xie. “Small teams, empowered by AI, are crafting games that punch above their weight. We believe that on-chain gaming, while difficult to execute at present, is the future. It’s all about selecting the right chain based on tech, community, and support. NEAR excels at all of the above.”

    - - - -

    The panel agreed that the Web3 gaming industry in APAC and beyond is undergoing a transformative phase, with blockchain offering gamers more control over assets and data. As developers continue to build, the focus will be on seamless onboarding, speed, and user-centric experiences. Blockchains should be subtly integrated without disrupting the gaming experience.

    - - - -

    Bringing Web3 together with Multichain: a call for collaboration 

    - - - -

    Today’s blockchain landscape consists of independent Layer 1’s vying for supremacy, bringing up the core question of interoperability. With users often navigating several ecosystems, creating cross-chain experiences becomes paramount. This star-studded panel explored new frameworks to address hurdles and challenges in the current siloed multi-chain user experience.

    - - - -
    - - - -

    “Web3’s ethos is modularity, similar to Lego blocks,” explained NEAR CEO Marike Flament. “While we prioritize access and user growth, interoperability challenges persist. But trust and unified solutions drive adoption, not a fractured approach. It’s essential that technology seamlessly serves the end user.”

    - - - -

    Cameron Dennis, CEO of Banyan, added that key management is a critical issue. He pointed out ways to simplify these processes with tools like FastAuth. Dennis added that addressing the noticeable gap in cross-chain liquidity should be a focus. He believes that a true multichain future that drives adoption will solve key and wallet management for a better UX.

    - - - -

    “Reflecting on a decade in this space, the competitive landscape has shifted,” mused Mary Beth Buchanan from the Cardano Foundation who is also an advisor to NEAR, “Earlier, exchanges hesitated to collaborate, fearing a loss of advantage. Today, there’s a collective push to learn from one another, ensuring technology works seamlessly for the end user.”

    - - - -

    Cameron believes that reinforcing the current ecosystem is paramount before extending cross-chain efforts, even though creating a decentralized internet remains a resource-intensive endeavor.

    - - - -

    Marieke stressed the importance of open-source technology in attracting top talent. Drawing inspiration from Web2’s approach to 5G standardization, she suggested that Layer 1 leaders could unite in an ‘L20’ alliance to champion unified standards, fostering a unified vision for the industry’s future.

    - - - -

    And that’s a wrap for the official Day 2 sessions at NEAR APAC. From gaming and brand adoption to multi-chain standards and collaboration, it was clear that this first-of-its-kind regional event was a rousing success for developers and the NEAR community alike. Sunday in Saigon rolls on with more side events and after-parties, so stay tuned for the full ICYMI tomorrow.

    -

    The post NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 - /blog/near-apac-day-one-scaling-local-adoption-regional-regulation-and-ai-in-focus/ - - - Sat, 09 Sep 2023 12:14:36 +0000 - - - - - - - - - /?p=20835 - - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. …

    -

    The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

    -]]>
    - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. Held in conjunction with the NEAR Vietnam community and NEAR Foundation, NEAR APAC is showcasing the vibrant crypto and Web3 community across the region as well as the potential of the B.O.S. and Open Web both locally and globally.

    - - - -

    The day was charged with excitement, drawing over 8,000 attendees from various corners of the APAC region and beyond. With Web3 thought leaders, innovators, and enthusiasts converging in Vietnam, Day One of NEAR APAC kicked off with a slew of riveting discussions, industry insights, and speculations on the future of the Open Web with a focus on APAC.

    - - - -

    From discussions around regional growth and investment potential to how AI and blockchain will transform the future of work, here’s everything that went down at an incredible start to NEAR APAC.

    - - - -

    Setting the stage for NEAR APAC with Vietnam in focus

    - - - -

    The event kicked off with a focus on southeast Asia, with NEAR’s Vietnam country director Riley Tran welcoming attendees and providing context as to Asia’s critical role in the overarching development and expansion of Web3. Tran was followed by two NEAR luminaries, CEO Marieke Flament and co-founder Illia Polosukhin.

    - - - -

    “Asia’s young demographics and rapid digital growth, especially in Vietnam, position it as a leader in crypto and blockchain growth,” Riley explained. “With over 100 million new internet users in just three years, Asia’s momentum in Web3 is accelerating”

    - - - -

    Marieke added that the overall NEAR ecosystem remains strong with over 29M active wallets and 650K daily active accounts. She added that a collaborative approach to building tomorrow’s Open Web is critical for tackling significant societal and digital challenges.

    “Today’s Web 2.0 is closed and siloed, with the prevailing digital culture being a toxic dialectic,” Marieke expressed. “But the value loop of an Open Web holds immense promise. We’re already seeing how projects like KaiKai, SWEAT, and PlayEmber can move the needle in the right direction.”

    - - - -

    Echoing Mariek’s sentiment, Illia emphasized that it’s not necessarily about championing a specific blockchain, but about creating a common layer and interface for the Open Web. This is precisely what the Blockchain Operating System (B.O.S.) is in the process of achieving.

    - - - -

    “Looking forward, tech isn’t the only focus,” said Illia. “It’s about blending scalable solutions with user-centric experiences, with the B.O.S. becoming the essential entry point into Web3 for both users and developers.”

    - - - -

    Asia’s role in mainstream adoption and regulatory hurdles

    - - - -

    The push for mainstream blockchain adoption in APAC was also in focus on Day One, with NEAR Foundation CMO Jack Collier leading a panel discussion on current adoption challenges and how APAC can potentially lead the way in overcoming them.

    - - - -

    “I’m extremely bullish on gaming as a key part of mass adoption,” opined Don Pham, Google Cloud’s regional Web3 specialist. “Vietnam is the birthplace of Axie Infinity, which is just the beginning of blockchain gaming’s potential. Use cases like loyalty, gaming, and music NFTs combined with better UX will likely be the path forward.”

    - - - -

    The discussion dove deeper into the importance of user experience in the adoption of blockchain. Marieke reiterated that while technology forms the backbone, the real test will be simplifying the user journey, which can significantly hasten adoption across the APAC region as well as globally.

    - - - -

    Regulation was also in focus with a panel about blockchain policies and APAC’s vision for governments and associations. Mary Beth Buchanan, a board member of the Cardano Foundation, drove home the need for regulatory clarity while discussing regional frameworks in countries like Hong Kong.

    - - - -

    “The biggest challenge is not necessarily regulation, but lack of clarity,” observed Buchanan. “If regulations are unclear that will cause investors not to want to invest in the space. Builders become hesitant to build and users aren’t going to know what the rules are. Regulators need to recognize that clarity is what everyone wants.”

    - - - -

    Spotlight on Artificial Intelligence during the afternoon sessions

    - - - -

    Day One of NEAR APAC dedicated a significant chunk of its schedule to exploring the intricate interplay between AI and blockchain, particularly their role in APAC’s future technology and Web3 landscape. Illia took the stage just after the lunch break to discuss the Convergence of AI and Web3, diving deep into AI-empowered DAO and the future of AI-assisted work.

    - - - -

    “While technologies like ChatGPT have found product market fit, much of AI is still siloed and doesn’t empower open source communities and projects,” Illia posited. “Web3 can operate in the middle, with AI models incorporating all participants and data sources. DAOs, for example, can be co-piloted by AI to achieve goals and KPIs faster and more efficiently.”

    - - - -

    In the following panel discussion entitled “The Roles of Blockchains in an AI World,” Illia was joined by several AI and blockchain experts from the APAC region. One of the more distinguished panel members was Dr. Nguyen An Khuong, a lecturer and blockchain researcher from Ho Chi Minh University of Technology, who provided an academic perspective. 

    - - - -

    “We have a lot of research endeavors in Vietnam around ensuring AI’s ethical applications using blockchain,” commented Dr. Nguyen. “We’re looking at how transparency and accountability in AI decisions can be drastically improved with blockchain technology. Combining a neutral AI with a blockchain’s public ledger could enhance the ecosystem and foster wider adoption.”

    - - - -

    Illia drove home that the potential “Skynet” scenario of AI taking over the world is mostly a projection of what humans might do if they were given supercomputing powers. In reality, developments like the B.O.S. and NEAR Tasks will aid humans in success and productivity, with AI agents acting as middlemen for assistance, sourcing, and even creativity.

    - - - -

    Day One of the first-ever NEAR APAC was a rousing success, with these highlights just being the tip of the iceberg. The crowd was treated to bánh mì’s and Manga cosplay during lunch, B.O.S. building and gaming workshops on the Builder Stage, and an awe-inspiring NFT gallery from APAC creators.

    - - - -

    As the sun sets in Saigon, the NEAR Foundation couldn’t be more appreciative of the Vietnamese crypto community. The momentum rolls on tomorrow with Day Two, so stay tuned for more updates and insights around emerging APAC trends in Web3, how blockchain gaming is taking off in Asia-Pacific, and local DeFi developments. 

    - - - -

    If Day One was any indication, the NEAR community’s growth, presence, and development in APAC will only continue accelerating through 2023 and beyond!

    -

    The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Update on the Grassroots Support Initiative - /blog/update-on-the-grassroots-support-initiative/ - - - Mon, 28 Aug 2023 16:14:02 +0000 - - - - - /?p=20816 - - One of the things the NEAR Foundation has always been most proud of is the passion and enthusiasm of our …

    -

    The post Update on the Grassroots Support Initiative appeared first on NEAR Protocol.

    -]]>
    - One of the things the NEAR Foundation has always been most proud of is the passion and enthusiasm of our builders and grassroots projects — something we have seen demonstrated again since the recent post about the NDC. Over the past week alone, over 30 projects have reached out to the Ecosystem Team and a number of conversations are already underway. This has allowed NEAR Foundation to begin mapping out current needs, and understand the best way to provide support that will ensure the NEAR ecosystem remains a vibrant, open, and accessible place to build. 

    - - - -

    For us at the Foundation, hearing directly from builders provides invaluable insight into the state of the ecosystem and how we can best continue to support the people and projects that make it what it is. What we have heard so far is that while financial support is important as the NDC fully ramps up, every project has a unique set of needs that requires a holistic approach to provide the right support, and that simply re-starting a grants program is not the right solution. To make sure that we get as many perspectives from across the ecosystem, we will be leaving the form open for one more week (until September 4th) to give anyone who needs support a chance to have their voice heard.

    - - - -

    Once the form is closed and we have had a chance to review all of the inputs, we will then begin setting out a broader plan — in alignment with the NDC — to ensure projects get the support they need as we continue moving forward on the path to decentralization. The moment we have the full insights from these conversations, which should be within the next few weeks, we will share them in a follow-up blog post along with a clear plan on how we will be moving forward. 

    - - - -

    We are excited to have so much interest from builders, and look forward to creating a plan that can help keep grassroots projects engaged and building.

    - - - -

    You can sign up for a time to speak with the Ecosystem Relations Team here.  

    -

    The post Update on the Grassroots Support Initiative appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation and Blumer: Pioneering Web3 Social Networking in Latin America - /blog/near-foundation-and-blumer-pioneering-web3-social-networking-in-latin-america/ - - - Wed, 26 Jul 2023 14:00:00 +0000 - - - - /?p=20753 - - NEAR Foundation is excited to announce a strategic partnership with Blumer, Colombia’s first Web3 social network. This collaboration signifies a …

    -

    The post NEAR Foundation and Blumer: Pioneering Web3 Social Networking in Latin America appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a strategic partnership with Blumer, Colombia’s first Web3 social network. This collaboration signifies a new era in social media where active users are incentivized for their contributions, marking a transformative shift in the user-social platform dynamic.

    - - - -

    By harnessing the strengths of blockchain technology and integrating them with the vibrant world of social networking, this partnership aims to challenge the status quo, prioritizing user privacy, compensation, and education. It’s a pioneering effort that not only champions user-centric design, but also sets the stage for a more inclusive digital future in Latin America.

    - - - -

    Blumer: Revolutionizing Social Media through Blockchain Technology

    - - - -

    Blumer, the first Web3 social network created and developed in Colombia, is an innovative platform that combines the functionality of traditional social networks with the advantages of blockchain technology. What makes Blumer so unique is that users are compensated for time spent on social media, distributing 18% of its advertising revenue back to its community.

    - - - -

    “At Blumer, we believe in creating a social network for everyone,” says Ernesto Ruiz, Blumer’s CEO. “Our platform is designed to be a space where users can express themselves, connect with friends, and learn about the crypto world. We’re committed to creating a platform that is fun, engaging, and rewarding for everyone involved.” 

    - - - -

    As Ruiz alludes to, Blumer users can monetize their time spent on social media through a variety of activities like consuming advertisements, selling NFTs, and performing crypto transactions. This not only promotes user engagement but emphasizes a novel approach to commercial growth, derived largely from businesses undertaking digital marketing.

    - - - -

    Blumer isn’t just social media landscape but reshaping the whole digital economy narrative. Its unique approach of monetizing user engagement and activity on social media paves the way for a paradigm shift in user interaction and value creation. Let’s now delve into how this innovative platform aims to advance the adoption of Web3 in Latin America, one educated user at a time.

    - - - -

    “This partnership is a significant step towards creating a fair and transparent social media ecosystem,” adds Marieke Flament, CEO of NEAR Foundation. “By combining the benefits of blockchain technology with social media, we are set to revolutionize how we interact on social platforms.“

    - - - -

    Educating users and advancing Latin American Web3 adoption

    - - - -

    Blumer also tackles the significant challenges facing cryptocurrency adoption in Latin America — namely, the lack of knowledge, understanding, and real market usability. Through ZVerso, its free crypto education platform, Blumer is empowering users with the knowledge to confidently engage within the Web3 ecosystem. 

    - - - -

    By providing users with essential blockchain education and tools, Blumer is making strides toward democratizing access to Web3 technologies. This proactive educational initiative aligns with a broader vision for a more decentralized, inclusive, and user-centric digital future in Latin America.

    - - - -

    With an online population of over 54 million people, Latin America and the Caribbean form the fifth-largest global market for social media. South America alone boasts over 30 million users. The NEAR and Blumer partnership provides a unique opportunity to tap into this thriving hub and bolster the adoption of Web3 solutions.

    - - - -

    “With NEAR’s support, we are confident that we can achieve our vision and create a social network fit to thrive in tomorrow’s landscape,” Ruiz adds.

    - - - -

    The collaboration between NEAR and Blumer signifies a pivotal stride towards fostering a fair, transparent, and user-centric social media ecosystem. As Blumer forges ahead with innovative advancements in decentralized social networking, the NEAR Foundation and ecosystem give one big “Like” to Blumer’s mission of a user-empowered social network.

    -

    The post NEAR Foundation and Blumer: Pioneering Web3 Social Networking in Latin America appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris - /blog/near-at-ethcc-highlights-sustainability-and-the-bos-take-center-stage-in-paris/ - - - Thu, 20 Jul 2023 17:00:00 +0000 - - - - - - - /?p=20742 - - Missed out on NEAR’s rendezvous at ETHCC 2023 in Paris? No need to worry. In this roundup, all NEAR enthusiasts …

    -

    The post NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris appeared first on NEAR Protocol.

    -]]>
    - Missed out on NEAR’s rendezvous at ETHCC 2023 in Paris? No need to worry. In this roundup, all NEAR enthusiasts can catch up on the enlightening presentations by BOS, Web3, and blockchain experts. You’re in the perfect place to delve into notable announcements made during the conference, from NEAR signing up to the Ethereum Climate Platform to an epic new interactive Polygon zkEVM app dashboard.

    - - - -

    ICYMI, it’s time to dive into all the key speeches, events, and announcements that unfolded in the City of Lights over this past weekend.

    - - - -

    Interactive Polygon zkEVM app dashboard launches on the BOS

    - - - -

    In the most significant partnership announcement of ETHCC, an interactive Polygon zkEVM app dashboard has launched on the Blockchain Operating System (BOS). This integration will not only increase accessibility and discoverability for zkEVM developers and users on the open web but also vastly improve user experience. 

    - - - -

    The collaboration is set to accelerate the creation of dApps that will onboard billions of users into the open web. The new Polygon zkEVM dashboard now combines the benefits of zero-knowledge technology with the power of the BOS to unlock even more seamless onboarding to the open web. 

    - - - -

    The dashboard brings a new suite of zero knowledge development capabilities to zkEVM developers and lets them build apps that can reach more users from day one. It’s a groundbreaking partnership that brings together the NEAR and Polygon ecosystems, two of the most innovative names in Ethereum and blockchain scalability.

    - - - -

    NEAR makes waves with sustainability commitment

    - - - -

    NEAR Foundation made a significant stride in its commitment to Web3 sustainability. As part of its ongoing efforts, NEAR signed up to the Ethereum Climate Platform, demonstrating its resolve towards minimizing the environmental impact of Web3 development. This move aligns with NEAR’s ethos and commitment to sustainable and scalable blockchain solutions.

    - - - -

    Marieke storms the BOS-tille at “Funding the Commons”

    - - - -

    Adding to the list of notable NEAR occurrences during ETHCC, NEAR Foundation CEO, Marieke Flament, was a keynote speaker at the “Funding the Commons” event held at Sorbonne Université on July 15. Marike’s message was one of bringing more ethics and equity to the entire blockchain and Web3 ecosystem.

    - - - -

    In her speech, titled “The Open Web is NEAR: How the BOS, NDC, and DAOs are creating a Decentralized Web,” Marieke explored how NEAR Foundation serves the ecosystem by building public goods like the BOS, DevHub, NDC, DAOs, and more. 

    - - - -

    “Funding the Commons” is an event designed to complement the Ethereum Community Conference, promoting connection amongst participants, and fostering new collaborations and projects. The event organizers also planned a dinner on July 15 at Le Procope Paris, where Marieke was among the most notable invited guests.

    - - - -

    Unpacking Insights: notable talks and events at ETH CC

    - - - -

    Near @ ETHCC wasn’t just a gathering of blockchain enthusiasts, but a hotbed of innovative discussions. Illia Polosukhin, co-founder of NEAR, and Nadir Dabit’s conversation around decentralized social networks piqued particular interest. They hinted at a shift in how we’ll connect and share information in the future and the potential role of decentralized social on the BOS.

    - - - -

    Matt Stephenson, head of crypto economics at crypto investment firm, Pantera Capital, took the audience on a thrilling Day Two journey through the intricacies of behavioral game theory. He showcased how game theory could be leveraged in this space, offering a unique lens to examine, understand, and potentially predict blockchain trends.

    - - - -

    Near @ ETHCC didn’t skimp on forward-looking conversations either. A panel featuring Max Mersch of Fabric Ventures, Maggie Love from SheFi, and Bilal El Alamy of PyratzLabs posed a pertinent question: “What’s the Next Big Use Case Being Built in the Bear Market?” Each speaker provided valuable insight about both challenges and opportunities posed by bear markets.

    - - - -

    Ecosystem Updates

    - - - -

    Despite the focus on the Near @ ETHCC side event itself, the NEAR ecosystem saw significant developments and milestones during the past few days.

    - - - -
      -
    • The NEAR Digital Collective’s I-AM-HUMAN movement has crossed 2,000 members in the NEAR ecosystem. The initiative allows users to vote, elect candidates for office, and shape the future of NEAR. You can sign up here.
    • - - - -
    • MintbaseSearch has gone live on NEAR mainnet along with its own ChatGPT plugin. Mintbase now enables users to ask anything about NFTs on the NEAR Protocol. More details here.
    • - - - -
    • Opolis has raised $6.6M in a bridge fundraising round with support from NEAR Foundation, Polygon Ventures, and Draper Capital. Read more details about the full announcement here.
    • - - - -
    • Black Snow: Battle For Earth, launched its demo version, offering an exciting free-to-play-and-earn experience that aims to enhance the NEAR ecosystem by boosting user count and transactions. Check out the demo here
    • -
    - - - -

    C’est la vie in Paris as ETHCC 2023 wraps up. As we reflect on these dynamic days, it’s clear that the future of NEAR and the BOS is exciting and full of potential. From environmental commitments to bold collaborations and fascinating talks, NEAR’s Parisian journey was full of engagement, enlightenment, and enthusiasm for everyone involved.

    -

    The post NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at ETHCC: Horizon Pitch Contest, BOS Workshops, and More - /blog/near-at-ethcc-horizon-pitch-contest-bos-workshops-and-more/ - - - Sun, 16 Jul 2023 17:49:56 +0000 - - - - - - /?p=20725 - - As Day One at NEAR @ ETHCC concludes, there’s palpable growing excitement for what’s in store for tomorrow. Held at …

    -

    The post NEAR at ETHCC: Horizon Pitch Contest, BOS Workshops, and More appeared first on NEAR Protocol.

    -]]>
    - As Day One at NEAR @ ETHCC concludes, there’s palpable growing excitement for what’s in store for tomorrow. Held at the beautiful Museum National D’Histoire Naturelle in Paris, the first day of workshops and sessions proved to be an exceptional success for Ethereum and BOS builders. 

    - - - -

    Day Two is gearing up to take the experience to a whole new level, with a primary focus on founders and their ventures.

    - - - -

    Morning and Early Afternoon Sessions: Fostering Innovation

    - - - -

    Day Two will kick off with a casual networking opportunity over café au laits and pastries. It’ll be a great way to get warmed up and connect builders, innovators, and visionaries within the NEAR ecosystem.

    - - - -

    The first main event of the day will be a special workshop held  by Matt Stephenson , Head of Cryptoeconomics at Pantera Capita, along with Pantera Principal, Ryan Barney. His insights on the opportunities and challenges within blockchain economics will deepen participants’ understanding of the critical economic principles underpinning blockchain ecosystems.

    - - - -

    As the morning sessions conclude, the afternoon will kick off by delving into the world of interoperability, onboarding, and value generation with Vik Pandey from NEAR Foundation. Vik has been actively involved in the development of the BOS, focusing on interoperability, open-source technologies, and blockchain success efforts. 

    - - - -

    During his session, “Interoperability, Onboarding, and Value Generation with the BOS,” Vik will share insights from his work, highlighting the ways in which the BOS fosters innovation and impact in the Open Web.

    - - - -

    Late Afternoon Highlights: Regulatory Discussions and Horizon Workshop

    - - - -

    Next on the agenda is a panel of experts moderated by Mya Shofany, regulatory lead at NEAR Foundation. The discussion will delve into regulatory considerations in blockchain, and tackle some of the most critical issues facing Web3  founders in the current regulatory landscape.

    - - - -

    The panel will be followed by one of the day’s most anticipated events — the Horizon afternoon. This session will be a deep dive into the cutting-edge ideas poised to redefine the blockchain world, spearheaded by NEAR’s new Web3 accelerator arm.

    - - - -

    As Day Two winds down, participants can enjoy relaxed networking during the Horizon Happy Hour. Here, NEAR and Ethereum enthusiasts can reflect on the day’s learnings, forge new connections, and unwind over drinks and appetizers.

    - - - -

    If you would like to browse the official schedule, head to near.org.ethcc 

    - - - -

    Throughout the two days of NEAR @ ETHCC, participants are not just learning about the Blockchain Operating System (BOS), they’re experiencing it firsthand. Day Two promises a packed schedule of learning, building, and networking opportunities.

    - - - -

    For those who couldn’t join us on Day One, you can catch up on the sessions uploaded on the NEAR Protocol YouTube channel. Prepare for Day Two by soaking up the insights shared by our experts.

    - - - -

    Stay connected with us for more updates and insights from NEAR @ ETHCC as we continue to explore the limitless possibilities of the Blockchain Operating System (BOS).

    -

    The post NEAR at ETHCC: Horizon Pitch Contest, BOS Workshops, and More appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation PR Roundup for June - /blog/near-foundation-pr-roundup-for-june/ - - - Tue, 04 Jul 2023 00:00:00 +0000 - - - - - - - /?p=20694 - - As June comes to a close, summer in the NEAR ecosystem is heating up with a wave of new announcements, …

    -

    The post NEAR Foundation PR Roundup for June appeared first on NEAR Protocol.

    -]]>
    - As June comes to a close, summer in the NEAR ecosystem is heating up with a wave of new announcements, events, media appearances, and more. Not to mention a few notable celebrities bringing some star power into NEAR’s orbit. Here’s a rundown of all the newsworthy NEAR happenings over the past month.

    - - - -

    Sammy Hagar and Guy Fieri jump into NFTs on NEAR

    - - - -

    In the US, Grammy-winning musician Sammy Hagar and celebrity chef Guy Fieri joined the NEAR ecosystem, teaming up with NEAR on-ramp Trident3 to launch an NFT loyalty program. The Santo Spirits Club loyalty program, as reported by Coindesk and Decrypt, will enable tequila fans to earn on-chain tiered perks and an opportunity to win a virtual tasting with the duo.

    - - - -

    Mirae Asset, MARBLEX, and Vortex boost South Korea

    - - - -

     Over in Asia, NEAR Foundation continued to make inroads in South Korea. Mirae Asset, a subsidiary of Asia’s largest financial group, announced a partnership to research Web3’s role in global business. Per  Bloomberg, Mirae Asset will collaborate with NEAR Foundation to strengthen the Web2/3 business network and identify opportunities for real-world blockchain value creation.

    - - - -

    Meanwhile,  Blockchain Reporter broke that Marblex – a Korean blockchain infrastructure provider for high-quality gaming – will integrate NEAR protocol with Marblex’s gaming universe, enhancing user convenience and Web3 adoption. NEAR will integrate with MARBLEX’s WARP Bridge, taking advantage of NEAR’s high scalability and speed to improve the gaming experience in Web3. The partnership will also enable joint marketing initiatives and events, boosting awareness of the global blockchain gaming market. 

    - - - -

    Then there’s Vortex Gaming, a Web3 subsidiary of Inven, the largest game media community in Korea. Coverage by European Gaming reported that Vortex will leverage NEAR protocol to integrate a  gaming community encompassing Web2 and Web3 by building innovative infrastructure for gaming developers. The NEAR Foundation and Inven will also collaborate on marketing and business development, adding to NEAR’s exciting Web3 gaming ecosystem.  

    - - - -

    Skoda launches metaverse for auto fans in India

    - - - -

    Czech Automobile Manufacturer Skoda entered the Metaverse in the world’s most populous country, giving users an opportunity to explore, collect and own digital art pieces on NEAR. The platform, as reported by Cointelegraph and Entrepreneur India, will enable NFT owners to access exclusive perks and rewards, while allowing owners to trade digital artwork in the future. 

    - - - -

    SailGP christens The Dock for decentralized fandom

    - - - -

    In more partnership news, the Global racing league SailGP and Oracle announced the launch of “The Dock”, a decentralized fan engagement platform powered by Oracle and NEAR’s ongoing partnership to bridge the worlds of Web2 and Web3. As reported by SailWeb, The Dock will revolutionize how fans follow SailGP, increasing engagement through exclusive content and enabling fans to earn points, redeemable for exciting rewards including VIP access to SailGP events and more.

    - - - -

    Alibaba Cloud and Women in Web3 headline Collision

    - - - -

    The NEAR ecosystem took over Toronto this month, showcasing the best of BOS at Collision 2023,  one of the world’s biggest tech conferences.  During the event, the NEAR Foundation announced a groundbreaking partnership with Alibaba, enabling developers across Asia to launch new NEAR validators with Alibaba Cloud’s infrastructure as a service. 

    - - - -

    The partnership was covered in myriad outlets such as Coindesk, Journal du Coin, and BTC Echo. Partnering with Alibaba means the NEAR ecosystem will have access to Remote Procedure Calls (RPC) and enable users to interact with NEAR’s Blockchain Operating System while using Alibaba Cloud’s infrastructure. 

    - - - -

    The NEAR Foundation also released the Women in Web3 Changemakers List 2023, celebrating the achievements of extraordinary women throughout the Web3 ecosystem. As reported by Tech Funding News, the ten women were selected by the public and hail from all corners of the globe, following hundreds of nominations from the Web3 community. 

    - - - -

    Leadership viewpoints on media and social fairness

    - - - -

    Illia Polosukhin, Founder of NEAR and CEO of Pagoda, took the time to write a thought leadership piece in Blockworks about crypto’s potential to transform how we interact with the media. Illia sets out the emerging problem with the status quo: bad actors are beginning to utilize generative AI to dramatically scale up misinformation campaigns. 

    - - - -

    However, Illia explains that blockchain-based “sign-and-trace” systems can enable the public to reliably source and validate real news stories, with a legitimate trail of sources available online.

    - - - -

    CEO of NEAR Foundation Marieke Flament also penned an article for London’s leading daily business paper CityAM about using Web3 to build a fair and inclusive digital world.  “Too often technology has only benefited the few: those who have money, those who have power, or those of a certain gender, ethnicity, or skin color.

    - - - -

    But this doesn’t need to be the case,” she explained. “Technology can and should be in the service of all people. But to achieve this, we will need a change in perspective, something that Web3 can help us achieve.”

    - - - -

    Marieke also talked about blockchain, Web3, and BOS on a podcast hosted by the editor Journal du Coin – France’s leading crypto media outlet, and for a video interview with Fintech Finance at the Paris Fintech Forum. 

    - - - -

    That’s all for this month. If we missed anything or want to share anything for next month’s roundup, get in touch!

    -

    The post NEAR Foundation PR Roundup for June appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation and MARBLEX to Expand Korea’s Web3 Gaming Industry with Aurora - /blog/near-foundation-and-marblex-to-expand-koreas-web3-gaming-industry-with-warp-bridge/ - - - Sun, 04 Jun 2023 06:35:49 +0000 - - - - - - /?p=20565 - - NEAR Foundation is excited to announce a new strategic partnership with MARBLEX, a blockchain subsidiary of Netmarble Corp, that will …

    -

    The post NEAR Foundation and MARBLEX to Expand Korea’s Web3 Gaming Industry with Aurora appeared first on NEAR Protocol.

    -]]>
    -

    - - - -

    NEAR Foundation is excited to announce a new strategic partnership with MARBLEX, a blockchain subsidiary of Netmarble Corp, that will help expand Korea’s Web3 gaming industry. MARBLEX will build on Aurora, NEAR’s Ethereum-compatible layer, for maximum scalability and blockchain gaming accessibility to onboard more players to Web3. 

    - - - -

    Under the new partnership facilitated by the NEAR Korea Hub, NEAR Foundation and MARBLEX plan to achieve mutual growth by linking the NEAR blockchain and Aurora with WARP Bridge to enable interactive collaboration, promote global joint marketing events, and enhance brand awareness. 

    - - - -

    - - - -

    Through WARP Bridge, competitive and casual gamers alike will now be able to enjoy a variety of games and exclusive content through NEAR’s Blockchain Operating System (BOS). The BOS leverages the NEAR Protocol’s fast transaction speeds as well as effortless scalability and onboarding (via FastAuth) to make the onboarding experience as easy as possible for the masses. 

    - - - -

    MARBLEX: a developer and publisher of mobile games

    - - - -

    A Web3 gaming giant constantly pushing the boundaries of what’s possible, MARBLEX is a well-established developer and publisher of mobile games with more than 6,000 experts from across the globe. MARBLEX’s goal is to bring the highest quality Web3 games to market by providing key services such as a cryptocurrency wallet, decentralized exchange, token staking, and an NFT Marketplace.

    “We expect NEAR’s core narrative to play a pivotal role in bolstering the overall MBX 3.0 ecosystem,” said Junki Moon, Business Division Director of MARBLEX added. “Through the collaborative integration of the NEAR Foundation’s extensive technical expertise with the content prowess of the MBX ecosystem, we will maintain our position as pioneers in the ever-evolving landscape of the global blockchain trends.”

    - - - -

    Robbie Lim, GM of Business Development at NEAR Foundation, added: “This collaboration with MARBLEX will be an important milestone in promoting various use cases based on BOS (Blockchain Operating System). We will continuously advance the gaming ecosystem of NEAR Protocol as well as attract numerous users to enter the Web3 scene by onboarding high-quality MBX content.”

    - - - -

    NEAR Korea Hub, which oversees business development in Korea and Asia, played a key role in this strategic partnership. The Hub also sees the partnership as breaking a barrier to Web3 entry for mobile gamers. 

    - - - -

    - - - -

    “NEAR Protocol provides a user experience similar to Web2 using Fast Auth account abstraction feature, greatly lowering the initial entry barrier to Web3,” said a spokesperson from NEAR Korea Hub. “We will continue to strongly partner with excellent domestic companies such as MARBLEX to implement a user-centered ecosystem where users can easily enjoy all services.”

    -

    The post NEAR Foundation and MARBLEX to Expand Korea’s Web3 Gaming Industry with Aurora appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ecosystem/index.html b/public/blog/tag/ecosystem/index.html deleted file mode 100644 index 94e2b0849..000000000 --- a/public/blog/tag/ecosystem/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ecosystem Archives – NEAR Protocol
    <- Back to all posts

    Tag: Ecosystem

    67 posts

    Filter by tags

    Show all tags ->

    Filter by date

    Clear
    \ No newline at end of file diff --git a/public/blog/tag/ecosystem/page/2/index.html b/public/blog/tag/ecosystem/page/2/index.html deleted file mode 100644 index bb06234ee..000000000 --- a/public/blog/tag/ecosystem/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ecosystem Archives – Page 2 of 8 – NEAR Protocol
    <- Back to all posts

    Tag: Ecosystem

    67 posts

    Filter by tags

    Show all tags ->

    Filter by date

    Clear
    \ No newline at end of file diff --git a/public/blog/tag/ecosystem/page/3/index.html b/public/blog/tag/ecosystem/page/3/index.html deleted file mode 100644 index c0ecbab59..000000000 --- a/public/blog/tag/ecosystem/page/3/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ecosystem Archives – Page 3 of 8 – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/ecosystem/page/4/index.html b/public/blog/tag/ecosystem/page/4/index.html deleted file mode 100644 index 5007964c1..000000000 --- a/public/blog/tag/ecosystem/page/4/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ecosystem Archives – Page 4 of 8 – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/ecosystem/page/5/index.html b/public/blog/tag/ecosystem/page/5/index.html deleted file mode 100644 index 2ddb3a193..000000000 --- a/public/blog/tag/ecosystem/page/5/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ecosystem Archives – Page 5 of 8 – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/ecosystem/page/6/index.html b/public/blog/tag/ecosystem/page/6/index.html deleted file mode 100644 index 3afbbd2b2..000000000 --- a/public/blog/tag/ecosystem/page/6/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ecosystem Archives – Page 6 of 8 – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/ecosystem/page/7/index.html b/public/blog/tag/ecosystem/page/7/index.html deleted file mode 100644 index 6e430aa17..000000000 --- a/public/blog/tag/ecosystem/page/7/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ecosystem Archives – Page 7 of 8 – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/ecosystem/page/8/index.html b/public/blog/tag/ecosystem/page/8/index.html deleted file mode 100644 index 743be24d3..000000000 --- a/public/blog/tag/ecosystem/page/8/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ecosystem Archives – Page 8 of 8 – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/eigen-labs/feed/index.xml b/public/blog/tag/eigen-labs/feed/index.xml deleted file mode 100644 index 6f6b5096c..000000000 --- a/public/blog/tag/eigen-labs/feed/index.xml +++ /dev/null @@ -1,105 +0,0 @@ - - - - Eigen Labs Archives – NEAR Protocol - - /blog/tag/eigen-labs/ - - Fri, 10 Nov 2023 11:51:34 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Eigen Labs Archives – NEAR Protocol - /blog/tag/eigen-labs/ - 32 - 32 - - - NEAR Foundation and Eigen Labs Partner to Enable Faster, Cheaper Web3 Transactions for Ethereum Rollups via EigenLayer - /blog/near-foundation-and-eigen-labs-partner-to-enable-faster-cheaper-web3-transactions-for-ethereum-rollups-via-eigenlayer/ - - - Fri, 10 Nov 2023 13:30:00 +0000 - - - - /?p=21085 - - EigenLabs, one of the leaders in building scaling solutions on Ethereum, is partnering with the NEAR Foundation to create an …

    -

    The post NEAR Foundation and Eigen Labs Partner to Enable Faster, Cheaper Web3 Transactions for Ethereum Rollups via EigenLayer appeared first on NEAR Protocol.

    -]]>
    - EigenLabs, one of the leaders in building scaling solutions on Ethereum, is partnering with the NEAR Foundation to create an industry first partnership designed to foster faster, cheaper transactions for Layer 2 projects building on Ethereum. 

    - - - -

    Ethereum rollups, projects that perform transaction execution outside of the main Ethereum blockchain, have been one of the fastest growing sectors on the world’s largest blockchain. However, they have consistently faced challenges around finality and cost, making them an expensive option for developers looking to build on Ethereum. With the partnership with the NEAR Blockchain and NEAR Foundation, those roadblocks disappear. 

    - - - -

    The world’s first ‘fast finality layer’ for Ethereum layer 2s

    - - - -

    The partnership, which will have the two teams build the world’s first “fast finality layer” for Ethereum layer 2s, will see transaction times shrink from minutes and hours to 3-4 seconds. The cost of transacting on this new finality layer will become 4,000 times cheaper than it is currently, creating the perfect conditions for teams looking to scale on Ethereum. 

    - - - -

    This advancement will reduce liquidity fragmentation between Layer-2s through increased efficiency while also allowing them to make individual decisions around the sequencers they use to process those transactions, either on-chain or off-chain. The fast finality layer retains all Ethereum security guarantees while adding both NEAR and EigenLayer guarantees, making it an attractive option for any team building on Ethereum L2s.

    - - - -

    “We are thrilled to partner with the highly innovative team behind the NEAR protocol,” says Sreeram Kannan, founder of EigenLabs. “This is a mutually beneficial partnership that will leverage both NEAR and EigenLayer’s technologies to make it easier, faster, and cheaper for developers to build on Ethereum.”

    - - - -

    Making the Open Web more usable 

    - - - -

    The collaboration, spearheaded by Pagoda, the NEAR ecosystem development team, will help transition the NEAR-Ethereum Rainbow Bridge to an actively validated service (AVS). 

    - - - -

    “Pagoda is proud to work with Eigen Labs, a world-class team, to cobuild the fast finality layer. This solution improves the composability with Ethereum L2s and reduces liquidity fragmentation within the rollup ecosystem,” says Bowen Wang, Director of Protocol at Pagoda.

    - - - -

    The partnership will not only help projects building on Ethereum, but NEAR too, create a better bridging experience between NEAR and Ethereum, allowing transactions to reach finality faster, with stronger security guarantees and decentralization. 

    - - - -

    “NEAR Foundation is proud to partner with such an excellent team as Eigen Labs to offer a fast finality layer for ETH rollups,” says Illia Polosukhin, co-founder of NEAR Protocol. 

    - - - -

    “The fast finality layer showcases the strengths of NEAR’s technology while making the Open Web more usable, which has always been the core goal for NEAR. It will also help defragment liquidity for Ethereum rollups and make all of Web3 more interoperable as a result.” 

    - - - -

    The NEAR Foundation’s mission is to help usher in the dawn of the open web, a radically new form of Web3 where infrastructure, application protocols, and access is open to anyone, anywhere. Facilitating the development of Ethereum by creating a pathway to fast, low-cost, and scalable infrastructure is one the many ways NEAR is helping bring about this radical shift in how the internet works. 

    - - - -

    A testnet is expected to launch in Q1 2024, and more details will be shared around that time. 

    -

    The post NEAR Foundation and Eigen Labs Partner to Enable Faster, Cheaper Web3 Transactions for Ethereum Rollups via EigenLayer appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/eigen-labs/index.html b/public/blog/tag/eigen-labs/index.html deleted file mode 100644 index 26076b033..000000000 --- a/public/blog/tag/eigen-labs/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Eigen Labs Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/eigenlayer/feed/index.xml b/public/blog/tag/eigenlayer/feed/index.xml deleted file mode 100644 index fe5b8513a..000000000 --- a/public/blog/tag/eigenlayer/feed/index.xml +++ /dev/null @@ -1,297 +0,0 @@ - - - - EigenLayer Archives – NEAR Protocol - - /blog/tag/eigenlayer/ - - Thu, 16 Nov 2023 08:51:37 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - EigenLayer Archives – NEAR Protocol - /blog/tag/eigenlayer/ - 32 - 32 - - - NEARCON ’23 Unwrapped: Lisbon Steps into the Open Web in Iconic Fashion - /blog/nearcon-23-unwrapped-lisbon-steps-into-the-open-web-in-iconic-fashion/ - - - Thu, 16 Nov 2023 13:00:00 +0000 - - - - - - /?p=21092 - - Over the course of three epic days, the NEAR ecosystem showed up and showed out to make NEARCON ‘23 the …

    -

    The post NEARCON ’23 Unwrapped: Lisbon Steps into the Open Web in Iconic Fashion appeared first on NEAR Protocol.

    -]]>
    - Over the course of three epic days, the NEAR ecosystem showed up and showed out to make NEARCON ‘23 the most iconic edition yet. Groundbreaking partnerships were announced, new bonds forged, and a new vision for AI and the open web was unveiled by some of the brightest minds in the blockchain business.

    - - - -

    “The open web is an internet where all people control their own assets, data, and power of governance,” remarked NEAR co-founder and newly minted CEO of NEAR Foundation, Illia Polosukhin, on Day One of NEARCON ‘23. “And that vision extends beyond NEAR to the entire space, with the B.O.S. acting as the single entry point to an open web.” 

    - - - -

    Illia’s remarks truly encapsulated the spirit of NEARCON ‘23, as innovative collaborations with the likes of Polygon and EigenLayer highlighted a cross-chain, multi-ecosystem future with NEAR enabling multiple key facets of tomorrow’s truly open web. 

    - - - -

    So ICYMI, here’s all the key happenings, hubbub, and highpoints of an iconic NEARCON ‘23.

    - - - -

    Partnerships, IRL Hackathon, and NCON make a splash

    - - - -
    - - - -

    Things started off with a bang before the doors of the Convento Do Beato in Lisbon even opened, with the debut of the NCON token. The first ever native NEARCON token, attendees could download the NEARCON app and collect NCON tokens by completing tasks, bounties, and viewing sessions throughout the event.

    - - - -

    NEARCON-goers could then redeem NCON tokens for swag or a bite from the various food trucks, or even send NCON to other attendees via a slick native wallet on the NEARCON app. All told, over 110,000 NCON tokens were distributed during the event, making it a smash hit amongst attendees.

    - - - -
    - - - -

    This year’s NEARCON also took place across three cool and contrasting venues: NEARCON HQ, Hacker HQ, and Community HQ, each providing a unique experience for those of varying interests. HackerHQ was popping in particular due to the three day IRL Hackathon. Held in a stunning seaview venue, the winners will be announced next week, so stay tuned.

    - - - -

    Once everyone settled in for Day One, the ecosystem was treated to a few major game-changing partnership announcements. Here’s a roundup of the major collabs that are already making an impact for NEAR builders, developers, and the community at large:

    - - - -

    NEAR releases the Data Availability Layer for ETH Rollups and Ethereum developers

    - - - -
    - -
    - - - -

    By far the biggest news of Day One was NEAR unveiling the NEAR Data Availability Layer (NEAR DA), offering robust, low-cost blockchain data to developers for modular open web development. NEAR DA will help developers reduce costs and enhance the reliability of rollups, while keeping the security of Ethereum. NEAR DA is a key part of tomorrow’s open web development stack, with early users including StarkNet, Caldera, Movement Labs, and others. 

    - - - -

    NEAR x EigenLayer streamline Ethereum

    - - - -
    - - - -

    NEAR Foundation announced its partnership with EigenLayer, which will speed  up transaction times and slashing costs on the Ethereum blockchain. The collaboration will introduce a fast finality layer to Ethereum rollups, boosting their efficiency and scalability. The fast finality layer showcases the strengths of NEAR’s technology while making the open web more usable.

    - - - -

    LayerZero brings interoperability to NEAR

    - - - -

    In other big news, LayerZero integrated with NEAR, bringing over 40 blockchain networks into the open web. Layer brings trustless cross-chain messaging into the fold, making NEAR a more versatile ecosystem. The announcement highlighted NEAR’s commitment to seamless communication across various blockchain networks.

    - - - -

    Day One highlights: bringing the open web vision to life

    - - - -
    - - - -

    While there were a ton of amazing sessions and panels on the first day — from open web gaming and sports to crypto economics — one of the major themes was how Illia would realize his vision for a truly open internet in his new role as CEO of the NEAR Foundation. With a renewed focus on developers in the ecosystem, it only makes sense for him to steer the ship.

    - - - -

    Piggybacking on Illia’s “NEAR: The Open Web Vision” keynote, new NEAR COO Chris Donovan made a case for the open web, while also sitting down to discuss Web3 regulatory issues with Coindesk’s Michael Casey. And in other developer tooling news, NEAR Data Availability (DA) was announced, giving developers low-cost access to modular, scalable blockchain data.

    - - - -

    Day Two highlights: the AI is NEAR track takes flight

    - - - -
    - - - -

    The second day of NEARCON ‘23 was perhaps the boldest to date, with an epic “AI is NEAR” speaker and programming track that was simply mind blowing. Things kicked off with sessions featuring thought leaders from the likes of Pantera Capital and NEAR Tasks, and heated up even more with NEAR co-founder Alex Skidanov’s talk on generative AI and the open web.

    - - - -

    Illia returned in the afternoon to discuss “AI on NEAR: The Future of Work and Governance,” painting a picture of how AI will impact the future of governance, work, asset ownership, and beyond. He was then joined by Mike Butcher of TechCrunch, with the two unpacking the intersection of AI, blockchain, and global policy.

    - - - -

    “AI has the potential to be a huge driver for productivity,” Illia explained. “AI agents, for example,  are redefining the future of work. They have the unique ability to manage transactions and resources on blockchain platforms, communicate with secure cryptographic verification, and act as autonomous entities on people’s behalf — and directly for their benefit.”

    - - - -

    The AI is NEAR track was capped off when Illia then joined Michael Casey for a Coindesk podcast, where the two dove as deep as one can imagine down the AI rabbit hole. In particular, Illia shared his experience, views, and predictions regarding AI, blockchain, and the open web – simply a must listen. (Stay tuned for the release of this Coindesk podcast with Illia and Michael.)

    - - - -

    Day Three highlights: governance and hackathon on stage

    - - - -
    - - - -

    Governance and current happenings with the NEAR Digital Collective (NDC) were front and center in a spirited Day Three. One of the most unique panels was the NEAR Governance Forum, featuring AVB from the Transparency Committee, Cameron Dennis from Banyan, and Blaze of Cheddar.

    - - - -

    All three gave their takes on what’s gone right — and wrong — with the NDC since its inception at last year’s NEARCON. And in a “Round Robin” format, the three fielded a variety of questions from the audience, some of whom were NDC members themselves. Blaze and AVB then joined NEAR’s Yadira Blocker in an afternoon session discussing Decentralized Democracy in 2024.

    - - - -

    The final season of NEARCON ‘23 featured presentations from the IRL Hackathon, where builders unveiled their work and ideas. Judges and panelists included Oleg Fomenko, CEO of Sweat Economy, with talented NEAR builders putting their best foot forward. They showcased some truly amazing ideas and tech, so you’ll want to keep your eyes peeled for the winners.

    - - - -

    And what’s Day Three of any NEARCON without a party? This year’s bash was held at the LX Factory, an enormous space where all attendees got their final chance to network, share ideas, and have a blast. The Littles sponsored the party, bringing an added element of excitement by setting up carnival games at the venue along with The Fun Pass to reward anyone who played.

    - - - -

    NEARCON ‘23: as iconic as it gets

    - - - -
    - - - -

    If you joined us in Lisbon, a huge thanks for making this year’s edition so fun, spectacular, and rewarding. If you weren’t able to attend, we sincerely hope to see you next year. From transformative partnerships to leading the Web3 pack in AI, NEARCON ‘23 showcased the passion, momentum, and ingenuity of the entire NEAR ecosystem.

    If you weren’t able to make it to Lisbon for NEARCON, don’t worry — you can still check out all of the talks. Visit NEAR Protocol’s YouTube page for the full livestreams from the Layer 1 and Layer 2 stages, or click the links below. 

    - - - - - - - -

    Anyone who built furiously at the HackerHQ or clinked a cocktail at the Glass Movers & Shakers Happy Hour will likely tell you something similar: that NEARCON ‘23 showed the importance of a truly open web — and how together we can all achieve it.

    -

    The post NEARCON ’23 Unwrapped: Lisbon Steps into the Open Web in Iconic Fashion appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation and Eigen Labs Partner to Enable Faster, Cheaper Web3 Transactions for Ethereum Rollups via EigenLayer - /blog/near-foundation-and-eigen-labs-partner-to-enable-faster-cheaper-web3-transactions-for-ethereum-rollups-via-eigenlayer/ - - - Fri, 10 Nov 2023 13:30:00 +0000 - - - - /?p=21085 - - EigenLabs, one of the leaders in building scaling solutions on Ethereum, is partnering with the NEAR Foundation to create an …

    -

    The post NEAR Foundation and Eigen Labs Partner to Enable Faster, Cheaper Web3 Transactions for Ethereum Rollups via EigenLayer appeared first on NEAR Protocol.

    -]]>
    - EigenLabs, one of the leaders in building scaling solutions on Ethereum, is partnering with the NEAR Foundation to create an industry first partnership designed to foster faster, cheaper transactions for Layer 2 projects building on Ethereum. 

    - - - -

    Ethereum rollups, projects that perform transaction execution outside of the main Ethereum blockchain, have been one of the fastest growing sectors on the world’s largest blockchain. However, they have consistently faced challenges around finality and cost, making them an expensive option for developers looking to build on Ethereum. With the partnership with the NEAR Blockchain and NEAR Foundation, those roadblocks disappear. 

    - - - -

    The world’s first ‘fast finality layer’ for Ethereum layer 2s

    - - - -

    The partnership, which will have the two teams build the world’s first “fast finality layer” for Ethereum layer 2s, will see transaction times shrink from minutes and hours to 3-4 seconds. The cost of transacting on this new finality layer will become 4,000 times cheaper than it is currently, creating the perfect conditions for teams looking to scale on Ethereum. 

    - - - -

    This advancement will reduce liquidity fragmentation between Layer-2s through increased efficiency while also allowing them to make individual decisions around the sequencers they use to process those transactions, either on-chain or off-chain. The fast finality layer retains all Ethereum security guarantees while adding both NEAR and EigenLayer guarantees, making it an attractive option for any team building on Ethereum L2s.

    - - - -

    “We are thrilled to partner with the highly innovative team behind the NEAR protocol,” says Sreeram Kannan, founder of EigenLabs. “This is a mutually beneficial partnership that will leverage both NEAR and EigenLayer’s technologies to make it easier, faster, and cheaper for developers to build on Ethereum.”

    - - - -

    Making the Open Web more usable 

    - - - -

    The collaboration, spearheaded by Pagoda, the NEAR ecosystem development team, will help transition the NEAR-Ethereum Rainbow Bridge to an actively validated service (AVS). 

    - - - -

    “Pagoda is proud to work with Eigen Labs, a world-class team, to cobuild the fast finality layer. This solution improves the composability with Ethereum L2s and reduces liquidity fragmentation within the rollup ecosystem,” says Bowen Wang, Director of Protocol at Pagoda.

    - - - -

    The partnership will not only help projects building on Ethereum, but NEAR too, create a better bridging experience between NEAR and Ethereum, allowing transactions to reach finality faster, with stronger security guarantees and decentralization. 

    - - - -

    “NEAR Foundation is proud to partner with such an excellent team as Eigen Labs to offer a fast finality layer for ETH rollups,” says Illia Polosukhin, co-founder of NEAR Protocol. 

    - - - -

    “The fast finality layer showcases the strengths of NEAR’s technology while making the Open Web more usable, which has always been the core goal for NEAR. It will also help defragment liquidity for Ethereum rollups and make all of Web3 more interoperable as a result.” 

    - - - -

    The NEAR Foundation’s mission is to help usher in the dawn of the open web, a radically new form of Web3 where infrastructure, application protocols, and access is open to anyone, anywhere. Facilitating the development of Ethereum by creating a pathway to fast, low-cost, and scalable infrastructure is one the many ways NEAR is helping bring about this radical shift in how the internet works. 

    - - - -

    A testnet is expected to launch in Q1 2024, and more details will be shared around that time. 

    -

    The post NEAR Foundation and Eigen Labs Partner to Enable Faster, Cheaper Web3 Transactions for Ethereum Rollups via EigenLayer appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/eigenlayer/index.html b/public/blog/tag/eigenlayer/index.html deleted file mode 100644 index b567fcf0e..000000000 --- a/public/blog/tag/eigenlayer/index.html +++ /dev/null @@ -1,2 +0,0 @@ -EigenLayer Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/emily-rose-dallara/feed/index.xml b/public/blog/tag/emily-rose-dallara/feed/index.xml deleted file mode 100644 index f4566da13..000000000 --- a/public/blog/tag/emily-rose-dallara/feed/index.xml +++ /dev/null @@ -1,128 +0,0 @@ - - - - Emily Rose Dallara Archives – NEAR Protocol - - /blog/tag/emily-rose-dallara/ - - Tue, 26 Sep 2023 18:11:56 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Emily Rose Dallara Archives – NEAR Protocol - /blog/tag/emily-rose-dallara/ - 32 - 32 - - - Women in Web3 Changemakers: Emily Rose Dallara - /blog/women-in-web3-changemakers-emily-rose-dallara/ - - - Tue, 26 Sep 2023 17:40:18 +0000 - - - - - /?p=20923 - - “A lot of the clients I work with don’t feel that they’re ever on top of anything,” says Emily Rose …

    -

    The post Women in Web3 Changemakers: Emily Rose Dallara appeared first on NEAR Protocol.

    -]]>
    - “A lot of the clients I work with don’t feel that they’re ever on top of anything,” says Emily Rose Dallara, an award winning leadership coach and founder of the Web 3 and Thrive Podcast.  

    - - - -

    Dallara is one of the 10 finalists of the 2023 Women in Web3 Changemakers List, an annual competition designed to champion women pushing boundaries in the space. Dallara, along with nine other outstanding candidates, is showing the industry the change women are bringing about during the advent of the Open Web. 

    - - - -

    Dallara was selected because of her work helping ambitious leaders confidently succeed without constant self-doubt or working 24/7. 

    - - - -

    “There’s always been this golden thread throughout my whole experience, which is helping other people thrive, elevating people, especially women, because we didn’t have much of a voice back then, when I first started out.” 

    - - - -

    But Dallara’s expertise in helping others came at a personal cost. Dallara had to learn through challenging personal experiences what happens when the fast-paced world of Web3 creeps ever further into your personal life and what can happen when boundaries are not in place. 

    - - - -

    Watch an extended NEAR Foundation video interview with Emily Rose Dallara below.

    - - - -

    Burning out  

    - - - -

    “I’ve had two burnouts and two layoffs, both related,” says Dallara, from her home in France.  “I just wanted to succeed. I wanted to make all the money that was promised. I wanted to learn as much as I could. And I just didn’t see another way of working. It was a 24/7 grind.”

    - - - -

    Dallara began her Web3 journey while living in and working in Bali. “I was very much on the humanitarian side. I did a lot of work in Southeast Asia and Japan, helping with merchant onboarding, and had my own e-commerce platform for women.”

    - - - -

    She found a niche helping young female entrepreneurs accept crypto from international clients, creating payment rails for merchants, before joining Bitcoin.com as a marketing manager. A flurry of advisory roles followed, and her CV quickly became a Who’s Who of the crypto community. 

    - - - -

    “I just didn’t have the boundaries in place. I didn’t have a support network in place, I didn’t have the experience to prevent that from happening. So I burnt out. And then a bit later when I was a marketing director.” 

    - - - -

    Finding a new path

    - - - -

    After a period of recovery and reflection, Dallara began to ask herself if she wanted to stay in the industry, and if she did, what would a different path look like. And it was during this period she found that a lot of the clients and colleagues she had worked with had experienced similar issues. 

    - - - -

    “Because it’s such a rapidly changing space that’s constantly innovating, they feel that if they don’t stay on top, or they don’t have all the information they need, or they don’t reply to Slack messages all the time, that they’re not going to succeed. That’s what they’re scared of. And so this was a fear that I carried as well. And it took me a long time to unravel that and understand that it wasn’t a valid fear.”

    - - - -

    But Dallara used that fear to help her understand what she should do next. After qualifying as an accredited coach, she decided she wanted to help other women learn the lessons she had without having to burn out first. 

    - - - -

    “We’re trying to create a bit of a movement. We can’t just go say to the VCs, ‘you need to train the people that you’re invested in as better leaders’. It’s not as simple as that. We have to make people aware first, we can’t make any changes without that.”

    - - - -

    Given her experience working at the breakneck speeds of the Web3 world, would she recommend the industry to other women? “It’s a huge opportunity. I would never have been in the roles I’ve been in in web two, it would have been a much, much slower process. It gave me the space to understand what I was really good at, in a really short time because people kept throwing opportunities at me because it was rare to have a woman who was a marketing leader in the space.” 

    - - - -

    Dallara advises any women looking at this space to be, above all, curious. “Know that you can make this whatever you want to make it. There’s no rules. You can build whatever you want to build, you can create the role, whatever you want to create. And it’s up to you to determine how you do that. And when. 

    - - - -
    - -
    -

    The post Women in Web3 Changemakers: Emily Rose Dallara appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/emily-rose-dallara/index.html b/public/blog/tag/emily-rose-dallara/index.html deleted file mode 100644 index 6b9170e9f..000000000 --- a/public/blog/tag/emily-rose-dallara/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Emily Rose Dallara Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/encode-club/feed/index.xml b/public/blog/tag/encode-club/feed/index.xml deleted file mode 100644 index 85f00dd6c..000000000 --- a/public/blog/tag/encode-club/feed/index.xml +++ /dev/null @@ -1,114 +0,0 @@ - - - - Encode Club Archives – NEAR Protocol - - /blog/tag/encode-club/ - - Tue, 09 May 2023 14:47:56 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Encode Club Archives – NEAR Protocol - /blog/tag/encode-club/ - 32 - 32 - - - NEAR Horizon and Encode Club: Accelerating Blockchain Mastery for Builders - /blog/near-horizon-and-encode-club-accelerating-blockchain-mastery-for-builders/ - - - Tue, 09 May 2023 15:00:00 +0000 - - - - - /?p=20482 - - NEAR Horizon and Encode Club have joined forces with a singular mission: to simplify the entry into the Web3 sphere. …

    -

    The post NEAR Horizon and Encode Club: Accelerating Blockchain Mastery for Builders appeared first on NEAR Protocol.

    -]]>
    - NEAR Horizon and Encode Club have joined forces with a singular mission: to simplify the entry into the Web3 sphere. This partnership forms a structured pathway, offering builders and founders a seamless transition into the blockchain world. Anchoring their efforts on practical solutions, NEAR Horizon and Encode Club aim to foster an inclusive and accessible future in the ever-evolving decentralized landscape.

    - - - -

    Uniting Encode’s developer training expertise with NEAR’s advanced tech, the partnership goes beyond facilitation. It directly trains builders, fueling growth and actively shaping an open Web3.

    - - - -

    Encode x NEAR Horizon: Four steps to blockchain expertise

    - - - -

    This inclusive program is meticulously designed to accommodate everyone from those new to blockchain to well-versed industry professionals, promoting skill development and exploration in Web3.

    - - - -

    Here’s what to expect:

    - - - -
      -
    1. Encode x NEAR Horizon Educational Series: The journey commences with a four-week program of building awareness of Web3 and NEAR Technology. These sessions aim to demystify blockchain technology, making it approachable for newcomers while offering valuable insights for seasoned professionals. From introductory presentations to in-depth technical demos, the educational series lays a solid foundation for all participants.
    2. -
    - - - -
      -
    1. Encode x NEAR Horizon Bootcamp: An intense eight-week program offers a deep dive into the world of blockchain development. Participants engage in live classes, practical assignments, and collaborative group projects — all under the expert guidance of seasoned instructors. The bootcamp offers a hands-on learning experience, accelerating the participants’ transition from theory to practice.
    2. -
    - - - -
      -
    1. Encode x NEAR Horizon Hackathon: A four-week hackathon that supports builders in launching high-quality projects. This event is designed to challenge participants and allow them to apply their newfound skills. With technical workshops, mentorship, and continual support, the hackathon provides an excellent platform for budding developers to build, learn, and innovate.
    2. -
    - - - -
      -
    1. Encode x NEAR Horizon Accelerator Program: This eight-week program focuses on nurturing the most promising hackathon projects and ecosystem builders. By offering mentorship and weekly workshops, the accelerator program aims to transform innovative ideas into operational startups, contributing to the growth and diversity of the NEAR ecosystem.
    2. -
    - - - -

    In essence, this partnership between NEAR Foundation and Encode Club is more than just an event — it’s a comprehensive roadmap to blockchain mastery, designed to educate, engage, challenge, and inspire all who embark on the journey.

    - - - -

    Cultivating talent: Encode x NEAR Horizon growth strategy

    - - - -

    The program offers a well-structured process for developers to learn, practice and build startups while receiving mentorship support from Encode and NEAR Horizon. The program’s impact extends beyond individual growth, as it also fosters a thriving environment for the NEAR ecosystem and Web3 developers.

    - - - -

    Don’t miss the chance to be part of this enriching experience — an opportunity that promises to strengthen the NEAR ecosystem while nurturing the next generation of Web3 developers. Embark on a rewarding blockchain journey with the NEAR Horizon and Encode Club partnership. Whether it’s the educational series, hackathon, bootcamp, or accelerator program, NEAR Horizon and Encode provide the resources and opportunities you need to succeed in the world of blockchain. Your blockchain adventure starts here. 

    - - - -

    To start,  create a NEAR Horizon project profile and register to the Encode x NEAR Horizon program here. Stay updated on Encode Club’s programs via their website, Twitter, and Discord, and join a community that shares your passion for Web3 innovation and growth. NEAR Horizon was recently launched, read the press release here, and register in the NEAR Horizon platform here.

    -

    The post NEAR Horizon and Encode Club: Accelerating Blockchain Mastery for Builders appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/encode-club/index.html b/public/blog/tag/encode-club/index.html deleted file mode 100644 index 9974ed06c..000000000 --- a/public/blog/tag/encode-club/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Encode Club Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/encode/feed/index.xml b/public/blog/tag/encode/feed/index.xml deleted file mode 100644 index d5b3b91bd..000000000 --- a/public/blog/tag/encode/feed/index.xml +++ /dev/null @@ -1,93 +0,0 @@ - - - - Encode Archives – NEAR Protocol - - /blog/tag/encode/ - - Wed, 14 Jun 2023 15:35:54 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Encode Archives – NEAR Protocol - /blog/tag/encode/ - 32 - 32 - - - Encode x NEAR Horizon Bootcamp: Your Mission to Master Web3 Rust Contracts - /blog/encode-x-near-horizon-bootcamp-your-mission-to-master-web3-rust-contracts/ - - - Wed, 14 Jun 2023 14:00:00 +0000 - - - - /?p=20629 - - Web3 builders, developers, and founders are gearing up to join the Encode x NEAR Horizon Bootcamp starting July 10th, 2023 …

    -

    The post Encode x NEAR Horizon Bootcamp: Your Mission to Master Web3 Rust Contracts appeared first on NEAR Protocol.

    -]]>
    - Web3 builders, developers, and founders are gearing up to join the Encode x NEAR Horizon Bootcamp starting July 10th, 2023 to upgrade their building, development, and coding skills. Following the recent partnership between NEAR Horizon and Encode Club, the bootcamp is part of a broader initiative to accelerate blockchain expertise with a focus on developing Rust smart contracts.

    - - - -

    Encode Club is a community that helps builders grow their technical capabilities with tangible results, such as completing projects, promoting employability, and gaining funding. This mission aligns seamlessly with NEAR Horizon, a new branch of the NEAR Foundation fostering innovation and development among early stage Web3 Founders building in the NEAR ecosystem

    - - - -

    If you’re a self-starting developer hungry to learn more about building on NEAR, then the NEAR x Encode Club Bootcamp might just be the perfect crash course to get started and progress rapidly. Apply here for the NEAR x Encode Bootcamp. Here’s the lowdown on what the bootcamp will entail and how NEAR builders can fast track their Web3 skillset and knowledge base to the next level.

    - - - -

    Ranking up in Web3 with the NEAR x Encode Club Bootcamp

    - - - -

    Firstly, selected participants can attend the bootcamp for free, reflecting Encode Club’s commitment to supporting Web3 builders. The 90-minute lessons will be conducted via Zoom (or similar), Monday through Thursday over the course of eight weeks, and feature an engaging mix of deep educational content focused on smart contract development as well as hands-on learning from Encode Club technical experts.

    - - - -

    Mentors will guide participants through a variety of topics and related subjects, demystifying  the myriad of concepts and nuances inherent in blockchain development. The focus will be primarily on the NEAR ecosystem, with the goal of ensuring that everyone gains the practical skills and knowledge to excel, succeed, and create in the rapidly evolving Web3 world. 

    - - - -

    Calling all coders: Bootcamp application and selection process

    - - - -

    There are no official prerequisites to applying for the bootcamp. However, previous coding and Web3 or blockchain experience (particularly with RUST) will help you get the most from the sessions. The Bootcamp is also part-time, giving attendees flexibility with their full-time commitments.

    - - - -

    After registration, the pool will be whittled down to a shortlist who will be asked to conduct a brief interview before being formally selected and invited to attend. At this time, selectees will be asked to provide a small deposit, repaid when the Bootcamp concludes. The cohort size will be roughly 50 people, with Encode Club assisting in job placement once finished.

    - - - -

    The NEAR x Encode Club Bootcamp is a perfect example of the work NEAR Horizon is doing as a startup support platform for the entire ecosystem. Any builders, developers, or NEAR blockchain enthusiasts should apply directly through Encode Club right away, as cohort space is currently limited. To learn more about NEAR Horizon or to list your project on the Horizon platform, visit near.org/horizon.

    - - - -

    Your mission – should you choose to accept and sign the transaction – is to master Web3 at the NEAR x Encode Club Bootcamp. Apply now and report for duty on July 10th!

    -

    The post Encode x NEAR Horizon Bootcamp: Your Mission to Master Web3 Rust Contracts appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/encode/index.html b/public/blog/tag/encode/index.html deleted file mode 100644 index 7de37c329..000000000 --- a/public/blog/tag/encode/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Encode Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/entertainment/feed/index.xml b/public/blog/tag/entertainment/feed/index.xml deleted file mode 100644 index 2522644a4..000000000 --- a/public/blog/tag/entertainment/feed/index.xml +++ /dev/null @@ -1,114 +0,0 @@ - - - - Entertainment Archives – NEAR Protocol - - /blog/tag/entertainment/ - - Tue, 02 May 2023 12:36:20 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Entertainment Archives – NEAR Protocol - /blog/tag/entertainment/ - 32 - 32 - - - Shemaroo and NEAR Foundation Accelerate Web3 Adoption in Indian Media and Entertainment  - /blog/shemaroo-and-near-foundation-accelerate-web3-adoption-in-indian-media-and-entertainment/ - - - Tue, 02 May 2023 12:34:53 +0000 - - - - - /?p=20464 - - Shemaroo Entertainment, a prominent Indian content powerhouse with a diverse library of over 3,700 movie titles, a subscriber userbase of …

    -

    The post Shemaroo and NEAR Foundation Accelerate Web3 Adoption in Indian Media and Entertainment  appeared first on NEAR Protocol.

    -]]>
    - Shemaroo Entertainment, a prominent Indian content powerhouse with a diverse library of over 3,700 movie titles, a subscriber userbase of over 200 million people, and a vast global distribution network, is forging a strategic partnership with the NEAR Foundation to foster Web3 innovation in the media and entertainment industry — across  India and beyond. The partnership also paints an even brighter picture for NEAR and the entertainment sector.

    - - - -

    With six decades of experience in Indian cinema, Shemaroo is synonymous with the Indian entertainment picture, consistently staying at the forefront of technological advancements, and adapting to the ever-changing landscape of content consumption. Sheramoo’s latest foray into Web3 and the metaverse with NEAR Foundation is the latest example.

    - - - -

    Through this collaboration, Shemaroo aims to explore the potential applications of blockchain technology by establishing a dedicated Web3 innovation cell. The cell will focus on unlocking new opportunities for decentralization, transparency, and immutability in the media and entertainment sector. 

    - - - -

    With over 600 employees in Delhi, Mumbai, and New Jersey, Sheramoo’s already global reach in the entertainment industry is rapidly growing. Sheramoo’s app is also available and used in over 150 countries and counting. This extensive and expanding global presence positions Shemaroo perfectly to explore and capitalize on the potential of Web3 in entertainment — powered by the NEAR Blockchain Operating System.

    - - - -

    Shemaroo expands Web3 into Indian media

    - - - -

    Together, Shemaroo and NEAR Foundation will develop pioneering products and services that leverage Web3 and Sheramoo’s vast content library. The Web 3 innovation cell will become a breeding ground for groundbreaking ideas in how blockchain technology can reshape multiple facets of the entertainment industry.

    - - - -

    Shemaroo will take advantage of the BOS to develop scalable blockchain and smart contract services in areas like content distribution, rights management, and audience engagement. Hiren Gada, CEO of Shemaroo Entertainment, expressed enthusiasm for the partnership and the potential it holds for the future of media.

    - - - -

    “As a forward-thinking company, we are always looking for new ways to innovate and enhance our offerings to better serve our users,” says Gada “We believe that blockchain technology has the potential to unlock new possibilities and create new revenue streams for the industry.” 

    - - - -

    Gada also highlighted the benefits of NEAR becoming the Blockchain Operating System (BOS), which will ease and accelerate Sheramoo’s adoption of Web3, and reduce the time to market for projects. With NEAR, Shemaroo will provide Indian entertainment enthusiasts with enhanced security, faster transaction speeds, and lower costs for all forms of content engagement. 

    - - - -

    Building Shemaroo’s next-gen content on NEAR

    - - - -

    The partnership is expected to produce numerous benefits for both ecosystems. Shemaroo stands to increase brand awareness, reach new audiences, and develop fresh revenue streams while integrating cutting-edge technologies into its content. By building on NEAR, Shemaroo will be able to integrate things like NFTs and immersive metaverse experiences into both its vast existing library and future content.

    - - - -

    Marieke Flament, CEO of the NEAR Foundation, shared her excitement about the partnership, saying, “We are thrilled to partner with Shemaroo Entertainment, a company with a rich history in Indian cinema and a vast market reach.” 

    - - - -

    Flament added, “With a collection of over 3,700 movie titles and content distribution partners like Amazon Prime Video, Netflix, and YouTube, Shemaroo will expose NEAR to a completely new audience.”

    - - - -

    Shemaroo garners over 100 million views per day, with a massive cumulative subscriber base of over 200 million. This impressive audience reach will make NEAR more visible in an important market, contributing to its broader vision of bringing one billion people to Web3 through strategic partnerships.

    - - - -

    The partnership also helps increase the adoption of BOS, demonstrates the potential of blockchain technology in media and entertainment, and will attract new developers and partners in both the region and the entertainment industry. The partnership comes just shortly after the Foundation appointed Arpit Sharma to spearhead regional growth in India, ASEAN, and the Middle East.

    - - - -

    The partnership between Shemaroo Entertainment and NEAR Foundation is an important step towards unlocking the full potential of blockchain technology in the world of media and entertainment. Using the Indian region as a breeding ground for innovation via Sheramoo’s Web3 cell, they’ll be setting a new standard for new forms of content for existing libraries.

    -

    The post Shemaroo and NEAR Foundation Accelerate Web3 Adoption in Indian Media and Entertainment  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/entertainment/index.html b/public/blog/tag/entertainment/index.html deleted file mode 100644 index 1352fffbd..000000000 --- a/public/blog/tag/entertainment/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Entertainment Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/erica-kang/feed/index.xml b/public/blog/tag/erica-kang/feed/index.xml deleted file mode 100644 index d275b684b..000000000 --- a/public/blog/tag/erica-kang/feed/index.xml +++ /dev/null @@ -1,135 +0,0 @@ - - - - Erica Kang Archives – NEAR Protocol - - /blog/tag/erica-kang/ - - Tue, 03 Oct 2023 16:05:52 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Erica Kang Archives – NEAR Protocol - /blog/tag/erica-kang/ - 32 - 32 - - - Women in Web3 Changemakers: Erica Kang - /blog/women-in-web3-changemakers-erica-kang/ - - - Tue, 03 Oct 2023 16:00:00 +0000 - - - - /?p=20944 - - “The space needs more women,” says Erica Kang, the CEO and founder of KryptoSeoul, a community building team focused on …

    -

    The post Women in Web3 Changemakers: Erica Kang appeared first on NEAR Protocol.

    -]]>
    - “The space needs more women,” says Erica Kang, the CEO and founder of KryptoSeoul, a community building team focused on highlighting projects that are actively building in the space, connecting audiences in Asia and beyond. 

    - - - -

    “I think many people find it intimidating coming into this space, but I think women can add value.” 

    - - - -

    Kang is one of the 10 finalists of the 2023 Women in Web3 Changemakers List, an annual competition designed to champion women pushing boundaries in the space. Kang, along with nine other outstanding candidates, are showing the industry the change women are bringing about during the advent of the Open Web. 

    - - - -

    Kang was chosen because of her tireless work in the Web3 community. On top of creating one of the most vibrant meetups in Asia under KryptoSeoul, she’s also one of the main organisers of BUIDL Asia, as well as numerous hackathons and meetups, and has been a pivotal player in helping bring together some of the brightest technical talent under one roof. But getting to this point has been anything but easy.  

    - - - -

    Watch an extended NEAR Foundation video interview with Erica Kang below.

    - - - -

    Stepping off the ladder 

    - - - -

    Kang graduated from Stanford with a major in international relations and policy, giving her the foundations for being able to bring people from diverse backgrounds closer together. After graduating, she joined Korea Telecom, one of the largest telco companies in Asia, working in the strategy division, but found it stifling. 

    - - - -

    “It’s a very conservative culture,” says Kang. “The hierarchy is dramatic. Juniors don’t have an opportunity to strive for creating new things or innovations, even though they have amazing ideas. It’s hard to bring it up.” 

    - - - -

    But a chance encounter with a friend took Kang on a different path. “A friend recommended a very unique seminar, back in 2017. It’s very rare in Seoul, Korea to kind of have that kind of a seminar, especially on crypto.” 

    - - - -

    The opportunity to jump into an emerging new field of technology, and away from the hierarchy of corporate South Korea was too tempting.

    - - - -

    “Since then, I’ve been in the rabbit hole ever since.” Kang brought her experience in bringing people together in a role she describes as closer to a digital “diplomat” and started organising meet ups in and around South Korea from 2017 onwards.  

    - - - -

    Kang was well placed. South Korea has become one of the leaders in Web3 technology. The South Korean government has invested US$21 million into local services looking to utilize the metaverse, and has established a US$30 million metaverse fund to help startups expand. 

    - - - -

    Earlier this year, South Korea’s parliament approved the country’s first standalone crypto asset legislation, which integrates 19 crypto-related bills and authorises the Financial Services Commission (FSC) to oversee crypto asset operators and custodians. 

    - - - -

    But it hasn’t always been easy working in Web3.

    - - - -

    Growing Pains

    - - - -

     “I’ve been working in the space since 2017, and I did feel a lack of female culture here. It was devastating at times. And it was frustrating too. I really had to eliminate my femininity and had to prove I could really go up there and do my thing,” says Kang. 

    - - - -

    But the hard work, says Kang has paid off. “I think people get it now. I’ve just been building, and make a difference.” Kang is now considered one of the key pillars of the South Korean, and broader east Asian crypto community.

    - - - -

    She has also become a sounding board for many young female entrepreneurs thinking about jumping into the Web3 space. But Kang suggests they tread with caution. 

    - - - -

    “I think it’s really important for newbies to do your own research. Learn a lot and indulge yourself but when it comes to engaging in certain projects, and certain people investing in those people, you really have to be careful.” 

    - - - -

    Kang stresses there are reputational challenges working on some projects, but the opportunity to innovate and come up with new solutions to old problems is unique in the Web3 space. 

    - - - -
    - -
    -

    The post Women in Web3 Changemakers: Erica Kang appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/erica-kang/index.html b/public/blog/tag/erica-kang/index.html deleted file mode 100644 index 210f71516..000000000 --- a/public/blog/tag/erica-kang/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Erica Kang Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/eth-denver/feed/index.xml b/public/blog/tag/eth-denver/feed/index.xml deleted file mode 100644 index aaad970d2..000000000 --- a/public/blog/tag/eth-denver/feed/index.xml +++ /dev/null @@ -1,96 +0,0 @@ - - - - ETH Denver Archives – NEAR Protocol - - /blog/tag/eth-denver/ - - Thu, 22 Feb 2024 18:19:31 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - ETH Denver Archives – NEAR Protocol - /blog/tag/eth-denver/ - 32 - 32 - - - NEAR at ETHDenver: Get Chain-Abstracted with the Black Dragon - /blog/near-at-ethdenver-get-chain-abstracted-with-the-black-dragon/ - - - Thu, 22 Feb 2024 18:19:30 +0000 - - - /?p=21249 - - Ditch the ETHDenver small talk and brace yourself abstractooors! The NEAR Ecosystem is crashing the scene, armed with next-level chain …

    -

    The post NEAR at ETHDenver: Get Chain-Abstracted with the Black Dragon appeared first on NEAR Protocol.

    -]]>
    - Ditch the ETHDenver small talk and brace yourself abstractooors! The NEAR Ecosystem is crashing the scene, armed with next-level chain abstraction, mind-bending AI, and enough developer swag to make your node blush.

    - - - -

    But First, the Tea:

    - - - -

    Heard whispers of a Chain Abstraction Tea Party hosted by the elusive Black Dragon? It’s not just rumors. Mingle with the brightest minds in the NEARverse at our booth (number 314, remember it!).

    - - - -

    To celebrate the psychedelic “Alice in Wonderland” theme of ETHDenver, we’ve conjured up a magical animation that serves as your gateway to Chain Abstraction. Scan the code, embrace the future, and claim your own NFT powered by ShardDog.

    - - - -

    Dive down rabbit holes of chain abstraction, data that never forgets, and transactions faster than a Denver blizzard. The Black Dragon’s got your back, guiding you through the mind-bending potential of Web3.

    - - - -


    Follow the trail and join us for an exclusive event (space is limited, RSVP ASAP) where the real secrets of Web3’s future get spilled. 

    - - - -

    Ditch the FOMO, See What’s NEAR:

    - - - -

    - - - -

    From on-chain rewards, airdrops, and more, powered by NEAR Ecosystem projects to hackathon bounties. The NEAR team is ready to onboard you and answer your burning questions.

    Hacking not your jam? Don’t worry, there’s more!

    Mark your calendars for February 26th, because the Decentralized AGI Summit is where AI and Web3 collide, igniting thought-provoking discussions on decentralized systems. This isn’t just another tech event; it’s an interactive experience where you’ll witness the explosive synergy between these two cutting-edge fields. Be part of building the future!

    Then on February 28th, we’re bringing you hot fire —get it? because we’re dragons, hah— by partnering with Agoric and Frontier Research for Chain Abstraction Day, an exclusive apply-to-attend event featuring the most hardcore builders and researchers in the space. Prepare to witness the future of interoperability, where users hop seamlessly between chains without a second thought (or a gas fee headache). 

    - - - -

    Space is limited, and only the most curious minds need apply. So if you’re a developer dreaming of cross-chain dApps, a creator with an NFT vision spanning universes, or an entrepreneur ready to conquer the multiverse, submit your request to attend ASAP. Don’t miss your chance to rub shoulders with the brightest minds in the biz and unlock the true power of blockchain, unchained.

    For a comprehensive overview of NEAR’s presence at ETHDenver, including speaker sessions and networking opportunities, visit our dedicated NEAR at ETHDenver landing page.

    - - - -

    - - - -

    See you on the other side, chain abstractooors!

    -

    The post NEAR at ETHDenver: Get Chain-Abstracted with the Black Dragon appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/eth-denver/index.html b/public/blog/tag/eth-denver/index.html deleted file mode 100644 index 0600df96b..000000000 --- a/public/blog/tag/eth-denver/index.html +++ /dev/null @@ -1,2 +0,0 @@ -ETH Denver Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ethcc/feed/index.xml b/public/blog/tag/ethcc/feed/index.xml deleted file mode 100644 index f81b89b49..000000000 --- a/public/blog/tag/ethcc/feed/index.xml +++ /dev/null @@ -1,402 +0,0 @@ - - - - ETHCC Archives – NEAR Protocol - - /blog/tag/ethcc/ - - Thu, 20 Jul 2023 15:12:17 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - ETHCC Archives – NEAR Protocol - /blog/tag/ethcc/ - 32 - 32 - - - NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris - /blog/near-at-ethcc-highlights-sustainability-and-the-bos-take-center-stage-in-paris/ - - - Thu, 20 Jul 2023 17:00:00 +0000 - - - - - - - /?p=20742 - - Missed out on NEAR’s rendezvous at ETHCC 2023 in Paris? No need to worry. In this roundup, all NEAR enthusiasts …

    -

    The post NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris appeared first on NEAR Protocol.

    -]]>
    - Missed out on NEAR’s rendezvous at ETHCC 2023 in Paris? No need to worry. In this roundup, all NEAR enthusiasts can catch up on the enlightening presentations by BOS, Web3, and blockchain experts. You’re in the perfect place to delve into notable announcements made during the conference, from NEAR signing up to the Ethereum Climate Platform to an epic new interactive Polygon zkEVM app dashboard.

    - - - -

    ICYMI, it’s time to dive into all the key speeches, events, and announcements that unfolded in the City of Lights over this past weekend.

    - - - -

    Interactive Polygon zkEVM app dashboard launches on the BOS

    - - - -

    In the most significant partnership announcement of ETHCC, an interactive Polygon zkEVM app dashboard has launched on the Blockchain Operating System (BOS). This integration will not only increase accessibility and discoverability for zkEVM developers and users on the open web but also vastly improve user experience. 

    - - - -

    The collaboration is set to accelerate the creation of dApps that will onboard billions of users into the open web. The new Polygon zkEVM dashboard now combines the benefits of zero-knowledge technology with the power of the BOS to unlock even more seamless onboarding to the open web. 

    - - - -

    The dashboard brings a new suite of zero knowledge development capabilities to zkEVM developers and lets them build apps that can reach more users from day one. It’s a groundbreaking partnership that brings together the NEAR and Polygon ecosystems, two of the most innovative names in Ethereum and blockchain scalability.

    - - - -

    NEAR makes waves with sustainability commitment

    - - - -

    NEAR Foundation made a significant stride in its commitment to Web3 sustainability. As part of its ongoing efforts, NEAR signed up to the Ethereum Climate Platform, demonstrating its resolve towards minimizing the environmental impact of Web3 development. This move aligns with NEAR’s ethos and commitment to sustainable and scalable blockchain solutions.

    - - - -

    Marieke storms the BOS-tille at “Funding the Commons”

    - - - -

    Adding to the list of notable NEAR occurrences during ETHCC, NEAR Foundation CEO, Marieke Flament, was a keynote speaker at the “Funding the Commons” event held at Sorbonne Université on July 15. Marike’s message was one of bringing more ethics and equity to the entire blockchain and Web3 ecosystem.

    - - - -

    In her speech, titled “The Open Web is NEAR: How the BOS, NDC, and DAOs are creating a Decentralized Web,” Marieke explored how NEAR Foundation serves the ecosystem by building public goods like the BOS, DevHub, NDC, DAOs, and more. 

    - - - -

    “Funding the Commons” is an event designed to complement the Ethereum Community Conference, promoting connection amongst participants, and fostering new collaborations and projects. The event organizers also planned a dinner on July 15 at Le Procope Paris, where Marieke was among the most notable invited guests.

    - - - -

    Unpacking Insights: notable talks and events at ETH CC

    - - - -

    Near @ ETHCC wasn’t just a gathering of blockchain enthusiasts, but a hotbed of innovative discussions. Illia Polosukhin, co-founder of NEAR, and Nadir Dabit’s conversation around decentralized social networks piqued particular interest. They hinted at a shift in how we’ll connect and share information in the future and the potential role of decentralized social on the BOS.

    - - - -

    Matt Stephenson, head of crypto economics at crypto investment firm, Pantera Capital, took the audience on a thrilling Day Two journey through the intricacies of behavioral game theory. He showcased how game theory could be leveraged in this space, offering a unique lens to examine, understand, and potentially predict blockchain trends.

    - - - -

    Near @ ETHCC didn’t skimp on forward-looking conversations either. A panel featuring Max Mersch of Fabric Ventures, Maggie Love from SheFi, and Bilal El Alamy of PyratzLabs posed a pertinent question: “What’s the Next Big Use Case Being Built in the Bear Market?” Each speaker provided valuable insight about both challenges and opportunities posed by bear markets.

    - - - -

    Ecosystem Updates

    - - - -

    Despite the focus on the Near @ ETHCC side event itself, the NEAR ecosystem saw significant developments and milestones during the past few days.

    - - - -
      -
    • The NEAR Digital Collective’s I-AM-HUMAN movement has crossed 2,000 members in the NEAR ecosystem. The initiative allows users to vote, elect candidates for office, and shape the future of NEAR. You can sign up here.
    • - - - -
    • MintbaseSearch has gone live on NEAR mainnet along with its own ChatGPT plugin. Mintbase now enables users to ask anything about NFTs on the NEAR Protocol. More details here.
    • - - - -
    • Opolis has raised $6.6M in a bridge fundraising round with support from NEAR Foundation, Polygon Ventures, and Draper Capital. Read more details about the full announcement here.
    • - - - -
    • Black Snow: Battle For Earth, launched its demo version, offering an exciting free-to-play-and-earn experience that aims to enhance the NEAR ecosystem by boosting user count and transactions. Check out the demo here
    • -
    - - - -

    C’est la vie in Paris as ETHCC 2023 wraps up. As we reflect on these dynamic days, it’s clear that the future of NEAR and the BOS is exciting and full of potential. From environmental commitments to bold collaborations and fascinating talks, NEAR’s Parisian journey was full of engagement, enlightenment, and enthusiasm for everyone involved.

    -

    The post NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at ETHCC: Horizon Pitch Contest, BOS Workshops, and More - /blog/near-at-ethcc-horizon-pitch-contest-bos-workshops-and-more/ - - - Sun, 16 Jul 2023 17:49:56 +0000 - - - - - - /?p=20725 - - As Day One at NEAR @ ETHCC concludes, there’s palpable growing excitement for what’s in store for tomorrow. Held at …

    -

    The post NEAR at ETHCC: Horizon Pitch Contest, BOS Workshops, and More appeared first on NEAR Protocol.

    -]]>
    - As Day One at NEAR @ ETHCC concludes, there’s palpable growing excitement for what’s in store for tomorrow. Held at the beautiful Museum National D’Histoire Naturelle in Paris, the first day of workshops and sessions proved to be an exceptional success for Ethereum and BOS builders. 

    - - - -

    Day Two is gearing up to take the experience to a whole new level, with a primary focus on founders and their ventures.

    - - - -

    Morning and Early Afternoon Sessions: Fostering Innovation

    - - - -

    Day Two will kick off with a casual networking opportunity over café au laits and pastries. It’ll be a great way to get warmed up and connect builders, innovators, and visionaries within the NEAR ecosystem.

    - - - -

    The first main event of the day will be a special workshop held  by Matt Stephenson , Head of Cryptoeconomics at Pantera Capita, along with Pantera Principal, Ryan Barney. His insights on the opportunities and challenges within blockchain economics will deepen participants’ understanding of the critical economic principles underpinning blockchain ecosystems.

    - - - -

    As the morning sessions conclude, the afternoon will kick off by delving into the world of interoperability, onboarding, and value generation with Vik Pandey from NEAR Foundation. Vik has been actively involved in the development of the BOS, focusing on interoperability, open-source technologies, and blockchain success efforts. 

    - - - -

    During his session, “Interoperability, Onboarding, and Value Generation with the BOS,” Vik will share insights from his work, highlighting the ways in which the BOS fosters innovation and impact in the Open Web.

    - - - -

    Late Afternoon Highlights: Regulatory Discussions and Horizon Workshop

    - - - -

    Next on the agenda is a panel of experts moderated by Mya Shofany, regulatory lead at NEAR Foundation. The discussion will delve into regulatory considerations in blockchain, and tackle some of the most critical issues facing Web3  founders in the current regulatory landscape.

    - - - -

    The panel will be followed by one of the day’s most anticipated events — the Horizon afternoon. This session will be a deep dive into the cutting-edge ideas poised to redefine the blockchain world, spearheaded by NEAR’s new Web3 accelerator arm.

    - - - -

    As Day Two winds down, participants can enjoy relaxed networking during the Horizon Happy Hour. Here, NEAR and Ethereum enthusiasts can reflect on the day’s learnings, forge new connections, and unwind over drinks and appetizers.

    - - - -

    If you would like to browse the official schedule, head to near.org.ethcc 

    - - - -

    Throughout the two days of NEAR @ ETHCC, participants are not just learning about the Blockchain Operating System (BOS), they’re experiencing it firsthand. Day Two promises a packed schedule of learning, building, and networking opportunities.

    - - - -

    For those who couldn’t join us on Day One, you can catch up on the sessions uploaded on the NEAR Protocol YouTube channel. Prepare for Day Two by soaking up the insights shared by our experts.

    - - - -

    Stay connected with us for more updates and insights from NEAR @ ETHCC as we continue to explore the limitless possibilities of the Blockchain Operating System (BOS).

    -

    The post NEAR at ETHCC: Horizon Pitch Contest, BOS Workshops, and More appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at ETHCC: Step into the Open Web on the BOS - /blog/near-at-ethcc-step-into-the-open-web-on-the-bos/ - - - Tue, 13 Jun 2023 16:00:00 +0000 - - - - /?p=20621 - - NEAR Foundation is excited to announce that NEAR will be returning to ETHCC 2023. The Foundation will be hosting a …

    -

    The post NEAR at ETHCC: Step into the Open Web on the BOS appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce that NEAR will be returning to ETHCC 2023. The Foundation will be hosting a 2-day side event at the Paris tech conference on July 16-17.

    - - - -

    NEAR experts will be on hand at ETHCC to share the latest updates for building apps on the open web  with the BOS  — an industry-first OS that makes it easy to use the tools you already know to build apps that engage users, while fostering an open web untethered from centralized platforms. 

    - - - -

    Also, learn how your project can get funding and other support from NEAR Horizon, the new Web3 startup platform built on the BOS. 

    - - - -

    NEAR at ETHCC — What to expect

    - - - -

    NEAR is hosting a two-day ETHCC side event on July 16-17th, that will feature Technical Workshops (BOS) hosted by Pagoda, a Horizon Pitch Competition, small ETH research group workshops (invite only), and other speaker sessions, keynotes, and panels. You can’t forget about our exclusive networking and happy hours!

    - - - -

    Learn from the best in the NEAR ecosystem about what makes the BOS so revolutionary. Ask your questions. Learn in-person. Make connections!

    - - - -

    Agenda: NEAR at ETHCC

    - - - -

    NEAR’s 2-day ETHCC side event will be located at the Museum National D’Histoire Naturelle: Verniquet

    - - - -

    Day 1: Technical Day 

    - - - -
      -
    • 11am – 12pm: Breakfast bites & Networking – Cafe au laits and pastries
    • - - - -
    • 12-12:30pm: Stateless Validation – Invite Only Research Group 
    • - - - -
    • 12:30-1pm: Token Economics – Invite Only Research Group 
    • - - - -
    • 1-1:30pm: BOS Vision 
    • - - - -
    • 1:30-2pm: BOS for Devs 
    • - - - -
    • 2-2:30pm: BOS Tech Breakdown for Partners 
    • - - - -
    • 2:30-3pm: Simona/ETH Session 
    • - - - -
    • 3pm-4pm: Programming Break, Happy hour guests arrive 
    • - - - -
    • 4pm – 7pm: Happy Hour – Appetizers and drinks 
    • -
    - - - -

    Structure for Day 2: Founders Day 

    - - - -
      -
    • 11am – 12pm: Networking and Co-working: Cafe au laits and pastries
    • - - - -
    • 12pm-12:30pm: Pantera Capital Workshop 
    • - - - -
    • 12:30-1pm: Proximity Workshop 
    • - - - -
    • 1-1:30pm: Simona/ETH Session 
    • - - - -
    • 1:30-2pm: Pitchfest Guests arrive 
    • - - - -
    • 2-4pm: Horizon Pitch Fest 
    • - - - -
    • 4pm – 7pm: Horizon Pitch Competition Happy Hour: Aperol spritz and appetizers
    • -
    - - - -

    NEAR Speakers at ETHCC

    - - - -
      -
    • Illia Polosukhin, CEO of Pagoda, Co-Founder of NEAR
    • - - - -
    • Matt Stephenson, Head of Cryptoeconomics, Pantera Capital
    • - - - -
    • Vy Le, Bain Capital
    • - - - -
    • Kendall Cole, Co-Founder and Director of Proximity
    • - - - -
    • Mya Shofany, Regulatory Lead, NEAR Foundation
    • - - - -
    • Bowen Want, Director of Protocol, Pagoda
    • - - - -
    • And more!
    • -
    - - - -

    Stay updated on the complete slate of confirmed speakers and sessions at Near.org/ETHCC. 

    - - - - - - - - -

    The post NEAR at ETHCC: Step into the Open Web on the BOS appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ethcc/index.html b/public/blog/tag/ethcc/index.html deleted file mode 100644 index 25df09ce7..000000000 --- a/public/blog/tag/ethcc/index.html +++ /dev/null @@ -1,2 +0,0 @@ -ETHCC Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ethdenver/feed/index.xml b/public/blog/tag/ethdenver/feed/index.xml deleted file mode 100644 index 99504fcfc..000000000 --- a/public/blog/tag/ethdenver/feed/index.xml +++ /dev/null @@ -1,561 +0,0 @@ - - - - ETHDenver Archives – NEAR Protocol - - /blog/tag/ethdenver/ - - Fri, 24 Mar 2023 15:41:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - ETHDenver Archives – NEAR Protocol - /blog/tag/ethdenver/ - 32 - 32 - - - Near at ETHDenver Hackathon Bounty Winners - /blog/near-at-ethdenver-hackathon-bounty-winners/ - - - Mon, 13 Mar 2023 18:14:58 +0000 - - - - - - /?p=20300 - - For the 2023 edition of ETHDenver, the Near ecosystem offered a number of bounties across a range of Web3 verticals, …

    -

    The post Near at ETHDenver Hackathon Bounty Winners appeared first on NEAR Protocol.

    -]]>
    - For the 2023 edition of ETHDenver, the Near ecosystem offered a number of bounties across a range of Web3 verticals, including DeFi, Content, Search, Social Media, Interoperability, Smart Contract History, and more. There were 3 main prize pools from Aurora, Proximity, and Developer Governance (DevGov). 

    - - - -

    Congratulations to all Near winners. who received over 30k in USDC! Let’s have a look at the winning projects of the Near at ETHDenver bounties. 

    - - - -

    Aurora Bounty Winners

    - - - -

    Open Aurora Bounty

    - - - -

    Winner – StakingPool Aurora

    - - - -

    Implements a liquid staking protocol around Aurora Plus staking. Users will deposit AURORA and receive a share in $stAUR tokens, which distributes the APY rewards. $stAUR could be immediately converted with a fee or wait for a delayed unstake.

    - - - -

    Runner Up – Geni

    - - - -

    AI-powered specifications generator of security tests for smart contracts.

    - - - -

    Runner Up – Demeter

    - - - -

    A lending platform that offers yield advancements, i.e., self-paying loans. Borrowers’ collateral is invested in RWA protocols, and the yield pays off debt.

    - - - -

    Proximity Bounty Winners

    - - - -

    Deploy a Decentralized Frontend Component

    - - - -

    Winner – BosWrap 

    - - - -

    BosWrap used the Near Blockchain Operating System to build a decentralized widget for wrapping/unwrapping ETH.

    - - - -

    Runner Up – ABI BOS Widget 

    - - - -

    A solidity explorer widget that allow users to explore any smart contract for a given ABI. You can get ABI from Etherscan website.

    - - - -

    Runner Up – Bossed Up

    - - - -

    A project focusing on Ethereum frontends, Blockchain Operating System improvements, and NEAR Social widgets that interact with NEAR contracts.

    - - - -

    Runner Up – Atmosph3re

    - - - -

    A dApp for reducing the homeless crisis in the United States by giving those living on the streets a decentralized identity, mentoring and community support, and funds for spending on their basic needs to help them thrive. 

    - - - -

    Runner Up – EthDenver2023UWCA

    - - - -

    A dApp on NeaR’s new frontend with BOS.GG. Integrates with Rocketpool to offer quick swaps on Ethereum.

    - - - -

    DevGov Bounty Winners

    - - - -

    Extensive Developer Profile Widget

    - - - -

    Winner – Developer Profile

    - - - -

    A recreation of Github profile for NEAR social developers in the Blockchain Operating System. 

    - - - -

    Fuzzy Search Widget / Promoted Posts Banner Widget / Top Posts Widget  / Post History with Diff Widget

    - - - -

    Winner – Near.Social DevGovGigs Improvements 

    - - - -

    A new Developer Governance Gigs interaction experience for Near.Social. Features: 1) Fuzzy Searching that can handle typos, 2) Promote posts and Promoted Post viewer, 3) Hottest Posts viewer, and 4), Post editing history viewer.

    - - - -

    Near.Social Bots Coded in Javascript

    - - - -

    Winner – JS Bot Widget

    - - - -

    Verifiable RPC Replies

    - - - -

    Winner – Near Verifiable RPC Endpoints for Viewing Access Keys

    - - - -

    Adds proof generation support to RPC read access key endpoints on the NEAR protocol to help pave the road for light client support. 

    -

    The post Near at ETHDenver Hackathon Bounty Winners appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Near at ETHDenver: the Blockchain Operating System, Near Day, and More - /blog/near-at-ethdenver-the-blockchain-operating-system-near-day-and-more/ - - - Wed, 08 Mar 2023 21:30:00 +0000 - - - - - /?p=20288 - - Missed Near Day and ETHDenver 2023? We’ve got you covered with content from Near talks and panels. There were also …

    -

    The post Near at ETHDenver: the Blockchain Operating System, Near Day, and More appeared first on NEAR Protocol.

    -]]>
    - Missed Near Day and ETHDenver 2023? We’ve got you covered with content from Near talks and panels. There were also a number of awesome announcements, including the big news out of ETHDenver — the Blockchain Operating System.

    - - - -

    Let’s take a look at all that was Near at ETHDenver. 

    - - - -

    Near Day talks

    - - - -
    Near co-founder and Pagoda CEO Illia Polosukhin unveiling the Blockchain Operating System.
    - - - -

    Near Day, the 1-day mini summit on all things Near, was jam-packed with the latest technological and protocol updates. Chief among them was the announcement of the Blockchain Operating System.

    - - - -

    Things got started with a Regenerative Finance (ReFI) talk from Open Forest Protocol’s Frederic Fournier and Flow Carbon’s Phil Fogel. Later in the morning programme, OnMachina’s Polina Aladina and Mark Collier talked about building decentralized storage on Near. As a vital Near ecosystem project, it was great for the ETHDenver crowd to hear from OnMachina on Web3 storage. 

    - - - -
    OnMachina’s Mark Collier talking decentralized storage on Near.
    - - - -

    Keypom, which also recently launched on Near, got some much needed visibility at Near Day. In “Instant Crypto Experiences with Keypom”,  Ben Kurrek and Matt Lockyer took the audience on a tour of their Web3 onboarding solution, in which users are given a special type of access key that can be used to experience a crypto application and later be turned into a wallet. (Read more about Keypom here.)

    - - - -

    The morning programme also featured talks from Calimero Network’s Sandi Fatic on privacy and scaling with private sharding; Aurora Labs’ Alex Shevchenko on Containers, Aurora’s cloud computing solution for blockchains; Sweat Economy’s Oleg Fomenko on how to effectively onboard people from Web2 to Web3; and Near co-founder Alex Skidanov on how the future of AI will be decentralized. 

    - - - -

    In the afternoon, there were a range of talks, starting with Pagoda’s Max Zavershynskyi presentation on creating “high velocity developer communities” via Near DevGov DAO. But the big news on Near Day was the Blockchain Operating System talk from Near co-founder Illia Polosukhin. After Illia primed the audience, Pagoda’s Chief Product Officer Alex Chiocchi elaborated on how Blockchain Operating System will help in onboarding millions of users to Near, while Pagoda’s Bowen Wang detailed the protocol innovations powering the Blockchain Operating System. 

    - - - -
    Marieke Flament on the ETHDenver main stage for the ‘Crypto Winter, Bullish Builders’ panel.
    - - - -

    Near Foundation CEO Marieke Flament and Dragonfly Capital’s Haseeb Qureshi also talked about why the future remains bright for Web3 even during the crypto winter. There were also talks from Pagoda’s Pavel Kudinov on the Near data stack and Josh Ford on a fully decentralized Javascript. 

    - - - -

    Other topics included the building of infrastructure to onboard 1 billion users on Near, NFT infrastructure, a “DeFi survival kit” for the bear market, and the regulatory landscape in Web3.

    - - - -

    Near speakers at ETHDenver 

    - - - -
    Pagoda’s Bowen Wang discussing Near’s vision for Layer 1 infrastructure.
    - - - -

    A number of speakers represented the Near ecosystem at ETHDenver talks. Topics included the Blockchain Operating System, sustainability, UX design, and more. 

    - - - -

    Aurora Labs’ Alex Shevchenko kicked things off with a presentation on Web3 infrastructure and scalability — specifically, how not to hack everything up in creating bridges. Alex also gave another talk on next generation user experience. Near Foundation CEO Marieke Flament delivered a talk on the three pillars of Web3 sustainability, while Proximity Labs’ Kendall Cole explored how Web3 can win in the DeFi battle against app stores. 

    - - - -
    Aurora Labs CEO Alex Shevchenko delivering a talk at ETHDenver.
    - - - -

    In separate talks, Illia Polosukhin and Pagoda’s Bowen Wang spoke to the ETHDenver audience about the Blockchain Operating System. While Bowen mapped out Near’s vision for Layer 1 Infrastructure, Illia talked about reinventing Web3 development with decentralized frontends and social networking. 

    - - - -

    Near Announcements

    - - - -

    While the Near is the Blockchain Operating System announcement was the talk of ETHDenver, there were plenty of other announcements. Find the full run-down of Near ecosystem announcements here.

    - - - -

    In other news, the Near ecosystem had two wins at ETHVC’s Startup Demo Day during ETHDenver — Niche Protocol, a Web3 social media platform, and Kino, a film financing platform.  

    -

    The post Near at ETHDenver: the Blockchain Operating System, Near Day, and More appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Near at ETHDenver Highlights  - /blog/near-at-ethdenver-highlights/ - - - Thu, 02 Mar 2023 16:00:30 +0000 - - - - - /?p=20239 - - Near will see a number of partnership and project announcements at Near Day and ETHDenver. Over a 1,000 people are attending …

    -

    The post Near at ETHDenver Highlights  appeared first on NEAR Protocol.

    -]]>
    - Near will see a number of partnership and project announcements at Near Day and ETHDenver. Over a 1,000 people are attending Near Day, with many more visiting the Near booth and dropping in on ETHDenver talks and panels featuring Near ecosystem figures. Beyond the many engaging talks and projects demos, there was also an ecosystem party, side events, a hackathon, and much more. 

    - - - -

    Let’s take a quick look at a few of the latest announcements from Near at ETHDenver. 

    - - - -

    A number of other announcements will be rolling out over the course of Near Day and ETHDenver, so stay tuned for those below in the coming days.

    - - - -

    Few and Far raises $10.5 million in funding

    - - - -

    Few and Far, a leading Digital Collectibles web3 platform, announced today that it has raised $10.5 million in a funding round led by Pantera Capital, the leading blockchain investment firm.The raise marks a significant milestone for Few and Far, which has been experiencing exponential growth since launch. 

    - - - -

    The new funds will help expand the platform’s capabilities, enhance user experience, and increase the number of Web3 developers. IP owners also stand to benefit from the platform. Few and Far features an all-inclusive platform available to carry out everything related to next generation digital collectibles, including a suite of developer tools. 

    - - - -

    The round also included top VCs, Cypher Capital, Huobi Ventures, Hypersphere, Metaweb, Mantis Partners, K5 Global and many more. 

    - - - -

    Near Blockchain Operating System now live on Alpha.Near.Org

    - - - -

    Read the full Near Blockchain Operating System announcement here

    - - - -

    For Near Day on March 2nd, Near launched alpha.nearpages.wpengine.com — a composable frontend for Web3. It will allow end users to easily and frictionlessly discover all of Web3’s possibilities in one seamless experience. It will also empower developers to create and code interfaces in a single environment with the ability to fork a host of components to build apps faster and more efficiently than ever before.

    - - - -

    Anyone in the Open Web ecosystem can create their own frontends (i.e., their own versions of alpha.nearpages.wpengine.com), compatible with the blockchain of their choice. This means that builders from any ecosystem can create components in just a few lines of code, and take advantage of fast onboarding to help make new and custom Web3 experiences.

    - - - -

    This is an industry first. With the addition of composable frontends to the tech stack, Near now becomes the Blockchain Operating System, allowing seamless, one-time onboarding and removing friction points like making accounts for every experience, while supercharging development from a collection of over 1,800 components. 

    - - - -

    Alpha.nearpages.wpengine.com is the first step in Near’s Blockchain Operating System journey. It’s the Alpha version, where builders can see the frontend come to life. 

    - - - -

    Try out the Alpha at alpha.nearpages.wpengine.com to experience the world’s first Blockchain Operating System — a revolutionary moment in Web3. If you’re a developer, see how easy it is to fork components and create new experiences. If you’re an end user, see how easy it is to explore Web3 experiences, social, and news all in one place. 

    - - - -

    The Blockchain Operating System is Near and it’s here. #NearistheBOS

    - - - -

    Flow Carbon announces carbon-market ecosystem built on Near

    - - - -

    Near and Flowcarbon, the pioneering climate technology company, announced the launch of a carbon-market ecosystem that will enable carbon credits to be traded on the Near network through Flowcarbon’s tokenized carbon credits. With this collaboration, Near will realize its vision of becoming a carbon-negative blockchain. As part of this partnership, Near plans to offset its carbon footprint through Flowcarbon.

    - - - -

    Flow Carbon’s carbon credit token will be launched on both Near and Aurora, an Ethereum Virtual Machine (EVM) built on Near. Validators will be set up for the purpose of offsetting, and large Near holders will be able to stake with these validators.

    - - - -

    Designed to make carbon offsetting more accessible and transparent, this partnership will help Near become carbon-negative, solidifying Near’s position as one of the top players in Regenerative Finance (ReFi). 

    - - - -

    With Stacksports, parents and athletes can mint royalty-free NFTs

    - - - -

    StackNFT is teaming up with Near to offer an NFT platform that allows youth athletes of all ages and skill levels to create and capture their favorite sports memories digitally. 

    - - - -

    Youth sports parents and athletes can now mint royalty-free NFTs effortlessly, without any advanced knowledge of the minting or wallet creation process. Just upload, decorate, and mint. Parents and athletes can also mint NFTs knowing that Near is a carbon-neutral, environmentally friendly blockchain, which supports several forest protection and restoration projects.

    - - - -

    StackNFT is owned and operated by Stack Sports, a global technology leader in SaaS platform offerings for the sports industry, with nearly 50 million users in 35 countries. From little league to the pros, Stack Sports powers the many moments that create the story of your journey through sports.

    - - - -

    Calimero’s private shard infrastructure now live on Near

    - - - -

    Calimero.network, a secure private shard infrastructure provider announced that after several months running in a stealth mode, during which it was tested by beta testers and partners, is ready to serve customers with unique blockchain power and a Web2 interface.

    - - - -

    With roots in the Near Protocol, Calimero is a high performance blockchain that launched on mainnet in 2020. Founded by Sandi Fatic and Mario Halambek, two of the first infrastructure engineers at Near, Calimero allows projects to launch their own shard in a matter of minutes. In launching a private shard, users can be certain of the network’s performance and security, which is managed by Calimero itself.

    - - - -

    Calimero is targeting so-called “Web2.5”, seeking a way to connect Web3 and Web2 worlds. For Web3 startups, Calimero provides a unique way to scale their products and leverage the privacy features, giving access to target Enterprise customers and getting access to new audiences. For classic Enterprises, Calimero offers a way to build new products and onboard chosen Web3 mechanics to find new areas to grow their businesses with growth rates compared to DeFi and NFT markets.

    - - - -

    With the cheapest option starting from less than $300, Calimero provides a flexible model to maximize the cost efficiency by adjusting shard performance according to the load. Calimero also offers a 14-day grace period to test out the platform for startups who are in the very beginning of their journey. 

    - - - -

    Calimero.network is a London-based startup that has recently raised an investment round of $8.5M, co-led by Khosla Ventures, Lyrik Ventures, and Near foundation. 

    - - - -

    Near Foundation Council updates

    - - - -

    Near Foundation announced that Mona El Isa, a founding council member at Near Foundation Council (NFC), has been appointed as Chair.  Marieke Flament, CEO of Near Foundation, has joined as a council member, and will govern alongside existing members Richard Muirhead, Chairman and Managing Partner at Fabric Ventures, and Jason Warner, Managing Director at Redpoint Ventures as well as Sheila Warren advisor to Near Foundation and  CEO of the Crypto Council for Innovation. 

    - - - -

    Mona takes the place of Illia Polosukhin, co-founder of Near Protocol and CEO of Pagoda (formerly Near Inc.), who has stepped down as Chair and member of the  Near Foundation Council (NFC) to focus on Web3 ecosystem development and participation.  

    - - - -

    “It was an honor to serve as Chair and Council Member of the NEAR Foundation Council over the past two years,” said Illia Polosukhin. “I’m stepping down in order to focus fully on the development of products and technology at Pagoda, which is critical to the continuing success of the NEAR Ecosystem.”

    - - - -

    “I will continue to be involved with NFC in my capacity as Pagoda CEO,” he added. “From a governance perspective, my departure increases the council’s independence and further decentralizes leadership and decision-making in the NEAR Ecosystem. I welcome Mona’s appointment as the new Chair and Marieke’s as council member to continue steering the Foundation in its mission of supporting NEAR’s growth.”

    -

    The post Near at ETHDenver Highlights  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Day at ETHDenver: Ethereum Without Limits - /blog/near-day-at-ethdenver-ethereum-without-limits/ - - - Fri, 20 Jan 2023 17:00:00 +0000 - - - - /?p=19730 - - ETHDenver is once again upon us. NEAR will be there with a full schedule of talks, panels, bounties, after parties, …

    -

    The post NEAR Day at ETHDenver: Ethereum Without Limits appeared first on NEAR Protocol.

    -]]>
    - ETHDenver is once again upon us. NEAR will be there with a full schedule of talks, panels, bounties, after parties, and more, exploring why NEAR is the place where mainstream adoption of the Open Web will happen. 

    - - - -

    NEAR makes building and innovating on Web3 simple, secure, and scalable — all well before “The Merge”. Soon, anyone in the world—devs, founders, creators, and app users — will be able to create without limits. Join us on March 2nd for NEAR Day at ETHDenver — a 1-day mini summit on all things NEAR. From March 3rd to March 5th, join NEAR at ETHDenver for the Main Event and Hackathon.

    - - - -

    Registering for NEAR Day is free. Sign up for a spot via the link below to meet people from the NEAR community and join the hackathon! To join NEAR Day at ETHDenver, you will also need an ETHDenver pass.

    - - - -

    Why NEAR @ ETH Denver? 

    - - - -

    With the Aurora EVM and Rainbow Bridge, the NEAR ecosystem is basically “Ethereum without limits”. While NEAR will be in attendance to help foster a decentralized multi-chain future, NEAR is showcasing why it’s the platform of choice for Web3 builders and onboarding the masses into the Open Web.

    - - - -

    Register for NEAR Day at ETHDenver

    - - - -

    Builders, creators, and entrepreneurs will find us at NEAR Day, a 1-day mini summit on ETHDenver’s Main Stage of the National Western Complex on March 2nd. From March 3rd – March 5th, find the NEAR ecosystem booth during ETHDenver and mingle with NEAR Devs, Community members, and others from the ecosystem.

    - - - -

    To participate at NEAR Day, all you need to do is register via the link below and have an ETHDenver pass. ETHDenver is a free event. Register now to secure your spot and find out why NEAR is the easiest, most accessible, and scalable blockchain in Web3. Stay tuned for more details!

    - - - - - - - -

    For the full schedule and information about NEAR Day at ETHDenver  as well as #BUIDLWEEK and Main Event, please visit our event page. Check out ETHDenver’s full schedule to learn more about featured NEAR sessions and more. 

    - - - -

    Join the Hackathon

    - - - -

    Join ETHDenver’s Hackathon and build on NEAR. Members of NEAR Foundation, Aurora, and other projects will be on-site to help onboard devs, creators, and entrepreneurs into NEAR and advise on building dApps. 

    - - - -

    Building on NEAR is easy and fun, and you’ll instantly be part of a vibrant and supportive community. Let’s get you started!

    - - - - - - - -

    Notable Speakers at NEAR Day and ETHDenver

    - - - -

    Catch a number of exciting NEAR speakers and sessions at NEAR Day and ETHDenver. The final list of participants and sessions is still being solidified. However, we do have some speakers to highlight. 

    - - - -
      -
    • Illia Polusukhin – NEAR Co-founder, CEO of NEAR
    • - - - -
    • Marieke Flament – CEO of NEAR Foundation
    • - - - -
    • Alex Shevchenko – CEO of Aurora Labs
    • - - - -
    • Alex Skidanov – NEAR Co-founder
    • - - - -
    • Polina Aladina – OnMachina Co-Founder
    • -
    - - - -

    Learn about our other speakers at the NEAR Day event page.

    -

    The post NEAR Day at ETHDenver: Ethereum Without Limits appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ethdenver/index.html b/public/blog/tag/ethdenver/index.html deleted file mode 100644 index 46e6710f3..000000000 --- a/public/blog/tag/ethdenver/index.html +++ /dev/null @@ -1,2 +0,0 @@ -ETHDenver Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/ethereum-climate-alliance/feed/index.xml b/public/blog/tag/ethereum-climate-alliance/feed/index.xml deleted file mode 100644 index 957d97171..000000000 --- a/public/blog/tag/ethereum-climate-alliance/feed/index.xml +++ /dev/null @@ -1,122 +0,0 @@ - - - - Ethereum Climate Alliance Archives – NEAR Protocol - - /blog/tag/ethereum-climate-alliance/ - - Mon, 17 Jul 2023 20:22:39 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Ethereum Climate Alliance Archives – NEAR Protocol - /blog/tag/ethereum-climate-alliance/ - 32 - 32 - - - NEAR Foundation Signs Up to the Ethereum Climate Platform  - /blog/near-foundation-signs-up-to-the-ethereum-climate-platform/ - - - Mon, 17 Jul 2023 14:00:00 +0000 - - - - - /?p=20728 - - NEAR Foundation is thrilled to announce that it is signed up to the Ethereum Climate Platform. The Foundation has worked …

    -

    The post NEAR Foundation Signs Up to the Ethereum Climate Platform  appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is thrilled to announce that it is signed up to the Ethereum Climate Platform. The Foundation has worked on making the NEAR Protocol and open web sustainable from the get-go, and this move is a major demonstration of that continued commitment to Web3 sustainability. 

    - - - -

    The announcement also illustrates NEAR Foundation’s efforts at working collaboratively with globally recognized leaders to minimize the environmental impact of Web3 development. 

    - - - -

    Ethereum Climate Platform: accelerating climate finance at scale

    - - - -

    At COP27, ConsenSys and climate tech firm Allinfra convened and announced the Ethereum Climate Alliance. A group of technology companies, the ECA is aligned around the mission to accelerate decarbonization and scale climate action. It achieves this by deploying best-in-class technology and funding the development of digital environmental assets designed to mitigate greenhouse gas emissions and deliver positive environmental and social impact well into the future.

    - - - -

    Inspired by the Ethereum Merge, ECA is launching the Ethereum Climate Platform (ECP) — an initiative designed to collaboratively build a blockchain-based technology platform that will engage a decentralized community to accelerate climate finance at scale. The ECP is committed to redress and counteract the historical Ethereum-based carbon footprint, dating back to the network’s launch in 2015, as well as to accelerate the launch partners’ own decarbonization strategies.

    - - - -

    NEAR as a sustainability model for ECP and beyond

    - - - -

    By joining the ECP, NEAR Foundation is making clear its intention to act as a sustainability model to the broader tech and business community.  

    - - - -

    The collective includes a still-growing list of prominent stakeholders from the Web3 ecosystems, including Laser Digital (Nomura), Microsoft, Polygon, The Climate Collective, Celo, Aave, Filecoin, and UPC Capital Ventures. Beyond open web ecosystem, the ECP also includes civil society leaders who are committed to mitigating human-driven climate change.

    - - - -

    NEAR Foundation’s environmental stewardship is an integral part of its ethos. From inception, NEAR has focused on a computational alternative to PoW. 

    - - - -

    In this system, known as Proof-of-Stake (PoS), there are no miners. Instead, validators stake a given token amount to allow themselves to take part. PoS blockchains incentivize communities to own and control the network. Only then can they validate blocks and collect a block award. Functionally, NEAR’s PoS, called Nightshade, allows the platform to realize its ambition of being simple, scalable, and secure. 

    - - - -

    NEAR sustainability a cornerstone to mass Web3 adoption

    - - - -

    From the outset, NEAR Foundation has been dedicated to bringing a billion users into a more open web, said NEAR Foundation CEO, Marieke Flament. 

    - - - -

    “We recognised early on that sustainability would be a cornerstone of our approach to facilitating the widespread adoption of Web3 technologies,” Flament added. “By aligning with the Ethereum Climate Platform and implementing our Blockchain Operating System (BOS), we’re not just enhancing the user experience — we’re creating a paradigm shift in the blockchain industry that respects and supports our global environment.”

    - - - -

    On a social and ecological level, NEAR’s Nightshade sharding approach allows NEAR Foundation to deliver on its carbon-neutral commitment. In 2021, NEAR Protocol was awarded the Climate Neutral Product Label, and its developers have been leading the charge in this era of extraordinary energy efficiency, creating an infrastructure that is lightning-fast, remarkably secure, and capable of accommodating millions of Web3 users.

    - - - -

    NEAR Protocol achieved this after enlisting South Pole, a globally recognized climate solutions provider based in Zurich, Switzerland, to evaluate NEAR’s carbon footprint, find ways to reduce it, and counterbalance the remaining emissions with CO2 offsetting initiatives. The assessment revealed that NEAR Protocol was over 200,000 times more carbon efficient than Bitcoin, primarily due to the adoption of PoS over PoW.

    - - - -

    Reforestation projects offset the minimal environmental impact of NEAR, rendering the NEAR Blockchain carbon neutral. Performing transactions on NEAR contributes to tree-planting initiatives in Colombia, Zimbabwe, and the United States via these carbon-offsetting projects.

    - - - -

    “Having NEAR Foundation onboard this endeavor strengthens our joint mission significantly,” said Bill Kentrup, Executive Director of ECA. “Through persistent collective effort, we can bring to market climate finance tools that will accelate capital into climate-aligned assets and in turn,  significantly mitigate greenhouse gasses.” 

    - - - -

    “As a fellow pioneer in the Web3 space, their participation is invaluable,” said Kentrup, “and we’re sincerely excited about the potential this partnership holds for the future.”

    -

    The post NEAR Foundation Signs Up to the Ethereum Climate Platform  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ethereum-climate-alliance/index.html b/public/blog/tag/ethereum-climate-alliance/index.html deleted file mode 100644 index 02971c5fb..000000000 --- a/public/blog/tag/ethereum-climate-alliance/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ethereum Climate Alliance Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ethereum-climate-platform/feed/index.xml b/public/blog/tag/ethereum-climate-platform/feed/index.xml deleted file mode 100644 index 7a087ffe3..000000000 --- a/public/blog/tag/ethereum-climate-platform/feed/index.xml +++ /dev/null @@ -1,122 +0,0 @@ - - - - Ethereum Climate Platform Archives – NEAR Protocol - - /blog/tag/ethereum-climate-platform/ - - Mon, 17 Jul 2023 20:22:39 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Ethereum Climate Platform Archives – NEAR Protocol - /blog/tag/ethereum-climate-platform/ - 32 - 32 - - - NEAR Foundation Signs Up to the Ethereum Climate Platform  - /blog/near-foundation-signs-up-to-the-ethereum-climate-platform/ - - - Mon, 17 Jul 2023 14:00:00 +0000 - - - - - /?p=20728 - - NEAR Foundation is thrilled to announce that it is signed up to the Ethereum Climate Platform. The Foundation has worked …

    -

    The post NEAR Foundation Signs Up to the Ethereum Climate Platform  appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is thrilled to announce that it is signed up to the Ethereum Climate Platform. The Foundation has worked on making the NEAR Protocol and open web sustainable from the get-go, and this move is a major demonstration of that continued commitment to Web3 sustainability. 

    - - - -

    The announcement also illustrates NEAR Foundation’s efforts at working collaboratively with globally recognized leaders to minimize the environmental impact of Web3 development. 

    - - - -

    Ethereum Climate Platform: accelerating climate finance at scale

    - - - -

    At COP27, ConsenSys and climate tech firm Allinfra convened and announced the Ethereum Climate Alliance. A group of technology companies, the ECA is aligned around the mission to accelerate decarbonization and scale climate action. It achieves this by deploying best-in-class technology and funding the development of digital environmental assets designed to mitigate greenhouse gas emissions and deliver positive environmental and social impact well into the future.

    - - - -

    Inspired by the Ethereum Merge, ECA is launching the Ethereum Climate Platform (ECP) — an initiative designed to collaboratively build a blockchain-based technology platform that will engage a decentralized community to accelerate climate finance at scale. The ECP is committed to redress and counteract the historical Ethereum-based carbon footprint, dating back to the network’s launch in 2015, as well as to accelerate the launch partners’ own decarbonization strategies.

    - - - -

    NEAR as a sustainability model for ECP and beyond

    - - - -

    By joining the ECP, NEAR Foundation is making clear its intention to act as a sustainability model to the broader tech and business community.  

    - - - -

    The collective includes a still-growing list of prominent stakeholders from the Web3 ecosystems, including Laser Digital (Nomura), Microsoft, Polygon, The Climate Collective, Celo, Aave, Filecoin, and UPC Capital Ventures. Beyond open web ecosystem, the ECP also includes civil society leaders who are committed to mitigating human-driven climate change.

    - - - -

    NEAR Foundation’s environmental stewardship is an integral part of its ethos. From inception, NEAR has focused on a computational alternative to PoW. 

    - - - -

    In this system, known as Proof-of-Stake (PoS), there are no miners. Instead, validators stake a given token amount to allow themselves to take part. PoS blockchains incentivize communities to own and control the network. Only then can they validate blocks and collect a block award. Functionally, NEAR’s PoS, called Nightshade, allows the platform to realize its ambition of being simple, scalable, and secure. 

    - - - -

    NEAR sustainability a cornerstone to mass Web3 adoption

    - - - -

    From the outset, NEAR Foundation has been dedicated to bringing a billion users into a more open web, said NEAR Foundation CEO, Marieke Flament. 

    - - - -

    “We recognised early on that sustainability would be a cornerstone of our approach to facilitating the widespread adoption of Web3 technologies,” Flament added. “By aligning with the Ethereum Climate Platform and implementing our Blockchain Operating System (BOS), we’re not just enhancing the user experience — we’re creating a paradigm shift in the blockchain industry that respects and supports our global environment.”

    - - - -

    On a social and ecological level, NEAR’s Nightshade sharding approach allows NEAR Foundation to deliver on its carbon-neutral commitment. In 2021, NEAR Protocol was awarded the Climate Neutral Product Label, and its developers have been leading the charge in this era of extraordinary energy efficiency, creating an infrastructure that is lightning-fast, remarkably secure, and capable of accommodating millions of Web3 users.

    - - - -

    NEAR Protocol achieved this after enlisting South Pole, a globally recognized climate solutions provider based in Zurich, Switzerland, to evaluate NEAR’s carbon footprint, find ways to reduce it, and counterbalance the remaining emissions with CO2 offsetting initiatives. The assessment revealed that NEAR Protocol was over 200,000 times more carbon efficient than Bitcoin, primarily due to the adoption of PoS over PoW.

    - - - -

    Reforestation projects offset the minimal environmental impact of NEAR, rendering the NEAR Blockchain carbon neutral. Performing transactions on NEAR contributes to tree-planting initiatives in Colombia, Zimbabwe, and the United States via these carbon-offsetting projects.

    - - - -

    “Having NEAR Foundation onboard this endeavor strengthens our joint mission significantly,” said Bill Kentrup, Executive Director of ECA. “Through persistent collective effort, we can bring to market climate finance tools that will accelate capital into climate-aligned assets and in turn,  significantly mitigate greenhouse gasses.” 

    - - - -

    “As a fellow pioneer in the Web3 space, their participation is invaluable,” said Kentrup, “and we’re sincerely excited about the potential this partnership holds for the future.”

    -

    The post NEAR Foundation Signs Up to the Ethereum Climate Platform  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ethereum-climate-platform/index.html b/public/blog/tag/ethereum-climate-platform/index.html deleted file mode 100644 index 531e5b4b2..000000000 --- a/public/blog/tag/ethereum-climate-platform/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ethereum Climate Platform Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ethereum-rollups/feed/index.xml b/public/blog/tag/ethereum-rollups/feed/index.xml deleted file mode 100644 index f39d719ff..000000000 --- a/public/blog/tag/ethereum-rollups/feed/index.xml +++ /dev/null @@ -1,231 +0,0 @@ - - - - Ethereum Rollups Archives – NEAR Protocol - - /blog/tag/ethereum-rollups/ - - Fri, 26 Jan 2024 16:28:31 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Ethereum Rollups Archives – NEAR Protocol - /blog/tag/ethereum-rollups/ - 32 - 32 - - - Why NEAR Data Availability? - /blog/why-near-data-availability/ - - - Fri, 26 Jan 2024 16:28:31 +0000 - - - - - - /?p=21194 - - NEAR Protocol is built to onboard 1B+ users to Web3. Since its mainnet launch in October 2020, NEAR Protocol has …

    -

    The post Why NEAR Data Availability? appeared first on NEAR Protocol.

    -]]>
    - NEAR Protocol is built to onboard 1B+ users to Web3. Since its mainnet launch in October 2020, NEAR Protocol has achieved 100% uptime with 4 shards and has onboarded 35M accounts, of which 16M are monthly active accounts.

    - - - -

    Supporting the most users of any network in Web3 requires a scalable blockchain that is capable of having both high data availability and low-cost data posting in order for applications to scale to the level of mainstream global adoption. This post will explain NEAR’s technical approach to data availability and how NEAR DA, a solution designed for Ethereum rollups, will scale the modular ecosystem and defragment all of Web3.

    - - - -

    The modular Ethereum ecosystem seeks to scale the network by separating the functions of a blockchain––settlement, execution, and data availability––into separate layers. The Ethereum layer-one simply could not scale to accommodate the level of demand it reached, particularly during bull markets, without prohibitively high transaction fees. This demand becomes even more problematic when users want to do swaps on Ethereum or post transaction data for layer-twos to the layer-one network. 

    - - - -

    NEAR DA offers a solution to this scalability roadblock. With a simple architecture that is easy to implement and constantly improving efficiency, and thanks to NEAR having the cheapest transaction fees of any network in Web3, NEAR DA is an incredibly fast and cost-effective data availability option. Depending on the gas fees, NEAR DA is up to 85,000x cheaper than posting blob submissions on Ethereum and 30x cheaper than doing the same on Celestia. 

    - - - -
    - - - -

    NEAR DA and the Chain Abstraction Vision

    - - - -

    The NEAR ecosystem’s focus for 2024 is expanding chain abstraction across more chains & ecosystems, with the goal of abstracting the blockchain away from the user & developer experience. While the modular Ethereum ecosystem has made Ethereum more scalable in some ways, it’s also resulted in a lot of incompatible infrastructure and fractured liquidity that places a huge burden on app builders and end users to manage. The chain abstraction vision is that apps should just work with all chains, onboarding should be seamless, and things like gas fees and bridging should become invisible to end users. 

    - - - -

    Data availability and NEAR DA play an important role in chain abstraction. As zero-knowledge technology enables unification of security across chains via state proofs, as described in the chain abstraction deep dive post linked above, settlement data will be easier to fetch from different networks. As dapps become truly multichain thanks to account aggregation and decentralized frontends, they can query data from multiple chains more easily when data is all posted in one place. Doing so on NEAR will be much cheaper for rollups.

    - - - -

    How is NEAR DA Implemented?

    - - - -

    NEAR DA leverages an important part of NEAR’s consensus mechanism, known as Nightshade, which parallelizes the network into multiple shards (essentially, multiple parallel blockchains). Each shard on NEAR produces a small portion of a block, which is called a chunk. These chunks are aggregated to produce blocks. All of this happens entirely at the protocol level and so is invisible to users and developers.

    - - - -

    NEAR DA uses this infrastructure to an ETH rollup’s benefit. When a chunk producer processes a receipt, there is consensus around the receipt. However, once the chunk has been processed and included in the block, the receipt is no longer required for consensus and can be pruned from the blockchain’s state. The pruning time is at least 3 NEAR epochs, where each epoch is 12 hours. In practice, this is usually around 5 NEAR epochs, so data is available in the network for around 60 hours. Once the receipt is pruned, it is the responsibility of archival nodes to retain the transaction data. 

    - - - -

    This means that NEAR doesn’t slow down its consensus with more data than it requires, yet any user of NEAR DA would have ample time to query transaction data. The advantage this architecture provides to rollups is cost-effective data availability, especially to those with high transaction volume, such as gaming chains. 

    - - - -

    NEAR DA provides an out-of-the-box solution for developers, making it easy for rollup builders to make the most of NEAR’s infrastructure––which has 3+ years of proven reliability behind it. The Pagoda engineering team has already built three important components that are open-source and ready to be integrated into any OP Stack, Polygon CDK, or Arbitrum Nitro rollups:

    - - - -
      -
    • The Blob Store Contract: A contract that stores arbitrary data.
    • - - - -
    • Light Client: A trustless off-chain client that provides easy access to transaction and receipt data.
    • - - - -
    • RPC Client: A client to publish data blobs to the NEAR Protocol.
    • -
    - - - -

    Rollup builders looking to work with a cloud-like service could also leverage NEAR DA’s rollup-as-a-service (RaaS) providers (list provided here), in order to utilize these three components all in one place in a more abstracted manner. 

    - - - -

    What’s next? The Future of NEAR DA and Data Availability Sharding

    - - - -

    Another advantage NEAR’s sharding approach offers to users of NEAR DA is the future scaling roadmap. The NEAR Protocol Engineering team recently announced the move towards stateless validation, the next phase of sharding. This will further decrease the hardware requirements of certain types of validators (chunk validators) and move the state into memory, which will allow for more shards and increase the decentralization in the system by lowering the requirements to become a validator in the system. 

    - - - -

    This means that the number of shards will increase, greatly increasing the overall throughput of the NEAR Protocol. While NEAR is already fast, with 4 MB/s per shard with 4 shards, scaling towards n shards means that rollups, applications, and any other project or developer using NEAR will not have to compete for blockspace. This is a major contrast to the scaling limits of both monolithic systems as well as the modular ETH ecosystem and offers a substantial future-proof for anyone building on NEAR, including users of NEAR DA.

    - - - -

    As the NEAR Protocol starts increasing the number of shards to n, the amount of data that has to be stored for a single shard decreases. Eventually, in theory every account on NEAR Protocol could potentially become its own shard. This allows running very light RPC nodes that would only track the shard that a given user is interested in. 

    - - - -

    For L2s that use NEAR DA, this would mean running an in-memory RPC client that would only track the shard that your data blob contract is in for your retention period (for fraud proofs), or for a given interval of time (retention is configurable on the RPC nodes). Instead of relying on data availability sampling (DAS), a rollup can rely on its own shard by running a lightweight RPC through Data Availability with Sharding. The additional benefit here is that the RPC is also applying the chunks they are tracking, essentially acting as a validator without participating in the consensus, as opposed to statistical confidence with DAS. 

    - - - -

    While Data Availability Sharding remains in the research phase of development, it shows the major advantages the NEAR Protocol design offers to many kinds of builders and ecosystems. As the Web3 space pursues mainstream adoption, the scalability hurdles of the first ten years of Ethereum will seem minor, and it is not clear that modularity alone will solve the problem. The NEAR ecosystem’s goal of mainstream adoption of Web3 means the network is available for all builders to use for creating great applications and delivering the next generation of the internet.

    - - - -

    Fast, Cost-Effective DA is NEAR

    - - - -

    As Web3 adoption grows and as the number of rollups continues to climb, the need to scale the modular scalability solutions becomes greater. NEAR offers its innovative, reliable technology as a data availability solution for rollups that can save time and money while future-proofing projects for an increasingly multichain (and cross-chain) future. The bleeding-edge research driving the future development of NEAR DA will provide rollups with even more advantages over time. Interconnecting and defragmenting Web3 via chain abstraction will be a major theme of 2024 and utilizing NEAR DA puts rollups at the forefront of this evolution.

    - - - -

    -

    The post Why NEAR Data Availability? appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Arbitrum Integrates NEAR DA for Developers Building Ethereum Rollups  - /blog/arbitrum-integrates-near-da-for-developers-building-ethereum-rollups/ - - - Thu, 21 Dec 2023 15:00:00 +0000 - - - - /?p=21140 - - The NEAR Data Availability layer (NEAR DA) was one of the most exciting announcements to come out of NEARCON ‘23. …

    -

    The post Arbitrum Integrates NEAR DA for Developers Building Ethereum Rollups  appeared first on NEAR Protocol.

    -]]>
    - The NEAR Data Availability layer (NEAR DA) was one of the most exciting announcements to come out of NEARCON ‘23. Unveiled by NEAR Protocol co-founder and new NEAR Foundation CEO, Illia Polosukhin, NEAR DA is a highly efficient and robust data availability layer, designed to help Ethereum rollup builders simplify their network and lower costs, while ensuring they can scale like the NEAR Protocol.

    - - - -

    The latest technical integration for NEAR DA’s efficient and highly scalable data availability is now available for Arbitrum Orbit, the tech stack that allows developers to launch their own configurable rollups based on Arbitrum’s technology.

    - - - -

    Arbitrum Orbit is a L2/L3 scaling solution for Ethereum that lets developers build their own dedicated chains with their own configurations. Arbitrum Orbit chains derive trustless security, while scaling Ethereum. With the latest NEAR DA integration, rollup builders could benefit from cheaper data availability costs to significantly reduce their overall rollup overheads. 

    - - - -

    Develop Ethereum rollups within the Arbitrum Orbit ecosystem enabled by NEAR DA

    - - - -

    The NEAR-Arbitrum integration allows devs  building their own rollups to be part of Arbitrum Orbit, an ecosystem of blockchains that settle onto Arbitrum or Ethereum Mainnet, while leveraging the cost effectiveness and scalability of the NEAR Protocol. 

    - - - -

    Arbitrum is a clear innovative leader in developing the Optimistic Rollup technology, while also operating as an L2 with the highest TVL. Arbitrum now offers its own stack to other rollups builders with Arbitrum Orbit, one step closer to decentralizing Ethereum.  

    - - - -

    Arbitrum Orbit chains leverage the Arbitrum Nitro tech stack, the technology that Arbitrum developed to scale Ethereum. It allows builders to create their own blockchains, which settles transactions on Arbitrum One, Arbitrum Nova, or Ethereum Mainnet if the Arbitrum DAO grants an L2 license. 

    - - - -

    These Orbit chains, which use Arbitrum’s Rollup and AnyTrust protocols, offer customization across throughput, privacy, gas token, and governance to cater to specific use cases and business requirements. For instance, rollup builders looking for cheaper DA alternatives can now utilize NEAR DA within the Arbitrum Orbit stack. With this, developers can build self-managed, configurable blockchains with enhanced control over its features and governance, while deriving the security guarantees of Ethereum.  

    - - - -

    NEAR DA paves the way for modular blockchain development

    - - - -

    This integration empowers rollup builders on Arbitrum Orbit to use NEAR DA as a complete out-of-the-box modular DA solution. 

    - - - -

    As of December 2023, 231 kB of calldata on NEAR costs $0.0016, while the same calldata on Ethereum L1 costs users $140.54

    - - - -

    NEAR DA helps developers reduce costs and enhance their rollup’s reliability, while maintaining the security guarantees provided by Ethereum. Another upside to NEAR DA is that high quality projects launching an app-chain or L2 will be able to get out of the box NEAR DA compatibility and support. 

    - - - -

    “Offering a data availability layer to Ethereum rollups highlights the versatility of NEAR’s tech while also helping founders from across Web3 deliver great products that bring us closer to mainstream adoption of the Open Web,” said Polosukhin, when announcing NEAR DA at NEARCON ‘23. 

    - - - -

    “NEAR’s L1 has been live with 100% uptime for more than three years, so it can offer true reliability to projects looking for secure DA while also being cost-effective,” Polosukhin added. “NEAR provides great solutions to developers no matter which stack they’re building on and now that includes the Ethereum modular blockchain landscape.”
    Interested teams who want to work with NEAR DA are invited to fill out this form, with information about your project and how you would like to integrate with NEAR DA.

    -

    The post Arbitrum Integrates NEAR DA for Developers Building Ethereum Rollups  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ethereum-rollups/index.html b/public/blog/tag/ethereum-rollups/index.html deleted file mode 100644 index efd938c5d..000000000 --- a/public/blog/tag/ethereum-rollups/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ethereum Rollups Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ethereum/feed/index.xml b/public/blog/tag/ethereum/feed/index.xml deleted file mode 100644 index fd7e85588..000000000 --- a/public/blog/tag/ethereum/feed/index.xml +++ /dev/null @@ -1,263 +0,0 @@ - - - - Ethereum Archives – NEAR Protocol - - /blog/tag/ethereum/ - - Thu, 21 Sep 2023 14:05:51 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Ethereum Archives – NEAR Protocol - /blog/tag/ethereum/ - 32 - 32 - - - Mantle Ecosystem Gateway Launches on the NEAR Blockchain Operating System (B.O.S) - /blog/mantle-ecosystem-gateway-launches-on-the-near-blockchain-operating-system-b-o-s/ - - - Wed, 20 Sep 2023 13:00:00 +0000 - - - - - - /?p=20896 - - An ecosystem gateway for Mantle, the layer-2 scaling solution built on Ethereum, has launched on the NEAR Blockchain Operating System …

    -

    The post Mantle Ecosystem Gateway Launches on the NEAR Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

    -]]>
    - An ecosystem gateway for Mantle, the layer-2 scaling solution built on Ethereum, has launched on the NEAR Blockchain Operating System (B.O.S) to offer a unified point of entry into the Mantle ecosystem. 

    - - - -

    Hosted by popular Mantle dApp FusionX, the gateway, built in collaboration with the NEAR community, streamlines the discovery of Mantle applications and helps aggregate components of top dApps including the Mantle Bridge, Agni, Ammos, iZiSwap, FusionX, Gamma, Lendle, and soon Pendle, in one place. 

    - - - -

    The gateway offers greater accessibility for developers and users, easier discoverability for the apps they build, and powerful composability. This was all made possible thanks to the B.O.S.

    - - - -

    “Mantle has seen some great traction since their launch and we’re very excited to have a Mantle gateway built on B.O.S. Ethereum and DeFi users interested in discovering new projects can now find lots of Mantle apps in one place, with bridging already solved so they can get started right away,” says Illia Polosukhin, co-founder of NEAR Protocol. “The Mantle gateway demonstrates the value of B.O.S gateways for other L2s and EVM projects looking to increase discoverability.” 

    - - - -

    Unlocking the Web3 ecosystem 

    - - - -

    Mantle’s development on NEAR is a testament to the protocol’s commitment to creating the foundations for the open web. “We are delighted to ally with NEAR in bringing leading Mantle dApps to a wider community through the Mantle Ecosystem Gateway on B.O.S,” says Arjun Kalsy, head of ecosystem of Mantle. “Through this effort, we look to provide even more support to our dev community, and allow for more cross-pollination in our respective Web3 communities.” 

    - - - -

    The Mantle gateway joins a growing list of projects that have partnered with the B.O.S to help unlock the full potential of Web3. A zkEVM B.O.S gateway for the Polygon ecosystem launched on NEAR to help increase accessibility and discoverability for developers, while also improving the user experience for end users exploring L2 ecosystems. 

    - - - -

    While the B.O.S is built on NEAR, it offers many benefits  to founders and builders from EVM projects and across the whole Web3 ecosystem. The Blockchain Operating System speeds up the process of building multi-chain experiences, empowering builders from any ecosystem––including EVM projects such as Ethereum layer 2s––to focus on creating great products for users rather than on managing infrastructure. 

    - - - -

    Developers can quickly build composable apps for the open web from thousands of flexible components, as well as seamlessly onboard users and increase discoverability across Web3 since every application utilising B.O.S is visible on a common interface. This collaboration brings new capabilities to developers and lets them build apps that can quickly reach more users.

    -

    The post Mantle Ecosystem Gateway Launches on the NEAR Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at ETHCC: Step into the Open Web on the BOS - /blog/near-at-ethcc-step-into-the-open-web-on-the-bos/ - - - Tue, 13 Jun 2023 16:00:00 +0000 - - - - /?p=20621 - - NEAR Foundation is excited to announce that NEAR will be returning to ETHCC 2023. The Foundation will be hosting a …

    -

    The post NEAR at ETHCC: Step into the Open Web on the BOS appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce that NEAR will be returning to ETHCC 2023. The Foundation will be hosting a 2-day side event at the Paris tech conference on July 16-17.

    - - - -

    NEAR experts will be on hand at ETHCC to share the latest updates for building apps on the open web  with the BOS  — an industry-first OS that makes it easy to use the tools you already know to build apps that engage users, while fostering an open web untethered from centralized platforms. 

    - - - -

    Also, learn how your project can get funding and other support from NEAR Horizon, the new Web3 startup platform built on the BOS. 

    - - - -

    NEAR at ETHCC — What to expect

    - - - -

    NEAR is hosting a two-day ETHCC side event on July 16-17th, that will feature Technical Workshops (BOS) hosted by Pagoda, a Horizon Pitch Competition, small ETH research group workshops (invite only), and other speaker sessions, keynotes, and panels. You can’t forget about our exclusive networking and happy hours!

    - - - -

    Learn from the best in the NEAR ecosystem about what makes the BOS so revolutionary. Ask your questions. Learn in-person. Make connections!

    - - - -

    Agenda: NEAR at ETHCC

    - - - -

    NEAR’s 2-day ETHCC side event will be located at the Museum National D’Histoire Naturelle: Verniquet

    - - - -

    Day 1: Technical Day 

    - - - -
      -
    • 11am – 12pm: Breakfast bites & Networking – Cafe au laits and pastries
    • - - - -
    • 12-12:30pm: Stateless Validation – Invite Only Research Group 
    • - - - -
    • 12:30-1pm: Token Economics – Invite Only Research Group 
    • - - - -
    • 1-1:30pm: BOS Vision 
    • - - - -
    • 1:30-2pm: BOS for Devs 
    • - - - -
    • 2-2:30pm: BOS Tech Breakdown for Partners 
    • - - - -
    • 2:30-3pm: Simona/ETH Session 
    • - - - -
    • 3pm-4pm: Programming Break, Happy hour guests arrive 
    • - - - -
    • 4pm – 7pm: Happy Hour – Appetizers and drinks 
    • -
    - - - -

    Structure for Day 2: Founders Day 

    - - - -
      -
    • 11am – 12pm: Networking and Co-working: Cafe au laits and pastries
    • - - - -
    • 12pm-12:30pm: Pantera Capital Workshop 
    • - - - -
    • 12:30-1pm: Proximity Workshop 
    • - - - -
    • 1-1:30pm: Simona/ETH Session 
    • - - - -
    • 1:30-2pm: Pitchfest Guests arrive 
    • - - - -
    • 2-4pm: Horizon Pitch Fest 
    • - - - -
    • 4pm – 7pm: Horizon Pitch Competition Happy Hour: Aperol spritz and appetizers
    • -
    - - - -

    NEAR Speakers at ETHCC

    - - - -
      -
    • Illia Polosukhin, CEO of Pagoda, Co-Founder of NEAR
    • - - - -
    • Matt Stephenson, Head of Cryptoeconomics, Pantera Capital
    • - - - -
    • Vy Le, Bain Capital
    • - - - -
    • Kendall Cole, Co-Founder and Director of Proximity
    • - - - -
    • Mya Shofany, Regulatory Lead, NEAR Foundation
    • - - - -
    • Bowen Want, Director of Protocol, Pagoda
    • - - - -
    • And more!
    • -
    - - - -

    Stay updated on the complete slate of confirmed speakers and sessions at Near.org/ETHCC. 

    - - - - - - - - -

    The post NEAR at ETHCC: Step into the Open Web on the BOS appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ethereum/index.html b/public/blog/tag/ethereum/index.html deleted file mode 100644 index 5eb6b7102..000000000 --- a/public/blog/tag/ethereum/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ethereum Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/events/feed/index.xml b/public/blog/tag/events/feed/index.xml deleted file mode 100644 index e7f4c407c..000000000 --- a/public/blog/tag/events/feed/index.xml +++ /dev/null @@ -1,570 +0,0 @@ - - - - Events Archives – NEAR Protocol - - /blog/tag/events/ - - Wed, 14 Feb 2024 18:59:44 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Events Archives – NEAR Protocol - /blog/tag/events/ - 32 - 32 - - - Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 - /blog/inaugural-ai-x-web3-hackathon-and-decentralized-ai-summit-to-debut-at-eth-denver-2024/ - - - Wed, 14 Feb 2024 18:59:43 +0000 - - - - - - - /?p=21226 - - In collaboration with Edge and Polygon Labs, the NEAR Foundation will co-sponsor a Decentralized AI Summit and “Autonomous Agent,” an …

    -

    The post Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 appeared first on NEAR Protocol.

    -]]>
    - In collaboration with Edge and Polygon Labs, the NEAR Foundation will co-sponsor a Decentralized AI Summit and “Autonomous Agent,” an AI x Web3 Hackathon, at ETHDenver on February 26 and 27. The events will bring together visionaries, developers, and enthusiasts working at the intersection of AI and Web3 along with a hackathon for builders and researchers to dive into the buzziest tech topic of today. Speakers at the Summit will include Vitalik Buterin of the Ethereum Foundation, Illia Polosukhin of NEAR Foundation, Sandeep Nailwal of Polygon Labs, and Sreeram Kannan of EigenLayer. 

    - - - -

    “Autonomous Agent” is the first event in the “{Chain}-of-Thought” series from Edge, which will explore and harness the potential of Web3 and open source AI. Edge is a research and development organization dedicated to democratizing access to open intelligence and advancing the evolution of next-generation web architecture. Hackers can expect hands-on hacking sessions, workshops, and mentorship opportunities with a chance to learn from those at the cutting edge of decentralized AI development. 

    - - - -

    The intersection of Artificial Intelligence (AI) and Web3 technology is poised to revolutionize industries, with many Web3 projects now incorporating AI into decentralized applications and developer tools. Ethereum Co-Founder Vitalik Buterin recently shared his observations about the intersection, and NEAR Co-Founder Illia Polosukhin shared how AI fits into the vision for the NEAR ecosystem in a recent post

    - - - -

    As the risks from centralized AI controlled primarily by major corporations become more apparent, investing in open source, transparent AI development will become increasingly important––along with community building, governance experiments, and advocacy. “{Chain} of Thought” will lead the way in bringing members of the AI and Web3 ecosystems together to advance these initiatives and make concrete progress.

    - - - -

    In addition to the premier sponsors, the “Autonomous Agent” hackathon is co-sponsored by EigenLayer, Gensyn, and Hyper Oracle, with co-hosting participation from Sentient, Lightspeed, and Symbolic Capital. Benefits of participation include:

    - - - -
      -
    • Cutting-Edge Workshops: Engage with industry experts and thought leaders through immersive workshops exploring the latest trends and technologies in AI x Web3.
    • - - - -
    • Hackathon Challenges: Tackle real-world challenges and showcase your creativity by developing innovative solutions at the forefront of AI and Web3 integration.
    • - - - -
    • Networking Opportunities: Connect with like-minded individuals, potential collaborators, and industry professionals to expand your network and exchange ideas.
    • - - - -
    • Prizes and Recognition: Compete for exciting prizes and gain recognition for your contributions to the advancement of AI x Web3 technology.
    • -
    - - - -

    Join NEAR Foundation, Polygon Labs, and Edge in Denver and be a part of the next great tech revolution. Those interested in attending the Decentralized AI Summit can register here. Researchers, developers, and hackers interested in participating in the hackathon can apply here

    -

    The post Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  - /blog/icymi-scootering-through-web3-at-near-apacs-vietnam-showcase/ - - - Mon, 18 Sep 2023 16:32:42 +0000 - - - - - - /?p=20862 - - It was an incredible first-ever NEAR APAC, with the NEAR ecosystem scootering through Saigon over the last two days. Vietnam …

    -

    The post ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  appeared first on NEAR Protocol.

    -]]>
    - It was an incredible first-ever NEAR APAC, with the NEAR ecosystem scootering through Saigon over the last two days. Vietnam served as the perfect backdrop for NEAR’s inaugural showcase in Asia-Pacific, with community members, B.O.S. builders, and general Web3 enthusiasts coming together in one of the region’s most dynamic countries.

    - - - -

    The event was spearheaded by the NEAR Vietnam Hub with support from the NEAR Foundation, exemplifying strong commitment and collaboration between local and global ecosystem stakeholders.  ICYMI, here are some of the biggest sessions, announcements, and events from NEAR APAC 2023.

    - - - -

    ICYMI, here are some of the biggest sessions, announcements, and events from NEAR APAC 2023.

    - - - -

    Web3’s bright investment outlook in Asia-Pacific

    - - - -
    - - - -

    One of the most encouraging and optimistic sessions was moderated by NEAR’s Head of Finance, David Norris, focusing on the current and future outlook of blockchain investment and development in the region. David was joined by Web3 venture veterans Riccardo Pagano from Outlier Ventures and Whiplus Wang of IVC crypto.

    - - - -

    The trio dove into the current state of blockchain investment in APAC, and how Web3 might just ascend to becoming one of the most invested sectors in the region from a venture and infrastructure perspective. Ricardo in particular emphasized that he’s seeing a shift in perception from investors, with Web3 going from a niche technology to its own broad-based sector.

    - - - -

    “Even though we’re technically in a bear market, investment in Web3 sub-sectors like gaming is still strong,” added Whiplus. “Games like Angry Birds and Fruit Ninja were instrumental in onboarding Web2 users onto the smartphone, for example. That’s why investment into blockchain game publishers is increasing — to find that killer game that onboards billions.”

    - - - -
    - - - -

    Whiplus also likened successful blockchain startups to a bowl of Pho, with a blend of technical and business elements being integral to a delicious final dish. The panel also touched on technical nuances like ZK rollups and modular blockchains, emphasizing the need to invest in talent and innovation through initiatives like hackathons.

    - - - -

    The session encapsulated a forward-looking perspective on Web3’s trajectory. With the bar for founder participation evidently rising, the panel stressed the importance of education in the space. There was unanimous optimism about Southeast Asia’s digital future as potentially outpacing even established tech hubs like Korea and Japan.

    - - - -

    NEAR supports B.O.S. and blockchain builders in APAC

    - - - -
    - - - -

    Tons of activity also took place in and around the Builder Stage, with the NEAR Foundation and local blockchain organizations teaming up to educate and assist developers, builders, and job seekers in advancing themselves into Web3. Cameron Dennis, CEO of Banyan, led a panel on the stage informing developers on how to upskill from Web2 to Web3.

    - - - -

    Local developer advocates from notable projects like the Graph and Khyber network also participated in sessions, workshops, and panels on the Builder Stage designed to upskill local blockchain professionals. There was something for everyone, from a job fair for Web3 newbies to a Greenhouse area connecting founders and projects to VCs for funding.

    - - - -

    Exploring everything from dApp architecture to tokenomics, the Builder Stage action was highlighted by an incredible Hackathon, with participants receiving guidance from experts like Oleg Fomenko, founder of SWEAT. On the final night of the festivities, NEAR co-founder Illia Polosukhin presented awards to the winners on stage in front of a packed main hall.

    - - - -

    Pagoda takes the main stage to talk user adoption and FastAuth

    - - - -
    - - - -

    Alex Chiocchi, the CPO of Pagoda, showcased FastAuth during his session titled “Unlocking the Power of B.O.S: Product Update for Founders & Developers.” FastAuth aims to redefine the user experience for developers and founders, addressing the longstanding challenges of both onboarding and retaining new Web3 users.

    - - - -

    A primary takeaway was how FastAuth’s next release will minimize gas fees when onboarding, thus removing barriers for end-users. The introduction of multiparty compute (MPC) allows proofs from various organizations to be combined, simplifying processes like email recovery. Chiocchi emphasized the potential for users to migrate effortlessly from Web2 logins, hinting at a seamless integration between the two web generations.

    - - - -

    Discussing the nuances of retaining users in Web3, Chiocchi stressed that coin incentives alone aren’t sufficient. The “toothbrush test” was highlighted, illustrating that many apps don’t become daily necessities for users. Trust plays a pivotal role, especially with the rise of scams in the decentralized space. 

    - - - -

    Side events and after-parties storm the streets of Saigon

    - - - -
    - - - -

    NEAR APAC fully embraced the “work hard, play hard” ethos of Vietnam and Asia-Pacific. Even during the event, there were LED dancers, Manga Cosplay, and several massive DJs and party breaks. Not to mention the NEAR APAC Opening Night party at the Intercontinental Hotel, where Illia officially welcomed attendees and kicked things off in an intimate setting.

    - - - -

    And in one of the coolest side events in recent NEAR memory, Dap Dap showcased its platform to B.O.S. enthusiasts at the My House meeting venue nestled in one of Saigon’s many cozily-lit alleyways. Dap Dap is the first commercial B.O.S. product and will act as a gateway to hundreds of chains and protocols for users from a single, user-friendly interface.

    - - - -
    - - - -

    B.O.S Beats by DAO Records was the grand finale of NEAR APAC, offering a vibrant blend of hip-hop beats from prominent DJs on the decentralized record label. Held at Indika Saigon — and with pizza supplied by Pizza DAO — attendees enjoyed live performances, refreshments, and networking opportunities with the global and APAC NEAR communities. 

    - - - -

    NEAR APAC was an incredible Web3 Bánh Mì, layering an eclectic mix of speakers, insights, and events to create something completely unique. The NEAR Foundation would like to thank every cook in the kitchen, especially local partners like the NEAR Vietnam Hub who made sure that the first ever NEAR APAC had the perfect mix of sweet, sour, and spicy.

    -

    The post ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands - /blog/near-apac-day-2-recap-asia-gaming-trends-interoperability-and-web3-for-brands/ - - - Sun, 10 Sep 2023 14:28:46 +0000 - - - - - - - /?p=20841 - - It would’ve been hard to imagine topping a jam-packed Day 1 of NEAR APAC, but Day 2 managed to do …

    -

    The post NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands appeared first on NEAR Protocol.

    -]]>
    - It would’ve been hard to imagine topping a jam-packed Day 1 of NEAR APAC, but Day 2 managed to do just that. The gorgeous Sunday in Saigon covered a wide range of topics, including significant discussions on the future trends in Web3 such as how brands can hop on board the Web3 bandwagon and a creative proposal to unite all Layer 1’s for mass adoption.

    - - - -

    With each session, industry leaders shed light on challenges and the future trajectory of the fast-paced Web3 ecosystem in APAC. From the unique positioning of Web3 gaming in Asia to the potential rise of the next Web3 cycle, the discussions were varied and far-reaching. Let’s dive on into all the Day 2 happenings at NEAR APAC in Vietnam!

    - - - - - - - -

    Let’s begin the Day Two recap with a standout panel diving into the next big Web3 trends. Experts agreed that it won’t just be about technological progress, but also the transformative ways that blockchain will weave into daily life. Asset tokenization, generative AI integration, and the proliferation of decentralized creator economies were some top trends on the table.

    - - - -
    - - - -

    “Generative AI and asset tokenization are revolutionizing Web3 ecosystems, especially in growing economies like India,” said Sudeep Choudhari, head of blockchain at the India National Payments Corporation. “As integration across borders accelerates, we’ll also challenge traditional FX rates, anticipating a future with minimal cross-border payment costs.”

    - - - -

    Hanna Tantoco, APAC Marketing Director at Blockdaemon, piggybacked on the transformative role of generative AI in enhancing blockchain user experiences. She also pointed out the rising prominence of gaming in Asia, particularly on NEAR. Additionally, she highlighted Singapore’s burgeoning creator economy, powered largely by NFTs, as another future trend.

    - - - -

    How brands can futureproof themselves with blockchain

    - - - -

    Another morning highlight was a panel discussion about how brands and enterprises can harness the potential of Web3 to adapt and thrive. Key points revolved around democratizing user data control, countering data monopolization by tech giants, tokenizing assets, and challenges in linking the physical and digital worlds.

    - - - -

    “Enterprises often face challenges with hiring experts who may quickly move on to other projects,” observed Oleg Fomenko, founder of SWEAT. “While consultancies can provide insights, the real breakthrough comes when you start building and experimenting with MVPs. Though initial attempts might fall short, perseverance can yield surprising results.”

    - - - -
    - - - -

    Alex Chiocchi, CPO of Pagoda, added that Web3 streamlines verification, challenging traditional ad networks. By using an open blockchain system, excessive fees are prevented, promoting shared value with users. This shift allows benefits like self-custody and reputation while redistributing margins back to the people.

    - - - -

    Among the key takeaways from the session was that businesses harnessing blockchain’s capabilities can anticipate a transformative impact on the global economy, especially with asset tokenization’s projected growth through 2030. As brands navigate challenges like ensuring digital authenticity and early adoption, having a targeted strategy is crucial.

    - - - -

    Web3 gaming: Asia’s landscape and blockchain utilization

    - - - -

    The Asian gaming landscape is buzzing with the rise of Web3 development, promising an unprecedented era of innovation and user empowerment. Central to discussions at the “Web3 Gaming: Asia Landscape” session was the gaming community’s appetite for asset and data ownership, often prioritizing this over the complexities of Web3 itself.

    - - - -

    After attending Korea Blockchain Week, it’s evident that Japan and Korea’s mobile giants are pioneering in Web3 gaming,” said Luke Xie, founder of gaming VC fund Press Start Capital. “As opposed to Web3 games like Axie, creating AAA games takes much longer. Given the rapid pace of crypto, former mobile developers align better with this fast-paced dynamic.”

    - - - -

    Ishank Gupta, co-founder of Kratos Studios in India, emphasized that gamers prioritize asset and data ownership over backend Web3 tech. He predicted that blockchain games should bring benefits that gamers care about with a focus on ease of usability. For instance, leading studios in India are integrating well-known IP into Web3 games while ensuring they remain engaging.

    - - - -

    “We’re witnessing a new golden age of gaming driven by indie studios,” added Xie. “Small teams, empowered by AI, are crafting games that punch above their weight. We believe that on-chain gaming, while difficult to execute at present, is the future. It’s all about selecting the right chain based on tech, community, and support. NEAR excels at all of the above.”

    - - - -

    The panel agreed that the Web3 gaming industry in APAC and beyond is undergoing a transformative phase, with blockchain offering gamers more control over assets and data. As developers continue to build, the focus will be on seamless onboarding, speed, and user-centric experiences. Blockchains should be subtly integrated without disrupting the gaming experience.

    - - - -

    Bringing Web3 together with Multichain: a call for collaboration 

    - - - -

    Today’s blockchain landscape consists of independent Layer 1’s vying for supremacy, bringing up the core question of interoperability. With users often navigating several ecosystems, creating cross-chain experiences becomes paramount. This star-studded panel explored new frameworks to address hurdles and challenges in the current siloed multi-chain user experience.

    - - - -
    - - - -

    “Web3’s ethos is modularity, similar to Lego blocks,” explained NEAR CEO Marike Flament. “While we prioritize access and user growth, interoperability challenges persist. But trust and unified solutions drive adoption, not a fractured approach. It’s essential that technology seamlessly serves the end user.”

    - - - -

    Cameron Dennis, CEO of Banyan, added that key management is a critical issue. He pointed out ways to simplify these processes with tools like FastAuth. Dennis added that addressing the noticeable gap in cross-chain liquidity should be a focus. He believes that a true multichain future that drives adoption will solve key and wallet management for a better UX.

    - - - -

    “Reflecting on a decade in this space, the competitive landscape has shifted,” mused Mary Beth Buchanan from the Cardano Foundation who is also an advisor to NEAR, “Earlier, exchanges hesitated to collaborate, fearing a loss of advantage. Today, there’s a collective push to learn from one another, ensuring technology works seamlessly for the end user.”

    - - - -

    Cameron believes that reinforcing the current ecosystem is paramount before extending cross-chain efforts, even though creating a decentralized internet remains a resource-intensive endeavor.

    - - - -

    Marieke stressed the importance of open-source technology in attracting top talent. Drawing inspiration from Web2’s approach to 5G standardization, she suggested that Layer 1 leaders could unite in an ‘L20’ alliance to champion unified standards, fostering a unified vision for the industry’s future.

    - - - -

    And that’s a wrap for the official Day 2 sessions at NEAR APAC. From gaming and brand adoption to multi-chain standards and collaboration, it was clear that this first-of-its-kind regional event was a rousing success for developers and the NEAR community alike. Sunday in Saigon rolls on with more side events and after-parties, so stay tuned for the full ICYMI tomorrow.

    -

    The post NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 - /blog/near-apac-day-one-scaling-local-adoption-regional-regulation-and-ai-in-focus/ - - - Sat, 09 Sep 2023 12:14:36 +0000 - - - - - - - - - /?p=20835 - - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. …

    -

    The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

    -]]>
    - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. Held in conjunction with the NEAR Vietnam community and NEAR Foundation, NEAR APAC is showcasing the vibrant crypto and Web3 community across the region as well as the potential of the B.O.S. and Open Web both locally and globally.

    - - - -

    The day was charged with excitement, drawing over 8,000 attendees from various corners of the APAC region and beyond. With Web3 thought leaders, innovators, and enthusiasts converging in Vietnam, Day One of NEAR APAC kicked off with a slew of riveting discussions, industry insights, and speculations on the future of the Open Web with a focus on APAC.

    - - - -

    From discussions around regional growth and investment potential to how AI and blockchain will transform the future of work, here’s everything that went down at an incredible start to NEAR APAC.

    - - - -

    Setting the stage for NEAR APAC with Vietnam in focus

    - - - -

    The event kicked off with a focus on southeast Asia, with NEAR’s Vietnam country director Riley Tran welcoming attendees and providing context as to Asia’s critical role in the overarching development and expansion of Web3. Tran was followed by two NEAR luminaries, CEO Marieke Flament and co-founder Illia Polosukhin.

    - - - -

    “Asia’s young demographics and rapid digital growth, especially in Vietnam, position it as a leader in crypto and blockchain growth,” Riley explained. “With over 100 million new internet users in just three years, Asia’s momentum in Web3 is accelerating”

    - - - -

    Marieke added that the overall NEAR ecosystem remains strong with over 29M active wallets and 650K daily active accounts. She added that a collaborative approach to building tomorrow’s Open Web is critical for tackling significant societal and digital challenges.

    “Today’s Web 2.0 is closed and siloed, with the prevailing digital culture being a toxic dialectic,” Marieke expressed. “But the value loop of an Open Web holds immense promise. We’re already seeing how projects like KaiKai, SWEAT, and PlayEmber can move the needle in the right direction.”

    - - - -

    Echoing Mariek’s sentiment, Illia emphasized that it’s not necessarily about championing a specific blockchain, but about creating a common layer and interface for the Open Web. This is precisely what the Blockchain Operating System (B.O.S.) is in the process of achieving.

    - - - -

    “Looking forward, tech isn’t the only focus,” said Illia. “It’s about blending scalable solutions with user-centric experiences, with the B.O.S. becoming the essential entry point into Web3 for both users and developers.”

    - - - -

    Asia’s role in mainstream adoption and regulatory hurdles

    - - - -

    The push for mainstream blockchain adoption in APAC was also in focus on Day One, with NEAR Foundation CMO Jack Collier leading a panel discussion on current adoption challenges and how APAC can potentially lead the way in overcoming them.

    - - - -

    “I’m extremely bullish on gaming as a key part of mass adoption,” opined Don Pham, Google Cloud’s regional Web3 specialist. “Vietnam is the birthplace of Axie Infinity, which is just the beginning of blockchain gaming’s potential. Use cases like loyalty, gaming, and music NFTs combined with better UX will likely be the path forward.”

    - - - -

    The discussion dove deeper into the importance of user experience in the adoption of blockchain. Marieke reiterated that while technology forms the backbone, the real test will be simplifying the user journey, which can significantly hasten adoption across the APAC region as well as globally.

    - - - -

    Regulation was also in focus with a panel about blockchain policies and APAC’s vision for governments and associations. Mary Beth Buchanan, a board member of the Cardano Foundation, drove home the need for regulatory clarity while discussing regional frameworks in countries like Hong Kong.

    - - - -

    “The biggest challenge is not necessarily regulation, but lack of clarity,” observed Buchanan. “If regulations are unclear that will cause investors not to want to invest in the space. Builders become hesitant to build and users aren’t going to know what the rules are. Regulators need to recognize that clarity is what everyone wants.”

    - - - -

    Spotlight on Artificial Intelligence during the afternoon sessions

    - - - -

    Day One of NEAR APAC dedicated a significant chunk of its schedule to exploring the intricate interplay between AI and blockchain, particularly their role in APAC’s future technology and Web3 landscape. Illia took the stage just after the lunch break to discuss the Convergence of AI and Web3, diving deep into AI-empowered DAO and the future of AI-assisted work.

    - - - -

    “While technologies like ChatGPT have found product market fit, much of AI is still siloed and doesn’t empower open source communities and projects,” Illia posited. “Web3 can operate in the middle, with AI models incorporating all participants and data sources. DAOs, for example, can be co-piloted by AI to achieve goals and KPIs faster and more efficiently.”

    - - - -

    In the following panel discussion entitled “The Roles of Blockchains in an AI World,” Illia was joined by several AI and blockchain experts from the APAC region. One of the more distinguished panel members was Dr. Nguyen An Khuong, a lecturer and blockchain researcher from Ho Chi Minh University of Technology, who provided an academic perspective. 

    - - - -

    “We have a lot of research endeavors in Vietnam around ensuring AI’s ethical applications using blockchain,” commented Dr. Nguyen. “We’re looking at how transparency and accountability in AI decisions can be drastically improved with blockchain technology. Combining a neutral AI with a blockchain’s public ledger could enhance the ecosystem and foster wider adoption.”

    - - - -

    Illia drove home that the potential “Skynet” scenario of AI taking over the world is mostly a projection of what humans might do if they were given supercomputing powers. In reality, developments like the B.O.S. and NEAR Tasks will aid humans in success and productivity, with AI agents acting as middlemen for assistance, sourcing, and even creativity.

    - - - -

    Day One of the first-ever NEAR APAC was a rousing success, with these highlights just being the tip of the iceberg. The crowd was treated to bánh mì’s and Manga cosplay during lunch, B.O.S. building and gaming workshops on the Builder Stage, and an awe-inspiring NFT gallery from APAC creators.

    - - - -

    As the sun sets in Saigon, the NEAR Foundation couldn’t be more appreciative of the Vietnamese crypto community. The momentum rolls on tomorrow with Day Two, so stay tuned for more updates and insights around emerging APAC trends in Web3, how blockchain gaming is taking off in Asia-Pacific, and local DeFi developments. 

    - - - -

    If Day One was any indication, the NEAR community’s growth, presence, and development in APAC will only continue accelerating through 2023 and beyond!

    -

    The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR is going to ETHDenver! - /blog/near-is-going-to-ethdenver/ - - - Thu, 13 Feb 2020 16:42:43 +0000 - - - https://nearprotocol.com/?p=2920 - - NEAR will be at ETHDenver and we can’t wait to see everyone there. It’s always exciting to see what ideas …

    -

    The post NEAR is going to ETHDenver! appeared first on NEAR Protocol.

    -]]>
    - NEAR will be at ETHDenver and we can’t wait to see everyone there. It’s always exciting to see what ideas gain a foothold year after year. ETHDenver is an annual hackathon and conference that brings together diverse minds who are passionate about decentralization, Web3 & the blockchain ecosystem.

    -

    With the recent launch of NEAR’s EVM Compatibility, and incentivized testnet competition, we are excited to get more developers and entrepreneurs building on NEAR Protocol. 

    -

    We have three bounties for you worth $1,500 each.

    -

    🌈 Use the NEAR <> ETH Bridge

    -

    ⛓️ Deploy an EVM-based smart contract to NEAR

    -

    👉 Use cross-contract calls in Rust

    -

    Read on to learn more about NEAR Protocol, what you can build, and how to participate in this year’s hackathon.

    -

    What’s NEAR Protocol?

    -

    With NEAR you can build, deploy and scale in minutes. NEAR Protocol is a scalable, Proof-of-Stake blockchain. It’s designed to provide the performance and user experience necessary to bridge the gap to mainstream adoption of decentralized applications. 

    -

    Whether you’re still looking for inspiration on which tech to build on, or are interested in building a truly decentralized application with world class support (our team can always be reached here), we’re excited to meet and hear from you in-person and online.

    -

    What can I build with NEAR, and what can I win?

    -

    We’re proud to continue our support of ETHDenver with both our participation and bounty sponsorship. 

    -

    Things NEAR is excited to see this ETHDenver :

    -
      -
    • what’s new in the DAO scene
    • -
    • oracle advancements
    • -
    • DeFi 
    • -
    • the future of scalable smart contracts 
    • -
    • the latest updates to contract-based wallets and accounts
    • -
    -

    NEAR is building for the builders. We invite you to come tinker, then build the open web with us.

    -

    NEAR is on the WebAssembly train! WebAssembly is the solid choice for modern smart contract development. It extends the possible set of smart contract programming languages to include choices like C#, Kotlin, Rust, and more. The smart contract examples in the NEAR Documentation are currently written in Rust and AssemblyScript. AssemblyScript is similar to TypeScript (which taps into 10M JS developer market), and actually compiles a subset of TypeScript to WebAssembly with ease.

    -

    Don’t have experience in Rust or AssemblyScript? No worries. Depending on your preference for backend or frontend, you can write and call smart contracts on NEAR intuitively. We’ve got some great examples to explore online (https://studio.nearprotocol.com/) and/or run locally (https://github.com/nearprotocol/create-near-app). Make sure to also look for our in-person workshop at 11:30am on Friday at ETHDenver for hands-on experience.

    -

    For the frontend folks, our ReactJS project generator will get a NEAR app running within moments. This may be particularly appealing to those familiar with the JavaScript build processes who enjoy quickly iterating. Once you’ve written your smart contract and compiled it to WebAssembly, you can choose how to interact with it. In addition to our ReactJS app, folks can interact with the blockchain with our slick shell tool. For example, after setting up a simple configuration you can deploy and call a contract from the command line. Since all of the code that runs the NEAR chain, tools or libraries is open source, you can jump into the libraries to see what’s going on.

    -

    Another cool feature is the concept of a human-readable account name with multiple keys for various purposes. Want to allow another account to execute a function call on your smart contract? Dole out a key! To visualize this aspect of NEAR, you may visit our Wallet to see this behavior in action.

    -

    The elements cited above are fun pieces of tech to tinker with at ETHDenver, but there’s a bigger picture. NEAR’s vision is to enable the builders to build the open web together. It starts with a strong foundation: a solid VM, an extensible and future-proof plan for smart contracts, fun languages to write in, access keys with variable permissions, libraries that speak to JSON-RPC, and most importantly a team mindset inclusive to all. We invite you into the fold for all of it.

    -

    What are NEAR’s bounties? 

    -
      -
    • Use the NEAR <> ETH Bridge
    • -
    • -
        -
      • -
          -
        • Build an application that uses the NEAR <> ETH Bridge to make calls to Ethereum contracts from a NEAR smart contract
        • -
        • Prize: $1500
        • -
        • Resources: https://near.ai/bridge
        • -
        -
      • -
      -
    • -
    -
      -
    • Deploy an EVM-based smart contract to NEAR
    • -
    • -
        -
      • -
          -
        • Deploy a Solidity or Vyper contract to NEAR, and use the NEAR Wallet in your frontend to call the contract’s functions.
        • -
        • Prize: $1500
        • -
        • Resources: https://near.ai/near-evm
        • -
        -
      • -
      -
    • -
    -
      -
    • Use cross-contract calls in Rust
    • -
    • -
        -
      • Write a smart contract in Rust that makes a cross-contract call. This can be from one NEAR contract to another (in Rust or AssemblyScript), or to an Ethereum contract using the ETH Bridge!
      • -
      • Prize: $1500
      • -
      • Resources: https://near.ai/cross-contract
      • -
      -
    • -
    -

    How can I meet the team at ETHDenver?

    -

    NEAR has four team members on the ground at ETHDenver. We’re excited to bring our engineers, product, and accelerator team together with developers. On Thursday, February 13th, Sasha is hosting a discussion, “Into the Open Web” at #ETHDenver, and Kendall will be chatting about the future of the Web at Distributed Networks Summit. Or come chat with us Friday, February 14th at 11:30am at NEAR’s Protocols & Interoperability ETHDenver Workshop. Kendall and Illia will be talking about how to write, deploy and interact with Rust, TypeScript, and Solidity smart contracts on NEAR: a sharded, Proof-of-Stake public blockchain with a WebAssembly-based runtime. 

    -

    NEAR also supports EVM smart contracts (Solidity, Vyper), and the use of Ethereum assets via a trustless, bidirectional NEAR <> Ethereum bridge.

    -

    If you miss our workshops, you can look for Kendall (@kendallc), Mike (@mikedotexe), or lllia from our epic engineering team, or grab Sasha (@AliaksandrH) if you want to talk product-market fit. NEAR will also have ongoing online support; the team will be active on the ETHDenver Discord as well as NEAR’s own channels. NEAR’s primary developer support channels are Discord and the NEAR Forum. We encourage you to say hello to the team and ask questions!

    -

    Register for the ETHDenver Hackathon here!

    -

    Links:

    -

    http://near.ai/economics

    -

    Follow @NEARprotocol on Twitter to get notified about new content we post, and get the latest updates on the development of the protocol.

    -

    The post NEAR is going to ETHDenver! appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/events/index.html b/public/blog/tag/events/index.html deleted file mode 100644 index a83054029..000000000 --- a/public/blog/tag/events/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Events Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/fan-engagement/feed/index.xml b/public/blog/tag/fan-engagement/feed/index.xml deleted file mode 100644 index 105ed1dbf..000000000 --- a/public/blog/tag/fan-engagement/feed/index.xml +++ /dev/null @@ -1,189 +0,0 @@ - - - - Fan Engagement Archives – NEAR Protocol - - /blog/tag/fan-engagement/ - - Wed, 20 Sep 2023 14:29:11 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Fan Engagement Archives – NEAR Protocol - /blog/tag/fan-engagement/ - 32 - 32 - - - Los Angeles Football Club and Dropt Rewrite Fan Experience Playbook Utilizing NEAR Protocol - /blog/los-angeles-football-club-and-dropt-rewrite-fan-experience-playbook-utilizing-near-protocol/ - - - Tue, 19 Sep 2023 19:00:00 +0000 - - - - - - /?p=20892 - - NEAR Foundation is excited to announce a new partnership between Los Angeles Football Club (LAFC) and Dropt — a fan …

    -

    The post Los Angeles Football Club and Dropt Rewrite Fan Experience Playbook Utilizing NEAR Protocol appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership between Los Angeles Football Club (LAFC) and Dropt — a fan engagement platform built on the NEAR Protocol — supporting the club’s vision to rewrite the playbook on the fan experience. The collaboration kicks off with LAFC Gold — a Loyalty Club designed to recognize Los Angeles FC’s most devoted fans with a wide range of unprecedented benefits.

    - - - -

    Let’s explore what LAFC’s new fan engagement product, LAFC Gold, looks like and what it means for an open web. 

    - - - -

    Elevating the football fan experience with LAFC Gold benefits

    - - - -

    In the sports worlds, fans love to be part of the action, and not just at the arena. Sports teams understand that fans like to feel that they are being seen, heard, and valued for their significant contributions to the organization and its athletes. And in the world of football (“soccer” to Americans), fanbases are truly global, making it important that sports franchises meet their fans wherever they are.
    With its new Loyalty Club, LAFC is acknowledging their fans and bringing them new benefits and experiences, utilizing Dropt’s digital engagement platform and NEAR technology.

    - - - -

    “LAFC Gold promises to make LAFC fans and supporters feel seen, heard, and valued wherever they are in the world,”  said LAFC Co-President & CBO Larry Freedman. “Watching a match at BMO Stadium is one of the best sports experiences anyone can have. With LAFC Gold, we now have a way to connect, recognize, and reward anyone who supports the Black & Gold.”

    - - - -

    LAFC Gold delivers on its promise with exclusive experiences 

    - - - -

    LAFC Gold kicked off with a ticket giveaway to the historic matchup between LAFC and Inter Miami, including the experience of holding the American Flag during the National Anthem before the match. And with the  2022 World Cup, 4-time Champions League, and 7-time Ballon d’Or winner Lionel Messi on the pitch for Inter Miami, this was a match not to be missed. 

    - - - -

    For the last three home matches of the season, including the momentous El Tráfico against LA Galaxy this past weekend, LAFC Gold has given away 4 premium tickets with pre-match field access to winning LAFC Gold Members. Unlocking your chance to win experiences and benefits like these for Real Salt Lake (10/1) and Minnesota United FC (10/4) is as easy as signing up and securing your LAFC Gold Membership.

    - - - -

    With Dropt’s digital fan engagement platform, LAFC Gold will be accessible and easy for fans to join. The kickoff is just the first of what will be a dynamic program designed to create new ways for fans to engage with LAFC and its club partners. And by utilizing the NEAR Protocol, LAFC will ensure that the team will remain at the forefront of the open web’s cutting-edge technology by allowing LAFC to verify and track every transaction in a secure environment.

    - - - -

    To experience LAFC Gold, visit gold.lafc.com and sign up for an Entry, Local, Global, or Youth Membership. 

    - - - -

    LAFC Season Ticket Members are automatically enrolled in the program. 

    -

    The post Los Angeles Football Club and Dropt Rewrite Fan Experience Playbook Utilizing NEAR Protocol appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Knaq and NEAR: A New Era of Fan Engagement with Web3 - /blog/knaq-and-near-a-new-era-of-fan-engagement-with-web3/ - - - Wed, 10 May 2023 14:36:45 +0000 - - - - /?p=20485 - - Knaq, the pioneering fan loyalty platform, is poised to transform the way fans interact with their favorite creators on both …

    -

    The post Knaq and NEAR: A New Era of Fan Engagement with Web3 appeared first on NEAR Protocol.

    -]]>
    - Knaq, the pioneering fan loyalty platform, is poised to transform the way fans interact with their favorite creators on both Web2 and Web3 social media platforms. In collaboration with the NEAR Foundation, Knaq aims to foster more meaningful interactions within creator communities while providing true utility to NFTs and tokens via a summertime soft launch. 

    - - - -

    By leveraging NEAR’s fast and scalable blockchain, Knaq will offer a seamless user experience through a user-friendly browser extension and redemption marketplace. This exclusive partnership empowers fans and creators, enabling them to benefit from the innovative features and rewards offered by Knaq and its diverse range of brand partners.

    - - - -

    With Knaq’s unique vision and NEAR’s robust platform, the stage is set for a new era of fan engagement and loyalty in the creator space.

    - - - -

    A perfect match for seamless creator engagement

    - - - -

    Loyalty and rewards programs have become an integral part of our daily lives, shaping our experiences with various services and products. Knaq recognizes the potential of this concept and seeks to bring it to social media users who invest time and energy in engaging with their favorite content creators. By partnering with NEAR, Knaq brings the benefits of Web3 and crypto to the creator space.

    - - - -

    Knaq’s browser extension and redemption marketplace, powered by NEAR, offers a seamless onboarding process for users as they engage with their favorite creators. This allows easy compatibility with existing crypto wallets and provides an effortless sign-up process using Google OAuth. Fans and creators can link their social media accounts to start earning rewards, while NEAR’s platform facilitates secure and efficient transactions.

    - - - -

    The partnership between Knaq and NEAR Foundation brings additional benefits to users in the form of enhanced scalability and accessibility. NEAR’s highly scalable blockchain allows Knaq to handle high volumes of transactions, ensuring that the platform remains fast and reliable even as its user base grows. NEAR’s focus on user-friendly solutions also aligns with Knaq’s goal of making its platform accessible to a wide range of social media users, including those who may be new to Web3 and crypto.

    - - - -

    Knaq’s exciting fan and creator features built on NEAR

    - - - -

    NEAR’s technology enables Knaq to offer a multitude of exciting features and benefits that elevate fan engagement to new heights. By bridging the gap between Web3 and Web2 content platforms, Knaq delivers an experience that not only rewards fans for their support but also empowers creators to foster stronger connections with their audience.

    - - - -

    One of the exciting features enabled by NEAR is the use of NFTs to grant exclusive access to live and virtual events. These NFTs offer fans unique opportunities to interact with their favorite creators and enjoy immersive experiences, while creators benefit from enhanced engagement and revenue generation.

    - - - -

    Knaq’s engage-to-earn model rewards users with tokens for their engagement on all social media platforms, starting with YouTube. Built on NEAR, these tokens can be redeemed for various perks within the Knaq app and in real life via Knaq’s brand partners, providing fans with tangible incentives for their continued support. This, in turn, boosts creator engagement and revenues, making the platform a win-win solution for all parties involved.

    - - - -

    Through Knaq, fans also get a behind-the-scenes look at their most beloved creators. This feature allows for a deeper connection between creators and their audience, building a stronger sense of community and loyalty.

    - - - -

    Lastly, Knaq users have access to all related drops, tokens, and ecosystem incentives, with the first one planned for shortly after launch for early waitlist users. Thanks to NEAR’s robust platform, these initiatives can be seamlessly executed, further enhancing the value and utility of the Knaq experience for both fans and creators.

    - - - -

    Knaq and NEAR: Powerhouse team and exciting prospects

    - - - -

    The team-building Knaq brings together experienced creators, builders, and investors from both traditional markets and the crypto space. Their diverse backgrounds include working with renowned brands like Starbucks, ULTA Beauty, Buzzfeed, and J.P. Morgan, as well as prominent players in the crypto industry such as Circle, OKX, and Genesis Block. With a strong foundation and support from NEAR, Knaq is well-positioned to make a significant impact in the creator industry.

    - - - -

    As part of their commitment to transparency and community engagement, the Knaq team will be fully doxxed in Discord, building trust and openness with users. NEAR’s collaboration has been instrumental in bringing Knaq to life, providing the technological backbone necessary for seamless integration and exceptional user experience.

    - - - -

    The exciting features and benefits of Knaq set the stage for a new era of fan engagement and loyalty in the creator space. With innovative rewards and incentives, Knaq is poised to revolutionize the way we interact with creators, paving the way for a more engaging and rewarding experience for fans and creators alike.

    - - - -

    Looking ahead, Knaq has planned a soft launch for the summer, with the first month reserved exclusively for those who sign up for the waitlist. This presents an exciting opportunity for early adopters to get a head start on the platform and even participate in a free giveaway post-launch. Creators interested in boosting community engagement are encouraged to reach out and explore the potential of Knaq and NEAR Foundation’s partnership. 

    - - - -

    To learn more about Knaq’s rewards offerings and follow major upcoming events and announcements, sign up for the waitlist today at knaqapp.com

    -

    The post Knaq and NEAR: A New Era of Fan Engagement with Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/fan-engagement/index.html b/public/blog/tag/fan-engagement/index.html deleted file mode 100644 index d67c22cb7..000000000 --- a/public/blog/tag/fan-engagement/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Fan Engagement Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/fastauth-sdk/feed/index.xml b/public/blog/tag/fastauth-sdk/feed/index.xml deleted file mode 100644 index 464c38822..000000000 --- a/public/blog/tag/fastauth-sdk/feed/index.xml +++ /dev/null @@ -1,102 +0,0 @@ - - - - FastAuth SDK Archives – NEAR Protocol - - /blog/tag/fastauth-sdk/ - - Wed, 04 Oct 2023 18:17:15 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - FastAuth SDK Archives – NEAR Protocol - /blog/tag/fastauth-sdk/ - 32 - 32 - - - FastAuth SDK Beta Now Available - /blog/fastauth-sdk-beta-now-available/ - - - Mon, 02 Oct 2023 16:30:00 +0000 - - - - - /?p=20940 - - Developers can now start integrating FastAuth into their dApps for a seamless, intuitive onboarding experience with the FastAuth SDK, now …

    -

    The post FastAuth SDK Beta Now Available appeared first on NEAR Protocol.

    -]]>
    - Developers can now start integrating FastAuth into their dApps for a seamless, intuitive onboarding experience with the FastAuth SDK, now in Beta.

    - - - -

    Onboarding new users is one of the biggest hurdles for Web3 dApps. Creating a Web3 wallet is still a painful process for most users who are new to crypto, because it usually involves downloading an app or browser extension, purchasing cryptocurrency on an exchange, and understanding and saving a seed phrase. For these reasons, conversion rates for new user sign-ups tend to be very low in Web3 as compared to Web2.

    - - - -

    What is FastAuth?

    - - - -

    FastAuth addresses this problem through a familiar, “Web2-like” onboarding flow: users can sign up with just an email, and they don’t need to save a seed phrase or password. Instead, their FastAuth account and keys are secured using “Passkeys,” a new technology that replaces passwords with biometrics such as fingerprints or FaceID linked to a device. 

    - - - -

    Users can also recover access to their account at any time by using their email through the “MPC recovery” service. Developers can also choose to subsidize gas costs for a certain smart contract so that users can start interacting with their dApp immediately, without having to fund their own account. 

    - - - -

    Who can apply for the FastAuth SDK Beta?

    - - - -

    FastAuth is currently in a closed Beta. Any developer and/or founder building NEAR apps transacting on NEAR can apply for access to the SDK. The goal of this Beta is to collect feedback from founders and developers to help inform our roadmap and upcoming releases (see more on these below). 

    - - - -

    Pagoda will request feedback from participants in the Beta, as they start building with FastAuth.

    - - - -

    How do I learn more and get started?

    - - - -

    You can try FastAuth for yourself by creating a new account on near.org

    - - - -

    You can also apply to be part of the beta, and check out the SDK documentation

    - - - -

    What’s coming next?

    - - - -

    Pagoda is planning to release some additional key features later this year, including the ability to “white-label” the sign-up and sign-in flows, as well as multi-chain support. 

    -

    The post FastAuth SDK Beta Now Available appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/fastauth-sdk/index.html b/public/blog/tag/fastauth-sdk/index.html deleted file mode 100644 index 4dc0bfcbb..000000000 --- a/public/blog/tag/fastauth-sdk/index.html +++ /dev/null @@ -1,2 +0,0 @@ -FastAuth SDK Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/fastauth/feed/index.xml b/public/blog/tag/fastauth/feed/index.xml deleted file mode 100644 index 047c2a90d..000000000 --- a/public/blog/tag/fastauth/feed/index.xml +++ /dev/null @@ -1,461 +0,0 @@ - - - - FastAuth Archives – NEAR Protocol - - /blog/tag/fastauth/ - - Wed, 04 Oct 2023 18:17:15 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - FastAuth Archives – NEAR Protocol - /blog/tag/fastauth/ - 32 - 32 - - - FastAuth SDK Beta Now Available - /blog/fastauth-sdk-beta-now-available/ - - - Mon, 02 Oct 2023 16:30:00 +0000 - - - - - /?p=20940 - - Developers can now start integrating FastAuth into their dApps for a seamless, intuitive onboarding experience with the FastAuth SDK, now …

    -

    The post FastAuth SDK Beta Now Available appeared first on NEAR Protocol.

    -]]>
    - Developers can now start integrating FastAuth into their dApps for a seamless, intuitive onboarding experience with the FastAuth SDK, now in Beta.

    - - - -

    Onboarding new users is one of the biggest hurdles for Web3 dApps. Creating a Web3 wallet is still a painful process for most users who are new to crypto, because it usually involves downloading an app or browser extension, purchasing cryptocurrency on an exchange, and understanding and saving a seed phrase. For these reasons, conversion rates for new user sign-ups tend to be very low in Web3 as compared to Web2.

    - - - -

    What is FastAuth?

    - - - -

    FastAuth addresses this problem through a familiar, “Web2-like” onboarding flow: users can sign up with just an email, and they don’t need to save a seed phrase or password. Instead, their FastAuth account and keys are secured using “Passkeys,” a new technology that replaces passwords with biometrics such as fingerprints or FaceID linked to a device. 

    - - - -

    Users can also recover access to their account at any time by using their email through the “MPC recovery” service. Developers can also choose to subsidize gas costs for a certain smart contract so that users can start interacting with their dApp immediately, without having to fund their own account. 

    - - - -

    Who can apply for the FastAuth SDK Beta?

    - - - -

    FastAuth is currently in a closed Beta. Any developer and/or founder building NEAR apps transacting on NEAR can apply for access to the SDK. The goal of this Beta is to collect feedback from founders and developers to help inform our roadmap and upcoming releases (see more on these below). 

    - - - -

    Pagoda will request feedback from participants in the Beta, as they start building with FastAuth.

    - - - -

    How do I learn more and get started?

    - - - -

    You can try FastAuth for yourself by creating a new account on near.org

    - - - -

    You can also apply to be part of the beta, and check out the SDK documentation

    - - - -

    What’s coming next?

    - - - -

    Pagoda is planning to release some additional key features later this year, including the ability to “white-label” the sign-up and sign-in flows, as well as multi-chain support. 

    -

    The post FastAuth SDK Beta Now Available appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Mintbase Brings New Open Web Wallet Tech to Families Celebrating Raksha Bandhan - /blog/mintbase-brings-new-open-web-wallet-tech-to-families-celebrating-raksha-bandhan/ - - - Tue, 29 Aug 2023 17:31:03 +0000 - - - - /?p=20820 - - Mintbase, a leading NFT platform that allows users to mint, buy, and sell digital assets has partnered with the NEAR …

    -

    The post Mintbase Brings New Open Web Wallet Tech to Families Celebrating Raksha Bandhan appeared first on NEAR Protocol.

    -]]>
    - Mintbase, a leading NFT platform that allows users to mint, buy, and sell digital assets has partnered with the NEAR Foundation to help friends and family celebrate the traditional Indian festival, Raksha Bandhan, with Open Web technology.

    - - - -

    By bringing together several pieces of breakthrough wallet technology for the first time, photos can be instantly converted into NFTs and stored permanently on the NEAR blockchain — all without users needing to create seed phrases or pre-loaded wallets. 

    - - - -

    A new type of wallet 

    - - - -

    Mintbase’s new wallet streamlines the blockchain user experience like never before thanks to innovations on the NEAR blockchain. 

    - - - -

    FastAuth, created by NEAR, is an open-source protocol that provides an onboarding and account recovery process similar to what you find in Web2. It uses meta transactions, allowing a third party to pay the gas fee on behalf of the user, solving one of the most significant problems new users face in the blockchain world.

    - - - -
    - - - -

    The other killer feature is NEAR’s built-in account abstraction system. Users no longer need to deal with seed phrases or require NEAR to mint. Instead, a full access key is stored in the user’s passkey system, so biometric signing will work in a noncustodial way without any local storage interactions.

    - - - -

    This means no more seed phrases, and no more having to pre-load the wallet with currency before use. Instead, users of Mintbase’s wallet will be able to use and interact with blockchain in the same way they would with Web2 apps. 

    - - - -

    Celebrating the essence of Rakhi  

    - - - -

    To celebrate Raksha Bandhan, the popular Indiana festival where sisters tie a talisman or amulet called a Rakhi around the wrists of their brothers, users will be able to capture the moment with a photo and upload it instantly to the blockchain via the Mintbase wallet. 

    - - - -

    The metadata will be permanently stored on the Arweave blockchain and a NFT of the moment will be minted on the NEAR blockchain and delivered back to the user. It’s a sizable step forward in showcasing how far Web3 technology has come in making the user experience easier and more familiar to non-blockchain users. 

    - - - -

    As part of this celebration, there’s more than just memories to win. Participants can win prizes for NFTs they created and share them on X (formerly Twitter) with the hashtag #RakhisNEAR.  

    - - - -

    For more details, please visit https://rakhi.mintbase.xyz/. Participate, share, and make this Raksha Bandhan more memorable with Mintbase and NEAR Foundation.

    -

    The post Mintbase Brings New Open Web Wallet Tech to Families Celebrating Raksha Bandhan appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR FastAuth Competition Terms and Conditions - /blog/near-fastauth-competition-terms-and-conditions/ - - - Wed, 31 May 2023 15:22:00 +0000 - - - - /?p=20552 - - The following terms and conditions (the “Terms”) govern the use of the NEAR Foundation Fast Auth Competition (the “Competition”) provided …

    -

    The post NEAR FastAuth Competition Terms and Conditions appeared first on NEAR Protocol.

    -]]>
    - -
  • Introduction:
  • - - - - -

    The following terms and conditions (the “Terms”) govern the use of the NEAR Foundation Fast Auth Competition (the “Competition”) provided by NEAR Foundation (“we,” “us,” “our” or the “Company”). By participating in the Competition, you (“you” or “Participant”) agree to be bound by these Terms. If you do not agree to these Terms, you may not be eligible to participate in the Competition or receive any rewards. For more information on FastAuth, please visit the link here

    - - - -
      -
    1. Eligibility:
    2. -
    - - - -

    The Competition is available only to individuals who are at least 18 years old. By participating in the Competition, you represent and warrant that you are at least 18 years old.

    - - - -
      -
    1. Participation in the Competition:
    2. -
    - - - -

    We are excited to provide NEAR users with the ability to win, you acknowledge and agree that any information you provide may be used by us in connection with the Competition. To participate, users must follow these steps: 

    - - - -
      -
    1. Participants must submit a video of their screen while opening a NEAR wallet using FastAuth. The video should be in the form of a screen recording. All videos must be legible and any sensitive information can be blacked out. 
    2. - - - -
    3. The Participant must submit the video to their personal Twitter account using the hashtags #FastAuthTimeTrial and #NEARistheBOS by June 9th, 13:00 UTC.
    4. - - - -
    5. Videos submitted after the deadline will not be accepted. 
    6. - - - -
    7. The time taken to open the wallet, will be taken into consideration. 
    8. - - - -
    9. Winners will be notified via Twitter and announced on the Near social media channels on June 12th.
    10. - - - -
    11. Competition Prize:
    12. -
    - - - -

    Five Selected winners will be announced and contacted via email. The Competition prize consists of: 100 NEAR tokens for each winner. 

    - - - -

    5. Disclaimer:

    - - - -

    The Prize is awarded ‘as is’ and without warranty of any kind, express or implied, including without limitation any warranty of merchantability or fitness for a particular purpose. The Competition organizers and affiliated companies make no representations or warranties regarding the prize or its use and are not responsible for any claims arising out of or in connection with the prize or its use. The Competition event and prizes are solely sponsored and organized by us, and any reference to third-party companies or organizations is for informational purposes only. 

    - - - -
      -
    1. Limitation of Liability:
    2. -
    - - - -

    The Competition organizers, sponsors, and affiliated companies are not responsible for any injury, loss, or damage to property or person, including death, arising out of participation in the Competition or use or misuse of the prize.

    - - - -
      -
    1. Intellectual Property:
    2. -
    - - - -

    The Service, including all content provided by the expert(s) or other participants, is protected by copyright and other intellectual property laws. You may not reproduce, distribute, or create derivative works from any content provided by the Service without our prior written consent.

    - - - -
      -
    1. Modification of Terms:
    2. -
    - - - -

    We reserve the right to modify these Terms at any time without notice. Your continued use of the Service following any changes to these Terms constitutes your acceptance of the revised Terms.

    - - - -
      -
    1. Governing Law:
    2. -
    - - - -

    These Terms and your use of the Service are governed by the laws of Switzerland without regard to its conflict of laws provisions.

    - - - -
      -
    1. Dispute Resolution:
    2. -
    - - - -

    Any disputes arising out of or in connection with these Terms or the Service will be resolved through binding arbitration in accordance with the rules of the Switzerland Arbitration Association.

    - - - -
      -
    1. Entire Agreement:
    2. -
    - - - -

    These Terms constitute the entire agreement between you and us with respect to the Competition and supersede all prior or contemporaneous agreements and understandings, whether written or oral.

    - - - -
      -
    1. Contact Information:
    2. -
    - - - -

    If you have any questions or comments about these Terms, please contact us at social@near.foundation.

    -

    The post NEAR FastAuth Competition Terms and Conditions appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Get to Know the BOS: FastAuth for Easy, Web2 Style Onboarding and Account Recovery - /blog/get-to-know-the-bos-fastauth-for-easy-web2-style-onboarding-and-account-recovery/ - - - Tue, 30 May 2023 12:53:40 +0000 - - - - - /?p=20543 - - With the recent launch of the NEAR Blockchain Operating system (BOS) on near.org, came one of the first and most …

    -

    The post Get to Know the BOS: FastAuth for Easy, Web2 Style Onboarding and Account Recovery appeared first on NEAR Protocol.

    -]]>
    - With the recent launch of the NEAR Blockchain Operating system (BOS) on near.org, came one of the first and most powerful features — FastAuth. 

    - - - -

    With FastAuth, BOS users get a better than Web2-style onboarding experience, allowing them to easily create an account for any app on the BOS without a new password or the need to buy any crypto. And perhaps most powerfully for developers, FastAuth is both the easiest and fastest way to get people to try their new components and apps, yet another reason why developers will want to build on the BOS. This helps dramatically lower the threshold for adoption and opens the door to bringing billions of Web2 users into the Web3 space.

    - - - -

    To get up to speed on FastAuth, here is a FastAuth primer with some product demo videos. 

    - - - -

    Easy onboarding and email recovery with FastAuth

    - - - -

    FastAuth gives users the power to quickly and easily create a single account that can be used for any website or app that integrates with the Blockchain Operating System (BOS). This feature makes FastAuth an ideal tool for developers building components on NEAR. 

    - - - -

    With a Web2-style onboarding experience that puts the user experience front and center, users can create a free account using biometrics, phone prompts, and an email address. This means that users can quickly interact with an app but also easily re-authenticate to the app using the same or different devices. 

    - - - -
    - -
    - - - -

    Since most users are accustomed to centralized authentication methods like “Sign in with Google”, Web3 account management using seed phrases and wallets have, until now, created a significant barrier to entry for many people. By combining FastAuth with decentralized email recovery, users no longer need to remember seed phrases or install third party wallet applications. Users can recover their accounts through a “Single Sign-on” (SSO) process with the email they used at registration. 

    - - - -

    Account recovery is also decentralized and does not give custodial access to full access keys to any single custodian. It is accomplished through a process called “multi-party computation”. This finally paves a way for mass adoption with an easy, secure, and decentralized account recovery system.

    - - - -
    - -
    - - - -


    With FastAuth, one of the most challenging parts in onboarding users to Web3 no longer exists. Now, users can set up a BOS account quicker than creating a Gmail, Facebook, Tiktok, or Instagram account. And developers can deliver their Web3 components, apps, and experiences more seamlessly than ever. 

    - - - -

    No third-party applications required

    - - - -

    FastAuth also removes the need to download any third-party applications. Everything just works seamlessly right from the browser on your desktop or mobile device.

    - - - -

    By creating an easy, user-centric experience, FastAuth makes the open web accessible to everyone right from the get-go and opens the door to mainstream adoption. Anyone developing components on the BOS can leverage this user-friendly experience to quickly and intuitively get their apps in front of users. 

    - - - -

    Create an account without crypto

    - - - -

    BOS FastAuth has another great trick up its sleeve. Until now, getting started in  Web3 and interacting with apps meant acquiring crypto first. 

    - - - -

    With FastAuth, new users can get started right away without having to buy or be gifted crypto. This is a game changer for developers, enterprises, and end-users alike. Through FastAuth’s use of NEAR’s Meta Transactions and Zero Balance Accounts, users can register an account free of charge. Developers can also use this to their advantage as Meta Transactions paired with relayers, which allow them to sponsor initial interactions for new users without needing to purchase $NEAR. 

    - - - -

    This streamlined onboarding experience allows developers to significantly increase conversion rates for people trying their components and apps for the first time. FastAuth also expands an app and website’s audience by making it more accessible to mainstream users. 

    - - - -

    FastAuth creates an easy way for enterprises to integrate Web3 and crypto technology into their business. With just a few lines of code, they can onboard existing users into powerful new community and commerce experiences that are accessible, highly secure , and decentralized. 

    - - - -

    End users can also get started using Web3 apps and experiences in an easy, accessible way. Setting up a secure  fully user-owned  account now only takes seconds. 

    - - - -

    What’s next for FastAuth 

    - - - -

    While FastAuth is already enabling fast and simple onboarding of mainstream users as well as streamlining component-building for developers on the BOS, a number of other features and upgrades are already in the works: 

    - - - -
      -
    • The ability to extend relayers and FastAuth to additional gateways beyond near.org
    • - - - -
    • Further MPC decentralization
    • - - - -
    • Multi-chain compatibility 
    • - - - -
    • Two-factor authentication
    • -
    - - - -

    Stay tuned to near.org for new FastAuth features and upgrades, as they are rolled out. 

    -

    The post Get to Know the BOS: FastAuth for Easy, Web2 Style Onboarding and Account Recovery appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/fastauth/index.html b/public/blog/tag/fastauth/index.html deleted file mode 100644 index 23d10c298..000000000 --- a/public/blog/tag/fastauth/index.html +++ /dev/null @@ -1,2 +0,0 @@ -FastAuth Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/few-and-far/feed/index.xml b/public/blog/tag/few-and-far/feed/index.xml deleted file mode 100644 index 1ede19803..000000000 --- a/public/blog/tag/few-and-far/feed/index.xml +++ /dev/null @@ -1,186 +0,0 @@ - - - - Few and Far Archives – NEAR Protocol - - /blog/tag/few-and-far/ - - Tue, 07 Mar 2023 16:27:33 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Few and Far Archives – NEAR Protocol - /blog/tag/few-and-far/ - 32 - 32 - - - Near at ETHDenver Highlights  - /blog/near-at-ethdenver-highlights/ - - - Thu, 02 Mar 2023 16:00:30 +0000 - - - - - /?p=20239 - - Near will see a number of partnership and project announcements at Near Day and ETHDenver. Over a 1,000 people are attending …

    -

    The post Near at ETHDenver Highlights  appeared first on NEAR Protocol.

    -]]>
    - Near will see a number of partnership and project announcements at Near Day and ETHDenver. Over a 1,000 people are attending Near Day, with many more visiting the Near booth and dropping in on ETHDenver talks and panels featuring Near ecosystem figures. Beyond the many engaging talks and projects demos, there was also an ecosystem party, side events, a hackathon, and much more. 

    - - - -

    Let’s take a quick look at a few of the latest announcements from Near at ETHDenver. 

    - - - -

    A number of other announcements will be rolling out over the course of Near Day and ETHDenver, so stay tuned for those below in the coming days.

    - - - -

    Few and Far raises $10.5 million in funding

    - - - -

    Few and Far, a leading Digital Collectibles web3 platform, announced today that it has raised $10.5 million in a funding round led by Pantera Capital, the leading blockchain investment firm.The raise marks a significant milestone for Few and Far, which has been experiencing exponential growth since launch. 

    - - - -

    The new funds will help expand the platform’s capabilities, enhance user experience, and increase the number of Web3 developers. IP owners also stand to benefit from the platform. Few and Far features an all-inclusive platform available to carry out everything related to next generation digital collectibles, including a suite of developer tools. 

    - - - -

    The round also included top VCs, Cypher Capital, Huobi Ventures, Hypersphere, Metaweb, Mantis Partners, K5 Global and many more. 

    - - - -

    Near Blockchain Operating System now live on Alpha.Near.Org

    - - - -

    Read the full Near Blockchain Operating System announcement here

    - - - -

    For Near Day on March 2nd, Near launched alpha.nearpages.wpengine.com — a composable frontend for Web3. It will allow end users to easily and frictionlessly discover all of Web3’s possibilities in one seamless experience. It will also empower developers to create and code interfaces in a single environment with the ability to fork a host of components to build apps faster and more efficiently than ever before.

    - - - -

    Anyone in the Open Web ecosystem can create their own frontends (i.e., their own versions of alpha.nearpages.wpengine.com), compatible with the blockchain of their choice. This means that builders from any ecosystem can create components in just a few lines of code, and take advantage of fast onboarding to help make new and custom Web3 experiences.

    - - - -

    This is an industry first. With the addition of composable frontends to the tech stack, Near now becomes the Blockchain Operating System, allowing seamless, one-time onboarding and removing friction points like making accounts for every experience, while supercharging development from a collection of over 1,800 components. 

    - - - -

    Alpha.nearpages.wpengine.com is the first step in Near’s Blockchain Operating System journey. It’s the Alpha version, where builders can see the frontend come to life. 

    - - - -

    Try out the Alpha at alpha.nearpages.wpengine.com to experience the world’s first Blockchain Operating System — a revolutionary moment in Web3. If you’re a developer, see how easy it is to fork components and create new experiences. If you’re an end user, see how easy it is to explore Web3 experiences, social, and news all in one place. 

    - - - -

    The Blockchain Operating System is Near and it’s here. #NearistheBOS

    - - - -

    Flow Carbon announces carbon-market ecosystem built on Near

    - - - -

    Near and Flowcarbon, the pioneering climate technology company, announced the launch of a carbon-market ecosystem that will enable carbon credits to be traded on the Near network through Flowcarbon’s tokenized carbon credits. With this collaboration, Near will realize its vision of becoming a carbon-negative blockchain. As part of this partnership, Near plans to offset its carbon footprint through Flowcarbon.

    - - - -

    Flow Carbon’s carbon credit token will be launched on both Near and Aurora, an Ethereum Virtual Machine (EVM) built on Near. Validators will be set up for the purpose of offsetting, and large Near holders will be able to stake with these validators.

    - - - -

    Designed to make carbon offsetting more accessible and transparent, this partnership will help Near become carbon-negative, solidifying Near’s position as one of the top players in Regenerative Finance (ReFi). 

    - - - -

    With Stacksports, parents and athletes can mint royalty-free NFTs

    - - - -

    StackNFT is teaming up with Near to offer an NFT platform that allows youth athletes of all ages and skill levels to create and capture their favorite sports memories digitally. 

    - - - -

    Youth sports parents and athletes can now mint royalty-free NFTs effortlessly, without any advanced knowledge of the minting or wallet creation process. Just upload, decorate, and mint. Parents and athletes can also mint NFTs knowing that Near is a carbon-neutral, environmentally friendly blockchain, which supports several forest protection and restoration projects.

    - - - -

    StackNFT is owned and operated by Stack Sports, a global technology leader in SaaS platform offerings for the sports industry, with nearly 50 million users in 35 countries. From little league to the pros, Stack Sports powers the many moments that create the story of your journey through sports.

    - - - -

    Calimero’s private shard infrastructure now live on Near

    - - - -

    Calimero.network, a secure private shard infrastructure provider announced that after several months running in a stealth mode, during which it was tested by beta testers and partners, is ready to serve customers with unique blockchain power and a Web2 interface.

    - - - -

    With roots in the Near Protocol, Calimero is a high performance blockchain that launched on mainnet in 2020. Founded by Sandi Fatic and Mario Halambek, two of the first infrastructure engineers at Near, Calimero allows projects to launch their own shard in a matter of minutes. In launching a private shard, users can be certain of the network’s performance and security, which is managed by Calimero itself.

    - - - -

    Calimero is targeting so-called “Web2.5”, seeking a way to connect Web3 and Web2 worlds. For Web3 startups, Calimero provides a unique way to scale their products and leverage the privacy features, giving access to target Enterprise customers and getting access to new audiences. For classic Enterprises, Calimero offers a way to build new products and onboard chosen Web3 mechanics to find new areas to grow their businesses with growth rates compared to DeFi and NFT markets.

    - - - -

    With the cheapest option starting from less than $300, Calimero provides a flexible model to maximize the cost efficiency by adjusting shard performance according to the load. Calimero also offers a 14-day grace period to test out the platform for startups who are in the very beginning of their journey. 

    - - - -

    Calimero.network is a London-based startup that has recently raised an investment round of $8.5M, co-led by Khosla Ventures, Lyrik Ventures, and Near foundation. 

    - - - -

    Near Foundation Council updates

    - - - -

    Near Foundation announced that Mona El Isa, a founding council member at Near Foundation Council (NFC), has been appointed as Chair.  Marieke Flament, CEO of Near Foundation, has joined as a council member, and will govern alongside existing members Richard Muirhead, Chairman and Managing Partner at Fabric Ventures, and Jason Warner, Managing Director at Redpoint Ventures as well as Sheila Warren advisor to Near Foundation and  CEO of the Crypto Council for Innovation. 

    - - - -

    Mona takes the place of Illia Polosukhin, co-founder of Near Protocol and CEO of Pagoda (formerly Near Inc.), who has stepped down as Chair and member of the  Near Foundation Council (NFC) to focus on Web3 ecosystem development and participation.  

    - - - -

    “It was an honor to serve as Chair and Council Member of the NEAR Foundation Council over the past two years,” said Illia Polosukhin. “I’m stepping down in order to focus fully on the development of products and technology at Pagoda, which is critical to the continuing success of the NEAR Ecosystem.”

    - - - -

    “I will continue to be involved with NFC in my capacity as Pagoda CEO,” he added. “From a governance perspective, my departure increases the council’s independence and further decentralizes leadership and decision-making in the NEAR Ecosystem. I welcome Mona’s appointment as the new Chair and Marieke’s as council member to continue steering the Foundation in its mission of supporting NEAR’s growth.”

    -

    The post Near at ETHDenver Highlights  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/few-and-far/index.html b/public/blog/tag/few-and-far/index.html deleted file mode 100644 index e278ddfdd..000000000 --- a/public/blog/tag/few-and-far/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Few and Far Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/fitness/feed/index.xml b/public/blog/tag/fitness/feed/index.xml deleted file mode 100644 index ca8cb9159..000000000 --- a/public/blog/tag/fitness/feed/index.xml +++ /dev/null @@ -1,99 +0,0 @@ - - - - Fitness Archives – NEAR Protocol - - /blog/tag/fitness/ - - Tue, 17 Oct 2023 13:15:24 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Fitness Archives – NEAR Protocol - /blog/tag/fitness/ - 32 - 32 - - - Sweat Economy Launches in the USA, Opening the Door to Millions of New Web3 Users  - /blog/sweat-economy-launches-in-the-usa-opening-the-door-to-millions-of-new-web3-users/ - - - Tue, 17 Oct 2023 14:00:00 +0000 - - - - - - /?p=20973 - - Sweat Economy, creators of $SWEAT and leaders in helping the world become more active, is launching in the United States …

    -

    The post Sweat Economy Launches in the USA, Opening the Door to Millions of New Web3 Users  appeared first on NEAR Protocol.

    -]]>
    - Sweat Economy, creators of $SWEAT and leaders in helping the world become more active, is launching in the United States for the first time. 

    - - - -

    The decision to expand into the new territory was supported by a historic on chain vote by the Sweat Economy Community, and saw more than 380,000 community members take part in the decision. 

    - - - -

    The announcement will pave the way for millions of users in the United States, the Bahamas, Barbados, Botswana, Ghana, Jamaica, Pakistan, Zimbabwe, and Uganda, to be able to tokenize their physical activity within the Sweat Economy ecosystem — adding momentum to the burgeoning global movement economy. 

    - - - -

    Sweat Economy is a Web3 evolution of the Web2 health & fitness app — Sweatcoin — which now has more than 145 million registered users worldwide. It started in September 2022 when the project launched its crypto token $SWEAT alongside the Sweat Wallet mobile app. $SWEAT is effectively a tokenized form of physical activity; a new asset class that did not exist up to this moment, while Sweat Wallet is the mobile application that gives you the best experience of collecting and managing your $SWEAT. To start minting $SWEAT, users need to install the Sweatcoin app,  opt-in to “Walk into Crypto” and then install the Sweat Wallet app. 

    - - - -

    This means that instead of earning centralized sweatcoin points, users earn $SWEAT — a crypto token that represents the value of their physical activity and is traded on 20+ exchanges worldwide. Accrued $SWEAT can then be used in various ways, including deposited into “Growth Jars” to be saved and multiplied, and unlock exclusive rewards within the ecosystem. Users can also compete in the free-to-play Sweat Hero NFT game to win additional $SWEAT, while also having the option to purchase $SWEAT in-app using the MoonPay fiat on-ramp 

    - - - -

    “It’s incredible to see the progress of Sweat Economy as it enables us to achieve our mission to bring millions into the open web,” says Chris Donovan, CEO of the NEAR Foundation. 

    - - - -

    “As an industry leader in tokenizing physical activity, Sweat Economy’s launch into the U.S. represents a major milestone not just for the project, but for the entire NEAR ecosystem. It also demonstrates the incredible scalability of the NEAR Protocol, which has been able to seamlessly support one of the largest consumer apps in Web3 operating at a significant scale.”

    - - - -

    Since $SWEAT launched on NEAR Protocol, it has become one of the largest Dapps in the Web3 ecosystem, with more than 20 million wallets and more than 100,000 transactions per day. The Sweat Wallet app quickly became the number one most downloaded Finance app in more than 50 countries. This follows Sweat’s success as the fastest IDO ever to sell out on the DAO Maker platform. It has become one of the largest Web3 on-ramps in history. 

    - - - -

    “We are thrilled to finally bring the Sweat Economy experience to the United States and 8 other markets. Our community was making it loud and clear that they wanted and needed us there and we are happy that we finally can deliver for them,” says Oleg Fomenko, co-founder of Sweat Economy.

    - - - -

    “We are excited that residents of these countries will also be able to literally WALK INTO CRYPTO! Our global community of users has been instrumental in supporting this launch and we are thankful for their participation in the biggest ever governance vote that allocated nearly 700 million $SWEAT to the new community members in consideration for their verified physical activity. By expanding into these markets, we aim to inspire a new wave of physical activity and incentivize individuals to lead healthier lives, while paving the way for the next billion users looking to participate in the movement economy.”

    - - - -

    Sweat Economy’s announcement is another milestone as the NEAR community works hard to onboard one billion users to Web3. By choosing to build on NEAR, Sweat Economy will be well placed to leverage the protocol’s incredibly secure and infinitely scalable sharding infrastructure — unlocking the opportunity to onboard millions of potential users into a burgeoning Web3 movement economy.

    - - - -

    If you have yet to join the economy of movement, head to your mobile app store and download the Sweatcoin and Sweat Wallet apps today and see how millions of people are earning crypto just by being physically active. Join NEAR and Sweat Economy in building a healthier collective future!

    -

    The post Sweat Economy Launches in the USA, Opening the Door to Millions of New Web3 Users  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/fitness/index.html b/public/blog/tag/fitness/index.html deleted file mode 100644 index f3b651dc1..000000000 --- a/public/blog/tag/fitness/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Fitness Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/flipside/feed/index.xml b/public/blog/tag/flipside/feed/index.xml deleted file mode 100644 index 902c9cac1..000000000 --- a/public/blog/tag/flipside/feed/index.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - Flipside Archives – NEAR Protocol - - /blog/tag/flipside/ - - Mon, 07 Aug 2023 15:35:34 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Flipside Archives – NEAR Protocol - /blog/tag/flipside/ - 32 - 32 - - - Case Study: Flipside Crypto on Building an Analytics Platform on the BOS - /blog/case-study-flipside-crypto-on-building-an-analytics-platform-on-the-bos/ - - - Thu, 03 Aug 2023 02:30:00 +0000 - - - - /?p=20764 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: Flipside Crypto on Building an Analytics Platform on the BOS appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

    - - - -

    In the latest NEAR Foundation Case Study video, we hear Flipside Crypto’s Evan “Captain” Owens and GJ Flannery. Not only is Flipside a team building innovative on-chain data and analytics solutions on NEAR, but they were one of the first ecosystem projects to build on the Blockchain Operating System (BOS). 

    - - - -

    In this case study video, GJ Flannery (Growth & Community) and Captain Owens (Strategic Partnerships) talk about the platform’s ecosystem of analytics and developers building widgets on the BOS with Flipside’s on-chain data. If you’re a founder or developer looking to hear directly from developers who’ve built on the BOS, then this Flipside Case Study video is not to be missed. 

    - - - -

    - - - -
    - -
    -

    The post Case Study: Flipside Crypto on Building an Analytics Platform on the BOS appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/flipside/index.html b/public/blog/tag/flipside/index.html deleted file mode 100644 index cbdfa71ac..000000000 --- a/public/blog/tag/flipside/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Flipside Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/founders/feed/index.xml b/public/blog/tag/founders/feed/index.xml deleted file mode 100644 index 71f2b79d2..000000000 --- a/public/blog/tag/founders/feed/index.xml +++ /dev/null @@ -1,187 +0,0 @@ - - - - Founders Archives – NEAR Protocol - - /blog/tag/founders/ - - Wed, 01 Nov 2023 18:46:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Founders Archives – NEAR Protocol - /blog/tag/founders/ - 32 - 32 - - - NEARCON ’23: Developer, Founder, and Creative Talks You Shouldn’t Miss - /blog/nearcon-23-developer-founder-and-creative-talks-you-shouldnt-miss/ - - - Tue, 31 Oct 2023 19:39:29 +0000 - - - - - - /?p=21022 - - NEARCON ’23 in scenic Lisbon, Portugal is your go-to event for everything AI, the open web, and more. Whether you’re …

    -

    The post NEARCON ’23: Developer, Founder, and Creative Talks You Shouldn’t Miss appeared first on NEAR Protocol.

    -]]>
    - NEARCON ’23 in scenic Lisbon, Portugal is your go-to event for everything AI, the open web, and more. Whether you’re a developer, entrepreneur, or artist, there’s a session for you. Web3 regulatory aficionados, we’ve got you covered too (more on that later). 

    - - - -

    Here’s a rundown of sessions that are a must-see.

    - - - -

    Developer track: build better on NEAR

    - - - -

    NEAR: The Open Web Stack 

    - - - -

    NEAR co-founder Illia Polosuhin reveals game-changing updates for the NEAR ecosystem. A lot of new and exciting NEAR products and tools are in the works for developers. So, if you’re a dev, you won’t want to miss this talk from Illia. 

    - - - -

    Why Build Web3 Games 

    - - - -

    Hosted by PlayEmber’s Hugo Furneaux, this panel dissects the massive potential of gaming on the open web. Learn about player-owned economies and why you should consider NEAR for your next gaming project. An essential session for forward-thinking game developers.

    - - - -

    Unlocking NEAR Data 

    - - - -

    Data extraction got you puzzled? Pavel Kudinov, senior engineering manager at NEAR, will walk you through using SQL queries on NEAR BigQuery Datasets and the NEAR Query API to build and analyze. This is the toolkit you’ve been waiting for.

    - - - -

    Inside the BUILD Incubator 

    - - - -

    Will Russell, Michael Yu, and Max Mizzi from student hackathon league Major League Hacking take a deep dive into the BUILD Incubator Fellowship. Hear firsthand experiences and gather invaluable insights that could jump-start your open web development journey.

    - - - -

    Entrepreneurial track: jumpstart your journey

    - - - -

    Building Web3 Communities 

    - - - -

    This panel brings together experts from community building collective KryptoSeoul, decentralized identity project Galxe, NEAR DevHub, and Web incubator CryptoOracle Collective to discuss the art of fostering a vibrant, diverse community around any project.

    - - - -

    CryptoEconomics 101 

    - - - -

    Lisa Jy Tan, CEO of tokenomics consulting firm Economics Design, dives into the world of cryptoeconomics, helping you understand the fundamentals and real-world applications of economic principles, drivers, and incentives at play in the open web.

    - - - -

    Hiring Smart in Web3 

    - - - -

    Hiring in the open web is both exciting and fraught with potential landmines. Dan Eskow, founder of specialized Web3 talent agency Up Top, will share valuable tips on sourcing top talent, effective company branding, and red flags to look out for during the interview process.

    - - - -

    Funding Trends in Web3 

    - - - -

    A frontline perspective on open web investment from venture capital firms Accomplice VC, a_capital, RockawayX, and Generative Ventures. The expert VC panel will offer insights into funding trends and standout pitch decks to help founders stay ahead of the curve.

    - - - -

    Creative track: redefining art, marketing, and gaming

    - - - -

    Asia’s Impact on Web3 Gaming 

    - - - -

    This panel explores Asia’s key role in Web3 gaming, particularly Korea’s leadership in the space. Hear from Jay Hoonjai Lee, CEO of Vortex Gaming DAO, and NEAR Korea Hub’s general manager Scott Lee on what the entire blockchain gaming space can learn from Asia.

    - - - -

    Marketing in the Open Web 

    - - - -

    Learn how decentralization and the open web is changing marketing and branding from Lex B., co-founder of NEAR Studio, a creative agency dedicated to the NEAR ecosystem. Everything you need to know about marketing in the open web, including real-life case studies and successes.

    - - - -

    Advertising in Web3 

    - - - -

    Anjali Young from Collab.Land, an innovative project helping implement token-gated communities, discusses how Web3 is transforming the advertising landscape, allowing for more effective brand-customer engagement and immediate feedback.

    - - - -

    The Power of NFTs 

    - - - -

    Explore how NFTs are driving decentralized creativity, redefining loyalty, and reshaping cultural norms. Hear from the likes of Wilson Lee, co-founder of blockchain-based carnival app TheFunPass™, and Stipe Plejic, CEO of social NFT marketplace Endemic.

    - - - -

    NEARCON ‘23: get in on the action

    - - - -

    If you’re passionate about the transformative power of the open web, NEARCON ’23 is a can’t-miss conference. We’ve carefully curated speaker tracks and sessions to fuel your imagination and skills, whether you’re a developer, entrepreneur, or creative mind. And the policy-minded need not fret, there’s a special Regulatory Track chock full of insights about evolving legal frameworks, governance, and more. 

    - - - -

    With NEAR’s unique approach — super cheap, super fast, super secure — you’ll discover how the open web is solving real-world problems today.

    - - - -

    So why wait? Register for NEARCON ’23 now to secure your spot!

    - - - -

    Special offers are available for Ukrainians, students in Spain and Portugal, and hackathon registrants. Head over to those pages and register for your free NEARCON ‘23 pass!

    -

    The post NEARCON ’23: Developer, Founder, and Creative Talks You Shouldn’t Miss appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/founders/index.html b/public/blog/tag/founders/index.html deleted file mode 100644 index fd4fe796a..000000000 --- a/public/blog/tag/founders/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Founders Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/funding/feed/index.xml b/public/blog/tag/funding/feed/index.xml deleted file mode 100644 index 307dbc6be..000000000 --- a/public/blog/tag/funding/feed/index.xml +++ /dev/null @@ -1,228 +0,0 @@ - - - - Funding Archives – NEAR Protocol - - /blog/tag/funding/ - - Mon, 10 Apr 2023 20:57:45 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Funding Archives – NEAR Protocol - /blog/tag/funding/ - 32 - 32 - - - Update on Near Decentralized Funding, DAOs, and Accelerator - /blog/update-on-near-decentralized-funding-daos-and-accelerator/ - - - Fri, 24 Feb 2023 16:00:00 +0000 - - - - - /?p=19785 - - Hello Nearians, We are more than halfway through the first quarter of 2023 and wanted to share a quick update …

    -

    The post Update on Near Decentralized Funding, DAOs, and Accelerator appeared first on NEAR Protocol.

    -]]>
    - Hello Nearians,

    - - - -

    We are more than halfway through the first quarter of 2023 and wanted to share a quick update on the progress NEAR Foundation has made on community funding and accelerator strategies.

    - - - -

    First, if you are a project building on NEAR or interested in building on NEAR and need some immediate support, please fill out this Project Support Form. NEAR Foundation will connect you with the appropriate person or organization who can assist. 

    - - - -

    Decentralizing Funding

    - - - -

    Important changes in the grant program were announced at the start of January, highlighting the Foundation’s goal for a more decentralized funding process by handing over decision making to community DAOs. What follows is the status of the initial DAOs. 

    - - - - - - - - - - - - - - - -
      -
    • NEAR Digital Collective (NDC) is a grassroots movement by the NEAR Community to decentralize. NDC V0 Governance is coming soon! The initial milestone is for the Community Treasury to come online, and it is actively being finalized. V0 focuses on funding the GrassrootsDAOs listed above: Marketing, Developer, and Creatives. - -
    • -
    - - - -

    The Accelerator

    - - - -

    From the accelerator side, NEAR Foundation’s past experience with the grants program showed us that founders and teams are in need of a variety of support in order to be successful and take their project to the next level. 

    - - - -

    To that end, the Foundation’s strategy consists of three elements

    - - - -
      -
    1. We are building a product on NEAR Discovery that will allow founders to connect with a range of contributors (e.g., investors, subject matter experts in areas like legal and finance) who can support them in their journey. We are launching an MVP in early March. -
        -
      1. If you are a founder, investor, mentor, or subject matter expert interested in being a beta tester, please fill out this form
      2. - - - -
      3. If you are a founder interested in participating in paid user research, please fill out this form.
      4. -
      -
    2. -
    - - - -
      -
    1. We recently made an open call to partner with accelerator programs that can help us fast track support needs for projects. We will be releasing additional open calls in the coming weeks as we continue building out the support network available for founders. These open calls will be for: -
        -
      1. Engineering support resources
      2. - - - -
      3. Talent / Recruitment platforms and services
      4. - - - -
      5. Legal platforms and services
      6. - - - -
      7. Back office accounting platforms and services
      8. - - - -
      9. Marketing services
      10. - - - -
      11. Product management services
      12. -
      -
    2. -
    - - - -
      -
    1. We are continuously developing and identifying learning content and tooling that are most helpful for early stage founders (e.g., accounting software geared towards Web3 teams, Go To Market exemplars, etc.). These resources will be available within the product.
    2. -
    - - - -

    Take 1 minute to help us pick a name for the Accelerator here (survey closes on March 1, 2023)!

    - - - -

    If you have any questions on decentralized funding, the DAOs, and Accelerator program, please reach out to the Community Team on Telegram, Discord, and other social media channels used by the NEAR community. 

    - - - -

    And again, if your project is building on NEAR or interested in doing so and you are in need of some immediate support, fill out this Project Support Form. NEAR Foundation will connect you with the appropriate person or organization who can assist. 

    -

    The post Update on Near Decentralized Funding, DAOs, and Accelerator appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/funding/index.html b/public/blog/tag/funding/index.html deleted file mode 100644 index 948ac4958..000000000 --- a/public/blog/tag/funding/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Funding Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/galxe/feed/index.xml b/public/blog/tag/galxe/feed/index.xml deleted file mode 100644 index 3aa7b8272..000000000 --- a/public/blog/tag/galxe/feed/index.xml +++ /dev/null @@ -1,97 +0,0 @@ - - - - Galxe Archives – NEAR Protocol - - /blog/tag/galxe/ - - Tue, 20 Jun 2023 13:52:56 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Galxe Archives – NEAR Protocol - /blog/tag/galxe/ - 32 - 32 - - - NEAR and Galxe Team Up for SPACE ID Voyage Season 2 - /blog/near-and-galxe-team-up-for-space-id-voyage-season-2/ - - - Thu, 08 Jun 2023 16:00:00 +0000 - - - - /?p=20605 - - NEAR Foundation and Galxe —the  leading platform for Web3 community building — are joining forces to provide new and existing Web3 …

    -

    The post NEAR and Galxe Team Up for SPACE ID Voyage Season 2 appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation and Galxe —the  leading platform for Web3 community building — are joining forces to provide new and existing Web3 users with a seamless onboarding experience for SPACE ID’s renewed referral program, “Voyage Season 2 – Calling”. 

    - - - -

    This new partnership is significant, as Galxe is the first major Web3 partner launching a component on NEAR’s Blockchain Operating System (BOS). The BOS is an OS on which developers can effortlessly build and distribute chain-agnostic, decentralized apps and experiences on the  Open Web.  

    - - - -

    SPACE ID is a universal name service network with a one-stop identity platform to discover, register, trade, and manage Web3 domains. It also includes a Web3 Name SDK & API for developers across blockchains and provides a multi-chain name service for everyone to easily build and create a web3 identity. Established in the third quarter of 2022, SPACE ID quickly took the market by storm with its .bnb domain name service, as well as more recently with .arb name service. 

    - - - -

    How the BOS will power the SPACE ID Voyage decentralized frontend

    - - - -

    NEAR’s BOS will be powering the decentralized frontend for SPACE ID’s Voyage, a referral program where users invite others to register a .bnb or .arb address and earn special Voyage Boxes in return. Starting on June 7th, users will be able to participate in Space ID’s Voyage program through near.org and register .bnb names — enjoying a seamless, one-stop, decentralized experience powered by BOS. 

    - - - -

    Before the BOS integration, participating in quests like Voyage could be a complicated process. Users had to navigate through multiple pages, going back and forth to sign-in, register a domain, check eligibility, and claim rewards separately. A tech stack for decentralized and user-friendly frontends, BOS enables a unified interface where users can do all of the above with a single sign-in — directly in-app — so that users never have to leave the page on which they started.

    - - - -

    How SPACE ID uses BOS’s composable components

    - - - -
    - - - -

    The BOS components for SPACE ID are created independently and composed inside another composite component. This, in and of itself, clearly demonstrates the true composability strengths of BOS. 

    - - - -

    And thanks to BOS’s permissionless nature, developers are able to fork the components and embed them into their BOS components or websites. Users are then able to view the source code for each of the these components both on-chain and in-browser — improving transparency and security at every step of the user journey. 

    - - - -

    Discover Galxe’s exciting SPACE ID Campaign today. Register a .bnb domain name and claim a Voyage Box today on near.org

    - - - -

    Stay tuned for more exciting NEAR Foundation and Galxe campaigns to come — powered by BOS! 

    -

    The post NEAR and Galxe Team Up for SPACE ID Voyage Season 2 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/galxe/index.html b/public/blog/tag/galxe/index.html deleted file mode 100644 index db681ae58..000000000 --- a/public/blog/tag/galxe/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Galxe Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/gamefi/feed/index.xml b/public/blog/tag/gamefi/feed/index.xml deleted file mode 100644 index faac7646a..000000000 --- a/public/blog/tag/gamefi/feed/index.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - GameFI Archives – NEAR Protocol - - /blog/tag/gamefi/ - - Mon, 03 Apr 2023 19:39:48 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - GameFI Archives – NEAR Protocol - /blog/tag/gamefi/ - 32 - 32 - - - NEAR and WEMADE Team Up to Accelerate Mainstream Web3 Adoption - /blog/near-and-wemade-team-up-to-accelerate-mainstream-web3-adoption/ - - - Thu, 23 Mar 2023 13:00:00 +0000 - - - - - /?p=20318 - - The Near Foundation is excited to announce that it’s partnering with WEMADE, one of the largest publicly-listed gaming companies in …

    -

    The post NEAR and WEMADE Team Up to Accelerate Mainstream Web3 Adoption appeared first on NEAR Protocol.

    -]]>
    - The Near Foundation is excited to announce that it’s partnering with WEMADE, one of the largest publicly-listed gaming companies in South Korea. A leading game developer in South Korea for over 20 years, WEMADE will be vital in Near’s push toward mainstream adoption of Web3.

    - - - -

    - - - -

    Near and WEMADE will support the development of blockchain apps in Korea as well as other markets. Near and WEMADE will also jointly work on mutual brand awareness, and collaborate on a number of Web3 community events and business opportunities.  

    - - - -

    - - - -

    “WEMADE and Near share a similar vision of enabling and accelerating the mainstream adoption of blockchain to create a future of nearly limitless potential use cases and benefits for all of us across many different areas of our daily lives,” said Shane Kim, CEO, WEMIX and Vice President, WEMADE. 

    - - - -

    - - - -

    “In order to achieve that vision, we must make it easier, faster, and more cost-effective for developers to onboard off-chain apps, organizations, and startups, and are confident that Near is ideally positioned to do so.”

    - - - -

    Onboarding end users and developers into Web3

    - - - -

    The partnership will do much to encourage developers, including game designers, to build on the Near. Beyond co-hosting community events like offline hackathons and boot camps, Near and WEMADE will work together on mutual brand awareness, invest in research and collaboration on cross-chain initiatives, and be on the lookout for potential Web3 business opportunities and founders. 

    - - - -


    A renowned leader in game development, WEMADE is at the forefront of a generational shift as the gaming industry pivots to blockchain technology. Its WEMIX subsidiary is building an experience-based, platform-driven, and service-oriented mega-ecosystem — one that will give users everywhere access to a wide array of easy-to-use Web3 apps and experiences.

    - - - -

    - - - -

    “We’re thrilled to be partnering with WEMADE as part of our shared vision towards a decentralized future for the gaming industry,” said Commenting on the partnership, Marieke Flament, CEO of the Near Foundation. “By joining forces, we are confident in our ability to accelerate the development of cutting-edge solutions that meet the growing needs of gamers and developers in the Web3 space.”

    - - - -

    - - - -

    The Near-WEMADE partnership marks the second major Web3 gaming partnership from the Near Korea Hub. The first, a partnership with BORA — the Web3 GameFi platform of Kakao Games — will also be vital in accelerating the mainstream adoption of Web3.  

    -

    The post NEAR and WEMADE Team Up to Accelerate Mainstream Web3 Adoption appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Near Partners with BORA, Web3 GameFi Platform of Kakao Games - /blog/near-partners-with-bora-one-of-koreas-largest-gamefi-platforms/ - - - Mon, 06 Mar 2023 14:00:00 +0000 - - - - - - - /?p=20253 - - Near is excited to announce a new strategic partnership with BORA, a Web3  gaming subsidiary of METABORA. Near and BORA …

    -

    The post Near Partners with BORA, Web3 GameFi Platform of Kakao Games appeared first on NEAR Protocol.

    -]]>
    - Near is excited to announce a new strategic partnership with BORA, a Web3  gaming subsidiary of METABORA. Near and BORA will support each other in spreading local brand awareness, invest in research and collaboration on cross-chain, host events, and generate Web3 opportunities in Korea. 

    - - - -

    An affiliate of Kakao Games and its parent company BORANETWORK, BORA is focused on game development and blockchain-based gaming ecosystems. Its mobile gaming titles include Friends Popcorn, Friends Town, and Friends Shot

    - - - -

    “We are thrilled to be working with Near and welcome their expertise, knowledge and network as we aim to transform the world of Web3 gaming,” said Vincent Lim, a CBO of BORA. “Together with Near we will not only explore cross-promotion opportunities, but also seek future collaborations on IP-based game development that will lead to mass adoption and give us the competitive edge we need to position ourselves as leading players in the web3 gaming space.”

    - - - -

    Since the launch of Near’s Korean Hub in November of 2022, BORA has been steadily building up awareness throughout South Korea, while focusing on Web3  innovation, business development, education, and talent. The hub is led by entrepreneurs Scott Lee and Ben Kang — both influential figures within South Korea’s growing blockchain community.

    - - - -

    “One of the big ambitions of the hub  is  to tap into the country’s active gaming community, and to  bring  amazing projects and creators to the Near ecosystem.” said Robbie Lim, GM, Partners & International at Near. “ The partnership with BORA is our first major win – and a big step forward for NEAR as it accelerates its ambition to become the go to layer 1 for the Web3 gaming community.” 

    -

    The post Near Partners with BORA, Web3 GameFi Platform of Kakao Games appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/gamefi/index.html b/public/blog/tag/gamefi/index.html deleted file mode 100644 index e1219547c..000000000 --- a/public/blog/tag/gamefi/index.html +++ /dev/null @@ -1,2 +0,0 @@ -GameFI Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/gaming/feed/index.xml b/public/blog/tag/gaming/feed/index.xml deleted file mode 100644 index 176c7776f..000000000 --- a/public/blog/tag/gaming/feed/index.xml +++ /dev/null @@ -1,845 +0,0 @@ - - - - Gaming Archives – NEAR Protocol - - /blog/tag/gaming/ - - Tue, 12 Sep 2023 07:21:32 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Gaming Archives – NEAR Protocol - /blog/tag/gaming/ - 32 - 32 - - - NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 - /blog/near-apac-day-one-scaling-local-adoption-regional-regulation-and-ai-in-focus/ - - - Sat, 09 Sep 2023 12:14:36 +0000 - - - - - - - - - /?p=20835 - - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. …

    -

    The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

    -]]>
    - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. Held in conjunction with the NEAR Vietnam community and NEAR Foundation, NEAR APAC is showcasing the vibrant crypto and Web3 community across the region as well as the potential of the B.O.S. and Open Web both locally and globally.

    - - - -

    The day was charged with excitement, drawing over 8,000 attendees from various corners of the APAC region and beyond. With Web3 thought leaders, innovators, and enthusiasts converging in Vietnam, Day One of NEAR APAC kicked off with a slew of riveting discussions, industry insights, and speculations on the future of the Open Web with a focus on APAC.

    - - - -

    From discussions around regional growth and investment potential to how AI and blockchain will transform the future of work, here’s everything that went down at an incredible start to NEAR APAC.

    - - - -

    Setting the stage for NEAR APAC with Vietnam in focus

    - - - -

    The event kicked off with a focus on southeast Asia, with NEAR’s Vietnam country director Riley Tran welcoming attendees and providing context as to Asia’s critical role in the overarching development and expansion of Web3. Tran was followed by two NEAR luminaries, CEO Marieke Flament and co-founder Illia Polosukhin.

    - - - -

    “Asia’s young demographics and rapid digital growth, especially in Vietnam, position it as a leader in crypto and blockchain growth,” Riley explained. “With over 100 million new internet users in just three years, Asia’s momentum in Web3 is accelerating”

    - - - -

    Marieke added that the overall NEAR ecosystem remains strong with over 29M active wallets and 650K daily active accounts. She added that a collaborative approach to building tomorrow’s Open Web is critical for tackling significant societal and digital challenges.

    “Today’s Web 2.0 is closed and siloed, with the prevailing digital culture being a toxic dialectic,” Marieke expressed. “But the value loop of an Open Web holds immense promise. We’re already seeing how projects like KaiKai, SWEAT, and PlayEmber can move the needle in the right direction.”

    - - - -

    Echoing Mariek’s sentiment, Illia emphasized that it’s not necessarily about championing a specific blockchain, but about creating a common layer and interface for the Open Web. This is precisely what the Blockchain Operating System (B.O.S.) is in the process of achieving.

    - - - -

    “Looking forward, tech isn’t the only focus,” said Illia. “It’s about blending scalable solutions with user-centric experiences, with the B.O.S. becoming the essential entry point into Web3 for both users and developers.”

    - - - -

    Asia’s role in mainstream adoption and regulatory hurdles

    - - - -

    The push for mainstream blockchain adoption in APAC was also in focus on Day One, with NEAR Foundation CMO Jack Collier leading a panel discussion on current adoption challenges and how APAC can potentially lead the way in overcoming them.

    - - - -

    “I’m extremely bullish on gaming as a key part of mass adoption,” opined Don Pham, Google Cloud’s regional Web3 specialist. “Vietnam is the birthplace of Axie Infinity, which is just the beginning of blockchain gaming’s potential. Use cases like loyalty, gaming, and music NFTs combined with better UX will likely be the path forward.”

    - - - -

    The discussion dove deeper into the importance of user experience in the adoption of blockchain. Marieke reiterated that while technology forms the backbone, the real test will be simplifying the user journey, which can significantly hasten adoption across the APAC region as well as globally.

    - - - -

    Regulation was also in focus with a panel about blockchain policies and APAC’s vision for governments and associations. Mary Beth Buchanan, a board member of the Cardano Foundation, drove home the need for regulatory clarity while discussing regional frameworks in countries like Hong Kong.

    - - - -

    “The biggest challenge is not necessarily regulation, but lack of clarity,” observed Buchanan. “If regulations are unclear that will cause investors not to want to invest in the space. Builders become hesitant to build and users aren’t going to know what the rules are. Regulators need to recognize that clarity is what everyone wants.”

    - - - -

    Spotlight on Artificial Intelligence during the afternoon sessions

    - - - -

    Day One of NEAR APAC dedicated a significant chunk of its schedule to exploring the intricate interplay between AI and blockchain, particularly their role in APAC’s future technology and Web3 landscape. Illia took the stage just after the lunch break to discuss the Convergence of AI and Web3, diving deep into AI-empowered DAO and the future of AI-assisted work.

    - - - -

    “While technologies like ChatGPT have found product market fit, much of AI is still siloed and doesn’t empower open source communities and projects,” Illia posited. “Web3 can operate in the middle, with AI models incorporating all participants and data sources. DAOs, for example, can be co-piloted by AI to achieve goals and KPIs faster and more efficiently.”

    - - - -

    In the following panel discussion entitled “The Roles of Blockchains in an AI World,” Illia was joined by several AI and blockchain experts from the APAC region. One of the more distinguished panel members was Dr. Nguyen An Khuong, a lecturer and blockchain researcher from Ho Chi Minh University of Technology, who provided an academic perspective. 

    - - - -

    “We have a lot of research endeavors in Vietnam around ensuring AI’s ethical applications using blockchain,” commented Dr. Nguyen. “We’re looking at how transparency and accountability in AI decisions can be drastically improved with blockchain technology. Combining a neutral AI with a blockchain’s public ledger could enhance the ecosystem and foster wider adoption.”

    - - - -

    Illia drove home that the potential “Skynet” scenario of AI taking over the world is mostly a projection of what humans might do if they were given supercomputing powers. In reality, developments like the B.O.S. and NEAR Tasks will aid humans in success and productivity, with AI agents acting as middlemen for assistance, sourcing, and even creativity.

    - - - -

    Day One of the first-ever NEAR APAC was a rousing success, with these highlights just being the tip of the iceberg. The crowd was treated to bánh mì’s and Manga cosplay during lunch, B.O.S. building and gaming workshops on the Builder Stage, and an awe-inspiring NFT gallery from APAC creators.

    - - - -

    As the sun sets in Saigon, the NEAR Foundation couldn’t be more appreciative of the Vietnamese crypto community. The momentum rolls on tomorrow with Day Two, so stay tuned for more updates and insights around emerging APAC trends in Web3, how blockchain gaming is taking off in Asia-Pacific, and local DeFi developments. 

    - - - -

    If Day One was any indication, the NEAR community’s growth, presence, and development in APAC will only continue accelerating through 2023 and beyond!

    -

    The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation PR Roundup for June - /blog/near-foundation-pr-roundup-for-june/ - - - Tue, 04 Jul 2023 00:00:00 +0000 - - - - - - - /?p=20694 - - As June comes to a close, summer in the NEAR ecosystem is heating up with a wave of new announcements, …

    -

    The post NEAR Foundation PR Roundup for June appeared first on NEAR Protocol.

    -]]>
    - As June comes to a close, summer in the NEAR ecosystem is heating up with a wave of new announcements, events, media appearances, and more. Not to mention a few notable celebrities bringing some star power into NEAR’s orbit. Here’s a rundown of all the newsworthy NEAR happenings over the past month.

    - - - -

    Sammy Hagar and Guy Fieri jump into NFTs on NEAR

    - - - -

    In the US, Grammy-winning musician Sammy Hagar and celebrity chef Guy Fieri joined the NEAR ecosystem, teaming up with NEAR on-ramp Trident3 to launch an NFT loyalty program. The Santo Spirits Club loyalty program, as reported by Coindesk and Decrypt, will enable tequila fans to earn on-chain tiered perks and an opportunity to win a virtual tasting with the duo.

    - - - -

    Mirae Asset, MARBLEX, and Vortex boost South Korea

    - - - -

     Over in Asia, NEAR Foundation continued to make inroads in South Korea. Mirae Asset, a subsidiary of Asia’s largest financial group, announced a partnership to research Web3’s role in global business. Per  Bloomberg, Mirae Asset will collaborate with NEAR Foundation to strengthen the Web2/3 business network and identify opportunities for real-world blockchain value creation.

    - - - -

    Meanwhile,  Blockchain Reporter broke that Marblex – a Korean blockchain infrastructure provider for high-quality gaming – will integrate NEAR protocol with Marblex’s gaming universe, enhancing user convenience and Web3 adoption. NEAR will integrate with MARBLEX’s WARP Bridge, taking advantage of NEAR’s high scalability and speed to improve the gaming experience in Web3. The partnership will also enable joint marketing initiatives and events, boosting awareness of the global blockchain gaming market. 

    - - - -

    Then there’s Vortex Gaming, a Web3 subsidiary of Inven, the largest game media community in Korea. Coverage by European Gaming reported that Vortex will leverage NEAR protocol to integrate a  gaming community encompassing Web2 and Web3 by building innovative infrastructure for gaming developers. The NEAR Foundation and Inven will also collaborate on marketing and business development, adding to NEAR’s exciting Web3 gaming ecosystem.  

    - - - -

    Skoda launches metaverse for auto fans in India

    - - - -

    Czech Automobile Manufacturer Skoda entered the Metaverse in the world’s most populous country, giving users an opportunity to explore, collect and own digital art pieces on NEAR. The platform, as reported by Cointelegraph and Entrepreneur India, will enable NFT owners to access exclusive perks and rewards, while allowing owners to trade digital artwork in the future. 

    - - - -

    SailGP christens The Dock for decentralized fandom

    - - - -

    In more partnership news, the Global racing league SailGP and Oracle announced the launch of “The Dock”, a decentralized fan engagement platform powered by Oracle and NEAR’s ongoing partnership to bridge the worlds of Web2 and Web3. As reported by SailWeb, The Dock will revolutionize how fans follow SailGP, increasing engagement through exclusive content and enabling fans to earn points, redeemable for exciting rewards including VIP access to SailGP events and more.

    - - - -

    Alibaba Cloud and Women in Web3 headline Collision

    - - - -

    The NEAR ecosystem took over Toronto this month, showcasing the best of BOS at Collision 2023,  one of the world’s biggest tech conferences.  During the event, the NEAR Foundation announced a groundbreaking partnership with Alibaba, enabling developers across Asia to launch new NEAR validators with Alibaba Cloud’s infrastructure as a service. 

    - - - -

    The partnership was covered in myriad outlets such as Coindesk, Journal du Coin, and BTC Echo. Partnering with Alibaba means the NEAR ecosystem will have access to Remote Procedure Calls (RPC) and enable users to interact with NEAR’s Blockchain Operating System while using Alibaba Cloud’s infrastructure. 

    - - - -

    The NEAR Foundation also released the Women in Web3 Changemakers List 2023, celebrating the achievements of extraordinary women throughout the Web3 ecosystem. As reported by Tech Funding News, the ten women were selected by the public and hail from all corners of the globe, following hundreds of nominations from the Web3 community. 

    - - - -

    Leadership viewpoints on media and social fairness

    - - - -

    Illia Polosukhin, Founder of NEAR and CEO of Pagoda, took the time to write a thought leadership piece in Blockworks about crypto’s potential to transform how we interact with the media. Illia sets out the emerging problem with the status quo: bad actors are beginning to utilize generative AI to dramatically scale up misinformation campaigns. 

    - - - -

    However, Illia explains that blockchain-based “sign-and-trace” systems can enable the public to reliably source and validate real news stories, with a legitimate trail of sources available online.

    - - - -

    CEO of NEAR Foundation Marieke Flament also penned an article for London’s leading daily business paper CityAM about using Web3 to build a fair and inclusive digital world.  “Too often technology has only benefited the few: those who have money, those who have power, or those of a certain gender, ethnicity, or skin color.

    - - - -

    But this doesn’t need to be the case,” she explained. “Technology can and should be in the service of all people. But to achieve this, we will need a change in perspective, something that Web3 can help us achieve.”

    - - - -

    Marieke also talked about blockchain, Web3, and BOS on a podcast hosted by the editor Journal du Coin – France’s leading crypto media outlet, and for a video interview with Fintech Finance at the Paris Fintech Forum. 

    - - - -

    That’s all for this month. If we missed anything or want to share anything for next month’s roundup, get in touch!

    -

    The post NEAR Foundation PR Roundup for June appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Partners with Vortex Gaming, a Web3 Subsidiary of Korea’s Largest Gaming Community INVEN - /blog/near-foundation-partners-with-vortex-gaming-a-web3-subsidiary-of-koreas-largest-gaming-community-inven/ - - - Fri, 23 Jun 2023 00:00:00 +0000 - - - - - - /?p=20658 - - NEAR Foundation is excited to announce a new partnership with Vortex Gaming, a Web3 subsidiary of the leading game industry …

    -

    The post NEAR Foundation Partners with Vortex Gaming, a Web3 Subsidiary of Korea’s Largest Gaming Community INVEN appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Vortex Gaming, a Web3 subsidiary of the leading game industry INVEN. INVEN is the largest game media·community in Korea, with a monthly active user (MAU) count of 7.2 million.

    - - - -

    With the guidance of the NEAR Korea Hub, NEAR Foundation and Vortex Gaming plan to achieve mutual growth by collaborating to support the growth of Vortex Gaming; strengthen the NEAR game ecosystem; conduct offline hackathons and events to foster developer talent; and enhance brand awareness and business networks.

    - - - -

    To support Web3 gaming, Vortex Gaming will leverage NEAR’s global layer 1 protocol, known for its user experience and scalability, and the Blockchain Operating System (BOS). The BOS is an OS for an open web, allowing developers to effortlessly build apps for an internet free from centralized platforms.

    - - - -

    “Following the leading companies in the gaming industry such as Kakao Games, Wemade, Netmarble’s Marblex, we expect our sustainable game ecosystem to be further enhanced through this partnership with INVEN,” said Marieke Flament, CEO of NEAR Foundation, expressed her delight at INVEN joining the NEAR ecosystem.

    - - - -

    Vortex Gaming: an open web community game changer

    - - - -

    Vortex Gaming is a content-based game community that builds services optimized for Web3 games. It also offers a global social media platform and features such as Gaming Guild. Vortex’s Gaming Guild will allow members to earn rewards by playing games, participating in tournaments, and contributing to the guild’s community. The guild system also provides a stronger sense of bonding between guild members, which can help strengthen user retention.

    - - - -

    Vortex Gaming also aims to break a major stereotype of current Web3 games as being dominated by a few profit-seeking individuals. It does this by offering specialized content that thoroughly explores the in-game economy, the completeness of the game, and gameplay guide. By leveraging its successful experience in building Web2 communities, Vortex Gaming plans to establish a robust user base by incorporating both high quality content and INVEN’s existing wide pool of users.

    - - - -

    INVEN is the largest game media·community in Korea. For over 20 years it has been the leading company in the game industry, driving the development as the top online game media platform. Based on content generated in-house, INVEN continues to innovate and expand into industries such as entertainment and Web3.

    - - - -

    “The ultimate goal is to build an integrated gamer community that encompasses both Web3 and traditional Web2 gamers by providing high quality Web3 and Web2 content alike,” said Vortex Gaming CEO, HOON JAI LEE. “Gamers and their communities are the most crucial components of the game ecosystem. In addition to offering game content for gamers and their communities, Vortex Gaming envisions establishing a sustainable cycle by incentivizing gamers’ production of content such as character builds and game guides”.

    - - - -

    The NEAR Korea Hub, responsible for business expansion across Korea and other Asian regions, has been instrumental in fostering this partnership. The Hub views Vortex’s onboarding as a significant moment that further accelerates the development of the NEAR gaming ecosystem.

    - - - -

    “While the strong content competitiveness of leading companies plays a crucial role in attracting many users to the NEAR ecosystem, community is the key driving force in maintaining this competitiveness,”said  Scott Lee, Co-CEO of NEAR Korea. “The synergy effects resulting from the onboarding of Vortex Gaming will further strengthen NEAR’s position as the optimal mainnet in the Web3 game ecosystem, accelerating ecosystem development.”

    -

    The post NEAR Foundation Partners with Vortex Gaming, a Web3 Subsidiary of Korea’s Largest Gaming Community INVEN appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation and ARterra Labs Level Up Gaming Fandom for the Open Web - /blog/near-foundation-and-arterra-labs-level-up-gaming-fandom-for-the-open-web/ - - - Wed, 31 May 2023 13:00:00 +0000 - - - - - /?p=20547 - - The ever-expanding gaming landscape faces significant challenges such as engagement and identity fragmentation. As fans navigate platforms like Twitch, Discord, …

    -

    The post NEAR Foundation and ARterra Labs Level Up Gaming Fandom for the Open Web appeared first on NEAR Protocol.

    -]]>
    - The ever-expanding gaming landscape faces significant challenges such as engagement and identity fragmentation. As fans navigate platforms like Twitch, Discord, and YouTube, brands and creators struggle to monetize their fan bases effectively. This is where ARterra Labs steps in — a company on a mission to revolutionize fan engagement and unlock Web3 fandom for the gaming industry.

    - - - -

    ARterra Labs aims to transform fan engagement in gaming by integrating its innovative Web3 solutions into existing Web2 ecosystems. Bridging the gap between platforms and simplifying monetization, ARterra Labs is set to attract millions of gamers through strategic partnerships and an ambitious plan to onboard over 5 million users, positioning itself as a game-changer in the industry.

    - - - -

    As ARterra Labs redefines gaming engagement, the NEAR Foundation’s blockchain technology will play a crucial role, powering ARterra’s innovative solutions such as the credential-based fan passport and the Battle Pass system.  

    - - - -

    How ARterra’s Battle Pass is energizing Web3 gaming

    - - - -

    ARterra Labs deploys three distinct products aimed at transforming the gaming landscape. With a credential-based fan passport, they offer a secure platform for fans to exhibit their unique identities and interests. 

    - - - -

    In addition, they introduce metaverse experiences, allowing fans to interact, engage, and form deeper bonds with their favorite franchises. Completing the trifecta is the Battle Pass system, a tiered reward structure that gamifies fan engagement, incentivizing both participation and loyalty. 

    - - - -

    ARterra Labs’ metaverse experiences immerse fans in virtual worlds where they can interact, engage, and connect with their favorite franchises. And the Battle Pass system gamifies fan engagement with a tiered reward system, incentivizing participation and loyalty.
    Central to ARterra’s strategy, the Battle Pass is a reward system on the NEAR blockchain, connecting to other chains via the BOS and LayerZero. It propels NFT liquidity within the NEAR ecosystem and unites gaming communities across networks. By rewarding active engagement, Battle Pass bolsters user loyalty and underscores NEAR’s role in settling cross-chain gaming transactions.

    - - - -

    Together, these three products serve as the foundation for ARterra Labs’ Experience Hub — an open-source marketplace that enables the creation of User-Generated Content (UGC) experiences for distribution to their extensive network. ARterra’s User-Generated Content (UGC) — primarily enabled through Fortnite’s Creative mode — serves as another cornerstone to its success, already captivating over 46 million gamers and maintaining a steady base of 500,000 monthly players.

    - - - -

    User experience and seamless onboarding play a critical role in ushering these gamers into the Web3 ecosystem. Key alliances with industry leaders like Complexity Gaming and GRID Esports’ Champion of Champions Tournament (CCT) further reinforce ARterra’s prominence.

    - - - -

    ARterra’s market strategy is twofold. Initially, it centers on activating Web3 fandom, using user-generated content effectively, and fostering unity in the gaming community. The second focus involves collaborating with premier Web3 gaming entities, offering gamer incentives, and constantly refining these tactics with data insights.

    - - - -

    Reshaping gaming for an open web

    - - - -

    Blending NEAR’s fast and scalable blockchain with ARterra’s innovative approach to gaming, the partnership is set to bring about radical improvements to the Web3 gaming experience. ARterra’s unique tools like the Discord-native tournament platform and the Battle Pass will foster enhanced interactions between gamers, developers, and brands.

    - - - -

    The alliance, cemented by a 12-month agreement that’s extendable indefinitely, emphasizes the faith NEAR Foundation is placing in ARterra’s potential. This cooperative venture bolsters NEAR’s position as the gaming fandom’s settlement layer across multiple chains while also ensuring priority access for NEAR ecosystem games to ARterra’s platform.

    - - - -

    It’s also a win-win for both players and builders. Gamers gain an immersive environment where rewards and exclusive content are the norm. Developers are offered a supportive platform, underpinned by the NEAR BOS and protocol, while brands can tap into a vibrant, engaged, and diverse audience.

    - - - -

    With ARterra Labs and NEAR Foundation’s shared vision, the focus will be on expanding and refining gaming platforms to attract more users, developers, and partners. The two will be dedicated to adding value within the gaming community, setting the stage for a significant growth spurt in the NEAR and Web3 gaming ecosystems alike.

    - - - -

    Amplifying the open web gaming journey with Battle Pass, metaverse realities, and the fan passport, ARterra Labs and NEAR Foundation don’t merely enhance the experience — they define a new standard. It’s a game-changing era in Web3 and fans are just barely unlocking the first level.

    -

    The post NEAR Foundation and ARterra Labs Level Up Gaming Fandom for the Open Web appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation and PipeFlare Team Up to Reshape Web3 Gaming - /blog/near-foundation-and-pipeflare-team-up-to-reshape-web3-gaming/ - - - Tue, 02 May 2023 14:00:00 +0000 - - - - - /?p=20468 - - NEAR Foundation and PipeFlare, a trailblazing play-to-earn (P2E) platform, are partnering to reshape Web3 gaming by building on Aurora, NEAR’s …

    -

    The post NEAR Foundation and PipeFlare Team Up to Reshape Web3 Gaming appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation and PipeFlare, a trailblazing play-to-earn (P2E) platform, are partnering to reshape Web3 gaming by building on Aurora, NEAR’s Ethereum-compatible layer. As Web3 gaming on NEAR accelerates, PipeFlare will enable gamers to play, earn crypto, and engage socially in a decentralized environment. Collaborating with NEAR Foundation, PipeFlare aims to redefine scalability, security, and sheer enjoyment in Web3 by leveraging the EVM-compatible development capabilities of Aurora.

    - - - -

    PipeFlare is one of the industry’s most reliable Web3-enabled gaming platforms, allowing users to earn cryptocurrency through gameplay, tasks, and activities. The partnership will help create more intricate, engaging Web3 games in a secure fashion. The collaboration will most certainly attract more users to Web3 gaming, while making NEAR a top choice for game developers.

    - - - -

    Let’s delve into the PipeFlare and NEAR Foundation partnership, the advantages of the NEAR Blockchain Operating System and tech stack for Web3 gaming, and how the collaboration positively impacts the future of the NEAR decentralized gaming ecosystem.

    - - - -

    Transforming play: PipeFlare’s NEAR-driven gaming evolution

    - - - -

    Pipeflare is one of the most reputable P2E gaming sites in the industry, backed by some of the largest investors in the blockchain space like DCG and Horizen Labs. All PipeFlare transactions are published publicly as well, giving gamers more transparency and peace of mind in Web3 gaming, earning, transacting, and collecting.

    - - - -

    Gamers can enjoy playing games, collecting free cryptocurrency from PipeFlare faucets, participating in airdrops, competing in weekly leaderboards, and earning rewards through the referral program. Additionally, players can buy and sell limited-mint NFTs on PipeFlare’s NFT marketplace. 

    - - - -

    PipeFlare’s exclusive Pyro NFT also brings perks like staking bonuses and a secret fourth crypto faucet to users. A dedicated support team demystifies blockchain and NFTs, while NEAR’s scalability enhances transactions without sacrificing speed or efficiency. This paves the way for PipeFlare’s explosive growth in the dynamic Web3 gaming market.

    - - - -

    As security becomes more paramount in safeguarding digital assets and identities in Web3 gaming, PipeFlare is now embracing the speed and security of NEAR infrastructure. This ensures the protection of user data and assets and provides a cutting-edge, trustworthy, and reliable Web3 gaming experience for users to explore and enjoy.

    - - - -

    Making Web3 Gaming more scalable, secure, and dev-friendly

    - - - -

    NEAR’s intuitive, developer-focused platform offers substantial advantages for PipeFlare, simplifying game development and empowering creators to craft groundbreaking Web3 gaming experiences for veteran gamers and newcomers alike. But the PipeFlare and NEAR Foundation collaboration will transcend mere technology integration. Harnessing the BOS, PipeFlare can introduce even deeper functionality to players in areas like NFTs, in-game token rewards, and community engagement. As one of the only platforms where NFTs can be ported into multiple games, PipeFlare is breaking new ground in the industry.

    - - - -

    NEAR Foundation is excited about this new portable NFT model in Web3 gaming, and will focus on the following three areas to help accelerate PipeFlare:

    - - - -
      -
    • Scalability. One of the biggest challenges facing Web3 gaming is scalability. Traditional blockchains are not designed to handle the high volume of transactions required for gaming. NEAR is a high-performance blockchain that can handle a large number of transactions per second, making it ideal for Web3 gaming.
    • -
    - - - -
      -
    • Security. Another important factor for Web3 gaming is security. Players need to be confident that their data and assets are safe when playing games on the blockchain. The BOS uses a variety of security measures to protect gamer data and ensure the protection and provenance of all digital assets.
    • -
    - - - -
      -
    • User-Friendliness. Web3 gaming needs to be user-friendly to succeed and grow in the long term. Users need to be able to easily create and manage their accounts, buy and sell NFTs, and play games. With the BOS being one of the most developer-friendly ecosystems to build on, PipeFlare is set to make big strides in Web3 gamer onboarding.
    • -
    - - - -

    To get the ball rolling, the partnership will initially focus on upgrading Pipeflare’s existing games and developing new ones using the BOS. This transition will enhance the gaming experience for users and showcase the capabilities of NEAR’s technology in the Web3 gaming space.

    - - - -

    The collaboration also marks substantial progress for the Web3 gaming industry, demonstrating that key players recognize NEAR’s potential. It also signals NEAR’s strong positioning to emerge as the premier blockchain for novel gaming experiences.

    -

    The post NEAR Foundation and PipeFlare Team Up to Reshape Web3 Gaming appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR and WEMADE Team Up to Accelerate Mainstream Web3 Adoption - /blog/near-and-wemade-team-up-to-accelerate-mainstream-web3-adoption/ - - - Thu, 23 Mar 2023 13:00:00 +0000 - - - - - /?p=20318 - - The Near Foundation is excited to announce that it’s partnering with WEMADE, one of the largest publicly-listed gaming companies in …

    -

    The post NEAR and WEMADE Team Up to Accelerate Mainstream Web3 Adoption appeared first on NEAR Protocol.

    -]]>
    - The Near Foundation is excited to announce that it’s partnering with WEMADE, one of the largest publicly-listed gaming companies in South Korea. A leading game developer in South Korea for over 20 years, WEMADE will be vital in Near’s push toward mainstream adoption of Web3.

    - - - -

    - - - -

    Near and WEMADE will support the development of blockchain apps in Korea as well as other markets. Near and WEMADE will also jointly work on mutual brand awareness, and collaborate on a number of Web3 community events and business opportunities.  

    - - - -

    - - - -

    “WEMADE and Near share a similar vision of enabling and accelerating the mainstream adoption of blockchain to create a future of nearly limitless potential use cases and benefits for all of us across many different areas of our daily lives,” said Shane Kim, CEO, WEMIX and Vice President, WEMADE. 

    - - - -

    - - - -

    “In order to achieve that vision, we must make it easier, faster, and more cost-effective for developers to onboard off-chain apps, organizations, and startups, and are confident that Near is ideally positioned to do so.”

    - - - -

    Onboarding end users and developers into Web3

    - - - -

    The partnership will do much to encourage developers, including game designers, to build on the Near. Beyond co-hosting community events like offline hackathons and boot camps, Near and WEMADE will work together on mutual brand awareness, invest in research and collaboration on cross-chain initiatives, and be on the lookout for potential Web3 business opportunities and founders. 

    - - - -


    A renowned leader in game development, WEMADE is at the forefront of a generational shift as the gaming industry pivots to blockchain technology. Its WEMIX subsidiary is building an experience-based, platform-driven, and service-oriented mega-ecosystem — one that will give users everywhere access to a wide array of easy-to-use Web3 apps and experiences.

    - - - -

    - - - -

    “We’re thrilled to be partnering with WEMADE as part of our shared vision towards a decentralized future for the gaming industry,” said Commenting on the partnership, Marieke Flament, CEO of the Near Foundation. “By joining forces, we are confident in our ability to accelerate the development of cutting-edge solutions that meet the growing needs of gamers and developers in the Web3 space.”

    - - - -

    - - - -

    The Near-WEMADE partnership marks the second major Web3 gaming partnership from the Near Korea Hub. The first, a partnership with BORA — the Web3 GameFi platform of Kakao Games — will also be vital in accelerating the mainstream adoption of Web3.  

    -

    The post NEAR and WEMADE Team Up to Accelerate Mainstream Web3 Adoption appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Near Partners with BORA, Web3 GameFi Platform of Kakao Games - /blog/near-partners-with-bora-one-of-koreas-largest-gamefi-platforms/ - - - Mon, 06 Mar 2023 14:00:00 +0000 - - - - - - - /?p=20253 - - Near is excited to announce a new strategic partnership with BORA, a Web3  gaming subsidiary of METABORA. Near and BORA …

    -

    The post Near Partners with BORA, Web3 GameFi Platform of Kakao Games appeared first on NEAR Protocol.

    -]]>
    - Near is excited to announce a new strategic partnership with BORA, a Web3  gaming subsidiary of METABORA. Near and BORA will support each other in spreading local brand awareness, invest in research and collaboration on cross-chain, host events, and generate Web3 opportunities in Korea. 

    - - - -

    An affiliate of Kakao Games and its parent company BORANETWORK, BORA is focused on game development and blockchain-based gaming ecosystems. Its mobile gaming titles include Friends Popcorn, Friends Town, and Friends Shot

    - - - -

    “We are thrilled to be working with Near and welcome their expertise, knowledge and network as we aim to transform the world of Web3 gaming,” said Vincent Lim, a CBO of BORA. “Together with Near we will not only explore cross-promotion opportunities, but also seek future collaborations on IP-based game development that will lead to mass adoption and give us the competitive edge we need to position ourselves as leading players in the web3 gaming space.”

    - - - -

    Since the launch of Near’s Korean Hub in November of 2022, BORA has been steadily building up awareness throughout South Korea, while focusing on Web3  innovation, business development, education, and talent. The hub is led by entrepreneurs Scott Lee and Ben Kang — both influential figures within South Korea’s growing blockchain community.

    - - - -

    “One of the big ambitions of the hub  is  to tap into the country’s active gaming community, and to  bring  amazing projects and creators to the Near ecosystem.” said Robbie Lim, GM, Partners & International at Near. “ The partnership with BORA is our first major win – and a big step forward for NEAR as it accelerates its ambition to become the go to layer 1 for the Web3 gaming community.” 

    -

    The post Near Partners with BORA, Web3 GameFi Platform of Kakao Games appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR 2022: A Year in Review - /blog/near-2022-a-year-in-review/ - - - Fri, 23 Dec 2022 15:00:00 +0000 - - - - - - /?p=19607 - - It’s been a whirlwind year for NEAR – and it’s hard to believe that 2022 is coming to an end. …

    -

    The post NEAR 2022: A Year in Review appeared first on NEAR Protocol.

    -]]>
    - It’s been a whirlwind year for NEAR – and it’s hard to believe that 2022 is coming to an end. It’s been a year filled with massive milestones and achievements, including the biggest NEARCON ever, record-breaking new wallet creation, and much more.

    - - - -

    With 2023 around the corner, it’s a great time to reflect and take stock of all the exciting happenings and announcements that took place in 2022. NEAR Foundation congratulates every developer, community member, and partner that made 2022 a blast.

    - - - -

    Without further ado, here’s everything that happened with NEAR in 2022, how the ecosystem is successfully navigating bear market conditions, and why NEAR is primed for explosive growth heading into 2023!

    - - - -

    Protocol Progress and JavaScript SDK

    - - - -

    The last 12 months saw huge progress on the protocol level, with an exciting roadmap charting the course for 2023 and beyond. From staking upgrades to new developer tools, the NEAR protocol made huge strides in onboarding new builders and the next 1 billion users.

    - - - -

    NEAR introduced the brand new JavaScript SDK, enabling developers to build on NEAR using the most popular programming language in the world. Brendan Eiche, the inventor of JavaScript and co-founder of privacy-first browser Brave, even joined a panel at NEARCON to discuss the new SDK, Brave’s new support of Aurora, and why he’s excited about NEAR.

    - - - -

    NEAR also saw the introduction of meta-transactions, allowing third parties to pay transactions for the transaction cost of any account. Users can then be onboarded to NEAR apps without owning any NEAR tokens. Meta transaction development will continue through next year and will be critical to new wallet growth.

    - - - -

    Stake Wars’ latest iteration also began in 2022, marking another step towards decentralizing the network. Stake Wars will increase the total number of validators as chunk-only producers for the next phases of sharding. The chunk-only producer role will be more accessible to new validators who don’t have sufficient $NEAR to run a Block Producer node.

    - - - -

    Phase 1 of Nightshade Sharding Commences

    - - - -

    Stake Wars was a critical step in the transition from Simple Nightshade to Phase 1 of sharding in 2022. As Phase 1 continues, total validators will increase from around 100 to 300, with a significantly lower seat price. Phase 1 was crucial to facilitate scaling, improve decentralization, and bring the Open Web to mass adoption.

    - - - -

    There will be an 86% decrease in collateral requirements to become a chunk-only producer as Phase 1 of Nightshade concludes in 2022 and continues into the next year. Phase 1 went live on mainnet in September 2022 with key contributions and assistance from the Pagoda team.

    - - - -

    As NEAR co-founder Illia Polosukhin told CoinDesk in the lead-up to the Phase 1 roll-out, “the more users the network gets, the more decentralized the network gets as well.” This allows NEAR to add more validators in response to more demand for the network, delivering on the promise of speed, scalability, and efficiency. 

    - - - -

    Major Strides in Funding and Transparency

    - - - -

    A thriving NEAR ecosystem requires resources and trust, both of which made major strides. The birth of Transparency Reports assured the community that all core stakeholders in NEAR are operating in good faith and from a position of financial strength. These reports provide important information about the health of the protocol and ecosystem, including staking distribution, daily transactions, and new accounts created. (Read the Q3 Transparency Report.)

    - - - -

    NEAR Foundation CEO Marieke Flament also hosted a post-FTX AMA, re-assuring the ecosystem of NEAR’s runway and explaining why the current bear market is a time for a conviction to build.

    - - - -

    To see how NEAR Foundation and other ecosystem funding projects have been distributing portions of the $800M in funding throughout 2022, check out Q1/Q2 and Q3 Transparency Reports. Key areas of funding include Proximity Labs and DeFi, DAOs, NFT infrastructure, and Regional Hubs. The NEAR Digital Collective (NDC) was also announced and launched at NEARCON, with one of the goals being to further decentralize and democratize grants giving and decision-making processes.

    - - - -

    Ecosystem Growth

    - - - -

    NEAR’s 2022 was one of huge growth and innovation. New partnerships like Sweatcoin and SailGP were major stepping stones toward bringing Web3 to the masses. Projects in areas such as gaming, music, and NFTs showcased that the NEAR ecosystem is thriving and poised for new heights in 2023.

    - - - -

    The NEAR protocol experienced 15x growth in cumulative accounts over the past year with 22M+ today. NEAR also has 900K monthly active wallets, marking a major increase from this time last year. And in 2022, the NEAR ecosystem generated $330M of external capital in projects building on NEAR. 

    - - - -

    Movement Economy

    - - - -

    One of the biggest catalysts for new NEAR wallet and account creation was the partnership with Sweatcoin. The $SWEAT token rewards users for every step they take throughout the day, encouraging users to live healthy lifestyles. Sweatcoin migrating to NEAR pushed total wallets from 2 million at the beginning of the year to over 20 million by November. As Flament pointed out during the Sweatcoin keynote at NEARCON, the movement economy is in its infancy, and NEAR is poised to be a leader in the space with the help of Sweatcoin.

    - - - -

    DAO Innovation

    - - - -

    Another huge addition to the NEAR ecosystem was the world-renowned boat racing league, SailGP. SailGP partnered with NEAR to pioneer the intersection of sports, Web3, and Decentralized Autonomous Organizations (DAOs). In addition to offering NFT collectibles on the NEAR blockchain to fans, SailGP will use AstroDAO tooling to create the first fan-owned team as a DAO. In addition to the growth of ecosystem projects like Kin DAO for equity and inclusion, it was a banner year for NEAR and DAOs.

    - - - -

    Blockchain Music

    - - - -

    You may not have noticed, but 2022 saw a massive surge in interest about music and Web3. And one of the most innovative projects in this area was in the NEAR ecosystem, with the launch of Endlesss. The music creation, marketing, and community development platform’s NEAR integration went live in the summer as a virtual gathering place blending social media features with music production tools. Endlesss enables musicians of all skill levels to conduct “jam sessions” on the NEAR blockchain and mint their music as NFTs. 

    - - - -

    Gaming

    - - - -

    The NEAR ecosystem got a huge dose of star power with the unveiling of Armored Kingdom. Backed by Hollywood star Mila Kunis, Armored Kingdom will be an immersive gaming, NFT, storytelling, and metaverse experience built on the NEAR blockchain. The project kicked off with a first edition NFT comic book airdrop at Consensus, Austin. NEAR also announced the launch of the South Korea Regional Hub with a focus on bringing the NEAR blockchain to the massive local game development community. 

    - - - -

    PlayEmber also established itself as a key player in the NEAR gaming ecosystem, taking a mobile-first approach to Web3 gaming and bringing advertisers into the space. PlayEmber’s games now have over 4.2 million monthly active users, and recently closed a $2.3 million pre-seed raise led by Shima Capital.

    - - - -

    NFTs

    - - - -

    With core NFT infrastructure maturing in the NEAR ecosystem, 2022 was a year of innovative use cases and groundbreaking projects. NEARCON saw the announcement of a key grant to Few and Far, a premium NFT marketplace on NEAR with a seamless UX and simple minting solutions. One of NEAR’s biggest NFT projects, Mintbase, received over $12 million in funding this August. Mintbase empowers niche creators with the ability to mint NFTs of any type with little technical know-how, exemplifying NEAR’s commitment to making Web3 easy for everyone.

    - - - -

    Looking Ahead

    - - - -

    From the launch of Phase 1 sharding to protocol upgrades and ecosystem growth, 2022 was a huge leap for the NEAR ecosystem in many respects. It’s the year that the “Create Without Limits” vision was introduced, the biggest NEARCON ever took place, and some of the most important partnerships in the history of NEAR were cemented. It was also a year in which NEAR committed to more transparency and communication with the community.  

    - - - -

    Looking forward, NEAR will continue to champion Web3 as a catalyst for change, in addition to environmental sustainability as a carbon-neutral blockchain. In 2023, the NEAR community can expect even more partnerships that push boundaries and support projects that will enhance and empower a prosperous NEAR ecosystem.

    -

    The post NEAR 2022: A Year in Review appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR and Press Start Team to Level Up Web3 Gaming  - /blog/near-and-press-start-team-to-level-up-web3-gaming/ - - - Fri, 09 Dec 2022 15:00:12 +0000 - - - - /?p=19535 - - NEAR Foundation is excited to announce a new partnership with Press Start Capital, a seed stage venture fund focused on …

    -

    The post NEAR and Press Start Team to Level Up Web3 Gaming  appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Press Start Capital, a seed stage venture fund focused on full-stack Web3 gaming, metaverse, and entertainment. This follows the Press Start x  Orange DAO Web3 Fellowship announced earlier this year. 

    - - - -

    With NEAR, Press Start is looking to identify, fund, and support the leading Web3 builders and creators of what it calls a “new Golden Age of Entertainment.” Press Start Capital will join NEAR’s network of partner funds. 

    - - - -

    In this new partnership, information and industry insights-sharing between NEAR and Press Start will be vital. Press Start will provide investment and mentorship support to Web3 gaming and entertainment projects building on NEAR. Press Start and its portfolio companies will also have access to the Foundation and ecosystem’s vast network of fund partners—a critical piece in building the new era of gaming. Game developers that aren’t committed to a blockchain will have access to priority NEAR support to help build and ship their Web3 gaming apps and products.

    - - - -

    Marieke Flament, CEO of the NEAR Foundation, said:  “This is a fantastic partnership that will help us to attract the very best projects to our protocol. We look forward to leveraging this opportunity by working closely with Press Start to identify and support exceptional talent and to give creators the tools they need to build without limits on NEAR.”

    - - - -

    Community front and center

    - - - -

    Both NEAR and Press Start see the future of gaming as being community-driven. The partners are fully aligned in manifesting a world where players take part in the creation and ownership of the games, stories, and assets they cherish. 

    - - - -

    “As crypto eats software and gaming eats culture, we believe now is the time to build a new Golden Age of Entertainment that will unleash a new generation of community-owned games, apps, and IP,” said Steven Chien, co-founder and General Partner at Press Start Capital. “We’re excited to collaborate with NEAR as a mission-aligned partner to support and grow a community of Web3 founders building community-driven products.”

    - - - -

    With NEAR and Press Start, founders will help founders in a mutual learning environment. The partnership will also include deal flow sharing and community initiatives.

    - - - -

    Press Start’s collaboration with NEAR partner OrangeDAO, a group of over 1,300 Y Combinator alumni, on a new fellowship is also part of this community-driven strategy. The fellowship featured participants building applications that will empower future Web3 users and communities.

    - - - -

    Ten fellows completed a ten-week fellowship program designed to help Y Combinator alumni validate, build, and ship their next web3 project. Several fellows had closed a fundraising round and gained acceptance into top tier accelerators by the end of the fellowship program.   

    - - - -

    Web3 gaming on NEAR: fast and infinitely scalable 

    - - - -

    With the new NEAR and Press Start partnership, Web3 gaming developers can take full advantage of NEAR’s sharded, Proof-of-Stake (PoS), layer-one blockchain. Thanks to NEAR’s  unique Nightshade sharding implementation, gaming projects will join a dynamic ecosystem of 800+ active projects and over 125 DAOs, building on a protocol that is ever-expanding and decentralizing. 

    - - - -

    Like the other developers, entrepreneurs, and creatives building on NEAR, Web3 gaming devs will have access to the NEAR community’s resources. From Web3 startup platform Pagoda to NEAR Education and other ecosystem players, gaming devs can tap into a vast web of Web3 technology and expertise. 

    - - - -

    Future partnership opportunities

    - - - -

    NEAR Foundation’s partnership with Press Start will evolve over time, combining the Foundation’s technological know-how with the VC fund’s investment and builder expertise. 

    - - - -

    There is already potential for a co-sponsored accelerator and events centered on Web3 gaming and entertainment.  

    -

    The post NEAR and Press Start Team to Level Up Web3 Gaming  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/gaming/index.html b/public/blog/tag/gaming/index.html deleted file mode 100644 index da73382f3..000000000 --- a/public/blog/tag/gaming/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Gaming Archives – NEAR Protocol
    <- Back to all posts

    Tag: Gaming

    9 posts
    \ No newline at end of file diff --git a/public/blog/tag/gig-economy/feed/index.xml b/public/blog/tag/gig-economy/feed/index.xml deleted file mode 100644 index e015f54ee..000000000 --- a/public/blog/tag/gig-economy/feed/index.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - Gig Economy Archives – NEAR Protocol - - /blog/tag/gig-economy/ - - Wed, 02 Aug 2023 17:17:45 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Gig Economy Archives – NEAR Protocol - /blog/tag/gig-economy/ - 32 - 32 - - - Case Study: Satori’s Jeff Bissinger Talks NEAR Tasks for the Gig Economy - /blog/case-study-satoris-jeff-bissinger-talks-near-tasks-for-the-gig-economy/ - - - Mon, 31 Jul 2023 14:30:00 +0000 - - - - - /?p=20761 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: Satori’s Jeff Bissinger Talks NEAR Tasks for the Gig Economy appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

    - - - -

    In the latest NEAR Foundation Case Study video, we hear from Jeff Bissinger, Product Manager at Satori. As a product team building innovative Web3 solutions, Satori is creating AI integrations that enable people to work with purpose. NEAR Tasks, which launched at Consensus 2023 in Austin, is one of Satori’s latest products. 

    - - - -

    In this case study video, Jeff Bissinger takes viewers on a trip into NEAR Tasks — Satori’s effort to blend the gig economy with blockchain technology. With NEAR Tasks, users can earn $NEAR while completing simple, yet meaningful, AI related tasks. 

    - - - -

    - - - -
    - -
    -

    The post Case Study: Satori’s Jeff Bissinger Talks NEAR Tasks for the Gig Economy appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/gig-economy/index.html b/public/blog/tag/gig-economy/index.html deleted file mode 100644 index c684b3c23..000000000 --- a/public/blog/tag/gig-economy/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Gig Economy Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/glass/feed/index.xml b/public/blog/tag/glass/feed/index.xml deleted file mode 100644 index ff5756d4f..000000000 --- a/public/blog/tag/glass/feed/index.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - GLASS Archives – NEAR Protocol - - /blog/tag/glass/ - - Wed, 09 Aug 2023 16:23:10 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - GLASS Archives – NEAR Protocol - /blog/tag/glass/ - 32 - 32 - - - How GLASS is Uncorking Adult Beverage Loyalty with Web3 and NEAR  - /blog/how-glass-is-uncorking-adult-beverage-loyalty-with-web3-and-near/ - - - Thu, 10 Aug 2023 14:00:00 +0000 - - - - - /?p=20794 - - GLASS, the world’s first compliant Web3 community and loyalty platform for the $1.6 trillion alcohol industry, is deploying on the …

    -

    The post How GLASS is Uncorking Adult Beverage Loyalty with Web3 and NEAR  appeared first on NEAR Protocol.

    -]]>
    - GLASS, the world’s first compliant Web3 community and loyalty platform for the $1.6 trillion alcohol industry, is deploying on the NEAR blockchain to engage social drinkers. Founded by Zoe Leavitt, who formerly led early-stage social and entertainment investing for the VC arm of AB InBev, the world’s largest beer company, and serial blockchain entrepreneur and compliance tech expert Calvin Pak, GLASS redefines the ways alcohol brands connect with consumers during social occasions.

    - - - -

    GLASS’s compliance infrastructure allows wine, beer, and spirits brands to directly engage social drinkers, introducing groundbreaking innovation to an industry navigating strict legal restrictions when it comes to sales and marketing.

    - - - -

    Rather than spending seven million dollars on a 30-second Super Bowl ad spot, what if alcohol brands could send drinks directly to over four hundred thousand fan watch parties? Tapping into Web3, this is the future that GLASS plans to create. Brands on GLASS use tokens to incentivize fans to try new cocktail recipes, socialize with friends, vote on brand decisions, and more; and fans can use those tokens to unlock exclusive rewards and experiences. 

    - - - -

    Prominent brands stir up social engagement with GLASS

    - - - -

    Premium alcohol brands are already live on this groundbreaking new platform. These include premium Italian winemaker Lyons Wine; Talkhouse Encore, the canned cocktail brand affiliated with legendary music hall The Stephen Talkhouse; Hotaling & Co’s Fiero Tequila, the spiciest infused tequila in the US; and Junipero Gin, the original American craft gin. Each brand is prepped to offer its customers unique rewards — from exclusive merchandise to money-can’t buy-experiences on Web3 with GLASS and the NEAR blockchain. 

    - - - -

    “We see great potential in building the Lyons Wine community on GLASS,” said Lyons Wine CEO and founder Chris Lyons. “Lyons Wine has always been driven by community and innovation, and we’re excited to leverage web3 to bring exclusive rewards to our network through this platform.”

    - - - -

    Through upcoming integrations with alcohol e-commerce and point-of-sale platforms, GLASS members will be able to track purchases and earn for purchasing as well as socializing — in ways that comply with each member’s local regulations. From the bar, to the friend’s house, to the stadium, GLASS creates a unified platform for fans and brands to engage across the full universe of social occasions.   

    - - - -

    “We’re excited to use this new platform to engage and grow the Fiero Tequila community of ‘heat seekers’ who rally around the spiciest infused tequila in the U.S,” said Jordan Parker, Head of Marketing for the Agave Portfolio at Hotaling & Co. “The platform will help us bring our community together around the unique, social activations that Fiero has planned.”

    - - - -

    GLASS will continue to announce new brand partnerships and roll out new features throughout the summer and fall. Consumers can sign up directly at www.glass.fun to start earning tokens today.

    -

    The post How GLASS is Uncorking Adult Beverage Loyalty with Web3 and NEAR  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/glass/index.html b/public/blog/tag/glass/index.html deleted file mode 100644 index 6ad32a786..000000000 --- a/public/blog/tag/glass/index.html +++ /dev/null @@ -1,2 +0,0 @@ -GLASS Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/governance/feed/index.xml b/public/blog/tag/governance/feed/index.xml deleted file mode 100644 index 7212b12b7..000000000 --- a/public/blog/tag/governance/feed/index.xml +++ /dev/null @@ -1,252 +0,0 @@ - - - - Governance Archives – NEAR Protocol - - /blog/tag/governance/ - - Thu, 15 Dec 2022 13:45:55 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Governance Archives – NEAR Protocol - /blog/tag/governance/ - 32 - 32 - - - NEAR Foundation Strengthens Governance with New Talent - /blog/near-foundation-welcomes-fresh-executive-talent-to-accelerate-its-global-reach/ - - - Tue, 13 Dec 2022 16:14:37 +0000 - - - /?p=19566 - - NEAR Foundation is happy to announce its newest high-level executive appointments. The Foundation has hired Mary Beth Buchanan as a …

    -

    The post NEAR Foundation Strengthens Governance with New Talent appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is happy to announce its newest high-level executive appointments. The Foundation has hired Mary Beth Buchanan as a Strategic Advisor, while Sheila Warren and Jason Warner have joined as participants of the NEAR Foundation Council. 

    - - - -

    Buchanan  brings over three decades of legal and business expertise at the intersection of federal law enforcement, global interagency cooperation, corporate compliance, digital assets, and emerging regulatory frameworks. She was the first woman and youngest person to be appointed to the position of U.S. Attorney for the Western District of Pennsylvania and since then has served as President, Americas and Global Chief Legal Officer for Merkle Science. A member of the Board of Directors of the Cardano Foundation, Buchanan has been at the forefront of the digital assets industry since 2013 while she was a partner at Bryan Cave Leighton Paisner leading the firm’s Digital Currency Team. 

    - - - -

    Buchanan is among the brightest minds in crypto compliance, regulatory, and legal matters. She has prosecutorial experience and conducted ethics and reputational risk assessment for the UN. Her career has also focused on internal investigations, corporate compliance, SEC enforcement matters, congressional investigations, and digital currency work in private practice. 

    - - - -

    Sheila Warren, who you might have seen featured at NEARCON, currently serves as the inaugural CEO of the Crypto Council for Innovation, the premier global alliance advancing crypto innovation worldwide. She co-hosts “Money Reimagined,” a CoinDesk TV show and podcast, is an advisor to the Filecoin Foundation, serves on the Steering Committee of the DeFi Education Fund, and is an early stage investor across the Web3 ecosystem. 

    - - - -

    Before joining the NF Council, Warren founded the blockchain and digital assets team at the World Economic Forum, where she served as a member of the Executive Committee. As the Deputy Global Head of the Forum’s Centre for the Fourth Industrial Revolution, she oversaw strategy across 16 countries to advance the adoption of new technologies in the global public interest. 

    - - - -

    Last, but certainly not least, Jason Warner is the former CTO of GitHub and currently the Managing Director at Redpoint Ventures. Before joining GitHub, Warner was Vice President of Engineering at Heroku, the world’s leading PaaS and one of the largest cloud computing providers in the world. He is an active speaker, writer, and advisor on cloud computing, technology and leadership. 

    - - - -

    Welcoming the appointments, Marieke Flament, CEO of the NEAR Foundation, said: “Changing the world does not happen without great people working together, and we are thrilled to be welcoming this calibre of leader on board as we continue on our goals to put usability at the heart of a global shift towards Web3. Mary Beth, Sheila, and Jason have collectively spent decades creating the infrastructure necessary for society to be ready for this momentum and shift – we could not be more excited to have them join us on our mission.”
    These appointments are huge wins for NEAR Foundation and the ecosystem at large. Welcome to the NEAR family, Mary Beth, Sheila, and Jason!

    -

    The post NEAR Foundation Strengthens Governance with New Talent appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Evolving NEAR Foundation’s Funding Strategy - /blog/evolving-near-foundations-funding-strategy/ - - - Mon, 21 Nov 2022 16:15:00 +0000 - - - - /?p=19109 - - NEAR Foundation is publishing a series of blogs on the state of funding, including updates from the Grants Team and …

    -

    The post Evolving NEAR Foundation’s Funding Strategy appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is publishing a series of blogs on the state of funding, including updates from the Grants Team and an upcoming Transparency Report for Q3. This is part of our continued commitment to transparency, as well as more frequent and open communication with the NEAR community. 

    - - - -

    NEAR Foundation’s role is to support the NEAR ecosystem and community. This means that the Foundation can deploy capital to help promote growth, alongside its efforts to grow awareness of NEAR and onboard a billion users to Web3. 

    - - - -

    Among Layer 1 protocols, NEAR is in an excellent position to thrive despite the very difficult market conditions. Our 5+ years of runway will help the NEAR ecosystem weather the bear market, which is likely to last for some time. The Treasury Team’s careful spending and responsible Treasury management has equipped the ecosystem to emerge from this crypto winter with NEAR as the protocol of choice for people and projects building on Web3. 

    - - - -

    While the market has created a new reality for the entire Web3 ecosystem, NEAR sees this as a moment of great opportunity and a time to stick to our convictions. We’ve outlined the Foundation’s new strategy around facilitating Web2.5 and making NEAR the de facto bridge from Web2 to Web3. 

    - - - -

    Staying true to NEAR’s decentralized vision, the NEAR Digital Collective (NDC) was recently launched and led by the Governance Working Group (GWG). We’ve also delegated some decision-making to the community through grassroots DAOs: the DeveloperDAO, MarketingDAO, and CreativesDAO

    - - - -

    NEAR Foundation has provided capital to many projects over the last two-plus years, with clear milestones and goals designed to maximize potential value added to the ecosystem. Grants have been a major part of that capital allocation strategy since the program was first announced in 2021. Although the Foundation has a substantial amount of runway to support the ecosystem for several years to come, we need to ensure that we are stewarding NEAR’s Treasury as responsibly and sustainably as possible.

    - - - -

    With these long-term views in mind, NEAR Foundation is looking critically at all of its capital allocation in the last few years in order to determine what has had the most impact and where we should consider revising our approach. We will also be heavily scrutinizing upcoming capital deployments. The Foundation must focus on supporting the highest quality projects with the most potential and alignment with our vision for NEAR.

    - - - -

    What does this mean for the community? To make NEAR the leading Web2.5 bridge, NEAR Foundation will back those projects and initiatives that help best grow and support the ecosystem for years to come. This also means that some tough decisions are coming about where not to deploy funding. 

    - - - -

    However, in the areas where funding or granting is pared back, the Foundation will do its absolute best to support those affected by upcoming funding decisions. We will make our best efforts to help these community members find new homes with other ecosystem projects. 

    - - - -

    NEAR Foundation will also ensure that we are as transparent as possible about the new Funding strategy as it rolls out. The Foundation will communicate as often and as much as possible, and encourage the community to continue giving feedback so we can iterate more quickly as we build the NEAR Ecosystem together.

    - - - -

    NEAR Foundation has already made significant steps to make NEAR’s funding more transparent. Through the NEAR Digital Collective (NDC), we are empowering the community to evolve governance and coordinate together through the ecosystem DAOs. (Read more and get involved at the NDC gov.nearpages.wpengine.com page.) In September, NEAR formed a working group to set standards for this on-chain style of self-governance. The Foundation has been calling this the “bottom-up” approach to supporting the community, encouraging grassroots coordination and decentralized decision-making that works in parallel with the Foundation’s more “top-down” stewardship and funding strategy.  

    - - - -

    The Foundation also started publishing a regular Transparency Report in the spirit of accountability to the ecosystem. The first Transparency report, which came out just before NEARCON, was an important start—but we want to make it even better for the community. The next report will be coming out in a couple of weeks and will include more granularity where possible. You can also check out a recent update from the NEAR Grants team titled “Funding Beyond Grants”. 

    - - - -

    It’s also important for the community to understand that while transparency and open communication are an essential part of NEAR Foundation’s commitment to all of you, we cannot be entirely transparent about every funding decision or commercial agreement we make. This is primarily due to legal restrictions that can be imposed on NEAR Foundation in its dealings with third parties. The Foundation will share as much as possible  about the exciting collaborations being made in the months ahead.

    - - - -

    NEAR Foundation highly encourages people to get involved with the NEAR community. By becoming more participatory, community members can take ownership in the new bottom-up approach to decision making we are helping foster across the ecosystem.

    - - - -

    NEAR Foundation is keeping an eye on the long term for the entire NEAR ecosystem. By being fiscally responsible and deploying capital in a sustainable way, the Foundation can ensure that NEAR emerges from this bear market stronger than ever, and well positioned to help builders keep building the future of Web3.

    -

    The post Evolving NEAR Foundation’s Funding Strategy appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Ecosystem Update on Decentralizing Governance - /blog/ecosystem-update-on-decentralizing-governance/ - - - Sun, 23 Oct 2022 15:28:16 +0000 - - - - /?p=18648 - - A few weeks ago, the NEAR Foundation announced the formation of a new entity designed to help accelerate the decentralization of …

    -

    The post Ecosystem Update on Decentralizing Governance appeared first on NEAR Protocol.

    -]]>
    - A few weeks ago, the NEAR Foundation announced the formation of a new entity designed to help accelerate the decentralization of the NEAR ecosystem (you can read this forum post here). 

    - - - -

    The Foundation received an incredible amount of thoughtful feedback about the NDC and how it would function. As a result, the Foundation has been working with its partners on how best to take this project forward. This post is an update about the progress so far. 

    - - - -

    Why does decentralization matter?

    - - - -

    Decentralization is shifting the locus of power away from a central node to several smaller nodes and setting up processes to establish group consensus without relying on hierarchies or top-down structures. NEAR was always designed to be run and owned by its community. The Foundation believes the unique properties of a fully decentralized ecosystem make NEAR: 

    - - - -

    Antifragile and resilient: having no single honeypot or single legal entity will make NEAR stronger against attacks and challenges.

    - - - -

    Censorship resistant: without central parties, no one party can control the network nor take over the ecosystem. 

    - - - -

    Adaptable: the system can learn and adapt quickly in different directions to find the right levers of growth.

    - - - -

    Inclusive: more voices are involved and heard. 

    - - - -

    How will we measure our progress?

    - - - -

    It’s important that the progress of this work is measurable and transparent. The intention is to decrease the ownership percentage of key infrastructure by both the NEAR Foundation and Pagoda over time. Those groups identify the following metrics as the key indicators of a successful ecosystem: 

    - - - -
    • Funding: treasury management and diversification
    • Protocol operations: validator ecosystem & decentralization
    • Core development: the protocol and developer ecosystem
    • Governance and decision-making: decentralization and transparency
    • Brand: awareness, traction, consistency
    • Ecosystem services: founder support (legal, marketing, ops, community) 
    • App layer: tooling, number of projects building, active users
    - - - -

    How will we achieve optimal decentralization?

    - - - -

    This is the project of the next several months, under the continuing stewardship of the Foundation and Pagoda. The goal here is to simplify and align while encouraging the broadest possible participation from contributors to our ecosystem and community. 

    - - - -

    A node architecture applies to the NEAR ecosystem as well as to the tech: every company, DAO, validator, fund is a hub in the NEAR constellation of nodes, all on an equal playing field in terms of their ability to contribute to decision-making and development. This constellation of nodes will work together in a decentralized but coordinated way. The Foundation is currently applying structure around nodes to define levels of accountability and extent of participation in governance processes. 

    - - - -

    What is the role of NDC? 

    - - - -

    The NEAR Digital Collective (NDC) is a new way of organizing the fast-growing community of users, projects, stakeholders, partners, and backers building inside the NEAR ecosystem. Its ultimate goal is to create a cohesive structure that allows all the component parts of the NEAR ecosystem to collectively decide how NEAR should be run. The NDC will work with the Foundation, Pagoda, and other ecosystem nodes over the coming months to develop a structure and make its first proposals to the community. 

    - - - -

    Version one of the governance framework is underway. This framework is the NDC’s vision for a decentralized governance system and core governance components. When complete it will provide details of roles, responsibilities, participation rules, and dispute resolution processes.

    - - - -

    In addition, a communications strategy is being developed which will help the community stay up to date with the NDC’s progress.

    - - - -

    NDC updates will be posted on the NEAR Forum. If you’d like to get involved with the NDC, you can do so here. 

    - - - -

    The NEAR Foundation would like to thank the community for your enthusiasm and input throughout this decentralization process. Striking the right balance between moving fast and growing wisely is always a challenge in the fast-paced world of Web3 and it’s more important than ever to work together. NEAR is well-positioned for the next phase of growth and making sure everyone is strategically and operationally aligned now will help achieve much greater success in the future.

    -

    The post Ecosystem Update on Decentralizing Governance appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/governance/index.html b/public/blog/tag/governance/index.html deleted file mode 100644 index 04e11208e..000000000 --- a/public/blog/tag/governance/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Governance Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/grants/feed/index.xml b/public/blog/tag/grants/feed/index.xml deleted file mode 100644 index 9816d904e..000000000 --- a/public/blog/tag/grants/feed/index.xml +++ /dev/null @@ -1,928 +0,0 @@ - - - - Grants Archives – NEAR Protocol - - /blog/tag/grants/ - - Tue, 03 Jan 2023 16:45:11 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Grants Archives – NEAR Protocol - /blog/tag/grants/ - 32 - 32 - - - Refining NEAR Foundation’s Grant Approach - /blog/refining-near-foundations-grant-approach/ - - - Tue, 03 Jan 2023 15:05:22 +0000 - - - - - /?p=19669 - - A few weeks ago, as part of a series of blogs on the state of funding, NEAR Foundation announced it …

    -

    The post Refining NEAR Foundation’s Grant Approach appeared first on NEAR Protocol.

    -]]>
    -
    A few weeks ago, as part of a series of blogs on the state of funding, NEAR Foundation announced it would be examining its evolving funding strategy. This is in line with the Foundation’s  goal of providing a clear and concise update to continue to foster transparent communication. 

    - - - -

    At this time, NEAR Foundation is actively working towards a more decentralized model of capital allocation that will initially involve the DeveloperDAO, MarketingDAO, CreativesDAO, with an additional DAO that will begin formation in Q1 of 2023. This will impact the ecosystem in the following ways:

    - - - -
      -
    1. Effective immediately, NEAR Foundation will cease allocating capital directly from our inbound start-up grants program, with the exception of our current events grants, which will be handed over to the MarketingDAO when they are set up to manage them.  Request events funding by following the steps outlined here.
    2. - - - -
    3. In January and February, we will be working directly with community members to outline a clear application process for funding via the DAOs. Processing time is expected to take 6-8 weeks. If you are interested in helping us form the new DAO with a focus on start-up projects, please submit your interest using this contact form.
    4. - - - -
    5. Any  projects that have already received a portion of their funding and are working towards their agreed milestones will continue to be supported through the remaining milestones.
    6. - - - -
    7. Any application that is not already in the approval stage will not receive funding. However, we will do our best to redirect you to appropriate, alternative funding sources.
    8. -
    - - - -

    NEAR Foundation’s goal is to empower the ecosystem to make decisions that support  the strategic approach that will drive NEAR  to the next phase of its roadmap, with a look ahead at new areas of product and development, as outlined in the NEAR Strategic Update and Outlook for 2023. We will continue to be as transparent as possible about the new funding strategy as it rolls out. The Foundation will communicate as often, and as frequently, as possible. We encourage the community to continue providing meaningful feedback so we can iterate more quickly as we unite to build the NEAR Ecosystem together.

    -

    The post Refining NEAR Foundation’s Grant Approach appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Refer-and-Earn Guidelines Update: Q3 2022 - /blog/refer-and-earn-guidelines-update-q3-2022/ - - - Fri, 09 Dec 2022 17:00:00 +0000 - - - - - /?p=19539 - - NEAR’s ever-growing and engaged community is one of the ecosystem’s greatest strengths. Remember the NEAR Foundation Grants team’s Refer-and-Earn Program? …

    -

    The post Refer-and-Earn Guidelines Update: Q3 2022 appeared first on NEAR Protocol.

    -]]>
    - NEAR’s ever-growing and engaged community is one of the ecosystem’s greatest strengths. Remember the NEAR Foundation Grants team’s Refer-and-Earn Program? A number of NEAR community members participated in Refer-and-Earn in early 2022, resulting in grants for dozens of exciting projects currently building on the NEAR ecosystem.  

    - - - -

    The Foundation has had the pleasure of seeing the community being a key contributor in providing ecosystem support and building dapps. The community does this in a number of ways, including running and sponsoring events, educating developers and entrepreneurs on the benefits of NEAR, bringing projects with active user bases from other chains, and so on.

    - - - -

    NEAR Foundation wants to build on the community’s successes through a new incentive structure that aligns with the Grants Program (more information can be found at the Grants Program Handbook here bit.ly/Grants-Program-Handbook). 

    - - - -
      -
    1. The payout for each project referred will be awarded a total of 10% of the project awarded grant amount. This amount is awarded in nUSDC (wrapped USDC on NEAR) and is calculated at the end of each quarter.
    2. - - - -
    3. The first half of the 5% will be awarded at the point of the contract signed.
    4. - - - -
    5. The second half of the 5% will be awarded once all project milestones are completed. 
    6. -
    - - - -

    Refer-and-Earn: Q3 Qualified Projects

    - - - -

    The NEAR ecosystem receives a number of your recommendations and referrals. A total of 12 quality projects emerged from Refer-and-Earn, each aligning with NEAR Foundation’s Grants program objectives. 

    - - - -

    In no particular order, here are the Q3 2022 qualified projects: 

    - - - -
      -
    • Scene 
    • - - - -
    • Azadi Record
    • - - - -
    • Vital Carbon 
    • - - - -
    • Metavision Games 
    • - - - -
    • Murder Mystery Collective 
    • - - - -
    • MetaLordz 
    • - - - -
    • Klabrate and ClimaFi
    • - - - -
    • Meteor wallet 
    • - - - -
    • Mintmade 
    • - - - -
    • NEARKai
    • - - - -
    • EVIE Marketplace 
    • - - - -
    • Autify 
    • -
    - - - -

    The Grants team has reached out to all Refer-and-Earn referrers. Thanks to your help and support, the Grants team is able to support innovative projects like those listed above. 

    -

    The post Refer-and-Earn Guidelines Update: Q3 2022 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Evolving NEAR Foundation’s Funding Strategy - /blog/evolving-near-foundations-funding-strategy/ - - - Mon, 21 Nov 2022 16:15:00 +0000 - - - - /?p=19109 - - NEAR Foundation is publishing a series of blogs on the state of funding, including updates from the Grants Team and …

    -

    The post Evolving NEAR Foundation’s Funding Strategy appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is publishing a series of blogs on the state of funding, including updates from the Grants Team and an upcoming Transparency Report for Q3. This is part of our continued commitment to transparency, as well as more frequent and open communication with the NEAR community. 

    - - - -

    NEAR Foundation’s role is to support the NEAR ecosystem and community. This means that the Foundation can deploy capital to help promote growth, alongside its efforts to grow awareness of NEAR and onboard a billion users to Web3. 

    - - - -

    Among Layer 1 protocols, NEAR is in an excellent position to thrive despite the very difficult market conditions. Our 5+ years of runway will help the NEAR ecosystem weather the bear market, which is likely to last for some time. The Treasury Team’s careful spending and responsible Treasury management has equipped the ecosystem to emerge from this crypto winter with NEAR as the protocol of choice for people and projects building on Web3. 

    - - - -

    While the market has created a new reality for the entire Web3 ecosystem, NEAR sees this as a moment of great opportunity and a time to stick to our convictions. We’ve outlined the Foundation’s new strategy around facilitating Web2.5 and making NEAR the de facto bridge from Web2 to Web3. 

    - - - -

    Staying true to NEAR’s decentralized vision, the NEAR Digital Collective (NDC) was recently launched and led by the Governance Working Group (GWG). We’ve also delegated some decision-making to the community through grassroots DAOs: the DeveloperDAO, MarketingDAO, and CreativesDAO

    - - - -

    NEAR Foundation has provided capital to many projects over the last two-plus years, with clear milestones and goals designed to maximize potential value added to the ecosystem. Grants have been a major part of that capital allocation strategy since the program was first announced in 2021. Although the Foundation has a substantial amount of runway to support the ecosystem for several years to come, we need to ensure that we are stewarding NEAR’s Treasury as responsibly and sustainably as possible.

    - - - -

    With these long-term views in mind, NEAR Foundation is looking critically at all of its capital allocation in the last few years in order to determine what has had the most impact and where we should consider revising our approach. We will also be heavily scrutinizing upcoming capital deployments. The Foundation must focus on supporting the highest quality projects with the most potential and alignment with our vision for NEAR.

    - - - -

    What does this mean for the community? To make NEAR the leading Web2.5 bridge, NEAR Foundation will back those projects and initiatives that help best grow and support the ecosystem for years to come. This also means that some tough decisions are coming about where not to deploy funding. 

    - - - -

    However, in the areas where funding or granting is pared back, the Foundation will do its absolute best to support those affected by upcoming funding decisions. We will make our best efforts to help these community members find new homes with other ecosystem projects. 

    - - - -

    NEAR Foundation will also ensure that we are as transparent as possible about the new Funding strategy as it rolls out. The Foundation will communicate as often and as much as possible, and encourage the community to continue giving feedback so we can iterate more quickly as we build the NEAR Ecosystem together.

    - - - -

    NEAR Foundation has already made significant steps to make NEAR’s funding more transparent. Through the NEAR Digital Collective (NDC), we are empowering the community to evolve governance and coordinate together through the ecosystem DAOs. (Read more and get involved at the NDC gov.nearpages.wpengine.com page.) In September, NEAR formed a working group to set standards for this on-chain style of self-governance. The Foundation has been calling this the “bottom-up” approach to supporting the community, encouraging grassroots coordination and decentralized decision-making that works in parallel with the Foundation’s more “top-down” stewardship and funding strategy.  

    - - - -

    The Foundation also started publishing a regular Transparency Report in the spirit of accountability to the ecosystem. The first Transparency report, which came out just before NEARCON, was an important start—but we want to make it even better for the community. The next report will be coming out in a couple of weeks and will include more granularity where possible. You can also check out a recent update from the NEAR Grants team titled “Funding Beyond Grants”. 

    - - - -

    It’s also important for the community to understand that while transparency and open communication are an essential part of NEAR Foundation’s commitment to all of you, we cannot be entirely transparent about every funding decision or commercial agreement we make. This is primarily due to legal restrictions that can be imposed on NEAR Foundation in its dealings with third parties. The Foundation will share as much as possible  about the exciting collaborations being made in the months ahead.

    - - - -

    NEAR Foundation highly encourages people to get involved with the NEAR community. By becoming more participatory, community members can take ownership in the new bottom-up approach to decision making we are helping foster across the ecosystem.

    - - - -

    NEAR Foundation is keeping an eye on the long term for the entire NEAR ecosystem. By being fiscally responsible and deploying capital in a sustainable way, the Foundation can ensure that NEAR emerges from this bear market stronger than ever, and well positioned to help builders keep building the future of Web3.

    -

    The post Evolving NEAR Foundation’s Funding Strategy appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Funding Team Report: September 2022 - /blog/near-foundation-funding-team-report-september-2022/ - - - Fri, 18 Nov 2022 10:00:00 +0000 - - - - /?p=19093 - - Welcome to the NEAR Foundation Funding Team Report that captures and highlights data for the month of September 2022. The …

    -

    The post NEAR Foundation Funding Team Report: September 2022 appeared first on NEAR Protocol.

    -]]>
    - Welcome to the NEAR Foundation Funding Team Report that captures and highlights data for the month of September 2022. The purpose of this document is to provide transparency regarding what happened during the last month in our Funding Team, and is to be shared publicly to the ecosystem and our investor network.

    - - - -
    - - - -

    Summary 

    - - - -

    1. Grant data

    - - - -

    1.2. Approved Grant program data

    - - - -

    1.2. Grant highlights

    - - - -

    1.3 Completed Projects & Milestone data

    - - - -

    1.4 Effectiveness of the funding program

    - - - -

    2. External funding in the NEAR Ecosystem

    - - - -

    3. Ecosystem highlights

    - - - -
    - - - -

    1. Grant data

    - - - -

    1.1. Approved Grant Program data

    - - - -

    Data reflects projects that have applied for a Grant via the Grants Program and that have been signed by the NEAR Foundation during the month of September (01.09.2022 to 30.09.2022).

    - - - -

     *Note: all applications have been processed.

    - - - -

    General Grant data

    - - - -
    Applications received*   📥Grant Agreements  signed  ✅Conversion rateAverage Grant amount Committed amount in dollars 💵
    1392517%$78 K$1.9  M
    - - - -

    Grant tracks**

    - - - -
    Activation (up to $10 K)5
    Small Builder (up to $25 K)4
    Builder (up to $50 K)11
    Advanced Builder (up to $100 K)4
    Partner ($ ∞)2
    - - - -

    ** Please note that our current grant tracks have been updated. For more information please have a look at our updated grant tracks.

    - - - -

    Grants per category 

    - - - -

    Gaming / Metaverse – 7

    - - - -

    Infrastructure / Wallets – 6

    - - - -

    NFTs – 4

    - - - -

    Other – 4

    - - - -

    Social Impact – 2

    - - - -

    Institutional / Financial – 2

    - - - -

    Grants per country (Top 5)

    - - - -

    United States – 8

    - - - -

    United Kingdom – 2

    - - - -

    Switzerland – 2

    - - - -

    Malaysia – 2

    - - - -

    Ukraine – 1

    - - - -
    - - - -

    1.2. Grant highlights 

    - - - -

    This section provides highlights of grants that have been signed during the month.

    - - - -

    Gaming / Metaverse projects 

    - - - -
    NameWebsiteGrant trackLocation 
    ArcneswebsiteAdvanced BuilderPoland
    BonuzwebsiteAdvanced BuilderDubai
    ArheadwebsiteBuilderUnited Arab Emirates
    BearversewebsiteBuilderUnited States
    Gameplace by ZomboDuckswebsiteBuilderIsrael
    JoystickwebsiteSmall BuilderNigeria
    Open character creatorwebsiteActivationUnited States
    - - - -

    Infrastructure / Wallets projects 

    - - - -
    NameWebsiteGrant trackLocation 
    OnMachinawebsitePartnerUnited States
    Meteor WalletwebsiteBuilderMalaysia
    VerisoulwebsiteBuilderUnited States
    near.js – /Small BuilderUkraine
    Java-SDK part 3websiteSmall BuilderSwitzerland
    Tonana Bridge & ConnectorswebsiteActivationCzech Republic
    - - - -

    Institutional / Financial projects 

    - - - -
    NameWebsiteGrant trackLocation 
    Defolio/PartnerUnited Kingdom
    Near Access/ActivationUnited States
    - - - -

    Social Impact projects 

    - - - -
    NameWebsiteGrant trackLocation 
    BeeTogetherwebsiteBuilderSwitzerland 
    GRVTYwebsiteBuilderUnited Kingdom
    - - - -

    NFT’s projects 

    - - - -
    NameWebsiteGrant trackLocation 
    NEAR NFT DAOwebsiteBuilderUnited States
    NakshwebsiteSmall BuilderIndia
    3six9 NFT MarketplacewebsiteActivationMalaysia
    Solar DexwebsiteActivationUnited States
    - - - -

    Other projects 

    - - - -
    NameWebsiteGrant trackLocation 
    Three0websiteBuilderUnited States
    NextHollywoodwebsiteBuilderUnited States
    CrowdclasswebsiteBuilderPortugal
    Alpha LeaksActivationAustralia
    - - - -

    1.3 Completed Projects & Milestone data 

    - - - -

    Grant agreements are structured with milestones. Depending on the selected grant track, a grant can have from 1 to 5 milestones. For more information the funding team invites you to explore our milestone guide

    - - - -
    Projects having completed a milestone  ☑️61
    Projects having completed final milestone 13
    - - - -

    Projects completed per category 

    - - - -

    Gaming / Metaverse – 1

    - - - -

    Infrastructure / Wallets – 5

    - - - -

    NFTs – 1

    - - - -

    DAOs – 3

    - - - -

    Other – 3

    - - - -

    Gaming / Metaverse

    - - - -
    Alien Esports Industrywebsite BuilderUnited States
    - - - -
    Alien Esports Industry is a  platform to hold esports tournaments with integrated game mechanics that provide unique opportunities to gamers.
    - - - -

    Infrastructure / Wallets 

    - - - -
    KuutamowebsiteAdvanced BuilderDenmark
    - - - -
    Kuutamo is building out an enterprise-grade staking node management and reporting system dedicated to support NEAR and NEAR-affiliated networks. Kuutamo will provide practical tooling to enable individuals and organizations to operate secure, honest, and profitable validators in a straightforward way. 
    - - - -
    BlockperkswebsiteAdvanced BuilderUnited Kingdom
    - - - -
    Blockperks is building a complete Web3 infrastructure and NFT marketplace for brands, artists, and creators to successfully bridge from Web2 to Web3 with NEAR. Blockperks provides the platform architecture and an adaptive social media dApp so that organizations, clients, and end-users can easily onboard and tokenize assets through the creating and trading of NFT’s. 
    - - - -
    Solace ProtocolwebsiteActivationIndia
    - - - -
    Solace is a program (smart-contract) based non-custodial wallet for NEAR which eases user’s onboarding and enhances security using social recovery, written in Rust.
    - - - -
    Emblem VaultwebsiteBuilderUnited States
    - - - -
    Emblem Vault is an application that collects the value of a portfolio within a token, you can also add non-blockchain assets to the portfolio.
    - - - -
    Java SDK – Part 3websiteSmall BuilderSwitzerland
    - - - -
    From the team who delivered the Java-API part 1/2 and that took over the Borshj for maintenance. This time they would like to further enhance the Java API and implement services to create accounts, manage additional reward structure, and call other smart contracts methods.
    - - - -

    NFTs

    - - - -
    NFT Marketplace for Science IPswebsite Advanced BuilderUnited States
    - - - -
    NFT Marketplace for Science IPs is building a NFT marketplace for science IPs on top of our data & AI ecosystem platform, for which the project  innovates with smart contracts for best services to scientists worldwide.
    - - - -

    DAOs

    - - - -
    Deep Skillswebsite BuilderBritish Virgin Islands
    - - - -
    Deep Skills aims to diverse options of how current organizations recruit, educate, and coordinate talented individuals.
    - - - -
    Gydewebsite BuilderUnited States
    - - - -
    Gyde connects users with helping services that they are looking for. The DAO provides incentives via a token to allocate to reviewers on the platform. The DAO also acts as a data provider selling to governments and think tanks driving incentives for power users.
    - - - -
    NEAR Alexandriagithub BuilderBrazil
    - - - -
    NEAR Alexandria Is building the largest virtual library for NEAR content and academic content. The team will use metabuilders, meta designers, NEAR DAO council members and academics to build the virtual building, the objects, and the links from all the real books, papers, articles and texts in general that will be in the library.
    - - - -

    Other

    - - - -
    Vital Point AIwebsite BuilderCanada
    - - - -
    Vital Point AI is focused on open-source blockchain development using NEAR Protocol. With a proven record of delivering quality tutorials and dedication to the NEAR ecosystem, helping scale Vital Point Academy will benefit NEAR and the ecosystem in various ways.
    - - - -
    Aerxwebsite BuilderRussia
    - - - -
    A decentralized modular social network where any user can own their content according to the create2eart principle.
    - - - -
    NEAR NYCwebsite BuilderUnited States
    - - - -
    NEAR NYC is a dedicated NEAR community in NYC that will scale NEAR awareness and education by organizing bi-weekly meetups, managing localized social media accounts (Twitter, Telegram, Instagram, Meetup, Eventbrite), establish partnerships with community leaders, and organizing a NEAR NYC hacker house.
    - - - -

    1.4 Effectiveness of the funding program  

    - - - -

    Total external funding (overall amount) came from projects that have received a grant (around 44%).

    - - - -
    - - - -

    2. External funding in the NEAR Ecosystem

    - - - -

    This section provides information about external funding in the NEAR ecosystem

    - - - -
    • 12 closed projects in Q3 ‘22 – ($92.2M)
    • 4 finalizing rounds
    • 18 new fundraising processes kicked off 
    • 38 VC intros made
    • Closed Rounds (September data)
      • Sender Wallet Raised a $4.5M private round led by Pantera Capital with participation from Crypto.com, Jump, Amber Group, Woo Network, SevenX Ventures, Shima Capital, and others.
      • HillridgeRaised a $2.3M seed round to address climate protection in the agriculture industry with their Insurtech solution building on NEAR.
    - - - -
    • Closed Rounds (Q3 data)
      • Portalverse Networkraised a multi-million $ seed round with participation from Big Brain Holdings, 2Moon Capital, and Cogitent Ventures to bring the first decentralized cloud gaming and rendering network to the NEAR ecosystem.
      • Scorefam – secured a capital commitment of up to $25M from GEM Digital to expand their gaming NFT suite of products.
      • Token Terminal – raised $6.5M to expand their crypto asset data coverage, which will soon include NEAR Protocol and NEAR ecosystem projects.
      • Mystiko.Network – raised a $10M round this past month. Mystiko received a grant from NEAR Foundation to support NEAR through their transaction privacy layer.
      • Sweat Economyraised $13M in funding including a private token sale, to accelerate their move into Web3.
      • Nicheclosed a $1.8M pre-seed to bring decentralized social media to NEAR.
      • Aurigamiraised $12M in token rounds earlier this year to continue to grow DeFi on Aurora.
      • Play Ember – just closed a $1.4M token seed round to bring mobile gaming to NEAR. The team is currently exploring an equity round at this moment as well. 
    - - - -
    - - - -

    3. Ecosystem highlights  

    - - - -

    NEARWEEK is the one-stop-shop for all NEAR related news. Each weekly newsletter and edition is made possible via news contributions from the NEARWEEK community to the NEWS DAO. Subscribe or visit NEARWEEK.com to get your weekly dose of news from the NEARverse!

    - - - -

    For the month of September we invite you to read through the following newsletters : 

    - - - -

    Newsletter 74 

    - - - -

    Newsletter 75 

    - - - -

    Newsletter 76

    - - - -

    Newsletter 77 

    - - - -
    - - - -

    If you are interested in getting funded : 

    - - - - -

    The post NEAR Foundation Funding Team Report: September 2022 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Funding Updates: Funding Beyond Grants - /blog/near-funding-updates-funding-beyond-grants/ - - - Thu, 06 Oct 2022 09:03:00 +0000 - - - /?p=18581 - - Welcome to the Funding Team Series that highlights important updates about NEAR Foundation’s Grants program, ecosystem and funding strategy.  Part …

    -

    The post NEAR Funding Updates: Funding Beyond Grants appeared first on NEAR Protocol.

    -]]>
    - Welcome to the Funding Team Series that highlights important updates about NEAR Foundation’s Grants program, ecosystem and funding strategy. 

    - - - -

    Part 1 will cover funding beyond Grants, Part 2 will reintroduce NEAR Foundation’s Grant Program, and Part 3 will introduce the Grant Team Handbook, to be published in the coming weeks. 

    - - - -

    The NEAR Funding team is composed of two sub-teams: the Grants team that manages the Grants program and the Strategic Funding team which focuses on equity investments and the external VC network.

    - - - -

    Part 1 / Funding Beyond Grants

    - - - -

    1.  NEAR ecosystem funding programs

    - - - -

    2. Success stories in the NEAR ecosystem

    - - - -

    3. Projects that have raised capital

    - - - -

    NEAR Foundation has been deeply focused on developing other funding programs within the ecosystem since the start of 2022.  Since the creation of Proximity Labs and Aurora and the launch of their own grants program, NEAR Foundation has been redirecting DeFi projects to Proximity and EVM based projects to Aurora. 

    - - - -

    Please note that Proximity’s, Aurora’s, and all other separate grant programs’ decisions are made independent of NEAR Foundation. 

    - - - -

    1.  Ecosystem funding programs 

    - - - -

    A number of grant programs have launched and are ongoing  in the NEAR ecosystem including: Human Guild for Gaming projects, CypherPunk Guild for privacy projects, and Mintbase for NFT projects. These grant channels are to be used to expand and decentralize our ecosystem in a more efficient manner.  

    - - - -

    Additionally, to amplify NEAR’s growth, the NEAR Funding team is working with launchpads, accelerators, ecosystem funds, and a VC Network that are all deeply rooted in the NEAR ecosystem.

    - - - -

    Launchpads are blockchain-based platforms that help startups and crypto-related projects launch on-chain.

    - - - - - - - -

    For further information about launchpads on NEAR, please visit this guide
    Accelerators help founders validate, build, and de-risk by defining and growing KPIs, developing product-market fit, and fundraising.

    - - - - - - - -

    Ecosystem Funds are deeply rooted in the NEAR Ecosystem with global or vertical focuses, primarily investing and deploying capital to projects in the NEAR ecosystem.

    - - - - - - - -

    Regional Hubs, as part of our path toward decentralization, the NEAR Foundation will be redirecting projects related to specific regions. The  NEAR Foundation is currently supporting 6 regional hubs in strategic locations (Ukraine, Kenya, Balkans, Vietnam, India and Korea) with others to come. Local experts are able to tailor NEAR initiatives to support local communities and regional ecosystem building. 

    - - - -

    A summary of different funding programs can be found here.

    - - - -

    VC Network 

    - - - -

    NEAR Foundation’s VC Network includes 300+ VCs  representing 30Bn+ in capital that are actively engaged and supporting the growth of projects within NEAR. They have already deployed $300 million to 60 projects thus far.

    - - - -

    2. Success stories in the NEAR ecosystem

    - - - -

    NearNauts – NFT

    - - - -

    The NearNauts team came to NEAR with a vision, received funding from the NEAR Foundation Grants team, and have since launched what is now the top NFT project on NEAR. They started off as a PFP NFT project, utilizing grant funds to develop their website, smart contract, and marketing. Then, they expanded to build out a no-code NFT launchpad and a KYC platform. Their marketplace is on the way featuring a revenue sharing model for holders.

    - - - -

    Apollo42 – NFT 

    - - - -

    The Apollo42 team is a great example of a NEAR Foundation grant recipient that came to NEAR with a vision, and by receiving funding from NF was able to realize that vision. Apollo 42 is an ecosystem of NFT services that started out by building and integrating NFT ranking tools. From there, they went on to develop their own NFT Marketplace with elements of AR built into it. Apollo42 has made some amazing developments along the way, and continues to build out and update their platform.

    - - - -

    Blogchain – Social Impact

    - - - -

    Capsule Social is another great example of a team that received funding from the NEAR Foundation Grants team and went on to build an amazing platform. With the funding received from NF, the Capsule Social team developed Blogchain, a creative writing platform that empowers writers to publish content and get paid on Web3.

    - - - -

    NearBlocks – Tools/Infrastructure

    - - - -

    The team behind NearBlocks initially came into the NEAR ecosystem curious about the blockchain and underlying tech. They received a grant from NF and built NearBlocks, a blockchain explorer, search, API and analytics platform with the goal of providing equitable access to blockchain data. Once they launched NearBlocks and saw how successful it was, they went on to build and launch https://nearsend.io/, a tool for bulk transacting. The team also has another exciting project in the works. Located in Indonesia, the team has gone from 3 to 11 full time Rust developers, with the goal of increasing to 50 in the next year.

    - - - -

    Sender – Wallet

    - - - -

    Sender Wallet is a great case study of a project that came into the NEAR ecosystem with a plan. The team received funding from the NEAR Foundation Grants team to build out and launch a non-custodial browser extension wallet for NEAR users. Sender Wallet has gone on to be one of the most popular wallets in the ecosystem.

    - - - -

    3. Projects that have raised capital  

    - - - -

    Niche – Social Networking app on NEAR – Twitter

    - - - -

    Niche is a decentralized social networking app, built to help people discover and grow communities. The mission of Niche is to return agency to individuals and enable them to benefit from their content, not big corporations. 

    - - - -
    • External Raised capital:  $1.8M –  Announcement
    • Latest update:  Launched beta in August, read about their NEAR launch here.
    - - - -

    Tonic – Orderbook DEX on NEAR  – Twitter

    - - - -

    Tonic is a high-performance trading platform that brings the speed and convenience of centralized exchanges to NEAR while being fully decentralized.

    - - - -
    • External Raised capital: $5MAnnouncement
    • Latest update:  Launched mainnet in May 2022, launched Tonic Swap in July
    - - - -

    Capsule SocialDecentralized social discourse on NEAR – Twitter

    - - - -

    Capsule Social launched Blogchain, a Web3 publishing platform with unrivaled protections for free speech, where content is protected by a censorship-resistant architecture. 

    - - - -
    • External Capital Raised: $2.5M –  Announcement
    • Latest update:  Launched Blogchain, a decentralized Substack competitor in June.  You can check out the content on Blogchain or participate in writing here.
    - - - -

    Sender Wallet – Browser extension wallet built on NEAR – Twitter

    - - - -

    Sender is a browser extension wallet built on NEAR. Its goal is to build a secure and smooth wallet for decentralized digital assets like crypto and NFTs.

    - - - - - - - -

    Interested in getting funded?

    - - - -

    If you are interested in funding for your project, check out the following resources: 

    - - - -
    • Explore NEAR Funding Programs: linktree
    • Visit the NEAR website : /
    • Contact the NEAR Grants team at grants.@near.foundation 
    - - - -

    ⌛️ In the next blog post, the NEAR Funding team will reintroduce the NEAR Foundation’s Grant Program, providing grant data and including key updates. 

    -

    The post NEAR Funding Updates: Funding Beyond Grants appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/grants/index.html b/public/blog/tag/grants/index.html deleted file mode 100644 index 0c7c6afbb..000000000 --- a/public/blog/tag/grants/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Grants Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/grassroots-support-initiative/feed/index.xml b/public/blog/tag/grassroots-support-initiative/feed/index.xml deleted file mode 100644 index eaeb29b54..000000000 --- a/public/blog/tag/grassroots-support-initiative/feed/index.xml +++ /dev/null @@ -1,131 +0,0 @@ - - - - Grassroots Support Initiative Archives – NEAR Protocol - - /blog/tag/grassroots-support-initiative/ - - Thu, 14 Sep 2023 08:38:18 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Grassroots Support Initiative Archives – NEAR Protocol - /blog/tag/grassroots-support-initiative/ - 32 - 32 - - - Grassroots Support Initiative Update – September 11, 2023 - /blog/grassroots-support-closing-update/ - - - Mon, 11 Sep 2023 15:25:35 +0000 - - - - - /?p=20851 - - As a follow up to the NEAR Foundation’s previous grassroots support post, we wanted to take a moment to share …

    -

    The post Grassroots Support Initiative Update – September 11, 2023 appeared first on NEAR Protocol.

    -]]>
    - As a follow up to the NEAR Foundation’s previous grassroots support post, we wanted to take a moment to share an update on our progress. On September 4th, we closed the form through which projects could request support until the NDC funding mechanism is live. Over the past two weeks, we have spoken to builders across the ecosystem to understand their needs and begin mapping out the different paths forward to ensure they receive the support they need. 

    - - - -

    We have encountered a range of different requests and have been taking a holistic approach to understand the unique needs faced by each project and the resources available to help them achieve their goals moving forward. While financial support is only one part of this, there have been a number of questions about the range of options available, so we wanted to give everyone visibility into the next steps.

    - - - -

    Projects looking for funding will first explore internal resources including the BD/Ecosystem success team and ad hoc advisory support via a 1-1 call with the Horizon team, as well as by working closely with the MarketingDAO, CreativesDAO, and DevHub. Projects that do not qualify through any of these routes will have the ability to go to an internal review process. 

    - - - -

    To make sure the community voices are heard and involved in the process, members of the Governance Working Group (GWG) have collaborated with NEAR Foundation to define the criteria needed to receive financial support. The criteria the committee will use to make the selections are the following:

    - - - -
      -
    • Is the project built on NEAR and live on mainnet?
    • - - - -
    • Is there a current grant already in place? 
    • - - - -
    • Are there a minimum 100 monthly active users?
    • - - - -
    • Does the request cover a maximum of 3 months of runway?
    • -
    - - - -

    This process should be completed within the coming two weeks, at which point the NEAR Foundation will provide a further update. In the meantime, if you have any questions you can always reach us at community@near.foundation.

    - - - -

    -

    The post Grassroots Support Initiative Update – September 11, 2023 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Update on the Grassroots Support Initiative - /blog/update-on-the-grassroots-support-initiative/ - - - Mon, 28 Aug 2023 16:14:02 +0000 - - - - - /?p=20816 - - One of the things the NEAR Foundation has always been most proud of is the passion and enthusiasm of our …

    -

    The post Update on the Grassroots Support Initiative appeared first on NEAR Protocol.

    -]]>
    - One of the things the NEAR Foundation has always been most proud of is the passion and enthusiasm of our builders and grassroots projects — something we have seen demonstrated again since the recent post about the NDC. Over the past week alone, over 30 projects have reached out to the Ecosystem Team and a number of conversations are already underway. This has allowed NEAR Foundation to begin mapping out current needs, and understand the best way to provide support that will ensure the NEAR ecosystem remains a vibrant, open, and accessible place to build. 

    - - - -

    For us at the Foundation, hearing directly from builders provides invaluable insight into the state of the ecosystem and how we can best continue to support the people and projects that make it what it is. What we have heard so far is that while financial support is important as the NDC fully ramps up, every project has a unique set of needs that requires a holistic approach to provide the right support, and that simply re-starting a grants program is not the right solution. To make sure that we get as many perspectives from across the ecosystem, we will be leaving the form open for one more week (until September 4th) to give anyone who needs support a chance to have their voice heard.

    - - - -

    Once the form is closed and we have had a chance to review all of the inputs, we will then begin setting out a broader plan — in alignment with the NDC — to ensure projects get the support they need as we continue moving forward on the path to decentralization. The moment we have the full insights from these conversations, which should be within the next few weeks, we will share them in a follow-up blog post along with a clear plan on how we will be moving forward. 

    - - - -

    We are excited to have so much interest from builders, and look forward to creating a plan that can help keep grassroots projects engaged and building.

    - - - -

    You can sign up for a time to speak with the Ecosystem Relations Team here.  

    -

    The post Update on the Grassroots Support Initiative appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/grassroots-support-initiative/index.html b/public/blog/tag/grassroots-support-initiative/index.html deleted file mode 100644 index 8c0e511e5..000000000 --- a/public/blog/tag/grassroots-support-initiative/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Grassroots Support Initiative Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/hackathon/feed/index.xml b/public/blog/tag/hackathon/feed/index.xml deleted file mode 100644 index 7a24b8489..000000000 --- a/public/blog/tag/hackathon/feed/index.xml +++ /dev/null @@ -1,250 +0,0 @@ - - - - Hackathon Archives – NEAR Protocol - - /blog/tag/hackathon/ - - Wed, 14 Feb 2024 18:59:44 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Hackathon Archives – NEAR Protocol - /blog/tag/hackathon/ - 32 - 32 - - - Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 - /blog/inaugural-ai-x-web3-hackathon-and-decentralized-ai-summit-to-debut-at-eth-denver-2024/ - - - Wed, 14 Feb 2024 18:59:43 +0000 - - - - - - - /?p=21226 - - In collaboration with Edge and Polygon Labs, the NEAR Foundation will co-sponsor a Decentralized AI Summit and “Autonomous Agent,” an …

    -

    The post Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 appeared first on NEAR Protocol.

    -]]>
    - In collaboration with Edge and Polygon Labs, the NEAR Foundation will co-sponsor a Decentralized AI Summit and “Autonomous Agent,” an AI x Web3 Hackathon, at ETHDenver on February 26 and 27. The events will bring together visionaries, developers, and enthusiasts working at the intersection of AI and Web3 along with a hackathon for builders and researchers to dive into the buzziest tech topic of today. Speakers at the Summit will include Vitalik Buterin of the Ethereum Foundation, Illia Polosukhin of NEAR Foundation, Sandeep Nailwal of Polygon Labs, and Sreeram Kannan of EigenLayer. 

    - - - -

    “Autonomous Agent” is the first event in the “{Chain}-of-Thought” series from Edge, which will explore and harness the potential of Web3 and open source AI. Edge is a research and development organization dedicated to democratizing access to open intelligence and advancing the evolution of next-generation web architecture. Hackers can expect hands-on hacking sessions, workshops, and mentorship opportunities with a chance to learn from those at the cutting edge of decentralized AI development. 

    - - - -

    The intersection of Artificial Intelligence (AI) and Web3 technology is poised to revolutionize industries, with many Web3 projects now incorporating AI into decentralized applications and developer tools. Ethereum Co-Founder Vitalik Buterin recently shared his observations about the intersection, and NEAR Co-Founder Illia Polosukhin shared how AI fits into the vision for the NEAR ecosystem in a recent post

    - - - -

    As the risks from centralized AI controlled primarily by major corporations become more apparent, investing in open source, transparent AI development will become increasingly important––along with community building, governance experiments, and advocacy. “{Chain} of Thought” will lead the way in bringing members of the AI and Web3 ecosystems together to advance these initiatives and make concrete progress.

    - - - -

    In addition to the premier sponsors, the “Autonomous Agent” hackathon is co-sponsored by EigenLayer, Gensyn, and Hyper Oracle, with co-hosting participation from Sentient, Lightspeed, and Symbolic Capital. Benefits of participation include:

    - - - -
      -
    • Cutting-Edge Workshops: Engage with industry experts and thought leaders through immersive workshops exploring the latest trends and technologies in AI x Web3.
    • - - - -
    • Hackathon Challenges: Tackle real-world challenges and showcase your creativity by developing innovative solutions at the forefront of AI and Web3 integration.
    • - - - -
    • Networking Opportunities: Connect with like-minded individuals, potential collaborators, and industry professionals to expand your network and exchange ideas.
    • - - - -
    • Prizes and Recognition: Compete for exciting prizes and gain recognition for your contributions to the advancement of AI x Web3 technology.
    • -
    - - - -

    Join NEAR Foundation, Polygon Labs, and Edge in Denver and be a part of the next great tech revolution. Those interested in attending the Decentralized AI Summit can register here. Researchers, developers, and hackers interested in participating in the hackathon can apply here

    -

    The post Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Near at ETHDenver Hackathon Bounty Winners - /blog/near-at-ethdenver-hackathon-bounty-winners/ - - - Mon, 13 Mar 2023 18:14:58 +0000 - - - - - - /?p=20300 - - For the 2023 edition of ETHDenver, the Near ecosystem offered a number of bounties across a range of Web3 verticals, …

    -

    The post Near at ETHDenver Hackathon Bounty Winners appeared first on NEAR Protocol.

    -]]>
    - For the 2023 edition of ETHDenver, the Near ecosystem offered a number of bounties across a range of Web3 verticals, including DeFi, Content, Search, Social Media, Interoperability, Smart Contract History, and more. There were 3 main prize pools from Aurora, Proximity, and Developer Governance (DevGov). 

    - - - -

    Congratulations to all Near winners. who received over 30k in USDC! Let’s have a look at the winning projects of the Near at ETHDenver bounties. 

    - - - -

    Aurora Bounty Winners

    - - - -

    Open Aurora Bounty

    - - - -

    Winner – StakingPool Aurora

    - - - -

    Implements a liquid staking protocol around Aurora Plus staking. Users will deposit AURORA and receive a share in $stAUR tokens, which distributes the APY rewards. $stAUR could be immediately converted with a fee or wait for a delayed unstake.

    - - - -

    Runner Up – Geni

    - - - -

    AI-powered specifications generator of security tests for smart contracts.

    - - - -

    Runner Up – Demeter

    - - - -

    A lending platform that offers yield advancements, i.e., self-paying loans. Borrowers’ collateral is invested in RWA protocols, and the yield pays off debt.

    - - - -

    Proximity Bounty Winners

    - - - -

    Deploy a Decentralized Frontend Component

    - - - -

    Winner – BosWrap 

    - - - -

    BosWrap used the Near Blockchain Operating System to build a decentralized widget for wrapping/unwrapping ETH.

    - - - -

    Runner Up – ABI BOS Widget 

    - - - -

    A solidity explorer widget that allow users to explore any smart contract for a given ABI. You can get ABI from Etherscan website.

    - - - -

    Runner Up – Bossed Up

    - - - -

    A project focusing on Ethereum frontends, Blockchain Operating System improvements, and NEAR Social widgets that interact with NEAR contracts.

    - - - -

    Runner Up – Atmosph3re

    - - - -

    A dApp for reducing the homeless crisis in the United States by giving those living on the streets a decentralized identity, mentoring and community support, and funds for spending on their basic needs to help them thrive. 

    - - - -

    Runner Up – EthDenver2023UWCA

    - - - -

    A dApp on NeaR’s new frontend with BOS.GG. Integrates with Rocketpool to offer quick swaps on Ethereum.

    - - - -

    DevGov Bounty Winners

    - - - -

    Extensive Developer Profile Widget

    - - - -

    Winner – Developer Profile

    - - - -

    A recreation of Github profile for NEAR social developers in the Blockchain Operating System. 

    - - - -

    Fuzzy Search Widget / Promoted Posts Banner Widget / Top Posts Widget  / Post History with Diff Widget

    - - - -

    Winner – Near.Social DevGovGigs Improvements 

    - - - -

    A new Developer Governance Gigs interaction experience for Near.Social. Features: 1) Fuzzy Searching that can handle typos, 2) Promote posts and Promoted Post viewer, 3) Hottest Posts viewer, and 4), Post editing history viewer.

    - - - -

    Near.Social Bots Coded in Javascript

    - - - -

    Winner – JS Bot Widget

    - - - -

    Verifiable RPC Replies

    - - - -

    Winner – Near Verifiable RPC Endpoints for Viewing Access Keys

    - - - -

    Adds proof generation support to RPC read access key endpoints on the NEAR protocol to help pave the road for light client support. 

    -

    The post Near at ETHDenver Hackathon Bounty Winners appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/hackathon/index.html b/public/blog/tag/hackathon/index.html deleted file mode 100644 index 9985e75d9..000000000 --- a/public/blog/tag/hackathon/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Hackathon Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/horizon/feed/index.xml b/public/blog/tag/horizon/feed/index.xml deleted file mode 100644 index ac8c28be2..000000000 --- a/public/blog/tag/horizon/feed/index.xml +++ /dev/null @@ -1,109 +0,0 @@ - - - - Horizon Archives – NEAR Protocol - - /blog/tag/horizon/ - - Thu, 04 May 2023 00:02:35 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Horizon Archives – NEAR Protocol - /blog/tag/horizon/ - 32 - 32 - - - NEAR Foundation Launches NEAR Horizon - /blog/near-foundation-launches-near-horizon/ - - - Wed, 26 Apr 2023 16:47:54 +0000 - - - - /?p=20420 - - Though there have been recent signs of crypto winter thawing, developers have continued to make the most of the current …

    -

    The post NEAR Foundation Launches NEAR Horizon appeared first on NEAR Protocol.

    -]]>
    - Though there have been recent signs of crypto winter thawing, developers have continued to make the most of the current builder’s market. NEAR, in particular, has seen significant growth in new projects and increased adoption over the past year.  

    - - - -

    NEAR’s expansion is due in part to some significant upgrades and announcements from its core team. Most recently, NEAR announced its transition to a Blockchain Operating System (BOS), an industry first that further establishes NEAR as the direct entry point into Web3. With the BOS, NEAR is no longer just a Layer 1 — it’s the OS for an open web, free from the centralized platforms of Web2. 

    - - - -

    During the announcement, NEAR co-founder Illia Polosukhin signaled that the transition to the BOS was just the beginning of what’s to come for NEAR. With Consensus in full swing, and NEAR’s presence at the conference, many Web3 enthusiasts and NEAR community members anticipate more exciting announcements and were not disappointed. 

    - - - -

    At Consensus, NEAR Foundation announced NEAR Horizon, an accelerator revolutionizing how founders are supported in Web3. Made possible through partnerships with Dragonfly, Pantera, Lyric, Fabric Ventures, Decasonic, Hashed, and others, NEAR Horizon will enable founding teams to scale their projects with a wide range of support. This support will, in turn, enable the rapid growth of great products with real-world value in the NEAR ecosystem.

    - - - -

    A revolutionary accelerator for Web3 startups

    - - - -

    NEAR Horizon is an exciting opportunity for founder teams looking to build their startups on the BOS. Startups can interact with NEAR Horizon through a double-sided marketplace application that connects founders to each other, and to the people and organizations who are best able to accelerate their growth. 

    - - - -

    At launch, the marketplace will include over 15 service providers, 40 mentors, and over 300 backers. Founders in the NEAR ecosystem will have direct self-service access to NEAR Horizon, allowing them to make the connections and generate the resources that will help them succeed. In addition to these immediate resources, founders can apply for credits that cover service costs in critical development areas including marketing, legal, back-office finance, product, and infrastructure. 

    - - - -
    - -
    - - - -

    For founders looking for additional support and guidance throughout their Horizon journey, the platform will also be equipped with programs facilitated through a NEAR Foundation partner, providing mentorship, business resources, and a direct line to startup capital. These programs are available through a wide range of industry leading groups including Antler, Brinc, FabricX, CV Labs, Blockchain Founders Group, among others. Regardless of the path founders choose to take, NEAR Horizon will provide them with the support they need when they need it most to accelerate the growth of their Web3 projects built on NEAR.

    - - - -

    As crypto winter’s thawing hopefully promises the arrival of a crypto spring, NEAR is continuing to build momentum with both founders and investors in the Web3 community. With higher transaction speeds than Ethereum, a strong commitment to its ecosystem, and an industry-first Blockchain Operating System, NEAR has created a direct path toward success for founders. 

    - - - -

    Interested in getting involved? Over the next couple of months, the NEAR Foundation will be onboarding projects and founders to NEAR Horizon. If you don’t want to miss the introductions, advice, capital, or hires that come from the marketplace, reach out and get involved today:

    - - - - -

    The post NEAR Foundation Launches NEAR Horizon appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/horizon/index.html b/public/blog/tag/horizon/index.html deleted file mode 100644 index 784609779..000000000 --- a/public/blog/tag/horizon/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Horizon Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/i-am-human/feed/index.xml b/public/blog/tag/i-am-human/feed/index.xml deleted file mode 100644 index e26ae3437..000000000 --- a/public/blog/tag/i-am-human/feed/index.xml +++ /dev/null @@ -1,110 +0,0 @@ - - - - I-AM-HUMAN Archives – NEAR Protocol - - /blog/tag/i-am-human/ - - Tue, 20 Jun 2023 13:52:38 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - I-AM-HUMAN Archives – NEAR Protocol - /blog/tag/i-am-human/ - 32 - 32 - - - NEAR Digital Collective’s I-AM-HUMAN Welcomes Its First 1000 Verified Humans - /blog/near-digital-collectives-i-am-human-welcomes-its-first-1000-verified-humans/ - - - Fri, 16 Jun 2023 21:29:01 +0000 - - - - - /?p=20648 - - NEAR Foundation is thrilled to share some inspiring news today. The I-AM-HUMAN project, a cornerstone proof-of-humanity initiative of the NEAR …

    -

    The post NEAR Digital Collective’s I-AM-HUMAN Welcomes Its First 1000 Verified Humans appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is thrilled to share some inspiring news today. The I-AM-HUMAN project, a cornerstone proof-of-humanity initiative of the NEAR Digital Collective (NDC), just achieved a significant landmark of welcoming 1,000 verified community members to our growing ecosystem. 

    - - - -

    This critical milestone underscores the NEAR Foundation and NDC’s commitment to fair and equitable digital governance and representation built on NEAR.

    - - - -

    The impact of I-AM-HUMAN’s 1,000 verified users

    - - - -

    What does it mean to have 1,000 verified users? Simply put, it means 1,000 verified, unique human voices; 1,000 individual perspectives; and 1,000 contributors to NEAR Foundation’s mission of democratizing the digital world. 1,000 verified community members now have the opportunity to engage in governance voting, build an on-chain reputation, drive grassroots funding, and unlock the truly transformative power of DAOs.

    - - - -

    This active engagement is helping reshape the way key decisions are made, moving away from centralized control and towards a truly decentralized, democratic governance model. 

    - - - -

    Distributing voting power to the people with “Soul Bound Tokens”

    - - - -

    I-AM-HUMAN is all about fairly distributing voting power to the people. At its heart is the concept of “Soul Bound Tokens” or SBTs. These aren’t your average digital tokens —each SBT represents a real individual, flesh-and-blood human being, verified through our innovative and user-friendly proof-of-humanity identity verification process. SBTs are the digital embodiment of you, assuring that your voice counts, and making the principle of “one person, one vote” a reality in the digital realm.

    - - - -

    Minting your SBT is easy and only requires a NEAR wallet and your (adorable) human face. And don’t worry about what you look like since the image is encrypted and never seen by anyone. In fact, you always have the right to request the deletion of your data from I-AM-HUMAN and our partner Fractal. If you haven’t yet done so, give it a shot! It only takes a minute or two and we would love to have you be part of this important initiative. 

    - - - -

    We’ve made sure the process of getting your unique SBT, or putting a digital stamp on your individuality, is simple and accessible. With Fractal’s help, we’ve been able to keep this process secure and respectful of your privacy rights, which for the NDC, is of paramount importance. 

    - - - -

    “With the creation of the I-AM-HUMAN protocol, NDC sets a new standard for on-chain identity verification, empowering individuals to assert their humanity securely and transparently in the digital realm,” says Jane Wang, Product Lead at NDC Governance Working Group. “The I-AM-HUMAN protocol opens up a world of opportunities, from secure voting and governance participation to fair airdrops and reputation systems. We’re thankful for our partnership with Fractal, who has made the journey smooth with their field-tested identity solutions at NEAR.”

    - - - -

    Other NDC Initiatives on the horizon

    - - - -

    As NEAR Foundation and the NDC celebrate this major milestone, the commitment to innovation and improvement continues. The NDC is determined to provide an ever-improving experience for users, with initiatives underway to constantly improve user experience, strengthen data privacy, and expand our availability within the NEAR ecosystem. The NDC is actively creating a partnership roadmap for other organizations to leverage our proof-of-personhood solution, helping to empower our partners to ensure equitable decision-making within their own ecosystems.

    - - - -

    The journey to 1,000 users has been exciting, but the NDC is far from finished. Every new user brings us one step closer to NEAR’s vision of a digital world where each individual’s voice is respected, and where the democratic process isn’t just a principle, but a practice.

    - - - -

    So, if you haven’t already, we invite you to become a part of this revolutionary journey. Mint your own SBT, join our community, and make your unique mark in shaping the future of decentralized governance.

    - - - -

    The NDC extends its deepest gratitude to each and every one of you for taking the opportunity to unlock elections, governance, and community treasury with us. These first 1,000 users are opening the door for thousands more to come. 
    For updates, follow NDC on Medium and stay connected with us on this revolutionary journey!

    -

    The post NEAR Digital Collective’s I-AM-HUMAN Welcomes Its First 1000 Verified Humans appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/i-am-human/index.html b/public/blog/tag/i-am-human/index.html deleted file mode 100644 index 78f4a6e18..000000000 --- a/public/blog/tag/i-am-human/index.html +++ /dev/null @@ -1,2 +0,0 @@ -I-AM-HUMAN Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/icc-world-cup/feed/index.xml b/public/blog/tag/icc-world-cup/feed/index.xml deleted file mode 100644 index 0d228a55f..000000000 --- a/public/blog/tag/icc-world-cup/feed/index.xml +++ /dev/null @@ -1,102 +0,0 @@ - - - - ICC World Cup Archives – NEAR Protocol - - /blog/tag/icc-world-cup/ - - Thu, 28 Sep 2023 15:28:12 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - ICC World Cup Archives – NEAR Protocol - /blog/tag/icc-world-cup/ - 32 - 32 - - - International Cricket Council and NEAR Foundation Sign Multiyear Partnership to Boost Global Fan Engagement Through Web3 - /blog/international-cricket-council-and-near-foundation-sign-multiyear-partnership-to-boost-global-fan-engagement-through-web3/ - - - Wed, 27 Sep 2023 13:00:00 +0000 - - - - - /?p=20927 - - The International Cricket Council (ICC) and the NEAR Foundation are entering into a groundbreaking new partnership that will utilize Web3 …

    -

    The post International Cricket Council and NEAR Foundation Sign Multiyear Partnership to Boost Global Fan Engagement Through Web3 appeared first on NEAR Protocol.

    -]]>
    - The International Cricket Council (ICC) and the NEAR Foundation are entering into a groundbreaking new partnership that will utilize Web3 tools built on the NEAR Blockchain to deepen engagement in the sport.

    - - - -

    The NEAR Foundation will become the ICC’s official blockchain partner, helping cricket’s governing body create new ways for fans to get closer to their favorite teams and players using Web3 technology. 

    - - - -

    “We are excited to embark on this partnership with NEAR Foundation and to use their technology and network of talent to create better and deeper fan engagement around the globe,” says Finn Bradshaw, Head of Digital at the ICC.

    - - - -

    “We are looking forward to exploring ways in which we can use new technology to create lasting, valuable experiences for our fans.”

    - - - -

    The partnership will launch its first collaboration as part of the ICC Men’s Cricket World Cup, starting on October 5 in India. Built on NEAR’s Blockchain Operating System (B.O.S), the ICC will release a pre-match strategy challenge that pits players against each other to pick the best team. 

    - - - -

    Each player can make choices across three key facets of the challenge: batting, bowling and fielding. Once a player has built their perfect strategy, as the ICC Men’s Cricket World Cup unfolds, their team will receive points based on the real life performance of the players they picked. 

    - - - -

    A leaderboard will track each fans’ performance and weekly winners will be awarded prizes including match tickets, exclusive events, Men’s Cricket World Cup merchandise, and more. This new type of engagement, built thanks to the B.O.S, helps to place fans at the center of the action, bringing them closer to the game than ever before.

    - - - -

    A new era in sports engagement 

    - - - -

    “We are extremely excited to be working with the ICC in this multi year deal. This is one of our biggest partnership announcements to date and solidifies our reputation as a go-to blockchain technology provider in the sporting world,” says Chris Donovan, CEO of the NEAR Foundation

    - - - -

    “Given the immense size and popularity of cricket, the NEAR ecosystem will potentially be exposed to hundreds of millions of cricket fans who will have the opportunity to learn about NEAR Foundation’s mission of increasing the adoption of an open web,  and get the chance to interact with Web3 use cases built on the Blockchain Operating System. We look forward to opportunities that this mutually beneficial agreement will bring to cricket fans and to playing a key role in using Web3 to make the world of sport more inclusive and exciting for everyone.” 

    - - - -

    After the Men’s Cricket World Cup, the partnership between the NEAR Foundation and the ICC will continue to the end of 2025. During that time, both sides have committed to work together to develop other Web3 use cases that help fans get closer to the sport. 

    - - - -

    Initial use cases include development of a fan passport that allows fans to record their actions and memories, in a tamper proof way across every touchpoint, both online and off.  

    - - - -

    These innovations are all made possible thanks to the B.O.S. With its full stack of Web3 tools and easy onboarding, partners like the ICC can take advantage of the world’s most highly scalable, community-driven, and secure blockchains that deliver proven, best-in-class performance that can support any kind of Web3 strategy. 

    -

    The post International Cricket Council and NEAR Foundation Sign Multiyear Partnership to Boost Global Fan Engagement Through Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/icc-world-cup/index.html b/public/blog/tag/icc-world-cup/index.html deleted file mode 100644 index 9410a7e50..000000000 --- a/public/blog/tag/icc-world-cup/index.html +++ /dev/null @@ -1,2 +0,0 @@ -ICC World Cup Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/icc/feed/index.xml b/public/blog/tag/icc/feed/index.xml deleted file mode 100644 index 07b5bf412..000000000 --- a/public/blog/tag/icc/feed/index.xml +++ /dev/null @@ -1,163 +0,0 @@ - - - - ICC Archives – NEAR Protocol - - /blog/tag/icc/ - - Thu, 26 Oct 2023 19:27:17 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - ICC Archives – NEAR Protocol - /blog/tag/icc/ - 32 - 32 - - - ICC Launches ‘Captain’s Call’ Game on NEAR to Level Up Cricket Fandom During World Cup - /blog/icc-launches-captains-call-game-on-near-to-level-up-cricket-fandom-during-world-cup/ - - - Thu, 26 Oct 2023 15:00:00 +0000 - - - - - /?p=21008 - - Cricket fans are getting a Web3-powered path to engaging with their favorite international sport. NEAR Foundation and the  International Cricket …

    -

    The post ICC Launches ‘Captain’s Call’ Game on NEAR to Level Up Cricket Fandom During World Cup appeared first on NEAR Protocol.

    -]]>
    - Cricket fans are getting a Web3-powered path to engaging with their favorite international sport. NEAR Foundation and the  International Cricket Council (ICC), the global governing body of cricket, just teamed up  to explore different ways of getting fans closer to their favorite teams and players. 

    - - - -

    This ICC and NEAR partnership arrives just as the cricket world is watching the Men’s Cricket World Cup 2023. The partnership’s first cricket fan experience, the Captain’s Call gaming app, taps into the NEAR Protocol’s infinite scalability. 

    - - - -

    Watch an animated primer below on the gameplay in Captain’s Call.

    - - - -

    Level up cricket fandom with Captain’s Call game

    - - - -

    In Captain’s Call, ICC’s first app on the NEAR blockchain, cricket fans compete against each other for the chance of winning prizes. Developed by Wincast, Captain’s Call allows fans to strategize around bowling, batting, and fielding actions during live cricket matches.

    - - - -

    To play, fans simply navigate to the ICC’s mobile apps or website, click on the Match Centre for the game they intend to watch, and submit their predictions before the match begins. Players then compete for a chance to win prizes, merchandise, and more. 

    - - - -

    Beyond Captain’s Call

    - - - -

    With NEAR and ICC, Web3 and and sports are on a path of continual innovation. A fan passport is currently in early discussions, which would enable fans to record their actions and memories in a tamper proof way, both on and off chain. Captain’s Call will serve as a template in creating other games that fuses other Web2 and Web3 worlds. 

    - - - -

    All of these sporting innovations are possible thanks to the Blockchain Operating System (B.O.S). With its full stack of Web3 tools and easy onboarding, partners like the ICC and others can take advantage of the world’s most highly scalable, community-driven, and secure blockchains that deliver proven, best-in-class performance that can support any kind of Web3 strategy. 

    - - - -
    - -
    -

    The post ICC Launches ‘Captain’s Call’ Game on NEAR to Level Up Cricket Fandom During World Cup appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - International Cricket Council and NEAR Foundation Sign Multiyear Partnership to Boost Global Fan Engagement Through Web3 - /blog/international-cricket-council-and-near-foundation-sign-multiyear-partnership-to-boost-global-fan-engagement-through-web3/ - - - Wed, 27 Sep 2023 13:00:00 +0000 - - - - - /?p=20927 - - The International Cricket Council (ICC) and the NEAR Foundation are entering into a groundbreaking new partnership that will utilize Web3 …

    -

    The post International Cricket Council and NEAR Foundation Sign Multiyear Partnership to Boost Global Fan Engagement Through Web3 appeared first on NEAR Protocol.

    -]]>
    - The International Cricket Council (ICC) and the NEAR Foundation are entering into a groundbreaking new partnership that will utilize Web3 tools built on the NEAR Blockchain to deepen engagement in the sport.

    - - - -

    The NEAR Foundation will become the ICC’s official blockchain partner, helping cricket’s governing body create new ways for fans to get closer to their favorite teams and players using Web3 technology. 

    - - - -

    “We are excited to embark on this partnership with NEAR Foundation and to use their technology and network of talent to create better and deeper fan engagement around the globe,” says Finn Bradshaw, Head of Digital at the ICC.

    - - - -

    “We are looking forward to exploring ways in which we can use new technology to create lasting, valuable experiences for our fans.”

    - - - -

    The partnership will launch its first collaboration as part of the ICC Men’s Cricket World Cup, starting on October 5 in India. Built on NEAR’s Blockchain Operating System (B.O.S), the ICC will release a pre-match strategy challenge that pits players against each other to pick the best team. 

    - - - -

    Each player can make choices across three key facets of the challenge: batting, bowling and fielding. Once a player has built their perfect strategy, as the ICC Men’s Cricket World Cup unfolds, their team will receive points based on the real life performance of the players they picked. 

    - - - -

    A leaderboard will track each fans’ performance and weekly winners will be awarded prizes including match tickets, exclusive events, Men’s Cricket World Cup merchandise, and more. This new type of engagement, built thanks to the B.O.S, helps to place fans at the center of the action, bringing them closer to the game than ever before.

    - - - -

    A new era in sports engagement 

    - - - -

    “We are extremely excited to be working with the ICC in this multi year deal. This is one of our biggest partnership announcements to date and solidifies our reputation as a go-to blockchain technology provider in the sporting world,” says Chris Donovan, CEO of the NEAR Foundation

    - - - -

    “Given the immense size and popularity of cricket, the NEAR ecosystem will potentially be exposed to hundreds of millions of cricket fans who will have the opportunity to learn about NEAR Foundation’s mission of increasing the adoption of an open web,  and get the chance to interact with Web3 use cases built on the Blockchain Operating System. We look forward to opportunities that this mutually beneficial agreement will bring to cricket fans and to playing a key role in using Web3 to make the world of sport more inclusive and exciting for everyone.” 

    - - - -

    After the Men’s Cricket World Cup, the partnership between the NEAR Foundation and the ICC will continue to the end of 2025. During that time, both sides have committed to work together to develop other Web3 use cases that help fans get closer to the sport. 

    - - - -

    Initial use cases include development of a fan passport that allows fans to record their actions and memories, in a tamper proof way across every touchpoint, both online and off.  

    - - - -

    These innovations are all made possible thanks to the B.O.S. With its full stack of Web3 tools and easy onboarding, partners like the ICC can take advantage of the world’s most highly scalable, community-driven, and secure blockchains that deliver proven, best-in-class performance that can support any kind of Web3 strategy. 

    -

    The post International Cricket Council and NEAR Foundation Sign Multiyear Partnership to Boost Global Fan Engagement Through Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/icc/index.html b/public/blog/tag/icc/index.html deleted file mode 100644 index 45f7ca4f1..000000000 --- a/public/blog/tag/icc/index.html +++ /dev/null @@ -1,2 +0,0 @@ -ICC Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/idos/feed/index.xml b/public/blog/tag/idos/feed/index.xml deleted file mode 100644 index 003db9fec..000000000 --- a/public/blog/tag/idos/feed/index.xml +++ /dev/null @@ -1,109 +0,0 @@ - - - - idOS Archives – NEAR Protocol - - /blog/tag/idos/ - - Thu, 09 Nov 2023 13:12:26 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - idOS Archives – NEAR Protocol - /blog/tag/idos/ - 32 - 32 - - - Unlocking the Future of DeFi with the idOS on NEAR: A Developer’s Guide - /blog/unlocking-the-future-of-defi-with-the-idos-on-near-a-developers-guide/ - - - Thu, 09 Nov 2023 14:00:00 +0000 - - - - /?p=21069 - - In the ever-evolving landscape of web3, DeFi has stood apart as a driver of innovation, promising a decentralized financial future. …

    -

    The post Unlocking the Future of DeFi with the idOS on NEAR: A Developer’s Guide appeared first on NEAR Protocol.

    -]]>
    - In the ever-evolving landscape of web3, DeFi has stood apart as a driver of innovation, promising a decentralized financial future. But for developers and founders, the challenge has always been integrating real-world applications with the decentralized world, ensuring compliance, and providing a seamless user experience. Enter the idOS on NEAR, a solution — built with Fractal — that bridges this gap and brings the Open Web closer to mainstream adoption.

    - - - -

    Why the idOS Matters 

    - - - -

    For developers diving into DeFi, the idOS (Identity Operating System) on NEAR offers a robust framework. It’s not just about creating decentralized financial applications; it’s about crafting solutions that can interact with real-world systems, regulations, and meet user expectations.

    - - - -

    1. Composable & Permissionless Integration: With the idOS, developers can effortlessly combine different protocols that require identity verification, leveraging the “money legos” concept. This composability ensures that your DeFi applications can scale and evolve with the ecosystem.

    - - - -

    2. Enhanced User Experience & Identity Verification: One of the major pain points in the decentralized world is the repetitive identity verification processes, often known as KYC. With the idOS, this process is streamlined. Users verify their identity once, and then, by simply signing with their wallet, they can reuse their verified credentials across any NEAR dApp without undergoing KYC again. This not only enhances user experience but also ensures faster onboarding and interaction with dApps.

    - - - -

    3. Seamless On/Off Ramps: The idOS facilitates smoother crypto-fiat transactions, a significant pain point in web3 adoption. By integrating the idOS, developers can offer users the ability to easily transition between the decentralized and traditional financial worlds, unlocking use cases like remittances or DeCommerce payments.

    - - - -

    Beyond DeFi: Proof-of-Personhood Use Cases

    - - - -

    While DeFi is the cornerstone, the idOS’s potential extends beyond. For founders looking to innovate in areas like decentralized governance or community voting, the idOS provides the tools to ensure proof-of-personhood:

    - - - -

    1. Decentralized Voting: Governance is a critical aspect of any decentralized protocol. With the idOS, developers can integrate systems where users prove their unique human status, ensuring one person, one vote. This minimizes the influence of bots and whales, leading to fairer governance outcomes.

    - - - -

    2. Portable user profiles across Web3: For platforms that require user profiles like Near.org, the idOS offers a decentralized solution. Users can create and manage their profiles, ensuring data privacy and control. This is especially crucial for platforms that want to offer personalized experiences without compromising on user data sovereignty.

    - - - -

    Privacy-Preserving KYC & Compliance

    - - - -

    No developer wants to compromise on user privacy. With the idOS, KYC processes become more user-centric. Users can obtain KYC credentials from multiple providers, with the assurance that their data remains encrypted and under their control. For founders, this means complying with global financial regulations without sacrificing user trust.

    - - - -

    Join the revolution with idOS

    - - - -

    For developers and founders ready to shape the future of DeFi and decentralized applications, the idOS on NEAR offers the tools, scalability, and compliance required for success. As we venture into a world where decentralized finance and real-world applications converge, solutions like the idOS will be at the forefront, ensuring that innovation remains uncompromised.

    - - - -

    Join the revolution and explore how the idOS can redefine your DeFi applications and enhance user identity verification on NEAR.

    -

    The post Unlocking the Future of DeFi with the idOS on NEAR: A Developer’s Guide appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/idos/index.html b/public/blog/tag/idos/index.html deleted file mode 100644 index c017aaaa1..000000000 --- a/public/blog/tag/idos/index.html +++ /dev/null @@ -1,2 +0,0 @@ -idOS Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/illia-polosukhin/feed/index.xml b/public/blog/tag/illia-polosukhin/feed/index.xml deleted file mode 100644 index 5974f18ac..000000000 --- a/public/blog/tag/illia-polosukhin/feed/index.xml +++ /dev/null @@ -1,241 +0,0 @@ - - - - Illia Polosukhin Archives – NEAR Protocol - - /blog/tag/illia-polosukhin/ - - Wed, 08 Nov 2023 06:51:56 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Illia Polosukhin Archives – NEAR Protocol - /blog/tag/illia-polosukhin/ - 32 - 32 - - - Enter the Black Dragon: NEAR Co-Founder Joins the NEAR Foundation as CEO - /blog/enter-the-black-dragon-near-co-founder-joins-the-near-foundation-as-ceo/ - - - Tue, 07 Nov 2023 14:00:00 +0000 - - - - /?p=21045 - - The NEAR Foundation announced today that Illia Polosukhin, co-founder of NEAR Protocol, has been appointed NEAR Foundation CEO to lead …

    -

    The post Enter the Black Dragon: NEAR Co-Founder Joins the NEAR Foundation as CEO appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation announced today that Illia Polosukhin, co-founder of NEAR Protocol, has been appointed NEAR Foundation CEO to lead the NEAR ecosystem into the next phase of building an open web. As the person who has driven the vision for NEAR from the very beginning, there is no one better to oversee the growth of the NEAR Open Web Ecosystem and guide the constellation of teams building on NEAR to work together towards that common vision. From the earliest days of NEAR, Illia’s vision of an open web has guided the development of the ecosystem and served as a north star for the Foundation. In his new role as CEO, he will be able to realize that vision in a more direct and streamlined way. 

    - - - -

    “I’m honored and excited to officially join the NEAR Foundation and continue working together with the ecosystem to build towards our shared vision of an open web,” said Illia Polosukhin about his new role. “Effectively coordinating a decentralized ecosystem involves a lot of iteration and experimentation and I’m proud that NEAR has committed to refining this process since the very beginning. I believe this next step in our shared evolution will help us build our respective verticals faster and work together more efficiently.” 

    - - - -

    With his ability to bring together key nodes and align people across the ecosystem, Illia has always been a powerful guiding force for NEAR, something that his new role will allow him to continue and expand. As NEAR cements its position as the entry point to an open web, Illia’s appointment will help to create common work streams across the organization and broader ecosystem organizations that will help accelerate this journey. Combining a decentralized ecosystem approach with a more streamlined strategic coordination function will accelerate NEAR into its next phase of evolution, the details of which Illia will share at this week’s NEARCON. 

    - - - -

    To help ensure the ecosystem nodes building this open web vision are coordinating effectively, Chris Donovan will be stepping into the position of NEAR Foundation COO to oversee the day-to-day operations of the Foundation, and will also remain as a member of the NEAR Foundation Council. Chris has been essential in this transition to a founder-led organization, and the Foundation and the whole ecosystem extend gratitude and appreciation for his work.

    - - - -

    With a clear vision, strong leadership, an engaged ecosystem, and a passionate community all building towards a common vision, NEAR is poised to take its next bold step into an open web. All members of the NEAR community are invited to join this week for the biggest, most exciting NEARCON ever in Lisbon, or tune in virtually at nearcon.org starting Wednesday, November 8. You won’t want to miss the chance to hear exciting announcements and strategy updates from Illia, demos from top projects across the ecosystem, and leading perspectives from the Web3 industry during three days of talks, hackathons, and celebration.  

    -

    The post Enter the Black Dragon: NEAR Co-Founder Joins the NEAR Foundation as CEO appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - AI is NEAR: Illia Polosukhin on AI and the Open Web at NEARCON ’23 - /blog/ai-is-near-illia-polosukhin-on-ai-and-the-open-web-at-nearcon-23/ - - - Thu, 26 Oct 2023 17:30:00 +0000 - - - - - - /?p=21004 - - Artificial Intelligence and Web3 have been two of the hottest topics of 2023. There has been significant interest in how …

    -

    The post AI is NEAR: Illia Polosukhin on AI and the Open Web at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - Artificial Intelligence and Web3 have been two of the hottest topics of 2023. There has been significant interest in how the two technology ecosystems may converge in the coming years, with lots of interest from investors.

    - - - -

    For NEARCON ‘23, we’ve designed a special track for AI and the open web: ”AI is NEAR”. Leading the way will be NEAR co-founder Illia Polosukhin, a pioneer in the world of AI. 

    - - - -

    Illia will share his perspective on this past year’s AI revolution, including its intersection with the Web3 space on NEAR in the months to come. 

    - - - -

    Attention Is All You need

    - - - -

    By now, everyone knows ChatGPT, which kicked off the latest AI revolution. But years before OpenAI released its AI chatbot, a group of researchers published a paper that would revolutionize the fields of AI and machine learning. 

    - - - -

    The “Attention is All You Need” paper, of which Illia is a co-author, introduced transformers — the “T” in ChatGPT. Illia’s research was instrumental in laying the groundwork for the major LLMs of today, such as ChatGPT and Bard. 

    - - - -

    At NEARCON ‘23, Illia will draw on his deep expertise in AI to offer a perspective on how AI and Web3 will converge and how blockchains can help AI develop in a more positive direction, mitigating potential risks and introducing more transparency. He will share the strategy for AI on NEAR going forward, including evolving NEAR governance with AI agents and the emergence of new business models. 

    - - - -

    Illia Polosukhin and TechCrunch’s Mike Butcher in a fireside chat

    - - - -

    In this candid discussion, Illia and TechCrunch’s Mike Butcher will explore the evolving role of AI in the open web, what we can expect next, and why the current state of AI controlled by major corporations needs to change. 

    - - - -

    As the case for open source AI becomes clearer, and as regulators across the globe mitigate risk with new policies, the question now becomes: how can Web3 help AI evolve in a more positive direction?

    - - - -

    Join the AI and Open Web chat at NEARCON ‘23

    - - - -

    With some of the brightest thought leaders in AI and the open web, NEARCON ‘23 is one not to be missed. Alongside Illia, you will also hear from NEAR co-founder Alex Skidanov, who is currently working on an AI startup that is building smarter large language models, or LLMs, in a more decentralized way. 

    - - - -

    There will also be a panel discussion on how AI and blockchain technologies will integrate with modern work environments. Niraj Pant, previously an investor at Polychain who is launching a startup at the intersection of AI and Web3, will also deliver a keynote on how AI can be leveraged for decentralized applications and services.

    - - - -

    The full NEARCON ‘23 schedule is now live, so check out the other tracks!

    - - - -

    If you’re a student in Spain or Portugal, or a Ukrainian citizen living in Portugal, you’re eligible for free tickets. Hackers also get in for free by applying to the NEARCON IRL Hackathon

    -

    The post AI is NEAR: Illia Polosukhin on AI and the Open Web at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - AI is NEAR: The Future of AI on the Open Web at NEARCON ‘23 - /blog/ai-is-near-the-future-of-ai-on-the-open-web-at-nearcon-23/ - - - Wed, 25 Oct 2023 12:50:31 +0000 - - - - - - /?p=20997 - - If you’re as excited as we are about the future of AI and blockchain, then get ready because NEARCON ’23 …

    -

    The post AI is NEAR: The Future of AI on the Open Web at NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - If you’re as excited as we are about the future of AI and blockchain, then get ready because NEARCON ’23 is just around the corner. If you haven’t registered yet, consider this your invitation to do so now on the official NEARCON ’23 site.

    - - - -

    This year’s edition has a special focus on the intersection of AI and Web3. NEAR co-founder Illia Polosukhin, a pioneer in the AI world, is leading the charge. Let’s  explore the amazing speakers sharing their perspectives on this game-changing new field in must-see NEARCON sessions.

    - - - -

    Keynote by Cosmose AI’s Miron Mironiuk

    - - - -

    Miron Mironiuk, the mind behind Cosmose AI, will enlighten NEARCON attendees on how AI is shaping the future of consumer behavior analysis with its unique “Shoppertainment” app that seamlessly blends personalization, loyalty, and blockchain-based rewards. KAIKAI has consistently ranked in the top 3 dApps in Web3 since its launch.

    - - - -

    AI on NEAR: The Future of Work and Governance by Illia Polosukhin

    - - - -

    Illia Polosukhin, another NEAR co-founder and head of Pagoda, will bring his deep roots in AI to this discussion of the future of AI strategy on NEAR. He’ll explore how NEAR is integrating AI to revolutionize work and evolve governance on the blockchain with AI. Topics will include why AI needs blockchain and the emergence of new business models as both AI and blockchain mature.

    - - - -

    Illia Polosukhin in Conversation With TechCrunch’s Mike Butcher

    - - - -

    In this candid discussion, Illia will join TechCrunch’s Mike Butcher to discuss the evolving role of AI in the open web and what we can expect in the coming years. As the case for open source AI becomes clearer and as regulators across the world introduce new policies designed to mitigate risk, how can Web3 help this revolutionary tech evolve in a more positive direction? Join this fireside chat to learn more. 

    - - - -

    AI + Blockchain = Future of Work

    - - - -

    This dynamic panel discussion will delve into the transformative potential of integrating AI and blockchain technologies in modern work environments. If you’re curious what the future of work will look like with AI on the open web, you’ll find those thoughts here. 

    - - - -

    AI+Web3 Keynote from Niraj Pant

    - - - -

    Niraj Pant, previously an investor at Polychain and now building a startup at the intersection of AI and Web3, will provide key insights into how AI can be leveraged for decentralized applications and services.

    - - - -

    AI Keynote by Alexander Skidanov

    - - - -

    When Alexander Skidanov and Illia Polosukhin originally founded NEAR, it was as an AI company called NEAR.ai. After transforming NEAR into a blockchain network, and working on its well-known Nightshade sharding technique, Alex turned his attention back to AI and founded an AI startup building smarter large language models, or LLMs, in a more decentralized way. 

    - - - -

    To get more details on these sessions, and to check out the full speakers list and agenda, head on over to nearcon.org.

    - - - -

    Wrap-Up and Next Steps

    - - - -

    NEARCON ’23 is set to blow last year’s away, with some of the brightest thought leaders in AI and the open web. And with NEAR’s co-founder Illia Polosukhin being an OG in the AI space, you can bet that the AI track at NEARCON will be awesome. So whether you’re a developer, an entrepreneur, or just a curious mind, NEARCON ‘23 has something for you. 

    - - - -

    And let’s not forget, if you’re a student in Spain or Portugal, or a Ukrainian citizen living in Portugal, you’re eligible for free tickets. Hackers can also get in for free by participating in our hackathon event.
    NEAR is already delivering on its promise of a blockchain that is simple, scalable, and secure. Now’s your chance to be part of bringing AI into the open web. Register for NEARCON ’23 today and witness firsthand how NEAR is shaping the future of AI and decentralization.

    -

    The post AI is NEAR: The Future of AI on the Open Web at NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/illia-polosukhin/index.html b/public/blog/tag/illia-polosukhin/index.html deleted file mode 100644 index 8b1d695cb..000000000 --- a/public/blog/tag/illia-polosukhin/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Illia Polosukhin Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/indexer/feed/index.xml b/public/blog/tag/indexer/feed/index.xml deleted file mode 100644 index f036b6dab..000000000 --- a/public/blog/tag/indexer/feed/index.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - Indexer Archives – NEAR Protocol - - /blog/tag/indexer/ - - Fri, 18 Aug 2023 17:15:05 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Indexer Archives – NEAR Protocol - /blog/tag/indexer/ - 32 - 32 - - - Case Study: Indexer’s Mary Korch on Building a Multichain Indexing Platform - /blog/case-study-indexers-mary-korch-on-building-a-multichain-indexing-platform/ - - - Fri, 18 Aug 2023 17:15:04 +0000 - - - - /?p=20804 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: Indexer’s Mary Korch on Building a Multichain Indexing Platform appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

    - - - -

    In the latest NEAR Foundation Case Study video below, Mary Korch, Customer Success at Indexer, talks about how the project built its Multichain Indexing Platform on NEAR. As Korch notes in the case study, Indexer builds infrastructure to support developers, giving them the data they need to be successful on the NEAR Protocol.

    - - - -

    “If you’re a Web2 company looking to build in Web3, and specifically in NEAR, we have done a lot of the hard work for you,” says Korch.  “You’re going to need data from the blockchain but also some off-chain data like metadata and IPFS. We actually have that all at your disposal, and it makes it a lot easier to build your application and get to market a lot quicker.” 

    - - - -
    - -
    -

    The post Case Study: Indexer’s Mary Korch on Building a Multichain Indexing Platform appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/indexer/index.html b/public/blog/tag/indexer/index.html deleted file mode 100644 index 4f928199a..000000000 --- a/public/blog/tag/indexer/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Indexer Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/infrastructure/feed/index.xml b/public/blog/tag/infrastructure/feed/index.xml deleted file mode 100644 index 6b1e49f68..000000000 --- a/public/blog/tag/infrastructure/feed/index.xml +++ /dev/null @@ -1,570 +0,0 @@ - - - - Infrastructure Archives – NEAR Protocol - - /blog/tag/infrastructure/ - - Mon, 10 Jul 2023 22:31:23 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Infrastructure Archives – NEAR Protocol - /blog/tag/infrastructure/ - 32 - 32 - - - Vistara Lands in the NEAR Ecosystem for Seamless Base Layer Roll-up Deployment - /blog/vistara-lands-in-the-near-ecosystem-for-seamless-base-layer-roll-up-deployment/ - - - Fri, 07 Jul 2023 14:00:00 +0000 - - - - - /?p=20704 - - NEAR is welcoming Vistara, the groundbreaking rollup deployment framework, into the fold. Vistara is set to seamlessly integrate with the …

    -

    The post Vistara Lands in the NEAR Ecosystem for Seamless Base Layer Roll-up Deployment appeared first on NEAR Protocol.

    -]]>
    - NEAR is welcoming Vistara, the groundbreaking rollup deployment framework, into the fold. Vistara is set to seamlessly integrate with the BOS for the end-to-end, multi-chain deployment of rollups. This alliance will accelerate the pace of blockchain innovation, making rollup deployment faster, more efficient, and accessible across multiple chains for all developers.

    - - - -

    Vistara stands out as a game-changing one-click rollup deployment framework that simplifies creating application-specific rollups across multiple blockchains. Streamlining the intricate rollup deployment process into a straightforward, single-click operation, Vistara will build a front-end on the BOS to make user-friendly, multi-chain rollup deployment a reality.

    - - - -

    Simplifying multi-chain roll-ups with Vistara on the BOS 

    - - - -

    Existing frameworks such as Cosmos SDK and Substrate have sought to streamline certain software components in decentralized applications but often leave developers tied to one ecosystem that they must completely understand and master. Vistara will now present a unique solution by combining the BOS with backend chains like Ethereum and Celestia.

    - - - -

    Vistara’s emphasis on simplifying rollup component creation aligns with NEAR’s vision of user-centric decentralization and a serverless Web3. With this new BOS front-end integration, developers in the NEAR ecosystem and beyond can now build and deploy rollups in one convenient location.

    - - - -

    The result will be a user-friendly design that makes the deployment of a rollup as simple as selecting an option from a dropdown menu. The integration will also encourage a wider range of developers to build with rollups on the BOS with any chain, leading to a more diverse pool of innovations and robust growth.

    - - - -

    Vistara’s integration not only simplifies the process but also expands the scope for innovation. It demystifies rollup creation, making it accessible to a broader range of developers. This inclusivity fuels a more diverse pool of applications, fostering growth and vibrancy within the NEAR ecosystem.

    - - - -

    Vistara and BOS breaking base layer building barriers

    - - - -

    Developing decentralized applications on base layers can be a complex process. Coordination of node operators, high costs, and extended development times are among the major challenges. However, Vistara is designed to confront these issues directly, streamlining the process and fostering efficiency.

    - - - -

    Rollups — technologies that bundle or ‘roll up’ side-chain transactions into a single transaction — provide an effective solution. They help developers bypass the difficulties associated with building decentralized networks. Vistara leverages this rollup technology, pushing the NEAR ecosystem towards application-specific rollups. 

    - - - -

    The solution effectively untangles the complexities tied to base layer dependencies, forging a development environment on the BOS that stretches beyond traditional base layer confines. With Vistara, multi-chain developers can now bring their applications to life more swiftly and efficiently than ever before.

    - - - -

    To sum up, Vistara’s user-friendly, multi-chain rollup deployment capabilities on the BOS will have a huge impact on the NEAR ecosystem and beyond. The integration will take much of the complexity out of rollup deployment for anyone, helping Web3 creators, builders, and developers bring their applications to life faster than ever.

    -

    The post Vistara Lands in the NEAR Ecosystem for Seamless Base Layer Roll-up Deployment appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Partners with Absolute Labs to Accelerate How Brands Connect with Customers in Web3 - /blog/near-foundation-partners-with-absolute-labs-to-accelerate-how-brands-connect-with-customers-in-web3/ - - - Thu, 20 Apr 2023 13:29:00 +0000 - - - - - /?p=20444 - - NEAR Foundation is excited to announce a new partnership with Absolute Labs, a company revolutionizing Web3’s marketing stack. Its “Wallet …

    -

    The post NEAR Foundation Partners with Absolute Labs to Accelerate How Brands Connect with Customers in Web3 appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Absolute Labs, a company revolutionizing Web3’s marketing stack. Its “Wallet Relationship Management™ platform can be used by Web2 brands and Web3 startups alike to acquire, convert and retain customers on the Open Web. 

    - - - -

    To help in this endeavor, the company announced an $8M seed round of funding at NFT NYC in the past week. Other funding partners include backers like Samsung Next, Aglae Ventures, Sparkle Ventures (Animoca Brands), The Luxury Fund and MoonPay. 

    - - - -

    ”We are thrilled to have the NEAR Foundation as a partner in helping us to accelerate how marketing is done in the next Internet,” says Samir Addamine, Absolute Labs’ CEO and co-founder. “Both our organizations share a vision to accelerate the world’s transition to decentralized marketplaces and more open, transparent and valued user engagement, so it’s a great fit for us.”

    - - - -

    What is Wallet Relationship Management

    - - - -

    Wallet Relationship Management (WRM™) starts with the premise that wallets hold the keys to everything Web3 — from proving identity, providing access to value-rich brand experiences, facilitating payments, creating “ownership” opportunities for customers, and much more. Combining on-chain data from wallets along with assets that Web2 brands can also inject from their Web2 systems, this platform supports all facets of the marketing funnel, from acquisition to conversion and retention of loyalty.

    - - - -

    Users of the platform can gain deep insights into their customers and their on-chain preferences and behaviors, identify actionable segments to track and engage, and craft cross-chain and cross-channel (Web2 and Web3) campaigns to develop and nurture relationships

    - - - -

    Absolute Labs customers can also use WRM to reactivate dormant wallet customers by using the WRM dashboard to distribute meaningful incentives such as rewards tokens, NFTs, and more. 

    - - - -

    To date, Absolute Labs has 40+ companies using their services. With WRM, these customers get an enterprise-grade suite of connectors and APIs to seamlessly integrate with their existing marketing tech stack. 

    - - - -

    Absolute Labs has an incredibly strong product and is a fantastic addition to the NEAR ecosystem. Their Wallet Relationship Management platform is a clear market leader in the burgeoning Web3 martech space, and is already an indispensable component of the modern marketing stack. By bringing Absolute Labs into the NEAR ecosystem, it creates a seamless Web3 on-ramp for brands  and will enable them to engage, retain, and reactivate customers like never before.

    - - - -

    DISCLOSURE: Any information shared in this announcement regarding our partnership with Absolute Labs should not be considered as a binding agreement or representation, and may be subject to change without notice. The information presented in this communication is for informational purposes only and should not be construed as investment advice. Any decisions made based on this information are solely the responsibility of the individual or entity making them.

    -

    The post NEAR Foundation Partners with Absolute Labs to Accelerate How Brands Connect with Customers in Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Binance Custody Adds $NEAR Token and NEP-141 Standard to its Infrastructure - /blog/binance-custody-adds-near-token-and-nep-141-standard-to-its-infrastructure/ - - - Mon, 07 Nov 2022 17:00:00 +0000 - - - - /?p=18750 - - NEAR Foundation is excited to share its newest integration with Binance Custody, an institutional-grade digital asset custody solution. By supporting …

    -

    The post Binance Custody Adds $NEAR Token and NEP-141 Standard to its Infrastructure appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to share its newest integration with Binance Custody, an institutional-grade digital asset custody solution. By supporting the NEP-141 standard, Binance Custody enables any institutional user with $NEAR holdings to make use of their highly secure storage infrastructure. The integration also makes it easier for Binance Custody to provide future support for any NEP-141 compatible tokens from projects building on NEAR. 

    - - - -

    For those not yet in the know, NEP-141 is simply a set of rules that determine how tokens on NEAR can operate. It’s an upgrade from the earlier NEP-21 standard by being simpler for users and developers as well as being cheaper and more efficient. 

    - - - -

    Click here to learn more about NEAR’s NEP-141 standard

    - - - -

    Storing NEAR and NEP-141 compatible tokens on Binance Custody

    - - - -

    What does it mean to be able to store NEAR and NEP-141 compatible tokens on Binance Custody? It means institutional users benefit from an integrated ecosystem built to help them manage their assets with world-class security standards backed by multi-party computation technology. Binance Custody is an independent, compliant, and audited custodial solution that currently supports over 230 digital assets.

    - - - -

    Click here to learn the difference between custodial and non-custodial wallets 

    - - - -

    “We’re very excited to be part of NEAR’s journey as their institutional custody partner,” said Athena Yu, VP of Binance Custody. “With this integration, $NEAR token holders benefit from our secure, integrated security and liquidity solutions. We welcome any project building on the NEAR protocol to reach out to us to learn how our institutional infrastructure can help them scale with peace of mind.”

    - - - -

    Security on Binance Custody

    - - - -

    Platform security is paramount, and Binance Custody makes it easy for institutional users to safely store their digital assets. With this integration, Binance Custody allows investors to not only store their $NEAR tokens securely, but also benefit from liquidity opportunities thanks to the custodian’s integration with the vast Binance ecosystem, which includes the world’s largest crypto exchange by trading volume.

    - - - -

    “A core mission for NEAR is building an ecosystem of diverse communities,” says NEAR Foundation CEO Marieke Flament. “With this partnership, NEAR can welcome to the NEAR ecosystem the many financial institutions that have turned to Binance Custody as their trusted provider for digital assets custody and settlement solutions.”

    - - - -

    Binance Custody offers a growing suite of solutions currently including:

    - - - -
    • Qualified Wallet: institutional-grade cold vault storage
    • Prime Wallet: warm wallet infrastructure offering instantaneous transactions between Binance Custody and the Binance exchange, with sub-accounts.
    • Binance Mirror: matches an institution’s cold storage custody funds with 1:1 availability on their Binance exchange account to access deep liquidity venues.
    • Cold Convert: trade tokens from cold storage with zero counterparty risk and customized slippage tolerance without compromising on security.
    - - - -

    Legal Disclaimer: The information contained in this press release is not directed at nor intended for use by any users, investors or prospective investors, and may not under any circumstances be relied upon when making a decision to invest in any NEAR tokens. Information in this release is not financial/investment advice, please seek independent financial advice. 

    -

    The post Binance Custody Adds $NEAR Token and NEP-141 Standard to its Infrastructure appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Teams With Google Cloud to Accelerate Web3 Startups - /blog/near-teams-with-google-cloud-to-accelerate-web3-startups/ - - - Tue, 04 Oct 2022 12:02:24 +0000 - - - - /?p=18589 - - NEAR Foundation is excited to announce a new partnership between Google Cloud and NEAR Protocol. Going forward, Google Cloud will …

    -

    The post NEAR Teams With Google Cloud to Accelerate Web3 Startups appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership between Google Cloud and NEAR Protocol. Going forward, Google Cloud will provide technical support for NEAR grant recipients. Open and developer-friendly, Google Cloud will support devs as they build and scale their Web3 projects and dApps.

    - - - -

    If you’re developing on NEAR, this is great news—the partnership will supercharge blockchain innovations. Developers will even more easily create without limits as they build dApps and help onboard the masses into Web3. 

    - - - -

    “We are thrilled to be collaborating with those who pioneered the Internet as we know it,” says Marieke Flament, CEO of the NEAR Foundation. “This partnership marks a new chapter for us as we continue to offer the best support possible for the next generation of visionaries choosing to build on the NEAR protocol.”

    - - - -

    Powering NEAR developers with Google Cloud

    - - - -

    In the last year, NEAR has grown exponentially thanks to its super-fast, incredibly secure, and infinitely scalable protocol. There are now over 20 million accounts, 200 million transactions to date, and 300,000 to 400,000 transactions per day on the NEAR network. Building upon the momentum of NEARCON 2022, which showcased the NEAR ecosystem’s vibrancy, 800 projects are now building on the protocol. 

    - - - -

    How will the hundreds of projects currently building on NEAR benefit from the Google Cloud partnership? 

    - - - -

    Google Cloud provides the infrastructure for NEAR’s Remote Procedure Call (RPC) node provider to Pagoda, NEAR’s Web3 startup platform. This allows developers to deploy code quickly, securely, and seamlessly. Pagoda helps developers easily and rapidly launch dApps on NEAR through a library of pre-audited templates and auto-generated contract user interfaces.

    - - - -

     “We will be supporting NEAR and giving Web3 developers the most secure, reliable, and sustainable cloud infrastructure on which they can build and scale,” Carlos Arena, Director of Digital Assets at Google Cloud. “We continue to support tomorrow’s leaders in creating new products and services on blockchain-based platforms.”

    - - - -

    For more information on how Google Cloud is working to support Web3 innovation, check out Google Cloud’s Digital Assets blog

    -

    The post NEAR Teams With Google Cloud to Accelerate Web3 Startups appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR and Circle Announce USDC Support for Multi-Chain Ecosystem  - /blog/near-and-circle-announce-usdc-support-for-multi-chain-ecosystem/ - - - Wed, 28 Sep 2022 18:45:00 +0000 - - - - /?p=18568 - - Big news coming out of the Converge22 conference in San Francisco this week. Circle Internet Financial, a global digital fintech …

    -

    The post NEAR and Circle Announce USDC Support for Multi-Chain Ecosystem  appeared first on NEAR Protocol.

    -]]>
    - Big news coming out of the Converge22 conference in San Francisco this week. Circle Internet Financial, a global digital fintech firm and the issuer of USD Coin (USDC), announced a partnership with NEAR that will make USDC widely available on the NEAR ecosystem by the end of 2022. 

    - - - -

    Having USDC on NEAR is definitely a reason to celebrate. Circle will also make USDC available on other platforms to support a multi-chain ecosystem.  

    - - - -

    Powering NEAR developers 

    - - - -

    Bringing USDC to NEAR will help empower developers to integrate stablecoin payments flows into their Javascript and  Rust-based decentralized applications. This will unlock a new wave of accessibility for Web2 builders moving into Web3. It will also serve a vital role in NEAR’s mission of Web3 mass adoption, while helping developers build without limits.

    - - - -

    “The multi-chain expansion increases USDC’s native availability from eight ecosystems to thirteen, and enables blockchain developers building on USDC and their users to experience greater liquidity and interoperability within the crypto economy,” said Joao Reginatto, VP of Product at Circle. “Extending multi-chain support for USDC opens the door for institutions, exchanges, developers and more to build their innovations and have easier access to a trusted and stable asset.” 

    - - - -

    Bringing USDC to NEAR is a big win for developers, who will now be able to integrate stablecoin payment flows into Javascript or Rust-based dApps. This will help usher in a new wave of accessibility for Web 2 builders making the shift to Web3.

    - - - -

    What to know about stablecoins

    - - - -

    A stablecoin is simply a cryptocurrency that is “pegged” to a more traditional currency like USD or EURO. Through various treasury and/or collateral models, they are designed to keep a 1:1 value, or parity, with their pegged counterparts. Stablecoins can also be pegged to credit and/or debt or have no collateral at all, as seen in algorithmic stablecoins. 

    - - - -

    Their presence in the Web3 ecosystem brings a sense of familiarity for natives and newcomers alike. A stablecoin is also a sort of on-ramp to understanding token economics—the gas that powers Web3 and beyond. 

    - - - -

    While designed to reduce cryptocurrency volatility, stablecoins present their own set of risks. When centralized, stablecoins can be victims of hacks, theft, or even over-printing which can lead to hyperinflation. If an algorithmic stablecoin experiences algorithmic failure, as happened with Terra and its sister currency, Luna, the stablecoin can fail. If a stablecoin is fractionally reserved instead of fully backed, there can be a bank run that triggers a dramatic stablecoin price drop. 

    - - - -


    Visit ref.finance for more information including the risks associated with  investments.

    -

    The post NEAR and Circle Announce USDC Support for Multi-Chain Ecosystem  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Aurora Partners With ConsenSys, Bringing MetaMask, Infura and More Ethereum Tools to NEAR - /blog/aurora-consensys-partnership-metamask-infura/ - - - Thu, 02 Dec 2021 14:00:08 +0000 - - - - - /?p=15392 - - Aurora, the Ethereum scaling solution that allows projects built on Ethereum to utilize the cutting-edge technology of the NEAR Protocol, …

    -

    The post Aurora Partners With ConsenSys, Bringing MetaMask, Infura and More Ethereum Tools to NEAR appeared first on NEAR Protocol.

    -]]>
    - Aurora, the Ethereum scaling solution that allows projects built on Ethereum to utilize the cutting-edge technology of the NEAR Protocol, is partnering with ConsenSys, the enterprise blockchain company to provide access to its suite of developer tools. 

    - - - -

    The partnership aims to empower both the NEAR and Ethereum ecosystems by improving developer facilities – through the availability of the product suite – with the goal of increasing cross-chain interoperability. 

    - - - -

    The product suite features projects including MetaMask, Infura, ConsenSys Quorum, Truffle, Codefi, and Diligence. MetaMask is the primary way a global user base of over 21 million monthly active users interact with applications on Web3. Over 350,000 developers use Infura to access Ethereum, IPFS and Layer 2 networks. In addition, 4.7 million developers create and deploy smart contracts using Truffle and ConsenSys Diligence has secured more than $25 billion in smart contracts with its hands-on dapp audits and testing tools. 

    - - - -

    “We are thrilled to join forces with ConsenSys on our shared mission of empowering the Ethereum ecosystem and extending its economy,” said Alex Shevchenko, the CEO of Aurora Labs.

    - - - -

    The partnership means ConsenSys will now have official participation in the ongoing development of the AuroraDAO. 

    - - - -

    “We are excited to be partnering with the talented Aurora and NEAR protocol teams. Developer interest in EVM-compatible scaling solutions continues to grow at the same pace as the rapid expansion of the Web3 ecosystem, says E.G. Galano, Co-Founder and Head of Engineering at Infura.

    - - - -

    “We believe developers will benefit from the addition of Aurora to the Infura product suite by enabling them to utilize the NEAR network with the EVM tooling they are already familiar with.”

    - - - -

    Infura is directly involved in the AuroraDAO, which hands over key decision making to its community as a part of its vision to create a scaling solution that is as decentralized as possible.

    - - - -

    About Aurora

    - - - -

    Aurora is an EVM built on the NEAR Protocol, delivering a turn-key solution for developers to operate their apps on an Ethereum-compatible, high-throughput, scalable and future-safe platform, with low transaction costs for their users.

    - - - -

    Join Aurora’s community

    - - - - -

    The post Aurora Partners With ConsenSys, Bringing MetaMask, Infura and More Ethereum Tools to NEAR appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR’s Private Shard: Infrastructure for Enterprise, Built on the Open Web - /blog/near-launches-private-shard-for-enterprise/ - - - Wed, 29 Sep 2021 20:57:00 +0000 - - - https://near.flywheelstaging.com/?p=14654 - - For business, privacy is important. Whether it be the transfer of confidential information to partners, or protecting customers’ data. Blockchain …

    -

    The post NEAR’s Private Shard: Infrastructure for Enterprise, Built on the Open Web appeared first on NEAR Protocol.

    -]]>
    - For business, privacy is important. Whether it be the transfer of confidential information to partners, or protecting customers’ data. Blockchain has privacy baked into its DNA. But attempts at bringing enterprise and blockchain together have struggled. 

    - - - -

    Historically, businesses approached the ground-breaking technology by adopting the consortium model. Company A would invite its partners or companies in the same ecosystem to build a blockchain. But almost as soon as these consortiums started, they ran into issues. 

    - - - -

    Privacy is baked into blockchain’s DNA, but businesses have struggled to harness its potential.

    - - - -

    Concerns around control and access merged with the headache of trying to move data from one company’s IT systems – often built on legacy software – to the blockchain in a way that could be interpreted by another company’s proprietary software. Then you have the thorny issue of throughput, fees and other associated costs with writing and storing data on the blockchain. 

    - - - -

    This is an issue we at NEAR have been thinking about deeply, and we believe we have the perfect solution to help enterprises embrace blockchain and the Open Web. We call it Private Shards. 

    - - - -

    Private Shards: Blending the public and private seamlessly and securely 

    - - - -

    Since the inception of NEAR, it was always designed to be a sharded network: an interconnected global system of users, businesses, and infrastructure providers. As part of NEAR’s design is the ability to partition shards to suit different use cases. 

    - - - -
    In consortium models, blockchains aren’t interoperable.
    - - - -

    For example, a hospital’s medical data, information on students at a university, or sensitive manufacturing data. All of these datasets have different requirements and needs. On NEAR, a private shard can be created to suit all of these needs, without the need for each of those businesses to build a blockchain from scratch. 

    - - - -

    In the consortium model, each of those use cases would need a separate system that catered for the different requirements. Not on NEAR. 

    - - - -

    The NEAR blockchain gives enterprises the ability to build private shards that can still be connected to the public blockchain. Why would a business want such a feature? Let’s look at the use cases above. 

    - - - -

    Let’s say a hospital housed its records on a private shard, but a patient gets sick overseas and a doctor needs access to his or her records. On NEAR, a doctor – whose identity could be publicly verifiable – could make a request to the private shard for access to those files simply, and securely. 

    - - - -

    In the factory example, there are aspects of manufacturing that need to be private, but then there are other aspects that need to be public. Let’s say a customer wants to know when a product has been built and shipped. A private shard could publish that data to the public blockchain seamlessly.  

    - - - -

    In order for mass adoption to occur, blockchain needs to be able to blend the public and the private seamlessly, but safely. Private Shards are NEAR’s solution to that challenge, and it’s as simple as starting a node on AWS or AliCloud. Let’s explore how. 

    - - - -

    How do Private Shards work? 

    - - - -

    Given private shards operate as a shard on the NEAR network, it means that public chain contracts can call into private shard contracts and vice versa. 

    - - - -

    This is done via the same mechanism that handles cross-shard routing, which is completely transparent to the users and developers and doesn’t require any additional work (public contracts don’t even need to know they are interacting with private ones). Let’s look at a use case: Two private shards want to interact with each other without routing through public shards, how is this achieved? The shared identity space. 

    - - - -
    In private shards, blockchains can share information without compromising on security.
    - - - -

    Each private shard gets its own name, similar to domains on the web. For example, if University of Berkeley and Tencent are using this system, they will have “berkeley.edu” and “tencent.com” accounts. 

    - - - -

    Inside their private shards, specific applications will then have a sub-account, for example, if both of them are using some application to track ownership of real estate: “properties.berkeley.edu” and “properties.tencent.edu”. Selling a property between these two entities then would require a cross private shard transaction with potential public chain settlement later if later this information needs to be proven to the public parties.

    - - - -

    Applications that these companies use will be built exactly the same as other applications on NEAR: smart contracts are built in Rust or Typescript. This allows creators to build frontends that can interact with these smart contracts, including sending cross-private and public shard transactions.

    - - - -

    NEAR’s mission has been to bridge the gap between the internet of today and the blockchains that will power the future. There is already a company actively working on this solution – Calimero’s Private Shards.

    - - - -

    Private Shards is a core part of that mission. It helps create an ecosystem where businesses, users, and partners can interact, and we invite anyone to join us in that mission to create a more open, and inclusive web. 

    -

    The post NEAR’s Private Shard: Infrastructure for Enterprise, Built on the Open Web appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR partners with Ceramic on cross-chain identity and dynamic data storage - /blog/near-partners-with-ceramic/ - - - Fri, 28 May 2021 15:58:07 +0000 - - - - /?p=10861 - - Partnership with Ceramic brings streaming data and cross-chain identity protocols to NEAR developers. Developers building on NEAR Protocol now have …

    -

    The post NEAR partners with Ceramic on cross-chain identity and dynamic data storage appeared first on NEAR Protocol.

    -]]>
    - Partnership with Ceramic brings streaming data and cross-chain identity protocols to NEAR developers. -

    Developers building on NEAR Protocol now have a powerful way to manage user identities and dynamic off-chain data in their applications. Ceramic, the decentralized network for data stream processing, now supports NEAR wallets.

    -

    NEAR is currently hosting an Open Web Community Hackathon with a prize for integrating IDX profiles on Ceramic with a NEAR Sputnik DAO. To participate, check out the hackathon prize!

    -

    Blockchain, Data, & Identity: a full stack for Web3 developers

    -

    NEAR offers developers the most dev-friendly and end-user accessible infrastructure for building decentralized apps and services. Great Web3 and DeFi apps require more than a smart contract platform. They also need sophisticated, scalable, and dependable data management infrastructure for app builders using smart contracts. Ceramic provides advanced database-like features such as mutability, version control, access control, and programmable logic. It is also the foundation for IDX, Web3’s first cross-chain identity model.

    -

    With the integration of Ceramic on NEAR Protocol, developers on NEAR can: 

    -
      -
    • Build data-rich user experiences and social features on fully decentralized tech
    • -
    • Give users cloud-like backup, sync, and recovery without running a centralized server
    • -
    • Publish content on the open web without the need to anchor IPFS hashes on-chain
    • -
    • Leverage interoperable profiles, social graphs and reputations across the Web3 ecosystem
    • -
    -

    Ceramic now supports NEAR wallets

    -

    Starting today, developers building applications on NEAR can easily add support for Ceramic and IDX in their application with a seamless user experience. NEAR key pairs have been added as a supported signing and authentication method for Ceramic’s data streams, so users can now perform transactions on Ceramic with their existing NEAR wallets. 

    -

    Developers have already started combining NEAR and Ceramic to create new applications such as NEAR Personas, which links a NEAR wallet to a DID.

    -

    -

    About Ceramic: Decentralized data streams

    -

    Ceramic provides developers with database-like functionality for storing all kinds of dynamic, mutable content. This finally gives developers a Web3 native way to add critical features like rich identities (profiles, reputation, social graphs), user-generated content (posts, interactions), dynamic application-data, and much more.

    -

    Ceramic’s unique stream-based architecture is designed to handle any type of data model at web-scale volume and latency. Built on top of open standards including IPFS, libp2p, and DIDs and compatible with any raw storage protocol like Filecoin or Arweave, all information stored on Ceramic exists within a permissionless cross-chain network that lets developers tap into an ever growing library of identities and data while using their preferred stack.

    -

    IDX: Cross-chain identity and user-centric data

    -

    Identity is the first use case enabled by Ceramic’s building blocks for open source information. IDX (identity index) is a cross-chain identity protocol that inherits Ceramic’s properties to provide developers with a user-centric replacement for server-siloed user tables. By making it easy to structure and associate data to a user’s personal index, IDX lets applications save, discover, and route to users’ data.

    -

    The IDX SDK makes it simple to manage users and deliver great data-driven experiences using the same NEAR keys and wallets as developers and users are already relying on. Users can also link multiple keys, from any wallet and multiple blockchains, to the same identity. This is essential to developers who want to serve users over time, as it enables key rotation, data interoperability across accounts, and rich cross-chain profiles, reputations and experiences.

    -

    Getting started with Ceramic on NEAR

    -
      -
    • NEAR is currently hosting an Open Web Community hackathon! There is a prize for integrating IDX profiles on Ceramic with theSputnik DAO platform, built on NEAR. For more information, head to the NEAR Forum.
    • -
    • To install NEAR, start with our documentation.
    • -
    • To add IDX to your project, follow this installation guide.
    • -
    • To use Ceramic for streams without IDX, follow this installation guide.
    • -
    • Regardless of which option you choose, you should also select 3ID Connect as your DID wallet during the authentication process which handles the integration with NEAR wallets.
    • -
    • For questions or support, join the Ceramic Discord and the NEAR Discord.
    • -
    -

    The post NEAR partners with Ceramic on cross-chain identity and dynamic data storage appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/infrastructure/index.html b/public/blog/tag/infrastructure/index.html deleted file mode 100644 index fa93437be..000000000 --- a/public/blog/tag/infrastructure/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Infrastructure Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/international-cricket-council/feed/index.xml b/public/blog/tag/international-cricket-council/feed/index.xml deleted file mode 100644 index 1dd0f9d57..000000000 --- a/public/blog/tag/international-cricket-council/feed/index.xml +++ /dev/null @@ -1,102 +0,0 @@ - - - - International Cricket Council Archives – NEAR Protocol - - /blog/tag/international-cricket-council/ - - Thu, 28 Sep 2023 15:28:12 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - International Cricket Council Archives – NEAR Protocol - /blog/tag/international-cricket-council/ - 32 - 32 - - - International Cricket Council and NEAR Foundation Sign Multiyear Partnership to Boost Global Fan Engagement Through Web3 - /blog/international-cricket-council-and-near-foundation-sign-multiyear-partnership-to-boost-global-fan-engagement-through-web3/ - - - Wed, 27 Sep 2023 13:00:00 +0000 - - - - - /?p=20927 - - The International Cricket Council (ICC) and the NEAR Foundation are entering into a groundbreaking new partnership that will utilize Web3 …

    -

    The post International Cricket Council and NEAR Foundation Sign Multiyear Partnership to Boost Global Fan Engagement Through Web3 appeared first on NEAR Protocol.

    -]]>
    - The International Cricket Council (ICC) and the NEAR Foundation are entering into a groundbreaking new partnership that will utilize Web3 tools built on the NEAR Blockchain to deepen engagement in the sport.

    - - - -

    The NEAR Foundation will become the ICC’s official blockchain partner, helping cricket’s governing body create new ways for fans to get closer to their favorite teams and players using Web3 technology. 

    - - - -

    “We are excited to embark on this partnership with NEAR Foundation and to use their technology and network of talent to create better and deeper fan engagement around the globe,” says Finn Bradshaw, Head of Digital at the ICC.

    - - - -

    “We are looking forward to exploring ways in which we can use new technology to create lasting, valuable experiences for our fans.”

    - - - -

    The partnership will launch its first collaboration as part of the ICC Men’s Cricket World Cup, starting on October 5 in India. Built on NEAR’s Blockchain Operating System (B.O.S), the ICC will release a pre-match strategy challenge that pits players against each other to pick the best team. 

    - - - -

    Each player can make choices across three key facets of the challenge: batting, bowling and fielding. Once a player has built their perfect strategy, as the ICC Men’s Cricket World Cup unfolds, their team will receive points based on the real life performance of the players they picked. 

    - - - -

    A leaderboard will track each fans’ performance and weekly winners will be awarded prizes including match tickets, exclusive events, Men’s Cricket World Cup merchandise, and more. This new type of engagement, built thanks to the B.O.S, helps to place fans at the center of the action, bringing them closer to the game than ever before.

    - - - -

    A new era in sports engagement 

    - - - -

    “We are extremely excited to be working with the ICC in this multi year deal. This is one of our biggest partnership announcements to date and solidifies our reputation as a go-to blockchain technology provider in the sporting world,” says Chris Donovan, CEO of the NEAR Foundation

    - - - -

    “Given the immense size and popularity of cricket, the NEAR ecosystem will potentially be exposed to hundreds of millions of cricket fans who will have the opportunity to learn about NEAR Foundation’s mission of increasing the adoption of an open web,  and get the chance to interact with Web3 use cases built on the Blockchain Operating System. We look forward to opportunities that this mutually beneficial agreement will bring to cricket fans and to playing a key role in using Web3 to make the world of sport more inclusive and exciting for everyone.” 

    - - - -

    After the Men’s Cricket World Cup, the partnership between the NEAR Foundation and the ICC will continue to the end of 2025. During that time, both sides have committed to work together to develop other Web3 use cases that help fans get closer to the sport. 

    - - - -

    Initial use cases include development of a fan passport that allows fans to record their actions and memories, in a tamper proof way across every touchpoint, both online and off.  

    - - - -

    These innovations are all made possible thanks to the B.O.S. With its full stack of Web3 tools and easy onboarding, partners like the ICC can take advantage of the world’s most highly scalable, community-driven, and secure blockchains that deliver proven, best-in-class performance that can support any kind of Web3 strategy. 

    -

    The post International Cricket Council and NEAR Foundation Sign Multiyear Partnership to Boost Global Fan Engagement Through Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/international-cricket-council/index.html b/public/blog/tag/international-cricket-council/index.html deleted file mode 100644 index 99d1f5cc6..000000000 --- a/public/blog/tag/international-cricket-council/index.html +++ /dev/null @@ -1,2 +0,0 @@ -International Cricket Council Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/inven/feed/index.xml b/public/blog/tag/inven/feed/index.xml deleted file mode 100644 index 7af6a3854..000000000 --- a/public/blog/tag/inven/feed/index.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - - INVEN Archives – NEAR Protocol - - /blog/tag/inven/ - - Thu, 22 Jun 2023 18:38:35 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - INVEN Archives – NEAR Protocol - /blog/tag/inven/ - 32 - 32 - - - NEAR Foundation Partners with Vortex Gaming, a Web3 Subsidiary of Korea’s Largest Gaming Community INVEN - /blog/near-foundation-partners-with-vortex-gaming-a-web3-subsidiary-of-koreas-largest-gaming-community-inven/ - - - Fri, 23 Jun 2023 00:00:00 +0000 - - - - - - /?p=20658 - - NEAR Foundation is excited to announce a new partnership with Vortex Gaming, a Web3 subsidiary of the leading game industry …

    -

    The post NEAR Foundation Partners with Vortex Gaming, a Web3 Subsidiary of Korea’s Largest Gaming Community INVEN appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Vortex Gaming, a Web3 subsidiary of the leading game industry INVEN. INVEN is the largest game media·community in Korea, with a monthly active user (MAU) count of 7.2 million.

    - - - -

    With the guidance of the NEAR Korea Hub, NEAR Foundation and Vortex Gaming plan to achieve mutual growth by collaborating to support the growth of Vortex Gaming; strengthen the NEAR game ecosystem; conduct offline hackathons and events to foster developer talent; and enhance brand awareness and business networks.

    - - - -

    To support Web3 gaming, Vortex Gaming will leverage NEAR’s global layer 1 protocol, known for its user experience and scalability, and the Blockchain Operating System (BOS). The BOS is an OS for an open web, allowing developers to effortlessly build apps for an internet free from centralized platforms.

    - - - -

    “Following the leading companies in the gaming industry such as Kakao Games, Wemade, Netmarble’s Marblex, we expect our sustainable game ecosystem to be further enhanced through this partnership with INVEN,” said Marieke Flament, CEO of NEAR Foundation, expressed her delight at INVEN joining the NEAR ecosystem.

    - - - -

    Vortex Gaming: an open web community game changer

    - - - -

    Vortex Gaming is a content-based game community that builds services optimized for Web3 games. It also offers a global social media platform and features such as Gaming Guild. Vortex’s Gaming Guild will allow members to earn rewards by playing games, participating in tournaments, and contributing to the guild’s community. The guild system also provides a stronger sense of bonding between guild members, which can help strengthen user retention.

    - - - -

    Vortex Gaming also aims to break a major stereotype of current Web3 games as being dominated by a few profit-seeking individuals. It does this by offering specialized content that thoroughly explores the in-game economy, the completeness of the game, and gameplay guide. By leveraging its successful experience in building Web2 communities, Vortex Gaming plans to establish a robust user base by incorporating both high quality content and INVEN’s existing wide pool of users.

    - - - -

    INVEN is the largest game media·community in Korea. For over 20 years it has been the leading company in the game industry, driving the development as the top online game media platform. Based on content generated in-house, INVEN continues to innovate and expand into industries such as entertainment and Web3.

    - - - -

    “The ultimate goal is to build an integrated gamer community that encompasses both Web3 and traditional Web2 gamers by providing high quality Web3 and Web2 content alike,” said Vortex Gaming CEO, HOON JAI LEE. “Gamers and their communities are the most crucial components of the game ecosystem. In addition to offering game content for gamers and their communities, Vortex Gaming envisions establishing a sustainable cycle by incentivizing gamers’ production of content such as character builds and game guides”.

    - - - -

    The NEAR Korea Hub, responsible for business expansion across Korea and other Asian regions, has been instrumental in fostering this partnership. The Hub views Vortex’s onboarding as a significant moment that further accelerates the development of the NEAR gaming ecosystem.

    - - - -

    “While the strong content competitiveness of leading companies plays a crucial role in attracting many users to the NEAR ecosystem, community is the key driving force in maintaining this competitiveness,”said  Scott Lee, Co-CEO of NEAR Korea. “The synergy effects resulting from the onboarding of Vortex Gaming will further strengthen NEAR’s position as the optimal mainnet in the Web3 game ecosystem, accelerating ecosystem development.”

    -

    The post NEAR Foundation Partners with Vortex Gaming, a Web3 Subsidiary of Korea’s Largest Gaming Community INVEN appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/inven/index.html b/public/blog/tag/inven/index.html deleted file mode 100644 index 1098ca8ef..000000000 --- a/public/blog/tag/inven/index.html +++ /dev/null @@ -1,2 +0,0 @@ -INVEN Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/investments/feed/index.xml b/public/blog/tag/investments/feed/index.xml deleted file mode 100644 index 359055325..000000000 --- a/public/blog/tag/investments/feed/index.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - Investments Archives – NEAR Protocol - - /blog/tag/investments/ - - Wed, 29 Mar 2023 18:39:34 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Investments Archives – NEAR Protocol - /blog/tag/investments/ - 32 - 32 - - - NEAR Foundation Backs Hydra Ventures to Create Web3’s First ‘Fund of Funds’ Investment DAO - /blog/near-foundation-backs-hydra-ventures-to-create-web3s-first-fund-of-funds-investment-dao/ - - - Wed, 29 Mar 2023 18:35:16 +0000 - - - - - - /?p=20340 - - NEAR Foundation is excited to announce that it has joined Hydra Ventures, a “fund of funds” investment DAO. A first …

    -

    The post NEAR Foundation Backs Hydra Ventures to Create Web3’s First ‘Fund of Funds’ Investment DAO appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce that it has joined Hydra Ventures, a “fund of funds” investment DAO. A first in the Web3 space, Hydra Ventures is designed to help other investment DAOs get off the ground. 

    - - - -

    By partnering with NEAR Foundation, Hydra Ventures will open the doors to the eventual launch of the first investment DAO in the Near ecosystem. 

    - - - -

    “The combined expertise of the leaders that have created this fund offers a winning formula that will help provide critical funding to purpose-driven, socially impactful web3 startups,” said Marieke Flament, CEO of NEAR Foundation. “We are delighted to be playing a part in launching this DAO and look forward to seeing the role it will play in developing our ecosystem.”

    - - - -

    Decentralizing Web3 investment with DAOs

    - - - -

    To power the “fund of funds” investment DAO, Hydra Ventures has raised $10M in capital from NEAR Foundation, MetaCartel Ventures, ConsenSys, 1kx Ventures, Collab + Currency, Nonagon Ventures, CMT Digital, among others. Hydra Ventures aims to take a hands-on approach to support investment DAOs, from community coordination and investment practices to organizational design, incentive design, and back office/operations.

    - - - -

    “While the first legally wrapped investment DAOs showed us what was possible, many of them have had major operating flaws which have been exposed over the years,” said Peter Pan, co-summoner of MetaCartel and Partner at 1kx Ventures. “Hydra looks to address many of these problems and ultimately emerge with a fundamentally better model for how investment DAOs should be operated. We are thrilled to have NEAR Foundation’s support in this venture.”

    Hydra Ventures is incubated by Thing3 and MetaCartel Ventures (the first and one of the most successful investment DAOs created), and backed by leading founders and thinkers in Web3. MetaCartel has incubated and made investments in several category-leading projects like Sky Mavis, Axie Infinity, Arweave, Open Zeppelin, DAOhaus, Zapper Finance, and Rarible, and were also one of the first investors in Mintbase, an NFT marketplace built on Near. MetaCartel members include Ameen Soleimani (founder, Moloch DAO), Stani Kulechov (founder, AAVE), Roneil Rumburg (founder, Audius), Bobby Ong (founder, Coingecko), RAC (Grammy award winner), Peter Pan (Partner, 1kx Ventures), amongst others.

    -

    The post NEAR Foundation Backs Hydra Ventures to Create Web3’s First ‘Fund of Funds’ Investment DAO appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/investments/index.html b/public/blog/tag/investments/index.html deleted file mode 100644 index 71cf23714..000000000 --- a/public/blog/tag/investments/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Investments Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/javascript-dapps/feed/index.xml b/public/blog/tag/javascript-dapps/feed/index.xml deleted file mode 100644 index 59b59e6cc..000000000 --- a/public/blog/tag/javascript-dapps/feed/index.xml +++ /dev/null @@ -1,154 +0,0 @@ - - - - Javascript dApps Archives – NEAR Protocol - - /blog/tag/javascript-dapps/ - - Thu, 12 Oct 2023 13:08:22 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Javascript dApps Archives – NEAR Protocol - /blog/tag/javascript-dapps/ - 32 - 32 - - - NEAR Query API Beta Is Now Open for Apps Building on B.O.S - /blog/near-query-api-beta-is-now-open-for-apps-building-on-b-o-s/ - - - Thu, 12 Oct 2023 14:00:00 +0000 - - - - - /?p=20967 - - Pagoda has officially opened the Beta version of NEAR Query API, a fully managed serverless infrastructure offering NEAR blockchain #indexers, …

    -

    The post NEAR Query API Beta Is Now Open for Apps Building on B.O.S appeared first on NEAR Protocol.

    -]]>
    - Pagoda has officially opened the Beta version of NEAR Query API, a fully managed serverless infrastructure offering NEAR blockchain #indexers, storage, and GraphQL endpoints. Developers can now build indexers for any smart contract using JavaScript and the NEAR Lake Primitives library, and store data in custom SQL schemas, all without needing to manage any infrastructure. This approach significantly simplifies the way developers interact with blockchain data and empowers them to build B.O.S applications with great user experiences.

    - - - -

    NEAR Query API allows developers to store indexer code on-chain and receive an auto-provisioned database with GraphQL API and indexed historical data, continuously updated through an indexer service that closely tracks the blockchain. The GraphQL API supports paginated and aggregate queries such as count, avg, min, etc. It also enables subscriptions through web sockets, allowing you to create user interfaces that update data without page refresh.

    - - - -

    With QueryAPI, you can quickly get GraphQL endpoints and use them directly in your dApps to enrich the user experience and improve user interface performance.

    - - - -

    In the latest release, Pagoda moved to a more scalable and stable infrastructure and open-sourced the code to make it easy to run it yourself and contribute to future development.

    - - - -

    Sample Indexers

    - - - -

    Additionally, Pagoda introduced several sample indexers:

    - - - - - - - -

    User Interface

    - - - -

    The NEAR Query API’s user-friendly interface, built using B.O.S components, provides easy access to all indexers and key features of the platform that streamline the process of building indexers:

    - - - -
      -
    • Access to all indexers built on the platform. Developers can learn from practical examples as indexers’ code and schemas are stored on-chain.
    • - - - -
    • Edit code online with autocomplete for easy access to block data and SQL tables for efficient development.
    • - - - -
    • Debug indexers on any block using the browser console for a familiar debugging experience.
    • - - - -
    • Build GraphQL queries using the GraphiQL playground.
    • - - - -
    • Auto-generate JSX code for swift B.O.S component development.
    • - - - -
    • Monitor indexer status and access logs written from JavaScript code.
    • - - - -
    • Start historical indexing from any block.
    • -
    - - - -

    Documentation

    - - - -

    Pagoda created documentation for QueryAPI to help you get started. Take a look at how it works, read about indexer functions, the context object, and check out the tutorials. To provide more insight into the capabilities of the NEAR Query API, the product team has prepared a walkthrough video that you can watch here.

    - - - -

    Invitation to Beta Testing

    - - - -

    Pagoda invites developers to register their interest in closed Beta testing of NEAR Query API. If you are interested in indexing smart contracts on Mainnet with moderate transactions per day, the team is eager to engage with you and help you get started. Please use this link to register your interest.

    - - - -

    Build full-stack JavaScript dApps on NEAR

    - - - -

    On NEAR, JavaScript developers can build smart contracts with low gas fees, fast and decentralized user interfaces on the B.O.S and powered by QueryAPI, and all without needing to worry about cloud infrastructure.

    - - - -

    Pagoda will be working with B.O.S developers on improving the developer experience of building, debugging, using and maintaining indexers, as well as performance and scalability to prepare for general availability later this year.

    - - - -

    Join in this exciting new chapter of full-stack JavaScript dApps with NEAR B.O.S. and NEAR Query API!

    -

    The post NEAR Query API Beta Is Now Open for Apps Building on B.O.S appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/javascript-dapps/index.html b/public/blog/tag/javascript-dapps/index.html deleted file mode 100644 index 0e08b87db..000000000 --- a/public/blog/tag/javascript-dapps/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Javascript dApps Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/javascript/feed/index.xml b/public/blog/tag/javascript/feed/index.xml deleted file mode 100644 index a0ba16f5a..000000000 --- a/public/blog/tag/javascript/feed/index.xml +++ /dev/null @@ -1,226 +0,0 @@ - - - - JavaScript Archives – NEAR Protocol - - /blog/tag/javascript/ - - Thu, 15 Dec 2022 13:44:05 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - JavaScript Archives – NEAR Protocol - /blog/tag/javascript/ - 32 - 32 - - - NEAR Releases JavaScript SDK, Bringing Web3 to 20 Million Developers - /blog/near-releases-javascript-sdk-bringing-web3-to-20-million-developers/ - - - Mon, 08 Aug 2022 23:00:26 +0000 - - - - https://neardev.nmcgn.de/?p=17905 - - Blockchain development has just become a whole lot easier for Web2 developers. NEAR is thrilled to unveil its much anticipated …

    -

    The post NEAR Releases JavaScript SDK, Bringing Web3 to 20 Million Developers appeared first on NEAR Protocol.

    -]]>
    - Blockchain development has just become a whole lot easier for Web2 developers. NEAR is thrilled to unveil its much anticipated JavaScript Software Development Kit (JS SDK) at ETHToronto, the official hackathon of the Blockchain Futurist Conference, in a significant move to democratize Web3 development.

    - - - -

    With NEAR’s JS SDK, more than 20 million developers that make JavaScript the world’s most popular coding language can finally join the internet revolution and quickly build fast, scalable, and user-friendly decentralized applications. Having that many more contributors in the space could bring about a fascinating renaissance to the open web.

    - - - -

    Although Rust and Solidity are the most prominent programming languages for Layer 1 blockchains, there are fewer than 2.5 million developers worldwide who use these languages. So, opening up the doors nearly 10x is a major step towards mass adoption. JS runs in every browser, the basics can be taught in an afternoon, it requires no compiler setup, and it comes pre-loaded with useful libraries like RegExp, Math, and Array. The NEAR JS SDK brings this same capability and ease of use to developing smart contracts, unlocking the power of blockchain to a much, much wider audience. 

    - - - -

    Commenting on the launch, Illia Polosukhin, Founder of NEAR, says: “Developers can spend less time learning a new language and more time building their application in a language they already know. Millions of developers already know how to program in JavaScript; enabling this group to build novel applications on NEAR is a critical step in achieving our vision of a billion users interacting with NEAR.”

    - - - -

    Learn, build, and deploy in minutes

    - - - -

    NEAR’s commitment to putting simplicity and usability first is reinforced by this release, making the learning curve for blockchain far less steep than it has ever been. Javascript developers can now set up their first dApp in the same amount of time it takes to spin up a React app. 

    - - - -

    The JS SDK release has everything you need to dive right into blockchain development including the contract framework itself, JavaScript and TypeScript contract examples, and example tests. It is implemented in TypeScript, which offers developers implicit, strict, and structural typing, along with type annotations built into your favorite IDE. 

    - - - -

    Developers can get started building their first JavaScript decentralized application by following this quick start guide or heading to Pagoda’s landing page to learn more. 

    - - - -

    A Closer Look at the JS SDK

    - - - -

    The JS SDK provides each contract its own instance of a JS engine running inside it. This design allows developers to write contracts in pure JavaScript or TypeScript, and access all the same features, like oracles, available to Rust contracts.

    - - - -

    To get started, run npx create-near-app in your terminal and select JavaScript for your smart contract. Once everything is installed you can test, compile, and deploy your newly created project with ease.

    - - - -

    For a more detailed look at the contract structure and other configurations check out this dApp QuickStart Guide on NEAR’s Official Documentation site. 

    - - - -

    About Pagoda

    - - - -

    The JS SDK is developed by Pagoda, the engineering team that builds and maintains NEAR Protocol and some of the most important tools needed for decentralized application (dApp) development. Developers can use the Pagoda suite of tools to build, deploy, test, and interact with smart contracts on NEAR. For more information on the JS SDK, visit Pagoda or join the NEAR Discord and checkout the #engineering channels where resources like live support are available every day. 

    - - - -

    -

    The post NEAR Releases JavaScript SDK, Bringing Web3 to 20 Million Developers appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Armored Kingdom, Brave, JavaScript: Highlights from NEAR @ Consensus - /blog/armored-kingdom-brave-javascript-highlights-from-near-consensus/ - - - Sun, 12 Jun 2022 12:48:46 +0000 - - - /?p=16691 - - The NEAR community was busy connecting at the Consensus conference this weekend in Austin, Texas. The NEAR Foundation made its …

    -

    The post Armored Kingdom, Brave, JavaScript: Highlights from NEAR @ Consensus appeared first on NEAR Protocol.

    -]]>
    - The NEAR community was busy connecting at the Consensus conference this weekend in Austin, Texas. The NEAR Foundation made its presence felt in a variety of ways, from hosting educational developer workshops to panel discussions and speeches from key members of the ecosystem and Foundation.

    - - - -

    From NEAR’s roadmap to raising crypto funds for Ukraine, here are the main takeaways from Consensus, Austin.

    - - - -

    Major Dev Experience Announcements

    - - - -

    NEAR Foundation’s presence at Consensus 2022 kicked off with opening remarks by CEO Marieke Flemant on the Foundations Stage. Flemant highlighted the NEAR Foundation’s continued commitment to sustainability and ecosystem growth before turning things over to NEAR co-founder Illia Polosukhin, who presented a roadmap for the NEAR Protocol over the next 12 months along with some exciting news for developers.

    - - - -

    After re-iterating the Foundation’s goal of onboarding the first one billion users onto Web3, Polosukhin announced that NEAR will soon be rolling out a JavaScript software development kit (SDK) within the next few months. Developers will then be able to build in JavaScript and ship code directly to NEAR. Polosukhin was particularly excited about this announcement because he feels that JavaScript is the language for mass developer adoption.

    - - - -

    To piggyback on Polosukhin’s announcement, Josh Ford and Ben Kurrek from the developer relations team led a Test Drive Javascript for NEAR session on the Crypto Cities stage. Ford and Kurrek noted that with over seven million developers currently coding with JavaScript, the upcoming SDK release will prove extremely fruitful in user onboarding. 

    - - - -

    Not to mention that Brendan Eiche, the inventor of JavaScript, attended both sessions and expressed his excitement about NEAR’s JavaScript SDK on Twitter.

    - - - -

    The Web3 World According to NEAR

    - - - -

    On the second day of Consensus, Flament gave a speech on the Feature Stage speech entitled “The Web3 World According to NEAR.” Building upon her opening remarks on day one, she painted a clearer picture of how Web3 and NEAR will evolve in the upcoming years and why she still believes that crypto can fulfill the promise of re-defining money and creating a more inclusive world.

    - - - -

    Flament also addressed current market conditions and pointed out the importance of an even deeper commitment to building during a bear market. 

    - - - -

    “We have much more talent, funding, and infrastructure than the last bear market,” Flamant observed. “While it seems that the world is filled with bad news, this is not the time for pessimism but for action. It’s urgent that we make even more progress at a faster pace than ever.”

    - - - -

    Flament restated NEAR’s commitment to creating an open, inclusive Web3 based on the three pillars of Ownership, Community, and Incentives. Once self-sovereign individuals gain ownership and control over their data, Flament said that only then can we collectively fight exploitative behavior by Web2 giants. After the notion of ownership has been decentralized and turned on its head, Flament predicted that we can then re-think modes of incentivizing participation and building community.

    - - - -

    And while Flament observed that some at Consensus were bearish on the “X to Earn” phenomena, in her opinion, the trend has barely scratched the surface. Sweatcoin continues to onboard users to NEAR and Web3 with their app. Not to mention SailGP and Armored Kingdom, projects and partners that are re-defining sports team ownership and entertainment with DAOs and NFTs.

    - - - -

    She concluded by saying that NEAR is committed to providing tools to create a simple, sustainable, and scalable Web3 world. 

    - - - -

    NEAR Helping Ukrainians in Need

    - - - -

    Co-founder Illia Polosukhin re-emerged on the second day of Consusus to participate in a panel discussion around how crypto and the blockchain is being used to aid Ukraine during the ongoing war. The discussion was moderated by Emily Parker from CoinDesk, and included Valeriya Ionan Ukraine’s Deputy Minister of Digital Transformation as well as Mike Chobanian from the Blockchain Association of Ukraine.

    - - - -

    Polosukhin recounted that when he heard the news about Ukraine, his first instinct was to find ways to personally donate to those affected by the conflict. He then started thinking bigger, and shortly thereafter the Unchain Fund was started on NEAR to raise funds via a DAO model. Unchain Fund raised over $10 million within the first few weeks and expanded to work with over 5,000 volunteers on the ground. Crypto has been a huge part of effective relief, said Polosukhin, as NGOs can sometimes be slow to respond immediately.

    - - - -

    He then reminded the audience that there will be a time – hopefully soon – that the conflict comes to an end. And at that point, blockchain, crypto, and Web3 can play a crucial role in rebuilding Ukraine and even preserving cultural artifacts on the blockchain. Chobanian from the Blockchain Association of Ukraine added that they are currently in the proposal stage with NEAR to place NFT versions of important Ukrainian art and other artifacts on the blockchain in case the IRL versions are ever destroyed.

    - - - -

    Armored Kingdom and Brave Announcements

    - - - -

    Two of the biggest NEAR announcements that came out of Consensus were on the gaming and browser integration fronts. Firstly, Brave and NEAR will collaborate to integrate Aurora, an Ethereum Virtual Machine (EVM) on the NEAR Protocol, into Brave Wallet. This means greater multi-chain functionality in Brave Wallet and expanded utility for the Basic Attention Token (BAT).

    - - - -

    “This is a very significant partnership for the future advancement of Web3 and mass adoption, offering a multi-chain integration bridging the Ethereum and NEAR communities via Aurora – and one of the first big integrations via Brave,” said Marieke Flament, CEO of NEAR Foundation. 

    - - - -

    “With the new Brave Wallet there will be a host of Web3 functionality supported such as NFT and Swap – all of which will provide the protection of a privacy-preserving, in-browser wallet that’s secure and mass-market ready.”

    - - - -

    In addition, Deadline Hollywood broke the news that superstar actress Mila Kunis has partnered with superhero creator Sharad Devarajan of Graphic India to launch Armored Kingdom Media Inc, which will be a new entertainment franchise spanning a Web3 trading card game, digital comics, animation, and film built on NEAR.

    - - - -

    “We are excited to support the launch of Armored Kingdom and the storytelling opportunities it will bring to fans,” said Flament. “NEAR is a perfect blockchain for an entertainment franchise as it can support various platforms, which is crucial for multiverse experiences across different mediums. Our focus on ease of use also allows developers to deliver intuitive experiences for a large fan base.”

    - - - -

    Between the upcoming JavaScript SDK, Armored Kingdom launching on NEAR, and partnering with Brave, Consensus was extraordinarily eventful, demonstrating the strength and commitment of the entire ecosystem. The NEAR Foundation thanks all community members, builders, and partners that engaged at Consensus Austin, and looks forward to seeing many of the same faces at NEARCON this September in Lisbon!

    -

    The post Armored Kingdom, Brave, JavaScript: Highlights from NEAR @ Consensus appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/javascript/index.html b/public/blog/tag/javascript/index.html deleted file mode 100644 index 0ca54a894..000000000 --- a/public/blog/tag/javascript/index.html +++ /dev/null @@ -1,2 +0,0 @@ -JavaScript Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/journey/feed/index.xml b/public/blog/tag/journey/feed/index.xml deleted file mode 100644 index f4eca9d4f..000000000 --- a/public/blog/tag/journey/feed/index.xml +++ /dev/null @@ -1,138 +0,0 @@ - - - - Journey Archives – NEAR Protocol - - /blog/tag/journey/ - - Tue, 31 Oct 2023 17:24:46 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Journey Archives – NEAR Protocol - /blog/tag/journey/ - 32 - 32 - - - Women of Web3 Changemakers: Cathy Hackl - /blog/women-of-web3-changemakers-cathy-hackl/ - - - Tue, 31 Oct 2023 17:24:46 +0000 - - - - - /?p=21016 - - “I have always said that I’m not the typical face you see representing technology, and that’s why it’s essential for …

    -

    The post Women of Web3 Changemakers: Cathy Hackl appeared first on NEAR Protocol.

    -]]>
    - “I have always said that I’m not the typical face you see representing technology, and that’s why it’s essential for everyone to know that the future is for all,” says Cathy Hackl, a leading authority in emerging tech and co-founder of Journey, a consultancy that advises companies, brands, cities and governments about gaming, AR, AI, spatial computing, metaverse, web3, and virtual world strategies.

    - - - -

    Hackl is one of the 10 finalists of the 2023 Women in Web3 Changemakers List, an annual competition designed to champion women pushing boundaries in the space. Hackl, along with nine other outstanding candidates, are showing the industry the change women are bringing about during the advent of the Open Web. 

    - - - -

    Hackl was selected not only for her work advising companies like Nike, Walmart, Louis Vuitton, and Clinique on navigating emerging digital spaces and technologies, but her tireless work as an educator.

    - - - -

    She has taught at IE Business School and SDA Bocconi School of Management, two of the world’s leading business schools, and spoke at Ivy League universities across America. Hackl is one of the world’s leading female tech trailblazers that is constantly evolving and helping build a more inclusive future.

    - - - -

    But Hackl’s journey to becoming one of the world’s foremost leaders on emerging technologies nearly didn’t happen. 

    - - - -

    A chance encounter 

    - - - -

    Hackl started her career working in live video and live streaming in silicon valley. But it wasn’t until a chance encounter with VR that led her career in a completely new direction. 

    - - - -

    “I was invited to an event where there were some VR demos. I had the opportunity to try on a VR headset for the first time and experienced what it would be like to be in a solitary confinement cell in virtual reality. Within a few minutes, I felt claustrophobic and I took the device off, but something had changed. It felt like I was able to fully turn on my humanity dial again. I also knew I had seen something important, maybe it was part of the future of storytelling or maybe it was the future of business, but I was sure of one thing: this is what I wanted to do for the rest of my life.”

    - - - -

    Soon after that moment, Hackl left the video production space and went all in on AR and VR. Stints at companies like HTC and its VIVE VR project led Hackl to landing her dream job at Magic Leap, the American technology company specialising in augmented reality. 

    - - - -

    It was here that technologist Neal Stephenson and Chief Futurist at Magic Leap first coined the term “Metaverse”. But for Hackl, it wasn’t to be. When the pandemic struck she was among many that were laid off as the company contracted. 

    - - - -

    “I had to ask myself: what do I do now? This led me to Amazon Web Services, where I worked on several projects including large scale simulations and learned a lot about cloud computing.”

    - - - -

    During the Covid years, Hackl had been writing a lot about the Metaverse after she was first exposed to it at Magic Leap, helping her to connect to companies looking to explore the space.  

    - - - -

    “I eventually got the courage to leave AWS and launch off on my own. In 2021 I founded my own consulting firm. In just 10 months my company was acquired by Journey, where I am currently the co-founder and I lead the company’s virtual, gaming, and Metaverse studio.”

    - - - -

    Since then, Hackl has become one of the main proponents of metaverse technology, especially for women. 

    - - - -

    The future is female 

    - - - -

    According to research by McKinsey, women are spending more time in the proto-metaverse than men are and are more likely to spearhead and implement metaverse initiatives. 

    - - - -

    However, just as in the tech sector as a whole, women represent a minority in the metaverse economy. Both the entrepreneurial capital and the CEO roles in the metaverse space remain disproportionately reserved for men.

    - - - -

    “The research shows that women are more likely than men to engage in hybrid use cases in the metaverse, traversing both physical and digital worlds to participate in gaming, fitness, education, live events, and shopping via AR/VR technologies,” says Hackl. 

    - - - -

    “By contrast, men use the metaverse to participate in purely digital experiences such as gaming, trading nonfungible tokens (NFTs), and attending social events.”

    - - - -

    For Hackl, bringing women into technology results in more creative solutions and has more significant potential for innovations that meet women’s needs and promote gender equality. But their lack of inclusion comes with massive costs. 

    - - - -

    “Suppose women cannot access the Internet and do not feel safe online. In that case, they cannot develop the necessary digital skills to engage in digital spaces, which diminishes their opportunities to pursue careers in science, technology, engineering, and mathematics (STEM) related fields. By 2050, 75% of jobs will be connected to STEM areas. Yet today, women hold just 22% of positions in artificial intelligence”

    - - - -

    But Hackl feels the Web3 world is ready for change. “My message is always to be bold, speak your mind, and settle for more. The world needs your essence, work, art, creativity, femininity, intuition, and heart to make the Web3 industry. There will always be obstacles, but there is a vast community to mentor, support and stand by you to continue exploring, building, and creating in the Web3 industry.”

    -

    The post Women of Web3 Changemakers: Cathy Hackl appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/journey/index.html b/public/blog/tag/journey/index.html deleted file mode 100644 index 6d456ee8e..000000000 --- a/public/blog/tag/journey/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Journey Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/kaikai/feed/index.xml b/public/blog/tag/kaikai/feed/index.xml deleted file mode 100644 index 751fc5f0f..000000000 --- a/public/blog/tag/kaikai/feed/index.xml +++ /dev/null @@ -1,152 +0,0 @@ - - - - KaiKai Archives – NEAR Protocol - - /blog/tag/kaikai/ - - Wed, 06 Sep 2023 16:46:55 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - KaiKai Archives – NEAR Protocol - /blog/tag/kaikai/ - 32 - 32 - - - Cosmose and NEAR Foundation Set To Revolutionize Retail with Web3 and AI - /blog/cosmose-and-near-foundation-set-to-revolutionize-retail-with-web3-and-ai/ - - - Mon, 24 Apr 2023 07:46:00 +0000 - - - - - /?p=20441 - - The Artificial Intelligence (AI) wave is touching just about every corner of commerce and culture, and retail is no exception. …

    -

    The post Cosmose and NEAR Foundation Set To Revolutionize Retail with Web3 and AI appeared first on NEAR Protocol.

    -]]>
    - The Artificial Intelligence (AI) wave is touching just about every corner of commerce and culture, and retail is no exception. Cosmose AI, one of the leaders in AI and retail, has received a strategic investment from NEAR Foundation to create Web3, mobile, and retail experiences that enhance personalization without sacrificing privacy or security.

    - - - -

    “NEAR is the most secure, scalable, and sustainable blockchain protocol,” says Miron Mironiuk, founder and CEO of Cosmose. “As such, we’re grateful for the ongoing support from NEAR Foundation and are excited about what’s to come.”

    - - - -

    By utilizing the NEAR Blockchain Operating System (BOS) and AI-powered retail personalization, Cosmose gives users access to their data and personalized recommendations. This move toward a decentralized and user-focused Web3 future emphasizes how AI and blockchain have the power to completely alter current business structures in the retail sector.

    - - - -

    With the help of NEAR’s technology and ecosystem, Cosmose can now change conventional retail business models and produce hyper-personalized shopping experiences that increase loyalty and happiness. These experiences will include its flagship mobile application KaiKai and a suite of AI-powered personalization tools.

    - - - -

    Personalizing retail with Web3 experiences

    - - - -

    Shopper and user personalization is nothing new in retail, but Cosmose is blazing a new trail with the power of its proprietary AI engine. Cosmose’s AI gathers and analyzes user data to produce suggestions and experiences that are uniquely tailored to each user. 

    - - - -

    By building on NEAR, Cosmose is able to help retailers develop stronger customer interactions while also addressing privacy and data security issues endemic to Web2 retail data collection. Cosmose and its KaiKai mobile app are trusted by top brands including LVMH, Richemont, L’Oréal, and Estée Lauder.

    - - - -

    “Having built on NEAR in 2022 and while working with NEAR Foundation we discovered that our visions for the Web3-driven future are aligned,” Mironiuk continues.

    - - - -

    Through the partnership, Cosmose will be able to offer individualized experiences to its worldwide clientele through a number of channels, including online, in-store, and mobile. 

    - - - -

    “This investment from NEAR Foundation is a testament to Cosmose AI’s strength and potential to revolutionize e-commerce and the retail industry,” said George Raymond Zage III, founder and CEO of Tiga Investments and a Cosmose board member. “We’re excited to see Cosmose AI’s continued growth and success.”

    - - - -

    KaiKai: Introducing “Shoppertainment” on the NEAR Blockchain Operating System

    - - - -

    KaiKai, Cosmose AI’s flagship product, shopping, retail, and gamification to create a new category altogether: Shoppertainment. The mobile shopping experience is constructed in a very unique way, using the BOS as a backbone to make brand discovery and engagement more fun and rewarding.

    - - - -

    Some of KaiKai’s features that brands are already using include:

    - - - -
      -
    • Exclusive product drops available for a limited time
    • - - - -
    • Augmented Reality (AR) technology that brings products to life
    • - - - -
    • Livestreams featuring celebrities and influencers
    • - - - -
    • Ads displayed on users’ lock screens without interruptions
    • - - - -
    • Geolocation features displaying available products in the user’s area
    • - - - -
    • Rewards for collecting products and writing reviews
    • - - - -
    • A secure Near wallet accessible via the KaiKai app
    • -
    - - - -

    KaiKai also features a native cryptocurrency called Kai-Ching, which users earn and spend like any other retail rewards program. The difference is that Cosmose’s AI provides more personalized recommendations and rewards suggestions, with customers easily transacting on the NEAR blockchain with a native KaiKai crypto wallet.

    - - - -

    “We’re excited to support Cosmose as it continues to scale rapidly and create new ways for retailers to offer customers the best offline and online shopping experiences,” noted Marieke Flament, CEO of the NEAR Foundation. “Cosmose has already been building on NEAR testnet, and with this additional support it will have many more opportunities to grow and expand its offerings with Web3 in a sustainable, transparent, and infinitely scalable way.” 

    - - - -

    Flament added: “Cosmose’s excellent AI innovation will help to intensify its global marketplace lead, and with superior AI-driven personalization, its user base will undoubtedly continue to grow as new and existing customers are seamlessly transitioned into the world of Web3 and all the exciting opportunities it brings.”

    - - - -

    It’s no secret that AI is turning industries, communities, and business models on their heads – and that’s not a bad thing. NEAR Foundation’s commitment to developing Cosmose’s retail technology, including KaiKai, signals that consumers will now be even more empowered with more personal recommendations, a “shoppertaining” experience, and the sound of “Kai-Ching” as they earn crypto rewards powered by NEAR and BOS.

    - - - -

    “Together we’ll build a future where one billion users benefit from the ecosystem they’re part of, with complete control of their data and superior AI-driven personalization,” said Mironiuk.

    -

    The post Cosmose and NEAR Foundation Set To Revolutionize Retail with Web3 and AI appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/kaikai/index.html b/public/blog/tag/kaikai/index.html deleted file mode 100644 index 3eb6118c7..000000000 --- a/public/blog/tag/kaikai/index.html +++ /dev/null @@ -1,2 +0,0 @@ -KaiKai Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/kaikainow/feed/index.xml b/public/blog/tag/kaikainow/feed/index.xml deleted file mode 100644 index 5011fd6bf..000000000 --- a/public/blog/tag/kaikainow/feed/index.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - KAIKAINOW Archives – NEAR Protocol - - /blog/tag/kaikainow/ - - Thu, 14 Sep 2023 08:37:12 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - KAIKAINOW Archives – NEAR Protocol - /blog/tag/kaikainow/ - 32 - 32 - - - Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  - /blog/cosmose-ai-harnesses-the-open-web-and-near-with-kaikainow/ - - - Thu, 14 Sep 2023 00:00:00 +0000 - - - - - - /?p=20877 - - Cosmose AI, the global platform that uses AI to predict and influence how people shop offline is launching a new …

    -

    The post Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  appeared first on NEAR Protocol.

    -]]>
    - Cosmose AI, the global platform that uses AI to predict and influence how people shop offline is launching a new piece of technology designed to disrupt the smartphone lock screen experience. 

    - - - -

    Called KAIKAINOW, it brings together artificial intelligence and blockchain to help users stay informed and engaged with the world around them without the hassle of unlocking their phones. 

    - - - -

    KAIKAINOW, an opt-in technology, sits on a user’s home screen. It offers a variety of curated content, including news, language learning, games, and trending stories which would be interspersed between users’ very own personal wallpaper pictures.

    - - - -

    “We check our smartphone lock screens on average 80 times a day, always seeing the same  wallpaper backdrop. Imagine, instead of seeing the same image over and over again you see it every other time, while enjoying personalized content during remaining interactions,” says Miron Mironiuk, Founder and CEO of Cosmose AI. 

    - - - -

    KAIKAINOW changes that by harnessing cutting edge AI technology, and pairing it with open web tools found on the NEAR blockchain to ensure the experience is tailored to the user while always adhering to the highest privacy standards.

    - - - -

    “The launch of KAIKAINOW by COSMOSE AI shows how far we’ve come in respects to transforming Web3 from an innovative idea to a something that can deliver real world benefits to consumers, while also helping foster brand loyalty and business growth in the retail space,” says Marieke Flament, CEO of the NEAR Foundation. 

    - - - -

    “We are thrilled to align ourselves with such a fantastic, rapidly growing tech firm such as Cosmose AI and look forward to seeing how it will truly transform the world of retail and get the world closer to Web3 mass adoption.”

    - - - -

     

    - - - -

    Blockchain meets AI 

    - - - -

    Publishers and brands provide the content and KAIKAINOW enhances the experience by allowing users to unlock rewards via KAI-CHING, a native token pegged to the US Dollar built on the NEAR Protocol. These tokens can then be used to access exclusive offers only available to KAIKAINOW users. 

    - - - -

    Thanks to KAI-CHING, shoppers and retailers benefit from shorter payment processing time and significantly lower fees.

    - - - -

    By building both consumer products and its token on NEAR protocol, Cosmose AI is accelerating its Web3 offerings with one of the world’s leading, open source blockchain platforms and further advancing the AI-driven retail ecosystem.

    - - - -

    To date, Cosmose AI has served over 20 million stores and reached one billion phones globally. The integration of NEAR technologies means that Cosmose can ensure that users maintain complete control over their data and benefit from the ecosystem they help create. This approach ensures the highest level of privacy for users and aligns with the Company’s commitment to user safety.

    - - - -

    Blockchain’s digital record, paired with NEAR’s open web tooling, means AI services can help improve trust in data integrity and, by extension, in the recommendations that AI provides. Using blockchain to store and distribute AI models provides an audit trail, and pairing blockchain and AI can enhance data security. 

    - - - -

    NEAR is helping partners like Cosmose AI harness these tools to create better products that serve customers and partners equally. 

    -

    The post Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/kaikainow/index.html b/public/blog/tag/kaikainow/index.html deleted file mode 100644 index 76896d9f0..000000000 --- a/public/blog/tag/kaikainow/index.html +++ /dev/null @@ -1,2 +0,0 @@ -KAIKAINOW Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/kakao-games/feed/index.xml b/public/blog/tag/kakao-games/feed/index.xml deleted file mode 100644 index 5e5ec4cb2..000000000 --- a/public/blog/tag/kakao-games/feed/index.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - Kakao Games Archives – NEAR Protocol - - /blog/tag/kakao-games/ - - Mon, 06 Mar 2023 18:50:11 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Kakao Games Archives – NEAR Protocol - /blog/tag/kakao-games/ - 32 - 32 - - - Near Partners with BORA, Web3 GameFi Platform of Kakao Games - /blog/near-partners-with-bora-one-of-koreas-largest-gamefi-platforms/ - - - Mon, 06 Mar 2023 14:00:00 +0000 - - - - - - - /?p=20253 - - Near is excited to announce a new strategic partnership with BORA, a Web3  gaming subsidiary of METABORA. Near and BORA …

    -

    The post Near Partners with BORA, Web3 GameFi Platform of Kakao Games appeared first on NEAR Protocol.

    -]]>
    - Near is excited to announce a new strategic partnership with BORA, a Web3  gaming subsidiary of METABORA. Near and BORA will support each other in spreading local brand awareness, invest in research and collaboration on cross-chain, host events, and generate Web3 opportunities in Korea. 

    - - - -

    An affiliate of Kakao Games and its parent company BORANETWORK, BORA is focused on game development and blockchain-based gaming ecosystems. Its mobile gaming titles include Friends Popcorn, Friends Town, and Friends Shot

    - - - -

    “We are thrilled to be working with Near and welcome their expertise, knowledge and network as we aim to transform the world of Web3 gaming,” said Vincent Lim, a CBO of BORA. “Together with Near we will not only explore cross-promotion opportunities, but also seek future collaborations on IP-based game development that will lead to mass adoption and give us the competitive edge we need to position ourselves as leading players in the web3 gaming space.”

    - - - -

    Since the launch of Near’s Korean Hub in November of 2022, BORA has been steadily building up awareness throughout South Korea, while focusing on Web3  innovation, business development, education, and talent. The hub is led by entrepreneurs Scott Lee and Ben Kang — both influential figures within South Korea’s growing blockchain community.

    - - - -

    “One of the big ambitions of the hub  is  to tap into the country’s active gaming community, and to  bring  amazing projects and creators to the Near ecosystem.” said Robbie Lim, GM, Partners & International at Near. “ The partnership with BORA is our first major win – and a big step forward for NEAR as it accelerates its ambition to become the go to layer 1 for the Web3 gaming community.” 

    -

    The post Near Partners with BORA, Web3 GameFi Platform of Kakao Games appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/kakao-games/index.html b/public/blog/tag/kakao-games/index.html deleted file mode 100644 index 4616c742c..000000000 --- a/public/blog/tag/kakao-games/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Kakao Games Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/knaq/feed/index.xml b/public/blog/tag/knaq/feed/index.xml deleted file mode 100644 index 3881290ec..000000000 --- a/public/blog/tag/knaq/feed/index.xml +++ /dev/null @@ -1,125 +0,0 @@ - - - - Knaq Archives – NEAR Protocol - - /blog/tag/knaq/ - - Wed, 10 May 2023 14:42:24 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Knaq Archives – NEAR Protocol - /blog/tag/knaq/ - 32 - 32 - - - Knaq and NEAR: A New Era of Fan Engagement with Web3 - /blog/knaq-and-near-a-new-era-of-fan-engagement-with-web3/ - - - Wed, 10 May 2023 14:36:45 +0000 - - - - /?p=20485 - - Knaq, the pioneering fan loyalty platform, is poised to transform the way fans interact with their favorite creators on both …

    -

    The post Knaq and NEAR: A New Era of Fan Engagement with Web3 appeared first on NEAR Protocol.

    -]]>
    - Knaq, the pioneering fan loyalty platform, is poised to transform the way fans interact with their favorite creators on both Web2 and Web3 social media platforms. In collaboration with the NEAR Foundation, Knaq aims to foster more meaningful interactions within creator communities while providing true utility to NFTs and tokens via a summertime soft launch. 

    - - - -

    By leveraging NEAR’s fast and scalable blockchain, Knaq will offer a seamless user experience through a user-friendly browser extension and redemption marketplace. This exclusive partnership empowers fans and creators, enabling them to benefit from the innovative features and rewards offered by Knaq and its diverse range of brand partners.

    - - - -

    With Knaq’s unique vision and NEAR’s robust platform, the stage is set for a new era of fan engagement and loyalty in the creator space.

    - - - -

    A perfect match for seamless creator engagement

    - - - -

    Loyalty and rewards programs have become an integral part of our daily lives, shaping our experiences with various services and products. Knaq recognizes the potential of this concept and seeks to bring it to social media users who invest time and energy in engaging with their favorite content creators. By partnering with NEAR, Knaq brings the benefits of Web3 and crypto to the creator space.

    - - - -

    Knaq’s browser extension and redemption marketplace, powered by NEAR, offers a seamless onboarding process for users as they engage with their favorite creators. This allows easy compatibility with existing crypto wallets and provides an effortless sign-up process using Google OAuth. Fans and creators can link their social media accounts to start earning rewards, while NEAR’s platform facilitates secure and efficient transactions.

    - - - -

    The partnership between Knaq and NEAR Foundation brings additional benefits to users in the form of enhanced scalability and accessibility. NEAR’s highly scalable blockchain allows Knaq to handle high volumes of transactions, ensuring that the platform remains fast and reliable even as its user base grows. NEAR’s focus on user-friendly solutions also aligns with Knaq’s goal of making its platform accessible to a wide range of social media users, including those who may be new to Web3 and crypto.

    - - - -

    Knaq’s exciting fan and creator features built on NEAR

    - - - -

    NEAR’s technology enables Knaq to offer a multitude of exciting features and benefits that elevate fan engagement to new heights. By bridging the gap between Web3 and Web2 content platforms, Knaq delivers an experience that not only rewards fans for their support but also empowers creators to foster stronger connections with their audience.

    - - - -

    One of the exciting features enabled by NEAR is the use of NFTs to grant exclusive access to live and virtual events. These NFTs offer fans unique opportunities to interact with their favorite creators and enjoy immersive experiences, while creators benefit from enhanced engagement and revenue generation.

    - - - -

    Knaq’s engage-to-earn model rewards users with tokens for their engagement on all social media platforms, starting with YouTube. Built on NEAR, these tokens can be redeemed for various perks within the Knaq app and in real life via Knaq’s brand partners, providing fans with tangible incentives for their continued support. This, in turn, boosts creator engagement and revenues, making the platform a win-win solution for all parties involved.

    - - - -

    Through Knaq, fans also get a behind-the-scenes look at their most beloved creators. This feature allows for a deeper connection between creators and their audience, building a stronger sense of community and loyalty.

    - - - -

    Lastly, Knaq users have access to all related drops, tokens, and ecosystem incentives, with the first one planned for shortly after launch for early waitlist users. Thanks to NEAR’s robust platform, these initiatives can be seamlessly executed, further enhancing the value and utility of the Knaq experience for both fans and creators.

    - - - -

    Knaq and NEAR: Powerhouse team and exciting prospects

    - - - -

    The team-building Knaq brings together experienced creators, builders, and investors from both traditional markets and the crypto space. Their diverse backgrounds include working with renowned brands like Starbucks, ULTA Beauty, Buzzfeed, and J.P. Morgan, as well as prominent players in the crypto industry such as Circle, OKX, and Genesis Block. With a strong foundation and support from NEAR, Knaq is well-positioned to make a significant impact in the creator industry.

    - - - -

    As part of their commitment to transparency and community engagement, the Knaq team will be fully doxxed in Discord, building trust and openness with users. NEAR’s collaboration has been instrumental in bringing Knaq to life, providing the technological backbone necessary for seamless integration and exceptional user experience.

    - - - -

    The exciting features and benefits of Knaq set the stage for a new era of fan engagement and loyalty in the creator space. With innovative rewards and incentives, Knaq is poised to revolutionize the way we interact with creators, paving the way for a more engaging and rewarding experience for fans and creators alike.

    - - - -

    Looking ahead, Knaq has planned a soft launch for the summer, with the first month reserved exclusively for those who sign up for the waitlist. This presents an exciting opportunity for early adopters to get a head start on the platform and even participate in a free giveaway post-launch. Creators interested in boosting community engagement are encouraged to reach out and explore the potential of Knaq and NEAR Foundation’s partnership. 

    - - - -

    To learn more about Knaq’s rewards offerings and follow major upcoming events and announcements, sign up for the waitlist today at knaqapp.com

    -

    The post Knaq and NEAR: A New Era of Fan Engagement with Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/knaq/index.html b/public/blog/tag/knaq/index.html deleted file mode 100644 index ed9de9c43..000000000 --- a/public/blog/tag/knaq/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Knaq Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/lafc/feed/index.xml b/public/blog/tag/lafc/feed/index.xml deleted file mode 100644 index c7f224aef..000000000 --- a/public/blog/tag/lafc/feed/index.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - - LAFC Archives – NEAR Protocol - - /blog/tag/lafc/ - - Wed, 20 Sep 2023 14:29:11 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - LAFC Archives – NEAR Protocol - /blog/tag/lafc/ - 32 - 32 - - - Los Angeles Football Club and Dropt Rewrite Fan Experience Playbook Utilizing NEAR Protocol - /blog/los-angeles-football-club-and-dropt-rewrite-fan-experience-playbook-utilizing-near-protocol/ - - - Tue, 19 Sep 2023 19:00:00 +0000 - - - - - - /?p=20892 - - NEAR Foundation is excited to announce a new partnership between Los Angeles Football Club (LAFC) and Dropt — a fan …

    -

    The post Los Angeles Football Club and Dropt Rewrite Fan Experience Playbook Utilizing NEAR Protocol appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership between Los Angeles Football Club (LAFC) and Dropt — a fan engagement platform built on the NEAR Protocol — supporting the club’s vision to rewrite the playbook on the fan experience. The collaboration kicks off with LAFC Gold — a Loyalty Club designed to recognize Los Angeles FC’s most devoted fans with a wide range of unprecedented benefits.

    - - - -

    Let’s explore what LAFC’s new fan engagement product, LAFC Gold, looks like and what it means for an open web. 

    - - - -

    Elevating the football fan experience with LAFC Gold benefits

    - - - -

    In the sports worlds, fans love to be part of the action, and not just at the arena. Sports teams understand that fans like to feel that they are being seen, heard, and valued for their significant contributions to the organization and its athletes. And in the world of football (“soccer” to Americans), fanbases are truly global, making it important that sports franchises meet their fans wherever they are.
    With its new Loyalty Club, LAFC is acknowledging their fans and bringing them new benefits and experiences, utilizing Dropt’s digital engagement platform and NEAR technology.

    - - - -

    “LAFC Gold promises to make LAFC fans and supporters feel seen, heard, and valued wherever they are in the world,”  said LAFC Co-President & CBO Larry Freedman. “Watching a match at BMO Stadium is one of the best sports experiences anyone can have. With LAFC Gold, we now have a way to connect, recognize, and reward anyone who supports the Black & Gold.”

    - - - -

    LAFC Gold delivers on its promise with exclusive experiences 

    - - - -

    LAFC Gold kicked off with a ticket giveaway to the historic matchup between LAFC and Inter Miami, including the experience of holding the American Flag during the National Anthem before the match. And with the  2022 World Cup, 4-time Champions League, and 7-time Ballon d’Or winner Lionel Messi on the pitch for Inter Miami, this was a match not to be missed. 

    - - - -

    For the last three home matches of the season, including the momentous El Tráfico against LA Galaxy this past weekend, LAFC Gold has given away 4 premium tickets with pre-match field access to winning LAFC Gold Members. Unlocking your chance to win experiences and benefits like these for Real Salt Lake (10/1) and Minnesota United FC (10/4) is as easy as signing up and securing your LAFC Gold Membership.

    - - - -

    With Dropt’s digital fan engagement platform, LAFC Gold will be accessible and easy for fans to join. The kickoff is just the first of what will be a dynamic program designed to create new ways for fans to engage with LAFC and its club partners. And by utilizing the NEAR Protocol, LAFC will ensure that the team will remain at the forefront of the open web’s cutting-edge technology by allowing LAFC to verify and track every transaction in a secure environment.

    - - - -

    To experience LAFC Gold, visit gold.lafc.com and sign up for an Entry, Local, Global, or Youth Membership. 

    - - - -

    LAFC Season Ticket Members are automatically enrolled in the program. 

    -

    The post Los Angeles Football Club and Dropt Rewrite Fan Experience Playbook Utilizing NEAR Protocol appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/lafc/index.html b/public/blog/tag/lafc/index.html deleted file mode 100644 index 8a8dd2ca5..000000000 --- a/public/blog/tag/lafc/index.html +++ /dev/null @@ -1,2 +0,0 @@ -LAFC Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ledger-live/feed/index.xml b/public/blog/tag/ledger-live/feed/index.xml deleted file mode 100644 index 1b8edd9a7..000000000 --- a/public/blog/tag/ledger-live/feed/index.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - - Ledger Live Archives – NEAR Protocol - - /blog/tag/ledger-live/ - - Mon, 30 Jan 2023 16:41:51 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Ledger Live Archives – NEAR Protocol - /blog/tag/ledger-live/ - 32 - 32 - - - NEAR Now Integrated into Ledger Live For More Security and Ownership - /blog/near-now-integrated-into-ledger-live-for-more-security-and-ownership/ - - - Mon, 30 Jan 2023 16:00:00 +0000 - - - /?p=19747 - - Wallet security can be intimidating, especially for newcomers. But it just got a whole lot easier for NEAR users. NEAR …

    -

    The post NEAR Now Integrated into Ledger Live For More Security and Ownership appeared first on NEAR Protocol.

    -]]>
    - Wallet security can be intimidating, especially for newcomers. But it just got a whole lot easier for NEAR users. NEAR Foundation is excited to announce full integration with Ledger Live, making it easier than ever for NEAR holders to secure their assets using Ledger’s devices and software. 

    - - - -

    Ledger Live is Ledger’s all-in-one digital asset management app enabling its users to manage and stake an ever-growing range of digital assets from the security and self-custody of their hardware wallets. Through its single, secure app, anyone from newcomers to crypto natives can follow the market,manage their DeFi portfolio, and explore Web3 with complete control and freedom. 

    - - - -

    “We are thrilled to help more people enjoy the benefits of self-custody, no matter what their level of crypto experience,” said Marieke Flament, CEO of the NEAR Foundation. “This new partnership will bring even easier and more secure access to cryptocurrency worldwide, as we remain committed to serving as the de facto entry point to Web3 – simplifying the onboarding experience for users even if they have never used crypto, tokens, keys, or wallets.”

    - - - -

    Carl Anderson, VP B2C Engineering at Ledger, adds: “I’m pleased to see a crypto player like NEAR join the Ledger ecosystem. This integration highlights what Ledger Live really is: an all-in-one asset management app where users can manage their digital assets, visualize their NFTs, and explore an ever-growing range of Web3 apps from the security of their hardware wallets.”

    - - - -

    How Ledger Live works

    - - - -

    To use Ledger Live, users must have a Ledger hardware wallet and then download the desktop and/or mobile app. This all-in-one digital asset management app allows users to track, buy, sell and swap an ever-growing range of tokens, visualize NFTs, earn rewards, manage NFT collections, and securely stake their digital assets with Ledger by Figment validator while enjoying the benefits of self-custody. 

    - - - -

    Users can delegate their NEAR tokens to the Ledger by Figment validator, contributing to the protocol’s security while benefiting from coverage against slashing risks, low commission fees, and earning rewards from that contribution. 

    - - - -

    Visit the Ledger Live webpage for more details on using the app and staking with the Ledger by Figment validator. 

    - - - -

    DISCLOSURE NOTICE: Investment in cryptocurrency and other digital assets is highly speculative and comes with significant risks. The value of these assets can be highly volatile and may fluctuate significantly in a short period of time. It is important to conduct thorough research and consult with a financial advisor before making any investment decisions. Additionally, it is important to understand the regulatory environment and potential legal implications of investing in cryptocurrency. This disclosure is not a recommendation to buy or sell any particular asset and is for informational purposes only.

    -

    The post NEAR Now Integrated into Ledger Live For More Security and Ownership appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ledger-live/index.html b/public/blog/tag/ledger-live/index.html deleted file mode 100644 index c02dc7c69..000000000 --- a/public/blog/tag/ledger-live/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ledger Live Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/litenode/feed/index.xml b/public/blog/tag/litenode/feed/index.xml deleted file mode 100644 index 1259877c2..000000000 --- a/public/blog/tag/litenode/feed/index.xml +++ /dev/null @@ -1,98 +0,0 @@ - - - - Litenode Archives – NEAR Protocol - - /blog/tag/litenode/ - - Tue, 20 Jun 2023 13:53:03 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Litenode Archives – NEAR Protocol - /blog/tag/litenode/ - 32 - 32 - - - NEAR Foundation and Seracle Team to Nurture the Web3 Ecosystem with DevOps Efficiency - /blog/near-foundation-and-seracle-team-to-nurture-the-web3-ecosystem-with-devops-efficiency/ - - - Wed, 07 Jun 2023 13:57:04 +0000 - - - - - /?p=20601 - - NEAR Foundation and Seracle, a top blockchain cloud platform, have established a partnership to revolutionize the world of Web3 development. …

    -

    The post NEAR Foundation and Seracle Team to Nurture the Web3 Ecosystem with DevOps Efficiency appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation and Seracle, a top blockchain cloud platform, have established a partnership to revolutionize the world of Web3 development. This alliance, forged in the name of innovation and cost-efficiency, capitalizes on Seracle’s unique Litenode architecture.

    - - - -

    This groundbreaking technology aims to drive down costs, with the potential for reducing a project’s monthly expenditures on node maintenance and DevOps by up to 90%.

    - - - -

    Introducing the Litenode and the Web3 Incubation Center

    - - - -

    The Litenode architecture is one of the linchpins in this strategic collaboration. Its design facilitates dramatic cost savings, all while ensuring quality isn’t compromised. But it doesn’t stop there. 

    - - - -

    The integration of a Web3 incubation center, nestled in the bustling tech hub of Pune, India, gives developers access to a fertile innovation environment. This collaborative center presents developers with a unique opportunity to immerse themselves in a vibrant ecosystem dedicated to the development, learning, and scaling of Web3 projects.

    - - - -

    “Seracle’s enthusiasm, technical capabilities, and experience in the Web3 space make them an ideal partner to grow NEAR,” said Arpit Sharma, Managing Director of APAC, MENA of NEAR Foundation, expressing enthusiasm for the collaboration’s potential. 

    - - - -

    This partnership, with its focus on communal growth and knowledge sharing, is poised to cultivate an enriched community of developers ready to take on the challenges of the Web3 landscape.

    - - - -

    How NEAR and Seracle are financing the next wave of Web3 

    - - - -

    To bring these ambitions to fruition, financial support is vital. Seracle has committed to providing substantial backing, offering platform credits from a pool of $100,000. These credits serve to alleviate the financial burdens of upfront costs, letting developers channel their focus into the creative process. 

    - - - -

    NEAR Foundation, in step with this initiative, pledges to offer grants to select innovative projects based at Seracle’s incubation center. Looking ahead, the partnership has set its sights high. The ambitious goal to onboard around 100 Web3 projects and engage with 5,000 developers this year underscores the commitment to growth and innovation. 

    - - - -

    Shrikant Bhalerao, CEO of Seracle, shares this vision and expresses his optimism about the partnership, stating that “NEAR boasts some of the most innovative solutions in the Web3 space. We anticipate that our partnership with NEAR will contribute to a significant 30% growth in our revenue.”

    - - - -

    With such dedication to growth and innovation, the collaboration between NEAR Foundation and Seracle is shaping up to be an inspiring chapter in the evolution of the Web3 ecosystem. Leveraging cost-efficient technology, fostering a vibrant community, and providing robust financial support, this partnership stands as a beacon for the future of Web3 development.

    -

    The post NEAR Foundation and Seracle Team to Nurture the Web3 Ecosystem with DevOps Efficiency appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/litenode/index.html b/public/blog/tag/litenode/index.html deleted file mode 100644 index a55bfd01f..000000000 --- a/public/blog/tag/litenode/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Litenode Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/los-angeles-football-club/feed/index.xml b/public/blog/tag/los-angeles-football-club/feed/index.xml deleted file mode 100644 index 82e609fe2..000000000 --- a/public/blog/tag/los-angeles-football-club/feed/index.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - - Los Angeles Football Club Archives – NEAR Protocol - - /blog/tag/los-angeles-football-club/ - - Wed, 20 Sep 2023 14:29:11 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Los Angeles Football Club Archives – NEAR Protocol - /blog/tag/los-angeles-football-club/ - 32 - 32 - - - Los Angeles Football Club and Dropt Rewrite Fan Experience Playbook Utilizing NEAR Protocol - /blog/los-angeles-football-club-and-dropt-rewrite-fan-experience-playbook-utilizing-near-protocol/ - - - Tue, 19 Sep 2023 19:00:00 +0000 - - - - - - /?p=20892 - - NEAR Foundation is excited to announce a new partnership between Los Angeles Football Club (LAFC) and Dropt — a fan …

    -

    The post Los Angeles Football Club and Dropt Rewrite Fan Experience Playbook Utilizing NEAR Protocol appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership between Los Angeles Football Club (LAFC) and Dropt — a fan engagement platform built on the NEAR Protocol — supporting the club’s vision to rewrite the playbook on the fan experience. The collaboration kicks off with LAFC Gold — a Loyalty Club designed to recognize Los Angeles FC’s most devoted fans with a wide range of unprecedented benefits.

    - - - -

    Let’s explore what LAFC’s new fan engagement product, LAFC Gold, looks like and what it means for an open web. 

    - - - -

    Elevating the football fan experience with LAFC Gold benefits

    - - - -

    In the sports worlds, fans love to be part of the action, and not just at the arena. Sports teams understand that fans like to feel that they are being seen, heard, and valued for their significant contributions to the organization and its athletes. And in the world of football (“soccer” to Americans), fanbases are truly global, making it important that sports franchises meet their fans wherever they are.
    With its new Loyalty Club, LAFC is acknowledging their fans and bringing them new benefits and experiences, utilizing Dropt’s digital engagement platform and NEAR technology.

    - - - -

    “LAFC Gold promises to make LAFC fans and supporters feel seen, heard, and valued wherever they are in the world,”  said LAFC Co-President & CBO Larry Freedman. “Watching a match at BMO Stadium is one of the best sports experiences anyone can have. With LAFC Gold, we now have a way to connect, recognize, and reward anyone who supports the Black & Gold.”

    - - - -

    LAFC Gold delivers on its promise with exclusive experiences 

    - - - -

    LAFC Gold kicked off with a ticket giveaway to the historic matchup between LAFC and Inter Miami, including the experience of holding the American Flag during the National Anthem before the match. And with the  2022 World Cup, 4-time Champions League, and 7-time Ballon d’Or winner Lionel Messi on the pitch for Inter Miami, this was a match not to be missed. 

    - - - -

    For the last three home matches of the season, including the momentous El Tráfico against LA Galaxy this past weekend, LAFC Gold has given away 4 premium tickets with pre-match field access to winning LAFC Gold Members. Unlocking your chance to win experiences and benefits like these for Real Salt Lake (10/1) and Minnesota United FC (10/4) is as easy as signing up and securing your LAFC Gold Membership.

    - - - -

    With Dropt’s digital fan engagement platform, LAFC Gold will be accessible and easy for fans to join. The kickoff is just the first of what will be a dynamic program designed to create new ways for fans to engage with LAFC and its club partners. And by utilizing the NEAR Protocol, LAFC will ensure that the team will remain at the forefront of the open web’s cutting-edge technology by allowing LAFC to verify and track every transaction in a secure environment.

    - - - -

    To experience LAFC Gold, visit gold.lafc.com and sign up for an Entry, Local, Global, or Youth Membership. 

    - - - -

    LAFC Season Ticket Members are automatically enrolled in the program. 

    -

    The post Los Angeles Football Club and Dropt Rewrite Fan Experience Playbook Utilizing NEAR Protocol appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/los-angeles-football-club/index.html b/public/blog/tag/los-angeles-football-club/index.html deleted file mode 100644 index f75c8894d..000000000 --- a/public/blog/tag/los-angeles-football-club/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Los Angeles Football Club Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/loyalty/feed/index.xml b/public/blog/tag/loyalty/feed/index.xml deleted file mode 100644 index ab579c0c9..000000000 --- a/public/blog/tag/loyalty/feed/index.xml +++ /dev/null @@ -1,261 +0,0 @@ - - - - Loyalty Archives – NEAR Protocol - - /blog/tag/loyalty/ - - Wed, 09 Aug 2023 16:23:10 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Loyalty Archives – NEAR Protocol - /blog/tag/loyalty/ - 32 - 32 - - - How GLASS is Uncorking Adult Beverage Loyalty with Web3 and NEAR  - /blog/how-glass-is-uncorking-adult-beverage-loyalty-with-web3-and-near/ - - - Thu, 10 Aug 2023 14:00:00 +0000 - - - - - /?p=20794 - - GLASS, the world’s first compliant Web3 community and loyalty platform for the $1.6 trillion alcohol industry, is deploying on the …

    -

    The post How GLASS is Uncorking Adult Beverage Loyalty with Web3 and NEAR  appeared first on NEAR Protocol.

    -]]>
    - GLASS, the world’s first compliant Web3 community and loyalty platform for the $1.6 trillion alcohol industry, is deploying on the NEAR blockchain to engage social drinkers. Founded by Zoe Leavitt, who formerly led early-stage social and entertainment investing for the VC arm of AB InBev, the world’s largest beer company, and serial blockchain entrepreneur and compliance tech expert Calvin Pak, GLASS redefines the ways alcohol brands connect with consumers during social occasions.

    - - - -

    GLASS’s compliance infrastructure allows wine, beer, and spirits brands to directly engage social drinkers, introducing groundbreaking innovation to an industry navigating strict legal restrictions when it comes to sales and marketing.

    - - - -

    Rather than spending seven million dollars on a 30-second Super Bowl ad spot, what if alcohol brands could send drinks directly to over four hundred thousand fan watch parties? Tapping into Web3, this is the future that GLASS plans to create. Brands on GLASS use tokens to incentivize fans to try new cocktail recipes, socialize with friends, vote on brand decisions, and more; and fans can use those tokens to unlock exclusive rewards and experiences. 

    - - - -

    Prominent brands stir up social engagement with GLASS

    - - - -

    Premium alcohol brands are already live on this groundbreaking new platform. These include premium Italian winemaker Lyons Wine; Talkhouse Encore, the canned cocktail brand affiliated with legendary music hall The Stephen Talkhouse; Hotaling & Co’s Fiero Tequila, the spiciest infused tequila in the US; and Junipero Gin, the original American craft gin. Each brand is prepped to offer its customers unique rewards — from exclusive merchandise to money-can’t buy-experiences on Web3 with GLASS and the NEAR blockchain. 

    - - - -

    “We see great potential in building the Lyons Wine community on GLASS,” said Lyons Wine CEO and founder Chris Lyons. “Lyons Wine has always been driven by community and innovation, and we’re excited to leverage web3 to bring exclusive rewards to our network through this platform.”

    - - - -

    Through upcoming integrations with alcohol e-commerce and point-of-sale platforms, GLASS members will be able to track purchases and earn for purchasing as well as socializing — in ways that comply with each member’s local regulations. From the bar, to the friend’s house, to the stadium, GLASS creates a unified platform for fans and brands to engage across the full universe of social occasions.   

    - - - -

    “We’re excited to use this new platform to engage and grow the Fiero Tequila community of ‘heat seekers’ who rally around the spiciest infused tequila in the U.S,” said Jordan Parker, Head of Marketing for the Agave Portfolio at Hotaling & Co. “The platform will help us bring our community together around the unique, social activations that Fiero has planned.”

    - - - -

    GLASS will continue to announce new brand partnerships and roll out new features throughout the summer and fall. Consumers can sign up directly at www.glass.fun to start earning tokens today.

    -

    The post How GLASS is Uncorking Adult Beverage Loyalty with Web3 and NEAR  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation and Sail GP Elevate Mobile Fan Engagement with The Dock - /blog/near-foundation-and-sail-gp-elevate-mobile-fan-engagement-with-the-dock/ - - - Thu, 20 Jul 2023 14:00:00 +0000 - - - - - /?p=20736 - - SailGP and NEAR Foundation are embarking on a daring journey where sports meets blockchain. SailGP’s The Dock platform is ready …

    -

    The post NEAR Foundation and Sail GP Elevate Mobile Fan Engagement with The Dock appeared first on NEAR Protocol.

    -]]>
    - SailGP and NEAR Foundation are embarking on a daring journey where sports meets blockchain. SailGP’s The Dock platform is ready to make waves and redefine fan engagement in both sailing and sports at large. After its maiden voyage as a web-based platform on June 13th, The Dock is now ready to drop anchor with the launch of the new mobile app.

    - - - -

    The Dock is SailGP’s free loyalty program that brings fans closer than ever to the sport and will now be available in both Apple and Google Play Stores. And by leveraging the NEAR blockchain, users of The Dock will be able to claim unique rewards and digital assets using Web3 to engage sports fans like never before.

    - - - -

    Not to mention that The Dock is powered in part by Oracle, making the triad of SailGP and NEAR an excellent representation of building bridges between Web2 and Web3. 

    - - - -

    The Dock: A revolution in Fan Engagement

    - - - -

    The Dock is an immersive loyalty platform designed to reward and engage sports and sailing enthusiasts globally. The platform — and now mobile app — gives fans a chance to create personalized accounts, engage with unique and exclusive SailGP content, and earn points redeemable for exclusive rewards. 

    - - - -

    With offerings ranging from VIP access to SailGP events and signed merchandise to once-in-a-lifetime experiences with teams and athletes, The Dock is every fan’s passport to an interactive way of engaging with their favorite SailGP athletes and teams. The platform essentially encourages fans to interact more, and in doing so earn more. 

    - - - -

    With each interaction —± through videos, stories, behind-the-scenes content, quizzes, surveys, and polls — fans earn points that propel them closer to becoming a SailGP Champion. The accumulation of points unlocks new levels, each promising a unique set of exclusive benefits, enhancing the overall SailGP experience.

    - - - -

    The Dock and NEAR Protocol: A synergistic partnership

    - - - -

    A standout feature of The Dock is its fusion of Oracle’s CrowdTwist platform with the NEAR Protocol, symbolizing an industry-first partnership that bridges Web2 and Web3. This collaboration showcases how traditional and decentralized technologies can come together to revolutionize fan engagement in sports.

    - - - -

    Through the Dock’s ‘Season Pass’, fans can link an existing NEAR account or create a new one. This paves the way for exciting blockchain-based rewards, including digital collectibles commemorating their progress. Fans can also trade these digital collectibles for limited-edition collectibles, adding another layer of engagement and excitement.

    - - - -

    “Data is at the heart of SailGP — from the mid-race decisions made on the water to the league’s continued innovation around fan engagement,” said Rob Tarkoff, EVP of customer experience at Oracle. “We’re excited to support their newest CX initiative, The Dock, as they redefine their approach to the fan experience.”

    - - - -

    SailGP’s journey with Oracle and NEAR

    - - - -

    Since its inception in 2019, SailGP has harnessed the power of Oracle Cloud Infrastructure (OCI) to expand from a five-team, six-event startup to one of the fastest-growing sports leagues in the world with ten teams competing in 12 events throughout 2023 and 2024. Oracle has stepped up as the Title Partner for the inaugural Los Angeles Sail Grand Prix. Scheduled for July 22 and 23, it’s a thrilling new addition to SailGP’s 12-event global calendar for Season 4, which kicks off in Chicago on June 16.

    - - - -

    “Oracle’s cloud technology is at the heart of everything we do at SailGP, and this partnership extension reflects the power and results of our collaboration,” says Warren Jones, chief technology officer, SailGP. “We have no doubt Oracle will take our fan and athlete experience to even greater heights in the seasons to come and The Dock is a great example of this.”

    - - - -

    With the launch of The Dock’s mobile app, this exciting world of interactive sailboat racing, fan engagement, and blockchain rewards is now just a tap away. Anyone can download the app and embark on their journey to become a SailGP Champion, while also exploring the new fandom possibilities offered by the blend of Web2 and Web3 technologies.

    - - - -

    NEAR’s mission is to push the boundaries of the Web3 world, create experiences that allow everyone to engage with decentralized technology, and foster partnerships that provide real-world utility for blockchain. Whether you’re immersed in the NEAR ecosystem or a sports enthusiast intrigued by the intersection of blockchain and sports.

    - - - -

    The Dock promises an exciting glimpse into the future of fan engagement and loyalty platforms while bridging the gap between Web2 and Web3 with Oracle and NEAR. 
    Download The Dock mobile app today on the Apple App Store or Google Play and get started on your interactive journey.

    -

    The post NEAR Foundation and Sail GP Elevate Mobile Fan Engagement with The Dock appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Rove World v2 Simplifies Web3 Ticketing and Loyalty for Brands - /blog/rove-world-v2-simplifies-web3-ticketing-and-loyalty-for-brands/ - - - Wed, 12 Apr 2023 14:12:00 +0000 - - - - - - /?p=20449 - - Rove, one of the most user-friendly entertainment ecosystems in Web3, is now in collaboration with NEAR. Their next release, Rove …

    -

    The post Rove World v2 Simplifies Web3 Ticketing and Loyalty for Brands appeared first on NEAR Protocol.

    -]]>
    - Rove, one of the most user-friendly entertainment ecosystems in Web3, is now in collaboration with NEAR. Their next release, Rove World v2, will act as a one-stop mobile-based ticketing solution and loyalty rewards program for brands. The update will also feature an in-app store that will include major brands, sports leagues, and musical artists.

    - - - -

    Rove and Rove World v2 removes many of the key friction points that occur when brands and creators try to engage their audience with Web3 technology. Notable brands are already on board, as Rove has collaborated with the likes of Tommy Hilfiger on the Web2 side, alongside some of Web3’s largest brands such as Claynosaurz and MonkeDAO, with more exciting partnerships and activations to be announced soon.

    - - - -

    “A multichain approach was always at the forefront of our long-term growth strategy for Rove,” said Jason Desimone, Founder of Rove. “Having built and launched the initial version of the Rove World mobile app, our goal is to now expand the reach and traction of Rove to other ‘Layer 1’ blockchain communities and ecosystems that align with our vision and will help us achieve our goals with the launch of Rove v2.”

    - - - -

    Let’s take a look at how Rove World V2 is a game-changer for branded NFTs on NEAR.

    - - - -

    How Rove is helping brands amp up their NFTs

    - - - -

    The Rove ecosystem is a solution to many of the core issues facing brand and entertainment NFT campaigns, launches, and projects. That’s because Web3 itself is often difficult or daunting for the end user, who amongst other things might have questions about the value or utility of NFT ownership.

    - - - -

    What Rove brings to the table is a user-friendly mobile app where NFTs are minted in mere seconds and with minimal steps. Brands can also easily add utility to the NFTs which are easily accessible by the user. Rove’s vision aligns seamlessly with NEAR’s Web2.5 strategy of making the onboarding of the next billion users into Web3 as easy as possible.   

    - - - -

    Brand and entertainment NFT experiences built atop Rove and NEAR lets users log in seamlessly through familiar means like social media log-in, Apple ID, or facial ID. NFTs are easily sent and received on the Rove app via usernames, again with a similar Web2 interface to that of Venmo.

    - - - -

    Rove World v2 release lets brands create buzz

    - - - -

    The Rove World v2 release will be a major part of Rove’s suite of tools that make it easy for brands to get started with blockchain technology. Their approach is to allow brands to engage with NFTs in a collaborative manner that benefits creators, brands, and end users alike. Rove World v2 on Near is a huge leap in that direction.

    - - - -

    The main feature is the in-app store that brands can now leverage in combination with Rove’s flagship app for curated NFT launches and blockchain-based ticketing. Not only will attendees be able to claim NFTs instantly at the tap of their phone, but brands can also now leverage Rove World v2 to offer seamless in-app purchases via the mobile store.

    - - - -

    NEAR and entertainment continue to shine with Rove

    - - - -

    Rove has many brands in the pipeline across the fashion, film, music, and sports verticals that want a seamless NFT experience for their customers. This not only brings more notable and forward-thinking brands into NEAR’s orbit but also showcases how the NEAR ecosystem continues to make major strides in the sports and entertainment verticals. 

    - - - -

    Eventually, Rove will serve as a central ticketing and NFT project on NEAR. Users can easily create assets, mint the NFT, and distribute it however they’d like. The entire experience will be on a single mobile app, bridging the technical gap between users and brands while giving a fairer share to creators than mainstream NFT marketplaces.

    - - - -

    All assets on Rove and Rove World v2 also have some form of utility. Anyone who owns an NFT on Rove can stake that asset for Rove credits that unlock various perks. It’s a great example of how Rove is making all of Web3 simple, including things like staking. 

    - - - -

    Ticketing and NFT distribution for brands and creators are about to get a whole lot easier for everyone thanks to Rove. And with Rove World v2’s in-app store, major brands are lining up to be at the forefront of making web3 truly accessible, user-friendly, and financially fair.

    - - - -

    “NEAR’s emphasis on onboarding the next billion users into Web3 with a specialized focus on entertainment, sports, and culture fit identically with our approach,” said Rove’s Desimone. “Not to mention NEAR’s industry-leading technology which enables a seamless migration of the easy-to-use features of the Rove World mobile app onto the NEAR blockchain.”

    -

    The post Rove World v2 Simplifies Web3 Ticketing and Loyalty for Brands appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/loyalty/index.html b/public/blog/tag/loyalty/index.html deleted file mode 100644 index a646950b9..000000000 --- a/public/blog/tag/loyalty/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Loyalty Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/machine-learning/feed/index.xml b/public/blog/tag/machine-learning/feed/index.xml deleted file mode 100644 index 497b9ce5a..000000000 --- a/public/blog/tag/machine-learning/feed/index.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - Machine Learning Archives – NEAR Protocol - - /blog/tag/machine-learning/ - - Thu, 26 Oct 2023 17:18:22 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Machine Learning Archives – NEAR Protocol - /blog/tag/machine-learning/ - 32 - 32 - - - AI is NEAR: Illia Polosukhin on AI and the Open Web at NEARCON ’23 - /blog/ai-is-near-illia-polosukhin-on-ai-and-the-open-web-at-nearcon-23/ - - - Thu, 26 Oct 2023 17:30:00 +0000 - - - - - - /?p=21004 - - Artificial Intelligence and Web3 have been two of the hottest topics of 2023. There has been significant interest in how …

    -

    The post AI is NEAR: Illia Polosukhin on AI and the Open Web at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - Artificial Intelligence and Web3 have been two of the hottest topics of 2023. There has been significant interest in how the two technology ecosystems may converge in the coming years, with lots of interest from investors.

    - - - -

    For NEARCON ‘23, we’ve designed a special track for AI and the open web: ”AI is NEAR”. Leading the way will be NEAR co-founder Illia Polosukhin, a pioneer in the world of AI. 

    - - - -

    Illia will share his perspective on this past year’s AI revolution, including its intersection with the Web3 space on NEAR in the months to come. 

    - - - -

    Attention Is All You need

    - - - -

    By now, everyone knows ChatGPT, which kicked off the latest AI revolution. But years before OpenAI released its AI chatbot, a group of researchers published a paper that would revolutionize the fields of AI and machine learning. 

    - - - -

    The “Attention is All You Need” paper, of which Illia is a co-author, introduced transformers — the “T” in ChatGPT. Illia’s research was instrumental in laying the groundwork for the major LLMs of today, such as ChatGPT and Bard. 

    - - - -

    At NEARCON ‘23, Illia will draw on his deep expertise in AI to offer a perspective on how AI and Web3 will converge and how blockchains can help AI develop in a more positive direction, mitigating potential risks and introducing more transparency. He will share the strategy for AI on NEAR going forward, including evolving NEAR governance with AI agents and the emergence of new business models. 

    - - - -

    Illia Polosukhin and TechCrunch’s Mike Butcher in a fireside chat

    - - - -

    In this candid discussion, Illia and TechCrunch’s Mike Butcher will explore the evolving role of AI in the open web, what we can expect next, and why the current state of AI controlled by major corporations needs to change. 

    - - - -

    As the case for open source AI becomes clearer, and as regulators across the globe mitigate risk with new policies, the question now becomes: how can Web3 help AI evolve in a more positive direction?

    - - - -

    Join the AI and Open Web chat at NEARCON ‘23

    - - - -

    With some of the brightest thought leaders in AI and the open web, NEARCON ‘23 is one not to be missed. Alongside Illia, you will also hear from NEAR co-founder Alex Skidanov, who is currently working on an AI startup that is building smarter large language models, or LLMs, in a more decentralized way. 

    - - - -

    There will also be a panel discussion on how AI and blockchain technologies will integrate with modern work environments. Niraj Pant, previously an investor at Polychain who is launching a startup at the intersection of AI and Web3, will also deliver a keynote on how AI can be leveraged for decentralized applications and services.

    - - - -

    The full NEARCON ‘23 schedule is now live, so check out the other tracks!

    - - - -

    If you’re a student in Spain or Portugal, or a Ukrainian citizen living in Portugal, you’re eligible for free tickets. Hackers also get in for free by applying to the NEARCON IRL Hackathon

    -

    The post AI is NEAR: Illia Polosukhin on AI and the Open Web at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/machine-learning/index.html b/public/blog/tag/machine-learning/index.html deleted file mode 100644 index 723ef5c1a..000000000 --- a/public/blog/tag/machine-learning/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Machine Learning Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/mantle/feed/index.xml b/public/blog/tag/mantle/feed/index.xml deleted file mode 100644 index f09ba3703..000000000 --- a/public/blog/tag/mantle/feed/index.xml +++ /dev/null @@ -1,87 +0,0 @@ - - - - Mantle Archives – NEAR Protocol - - /blog/tag/mantle/ - - Thu, 21 Sep 2023 14:05:51 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Mantle Archives – NEAR Protocol - /blog/tag/mantle/ - 32 - 32 - - - Mantle Ecosystem Gateway Launches on the NEAR Blockchain Operating System (B.O.S) - /blog/mantle-ecosystem-gateway-launches-on-the-near-blockchain-operating-system-b-o-s/ - - - Wed, 20 Sep 2023 13:00:00 +0000 - - - - - - /?p=20896 - - An ecosystem gateway for Mantle, the layer-2 scaling solution built on Ethereum, has launched on the NEAR Blockchain Operating System …

    -

    The post Mantle Ecosystem Gateway Launches on the NEAR Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

    -]]>
    - An ecosystem gateway for Mantle, the layer-2 scaling solution built on Ethereum, has launched on the NEAR Blockchain Operating System (B.O.S) to offer a unified point of entry into the Mantle ecosystem. 

    - - - -

    Hosted by popular Mantle dApp FusionX, the gateway, built in collaboration with the NEAR community, streamlines the discovery of Mantle applications and helps aggregate components of top dApps including the Mantle Bridge, Agni, Ammos, iZiSwap, FusionX, Gamma, Lendle, and soon Pendle, in one place. 

    - - - -

    The gateway offers greater accessibility for developers and users, easier discoverability for the apps they build, and powerful composability. This was all made possible thanks to the B.O.S.

    - - - -

    “Mantle has seen some great traction since their launch and we’re very excited to have a Mantle gateway built on B.O.S. Ethereum and DeFi users interested in discovering new projects can now find lots of Mantle apps in one place, with bridging already solved so they can get started right away,” says Illia Polosukhin, co-founder of NEAR Protocol. “The Mantle gateway demonstrates the value of B.O.S gateways for other L2s and EVM projects looking to increase discoverability.” 

    - - - -

    Unlocking the Web3 ecosystem 

    - - - -

    Mantle’s development on NEAR is a testament to the protocol’s commitment to creating the foundations for the open web. “We are delighted to ally with NEAR in bringing leading Mantle dApps to a wider community through the Mantle Ecosystem Gateway on B.O.S,” says Arjun Kalsy, head of ecosystem of Mantle. “Through this effort, we look to provide even more support to our dev community, and allow for more cross-pollination in our respective Web3 communities.” 

    - - - -

    The Mantle gateway joins a growing list of projects that have partnered with the B.O.S to help unlock the full potential of Web3. A zkEVM B.O.S gateway for the Polygon ecosystem launched on NEAR to help increase accessibility and discoverability for developers, while also improving the user experience for end users exploring L2 ecosystems. 

    - - - -

    While the B.O.S is built on NEAR, it offers many benefits  to founders and builders from EVM projects and across the whole Web3 ecosystem. The Blockchain Operating System speeds up the process of building multi-chain experiences, empowering builders from any ecosystem––including EVM projects such as Ethereum layer 2s––to focus on creating great products for users rather than on managing infrastructure. 

    - - - -

    Developers can quickly build composable apps for the open web from thousands of flexible components, as well as seamlessly onboard users and increase discoverability across Web3 since every application utilising B.O.S is visible on a common interface. This collaboration brings new capabilities to developers and lets them build apps that can quickly reach more users.

    -

    The post Mantle Ecosystem Gateway Launches on the NEAR Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/mantle/index.html b/public/blog/tag/mantle/index.html deleted file mode 100644 index 756b9baee..000000000 --- a/public/blog/tag/mantle/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Mantle Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/mass-adoption/feed/index.xml b/public/blog/tag/mass-adoption/feed/index.xml deleted file mode 100644 index e9cf619aa..000000000 --- a/public/blog/tag/mass-adoption/feed/index.xml +++ /dev/null @@ -1,427 +0,0 @@ - - - - Mass adoption Archives – NEAR Protocol - - /blog/tag/mass-adoption/ - - Fri, 16 Dec 2022 19:22:56 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Mass adoption Archives – NEAR Protocol - /blog/tag/mass-adoption/ - 32 - 32 - - - NEAR Weekly On-Chain Data Report: December 16  - /blog/near-weekly-on-chain-data-report-december-16/ - - - Fri, 16 Dec 2022 16:00:00 +0000 - - - - /?p=19593 - - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand …

    -

    The post NEAR Weekly On-Chain Data Report: December 16  appeared first on NEAR Protocol.

    -]]>
    - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand the health of the ecosystem. This will be on top of the quarterly reports, and the now monthly funding reports. 

    - - - -

    You can find the Quarterly Transparency Reports here. (The Q3 report will be published next week.)

    - - - -

    Last week’s On-Chain Data Report can be found here. 

    - - - -

    The Importance of Transparency

    - - - -

    Transparency has always been one of NEAR Foundation’s core beliefs. Openness to the community, investors, builders, and creators is one of the core tenets of being a Web3 project. 

    - - - -

    In recent months, in response to community frustration, the Foundation has endeavored to do more. This NEAR Weekly On-Chain Data Report is just one of the ways in which the Foundation is being more proactively transparent.  

    - - - -

    New Accounts and Active Accounts

    - - - -

    New Accounts are defined as new wallets created on the NEAR blockchain. While there was a decline in new accounts between the last week of November and the first week of December, this figure rose from an average of 14,000 per day to approximately 24,000 per day this week. New accounts reached a weekly high of 25,001 on December 12th.

    - - - -

    This puts last week’s New Accounts data in line with November’s average figure of 24,000 wallets per 24 hours. As noted last week, the peak for account creation in Q4 was September 13, during which 130,000 new wallets were created in a single day. Collectively, these numbers equate to nearly 2M  total wallets on the NEAR blockchain.

    - - - -
    - - - -

    The Daily Number of Active Accounts measures the number of NEAR wallets making on-chain transactions. Over the last week, Active Accounts hit a high of 92,440 before trending down to about 51,000 per day. 

    - - - -

    Historically, there have been highs of more than 100,000 active accounts on NEAR. The  high for Active Accounts on any one day in Q4 of 2022 was logged on September 14, during which 183,000 accounts were active.

    - - - -
    - - - -

    New Contracts and Active Contracts

    - - - -

    Smart contracts created on NEAR are programs stored on a blockchain that run when predetermined conditions are met. The Daily Number of New Contracts is valuable as a metric because it gives the community a way of measuring the NEAR ecosystem’s health and growth. If there are more active contracts, it follows that projects are more actively engaging with the NEAR protocol. 

    - - - -

    This week, the daily number of New Contract has been trending upward, whereas last week it rose and fell. A low of 17 New Contracts was measured on December 11th,, before falling to 50 on the 14th. A weekly high of 57 contracts were created on December 13th. 

    - - - -
    - - - -

    Active Contracts measure contracts executed during a 24-hour period. This metric also trended upward this week, with 640 measured on December 11th and and a high of 797 Active Contracts created on December 13th. 

    - - - -
    - - - -

    Used Gas and Gas Fee

    - - - -

    Gas Fees is a term used to describe the cost of making transactions on the NEAR network. These fees are paid to validators for the network services they provide to the NEAR blockchain. Gas fees incentivize validators to secure the network. 

    - - - -

    In the last week, Used Gas on NEAR (PetaGas) was measured at a high of 7,569 on December 11th and 6,758 on the 14th. To learn more about Gas on NEAR, check out the NEAR White Paper. (Rises in gas used can be attributed to many factors, with a common one being increased user activity on the NEAR network.) 

    - - - -
    - - - -

    Over the last week, there has been a slight drop in the Gas Fee (in NEAR), which correlates with a drop in Used Gas. On December 11th, the Gas Fee was measured at 756, before falling to 675 on the 14th. 

    - - - -
    - - - -

    Daily Transactions

    - - - -

    The Daily Number of Transactions illustrates the number of times the blockchain logged a transaction. The data from this week showcases an increase in the number of transactions, which was also the case over the previous week. Daily Number of Transactions hit a weekly high of 439,660 on December 11th before falling to 373,335 on the 14th. 

    -

    The post NEAR Weekly On-Chain Data Report: December 16  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Weekly On Chain Data Report: December 9 - /blog/near-transparency-report-december-9/ - - - Fri, 09 Dec 2022 10:38:36 +0000 - - - - /?p=19508 - - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand …

    -

    The post NEAR Weekly On Chain Data Report: December 9 appeared first on NEAR Protocol.

    -]]>
    - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand the health of the ecosystem. This will be on top of the quarterly reports, and the now monthly funding reports. 

    - - - -

    You can find the quarterly reports here.

    - - - -

    You can find monthly reports on funding here.  

    - - - -

    Last week’s transparency report can be found here. 

    - - - -

    The importance of transparency

    - - - -

    The NEAR Foundation has always held transparency as one of its core beliefs. Being open to the community, investors, builders and creators is one of the core tenets of being a Web3 project. But it’s become apparent the Foundation needs to do more. 

    - - - -

    The Foundation hears the frustration from the community, and it wants to be more pro-active in when and how it communicates. 

    - - - -

    New Accounts and Active Accounts

    - - - -

    New Accounts are new wallets being created on the NEAR blockchain. In the last days of November and the first days of December, the daily number of new accounts had been declining. This week however, activity has been trending up, with the average number of new accounts averaging 14,000 per day, with a weekly peak of 14,752 recorded on December 6.

    - - - -

    This is down on November’s figure of 24,000 wallets per 24 hours, on average. These numbers are conducive with the overall decline in sentiment around blockchain.

    - - - -

    Looking more broadly, the peak for account creation in Q4 was September 13 where 130,000 new wallets were created in one day. Collectively, these numbers equate to 22,551,000 total wallets on the NEAR blockchain.

    - - - -
    - - - -

    The Daily Number of Active Accounts is a measure of how many wallets on NEAR are making transactions on chain. Over the last week, the number of daily active accounts has oscillated between a a low of 12,639 on December 5, to a peak of 14,752 on December 6.

    - - - -

    Historically, this is a decline from highs of more than 100,000 active accounts on the network. The highest number of active accounts on any one day in Q4 this year was logged on September 14, where 183,000 accounts were active.

    - - - -
    - - - -

    New Contracts and Active Contracts

    - - - -

    Contracts on NEAR are simply programs stored on a blockchain that run when predetermined conditions are met. The Daily Number of New Contracts is a valuable metric for understanding the health and growth of an ecosystem.

    - - - -

    The more active contracts there are, the more projects are actively engaging with the NEAR protocol. The chart below shows a cyclical rhythm to new contracts, with rises and falls. Over the last seven days, the number of new contracts reached a daily high of 54 on December 4, and a weekly low of 27 on December 6. This range is broader compared to the week before, with last week’s highest number of 44 on November 30, to a low of 12 new contracts on November 27.

    - - - -
    - - - -

    Active contracts is a measure of contracts that execute in a 24 hour period. This number has remained consistent throughout the last week with an average of more than 600 active contracts on the NEAR network. Taking a historical perspective on these numbers, the average has declined in Q4, with previous highs in active contract activity coming in the third week of September 2022.

    - - - -
    - - - -

    Used Gas and Gas Fee

    - - - -

    Gas Fees are a catch all term for the cost of making transactions on the NEAR network. These fees are paid to validators for their services to the blockchain. Without these fees, there would be no incentive for anyone to keep the network secure.

    - - - -

    - - - -

    Over the last week, the daily amount of gas, expressed here as PetaGas, which is the equivalent of 0.1 $NEAR, has maintained a fairly consistent value between 5,949 PetaGas and 6,743 PetaGas. To learn more about Gas on NEAR, there is an excellent explainer in the NEAR White Paper. Compared with last week, the Daily Amount of Used Gas has decreased, from highs of more than 8,000 PetaGas.

    - - - -
    - - - -

    The Daily Amount of Gas correlates with the Daily Gas Fee used on the network. Over the last week, there has been an uptick in the amount of Gas used, which can be brought on by a number of different factors. One of the most common is increased activity among users of the network.

    - - - -
    - - - -

    Daily Transactions

    - - - -

    The daily number of transactions is a record of how many times the blockchain logged a transaction. This week’s data represents a healthy increase in the number of transactions. From lows of 328,000 transactions on December 3, to a weekly high of 388,000 transactions per day on December 6. Looking more broadly, NEAR transaction activity has been trending downwards in Q4, reflecting other on chain data presented here.

    - - - -
    - - - -

    These reports will be generated each week and published on Friday.

    -

    The post NEAR Weekly On Chain Data Report: December 9 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR and Grupo Nutresa Partner for Customer Experience Innovations in Web3 - /blog/near-and-grupo-nutresa-partner-for-customer-experience-innovations-in-web3/ - - - Thu, 01 Dec 2022 09:45:00 +0000 - - - - /?p=18608 - - In a groundbreaking and innovative move, NEAR has partnered with Grupo Nutresa, one of the most important processors of food …

    -

    The post NEAR and Grupo Nutresa Partner for Customer Experience Innovations in Web3 appeared first on NEAR Protocol.

    -]]>
    - In a groundbreaking and innovative move, NEAR has partnered with Grupo Nutresa, one of the most important processors of food in South America, to bring Web3 to the grocery industry. This will see Grupo Nutresa building one of the first open-source loyalty points programs on NEAR with long-term aspirations to reach a million users in Colombia and Latin America. The partnership was established through the support of tech firm Peersyst.

    - - - -

    Grupo Nutresa customers will in turn gain more autonomy and control of their rewards. Customers will also get additional security and the reassurance that points will not be stolen or denied, and can be transferred more efficiently. Leveraging NEAR’s technology will also increase usability and accessibility of the rewards system as a whole, saving customers from having to create multiple accounts or different logins for multiple platforms — they just need their easy to use NEAR wallet.

    - - - -

    “We are excited to partner with one of the biggest multinationals in Latin America and help it to lead the way through its first Web3 loyalty programme,” says NEAR Foundation CEO Marieke Flament. “Leveraging NEAR’s first-rate technology, the partnership will redefine what is possible when combining retail with the latest blockchain innovation, not just in Latin America but throughout the rest of the world.” 

    - - - -

    Usability is key to loyalty

    - - - -

    Rewarding customers for their support has always been a priority for the world’s top brands. Such programs not only engage customers and deliver incentives for them to return but also act as analytical tools, giving businesses insights into customers’ behaviour and preferences. 

    - - - -

    With 87% of shoppers reporting they want brands to have loyalty programs and over 70% of consumers more likely to recommend a brand with a robust loyalty program, Web3 and digital wallets are pushing forward-thinking brands to explore new opportunities on platforms that are easy to use. 

    - - - -

    As one of the biggest multinationals in Colombia, Grupo Nutresa manages several loyalty programs for its customers, collaborators, and providers. Those loyalty programs are now coming together into a single easy-to-use platform underpinned by blockchain technology, through support from Spanish technology company Peersyst Technology.

    - - - -

    Onboarding the masses into NEAR and Web3

    - - - -

    Grupo Nutresa sees NEAR as the ideal partner for these types of loyalty programs. NEAR Foundation sees the Grupo Nutresa partnership as a great opportunity to onboard the masses into the NEAR and Web3 ecosystems.  

    - - - -

    “Our purpose is to make people feel recognized and valued by brands. Above all, what interests us most is that this is an opportunity to help build their dreams, through a service that provides them with significant redemption options and value,” says  Fabián Andrés Restrepo, Digital Transformation Leader at Grupo Nutresa. “This invitation is also addressed to companies that want to help make people’s dreams come true and reward their loyal customers, by becoming an ally of Grupo Nutresa and its portfolio of businesses. We see in NEAR an important ally for developing and implementing Grupo Nutresa’s loyalty strategy.” 

    - - - -

    NEAR’s sustainability credentials also align with Grupo Nutresa’s own business strategy and deep commitment to create value for society as a whole. According to the 2021 Dow Jones Sustainability Indices, Grupo Nutresa has been voted as the most sustainable food company in the world for two consecutive years, thanks to its effective implementation of social, environmental, and economic practices. 

    -

    The post NEAR and Grupo Nutresa Partner for Customer Experience Innovations in Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Wallet Rockets to Over 20 Million Users With SWEAT Partnership   - /blog/near-wallet-rockets-to-over-20-million-users-with-sweat-partnership/ - - - Thu, 03 Nov 2022 12:00:07 +0000 - - - - /?p=18972 - - It’s almost hard to believe that the NEAR Wallet had only 2 million users at the start of this year. …

    -

    The post NEAR Wallet Rockets to Over 20 Million Users With SWEAT Partnership   appeared first on NEAR Protocol.

    -]]>
    - It’s almost hard to believe that the NEAR Wallet had only 2 million users at the start of this year. At over 20 million users, NEAR is thrilled to mark its wallet’s tenfold growth in less than a year. NEAR is really creating without limits!

    - - - -

    This meteoric rise can be attributed to a number of factors, including growing support among builders for NEAR’s user-friendly, highly scalable, climate neutral blockchain. But also instrumental in this growth is NEAR’s epic partnership with companies such as SWEAT Economy, the world’s most popular fitness app.

    - - - -

    Largest ever on-ramping of Web2 users into Web3

    - - - -

    At the moment, over 800 projects are building on NEAR, which uses Proof-of-Stake consensus to secure and validate transactions on the blockchain. NEAR has also lowered barriers for creators with developments such as the launch of Javascript SDK. This gives over 20 million developers the chance to build Web3 apps using JavaScript, the most popular coding language in the world. 

    - - - -

    In September,  Sweat Economy—the “economy of movement”—successfully launched on NEAR with the largest ever airdrop to active, opted-in, wallets. The Move-to-Earn platform, active in Web2 since 2016 with over 130 million global users of its Sweatcoin app, distributed their new Web3 SWEAT token to 13.5M token holders. The Sweat Wallet app quickly became the #1 most downloaded Finance app in more than 50 countries. This follows Sweat’s success as the fastest IDO ever to sell out on the DAO Maker platform.

    - - - -

    Sweat Economy distributed over 4.7 Billion of its newly launched SWEAT tokens to the 13.5M Sweatcoin users who opted to enter Web3. For many of these users, it is their first experience with blockchain technology, making this the largest ever on-ramping of self-custody users from Web2 to Web3.

    - - - -

    “It’s been an extraordinary year for NEAR as we ramp up efforts to attract the world’s best and socially-minded developers on our protocol,” says Marieke Flament, CEO of NEAR Foundation. “We have put our emphasis on championing talent diversity, regional hub development, and sustainable practices. Equally important to our success is the strategic partnerships we have forged with prominent companies that have done a brilliant job at transitioning from a Web2 business model to Web3.” 

    - - - -

    Onboarding 1 billion users to Web3

    - - - -

    This transition is particularly important as NEAR works hard to onboard one billion users to Web3. 

    - - - -

    “Sweat Economy is one of these companies that have made it easy for people to access Web3 applications with the help of NEAR, which has led to millions of users for  its product and for our protocol,” Flament adds. “ These partnerships are key to helping us to realize our ambition to achieve mass adoption for crypto and to show the world that Web3 is capable of  solving real world problems and making society a better place for all.”

    - - - -

    If you still have yet to join the “economy of movement,” head to your mobile app store and download Sweatcoin today and see how millions of people are earning crypto just by being physically active. Join NEAR and Sweat Economy to build a healthier collective future.

    -

    The post NEAR Wallet Rockets to Over 20 Million Users With SWEAT Partnership   appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/mass-adoption/index.html b/public/blog/tag/mass-adoption/index.html deleted file mode 100644 index 831776df7..000000000 --- a/public/blog/tag/mass-adoption/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Mass adoption Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/mastercard/feed/index.xml b/public/blog/tag/mastercard/feed/index.xml deleted file mode 100644 index b48f9d317..000000000 --- a/public/blog/tag/mastercard/feed/index.xml +++ /dev/null @@ -1,156 +0,0 @@ - - - - Mastercard Archives – NEAR Protocol - - /blog/tag/mastercard/ - - Thu, 06 Apr 2023 20:19:26 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Mastercard Archives – NEAR Protocol - /blog/tag/mastercard/ - 32 - 32 - - - NEAR Balkans’ Tekuno and Mastercard Team Up for Gamified NFT Experience - /blog/near-balkans-tekuno-and-mastercard-team-up-for-gamified-nft-experience/ - - - Fri, 07 Apr 2023 12:00:00 +0000 - - - - - - - /?p=20387 - - NEAR Foundation is thrilled to announce that Tekuno, one of the most innovative NEAR Balkans Hub projects, recently teamed up …

    -

    The post NEAR Balkans’ Tekuno and Mastercard Team Up for Gamified NFT Experience appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is thrilled to announce that Tekuno, one of the most innovative NEAR Balkans Hub projects, recently teamed up with Mastercard to serve up an incredibly unique real-life NFT experience. Attendees at the recent Money Motion (MoMo) Fintech conference in Zagreb, Croatia got a taste of how Web3 and NEAR can help brands reach new audiences with blockchain gamification.

    - - - -

    Mastercard, a leader in global payment systems, enabled the Tekuno team and NEAR Balkans to realize this ground-breaking experience with NFTs. The NFT activation provided MoMo visitors with a gamified experience through which they could gather evidence of their participation at the conference and various NFTs — a concept called Proof of Doings (PODs).

    - - - -

    These PODs had time and space restrictions, so participants could only pick them up during a particular period of the conference. PODs demonstrated a novel use case of how NFTs can be used to gamify real life, while strengthening Mastercard’s brand as forward-thinking in the loyalty and payments space.

    - - - -

    Behind the Tekuno and Mastercard partnership

    - - - -

    The city of Zagreb, Croatia, recently hosted the first edition of an exclusive FinTech conference called Money Motion. With Mastercard as one of the conference organizers and NEAR Balkans as a sponsor, this presented the perfect opportunity for collaboration.

    - - - -

    Before the conference, NEAR Balkans Hub’s Product Lab was ready to launch Tekuno,  a blockchain as a service (BaaS) platform for NFT experiences. A user-friendly product for seamless onboarding of mass audiences to Web3, the Tekuno platform makes blockchain knowledge a preference rather than a requirement. 

    - - - -

    Tekuno can be used for a variety of campaigns and experiences, including loyalty programs, marketing activations and events, CRM, HR initiatives, and much more. The technology does this through the creation of secure and transparent Proof-of-Doings (PODs) in the form of digital collectibles (NFTs) to attest and reward a wide range of activities. For the “Experience the Motion” campaign, Tekuno was used as proof-of-attendance.

    - - - -

    How MoMo attendees claimed NFT PODs

    - - - -

    In “Experience the Motion”, MoMo attendees proved their attendance by collecting a total of 5 different NFT PODs. These PODs were exclusive — attendees could only claim them at specific times during the conference.Attendees claimed their PODs by simply scanning QR codes at several predefined locations — the entrance, speakers presentations and panels, and the NEAR Balkans booth.

    - - - -

    The PODs functioned as a prize raffle gateway, which attendees entered by following certain rules. MoMo attendees competed for a number of exciting prizes, including: exclusive Mastercard merchandise; a special 1–2–1 session with Christian Rau, Senior Vice President Crypto and Fintech Enablement Mastercard Europe; an invitation to a Web3 NEAR educational workshop, VIP access tickets for conference party; and the grand prize — a Mastercard Priceless.com experience at Chiavalon, Istria, an  olive oil making and tasting experience for two. 

    - - - -

    NEAR Balkans and Mastercard campaign results 

    - - - -

    The “Experience the Motion” ultimately reached more than 14,000 people on social media, and was available for over 1,000 attendees over two days of the conference. Tekuno’s user-friendly technology made it possible to distribute more than 500 PODs to more than 200 unique collectors.

    - - - -

    Feedback from the attendees regarding the NFT experience and rewards was overwhelmingly positive. Participants found the Tekuno platform to be intuitive and easy to navigate. Participants  were able to easily open accounts, allowing them to follow the challenges and collect the PODs for a chance at winning exciting prizes. 

    - - - -

    “This is the most seamless experience I have ever had with a Web3 app, and I’ve experimented with many, trust me,” said Vlaho Hrdalo, Lawyer and Chairman of UBIK — Croatian Association for Blockchain and Cryptocurrency. 

    - - - -

    Nikola Škorić, the CEO of Electrocoin, Gold sponsor of the conference, added: “‘Experience the Motion ’ —  the NFT activation made possible by Mastercard and organized by NEAR Balkans and Tekuno for the Money Motion conference, engaged our audience in an authentic and fun way that brought extra value to the conference while rewarding the luckiest ones.”

    - - - -

    “We’re happy that Money Motion is a place of technology adoption and that brands see us as a great partner for such activities,” Škorić added.

    - - - -

    Driving engagement with NFTs

    - - - -

    As Mastercard and NEAR Balkans noted, many attendees, who ranged from fintech professionals to regional bank representatives, retail marketing leads, and others were particularly interested in Tekuno’s various use-cases. Indeed, it demonstrated the real-world applications and versatility of NFTs, helping traditional industries see the value in Web3 integrations. 

    - - - -

    Gea Kariž, Marketing Director at Mastercard Croatia, shared her insights on the successful collaboration between Mastercard, Money Motion, Tekuno, and NEAR Balkans. 

    - - - -

    ‘’Our collaboration with the Tekuno and NEAR Balkans teams provided Mastercard HR with a seamless and exceptional entrance into the Web3 domain,” said Kariž. “Through this activation, we not only gained significant brand visibility but also reinforced our commitment to embracing blockchain and other cutting-edge technologies.”

    - - - -

    “The added value of this campaign was the deep engagement we experienced with our end-users, fostering a strong sense of community around our brand and further solidifying our position as a forward-thinking and innovative company,” Kariž added.

    - - - -

    The NEAR Balkans General Manager, Ida Pandur, was similarly inspired by the partnership — especially as it aligns with NEAR Foundation’s Web2.5 strategy of onboarding the masses with real use cases in Web3.

    - - - -

    ‘’We at NEAR Balkans are committed to help and enable mass adoption of Web3 and decentralization into everyday lives,” said Pandur. “The way we do it is by educating, enabling and  partnering with innovative organizations to bring Web3 to users in simple, value added, use cases. We are happy to have been working with Mastercard and use Tekuno, which is one of the best Web2→Web3 tools UX wise to bring it to life at MoneyMotion and from the interest we see across the region, it’s just getting started.’’

    - - - -

    Sally Meouche-Grawi, CEO of Tekuno, noted that the campaign illustrated how Tekuno demonstrated that Web3 products can be user-friendly. 

    - - - -

    “We’re trying to make it as user friendly as possible, but it’s still realistically a Web3 product, but it’s a Web3 product that is easy to use,” said Meouche-Grawi. “And this is what a lot of these products are critically lacking, which is the easy onboarding experience.”

    - - - -

    “So, we are trying to set the standard… to show how we can create a Web3 product that any average user can actually use,” Meouche-Grawi added. “Because from my experience when it comes to Web3 products they are usually developed by developers for developers, this is the trend and we are trying to break it.’’

    -

    The post NEAR Balkans’ Tekuno and Mastercard Team Up for Gamified NFT Experience appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/mastercard/index.html b/public/blog/tag/mastercard/index.html deleted file mode 100644 index 56f480fa1..000000000 --- a/public/blog/tag/mastercard/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Mastercard Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/media/feed/index.xml b/public/blog/tag/media/feed/index.xml deleted file mode 100644 index 5096db60c..000000000 --- a/public/blog/tag/media/feed/index.xml +++ /dev/null @@ -1,114 +0,0 @@ - - - - Media Archives – NEAR Protocol - - /blog/tag/media/ - - Tue, 02 May 2023 12:36:20 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Media Archives – NEAR Protocol - /blog/tag/media/ - 32 - 32 - - - Shemaroo and NEAR Foundation Accelerate Web3 Adoption in Indian Media and Entertainment  - /blog/shemaroo-and-near-foundation-accelerate-web3-adoption-in-indian-media-and-entertainment/ - - - Tue, 02 May 2023 12:34:53 +0000 - - - - - /?p=20464 - - Shemaroo Entertainment, a prominent Indian content powerhouse with a diverse library of over 3,700 movie titles, a subscriber userbase of …

    -

    The post Shemaroo and NEAR Foundation Accelerate Web3 Adoption in Indian Media and Entertainment  appeared first on NEAR Protocol.

    -]]>
    - Shemaroo Entertainment, a prominent Indian content powerhouse with a diverse library of over 3,700 movie titles, a subscriber userbase of over 200 million people, and a vast global distribution network, is forging a strategic partnership with the NEAR Foundation to foster Web3 innovation in the media and entertainment industry — across  India and beyond. The partnership also paints an even brighter picture for NEAR and the entertainment sector.

    - - - -

    With six decades of experience in Indian cinema, Shemaroo is synonymous with the Indian entertainment picture, consistently staying at the forefront of technological advancements, and adapting to the ever-changing landscape of content consumption. Sheramoo’s latest foray into Web3 and the metaverse with NEAR Foundation is the latest example.

    - - - -

    Through this collaboration, Shemaroo aims to explore the potential applications of blockchain technology by establishing a dedicated Web3 innovation cell. The cell will focus on unlocking new opportunities for decentralization, transparency, and immutability in the media and entertainment sector. 

    - - - -

    With over 600 employees in Delhi, Mumbai, and New Jersey, Sheramoo’s already global reach in the entertainment industry is rapidly growing. Sheramoo’s app is also available and used in over 150 countries and counting. This extensive and expanding global presence positions Shemaroo perfectly to explore and capitalize on the potential of Web3 in entertainment — powered by the NEAR Blockchain Operating System.

    - - - -

    Shemaroo expands Web3 into Indian media

    - - - -

    Together, Shemaroo and NEAR Foundation will develop pioneering products and services that leverage Web3 and Sheramoo’s vast content library. The Web 3 innovation cell will become a breeding ground for groundbreaking ideas in how blockchain technology can reshape multiple facets of the entertainment industry.

    - - - -

    Shemaroo will take advantage of the BOS to develop scalable blockchain and smart contract services in areas like content distribution, rights management, and audience engagement. Hiren Gada, CEO of Shemaroo Entertainment, expressed enthusiasm for the partnership and the potential it holds for the future of media.

    - - - -

    “As a forward-thinking company, we are always looking for new ways to innovate and enhance our offerings to better serve our users,” says Gada “We believe that blockchain technology has the potential to unlock new possibilities and create new revenue streams for the industry.” 

    - - - -

    Gada also highlighted the benefits of NEAR becoming the Blockchain Operating System (BOS), which will ease and accelerate Sheramoo’s adoption of Web3, and reduce the time to market for projects. With NEAR, Shemaroo will provide Indian entertainment enthusiasts with enhanced security, faster transaction speeds, and lower costs for all forms of content engagement. 

    - - - -

    Building Shemaroo’s next-gen content on NEAR

    - - - -

    The partnership is expected to produce numerous benefits for both ecosystems. Shemaroo stands to increase brand awareness, reach new audiences, and develop fresh revenue streams while integrating cutting-edge technologies into its content. By building on NEAR, Shemaroo will be able to integrate things like NFTs and immersive metaverse experiences into both its vast existing library and future content.

    - - - -

    Marieke Flament, CEO of the NEAR Foundation, shared her excitement about the partnership, saying, “We are thrilled to partner with Shemaroo Entertainment, a company with a rich history in Indian cinema and a vast market reach.” 

    - - - -

    Flament added, “With a collection of over 3,700 movie titles and content distribution partners like Amazon Prime Video, Netflix, and YouTube, Shemaroo will expose NEAR to a completely new audience.”

    - - - -

    Shemaroo garners over 100 million views per day, with a massive cumulative subscriber base of over 200 million. This impressive audience reach will make NEAR more visible in an important market, contributing to its broader vision of bringing one billion people to Web3 through strategic partnerships.

    - - - -

    The partnership also helps increase the adoption of BOS, demonstrates the potential of blockchain technology in media and entertainment, and will attract new developers and partners in both the region and the entertainment industry. The partnership comes just shortly after the Foundation appointed Arpit Sharma to spearhead regional growth in India, ASEAN, and the Middle East.

    - - - -

    The partnership between Shemaroo Entertainment and NEAR Foundation is an important step towards unlocking the full potential of blockchain technology in the world of media and entertainment. Using the Indian region as a breeding ground for innovation via Sheramoo’s Web3 cell, they’ll be setting a new standard for new forms of content for existing libraries.

    -

    The post Shemaroo and NEAR Foundation Accelerate Web3 Adoption in Indian Media and Entertainment  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/media/index.html b/public/blog/tag/media/index.html deleted file mode 100644 index daeb13e96..000000000 --- a/public/blog/tag/media/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Media Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/metabuild/feed/index.xml b/public/blog/tag/metabuild/feed/index.xml deleted file mode 100644 index 0d91b2e69..000000000 --- a/public/blog/tag/metabuild/feed/index.xml +++ /dev/null @@ -1,180 +0,0 @@ - - - - MetaBUILD Archives – NEAR Protocol - - /blog/tag/metabuild/ - - Wed, 22 Feb 2023 14:44:58 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - MetaBUILD Archives – NEAR Protocol - /blog/tag/metabuild/ - 32 - 32 - - - NEAR and Startup Wise Guys Partner on MetaBUILD’s Pre-Accelerator Program - /blog/near-and-startup-wise-guys-partner-on-metabuilds-pre-accelerator-program/ - - - Thu, 16 Feb 2023 14:01:00 +0000 - - - - - /?p=19756 - - NEAR Foundation is excited to announce a new partnership with Startup Wise Guys — Europe’s biggest startup accelerator, which has …

    -

    The post NEAR and Startup Wise Guys Partner on MetaBUILD’s Pre-Accelerator Program appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Startup Wise Guys — Europe’s biggest startup accelerator, which has empowered over 350 projects across the world. Together with SWG, the Foundation will bring  20 winning projects from the MetaBUILD III hackathon into an 8-week pre-acceleration program to grow and prepare these new teams to bring their first product iteration to market.

    - - - -

    The partnership’s goal is to bring great new products to life in Web3.  After the hack, NEAR Foundation and Startup Wise Guys will prepare all projects to join accelerators, make their first raise, and launch to market. 

    - - - -

    Startup Wise Guys’ Pre-Acceleration Program for MetaBUILD

    - - - -
    - - - -

    Let’s go over the program. For this occasion, we’ll be running an 8-week program with Startup Wise Guys, covering everything from finding your project’s mission, to setting up team structure, finance, and communication programs for your brand.

    - - - -


    Each week covers a specific topic, and will feature both recorded and live events as well as exercises for the projects to take on! 

    - - - -

    Each week, all teams will progress to fleshing out their new project’s company setup, brand, and prepare to launch to market. Throughout the program, Startup Wise Guys and NEAR will aid projects with 1-1 mentorships (invited from the ecosystem and from Startup Wise Guys’ network), pitch training and drills, Q&As, and a folder of ready-to-use learning materials.

    - - - -
      -
    • Week 1: Onboarding Session
    • -
    - - - -

    Onboarding of all projects into the program, and setting expectations for all upcoming weeks and events.

    - - - -
      -
    • Week 2: Setting Goals & KPIs
    • -
    - - - -

    Structuring each project’s journey. How to find a mission and vision for your project long term.

    - - - -
      -
    • Week 3: Problem Definition & Pitching
    • -
    - - - -

    Crafting your project’s pitch and problem-to-be-solved to define your selling points.

    - - - -
      -
    • Week 4: Product development & effective planning
    • -
    - - - -

    Planning the product’s development, and identifying key differentiators to give it unique aspects in the market.

    - - - -
      -
    • Week 5: Focus and Execution
    • -
    - - - -

    Crisis-handling in companies, and pace. How to maintain your team’s rhythm.

    - - - -
      -
    • Week 6: Sales & Team Management Basics
    • -
    - - - -

    Sales, marketing, and branding for early startups and projects. How to define your vector for gaining traction in the world.

    - - - -
      -
    • Week 7: Company Communications, Finances, Fundraising
    • -
    - - - -

    Company communications and finance preparations. How to define your key metrics of success, and prepare a structure to present to investors, as well as how to seek and select the right ones.

    - - - -
      -
    • Week 8: Legal Basics
    • -
    - - - -

    How to register your business, understanding your basic legal structure and needs to get started as a company. Also, going over any regulatory requirements like GDPR, and Intellectual Property, as well as minimizing legal needs.

    - - - -
      -
    • Week 9: Graduation & Pitches!
    • -
    - - - -

    Final day! Graduated projects who completed the program will present their project’s revamped pitches and go out to the world.

    - - - -

    Come Hack, and Build On!

    - - - -

    NEAR Foundation can’t wait to see the new exciting projects that will be born from MetaBUILD, and is excited about this new partnership with Startup Wise Guys in 2023. 

    - - - -

    The Foundation will share all progress along the way as we finalize the submission phase of MetaBUILD and move onto judging. So stay tuned and follow all updates on Twitter!

    -

    The post NEAR and Startup Wise Guys Partner on MetaBUILD’s Pre-Accelerator Program appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/metabuild/index.html b/public/blog/tag/metabuild/index.html deleted file mode 100644 index 5a39cf3eb..000000000 --- a/public/blog/tag/metabuild/index.html +++ /dev/null @@ -1,2 +0,0 @@ -MetaBUILD Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/mintbase/feed/index.xml b/public/blog/tag/mintbase/feed/index.xml deleted file mode 100644 index 7a45691ff..000000000 --- a/public/blog/tag/mintbase/feed/index.xml +++ /dev/null @@ -1,101 +0,0 @@ - - - - Mintbase Archives – NEAR Protocol - - /blog/tag/mintbase/ - - Fri, 01 Sep 2023 15:20:12 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Mintbase Archives – NEAR Protocol - /blog/tag/mintbase/ - 32 - 32 - - - Mintbase Brings New Open Web Wallet Tech to Families Celebrating Raksha Bandhan - /blog/mintbase-brings-new-open-web-wallet-tech-to-families-celebrating-raksha-bandhan/ - - - Tue, 29 Aug 2023 17:31:03 +0000 - - - - /?p=20820 - - Mintbase, a leading NFT platform that allows users to mint, buy, and sell digital assets has partnered with the NEAR …

    -

    The post Mintbase Brings New Open Web Wallet Tech to Families Celebrating Raksha Bandhan appeared first on NEAR Protocol.

    -]]>
    - Mintbase, a leading NFT platform that allows users to mint, buy, and sell digital assets has partnered with the NEAR Foundation to help friends and family celebrate the traditional Indian festival, Raksha Bandhan, with Open Web technology.

    - - - -

    By bringing together several pieces of breakthrough wallet technology for the first time, photos can be instantly converted into NFTs and stored permanently on the NEAR blockchain — all without users needing to create seed phrases or pre-loaded wallets. 

    - - - -

    A new type of wallet 

    - - - -

    Mintbase’s new wallet streamlines the blockchain user experience like never before thanks to innovations on the NEAR blockchain. 

    - - - -

    FastAuth, created by NEAR, is an open-source protocol that provides an onboarding and account recovery process similar to what you find in Web2. It uses meta transactions, allowing a third party to pay the gas fee on behalf of the user, solving one of the most significant problems new users face in the blockchain world.

    - - - -
    - - - -

    The other killer feature is NEAR’s built-in account abstraction system. Users no longer need to deal with seed phrases or require NEAR to mint. Instead, a full access key is stored in the user’s passkey system, so biometric signing will work in a noncustodial way without any local storage interactions.

    - - - -

    This means no more seed phrases, and no more having to pre-load the wallet with currency before use. Instead, users of Mintbase’s wallet will be able to use and interact with blockchain in the same way they would with Web2 apps. 

    - - - -

    Celebrating the essence of Rakhi  

    - - - -

    To celebrate Raksha Bandhan, the popular Indiana festival where sisters tie a talisman or amulet called a Rakhi around the wrists of their brothers, users will be able to capture the moment with a photo and upload it instantly to the blockchain via the Mintbase wallet. 

    - - - -

    The metadata will be permanently stored on the Arweave blockchain and a NFT of the moment will be minted on the NEAR blockchain and delivered back to the user. It’s a sizable step forward in showcasing how far Web3 technology has come in making the user experience easier and more familiar to non-blockchain users. 

    - - - -

    As part of this celebration, there’s more than just memories to win. Participants can win prizes for NFTs they created and share them on X (formerly Twitter) with the hashtag #RakhisNEAR.  

    - - - -

    For more details, please visit https://rakhi.mintbase.xyz/. Participate, share, and make this Raksha Bandhan more memorable with Mintbase and NEAR Foundation.

    -

    The post Mintbase Brings New Open Web Wallet Tech to Families Celebrating Raksha Bandhan appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/mintbase/index.html b/public/blog/tag/mintbase/index.html deleted file mode 100644 index 287c491ba..000000000 --- a/public/blog/tag/mintbase/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Mintbase Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/mirea-asset/feed/index.xml b/public/blog/tag/mirea-asset/feed/index.xml deleted file mode 100644 index 8b027dbe8..000000000 --- a/public/blog/tag/mirea-asset/feed/index.xml +++ /dev/null @@ -1,101 +0,0 @@ - - - - Mirea Asset Archives – NEAR Protocol - - /blog/tag/mirea-asset/ - - Fri, 09 Jun 2023 09:04:24 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Mirea Asset Archives – NEAR Protocol - /blog/tag/mirea-asset/ - 32 - 32 - - - NEAR Foundation Joins Forces with Mirae Asset for the Next Leap in Web3 Finance - /blog/near-foundation-joins-forces-with-mirae-asset-for-the-next-leap-in-web3-finance/ - - - Fri, 09 Jun 2023 00:00:00 +0000 - - - - /?p=20574 - - In a pivotal partnership for the blockchain industry, NEAR Foundation is joining forces with Mirae Asset — a subsidiary of …

    -

    The post NEAR Foundation Joins Forces with Mirae Asset for the Next Leap in Web3 Finance appeared first on NEAR Protocol.

    -]]>
    - In a pivotal partnership for the blockchain industry, NEAR Foundation is joining forces with Mirae Asset — a subsidiary of Asia’s largest financial group Mirae Asset Global — to help bridge the gap between trad-fi and Web3. This collaborative endeavor will thrust Web3 into the spotlight in the traditional finance market in South Korea and the larger Asian region, driving innovation and growth in the sector.

    - - - -

    With the guidance of the NEAR Korea Hub, this partnership places NEAR Foundation and Mirae Asset at the helm of the Web3 business domain. Together, they will conduct in-depth research and foster collaboration on blockchain technology, laying a robust foundation for the use of Web3 by the traditional financial industry in the region.

    - - - -

    Simultaneously, global joint events are in the pipeline to bolster brand visibility, coupled with a planned mutual support system. This system will fortify the Web2/Web3 business network, carving out a strong pathway for the integration of these technologies.

    - - - -

    NEAR and Mirae Asset: propelling finance into the Web3 age

    - - - -

    NEAR is a global Layer 1 protocol with a strong emphasis on usability (NEAR Protocol). With its new Blockchain Operating System (BOS) feature FastAuth, NEAR offers a user-friendly gateway into the world of Web3, mirroring the simplicity of email login. By presenting accessible solutions through BOS, it eases the transition for traditional businesses and developers. This ease of entry into Web3 fosters an environment conducive to the growth of innovative financial services.

    - - - -

    “Our agreement with Mirae Asset will provide a platform for us to showcase the capabilities of NEAR Protocol and its powerful Blockchain Operating System to help transform the finance industry,” Marieke Flament, CEO of the NEAR Foundation. “We look forward to supporting this important partnership and helping to play a key role in transforming the future of Web3 finance.”

    - - - -

    A major financial player partners with NEAR Foundation

    - - - -

    Entering into an alliance with NEAR Foundation, Mirae Asset demonstrates its mission to transform into a top-tier global investment bank. Providing standout services in corporate finance, trading, wealth management, and private equity investments, it’s redefining the finance industry.

    - - - -

    “We will continue to innovate and develop the foundational blockchain technology that underpins the Web3 industry,” said Ahn In-sung, Head of the Digital Division at Mirae Asset. “We will actively collaborate with exceptional blockchain communities like NEAR Protocol to incorporate the technology into our global business.”

    - - - -

    Mirae Asset’s pursuit of innovation is embodied in the creation of the “Next Finance Initiative” (NFI). Teamed with South Korea’s key players like SK Telecom and Hana Financial Group, this partnership signals an intriguing expansion for the NEAR ecosystem. Another feature of this partnership involves NEAR Foundation joining the practical discussion body via the working group.

    - - - -

    The NEAR Korea Hub, responsible for business expansion across Korea and other Asian regions, has been instrumental in forming this partnership. The Hub views this alliance as a significant leap showcasing NEAR Protocol’s potential in the financial industry.

    - - - -

    “NEAR Foundation is expanding the horizons of Web3 industry by onboarding leaders in the gaming industry (Kakao Games Bora, WeMade, and Netmarble) and Mirae Asset, a pioneer in the financial industry,” said Scott Lee, General Manager, NEAR Korea Hub, commented. “NEAR Foundation will continue to expand its reach through collaborations with industry leaders to actively drive the transformation of the existing financial paradigm.”

    - - - -

    In essence, this alliance between NEAR Foundation and Mirae Asset marks a turning point in the realm of Web3 finance, firmly rooted in the innovative and scalable infrastructure of the NEAR Protocol, NEAR Foundation, and ecosystem.

    -

    The post NEAR Foundation Joins Forces with Mirae Asset for the Next Leap in Web3 Finance appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/mirea-asset/index.html b/public/blog/tag/mirea-asset/index.html deleted file mode 100644 index 1a1c5bade..000000000 --- a/public/blog/tag/mirea-asset/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Mirea Asset Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/mission-vision/feed/index.xml b/public/blog/tag/mission-vision/feed/index.xml deleted file mode 100644 index 98c5a5565..000000000 --- a/public/blog/tag/mission-vision/feed/index.xml +++ /dev/null @@ -1,528 +0,0 @@ - - - - Mission & vision Archives – NEAR Protocol - - /blog/tag/mission-vision/ - - Wed, 24 Jan 2024 19:55:02 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Mission & vision Archives – NEAR Protocol - /blog/tag/mission-vision/ - 32 - 32 - - - Why Chain Abstraction Is the Next Frontier for Web3 - /blog/why-chain-abstraction-is-the-next-frontier-for-web3/ - - - Wed, 24 Jan 2024 19:55:01 +0000 - - - - - - /?p=21182 - - Most of today’s dapps are not actually dapps, i.e. decentralized applications. If you need to leave the app in order …

    -

    The post Why Chain Abstraction Is the Next Frontier for Web3 appeared first on NEAR Protocol.

    -]]>
    - Most of today’s dapps are not actually dapps, i.e. decentralized applications. If you need to leave the app in order to start using it, it’s not really an app––it’s just a frontend. If users have to manually onboard themselves through exchanges and manage multiple accounts and gas fees and bridges, did you even build an app? I think not––which may explain why only a few million people in the world are using dapps. 

    - - - -

    If we want to see mainstream adoption of Web3 because we believe a more open, decentralized internet that supports self-sovereignty for all people is better for the world, then we will need to do better.

    - - - -

    The prevailing narrative in Web3 today is modularity, or separating out the different functional layers of a blockchain, i.e. settlement, data availability, and execution, for the sake of scalability. Layer-twos, optimistic and ZK rollups, data availability layers, sidechains, and state channels are all examples of modularity solutions. 

    - - - -

    This proliferation of blockchains & rollups has led to a degraded experience for users and developers. Modularity and a world of many chains leads to more fragmentation of liquidity, apps, and users––a significant degree of complexity in the user experience that no mainstream user could ever be expected to navigate. This also applies to developers, who feel pressure to commit to a specific tech stack while limiting the audience for their application. Now when you build a dapp, you’re enshrining yourself into a small addressable market by choosing a single chain.

    - - - -

    I want to propose a better vision for the entire Ethereum ecosystem and all of Web3: let’s work together on advancing mainstream adoption via chain abstraction. The idea is that blockchains must be abstracted away from the user so they are not barriers to entry or participation. NEAR has been focusing on this vision since 2018 and today has achieved the most users of any network in Web3: 12.4 million monthly active accounts and 34 million accounts overall. 

    - - - -

    Here’s how we can defragment Web3 and onboard billions of users via dapps. 

    - - - -

    What does this look like for the user? 

    - - - -

    Let’s imagine how using a dapp should actually work: transacting across networks and navigating between experiences with ease, all within a single interface. As one example, Alice picks up her phone and opens KAIKAI from her lockscreen. She orders a smoothie from a local place and sees in the app that there’s a discount offer from her favorite clothing store, Maison, and orders a pair of shoes for the spring. Alice sees she has earned enough KAICHING rewards to get a badge from Maison, not knowing it’s an NFT on Polygon, and redeems it in her account. 

    - - - -

    When she browses Maison on the KAIKAI app later that day, she notices that her new badge reveals an offer to buy tickets for an exclusive event at their store with a DJ she likes. She buys the ticket with KAICHING and receives 2 tickets, still not knowing it’s an NFT on Arbitrum. Since she gets a +1, Alice invites her friend Bob to come with her and pings him for his address. 

    - - - -

    Bob sends his NEAR address to Alice and opens his app to check out the ticket. He sends Alice some ETH to say thanks for the invite and looks at the different cryptos he has in his account. Since he’s on the metro and has some time, he decides to buy some BTC and borrow against it with USDC so he can mint a Fighting Dragon NFT on Magic Eden. His friend Charles texted him earlier to get one so they could play each other in Year of the Dragon, a new game on NEAR where their dragons can battle each other for coins they can stake.

    - - - -

    All of these interactions and transactions can take place in a single interface and in a completely private way. There are no wallets, no switching networks, and no transaction fees to deal with; those are embedded directly in the swap or the buy and handled on behalf of the user. Alice didn’t need to worry about which network the ticket is on and Bob can send her funds for the ticket in whichever crypto he wants, moving seamlessly into buying a different one the next second. All inside of an app. This is the level of seamlessness we should be striving for as an ecosystem.

    - - - -

    How do we achieve Chain Abstraction?

    - - - -

    Everyone building an app in Web3 will benefit from being able to access such a broad market of potential users as in this example––i.e. anyone who uses apps. Whereas today, developers choose a network based on access to liquidity or the users of a specific rollup or chain, in a chain abstraction future they can just build with the best tech. The users will show up for the best experiences. 

    - - - -

    Imagine if a Gmail user couldn’t just send a message to an Outlook address––it doesn’t make sense. The same is true for Web3 addresses. The core assumption of chain abstraction is: end users don’t care about the underlying blockchain. They just want apps to work. In reality, blockchains are simply infrastructure to receive value out of Web3: security of assets from seizure, economic opportunity, removing middlemen for transactions, global permissionless identity, data provenance, entertaining experiences, and more.

    - - - -

    The core goal of chain abstraction is to defragment the increasingly fractured modular landscape of Web3. While this will be most visible at the user experience layer, this defragmentation of liquidity and accounts is possible thanks to innovation at the security layer. 

    - - - -

    Zero knowledge (ZK) introduces a principally new approach to ledger security. Whereas before one needed to trust a decentralized set of validators, now even a single computer can prove that rules were followed with a simple proof. This means that where before, developers would be forced to either build on a shared chain or spend immense resources to launch a new one, now they can just spin one up on their single server.

    - - - -

    This new paradigm introduces the idea of cross settlement: as more chains become fully ZK provable, if some proof is published on other chains, there is no way to revert this chain without also needing to revert other chains. Transactions from one chain can also settle on multiple others via ZK proofs. This provides mesh security as all proofs continuously get aggregated, allowing the safe movement of assets between such chains.

    - - - -

    In order to achieve unified security, two things are needed at the bottom of the stack: Data availability, which provides a way for everyone to sync even if the operator is offline, and a decentralized sequencer for applications that don’t have a central operator. 

    - - - -

    The next layer is identity with that security unified. Users can have an address on all possible chains and move assets between them freely. From a user perspective, this should be a single account where they interact with apps on different chains, and assets either get bridged or swapped automatically. 

    - - - -

    I call this “account aggregation” and will share more details about it in another post soon. NEAR will launch the next version of FastAuth in March 2024, which has mapping for NEAR addresses to EVM, Bitcoin, and other addresses. NEAR accounts can request to sign a transaction for another chain. This allows them to build multichain apps directly as smart contracts on NEAR. 

    - - - -

    The final layer is unifying the experience layer, or the application layer (e.g. DapDap)––providing a way to interact with apps on various chains without users switching or needing to leave a single interface. A decentralized frontend can provide easy components to build in a chain-abstracted way. NEAR can achieve this through NearJS, combining data indexing and decentralized frontends––V2 also coming in March 2024. 

    - - - -

    How is NEAR enabling Chain Abstraction? 

    - - - -

    The NEAR ecosystem has been building towards the chain abstraction vision since its beginnings in 2018, focusing on usability, a flexible account model, and a highly scalable blockchain that could support mainstream apps with billions of users. Today, the stack has expanded to support full chain abstraction across chains and all kinds of apps. 

    - - - -
      -
    • Scalable, integrated blockchain that can grow to 1B+ daily active accounts.
    • - - - -
    • Security aggregation stack consisting of NEAR DA, zkWASM (collaboration with Polygon Labs), and EigenLayer-powered Fast Finality.
    • - - - -
    • Account aggregation on top of this to enable transacting on all chains using a single account
    • - - - -
    • Data layer that supports everything from monolithic, integrated, modular, private and permissioned chains to query data in a predictable protocol.
    • - - - -
    • Intent relayers that can execute complex intents across chains using this infra.
    • - - - -
    • Decentralized frontends that provide discoverability and composability for multiple apps across chains into one experience.
    • - - - -
    • Super (app) wallets that are user friendly and offer a way to navigate all of Web3 without having to switch networks or deal with gas tokens and bridges.
    • -
    - - - -

    Importantly, each of these layers supports builders from across Web3, including Ethereum, rollups & L2s, and beyond––the multichain future is becoming the chain abstraction future. 

    - - - -

    Call to Action

    - - - -

    2024 is the year of hiding the complexity of multichain infrastructure to deliver the Web3 experiences we’re striving for. Improving usability and discoverability should be a priority for all Web3 builders, as well as solving for liquidity fragmentation and security tradeoffs. 

    - - - -

    Let’s make chain abstraction a movement. The NEAR ecosystem invites builders from across Web3 to take advantage of the solutions we’re offering and to collaborate with us to build more chain abstraction solutions together. Stay tuned for more news on collaborations as well as details on an exciting event that NEAR Foundation will co-host at ETHDenver 2024.

    Special thanks to Zaki Manian for conversations that led to this post as well as for his review.

    -

    The post Why Chain Abstraction Is the Next Frontier for Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Self-Sovereignty Is NEAR: A Vision for Our Ecosystem - /blog/self-sovereignty-is-near-a-vision-for-our-ecosystem/ - - - Fri, 19 Jan 2024 20:19:02 +0000 - - - - - - - /?p=21170 - - As a kid growing up in Ukraine in the ’90s after the dissolution of the USSR, I remember we watched …

    -

    The post Self-Sovereignty Is NEAR: A Vision for Our Ecosystem appeared first on NEAR Protocol.

    -]]>
    -

    - - - -

    As a kid growing up in Ukraine in the ’90s after the dissolution of the USSR, I remember we watched the price of bread go from 1,000 karbovanets, to 10,000, to 100,000 in less than five years (until that currency was thrown out altogether and replaced with hryvnia). When I first started working as a software developer as a teenager, I kept my earnings in cash in my room because I already understood that we couldn’t trust corrupt banks with our money.

    - - - -

    Between 2014 and 2016 alone, 77 banks failed in Ukraine. My grandparents still have their savings account bank books tracking the money they put away during the USSR years––but those savings don’t exist anymore. So even something that is yours, that you rightfully own, can go away if the system you’re a part of fails. The same thing is happening to millions of people living under hyperinflation, dictatorships, and war zones across the world, of course. And while these may seem like abstract or distant problems that won’t arrive at your doorstep, let me tell you from my own experience: nothing is guaranteed. 

    - - - -

    Every system is as fragile as the rules holding it together. And the rules can change. They’re changing around us right now, and I believe we are approaching a point of no return. 

    - - - -

    The Need for Digital Self-Sovereignty

    - - - -

    We need to create new economic opportunities for people everywhere via self-sovereignty, which should be a universal right and which technology can now provide, not just nation-states as in most other points in history. For citizens of nations who’ve enjoyed economic security and a high degree of sovereignty, this may not seem like an immediate-term issue. But it is. 

    - - - -

    The economics of tech companies leads inevitably to corrupting their original product or vision for the sake of profit in order to maintain growth, and more importantly, they naturally involve creating barriers for someone else to disrupt. In order to maintain their power, governments will use pressure and ingenuity in order to control their populations, too often to the point of violating human rights in the name of safety or security. 

    - - - -

    We all use our phones and computers a thousand times a day, prioritizing convenience over self-sovereignty because until now, we haven’t had a choice. We are now approaching a tipping point towards a dystopian future that we may not be able to come back from, brought on not just by governments but by the economics of tech companies. What happens when these incentives increasingly collide and push each other deeper into the lives of individuals for the sake of maintaining control and profit? 

    - - - -

    That’s right about where we are today. 

    - - - -

    Changing the Stakes with Generative AI

    - - - -

    Before founding NEAR, I was an AI researcher. I worked at Google where I contributed to TensorFlow, and eventually published a paper with a handful of colleagues called “Attention Is All You Need.” That paper introduced the Transformers architecture that powers ChatGPT, Bard, and most of the well-known LLMs behind last year’s explosive growth in AI. 

    - - - -

    I was first interested in AI because of the 2001 movie, “Artificial Intelligence.” Changing how we interact with computing and augmenting one’s intelligence to maximize human potential was, and still is, very appealing to me. And I still think it has the potential to make human lives, organizations, even governments better. But like any other technology, in the hands of the wrong people or with the wrong incentives, it also has the potential to make our lives terrible. 

    - - - -

    Generative AI is creating a universal and scalably personal method of enabling control and manipulation. Practically, it means your social feed and search results can ensure that you buy specific products or form a specific opinion. This will start in the form of commercial improvements that lead to more profit for tech giants: Netflix will generate a movie script that can shape your opinion, Facebook can reinforce that opinion by showing you more of it, and so on. This could even happen at a more fundamental level, such as flooding training data with specific information to influence all models trained on it. 

    - - - -

    If this granular information and vector of manipulation on such a personal level can be extracted or bought, it will be, and then it will become a tool for control. If it’s stored somewhere centralized and hackable, it will be stolen––we see this constantly with Web2 giants as it is. If governments can get access to this data, they will use it to maintain or grow their power. 

    - - - -

    The true danger that generative AI introduces is that this exploitation won’t just be on a systems level or a population level, it will become personal and incredibly specific. The depth of potential control and manipulation goes to the level of each and every human, no matter where they live, no matter where they keep their money. Such a powerful technology simply cannot remain in the hands of centralized companies, nor be too easy for governments to take over.

    - - - -

    So What Should We Do About It?

    - - - -

    So if people don’t yet feel the sense of urgency towards building new systems that uphold self-sovereignty, what will make it real for people? Changes in collective values are always driven by economic opportunity. The major revolutions of history started because of economic failures: American independence from Britain, the French Revolution, the collapse of the USSR, and so on. If people see ways to create better economic realities for themselves and their families, then they will turn values into actions. 

    - - - -

    Creating new opportunities for people via self-sovereignty is what NEAR is about. Complete self-sovereignty  has been the NEAR vision since day one: we want to build a world where all people can control their own assets, data, and power of governance. This sovereignty must apply not only at the level of individuals but also the organizations and communities they create, and eventually societies. 

    - - - -

    Self-sovereignty is a new primitive that hasn’t existed before today. One always needed to rely on some power of violence for ensuring rules are followed, most recently nation-states. One of the core principles of digital self-sovereignty is the ability to choose and switch between any service provider. There is no lock- in. There are no middlemen like banks or government agencies that can lose or steal assets, or change the rules on you out of nowhere. 

    - - - -

    Importantly, this must also apply to AI. People need to own their data so they know what it’s being used for and so they can actively consent to personalized experiences they think will improve their lives. Models must be governed transparently, in public, with clear rules and monitoring to proactively manage risk and reputation systems to build more clarity around information and traceability. Web3 can help to uphold, scale, and manage such systems to ensure AI is a force for good while also preventing it from being too exploitable. 

    - - - -

    Another major challenge, which is especially clear in governance but it also applies to corporations, is that when we select someone to represent our ideas for us as our delegate, they will always have their own interests and motivations in the mix as well. They don’t necessarily have nefarious intentions, it’s just a natural tendency. This is the “principal agent problem,” wherein the person elected behaves differently than the people who elected them or pay them would prefer based on their best interests. This is where AI governance systems can help by introducing neutral agents, where unbiased AI agents governed directly by a community can act on their behalf in a more reliable way. With transparent governance and monitoring, AI can be a force for good in individual lives as well as for the collective. 

    - - - -

    A Vision for the NEAR Future

    - - - -

    Despite my concerns about where the traditional tech paradigm is potentially heading, I remain a techno-optimist. I wouldn’t be doing this work if I didn’t think it was for the good of everyone, and I’ve read enough sci-fi to know that the outcomes of science and technology are much more about what people do with them than the tech itself. If we want something, we should build it. 

    - - - -

    I would like NEAR to become a fully sovereign operating system that is equipped with a personal AI assistant that optimizes for users’ needs without revealing private information about the user’s data or assets. It should also be able to interact and transact with other people’s AIs and the community’s AIs peer-to-peer. I call this “user-owned AI.”

    - - - -

    We also need shared community AIs, which are governed by the members of such a community. They represent the mix of needs and knowledge of all the members of such a community, from something like a small club or startup, to the city, to the nation-state, to the global level. There is always an opportunity to fork one community and create new ones. The community governs which data goes into training its community model, and can run inference (running live data through a model) privately in such a way that only the user sees input and output, while getting a proof that the selected model was used.

    - - - -

    To facilitate this vision, a lot of pieces need to come together:

    - - - -
      -
    • Economic and technological opportunity to enable users to onboard en masse.
    • - - - -
    • Open source software across the stack, from blockchain tech to AI models.
    • - - - -
    • Blockchains must get abstracted away from the user so they are not barriers to entry or participation. I call this the principle of Chain Abstraction.
    • - - - -
    • Applications must provide a novel value unlock: for example, Cosmose and Sweat. These apps reward users and serve as an economic gateway into a broader ecosystem of opportunities.
    • - - - -
    • On-edge, meaning hyperlocal, AI models that are usable by individuals (and free of manipulation).
    • - - - -
    • Community-owned AI models with governance and economic opportunity, replacing everything from business ops to government agencies. Self-governance by the people, for the people, at scale with the help of technology and decentralized peer-to-peer systems.
    • -
    - - - -

    Blockchains, peer-to-peer payments, Web3, zero-knowledge, very large language models and on-edge AI models: these are not separate technology verticals, but rather interconnected facets of a new digital paradigm of self-sovereignty. 

    - - - -

    We have the tools to remake how we provide for ourselves, how we work together and govern ourselves, and how we consume and generate information. Without gatekeepers, fair and open to everyone. And this is not a futuristic vision: it’s possible to start experimenting and building now, before our fragile and outdated systems and structures get weaker or fail, before too much centralization leads to the worst outcomes instead of the ones we all design and share together.

    ––Illia Polosukhin, Co-Founder of NEAR and CEO of NEAR Foundation

    -

    The post Self-Sovereignty Is NEAR: A Vision for Our Ecosystem appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Protocol Roadmap 2023-4: The Next 2 Years of NEAR - /blog/near-protocol-roadmap-2023-4-the-next-2-years-of-near%ef%bf%bc/ - - - Wed, 09 Nov 2022 13:33:43 +0000 - - - - /?p=19009 - - This post, written by Pagoda’s Head of Protocol Bowen Wang, originally appeared on the Web3 startup platform and main contributor …

    -

    The post NEAR Protocol Roadmap 2023-4: The Next 2 Years of NEAR appeared first on NEAR Protocol.

    -]]>
    - This post, written by Pagoda’s Head of Protocol Bowen Wang, originally appeared on the Web3 startup platform and main contributor to the core Protocol Pagoda’s blog.

    - - - -

    NEAR has evolved tremendously in the two years since the mainnet launch in October 2020. More than 20 protocol upgrades were done live, most recently the launch of Sharding Phase 1. As we look ahead to the next two phases of sharding and beyond, it’s time for an updated protocol roadmap.

    - - - -

    This post will outline the next two years of evolving the NEAR Protocol and the technical priorities we believe will benefit builders and users the most. The roadmap is meant to be a living document and anyone is welcome to make suggestions or proposals on how the protocol should evolve.

    - - - -

    The roadmap has two major components: Experience and Core. The Experience section encompasses user and/or developer experience and the protocol features needed to enable those experiences. As an example, an iPhone user can freely start to use applications built on top of NEAR without having to register an account if we have meta transactions and support for Secp256r1 keys.

    - - - -

    The Core section, on the other hand, covers major efforts to improve the scalability and decentralization of the protocol. Most notably, this features the launch of phase 2 of sharding, which scales the network to 100 shards with no validators tracking all shards. Phase 2 is planned for 2023. The roadmap goes through 2024 with the delivery of phase 3 of sharding, which dynamically adjusts the number of shards based on demand.

    - - - -

    Head over to the Pagoda blog to read the NEAR Protocol Roadmap 2023-4 with infographics.

    -

    The post NEAR Protocol Roadmap 2023-4: The Next 2 Years of NEAR appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - A Commitment to Communication - /blog/a-commitment-to-communication/ - - - Tue, 08 Nov 2022 20:04:32 +0000 - - - /?p=19007 - - The NEAR Foundation has always held transparency as one of its core beliefs. Being open to the community, investors, builders …

    -

    The post A Commitment to Communication appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation has always held transparency as one of its core beliefs. Being open to the community, investors, builders and creators is one of the core tenets of being a Web3 project. But it’s become apparent the Foundation needs to do more. 

    - - - -

    The Foundation hears the frustration from the community, and it wants to be more pro-active in when and how it communicates. 

    - - - -

    Below is a high level overview of its new communication strategy. More specific details will follow. 

    - - - -

    Relaunching town halls 

    - - - -

    Townhalls have been a tool the Foundation has used to communicate its strategy and highlight what the ecosystem has been up to in the past. These will be brought back in an updated format monthly that will focus more on showcasing what’s happening internally at the Foundation, and providing opportunities for projects to play a bigger role in decision making through a Q&A format. 

    - - - -

    A commitment to regular AMAs 

    - - - -

    The leadership team will be hosting fortnightly regular AMAs for the community to ask questions around strategy and future direction. The Foundation will also host specific AMAs around key parts of the Foundation to allow the community to ask questions to specific members of the team. 

    - - - -

    These AMAs will initially be focused around: 

    - - - -
    1. Marketing & Events
    2. Community
    3. BD/Funding
    4. Education
    5. Legal
    - - - -

    Always on signposting 

    - - - -

    The Foundation has created lots of resources to help the community navigate resources and where to go for help. However, the Foundation is aware these could be sign-posted better. As such, it will shift to an always-on approach to better highlight where people can find the information they need, or speak to someone from the Foundation. 

    - - - -

    This is just the beginning of this strategy and Foundation will publish more updates on this approach in the coming weeks.

    -

    The post A Commitment to Communication appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - A Time for Conviction - /blog/a-time-for-conviction/ - - - Tue, 01 Nov 2022 09:19:33 +0000 - - - /?p=18740 - - It’s a tough time to be in Web3 at the moment: war in Europe, crippling inflation, and an increasingly pessimistic …

    -

    The post A Time for Conviction appeared first on NEAR Protocol.

    -]]>
    - It’s a tough time to be in Web3 at the moment: war in Europe, crippling inflation, and an increasingly pessimistic outlook over the growth of the global economy. That’s led to a steep contraction of the Web3 ecosystem, both in users and available capital. 

    - - - -

    But for us at the NEAR Foundation, this moment of great duress is an opportunity to focus our efforts on what we believe is the long term future of this industry. It’s time for conviction.

    - - - -

    Web3 and NEAR are both in their early stages, and as such, there are still things that need long-term commitment both in time and resources in order to deliver the promise of decentralized technology. 

    - - - -

    At its highest level, we believe the focus of the ecosystem should be on bringing more users to Web3, continuing to build out key infrastructure, and demonstrating why NEAR is the best solution for developers, founders and creatives. 

    - - - -

    A Commitment to the future 

    - - - -

    NEAR is the best layer one technology platform. Bar none. Ethereum paved the way for companies to build and create their own worlds on top of a blockchain. But NEAR’s sharded design allows millions of people to use this technology without skipping a beat.

    - - - -

    NEAR’s focus on being simple to use, easy to build on, and fast to access funding and talent, means NEAR is primed to become the de facto choice for companies looking to onboard the next billion users to Web3. 

    - - - -

    With the launch of SWEAT, we demonstrated NEAR’s capability of bringing millions of users on chain without outages. But that’s just half the challenge. NEAR is a network for a billion users, but onboarding a billion users requires thousands or millions of applications to create an immersive, inclusive Web3 world.  

    - - - -

    We are just at the beginning of this journey to making mass adoption happen and as a result, there are lots of views on how we might get there and what steps need to be taken. 

    - - - -

    At present, the Web3 pie is small. There are fewer than 20,000 developers working consistently across the Web3 space. In Web2, meanwhile, there are more than 20 million Javascript developers worldwide – NEAR has built a Javascript SDK for any Web2 developer curious about Web3. 

    - - - -

    In terms of users, there are believed to be around 70 million crypto wallet users regularly interacting with a blockchain. There are more than 5 billion internet users who regularly use the internet. NEAR has the easiest onboarding in Web3 thanks to native account abstraction, a key feature to enable onboarding of millions of users. 

    - - - -

    For us at the Foundation, our goal and strategy is clear: attract the Web2 world to build and use Web3. This is going to take time to do, but firmly paves the way to enable our vision of 1 billion users onboarded into Web3 in 5 years. 

    - - - -

    The NEAR ecosystem has the talent, the technology and the funding to ensure it can achieve these goals. We plan to continue working on making NEAR the best place for Web2 devs and founders, by introducing more resources for builders, new education initiatives, and more coming soon.

    - - - -

    So yes, we are in a tough market. And it’s time for conviction. The next wave of innovation will be a fight for mass adoption. NEAR is the best platform for end-user applications on Web3. NEAR is where mass adoption will happen.

    -

    The post A Time for Conviction appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/mission-vision/index.html b/public/blog/tag/mission-vision/index.html deleted file mode 100644 index 90a70cb97..000000000 --- a/public/blog/tag/mission-vision/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Mission & vision Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/modularity/feed/index.xml b/public/blog/tag/modularity/feed/index.xml deleted file mode 100644 index d204a027f..000000000 --- a/public/blog/tag/modularity/feed/index.xml +++ /dev/null @@ -1,157 +0,0 @@ - - - - Modularity Archives – NEAR Protocol - - /blog/tag/modularity/ - - Fri, 26 Jan 2024 16:28:31 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Modularity Archives – NEAR Protocol - /blog/tag/modularity/ - 32 - 32 - - - Why NEAR Data Availability? - /blog/why-near-data-availability/ - - - Fri, 26 Jan 2024 16:28:31 +0000 - - - - - - /?p=21194 - - NEAR Protocol is built to onboard 1B+ users to Web3. Since its mainnet launch in October 2020, NEAR Protocol has …

    -

    The post Why NEAR Data Availability? appeared first on NEAR Protocol.

    -]]>
    - NEAR Protocol is built to onboard 1B+ users to Web3. Since its mainnet launch in October 2020, NEAR Protocol has achieved 100% uptime with 4 shards and has onboarded 35M accounts, of which 16M are monthly active accounts.

    - - - -

    Supporting the most users of any network in Web3 requires a scalable blockchain that is capable of having both high data availability and low-cost data posting in order for applications to scale to the level of mainstream global adoption. This post will explain NEAR’s technical approach to data availability and how NEAR DA, a solution designed for Ethereum rollups, will scale the modular ecosystem and defragment all of Web3.

    - - - -

    The modular Ethereum ecosystem seeks to scale the network by separating the functions of a blockchain––settlement, execution, and data availability––into separate layers. The Ethereum layer-one simply could not scale to accommodate the level of demand it reached, particularly during bull markets, without prohibitively high transaction fees. This demand becomes even more problematic when users want to do swaps on Ethereum or post transaction data for layer-twos to the layer-one network. 

    - - - -

    NEAR DA offers a solution to this scalability roadblock. With a simple architecture that is easy to implement and constantly improving efficiency, and thanks to NEAR having the cheapest transaction fees of any network in Web3, NEAR DA is an incredibly fast and cost-effective data availability option. Depending on the gas fees, NEAR DA is up to 85,000x cheaper than posting blob submissions on Ethereum and 30x cheaper than doing the same on Celestia. 

    - - - -
    - - - -

    NEAR DA and the Chain Abstraction Vision

    - - - -

    The NEAR ecosystem’s focus for 2024 is expanding chain abstraction across more chains & ecosystems, with the goal of abstracting the blockchain away from the user & developer experience. While the modular Ethereum ecosystem has made Ethereum more scalable in some ways, it’s also resulted in a lot of incompatible infrastructure and fractured liquidity that places a huge burden on app builders and end users to manage. The chain abstraction vision is that apps should just work with all chains, onboarding should be seamless, and things like gas fees and bridging should become invisible to end users. 

    - - - -

    Data availability and NEAR DA play an important role in chain abstraction. As zero-knowledge technology enables unification of security across chains via state proofs, as described in the chain abstraction deep dive post linked above, settlement data will be easier to fetch from different networks. As dapps become truly multichain thanks to account aggregation and decentralized frontends, they can query data from multiple chains more easily when data is all posted in one place. Doing so on NEAR will be much cheaper for rollups.

    - - - -

    How is NEAR DA Implemented?

    - - - -

    NEAR DA leverages an important part of NEAR’s consensus mechanism, known as Nightshade, which parallelizes the network into multiple shards (essentially, multiple parallel blockchains). Each shard on NEAR produces a small portion of a block, which is called a chunk. These chunks are aggregated to produce blocks. All of this happens entirely at the protocol level and so is invisible to users and developers.

    - - - -

    NEAR DA uses this infrastructure to an ETH rollup’s benefit. When a chunk producer processes a receipt, there is consensus around the receipt. However, once the chunk has been processed and included in the block, the receipt is no longer required for consensus and can be pruned from the blockchain’s state. The pruning time is at least 3 NEAR epochs, where each epoch is 12 hours. In practice, this is usually around 5 NEAR epochs, so data is available in the network for around 60 hours. Once the receipt is pruned, it is the responsibility of archival nodes to retain the transaction data. 

    - - - -

    This means that NEAR doesn’t slow down its consensus with more data than it requires, yet any user of NEAR DA would have ample time to query transaction data. The advantage this architecture provides to rollups is cost-effective data availability, especially to those with high transaction volume, such as gaming chains. 

    - - - -

    NEAR DA provides an out-of-the-box solution for developers, making it easy for rollup builders to make the most of NEAR’s infrastructure––which has 3+ years of proven reliability behind it. The Pagoda engineering team has already built three important components that are open-source and ready to be integrated into any OP Stack, Polygon CDK, or Arbitrum Nitro rollups:

    - - - -
      -
    • The Blob Store Contract: A contract that stores arbitrary data.
    • - - - -
    • Light Client: A trustless off-chain client that provides easy access to transaction and receipt data.
    • - - - -
    • RPC Client: A client to publish data blobs to the NEAR Protocol.
    • -
    - - - -

    Rollup builders looking to work with a cloud-like service could also leverage NEAR DA’s rollup-as-a-service (RaaS) providers (list provided here), in order to utilize these three components all in one place in a more abstracted manner. 

    - - - -

    What’s next? The Future of NEAR DA and Data Availability Sharding

    - - - -

    Another advantage NEAR’s sharding approach offers to users of NEAR DA is the future scaling roadmap. The NEAR Protocol Engineering team recently announced the move towards stateless validation, the next phase of sharding. This will further decrease the hardware requirements of certain types of validators (chunk validators) and move the state into memory, which will allow for more shards and increase the decentralization in the system by lowering the requirements to become a validator in the system. 

    - - - -

    This means that the number of shards will increase, greatly increasing the overall throughput of the NEAR Protocol. While NEAR is already fast, with 4 MB/s per shard with 4 shards, scaling towards n shards means that rollups, applications, and any other project or developer using NEAR will not have to compete for blockspace. This is a major contrast to the scaling limits of both monolithic systems as well as the modular ETH ecosystem and offers a substantial future-proof for anyone building on NEAR, including users of NEAR DA.

    - - - -

    As the NEAR Protocol starts increasing the number of shards to n, the amount of data that has to be stored for a single shard decreases. Eventually, in theory every account on NEAR Protocol could potentially become its own shard. This allows running very light RPC nodes that would only track the shard that a given user is interested in. 

    - - - -

    For L2s that use NEAR DA, this would mean running an in-memory RPC client that would only track the shard that your data blob contract is in for your retention period (for fraud proofs), or for a given interval of time (retention is configurable on the RPC nodes). Instead of relying on data availability sampling (DAS), a rollup can rely on its own shard by running a lightweight RPC through Data Availability with Sharding. The additional benefit here is that the RPC is also applying the chunks they are tracking, essentially acting as a validator without participating in the consensus, as opposed to statistical confidence with DAS. 

    - - - -

    While Data Availability Sharding remains in the research phase of development, it shows the major advantages the NEAR Protocol design offers to many kinds of builders and ecosystems. As the Web3 space pursues mainstream adoption, the scalability hurdles of the first ten years of Ethereum will seem minor, and it is not clear that modularity alone will solve the problem. The NEAR ecosystem’s goal of mainstream adoption of Web3 means the network is available for all builders to use for creating great applications and delivering the next generation of the internet.

    - - - -

    Fast, Cost-Effective DA is NEAR

    - - - -

    As Web3 adoption grows and as the number of rollups continues to climb, the need to scale the modular scalability solutions becomes greater. NEAR offers its innovative, reliable technology as a data availability solution for rollups that can save time and money while future-proofing projects for an increasingly multichain (and cross-chain) future. The bleeding-edge research driving the future development of NEAR DA will provide rollups with even more advantages over time. Interconnecting and defragmenting Web3 via chain abstraction will be a major theme of 2024 and utilizing NEAR DA puts rollups at the forefront of this evolution.

    - - - -

    -

    The post Why NEAR Data Availability? appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/modularity/index.html b/public/blog/tag/modularity/index.html deleted file mode 100644 index 0d07e5c9d..000000000 --- a/public/blog/tag/modularity/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Modularity Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/move-to-earn/feed/index.xml b/public/blog/tag/move-to-earn/feed/index.xml deleted file mode 100644 index bd0985b38..000000000 --- a/public/blog/tag/move-to-earn/feed/index.xml +++ /dev/null @@ -1,99 +0,0 @@ - - - - Move to Earn Archives – NEAR Protocol - - /blog/tag/move-to-earn/ - - Tue, 17 Oct 2023 13:15:24 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Move to Earn Archives – NEAR Protocol - /blog/tag/move-to-earn/ - 32 - 32 - - - Sweat Economy Launches in the USA, Opening the Door to Millions of New Web3 Users  - /blog/sweat-economy-launches-in-the-usa-opening-the-door-to-millions-of-new-web3-users/ - - - Tue, 17 Oct 2023 14:00:00 +0000 - - - - - - /?p=20973 - - Sweat Economy, creators of $SWEAT and leaders in helping the world become more active, is launching in the United States …

    -

    The post Sweat Economy Launches in the USA, Opening the Door to Millions of New Web3 Users  appeared first on NEAR Protocol.

    -]]>
    - Sweat Economy, creators of $SWEAT and leaders in helping the world become more active, is launching in the United States for the first time. 

    - - - -

    The decision to expand into the new territory was supported by a historic on chain vote by the Sweat Economy Community, and saw more than 380,000 community members take part in the decision. 

    - - - -

    The announcement will pave the way for millions of users in the United States, the Bahamas, Barbados, Botswana, Ghana, Jamaica, Pakistan, Zimbabwe, and Uganda, to be able to tokenize their physical activity within the Sweat Economy ecosystem — adding momentum to the burgeoning global movement economy. 

    - - - -

    Sweat Economy is a Web3 evolution of the Web2 health & fitness app — Sweatcoin — which now has more than 145 million registered users worldwide. It started in September 2022 when the project launched its crypto token $SWEAT alongside the Sweat Wallet mobile app. $SWEAT is effectively a tokenized form of physical activity; a new asset class that did not exist up to this moment, while Sweat Wallet is the mobile application that gives you the best experience of collecting and managing your $SWEAT. To start minting $SWEAT, users need to install the Sweatcoin app,  opt-in to “Walk into Crypto” and then install the Sweat Wallet app. 

    - - - -

    This means that instead of earning centralized sweatcoin points, users earn $SWEAT — a crypto token that represents the value of their physical activity and is traded on 20+ exchanges worldwide. Accrued $SWEAT can then be used in various ways, including deposited into “Growth Jars” to be saved and multiplied, and unlock exclusive rewards within the ecosystem. Users can also compete in the free-to-play Sweat Hero NFT game to win additional $SWEAT, while also having the option to purchase $SWEAT in-app using the MoonPay fiat on-ramp 

    - - - -

    “It’s incredible to see the progress of Sweat Economy as it enables us to achieve our mission to bring millions into the open web,” says Chris Donovan, CEO of the NEAR Foundation. 

    - - - -

    “As an industry leader in tokenizing physical activity, Sweat Economy’s launch into the U.S. represents a major milestone not just for the project, but for the entire NEAR ecosystem. It also demonstrates the incredible scalability of the NEAR Protocol, which has been able to seamlessly support one of the largest consumer apps in Web3 operating at a significant scale.”

    - - - -

    Since $SWEAT launched on NEAR Protocol, it has become one of the largest Dapps in the Web3 ecosystem, with more than 20 million wallets and more than 100,000 transactions per day. The Sweat Wallet app quickly became the number one most downloaded Finance app in more than 50 countries. This follows Sweat’s success as the fastest IDO ever to sell out on the DAO Maker platform. It has become one of the largest Web3 on-ramps in history. 

    - - - -

    “We are thrilled to finally bring the Sweat Economy experience to the United States and 8 other markets. Our community was making it loud and clear that they wanted and needed us there and we are happy that we finally can deliver for them,” says Oleg Fomenko, co-founder of Sweat Economy.

    - - - -

    “We are excited that residents of these countries will also be able to literally WALK INTO CRYPTO! Our global community of users has been instrumental in supporting this launch and we are thankful for their participation in the biggest ever governance vote that allocated nearly 700 million $SWEAT to the new community members in consideration for their verified physical activity. By expanding into these markets, we aim to inspire a new wave of physical activity and incentivize individuals to lead healthier lives, while paving the way for the next billion users looking to participate in the movement economy.”

    - - - -

    Sweat Economy’s announcement is another milestone as the NEAR community works hard to onboard one billion users to Web3. By choosing to build on NEAR, Sweat Economy will be well placed to leverage the protocol’s incredibly secure and infinitely scalable sharding infrastructure — unlocking the opportunity to onboard millions of potential users into a burgeoning Web3 movement economy.

    - - - -

    If you have yet to join the economy of movement, head to your mobile app store and download the Sweatcoin and Sweat Wallet apps today and see how millions of people are earning crypto just by being physically active. Join NEAR and Sweat Economy in building a healthier collective future!

    -

    The post Sweat Economy Launches in the USA, Opening the Door to Millions of New Web3 Users  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/move-to-earn/index.html b/public/blog/tag/move-to-earn/index.html deleted file mode 100644 index 8dc696429..000000000 --- a/public/blog/tag/move-to-earn/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Move to Earn Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/multichain/feed/index.xml b/public/blog/tag/multichain/feed/index.xml deleted file mode 100644 index 3f203cf2e..000000000 --- a/public/blog/tag/multichain/feed/index.xml +++ /dev/null @@ -1,225 +0,0 @@ - - - - Multichain Archives – NEAR Protocol - - /blog/tag/multichain/ - - Wed, 24 Jan 2024 19:55:02 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Multichain Archives – NEAR Protocol - /blog/tag/multichain/ - 32 - 32 - - - Why Chain Abstraction Is the Next Frontier for Web3 - /blog/why-chain-abstraction-is-the-next-frontier-for-web3/ - - - Wed, 24 Jan 2024 19:55:01 +0000 - - - - - - /?p=21182 - - Most of today’s dapps are not actually dapps, i.e. decentralized applications. If you need to leave the app in order …

    -

    The post Why Chain Abstraction Is the Next Frontier for Web3 appeared first on NEAR Protocol.

    -]]>
    - Most of today’s dapps are not actually dapps, i.e. decentralized applications. If you need to leave the app in order to start using it, it’s not really an app––it’s just a frontend. If users have to manually onboard themselves through exchanges and manage multiple accounts and gas fees and bridges, did you even build an app? I think not––which may explain why only a few million people in the world are using dapps. 

    - - - -

    If we want to see mainstream adoption of Web3 because we believe a more open, decentralized internet that supports self-sovereignty for all people is better for the world, then we will need to do better.

    - - - -

    The prevailing narrative in Web3 today is modularity, or separating out the different functional layers of a blockchain, i.e. settlement, data availability, and execution, for the sake of scalability. Layer-twos, optimistic and ZK rollups, data availability layers, sidechains, and state channels are all examples of modularity solutions. 

    - - - -

    This proliferation of blockchains & rollups has led to a degraded experience for users and developers. Modularity and a world of many chains leads to more fragmentation of liquidity, apps, and users––a significant degree of complexity in the user experience that no mainstream user could ever be expected to navigate. This also applies to developers, who feel pressure to commit to a specific tech stack while limiting the audience for their application. Now when you build a dapp, you’re enshrining yourself into a small addressable market by choosing a single chain.

    - - - -

    I want to propose a better vision for the entire Ethereum ecosystem and all of Web3: let’s work together on advancing mainstream adoption via chain abstraction. The idea is that blockchains must be abstracted away from the user so they are not barriers to entry or participation. NEAR has been focusing on this vision since 2018 and today has achieved the most users of any network in Web3: 12.4 million monthly active accounts and 34 million accounts overall. 

    - - - -

    Here’s how we can defragment Web3 and onboard billions of users via dapps. 

    - - - -

    What does this look like for the user? 

    - - - -

    Let’s imagine how using a dapp should actually work: transacting across networks and navigating between experiences with ease, all within a single interface. As one example, Alice picks up her phone and opens KAIKAI from her lockscreen. She orders a smoothie from a local place and sees in the app that there’s a discount offer from her favorite clothing store, Maison, and orders a pair of shoes for the spring. Alice sees she has earned enough KAICHING rewards to get a badge from Maison, not knowing it’s an NFT on Polygon, and redeems it in her account. 

    - - - -

    When she browses Maison on the KAIKAI app later that day, she notices that her new badge reveals an offer to buy tickets for an exclusive event at their store with a DJ she likes. She buys the ticket with KAICHING and receives 2 tickets, still not knowing it’s an NFT on Arbitrum. Since she gets a +1, Alice invites her friend Bob to come with her and pings him for his address. 

    - - - -

    Bob sends his NEAR address to Alice and opens his app to check out the ticket. He sends Alice some ETH to say thanks for the invite and looks at the different cryptos he has in his account. Since he’s on the metro and has some time, he decides to buy some BTC and borrow against it with USDC so he can mint a Fighting Dragon NFT on Magic Eden. His friend Charles texted him earlier to get one so they could play each other in Year of the Dragon, a new game on NEAR where their dragons can battle each other for coins they can stake.

    - - - -

    All of these interactions and transactions can take place in a single interface and in a completely private way. There are no wallets, no switching networks, and no transaction fees to deal with; those are embedded directly in the swap or the buy and handled on behalf of the user. Alice didn’t need to worry about which network the ticket is on and Bob can send her funds for the ticket in whichever crypto he wants, moving seamlessly into buying a different one the next second. All inside of an app. This is the level of seamlessness we should be striving for as an ecosystem.

    - - - -

    How do we achieve Chain Abstraction?

    - - - -

    Everyone building an app in Web3 will benefit from being able to access such a broad market of potential users as in this example––i.e. anyone who uses apps. Whereas today, developers choose a network based on access to liquidity or the users of a specific rollup or chain, in a chain abstraction future they can just build with the best tech. The users will show up for the best experiences. 

    - - - -

    Imagine if a Gmail user couldn’t just send a message to an Outlook address––it doesn’t make sense. The same is true for Web3 addresses. The core assumption of chain abstraction is: end users don’t care about the underlying blockchain. They just want apps to work. In reality, blockchains are simply infrastructure to receive value out of Web3: security of assets from seizure, economic opportunity, removing middlemen for transactions, global permissionless identity, data provenance, entertaining experiences, and more.

    - - - -

    The core goal of chain abstraction is to defragment the increasingly fractured modular landscape of Web3. While this will be most visible at the user experience layer, this defragmentation of liquidity and accounts is possible thanks to innovation at the security layer. 

    - - - -

    Zero knowledge (ZK) introduces a principally new approach to ledger security. Whereas before one needed to trust a decentralized set of validators, now even a single computer can prove that rules were followed with a simple proof. This means that where before, developers would be forced to either build on a shared chain or spend immense resources to launch a new one, now they can just spin one up on their single server.

    - - - -

    This new paradigm introduces the idea of cross settlement: as more chains become fully ZK provable, if some proof is published on other chains, there is no way to revert this chain without also needing to revert other chains. Transactions from one chain can also settle on multiple others via ZK proofs. This provides mesh security as all proofs continuously get aggregated, allowing the safe movement of assets between such chains.

    - - - -

    In order to achieve unified security, two things are needed at the bottom of the stack: Data availability, which provides a way for everyone to sync even if the operator is offline, and a decentralized sequencer for applications that don’t have a central operator. 

    - - - -

    The next layer is identity with that security unified. Users can have an address on all possible chains and move assets between them freely. From a user perspective, this should be a single account where they interact with apps on different chains, and assets either get bridged or swapped automatically. 

    - - - -

    I call this “account aggregation” and will share more details about it in another post soon. NEAR will launch the next version of FastAuth in March 2024, which has mapping for NEAR addresses to EVM, Bitcoin, and other addresses. NEAR accounts can request to sign a transaction for another chain. This allows them to build multichain apps directly as smart contracts on NEAR. 

    - - - -

    The final layer is unifying the experience layer, or the application layer (e.g. DapDap)––providing a way to interact with apps on various chains without users switching or needing to leave a single interface. A decentralized frontend can provide easy components to build in a chain-abstracted way. NEAR can achieve this through NearJS, combining data indexing and decentralized frontends––V2 also coming in March 2024. 

    - - - -

    How is NEAR enabling Chain Abstraction? 

    - - - -

    The NEAR ecosystem has been building towards the chain abstraction vision since its beginnings in 2018, focusing on usability, a flexible account model, and a highly scalable blockchain that could support mainstream apps with billions of users. Today, the stack has expanded to support full chain abstraction across chains and all kinds of apps. 

    - - - -
      -
    • Scalable, integrated blockchain that can grow to 1B+ daily active accounts.
    • - - - -
    • Security aggregation stack consisting of NEAR DA, zkWASM (collaboration with Polygon Labs), and EigenLayer-powered Fast Finality.
    • - - - -
    • Account aggregation on top of this to enable transacting on all chains using a single account
    • - - - -
    • Data layer that supports everything from monolithic, integrated, modular, private and permissioned chains to query data in a predictable protocol.
    • - - - -
    • Intent relayers that can execute complex intents across chains using this infra.
    • - - - -
    • Decentralized frontends that provide discoverability and composability for multiple apps across chains into one experience.
    • - - - -
    • Super (app) wallets that are user friendly and offer a way to navigate all of Web3 without having to switch networks or deal with gas tokens and bridges.
    • -
    - - - -

    Importantly, each of these layers supports builders from across Web3, including Ethereum, rollups & L2s, and beyond––the multichain future is becoming the chain abstraction future. 

    - - - -

    Call to Action

    - - - -

    2024 is the year of hiding the complexity of multichain infrastructure to deliver the Web3 experiences we’re striving for. Improving usability and discoverability should be a priority for all Web3 builders, as well as solving for liquidity fragmentation and security tradeoffs. 

    - - - -

    Let’s make chain abstraction a movement. The NEAR ecosystem invites builders from across Web3 to take advantage of the solutions we’re offering and to collaborate with us to build more chain abstraction solutions together. Stay tuned for more news on collaborations as well as details on an exciting event that NEAR Foundation will co-host at ETHDenver 2024.

    Special thanks to Zaki Manian for conversations that led to this post as well as for his review.

    -

    The post Why Chain Abstraction Is the Next Frontier for Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Case Study: Indexer’s Mary Korch on Building a Multichain Indexing Platform - /blog/case-study-indexers-mary-korch-on-building-a-multichain-indexing-platform/ - - - Fri, 18 Aug 2023 17:15:04 +0000 - - - - /?p=20804 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: Indexer’s Mary Korch on Building a Multichain Indexing Platform appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

    - - - -

    In the latest NEAR Foundation Case Study video below, Mary Korch, Customer Success at Indexer, talks about how the project built its Multichain Indexing Platform on NEAR. As Korch notes in the case study, Indexer builds infrastructure to support developers, giving them the data they need to be successful on the NEAR Protocol.

    - - - -

    “If you’re a Web2 company looking to build in Web3, and specifically in NEAR, we have done a lot of the hard work for you,” says Korch.  “You’re going to need data from the blockchain but also some off-chain data like metadata and IPFS. We actually have that all at your disposal, and it makes it a lot easier to build your application and get to market a lot quicker.” 

    - - - -
    - -
    -

    The post Case Study: Indexer’s Mary Korch on Building a Multichain Indexing Platform appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/multichain/index.html b/public/blog/tag/multichain/index.html deleted file mode 100644 index 2ab8baa7e..000000000 --- a/public/blog/tag/multichain/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Multichain Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/music-licensing/feed/index.xml b/public/blog/tag/music-licensing/feed/index.xml deleted file mode 100644 index ba96df071..000000000 --- a/public/blog/tag/music-licensing/feed/index.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - - Music Licensing Archives – NEAR Protocol - - /blog/tag/music-licensing/ - - Thu, 02 Nov 2023 15:02:18 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Music Licensing Archives – NEAR Protocol - /blog/tag/music-licensing/ - 32 - 32 - - - Berklee College of Music Partners with NEAR Foundation to Build Music Licensing Platform  - /blog/berklee-college-of-music-partners-with-near-foundation-to-build-music-licensing-platform/ - - - Thu, 02 Nov 2023 16:00:00 +0000 - - - - - - /?p=21039 - - Berklee College of Music, the largest independent college of contemporary music and performing arts in the world, announced today a …

    -

    The post Berklee College of Music Partners with NEAR Foundation to Build Music Licensing Platform  appeared first on NEAR Protocol.

    -]]>
    - Berklee College of Music, the largest independent college of contemporary music and performing arts in the world, announced today a partnership with the NEAR Foundation to help build a music licensing platform. 

    - - - -

    The agreement, which will harness NEAR Protocol’s easy-to-use tech stack, will lead to the creation of a marketplace where musicians can upload their music, and creators can license music from the students of this world-class music institution. 

    - - - -

    The project will be released under an app called RAIDAR, which stands for Rights and Asset Information in Decentralized, Authoritative Repositories. Thanks to NEAR’s Web3 technology, all transactions will be recorded on the NEAR blockchain, ensuring a creators’ rights and representation are recorded on-chain. 

    - - - -

    Behind Berklee’s music licensing app, built on NEAR

    - - - -

    RAIDAR will use smart contracts to disintermediate the licensing process and ensure that musicians receive the full economic value and credit for their works. 

    - - - -

    “This is a first of its kind product that will help to democratize the world of music by putting creators first and ensuring they are always rewarded and protected from exploitation for their original work,” says George Howard, Distinguished Professor of Music Business at Berklee. 

    - - - -

    “Those who are seeking to license music for their projects now have a chance to access and support new creators by tapping into an exciting marketplace through the RAIDAR app, which is easy to navigate and offers a safe and reliable way to pay for music.”

    - - - -

    RAIDAR — simple to use, accessible to all

    - - - -

    The product is designed to be simple to use, which is a cornerstone of building on the NEAR Protocol. Musicians simply upload their music files and relevant metadata through a mobile- and desktop-friendly web app. 

    - - - -

    Their song is then represented by a unique, secure smart contract and assigned to the creator’s wallet as an asset or NFT, empowering the creator to view and showcase the song, wherever they go.  

    - - - -

    On the customer side, users can browse, search, and preview songs uploaded to the RAIDAR app and purchase single-use licenses for songs via the app. The song’s smart contract distributes funds received from the payment to the song’s creator. After the purchase transaction completes, the buyer receives an email with the corresponding song download link and a copy of the license agreement.

    - - - -

    “We are extremely excited to be working with Berklee to support a new and unique use case that has real world value for those that use it,” says  Chris Donovan, CEO of the NEAR Foundation. 

    - - - -

    “The RAIDAR app is a disruptive technology built on NEAR  that will help students to explore the power of smart contracts to ensure they are being paid fairly for their work, and that the world of music becomes more inclusive, safe and exciting for everyone.” 

    -

    The post Berklee College of Music Partners with NEAR Foundation to Build Music Licensing Platform  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/music-licensing/index.html b/public/blog/tag/music-licensing/index.html deleted file mode 100644 index 136687017..000000000 --- a/public/blog/tag/music-licensing/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Music Licensing Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/music/feed/index.xml b/public/blog/tag/music/feed/index.xml deleted file mode 100644 index 5a02f7b04..000000000 --- a/public/blog/tag/music/feed/index.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - Music Archives – NEAR Protocol - - /blog/tag/music/ - - Wed, 26 Apr 2023 10:11:46 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Music Archives – NEAR Protocol - /blog/tag/music/ - 32 - 32 - - - NEAR Powers Voting for the Djooky Music Awards  - /blog/near-powers-voting-for-the-djooky-music-awards/ - - - Tue, 04 Apr 2023 14:15:47 +0000 - - - /?p=20376 - - The world of music and the blockchain is about to get a lot more exciting and promising thanks to Djooky …

    -

    The post NEAR Powers Voting for the Djooky Music Awards  appeared first on NEAR Protocol.

    -]]>
    - The world of music and the blockchain is about to get a lot more exciting and promising thanks to Djooky and NEAR. The ongoing Djooky Music Awards (DMA) for undiscovered artists will feature on-chain voting mechanisms powered by NEAR, allowing artists to vie for funding and recognition, while voters compete for cash prizes.

    - - - -

    For upcoming independent artists, Djooky serves as a streaming and discovery tool that links them to fans and industry insiders. Artists can also use the platform’s virtual marketplace, DjookyX, to receive funding by fractionalizing rights to future song royalties. Bringing DMA voting to NEAR will bring further engagement and innovation between musicians and fans.

    - - - -

    That means voting for DMA finals will be completely on-chain using NEAR, with weekly prizes being distributed in the form of NEAR tokens. Artists simply need to create a NEAR wallet to claim their prizes. In addition, any users trying to predict the next big hit with HitHunder will need a NEAR wallet to receive token rewards if their song strikes gold.

    - - - -

    How the DMAs empower both artists and fans

    - - - -

    The DMAs were introduced in 2020 by Djooky co-founders Andrey Dakhovskyy and Brian Malouf as a way to help fans discover new artists and aid musicians in gaining visibility. The competition runs year-round, resetting every quarter with new awards and prizes. The DMAs run tournament style, with artists competing brack-style on the national, continental, and finally global level.

    - - - -

    In the event that a contestant makes it to the finals, their music will be featured on an 18-song NFT album, the sales of which will be divided equally among the lowest 15 projects. If their song is selected as one of the top three songs, it will have its own NFT auction with bonus artwork created by a digital artist. Djooky also provides a platform to help artists reach a global audience, even if their song doesn’t end up topping the charts.

    - - - -

    Additionally, Djooky runs weekly HitHunter competitions where users vie with one another to identify the next likely hit song by assigning HitPoints to songs they like. Users receive 100 Hitpoints every Monday, which they can then spend on the tracks they believe will be the biggest hits. HitHunters are ranked according to how early they allocate their HPs to tracks that become hits in the Djooky charts when compared to other HitHunters.

    - - - -

    Users allocate their Hit Points to the songs which they identify as potential hits. And depending on the progress of the songs chosen, users receive winning points calculated by the platform’s algorithm. The top five users of the special user charts will be rewarded with get cash prizes for backing the right tunes.

    - - - -

    NEAR x DMAs fueling a new future for musicians

    - - - -

    The Djooky team and NEAR Foundation previously collaborated to develop DjookyX, their music marketplace that’s presently transitioning from Web2 to Web3. The DMAs and DjookyX demonstrate new economic models for fans and musicians in Web3, all made possible by technology and governance mechanisms of the NEAR blockchain.

    - - - -

    As the DMAs and DjookyX marketplace grow, so will opportunities for musicians to earn more for their creative energy, and for fans to truly support undiscovered musicians they love.

    -

    The post NEAR Powers Voting for the Djooky Music Awards  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/music/index.html b/public/blog/tag/music/index.html deleted file mode 100644 index 13dfa3919..000000000 --- a/public/blog/tag/music/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Music Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ncon-bounties/feed/index.xml b/public/blog/tag/ncon-bounties/feed/index.xml deleted file mode 100644 index eea79a916..000000000 --- a/public/blog/tag/ncon-bounties/feed/index.xml +++ /dev/null @@ -1,197 +0,0 @@ - - - - NCON Bounties Archives – NEAR Protocol - - /blog/tag/ncon-bounties/ - - Mon, 30 Oct 2023 14:17:52 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NCON Bounties Archives – NEAR Protocol - /blog/tag/ncon-bounties/ - 32 - 32 - - - Call for Founders and Developers to Qualify Your B.O.S Apps Before NEARCON ‘23  - /blog/call-for-founders-and-developers-to-qualify-your-b-o-s-apps-before-nearcon-23/ - - - Mon, 30 Oct 2023 16:00:00 +0000 - - - - /?p=21013 - - Dear NEAR B.O.S Developer Community,  This week, the Pagoda product team launched the App Library to help B.O.S founders and …

    -

    The post Call for Founders and Developers to Qualify Your B.O.S Apps Before NEARCON ‘23  appeared first on NEAR Protocol.

    -]]>
    - Dear NEAR B.O.S Developer Community, 

    - - - -

    This week, the Pagoda product team launched the App Library to help B.O.S founders and developers showcase and promote their apps. With over 200 applications powered by B.O.S and more than 11,000 components now in the ecosystem, the App Library is a page on near.org designed to help users and community members find your applications and promote greater usage across the NEAR ecosystem. 

    - - - -

    The App Upvoting Event: NCON Bounty

    - - - -

    To find the first group of featured apps on App Library, we are launching the App Upvoting Event as a NCON Bounty to invite all NEARCON attendees to upvote and decide who gets featured! 

    - - - -

    “NCON Bounties” is a Web3 gamified event experience for attendees to engage throughout the event. Attendees will earn NCON by completing Bounties and have the option to redeem NCON for food, merchandise, and more. Participants who decide to complete this special NCON Bounties experience will also help select the first group of featured apps in the B.O.S. App Library. 

    - - - - - - - -

    To ensure your dApp shines during this event, here’s what you need to do. The following steps can be be found in the B.O.S interface for those who want to participate — simply go to the Metadata page of your app and follow the instructions below:

    - - - -
      -
    1. Create a Captivating Description
    2. -
    - - - -

    Craft a compelling introduction to your dApp. Highlight its unique features and value proposition. Pro tip: Add screenshots to make your dApp visually appealing and easy to understand. (Description is required!)

    - - - -
      -
    1. Tag Your App
    2. -
    - - - -

    First, make sure to tag the component that holds the entry to your project experience as App. Then, choose the category that best represents your dApp—Earn, Play, Develop, Engage. (Choosing one of these four categories is required! If you applied more than one of these four tags, then we will only use the latest one you applied.) Add additional tags for improved discoverability. Make it easy for users to find and appreciate your work.

    - - - -

    (These categories are suggested from research around users’ needs, broken down by categories and industry app store benchmarks. Check near.org/applications on how these categories are currently being used)

    - - - -
      -
    1. Spread the Word
    2. -
    - - - -

    It’s time to promote! Rally your community, spread the news across your networks, and encourage users to like and engage with your dApp. The more upvotes your app gets, the greater your chances of securing a top spot.

    - - - -

    Why Participate?

    - - - -

    The App Library isn’t just a catalog — it’s an interactive platform that spotlights the capabilities of the NEAR B.O.S. It will become the most visited page on near.org and serves as a gateway to the NEAR Ecosystem. By participating, you have the chance to feature prominently on the App Library and the NEAR homepage for the next three months, gaining exposure and recognition across the NEAR ecosystem and beyond.

    - - - -

    What’s the Payoff? 

    - - - -

    Your active participation can lead to significant rewards:

    - - - -
      -
    • Top 8 Featured dApps
    • -
    - - - -

    The dApps with the highest number of upvotes from this event will be showcased prominently on the landing page of the App Library for the next three months, putting your creation on the most visited page on near.org.

    - - - -
      -
    • Category Leaders 
    • -
    - - - -

    The top 4 dApps in each category will be prominently featured on category pages, such as Earn, Play, Develop, and Engage. This targeted exposure aligns with the core needs and use cases of the diverse NEAR user base.

    - - - -

    What’s Next? 

    - - - -
      -
    • Upvote Button Enabled 2 days Before NEARCON
    • -
    - - - -

    2 days before NEARCON, you will see an upvote button appear on the details pages of your qualified Apps. Any users who have an account on near.org can now send their support by hitting that upvote button. This upvote button will be disabled two days after NEARCON, and the total number of upvotes you received in the event will be displayed for 6 months on your details page as your participation badge. 

    - - - -
      -
    • NEARCON attendees will be incentivized to engage with App Upvoting by earning NCON
    • -
    - - - -

    QR code and event posters will be promoted at the NEARCON venues to encourage them to complete this Bounty. In addition, this Bounty will be part of the NCON product for NEARCON participants to earn more NCON, so we will make sure your dApps get plenty of exposure. 

    - - - -

    Event Timeline Summary

    - - - -
      -
    • October 27th — Submit your App for Qualification. App Upvoting Bounty Event Page made available on near.org. Qualified Apps will be Fetched (Qualified Apps will be fetched continuously on one-hour intervals throughout the NEARCON event through November 13th).
    • - - - -
    • November 3rd — Upvote button enabled + counters started.
    • - - - -
    • November 13th — Upvote disabled + results calculated.
    • - - - -
    • November 17th — Results display + feature apps updated on main App Library page.
    • -
    - - - -

    The primary goal of the App Library is to celebrate the creativity and efforts of NEAR developers and founders. To increase visibility, boost engagement, and get valuable feedback from the whole NEAR community on your app, make sure to register your apps as qualified and participate in the App Upvoting NCON Bounty

    -

    The post Call for Founders and Developers to Qualify Your B.O.S Apps Before NEARCON ‘23  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ncon-bounties/index.html b/public/blog/tag/ncon-bounties/index.html deleted file mode 100644 index 8f1ffee40..000000000 --- a/public/blog/tag/ncon-bounties/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NCON Bounties Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ncon/feed/index.xml b/public/blog/tag/ncon/feed/index.xml deleted file mode 100644 index c8421d74f..000000000 --- a/public/blog/tag/ncon/feed/index.xml +++ /dev/null @@ -1,101 +0,0 @@ - - - - NCON Archives – NEAR Protocol - - /blog/tag/ncon/ - - Wed, 08 Nov 2023 07:00:54 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NCON Archives – NEAR Protocol - /blog/tag/ncon/ - 32 - 32 - - - Introducing NCON and How to Use It at NEARCON ‘23 - /blog/introducing-ncon-and-how-to-use-it-at-nearcon-23/ - - - Mon, 06 Nov 2023 22:16:19 +0000 - - - - /?p=21042 - - Hello NEARians, By now many of you are in or are en route to the magical city of Lisbon for …

    -

    The post Introducing NCON and How to Use It at NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - Hello NEARians,

    - - - -

    By now many of you are in or are en route to the magical city of Lisbon for NEARCON23! The amount of alpha dropping this week will have you weak in your knees. It’s been our mission to bring you an event that puts Web3 experiences at the forefront of NEARCON. Even better when we partner with our Community to bring you a truly social experience elevating your journeys throughout NEARCON. This year NCON makes its big debut! 

    - - - -

    What is NCON? 

    - - - -

    The NEAR Foundation has partnered with Jutsu, Keypom, and Veriken to create an exciting experience for you: the NCON token — an event experience built on B.O.S. NCON embodies the essence of the open web. An open web where we transact with each other on a peer to peer network. 

    - - - -

    Interacting with sponsors, attending content sessions, paying for your lunch, will be part of the NCON experience. As you complete NCON Bounties (see the full list below), you’ll be rewarded NCON which can be redeemed for swag, lunches, and other goodies during NEARCON. 

    - - - -

    When you check in at registration you will automatically receive 100 NCON — enough to buy lunch for 3 days and 1 piece of swag. Complete Bounties to earn more NCON and maximize your NEARCON experience. At the end of NEARCON, the top 3 NCON redeemers will receive a free trip to NEARCON24. Visit the helpdesk to verify your Bounty completions and get dropped NCON. 

    - - - -

    Good luck and “happy bounting”!

    - - - -

    *NCON exists for the purposes of NEARCON and NCON holds no real financial value beyond the event. Terms and conditions apply

    - - - -

    NCON Bounties to complete

    - - - -
    BOUNTYNCON REWARD
    Ticket Claim (done at registration)100.00
    We’re dropping various amounts of NCON during sessions, roundtables, firesides, panels and keynotes. The more sessions you join, the higher chance for more NCON!1.00 – 10.00
    Take a picture with the Opening Ceremony special guest and tweet “FOUNDERS, DEVELOPERS, BUILDERS #NEARCON2023”20.00
    Early Bird Drops (arrive to NEARCON or Hacker HQs between 9am and 10:30am)5.00
    Visit all three venues (tweet pictures of each venue and #NEARCON2023)5.00
    Upvote apps in the B.O.S. App Library 5.00
    Attend one of the Founders Forum sessions 2.00
    Complete the Shard Dog Engage-a-thon2.00
    Submit Pagoda User Research Survey2.00
    Shoutout your favorite thing on NEARCON Twitter #NEARCON20232.00
    Submit a Hackathon Project40.00
    Visit the B.O.S. Booth5.00
    Visit the hacker help desk and get help on your project (or just get your NCON Drop)2.00
    Sponsor BountiesVaries
    Glass – Sign up for GLASS at www.glass.fun/signup, and tag us (@glassdotfun) in a tweet about your favorite thing you’ve eaten or drank so far at NEARCON!5.00
    Aurora – Visit Aurora booth, talk to Armand or Slava, tweet “Big Alpha coming soon on @auroraisnear” without a spoiler.2.00
    Proximity – Attend a talk featuring a Proximity team member. Post on X and tag @proximityfi2.00
    Proximity – Try out these B.O.S.-powered gateways for L2s and share your thoughts on X: Polygon zkEVM Interactive App Dashboard, Mantle Ecosystem Gateway, “B.O.S.” Store on the Coin98 Super App.20.00
    Mintbase – Minsta your NEARCON moments and earn NCON 🤳🏻
    ▾ Go to https://minsta.mintbase.xyz/
    ▾ Take a photo and mint it as a NFT
    8.00
    Octopus – Visit us at the Octopus Network booth and tweet a picture at the booth with “Otto” tagging @oct_network and #NEARCON. 2.00
    Octopus – Interact with Octopus Network on mainnet.oct.network, in forum at forum.oct.network or at Octopus DAO on AstroDAO for a 5x multiplier bonus!10.00
    Calimero – Log in to Calimero Chat, the official chat of NEARCON, and send an epic meme! The funnier your meme, the more NCON you score! Claim them at the Calimero booth.2.00 – 5.00
    The Littles -1. Visit TheFunPass booth2. Participate in their Stick Catcher experience.2.00
    NEAR Mobile – Publish a tweet describing what you like more about @NEARMobile_app- Download NEAR Mobile (https://nearmobile.app/) and give us a review on Google Play or App Store- Follow us on Twitter (@NEARMobile_app), join our Telegram (https://t.me/NEARMobile) and subscribe to YT (@NEARMobileWallet).2.00
    NEAR Balkans – NEAR Lisbon Adventure: Collect all flags at the NEACON booths!2.00
    NEAR Balkans – POAP: Find the POAP QR code and prove your attendance at NEARCON with the Tekuno PODs!2.00
    SailGP – SailGP’s NEARcon Scavenger Hunt: Download the SailGP app and join our fan loyalty program, The Dock. Then, set off to explore NEARcon’s three venues, hunting down not one, not two, but SEVEN SailGP QR codes. Scan all seven codes using the SailGP app to snag your exclusive SailGP x NEARcon NFT. Once you’ve got your hands on it, head over to the SailGP booth, present your collectible, and get in on the action to win daily prizes on top of NCON!5.00
    - - - -

    How to redeem your NCON

    - - - -
    RedeemableNCON PRICE
    LUNCH (NEARCON and HACKER HQs)15 per visit
    White t-shirt20.00
    Black t-shirt20.00
    Green t-shirt20.00
    Cream hoodie50.00
    Black hoodie50.00
    Windbreaker50.00
    Cream hat15.00
    Black hat15.00
    Water bottle10.00
    Duffle bag50.00
    Tangem Wallet V140
    Tangem Wallet V240
    Bottle Openers5
    Early Closing Party Access50
    Horizon Credits for Founders30
    Top 3 NCON Redeemers will receive a free trip to NEARCNO24!—–
    - - - -

    -

    The post Introducing NCON and How to Use It at NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ncon/index.html b/public/blog/tag/ncon/index.html deleted file mode 100644 index a9f449b72..000000000 --- a/public/blog/tag/ncon/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NCON Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ndc-funding/feed/index.xml b/public/blog/tag/ndc-funding/feed/index.xml deleted file mode 100644 index 7647a1d0e..000000000 --- a/public/blog/tag/ndc-funding/feed/index.xml +++ /dev/null @@ -1,143 +0,0 @@ - - - - NDC Funding Archives – NEAR Protocol - - /blog/tag/ndc-funding/ - - Fri, 18 Aug 2023 15:20:42 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NDC Funding Archives – NEAR Protocol - /blog/tag/ndc-funding/ - 32 - 32 - - - An Update on the NDC Funding and Support for Grassroots Projects - /blog/an-update-on-the-ndc-funding-and-support-for-grassroots-projects/ - - - Fri, 18 Aug 2023 15:04:37 +0000 - - - - /?p=20807 - - Executive Summary One of the central tenets of Web3 is decentralisation. Decentralisation is central to creating an open web because …

    -

    The post An Update on the NDC Funding and Support for Grassroots Projects appeared first on NEAR Protocol.

    -]]>
    - Executive Summary

    - - - -
      -
    • The Foundation has set the future of funding for the NDC based on significant milestones post V1 Governance
    • - - - -
    • The launch of the Grassroots Support Initiative where projects in need of funding or support can engage directly with the NEAR Foundation to discuss options in the interim of direct support from the NDC 
    • - - - -
    • If you are looking for support, you can schedule time with the team here
    • -
    - - - -

    One of the central tenets of Web3 is decentralisation. Decentralisation is central to creating an open web because it underpins an ecosystem’s anti-fragility, sustainability, scalability, and censorship resistance (amongst other important characteristics). A core part of a decentralised ecosystem is a robust self-governance infrastructure that empowers users and the community.

    - - - -

    Decentralisation is something that has guided the Foundation as a northstar, but as in all emerging fields sometimes the path toward that goal can be winding, complicated, and messy. That’s why we thought it would be important to take a moment to discuss the place of the NDC on that journey, the steps ahead, and how we can help the community get the support it needs along the way. 

    - - - -

    Back in August 2022, the Community Working Group was formed by a collection of prominent NEAR community nodes with the purpose of establishing a new framework and implementation plan for ecosystem self-governance infrastructure and an associated treasury that could help ensure the ecosystem would continue on its path to decentralisation while giving everyone the chance to have their voice heard. This is how and why the NEAR Digital Collective (NDC) was formed. 

    - - - -

    As the champion supporting the creation of decentralised governance infrastructure, the NDC plays an important role in the future of the NEAR ecosystem. Decentralised governance infrastructure will enable the community to vote (using an on-chain mechanism) on the allocation of funds, help ensure that decisions are made in a fair and representative manner, and further decentralise the NEAR ecosystem, something that is important both philosophically and practically for the healthy development of any Web3 ecosystem.

    - - - -

    So far, the NDC has already successfully launched the NDC Community Treasury, the IAMHuman voting initiative and V0 Governance, all major milestones for the ecosystem and vital pieces of governance infrastructure.

    - - - -

    Funding for the NDC

    - - - -

    Understanding the important role that the NDC can play in the future of the ecosystem, the NEAR Foundation is fully committed to its long term success. Of the Foundation’s treasury, a substantial portion has been earmarked for community initiatives like the NDC, which the Foundation intends to advance to the NDC Community Treasury over time as the ecosystem’s governance infrastructure matures.

    - - - -

    In order to further support the mission of the NDC as they continue to make progress, the Foundation is announcing today that it will provide an advance to the NDC Community Treasury in the region of 15M NEAR, subject to the successful completion of the V1 Governance elections. The criteria for this initial treasury advance will include (a) all V1 Governance elected positions being filled; and (b) the implementation by the community of a standardized funding request framework as a benchmark for responsible work moving forward.

    - - - -

    After this initial advance, the Foundation is also reiterating its commitment to further treasury advances (up to 100M NEAR). These further advances will be based on careful work with the community to set out specific criteria for milestones that will ensure funds are deployed responsibly and in a way that helps achieve the long-term goals of the wider ecosystem. 

    - - - -

    Once V1 Governance is live, the community will be able to create success metrics for the NDC and vote on them as a collective with the support of the Foundation and other ecosystem nodes. 

    - - - -

    The Foundation is also aware that, as a result of various delays with the launch of V1 Governance, the NDC Community Treasury is close to reaching the original USD1.5m V0 Governance budget cap contained in the NDC Community Treasury trust instrument. To ensure the community can continue to move forwards to the critical goal of V1 Governance launch, the Foundation will support the NDC Community Treasury by providing an additional USD400k buffer above that original budget cap.

    - - - -

    The NDC nominations for all 3 houses in V1 Governance are currently live until September 7th, with elections then kicking off on September 8th and running until September 22nd. We would encourage anyone who is interested in getting involved in this critical ecosystem milestone, and playing a role in steering the ecosystem forwards, to nominate themselves.

    - - - -

    Support for grassroots projects

    - - - -

    As part of the Foundation’s commitment to decentralisation and ensuring the voice of the community is heard, the Foundation announced in November 2022 that in most instances it would stop providing capital to the ecosystem through grants and instead have the NDC gradually take over that responsibility. While the Foundation understands that grants are a vital resource for grassroots projects to build and grow, we believed it was important to support moving them to a more decentralised model.  

    - - - -

    However, since the timeline to implement V1 Governance has taken longer than anticipated, we recognise that ecosystem funding has been more limited, which has put significant pressure on builders in the ecosystem. Concerns around funding have been a major topic of discussion in the community over the last few weeks, and the Foundation appreciates that the community has rallied together to surface these issues in an open and constructive way. This feedback has helped the Foundation understand that it should have moved more quickly to provide interim support. 

    - - - -

    To help address this issue, and to better support grassroots projects who are in need of support while the NDC continues to ramp up, the Foundation is launching a grassroots support initiative for any project in the ecosystem that is currently in need of urgent support. The Ecosystem Relations team is leading on the initiative from the Foundation and they have set up an open calendar for community members to connect directly with them to discuss how the Foundation can best support. 

    - - - -

    Projects will be able to ask for emergency support, either financial or otherwise, by booking time with the team. This initiative will remain in place until NDC funding options become more readily available. While the Foundation will not be able to fund every request, we are committed to carefully reviewing every one we receive and prioritizing them based on immediate need and how well they line up with the goals of the broader ecosystem. 

    - - - -

    You can book time with the Ecosystem Relations Team here.

    - - - -

    Grassroots projects and the community are the lifeblood of the NEAR ecosystem and the Foundation is committed to ensuring projects have the resources they need as we continue to create a thriving, decentralised ecosystem together.

    -

    The post An Update on the NDC Funding and Support for Grassroots Projects appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ndc-funding/index.html b/public/blog/tag/ndc-funding/index.html deleted file mode 100644 index 29f16d8e3..000000000 --- a/public/blog/tag/ndc-funding/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NDC Funding Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ndc/feed/index.xml b/public/blog/tag/ndc/feed/index.xml deleted file mode 100644 index 1895c4102..000000000 --- a/public/blog/tag/ndc/feed/index.xml +++ /dev/null @@ -1,1007 +0,0 @@ - - - - NDC Archives – NEAR Protocol - - /blog/tag/ndc/ - - Wed, 23 Aug 2023 17:17:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NDC Archives – NEAR Protocol - /blog/tag/ndc/ - 32 - 32 - - - NDC V1 Governance Elections FAQ - /blog/ndc-v1-governance-elections-faq/ - - - Thu, 20 Jul 2023 13:13:39 +0000 - - - - /?p=20739 - - The NEAR Digital Collective (NDC), the largest decentralization effort on any layer 1 blockchain, has spent much of 2023 designing …

    -

    The post NDC V1 Governance Elections FAQ appeared first on NEAR Protocol.

    -]]>
    - The NEAR Digital Collective (NDC), the largest decentralization effort on any layer 1 blockchain, has spent much of 2023 designing a number of frameworks that will allow any member of the NEAR Protocol network to have a say in how NEAR is run. NDC’s goal is to combine transparency, collective decision making, evolving governance models, and self-determination in a completely new way. 

    - - - -

    After laying this decentralization groundwork, the NDC is gearing up for its first elections. As of July 19th at 15:00 pm UTC: I-AM-HUMAN OG SBT Soul Bound Tokens holders can now nominate themselves for office. This is your opportunity to upvote and to comment on candidates you believe in and who could add the most value to the future of NEAR! 

    - - - -

    What are the key dates to remember for the NDC election?

    - - - -
      -
    • July 19, 15:00:00 UTC — Start date for candidacy submissions on BOS and get I-AM-HUMAN SBT
    • - - - -
    • September 1, 23:59:59 UTC — Deadline for Voter Registration via I-AM-HUMAN
    • - - - -
    • September 1, 23:59:59 UTC — Deadline for applying for an OG Badge for candidacy eligibility
    • - - - -
    • September 7, 23:59:59 UTC  — Deadline for candidacy submissions
    • - - - -
    • September 8, 00:00:00 UTC —  Voting begins at Near APAC in Vietnam
    • - - - -
    • September 22, 23:59:59 UTC — Voting ends
    • -
    - - - -

    Below you will find a list of frequently asked questions about the elections, from how participation and voting works to candidate selection, election integrity, and more.  

    - - - -

    NDC V1 Governance Structure

    - - - -

    NDC V1 Governance includes three elected houses, a voting body, and a community treasury. The qualification to run for V1 governance requires an OG SBT. Elected Community members (OG’s) of each house are responsible for planning, overseeing, and allocating funding aligned with the ecosystems Northstar to grow and decentralize NEAR. 

    - - - -

    What will the NDC government look like?

    - - - -

    The NDC government will be composed of three houses, structured as following:

    - - - -
    Name of the HouseHouse of Merit (HoM)Council of Advisors (CoA)Transparency Commission (TC)
    Seats15 seats7 seats7 seats
    ResponsibilitiesIn charge of allocating the treasury and deploying capital for the growth of the ecosystem.In charge of vetoing proposals from the HoM and guiding the deployment of the treasury.In charge of keeping behavior of elected officials clean, and making sure cartels do not form in the ecosystem. 
    Commitment5-20 hours weekly with a minimum participation threshold.5-20 hours weekly with a minimum participation threshold.5-20 hours weekly with a minimum participation threshold.
    Expertise
    Required
    Budgetary expertise for ecosystem-wide budget planning, treasury management, and review.Strategic minds to advise the House of Merit and hold budget veto power.Unbiased guardians of the treasury that investigate and remove bad actors.
    - - - -

    Nominate Yourself for Candidacy

    - - - -

    Who can run for office?

    - - - -

    In order to run for office, you must hold an OG SBT. These aren’t given out to just anyone; these are for people that have been actively contributing to the NEAR ecosystem for extended periods of time. If you already have an OG SBT, you can self-nominate yourself right now.

    To find out the full criteria and to see if you qualify, please refer to Safeguards and OG. If you still require help, head over to the official NDC Telegram and ask a member of the team for help.

    - - - -

    Why should you run for office?

    - - - -

    If you’re an OG, we need your expertise and authentic commitment to the continued growth, success, and most importantly… Decentralization of NEAR. This is an opportunity for you to actualize an incredible future for NEAR.

    - - - -

    What information will be available in the candidate profiles?

    - - - -

    The candidate profiles are on BOS Nomination and will contain their name, background, affiliation, and policy positions. The profiles should give you a clear overview of what to expect should you select them as your preferred candidate. You can choose to upvote the candidate and comment on the candidate profiles as long as you are registered through I-AM-HUMAN.

    - - - -
    - - - -

    Election Overview

    - - - -

    Nomination starts the NDC v1 governance process and runs for 50 days and allow the community to rally their candidates. The nomination ends on September 7, and the election starts on September 8 and runs for two weeks. The elected representatives are onboarded for one week, and begin to organize the first government for the NEAR ecosystem.

    - - - -

    Nomination Period: July 19th to September 7th, 2023

    - - - -

    Election Period: September 8th – September 22nd, 2023

    - - - -

    Start of 1st Congress: October 1st – April 1st, 2024

    - - - -
    - - - -

    How can my vote shape the future of the NEAR ecosystem?

    - - - -

    By engaging in the election process, you get to help determine the direction of the NDC and the future of decentralization on NEAR. This is not like a presidential election where your vote is a thimble of water added to a sea. Every vote in the NDC election actually makes a difference, and some of the elected positions will likely come down to just a few votes. When the candidates have very different policy positions, each vote has a potentially outsize impact.

    - - - -

    How else does my vote matter?

    - - - -

    By participating in the elections process and on-chain voting, you are also contributing to your own on-chain reputation.

    - - - -

    Participation

    - - - -

    How can I participate in the NDC election?

    - - - -

    The main ways to participate in the NDC election are of course voting for candidates or running as a candidate, but there’s a lot more to it than just that. Through our Nominations platform, voters and candidates will be able to engage with one another discussing policy positions and contribute to candidacy social proof through commenting or upvoting.

    - - - -

    What is the eligibility criteria to vote?

    - - - -

    Any person with a Face Verified Soul Bound Token (SBT) is eligible to vote, and anyone can get one with a NEAR wallet through I-AM-HUMAN.

    - - - -

    What is the eligibility to run in the NDC election?

    - - - -

    In order to be eligible to run in the NDC election, candidates will need to be one or more of the following:

    - - - -
      -
    • A Champion of the NDC that is still actively contributing to the ecosystem. Champions are ecosystem leaders that run nodes or projects and contribute to a workgroup or initiative they feel passionate about to help bring NDC V1 Gov online. They contribute by lending time or resources and also help by referring or recruiting contributors to help deliver objectives.
    • - - - -
    • An NDC Contributor that forfeited or received a bounty through June ’23 that is still actively contributing to the ecosystem.
    • - - - -
    • A member of NEAR Inc or NEAR Foundation before the Pagoda rebrand in Feb ’22 that is still actively contributing to the ecosystem.
    • - - - -
    • A member of VCs, nodes, projects, or spinout founders in the ecosystem before the Pagoda rebrand in Feb ’22 that is still actively contributing to the ecosystem (including, but not limited to, Aurora, NEAR UA, Proximity Labs, Lyrik(MOVE) Capital, NEAR Balkans, MetaWeb, MetaPool, Orderly, NEAR Vietnam, Satori, Open Shard Alliance, Open Forest Protocol, Human Guild, HAPI Labs, Calimero, OnMachina, Ref, PemBrock, etc.).
    • - - - -
    • A known OG and Community member for at least one year that is still actively contributing to the ecosystem.
    • -
    - - - -

    Remember: bids for candidacy can be turned in as soon as July 19 and no later than September 7th. Give yourself ample time to fill out a form detailing your background, experience, and what you plan to bring to NDC governance. This material you provide helps the NEAR community make an informed decision about your candidacy.

    - - - -

    Election Integrity

    - - - -

    What procedures will be in place to ensure election integrity?

    - - - -

    We would love to see every single person in the NEAR ecosystem vote in NDC elections, but in order to maintain election integrity, there is one important requirement in order to cast a valid ballot. You will need to have a Face-Verified Soul Bound Token (SBT) linked with a NEAR wallet. You may use your main wallet or create a new one explicitly for the purpose of voting.

    - - - -

    Does Face Verification mean you have a picture of my face connected to my wallet?

    - - - -

    No. I-AM-HUMAN does not store your biometrics. You are also free to request the deletion of any and all data collected in this process should you decide to forfeit your FV SBT.

    - - - -

    Will there be any election oversight?

    - - - -

    It goes without saying that we want as fair and transparent an election as possible. Given that we are remote, and that the internet can be a strange place, there have been certain safeguards implemented into all NDC elections, that deter poor behavior, and also guarantee that bad actors are punished if they are able to manipulate an election. Election integrity can ultimately be broken down into six clear safeguards: 

    - - - -

    Safeguard 1. Fair Voting Policy (voters agreement to not sell votes). On behalf of all voters, holding an I-Am-Human verified account, you agree when you vote, that you will not sell your vote. If it turns out that you do sell your vote, you are eligible to post-election enforcement from the TC (see safeguard 6). 

    - - - -

    Safeguard 2. Candidate Agreement to Transparency and Accountability to not buy votes. On the candidates’ side, they all also agree to not buy votes for their election, and are equally eligible for post-election enforcement if they are found guilty. 

    - - - -

    Safeguard 3. Implementing a Vote Bonding: Vote bonding is a mechanism designed to deter malicious voting behaviors. Participants must stake a certain amount of NEAR tokens, as a bond to vote. This bond ensures good faith participation and can be reclaimed post-voting if all rules are adhered to. However, if participants engage in vote manipulation, such as buying or selling votes, the bond is forfeited. This mechanism introduces a strong financial disincentive to engage in fraudulent activities, safeguarding the integrity of the voting process. Recently, in a NDC produced EasyPoll, the community had a majority vote to have a bond for the vote.

    - - - -

    Safeguard 4. Pikes Peak review Election results ongoing/after. NEAR is fortunate enough to have the data visualization and tracking capabilities of Pikespeak, active and involved in the ecosystem. As a core supporter of NDC, Pikes Peak is also going to be monitoring election results both during and after the election to identify any anomalies and ensure it is done as fairly as possible. 

    - - - -

    Safeguard 5. Whistleblower program and bounty. In addition to the technical safeguards and Pikespeak oversight, the NDC is also instituting a whistleblower incentive program whereby anyone who has knowledge of potential election fraud can receive a bounty assuming their claims as to people and impact are justified and accurate. 

    - - - -

    Safeguard 6. Enforcement by Transparency Commission. In the event of any serious election fraud the investigation, and decision to remove, or forever ban either a voter or a candidate, will lie with the Transparency Commission. This means that there is ultimately no escape for a wrongdoer once they have been discovered or accused. The official Transparency Commission process is to field a complaint, investigate the complaint, and then publicly move to either remove, or ban the member in question from further participation. 

    - - - -

    With these six safeguards, we are hopeful that all elections for the V1 framework will be fair and transparent.

    - - - -

    Is NEAR Foundation or any other organization external to NDC involved?

    - - - -

    No. The NDC community is the sole administrator of this election, though NDC funding originated at NEAR Foundation.

    - - - -

    Voting

    - - - -

    Voting powered by I-Am-Human proof of personhood soul-bound tokens (SBTs). 1 Human, 1 Vote kickstarts voting. future versions factor in activity throughout the NEAR Ecosystem, giving merit based on contribution and reputation.

    - - - -

    What date does voting start for the NDC General Election?

    - - - -

    The NDC Election starts on September 8, 00:00:00 UTC, which coincides with NEAR APAC in Vietnam.

    - - - -

    How can I vote in the NDC election?

    - - - -

    Voting in the NDC election is designed to be as simple as possible and will take place on NEAR’s Blockchain Operating System. A link to voting will be found on the NDC’s Medium, Telegram, and Discord. You’ll simply log in, review candidate profiles and their platforms, and submit your choices. Be sure to vote within the designated time frame to be sure your voice is counted.

    - - - -

    What should I consider before voting for a candidate?

    - - - -

    Just like in any civic election, you should familiarize yourself with the policy positions of the candidates as well as their backgrounds. All candidates will have been vetted and have an “OG SBT,” but will likely have widely divergent views on the direction of the NDC. Asking questions and commenting on their platforms can also be a valuable way to get clarity on any positions that seem unclear to you.

    - - - -

    Can I change my vote once I’ve submitted it?

    - - - -

    Since all votes are recorded on the blockchain, they are immutable and cannot be changed after submission. Therefore it is in your best interest to triple check your selections before hitting that “submit” button.

    - - - -

    Information & Support

    - - - -

    Where can I find the most accurate and up-to-date information about the NDC election?

    - - - -

    You can find the most accurate and up-to-date information on the NDC’s Medium, Telegram, and Discord.

    - - - -

    Where can I get support if I have any issues or questions during the election process?

    - - - -

    You are welcome to reach out for support on Telegram or Discord.

    - - - -

    Post-Election

    - - - -

    How will the election results be announced?

    - - - -

    Election results will be announced on the NDC’s Medium, Telegram, and Discord and will also be viewable in the Election UI. Winning candidates will be highlighted in green.

    - - - -

    What happens after the election results are announced?

    - - - -

    After the election results are announced, the elected representatives will convene for the first time in the first NDC governance town hall, where we will hear from elected members from the three branches of NDC governance.

    -

    The post NDC V1 Governance Elections FAQ appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Digital Collective’s I-AM-HUMAN Welcomes Its First 1000 Verified Humans - /blog/near-digital-collectives-i-am-human-welcomes-its-first-1000-verified-humans/ - - - Fri, 16 Jun 2023 21:29:01 +0000 - - - - - /?p=20648 - - NEAR Foundation is thrilled to share some inspiring news today. The I-AM-HUMAN project, a cornerstone proof-of-humanity initiative of the NEAR …

    -

    The post NEAR Digital Collective’s I-AM-HUMAN Welcomes Its First 1000 Verified Humans appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is thrilled to share some inspiring news today. The I-AM-HUMAN project, a cornerstone proof-of-humanity initiative of the NEAR Digital Collective (NDC), just achieved a significant landmark of welcoming 1,000 verified community members to our growing ecosystem. 

    - - - -

    This critical milestone underscores the NEAR Foundation and NDC’s commitment to fair and equitable digital governance and representation built on NEAR.

    - - - -

    The impact of I-AM-HUMAN’s 1,000 verified users

    - - - -

    What does it mean to have 1,000 verified users? Simply put, it means 1,000 verified, unique human voices; 1,000 individual perspectives; and 1,000 contributors to NEAR Foundation’s mission of democratizing the digital world. 1,000 verified community members now have the opportunity to engage in governance voting, build an on-chain reputation, drive grassroots funding, and unlock the truly transformative power of DAOs.

    - - - -

    This active engagement is helping reshape the way key decisions are made, moving away from centralized control and towards a truly decentralized, democratic governance model. 

    - - - -

    Distributing voting power to the people with “Soul Bound Tokens”

    - - - -

    I-AM-HUMAN is all about fairly distributing voting power to the people. At its heart is the concept of “Soul Bound Tokens” or SBTs. These aren’t your average digital tokens —each SBT represents a real individual, flesh-and-blood human being, verified through our innovative and user-friendly proof-of-humanity identity verification process. SBTs are the digital embodiment of you, assuring that your voice counts, and making the principle of “one person, one vote” a reality in the digital realm.

    - - - -

    Minting your SBT is easy and only requires a NEAR wallet and your (adorable) human face. And don’t worry about what you look like since the image is encrypted and never seen by anyone. In fact, you always have the right to request the deletion of your data from I-AM-HUMAN and our partner Fractal. If you haven’t yet done so, give it a shot! It only takes a minute or two and we would love to have you be part of this important initiative. 

    - - - -

    We’ve made sure the process of getting your unique SBT, or putting a digital stamp on your individuality, is simple and accessible. With Fractal’s help, we’ve been able to keep this process secure and respectful of your privacy rights, which for the NDC, is of paramount importance. 

    - - - -

    “With the creation of the I-AM-HUMAN protocol, NDC sets a new standard for on-chain identity verification, empowering individuals to assert their humanity securely and transparently in the digital realm,” says Jane Wang, Product Lead at NDC Governance Working Group. “The I-AM-HUMAN protocol opens up a world of opportunities, from secure voting and governance participation to fair airdrops and reputation systems. We’re thankful for our partnership with Fractal, who has made the journey smooth with their field-tested identity solutions at NEAR.”

    - - - -

    Other NDC Initiatives on the horizon

    - - - -

    As NEAR Foundation and the NDC celebrate this major milestone, the commitment to innovation and improvement continues. The NDC is determined to provide an ever-improving experience for users, with initiatives underway to constantly improve user experience, strengthen data privacy, and expand our availability within the NEAR ecosystem. The NDC is actively creating a partnership roadmap for other organizations to leverage our proof-of-personhood solution, helping to empower our partners to ensure equitable decision-making within their own ecosystems.

    - - - -

    The journey to 1,000 users has been exciting, but the NDC is far from finished. Every new user brings us one step closer to NEAR’s vision of a digital world where each individual’s voice is respected, and where the democratic process isn’t just a principle, but a practice.

    - - - -

    So, if you haven’t already, we invite you to become a part of this revolutionary journey. Mint your own SBT, join our community, and make your unique mark in shaping the future of decentralized governance.

    - - - -

    The NDC extends its deepest gratitude to each and every one of you for taking the opportunity to unlock elections, governance, and community treasury with us. These first 1,000 users are opening the door for thousands more to come. 
    For updates, follow NDC on Medium and stay connected with us on this revolutionary journey!

    -

    The post NEAR Digital Collective’s I-AM-HUMAN Welcomes Its First 1000 Verified Humans appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Digital Collective Legal Framework - /blog/near-digital-collective-legal-framework/ - - - Tue, 21 Mar 2023 14:16:51 +0000 - - - - - /?p=20315 - - To help accelerate real-world value creation in the NEAR ecosystem, the NEAR community has launched the NEAR Community Purpose Trust …

    -

    The post NEAR Digital Collective Legal Framework appeared first on NEAR Protocol.

    -]]>
    - To help accelerate real-world value creation in the NEAR ecosystem, the NEAR community has launched the NEAR Community Purpose Trust (for ease referred to in the remainder of this post as the ‘NEAR Community Treasury’). The NEAR Community Treasury is intended to serve as a decentralised treasury for the NEAR ecosystem that will allocate funds to support various grassroots initiatives.

    - - - -

    The launch of the NEAR Community Treasury has been championed by the Governance Working Group (‘GWG’), a group focussing on ecosystem governance initiatives as part of the NEAR Digital Collective (‘NDC’). The NDC is an ambitious grassroots initiative that brings together users, projects, stakeholders and partners of the NEAR ecosystem to promote self-governance, aiming to empower the ecosystem to collectively make decisions on everything from funding to elected representatives and more. It is a significant step towards an even further decentralised network.

    - - - -

    The NEAR Community Treasury leverages an innovative legal framework that builds on work that has already been done utilising Guernsey Special Purpose Trust frameworks elsewhere in the industry. The NEAR community hopes that this framework should help to bring much-needed clarity to participants in decentralised autonomous organisations (‘DAOs’). Below for discussion purposes only is a high-level summary of some of the key features of the NEAR Community Treasury framework.

    - - - -

    What is the NEAR Community Treasury and how is it structured?

    - - - -

    A trust is a mechanism for holding assets so that the legal title to those assets is separated from the beneficial interest in those assets. One or more trustees are appointed as the ‘legal’ owners of the assets in question, and those trustees are bound by various duties and obligations to hold those assets either:

    - - - -
      -
    1.  for the benefit of one or more beneficiaries; or in certain cases,
    2. - - - -
    3. to further one or more specified purposes (with a trust of this nature typically referred to as a ‘Purpose Trust‘).
    4. -
    - - - -

    The NEAR Community Treasury is a type of Purpose Trust, specifically a Guernsey Non-Charitable Purpose Trust (a ‘GNCPT’). A GNCPT is brought into existence when assets are transferred to one or more trustees (the ‘Trustees‘), and those trustees enter into a written settlement of trust (the ‘Trust Instrument’) with another party termed an enforcer (the ‘Enforcer‘) which determines how the assets subject to the trust will be administered.

    - - - -

    The Trust Instrument sets out the duties and obligations of the Trustees and Enforcer, and also the various purposes that the NEAR Community Treasury was created to support. The NEAR Community Treasury is governed by Guernsey law at its inception (although this can be changed by the Trustees with NEAR community consent). The Trust Instrument has been drafted to deliberately minimise the trust that the NEAR community needs to place in the Trustees, the Enforcer and any centralised administrator. The NEAR Foundation has no control over the NEAR Community Treasury, nor any ownership right or interest in respect of any assets held in the NEAR Community Treasury.

    - - - -

    The Trustees are required to administer the NEAR Community Treasury in accordance with the terms of the Trust Instrument and are also subject to various fiduciary duties which require them to, for example, always act honestly and in good faith and exercise their powers in furtherance of the purposes of the NEAR Community Treasury. The Trustees are also subject to a duty of care which requires them to employ the care, skill and diligence of a prudent person of business when administering the trust assets. Both the Trustees and Enforcer are also required to comply with all applicable laws and regulations in connection with their roles.

    - - - -

    The Enforcer has a fiduciary duty to enforce the NEAR Community Treasury in relation to its non-charitable purposes and has a proactive oversight function, monitoring the Trustees and their administration of the NEAR Community Treasury to ensure they are complying with their duties and obligations. The Enforcer has the power to request information and documentation from the Trustees; and also has the power to remove one or more Trustees in certain circumstances (more on this below).

    - - - -

    The Trustees can use the assets in the NEAR Community Treasury for any transaction or arrangement that furthers one or more purposes of the NEAR Community Treasury, provided the transaction and/or arrangement has been approved by the NEAR community. 

    - - - -

    At this stage, the NEAR community has not yet launched any on-chain voting mechanism (although there are various potential implementations in development). The Trust Instrument therefore also provides the Trustees with a limited power – subject to various constraints – to use assets in the NEAR Community Treasury for any transaction or arrangement that furthers one or more purposes of the NEAR Community Treasury without requiring approval of the NEAR community (the ‘Limited Trustee Power‘). Once an on-chain voting mechanism is launched by the NEAR community, this Limited Trustee Power will fall away permanently.

    - - - -

    The Trust Instrument was reviewed by a set of skilled external and community legal counsel in Switzerland, the US and Guernsey. A group of lawyers from the NEAR community also reviewed the Trust Instrument, alongside various members of the GWG. The Trustees are required to make a copy of the Trust Instrument available to the NEAR community, and a copy of the signed Trust Instrument will be stored on IPFS (and this post will be updated with the IPFS link once it is confirmed by the Enforcer). 

    - - - -

    The NEAR Foundation does have any control over, or ownership of, the NEAR Community Treasury

    - - - -

    What are the purposes of the NEAR Community Treasury?

    - - - -

    The purposes of the NEAR Community Treasury are set out in Schedule 3 of the Trust Instrument, and consist of two types of purpose:

    - - - -

         (i) Core Purposes: to support and promote the operation and/or development of the NEAR Blockchain and/or associated ecosystem. These Core Purposes cannot be changed by anyone, although new Core Purposes can be added by the Trustees with NEAR community consent.

    - - - -

         (ii) Subsidiary Purposes: there are various Subsidiary Purposes including to stake the majority of the Trust Fund that is NEAR denominated, and to consider and if thought fit approve funding proposals from the NEAR community. Subsidiary Purposes can be added or removed by the Trustees with NEAR Community consent.

    - - - -

    Any assets held in the NEAR Community Treasury must therefore be used by the Trustees to support one or more of these Core and/or Subsidiary Purposes.

    - - - -

    Who are the Trustees and Enforcer of the NEAR Community Treasury?

    - - - -

    The initial Trustees are the following individuals from the NEAR ecosystem:

    - - - - - - - -

    The initial Enforcer is Francesco Paolo Piatti, who is an experienced lawyer in the Web3 space. The initial Trustees and Enforcer were selected by the GWG, a grassroots community group that has been working on various ecosystem governance initiatives. The process the GWG used to select the initial Trustees and Enforcer is set out in detail here.

    - - - -

    How do the Trustees and Enforcer operate?

    - - - -

    There must always be a minimum of 3 Trustees (although there is no upper limit specified in the Trust Instrument). Trustees can be appointed and/or removed by the Enforcer at the direction of the NEAR community. The Enforcer also has the power to remove any Trustee where that Trustee has committed a breach of a purpose or a breach of fiduciary duty. Conversely, the Enforcer can be removed by the Trustees at the direction of the NEAR community.

    - - - -

    Each Trustee has one vote on any proposal. Trustees are required to disclose any direct or indirect conflict of interest in respect of any proposal, and by default cannot participate in any vote where they are conflicted. The Trust Instrument prohibits the same person occupying the role of a Trustee and Enforcer simultaneously.

    - - - -

    The Trustees and Enforcer are entitled to be paid a reasonable remuneration for performing their respective roles (and the NEAR community has control in respect of this remuneration on the basis that, to the extent any remuneration is put in place that the NEAR community disagrees with, the NEAR community can remove the Trustees and/or Enforcer).

    - - - -

    What assets are held by the NEAR Community Treasury?

    - - - -

    At the outset, the NEAR Community Treasury will hold 5,662,061 NEAR that was donated to the NEAR Digital Collective initiative by the NEAR community (along with a nominal amount of USDT that was donated by the NEAR Foundation, consistent with its legal purpose, as part of the administrative set-up process). The NEAR Community Treasury wallet can be viewed here.

    - - - -

    The Trustees will administer this initial trust property as a proof of concept, enabling the NEAR community to establish how to best utilise this GNCPT framework and demonstrate that the NEAR Community Treasury framework can be used effectively. Moving forward, the NEAR Foundation (as well as other NEAR ecosystem participants) can make further contributions of assets into the NEAR Community Treasury based on the needs of the ecosystem.

    - - - -

    How will the NEAR Community Treasury operate in practice?

    - - - -

    The Trustees provided NEAR addresses, as well as Twitter and Telegram handles (but not physical addresses), in the Trust Instrument. They are able to make decisions as they would normally in the absence of the trust (e.g. via real-time written communications like Telegram or Signal) without having to adopt any additional formalities or bureaucratic processes.

    - - - -

    The Trustees control the NEAR Community Treasury multi-sig wallet and can execute transactions that support one or more of the NEAR Community Treasury’s purposes from this wallet, with a majority of Trustees required to approve/sign any transaction. Any such transaction or arrangement must support one or more of the NEAR Community Treasury’s purposes and would require NEAR community consent; however as discussed above until the NEAR community implements some form of on-chain voting mechanism, the Trustees have the Limited Trustee Power to allocate funds from the NEAR Community Treasury without requiring the consent of the NEAR community. Any such allocations would still need to support or further one or more of the Core and/or Subsidiary Purposes.

    - - - -

    Based on the GWG’s proposed framework, the NEAR community’s intention during this initial period is for the NEAR Community Treasury to receive funding proposals just from the 3 ecosystem grassroots DAOs – being the Developer DAO, Marketing DAO and Creatives DAO. The NEAR Community Treasury’s scope will likely be widened moving forwards as determined by the Trustees and the NEAR community, potentially becoming the primary treasury/capital allocation node in the ecosystem.

    - - - -

    Based on input from the GWG, the Trust Instrument envisages that the NEAR community will develop an on-chain voting mechanism that leverages proof of personhood technology (i.e. technology that can verify there is an identifiable, unique individual controlling a NEAR account).

    - - - -

    Once the NEAR community launches this on-chain voting mechanism, the Limited Trustee Power will fall away permanently. The NEAR community will then be able to put forward and approve funding proposals, and also direct the Trustees to take various actions including:

    - - - -
      -
    • fulfill grant requests;
    • - - - -
    • add Core Purposes and add/remove Subsidiary Purposes;
    • - - - -
    • appoint/remove Trustee(s) and/or Enforcer; and
    • - - - -
    • change the NEAR Community Treasury’s governing law.
    • -
    - - - -

    What are the benefits of the NEAR Community Treasury structure?

    - - - -
      -
    1. Participant Liability
    2. -
    - - - -

    One of the most significant legal issues currently facing DAOs and other decentralised initiatives is participant (or token-holder) liability. Recent legal developments (for example in connection with the CFTC’s enforcement action against Ooki DAO) have only heightened the uncertainty and risks in this context, particularly with respect to DAOs being classified as ‘general partnerships’ or ‘unincorporated associations’ and creating potential joint and several liability exposure for participants. This means participants potentially being held individually liable on an unlimited basis for their own actions, and/or the actions of the entire DAO/initiative, and/or the actions of certain participants.

    - - - -

    It is the hope of the NEAR community that the NEAR Community Treasury may help to mitigate these potential participant liability issues:

    - - - -
      -
    • The Trustees undertake (in their capacity as Trustees) certain activities and actions (e.g. holding treasury, making grants) that might otherwise expose ecosystem participants to potential liability. Other ecosystem participants do not undertake these activities and instead exercise oversight over the Trustees and Enforcer.
    • - - - -
    • When the Trustees (a) act (as they are required to do) in accordance with the provisions of the Trust Instrument and their fiduciary and statutory duties as trustees; and (b) also make it clear to any third parties that they are acting in their capacities as trustees of the Community Treasury, then the liability of each Trustee should be limited to the value of the assets held in the NEAR Community Treasury.
    • -
    - - - -

    In addition:

    - - - -
      -
    • The Trustees are indemnified under the Trust Instrument, meaning that they will be compensated for any liability/losses suffered by them in carrying out their duties as Trustees from the assets held in the NEAR Community Treasury.
    • - - - -
    • The Trust Instrument also makes it clear that the Trustees will not be liable for any losses arising to or suffered by the assets in the NEAR Community Treasury (save for any losses arising in respect of a Trustee’s breach of trusts arising from their own fraud, wilful misconduct or gross negligence).
    • -
    - - - -
      -
    1. Off-chain activities
    2. -
    - - - -

    Without a formal legal structure, if a DAO/decentralised initiative wishes to participate in an off-chain transaction or arrangement then typically individual participants would be required to enter into the relevant transaction/arrangement in their individual capacity (and/or some other affiliated legal person); exposing them to potential liability. While the NEAR Community Treasury is a ‘legal arrangement’ and so not itself a ‘legal person’ (i.e. it does not have a separate legal personality from the Trustees, unlike for example a limited liability company), the Trustees are able to interact with the off-chain world – in their capacity as trustees – in a similar way as other entities (for example, opening a bank account). 

    - - - -
      -
    1. Tax
    2. -
    - - - -

    Certain activities undertaken by DAOs, particularly holding a DAO treasury, can create complex tax consequences for participants (especially in the absence of any clear guidance). One critical risk is the possibility of tax liability arising in connection with DAO activities being attributed to (and so payable by) individual participants.

    - - - -

    The NEAR Community hopes that the NEAR Community Treasury may mitigate that risk for participants by ensuring the relevant activities are being undertaken by the Trustees (in their capacity as Trustees). In addition, as the NEAR Community Treasury does not have any Guernsey resident beneficiaries or Guernsey-source income, it should not be liable to tax in Guernsey nor be required to make any on-going tax or reporting filings. 

    - - - -
      -
    1. Efficient and trustless
    2. -
    - - - -

    Unlike many other alternative DAO legal ‘wrapper’ or ‘proxy’ structures, the NEAR Community Treasury does not rely on a centralised administrative body to be brought into existence or maintain its legal standing – the execution of the Trust Instrument by the relevant parties is all that is required. As mentioned above, there are also minimal operational formalities, meaning the Trustees can make decisions as they would normally (i.e. as if the trust wasn’t there). 

    - - - -

    Under Guernsey law, there is also significant flexibility regarding who can serve as a Trustee or Enforcer, including no requirement for a locally-registered professional trustee/trust company to serve as a trustee. To the extent any disputes were to arise in connection with the NEAR Community Treasury, these would be heard and ultimately determined by the courts in Guernsey.

    - - - -

    What happens if the NEAR Community Treasury is terminated?

    - - - -

    The NEAR Community Treasury is irrevocable and can continue to exist for as long as there are Core and/or Subsidiary Purposes to support. The NEAR community could however direct the Trustees to transfer all of the NEAR Community Treasury assets to another trust (provided such a transfer supported one or more Core and/or Subsidiary Purposes).

    - - - -

    The Trust Instrument also contains various contingencies in the event all of the NEAR Community Treasury’s Core and/or Subsidiary Purposes cease to exist and/or one or more Trustees undertake a transaction or arrangement that is in breach of one or more Core and/or Subsidiary purposes. In such circumstances, the Enforcer (acting reasonably and in good faith) has the power to direct the Trustees to transfer the NEAR Community Treasury assets to a new trust or otherwise deploy them for the benefit of the NEAR community.

    - - - -

    Some closing thoughts

    - - - -

    The NEAR community hopes that the NEAR Community Treasury framework will enable the NEAR community to benefit from a decentralised treasury in a risk mitigated manner. For more information about Guernsey Non-Charitable Purpose Trust frameworks, a template Guernsey Special Purpose Trust Instrument will shortly be hosted on the NEAR Foundation GitHub (and this post will be updated to include the relevant link, once available).

    - - - -


    Disclaimer: Nothing in this article/post should be construed as legal, tax or investment advice. This post might not reflect all current updates to applicable laws, regulations or guidance. Any templates or documentation referenced in this post are made available on a non-reliance basis and the authors do not assume any responsibility for their contents or any consequences of their use. The authors disclaim any obligation to update this post, and also reserve the right to make any changes to this post without notice. The subject matter of this post deals with an emerging and uncertain area of the law and there are no guarantees (and none are given, of whatsoever nature, by the authors or otherwise) that the NEAR Community Treasury framework will effectively mitigate any of the risks identified above. In all cases persons should conduct their own investigation and analysis of the information in this post. Please consult with a reputable lawyer in your jurisdiction for any questions or concerns and before making use of any templates or documentation referenced in this post. Neither this post nor the NEAR Community Treasury constitutes, or is indented to constitute, the offer or sale of any security or token.

    -

    The post NEAR Digital Collective Legal Framework appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - What is the NEAR Digital Collective? - /blog/what-is-the-near-digital-collective/ - - - Fri, 27 Jan 2023 16:00:00 +0000 - - - - /?p=19744 - - What is the NEAR Digital Collective? The NEAR Digital Collective (NDC) is an ambitious project that brings together users, projects, …

    -

    The post What is the NEAR Digital Collective? appeared first on NEAR Protocol.

    -]]>
    - What is the NEAR Digital Collective? - - - -

    The NEAR Digital Collective (NDC) is an ambitious project that brings together users, projects, stakeholders and partners of the NEAR ecosystem to create a radically new way of governing itself.  

    - - - -

    By creating a framework that allows any member of the network to have a say in how NEAR is run, the NDC’s goal is to combine transparency, collective decision making, evolving governance models, and self-determination in a completely new way.  

    - - - -

    The NDC plans on doing this by helping to create the NEAR Constitution, a unifying document that enshrines the ideas of self-governance and decentralization into the core of how the NEAR ecosystem works. 

    - - - -
    - - - -

    Why is this important? 

    - - - -

    The NEAR ecosystem is made up of over 1,000 projects, regional hubs, funding nodes, infrastructure providers, and more than 20 million wallets. That’s a lot of people. The NDC was established to help all those involved take an active role in how NEAR evolves. 

    - - - -

    Whether that’s how funding is allocated, how elections take place, or who represents the mosaic of interests that make up this thriving and diverse ecosystem. The NDC wants to help everyone have a voice, and for those voices to be recorded on chain.   

    - - - -

    How does it do that? 

    - - - -

    The NDC is helping develop a system of governance. Once in place, it will allow people to vote on a wide variety of issues, elect members to different governing councils, and even make amendments to the constitution itself.

    - - - -

    The essence of the NDC brings this radical framework to life, and allows the community to then engage and take part in actively shaping the future of NEAR. 

    - - - -

    In its current stage, the NDC is working on a governance structure that includes the following sections: 

    - - - -
      -
    • Voting Body – This is every active near account, as qualified by the governance framework
    • -
    - - - -
      -
    • House of Merit – A group of experienced community members appointed by members of the ecosystem to represent them during votes and key decisions. 
    • - - - -
    • Council of Advisors – Advisors appointed to help shape the direction of the House of Merit.
    • - - - -
    • Transparency Commission – members of the community appointed to ensure checks and balances, are in place and upheld. 
    • - - - -
    • Community Treasury – Members of the House of Merit with support from the Council of Advisors help facilitate voting on how community funds are allocated. 
    • -
    - - - -

    You can find more information on the above here. 

    - - - -

    This is a work in progress, and is currently overseen by the Governance Working Group, or GWG. This is a collection of community members working on refining the models of governance that will help everyone have their say.  

    - - - -

    The Collective and the GWG invites anyone to share and discuss ideas. All the details on how to do that can be found here. 

    - - - -

    What is the scope of the NDC? 

    - - - -

    While the constitution and governance models are key, the NDC will also help to shape, define and deliver the following: 

    - - - -
      -
    1. NEAR Constitution. 
    2. - - - -
    3. Create and deploy local and global on-chain decision-making. 
    4. - - - -
    5. Create and deploy a repository of local and global on-chain journals, logs, and minutes. 
    6. - - - -
    7. Establish governing bodies, their operations, powers, and what checks and balances each one needs.
    8. - - - -
    9. Create and maintain a community treasury with a complete set of operating procedures and safeguards.  
    10. - - - -
    11. Create and maintain Community Guidelines, Code of Conduct, and Dispute Resolution protocols. 
    12. - - - -
    13. Create and deploy a communications strategy to ensure the work carried out by the NDC and GWG is easy to access. 
    14. - - - -
    15. A strategy to help the community find, access and use the NDC. 
    16. - - - -
    17. Help develop and deploy a DAO Governance Model
    18. - - - -
    19.  Facilitate growth of the NEAR ecosystem more broadly.
    20. -
    - - - -

    What role does the NEAR Foundation play in the NDC? 

    - - - -

    The Foundation is a partner and contributor to the NDC. It supports the work being carried out by the Collective, and will ultimately look to hand over its funding role to the community once it is ready to do so. 

    - - - -

    Who is working on NEAR Digital Collective? 

    - - - -

    The Collective is made up for members of the NEAR ecosystem. Some are former members of the Foundation, others are founders of projects, and others still are long term users and supporters of the blockchain and the projects that are built on it. 

    - - - -

    Feel free to reach out to any of the team leads. 

    - - - -

    Why is Decentralization Important? 

    - - - -

    Decentralization is a term that has become synonymous with blockchain, but has its origins as far back as the French Revolution in the 18th century. 

    - - - -

    Decentralization then, and now is the process by which the activities of an organization, particularly those regarding planning and decision making, are distributed or delegated away from a central, authoritative location or group.

    - - - -

    This is important because, as any student of history will tell you, when power becomes overly centralized, the opportunity for abuse increases. In 2022, members of the blockchain community experienced first hand what happens when centralized authorities abuse their power. 

    - - - -

    Members of the NEAR Community believe that the goal of decentralization is to improve on what came before. It believes that increasing transparency and democracy creates a fair and more equal community for everyone. 

    - - - -

    But to get there requires a commitment to a process. A process that will need to evolve and adapt to the needs of the community, and for that community to take part in shaping it.

    - - - -

    Decentralization is vital for the long term health and sustainability of any collection of people and ideas. The NDC is how the NEAR community is trying to achieve that.   

    - - - -

    How do I get involved? 

    - - - -

    Any member of the NEAR community is free to join any of the following workgroups:. 

    - - - -
      -
    • Constitution
    • - - - -
    • Governance & Tech Governance
    • - - - -
    • Legal
    • - - - -
    • Community Engagement
    • - - - -
    • Communications
    • -
    - - - -

    Get started by completing the Governance Working Group (GWG) onboarding process.

    - - - -

    Or if you’re looking for a deeper dive into how all of this works, you can see the Overview page. 

    -

    The post What is the NEAR Digital Collective? appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ndc/index.html b/public/blog/tag/ndc/index.html deleted file mode 100644 index 93a518b0f..000000000 --- a/public/blog/tag/ndc/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NDC Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ndcfunding/feed/index.xml b/public/blog/tag/ndcfunding/feed/index.xml deleted file mode 100644 index 22a7483ad..000000000 --- a/public/blog/tag/ndcfunding/feed/index.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - NDCfunding Archives – NEAR Protocol - - /blog/tag/ndcfunding/ - - Thu, 14 Sep 2023 08:38:18 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NDCfunding Archives – NEAR Protocol - /blog/tag/ndcfunding/ - 32 - 32 - - - Grassroots Support Initiative Update – September 11, 2023 - /blog/grassroots-support-closing-update/ - - - Mon, 11 Sep 2023 15:25:35 +0000 - - - - - /?p=20851 - - As a follow up to the NEAR Foundation’s previous grassroots support post, we wanted to take a moment to share …

    -

    The post Grassroots Support Initiative Update – September 11, 2023 appeared first on NEAR Protocol.

    -]]>
    - As a follow up to the NEAR Foundation’s previous grassroots support post, we wanted to take a moment to share an update on our progress. On September 4th, we closed the form through which projects could request support until the NDC funding mechanism is live. Over the past two weeks, we have spoken to builders across the ecosystem to understand their needs and begin mapping out the different paths forward to ensure they receive the support they need. 

    - - - -

    We have encountered a range of different requests and have been taking a holistic approach to understand the unique needs faced by each project and the resources available to help them achieve their goals moving forward. While financial support is only one part of this, there have been a number of questions about the range of options available, so we wanted to give everyone visibility into the next steps.

    - - - -

    Projects looking for funding will first explore internal resources including the BD/Ecosystem success team and ad hoc advisory support via a 1-1 call with the Horizon team, as well as by working closely with the MarketingDAO, CreativesDAO, and DevHub. Projects that do not qualify through any of these routes will have the ability to go to an internal review process. 

    - - - -

    To make sure the community voices are heard and involved in the process, members of the Governance Working Group (GWG) have collaborated with NEAR Foundation to define the criteria needed to receive financial support. The criteria the committee will use to make the selections are the following:

    - - - -
      -
    • Is the project built on NEAR and live on mainnet?
    • - - - -
    • Is there a current grant already in place? 
    • - - - -
    • Are there a minimum 100 monthly active users?
    • - - - -
    • Does the request cover a maximum of 3 months of runway?
    • -
    - - - -

    This process should be completed within the coming two weeks, at which point the NEAR Foundation will provide a further update. In the meantime, if you have any questions you can always reach us at community@near.foundation.

    - - - -

    -

    The post Grassroots Support Initiative Update – September 11, 2023 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ndcfunding/index.html b/public/blog/tag/ndcfunding/index.html deleted file mode 100644 index 086997a69..000000000 --- a/public/blog/tag/ndcfunding/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NDCfunding Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-2023/feed/index.xml b/public/blog/tag/near-2023/feed/index.xml deleted file mode 100644 index cab56290f..000000000 --- a/public/blog/tag/near-2023/feed/index.xml +++ /dev/null @@ -1,137 +0,0 @@ - - - - NEAR 2023 Archives – NEAR Protocol - - /blog/tag/near-2023/ - - Wed, 20 Dec 2023 18:20:17 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR 2023 Archives – NEAR Protocol - /blog/tag/near-2023/ - 32 - 32 - - - 2023: NEAR In Review - /blog/2023-near-in-review/ - - - Wed, 20 Dec 2023 18:10:12 +0000 - - - - /?p=21133 - - by Illia Polosukhin While this was a tough year in the market, we’re closing 2023 on a higher note for …

    -

    The post 2023: NEAR In Review appeared first on NEAR Protocol.

    -]]>
    - by Illia Polosukhin

    - - - -

    While this was a tough year in the market, we’re closing 2023 on a higher note for Web3. The NEAR ecosystem has made great progress on many fronts.

    - - - -

    Here’s a recap of some highlights and accomplishments from this year and a brief look ahead at 2024.

    - - - -

    Year in Review

    - - - -

    The NEAR ecosystem has made great strides in 2023 towards realizing the vision of mainstream adoption of the Open Web in spite of tough market conditions. Four of DappRadar’s top ten apps in all of Web3 are built on the NEAR Protocol and daily active users now regularly exceed a million per day. 

    - - - -

    From launching the Blockchain Operating System in February to NEAR DA in November, the NEAR ecosystem is offering solutions to builders across all Web3 networks to deliver the vision of the Open Web. With 7 million monthly active accounts, 35 million total accounts overall, and a current average of over 2 million transactions per day, the NEAR ecosystem has seen substantial growth in usage this year—and keeps outpacing its peers in terms of daily usage. 

    - - - -

    A lot of exciting technology built on NEAR was also released this year to enable chain abstraction. At EthDenver in February, NEAR Day featured the debut of the Blockchain Operating System—a fully decentralized open web stack and common layer for browsing and discovering open web experiences. By making it easier to build and deploy decentralized on-chain frontends for any network, B.O.S. helps developers build more discoverable and resilient apps while hiding the blockchain infrastructure from users.  

    - - - -

    Building on the benefits of the NEAR account model, the FastAuth onboarding solution lets users create an account in seconds using only an email address and device security. App developers can subsidize gas so users can start using apps immediately upon creating their account, and they only need to set up once in order to access any app on B.O.S. The team has gotten great feedback on the beta and will share some exciting next steps early next year. 

    - - - -

    B.O.S. also includes NEAR QueryAPI, a fully managed, open-source, serverless infrastructure offering NEAR blockchain indexers, storage, and GraphQL endpoints. QueryAPI simplifies the indexer building experience with JavaScript and interactive debugging and eliminates the need to manage cloud infrastructure. The beta already powers 25 indexers in production.

    - - - -

    Beyond rollups using decentralized frontends, I shared the news of 3 exciting Ethereum alignment initiatives to offer NEAR technology to the modular Ethereum ecosystem and benefit the broader Open Web. The collaboration with Polygon Labs on a zkWASM prover will optimize the NEAR L1 and bring NEAR to the forefront of the zero-knowledge research space. 

    - - - -

    The Foundation is working with Eigen Labs to build a fast finality layer for defragmenting Ethereum rollups and also launched NEAR DA, a cost-efficient and data availability layer compatible with L2s offering 11,000x cheaper DA than Ethereum and 30x cheaper than Celestia.

    - - - -
    NEAR reached #1 in daily active users for all of Web3 to close the year, per Artemis.
    - - - -
    4 of the top 10 apps in all of Web3 are built on NEAR & Aurora, per DappRadar’s 30-day ranking.
    - - - -

    Looking Ahead

    - - - -

    As we look towards 2024, the ecosystem will build upon the innovations and market recognition of 2023 with some major advancements at every layer of NEAR’s open web stack, plus expand into exciting new territory on the AI and product fronts. 

    - - - -

    2024 is the year of chain abstraction: blockchains and other infrastructure will become increasingly invisible to users and developers. Just as we don’t need to know if a given website or app we’re using every day is running on Google or Amazon servers, most app users on the Open Web shouldn’t need to manage infra, toggling between accounts and wallets, bridging, or gas. This is the biggest barrier to mainstream adoption. 

    - - - -

    The NEAR ecosystem has been building for chain abstraction since the very beginning with sharding and the account model, and more recently the B.O.S., FastAuth, and ETH alignment solutions. From the user perspective the NEAR blockchain functions like a single platform, but under the hood, every account and smart contract is its own logical chain. 

    - - - -

    Developers today pick an ecosystem based on where they can access liquidity and users, but that will matter less if they can access users and deposit liquidity from any chain – so they can just choose the infrastructure that works best for their application. 

    - - - -

    A big part of advancing chain abstraction for the Web3 space is account aggregation. In order to enable users to transact across all blockchains without needing to think about underlying infrastructure or switch networks, they need a single account from which they can navigate all of Web3. In the true spirit of Web3, this single account should be non-custodial and non-dependent on a specific wallet software or any other single service provider. In addition to FastAuth, Pagoda will launch chain signatures and intent relayers to deliver the full scope of this vision in the first half of 2024.

    - - - -

    At the protocol level, the team will launch Phase 2 of sharding, which is a big deal. TLDR: introducing stateless validation will expand the original Nightshade design, allowing us to avoid fraud proofs. As part of this transition, the state of each shard moves fully into memory, improving performance of each shard—currently 4, soon to be 5—by 10x+. Adding zkWASM on top as the next step will compress execution proofs, enabling even greater decentralization of validators. 

    - - - -

    Finally, the NEAR ecosystem will make bigger strides into AI. I’ve been sharing my views on how AI and blockchains can work together with humans to improve our collective systems and individual experiences while minimizing risk and centralization. We’re working both on AI-driven governance and AI-augmented Web3 experiences to work towards the vision of user-owned AI. 

    - - - -

    Stay tuned for more updates and specifics in January 2024. Thank you to every member of the NEAR community for staying the course and believing in our shared Open Web vision.

    -

    The post 2023: NEAR In Review appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-2023/index.html b/public/blog/tag/near-2023/index.html deleted file mode 100644 index 815c83da2..000000000 --- a/public/blog/tag/near-2023/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR 2023 Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-2024/feed/index.xml b/public/blog/tag/near-2024/feed/index.xml deleted file mode 100644 index 6935b8c48..000000000 --- a/public/blog/tag/near-2024/feed/index.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - - NEAR 2024 Archives – NEAR Protocol - - /blog/tag/near-2024/ - - Thu, 11 Jan 2024 08:04:19 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR 2024 Archives – NEAR Protocol - /blog/tag/near-2024/ - 32 - 32 - - - An Update from the NEAR Foundation - /blog/an-update-from-the-near-foundation/ - - - Thu, 11 Jan 2024 08:01:06 +0000 - - - - /?p=21148 - - Dear NEAR Community, The NEAR Foundation’s vision has always been to help the world create a truly Open Web, giving …

    -

    The post An Update from the NEAR Foundation appeared first on NEAR Protocol.

    -]]>
    - Dear NEAR Community,

    - - - -

    The NEAR Foundation’s vision has always been to help the world create a truly Open Web, giving all people full control of their data, privacy, and power of governance. In 2023, the NEAR ecosystem saw remarkable progress towards this vision, with the NEAR Protocol now home to three of the top ten apps in Web3, a record number of daily users, and closer collaboration than ever with the Ethereum community.

    - - - -

    With the NEAR Foundation Council (NFC), we’ve conducted a thorough review of the Foundation’s activities. During this process, we heard feedback that the Foundation has not always been as effective as it could be, sometimes moving too slowly and trying to do too many things at once. Following this review, we have decided to significantly consolidate the core Foundation team to focus on a narrower and higher-impact set of activities. Over time, Foundation’s footprint will continue to contract as the ecosystem further decentralizes and various nodes drive more activity in the network and across the ecosystem.

    - - - -

    As part of this realignment, NEAR Foundation will reduce its team by approximately 40%, impacting 35 colleagues, primarily across the marketing, business development, and community teams. The NEAR Protocol Engineering Team at Pagoda will continue to operate as it has. The NEAR Foundation will provide support to affected colleagues during this time to help them find new opportunities in the NEAR ecosystem, the Web3 industry, and beyond. We thank each of our departing colleagues for your efforts and contributions towards our shared vision of the Open Web.

    The NEAR Foundation treasury remains strong and well-managed, with over $285m fiat, 305m NEAR (worth over $1B), and $70m of investments and loans. The Foundation is well-placed to continue to support the ongoing growth, development, and further decentralization of the NEAR Protocol and ecosystem.

    - - - -

    Thank you to everyone in the NEAR community for your ongoing efforts and support. We are excited to move forward with more focus, more efficiency, and more speed. We’ll share more updates soon about what comes next as we work to advance chain abstraction, user-owned AI, and mainstream adoption of the Open Web.

    - - - -

    Keep building,

    - - - -

    Illia

    - - - -

    –Illia Polosukhin, CEO of NEAR Foundation

    - - - -

    -

    The post An Update from the NEAR Foundation appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-2024/index.html b/public/blog/tag/near-2024/index.html deleted file mode 100644 index 115156888..000000000 --- a/public/blog/tag/near-2024/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR 2024 Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-apac/feed/index.xml b/public/blog/tag/near-apac/feed/index.xml deleted file mode 100644 index e83722779..000000000 --- a/public/blog/tag/near-apac/feed/index.xml +++ /dev/null @@ -1,485 +0,0 @@ - - - - NEAR APAC Archives – NEAR Protocol - - /blog/tag/near-apac/ - - Mon, 18 Sep 2023 16:32:44 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR APAC Archives – NEAR Protocol - /blog/tag/near-apac/ - 32 - 32 - - - ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  - /blog/icymi-scootering-through-web3-at-near-apacs-vietnam-showcase/ - - - Mon, 18 Sep 2023 16:32:42 +0000 - - - - - - /?p=20862 - - It was an incredible first-ever NEAR APAC, with the NEAR ecosystem scootering through Saigon over the last two days. Vietnam …

    -

    The post ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  appeared first on NEAR Protocol.

    -]]>
    - It was an incredible first-ever NEAR APAC, with the NEAR ecosystem scootering through Saigon over the last two days. Vietnam served as the perfect backdrop for NEAR’s inaugural showcase in Asia-Pacific, with community members, B.O.S. builders, and general Web3 enthusiasts coming together in one of the region’s most dynamic countries.

    - - - -

    The event was spearheaded by the NEAR Vietnam Hub with support from the NEAR Foundation, exemplifying strong commitment and collaboration between local and global ecosystem stakeholders.  ICYMI, here are some of the biggest sessions, announcements, and events from NEAR APAC 2023.

    - - - -

    ICYMI, here are some of the biggest sessions, announcements, and events from NEAR APAC 2023.

    - - - -

    Web3’s bright investment outlook in Asia-Pacific

    - - - -
    - - - -

    One of the most encouraging and optimistic sessions was moderated by NEAR’s Head of Finance, David Norris, focusing on the current and future outlook of blockchain investment and development in the region. David was joined by Web3 venture veterans Riccardo Pagano from Outlier Ventures and Whiplus Wang of IVC crypto.

    - - - -

    The trio dove into the current state of blockchain investment in APAC, and how Web3 might just ascend to becoming one of the most invested sectors in the region from a venture and infrastructure perspective. Ricardo in particular emphasized that he’s seeing a shift in perception from investors, with Web3 going from a niche technology to its own broad-based sector.

    - - - -

    “Even though we’re technically in a bear market, investment in Web3 sub-sectors like gaming is still strong,” added Whiplus. “Games like Angry Birds and Fruit Ninja were instrumental in onboarding Web2 users onto the smartphone, for example. That’s why investment into blockchain game publishers is increasing — to find that killer game that onboards billions.”

    - - - -
    - - - -

    Whiplus also likened successful blockchain startups to a bowl of Pho, with a blend of technical and business elements being integral to a delicious final dish. The panel also touched on technical nuances like ZK rollups and modular blockchains, emphasizing the need to invest in talent and innovation through initiatives like hackathons.

    - - - -

    The session encapsulated a forward-looking perspective on Web3’s trajectory. With the bar for founder participation evidently rising, the panel stressed the importance of education in the space. There was unanimous optimism about Southeast Asia’s digital future as potentially outpacing even established tech hubs like Korea and Japan.

    - - - -

    NEAR supports B.O.S. and blockchain builders in APAC

    - - - -
    - - - -

    Tons of activity also took place in and around the Builder Stage, with the NEAR Foundation and local blockchain organizations teaming up to educate and assist developers, builders, and job seekers in advancing themselves into Web3. Cameron Dennis, CEO of Banyan, led a panel on the stage informing developers on how to upskill from Web2 to Web3.

    - - - -

    Local developer advocates from notable projects like the Graph and Khyber network also participated in sessions, workshops, and panels on the Builder Stage designed to upskill local blockchain professionals. There was something for everyone, from a job fair for Web3 newbies to a Greenhouse area connecting founders and projects to VCs for funding.

    - - - -

    Exploring everything from dApp architecture to tokenomics, the Builder Stage action was highlighted by an incredible Hackathon, with participants receiving guidance from experts like Oleg Fomenko, founder of SWEAT. On the final night of the festivities, NEAR co-founder Illia Polosukhin presented awards to the winners on stage in front of a packed main hall.

    - - - -

    Pagoda takes the main stage to talk user adoption and FastAuth

    - - - -
    - - - -

    Alex Chiocchi, the CPO of Pagoda, showcased FastAuth during his session titled “Unlocking the Power of B.O.S: Product Update for Founders & Developers.” FastAuth aims to redefine the user experience for developers and founders, addressing the longstanding challenges of both onboarding and retaining new Web3 users.

    - - - -

    A primary takeaway was how FastAuth’s next release will minimize gas fees when onboarding, thus removing barriers for end-users. The introduction of multiparty compute (MPC) allows proofs from various organizations to be combined, simplifying processes like email recovery. Chiocchi emphasized the potential for users to migrate effortlessly from Web2 logins, hinting at a seamless integration between the two web generations.

    - - - -

    Discussing the nuances of retaining users in Web3, Chiocchi stressed that coin incentives alone aren’t sufficient. The “toothbrush test” was highlighted, illustrating that many apps don’t become daily necessities for users. Trust plays a pivotal role, especially with the rise of scams in the decentralized space. 

    - - - -

    Side events and after-parties storm the streets of Saigon

    - - - -
    - - - -

    NEAR APAC fully embraced the “work hard, play hard” ethos of Vietnam and Asia-Pacific. Even during the event, there were LED dancers, Manga Cosplay, and several massive DJs and party breaks. Not to mention the NEAR APAC Opening Night party at the Intercontinental Hotel, where Illia officially welcomed attendees and kicked things off in an intimate setting.

    - - - -

    And in one of the coolest side events in recent NEAR memory, Dap Dap showcased its platform to B.O.S. enthusiasts at the My House meeting venue nestled in one of Saigon’s many cozily-lit alleyways. Dap Dap is the first commercial B.O.S. product and will act as a gateway to hundreds of chains and protocols for users from a single, user-friendly interface.

    - - - -
    - - - -

    B.O.S Beats by DAO Records was the grand finale of NEAR APAC, offering a vibrant blend of hip-hop beats from prominent DJs on the decentralized record label. Held at Indika Saigon — and with pizza supplied by Pizza DAO — attendees enjoyed live performances, refreshments, and networking opportunities with the global and APAC NEAR communities. 

    - - - -

    NEAR APAC was an incredible Web3 Bánh Mì, layering an eclectic mix of speakers, insights, and events to create something completely unique. The NEAR Foundation would like to thank every cook in the kitchen, especially local partners like the NEAR Vietnam Hub who made sure that the first ever NEAR APAC had the perfect mix of sweet, sour, and spicy.

    -

    The post ICYMI: Scootering Through Web3 at NEAR APAC’s Vietnam Showcase  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands - /blog/near-apac-day-2-recap-asia-gaming-trends-interoperability-and-web3-for-brands/ - - - Sun, 10 Sep 2023 14:28:46 +0000 - - - - - - - /?p=20841 - - It would’ve been hard to imagine topping a jam-packed Day 1 of NEAR APAC, but Day 2 managed to do …

    -

    The post NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands appeared first on NEAR Protocol.

    -]]>
    - It would’ve been hard to imagine topping a jam-packed Day 1 of NEAR APAC, but Day 2 managed to do just that. The gorgeous Sunday in Saigon covered a wide range of topics, including significant discussions on the future trends in Web3 such as how brands can hop on board the Web3 bandwagon and a creative proposal to unite all Layer 1’s for mass adoption.

    - - - -

    With each session, industry leaders shed light on challenges and the future trajectory of the fast-paced Web3 ecosystem in APAC. From the unique positioning of Web3 gaming in Asia to the potential rise of the next Web3 cycle, the discussions were varied and far-reaching. Let’s dive on into all the Day 2 happenings at NEAR APAC in Vietnam!

    - - - - - - - -

    Let’s begin the Day Two recap with a standout panel diving into the next big Web3 trends. Experts agreed that it won’t just be about technological progress, but also the transformative ways that blockchain will weave into daily life. Asset tokenization, generative AI integration, and the proliferation of decentralized creator economies were some top trends on the table.

    - - - -
    - - - -

    “Generative AI and asset tokenization are revolutionizing Web3 ecosystems, especially in growing economies like India,” said Sudeep Choudhari, head of blockchain at the India National Payments Corporation. “As integration across borders accelerates, we’ll also challenge traditional FX rates, anticipating a future with minimal cross-border payment costs.”

    - - - -

    Hanna Tantoco, APAC Marketing Director at Blockdaemon, piggybacked on the transformative role of generative AI in enhancing blockchain user experiences. She also pointed out the rising prominence of gaming in Asia, particularly on NEAR. Additionally, she highlighted Singapore’s burgeoning creator economy, powered largely by NFTs, as another future trend.

    - - - -

    How brands can futureproof themselves with blockchain

    - - - -

    Another morning highlight was a panel discussion about how brands and enterprises can harness the potential of Web3 to adapt and thrive. Key points revolved around democratizing user data control, countering data monopolization by tech giants, tokenizing assets, and challenges in linking the physical and digital worlds.

    - - - -

    “Enterprises often face challenges with hiring experts who may quickly move on to other projects,” observed Oleg Fomenko, founder of SWEAT. “While consultancies can provide insights, the real breakthrough comes when you start building and experimenting with MVPs. Though initial attempts might fall short, perseverance can yield surprising results.”

    - - - -
    - - - -

    Alex Chiocchi, CPO of Pagoda, added that Web3 streamlines verification, challenging traditional ad networks. By using an open blockchain system, excessive fees are prevented, promoting shared value with users. This shift allows benefits like self-custody and reputation while redistributing margins back to the people.

    - - - -

    Among the key takeaways from the session was that businesses harnessing blockchain’s capabilities can anticipate a transformative impact on the global economy, especially with asset tokenization’s projected growth through 2030. As brands navigate challenges like ensuring digital authenticity and early adoption, having a targeted strategy is crucial.

    - - - -

    Web3 gaming: Asia’s landscape and blockchain utilization

    - - - -

    The Asian gaming landscape is buzzing with the rise of Web3 development, promising an unprecedented era of innovation and user empowerment. Central to discussions at the “Web3 Gaming: Asia Landscape” session was the gaming community’s appetite for asset and data ownership, often prioritizing this over the complexities of Web3 itself.

    - - - -

    After attending Korea Blockchain Week, it’s evident that Japan and Korea’s mobile giants are pioneering in Web3 gaming,” said Luke Xie, founder of gaming VC fund Press Start Capital. “As opposed to Web3 games like Axie, creating AAA games takes much longer. Given the rapid pace of crypto, former mobile developers align better with this fast-paced dynamic.”

    - - - -

    Ishank Gupta, co-founder of Kratos Studios in India, emphasized that gamers prioritize asset and data ownership over backend Web3 tech. He predicted that blockchain games should bring benefits that gamers care about with a focus on ease of usability. For instance, leading studios in India are integrating well-known IP into Web3 games while ensuring they remain engaging.

    - - - -

    “We’re witnessing a new golden age of gaming driven by indie studios,” added Xie. “Small teams, empowered by AI, are crafting games that punch above their weight. We believe that on-chain gaming, while difficult to execute at present, is the future. It’s all about selecting the right chain based on tech, community, and support. NEAR excels at all of the above.”

    - - - -

    The panel agreed that the Web3 gaming industry in APAC and beyond is undergoing a transformative phase, with blockchain offering gamers more control over assets and data. As developers continue to build, the focus will be on seamless onboarding, speed, and user-centric experiences. Blockchains should be subtly integrated without disrupting the gaming experience.

    - - - -

    Bringing Web3 together with Multichain: a call for collaboration 

    - - - -

    Today’s blockchain landscape consists of independent Layer 1’s vying for supremacy, bringing up the core question of interoperability. With users often navigating several ecosystems, creating cross-chain experiences becomes paramount. This star-studded panel explored new frameworks to address hurdles and challenges in the current siloed multi-chain user experience.

    - - - -
    - - - -

    “Web3’s ethos is modularity, similar to Lego blocks,” explained NEAR CEO Marike Flament. “While we prioritize access and user growth, interoperability challenges persist. But trust and unified solutions drive adoption, not a fractured approach. It’s essential that technology seamlessly serves the end user.”

    - - - -

    Cameron Dennis, CEO of Banyan, added that key management is a critical issue. He pointed out ways to simplify these processes with tools like FastAuth. Dennis added that addressing the noticeable gap in cross-chain liquidity should be a focus. He believes that a true multichain future that drives adoption will solve key and wallet management for a better UX.

    - - - -

    “Reflecting on a decade in this space, the competitive landscape has shifted,” mused Mary Beth Buchanan from the Cardano Foundation who is also an advisor to NEAR, “Earlier, exchanges hesitated to collaborate, fearing a loss of advantage. Today, there’s a collective push to learn from one another, ensuring technology works seamlessly for the end user.”

    - - - -

    Cameron believes that reinforcing the current ecosystem is paramount before extending cross-chain efforts, even though creating a decentralized internet remains a resource-intensive endeavor.

    - - - -

    Marieke stressed the importance of open-source technology in attracting top talent. Drawing inspiration from Web2’s approach to 5G standardization, she suggested that Layer 1 leaders could unite in an ‘L20’ alliance to champion unified standards, fostering a unified vision for the industry’s future.

    - - - -

    And that’s a wrap for the official Day 2 sessions at NEAR APAC. From gaming and brand adoption to multi-chain standards and collaboration, it was clear that this first-of-its-kind regional event was a rousing success for developers and the NEAR community alike. Sunday in Saigon rolls on with more side events and after-parties, so stay tuned for the full ICYMI tomorrow.

    -

    The post NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 - /blog/near-apac-day-one-scaling-local-adoption-regional-regulation-and-ai-in-focus/ - - - Sat, 09 Sep 2023 12:14:36 +0000 - - - - - - - - - /?p=20835 - - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. …

    -

    The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

    -]]>
    - After many months in the making, the inaugural NEAR APAC conference kicked off today in Ho Chi Min City, Vietnam. Held in conjunction with the NEAR Vietnam community and NEAR Foundation, NEAR APAC is showcasing the vibrant crypto and Web3 community across the region as well as the potential of the B.O.S. and Open Web both locally and globally.

    - - - -

    The day was charged with excitement, drawing over 8,000 attendees from various corners of the APAC region and beyond. With Web3 thought leaders, innovators, and enthusiasts converging in Vietnam, Day One of NEAR APAC kicked off with a slew of riveting discussions, industry insights, and speculations on the future of the Open Web with a focus on APAC.

    - - - -

    From discussions around regional growth and investment potential to how AI and blockchain will transform the future of work, here’s everything that went down at an incredible start to NEAR APAC.

    - - - -

    Setting the stage for NEAR APAC with Vietnam in focus

    - - - -

    The event kicked off with a focus on southeast Asia, with NEAR’s Vietnam country director Riley Tran welcoming attendees and providing context as to Asia’s critical role in the overarching development and expansion of Web3. Tran was followed by two NEAR luminaries, CEO Marieke Flament and co-founder Illia Polosukhin.

    - - - -

    “Asia’s young demographics and rapid digital growth, especially in Vietnam, position it as a leader in crypto and blockchain growth,” Riley explained. “With over 100 million new internet users in just three years, Asia’s momentum in Web3 is accelerating”

    - - - -

    Marieke added that the overall NEAR ecosystem remains strong with over 29M active wallets and 650K daily active accounts. She added that a collaborative approach to building tomorrow’s Open Web is critical for tackling significant societal and digital challenges.

    “Today’s Web 2.0 is closed and siloed, with the prevailing digital culture being a toxic dialectic,” Marieke expressed. “But the value loop of an Open Web holds immense promise. We’re already seeing how projects like KaiKai, SWEAT, and PlayEmber can move the needle in the right direction.”

    - - - -

    Echoing Mariek’s sentiment, Illia emphasized that it’s not necessarily about championing a specific blockchain, but about creating a common layer and interface for the Open Web. This is precisely what the Blockchain Operating System (B.O.S.) is in the process of achieving.

    - - - -

    “Looking forward, tech isn’t the only focus,” said Illia. “It’s about blending scalable solutions with user-centric experiences, with the B.O.S. becoming the essential entry point into Web3 for both users and developers.”

    - - - -

    Asia’s role in mainstream adoption and regulatory hurdles

    - - - -

    The push for mainstream blockchain adoption in APAC was also in focus on Day One, with NEAR Foundation CMO Jack Collier leading a panel discussion on current adoption challenges and how APAC can potentially lead the way in overcoming them.

    - - - -

    “I’m extremely bullish on gaming as a key part of mass adoption,” opined Don Pham, Google Cloud’s regional Web3 specialist. “Vietnam is the birthplace of Axie Infinity, which is just the beginning of blockchain gaming’s potential. Use cases like loyalty, gaming, and music NFTs combined with better UX will likely be the path forward.”

    - - - -

    The discussion dove deeper into the importance of user experience in the adoption of blockchain. Marieke reiterated that while technology forms the backbone, the real test will be simplifying the user journey, which can significantly hasten adoption across the APAC region as well as globally.

    - - - -

    Regulation was also in focus with a panel about blockchain policies and APAC’s vision for governments and associations. Mary Beth Buchanan, a board member of the Cardano Foundation, drove home the need for regulatory clarity while discussing regional frameworks in countries like Hong Kong.

    - - - -

    “The biggest challenge is not necessarily regulation, but lack of clarity,” observed Buchanan. “If regulations are unclear that will cause investors not to want to invest in the space. Builders become hesitant to build and users aren’t going to know what the rules are. Regulators need to recognize that clarity is what everyone wants.”

    - - - -

    Spotlight on Artificial Intelligence during the afternoon sessions

    - - - -

    Day One of NEAR APAC dedicated a significant chunk of its schedule to exploring the intricate interplay between AI and blockchain, particularly their role in APAC’s future technology and Web3 landscape. Illia took the stage just after the lunch break to discuss the Convergence of AI and Web3, diving deep into AI-empowered DAO and the future of AI-assisted work.

    - - - -

    “While technologies like ChatGPT have found product market fit, much of AI is still siloed and doesn’t empower open source communities and projects,” Illia posited. “Web3 can operate in the middle, with AI models incorporating all participants and data sources. DAOs, for example, can be co-piloted by AI to achieve goals and KPIs faster and more efficiently.”

    - - - -

    In the following panel discussion entitled “The Roles of Blockchains in an AI World,” Illia was joined by several AI and blockchain experts from the APAC region. One of the more distinguished panel members was Dr. Nguyen An Khuong, a lecturer and blockchain researcher from Ho Chi Minh University of Technology, who provided an academic perspective. 

    - - - -

    “We have a lot of research endeavors in Vietnam around ensuring AI’s ethical applications using blockchain,” commented Dr. Nguyen. “We’re looking at how transparency and accountability in AI decisions can be drastically improved with blockchain technology. Combining a neutral AI with a blockchain’s public ledger could enhance the ecosystem and foster wider adoption.”

    - - - -

    Illia drove home that the potential “Skynet” scenario of AI taking over the world is mostly a projection of what humans might do if they were given supercomputing powers. In reality, developments like the B.O.S. and NEAR Tasks will aid humans in success and productivity, with AI agents acting as middlemen for assistance, sourcing, and even creativity.

    - - - -

    Day One of the first-ever NEAR APAC was a rousing success, with these highlights just being the tip of the iceberg. The crowd was treated to bánh mì’s and Manga cosplay during lunch, B.O.S. building and gaming workshops on the Builder Stage, and an awe-inspiring NFT gallery from APAC creators.

    - - - -

    As the sun sets in Saigon, the NEAR Foundation couldn’t be more appreciative of the Vietnamese crypto community. The momentum rolls on tomorrow with Day Two, so stay tuned for more updates and insights around emerging APAC trends in Web3, how blockchain gaming is taking off in Asia-Pacific, and local DeFi developments. 

    - - - -

    If Day One was any indication, the NEAR community’s growth, presence, and development in APAC will only continue accelerating through 2023 and beyond!

    -

    The post NEAR APAC Day One: Scaling Local Adoption, Regional Regulation, and AI in Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - How Vietnam Became a Web3 Powerhouse  - /blog/how-vietnam-became-a-web3-powerhouse/ - - - Mon, 04 Sep 2023 14:00:00 +0000 - - - - /?p=20828 - - Asia is Web3’s engine room. According to a report by Emergen Research, the Web3 global market is expected to be …

    -

    The post How Vietnam Became a Web3 Powerhouse  appeared first on NEAR Protocol.

    -]]>
    - Asia is Web3’s engine room. According to a report by Emergen Research, the Web3 global market is expected to be worth $81.5 billion by 2030, growing at an annual rate of more than 40%. Asia is set to capture most of that growth.  

    - - - -

    That’s because the region has some of the highest adoption rates of Web3 technologies anywhere in the world. In Japan, more than five million people currently own cryptocurrency, the South Korean government became the first to directly invest in the metaverse, and   almost 70% of people in Southeast Asia alone have used at least one metaverse-related tech in the last year.

    - - - -

    One of the leaders in the region is Vietnam. In recent years, international investors have flooded into Vietnam and established funds specialising in blockchain – with capital inflows into non-fungible token (NFT) assets rising from 37 million USD to 4.8 billion USD in 2021. 

    - - - -

    It’s why the NEAR Foundation is one of the leading investors in Asia, thanks to its partnerships with the likes of Alibaba Cloud, and why it’s hosting its first major conference in Vietnam.

    - - - -

    Taking place September 8-12 NEAR APAC will bring together more than 100 global blockchain leaders to discuss blockchain’s unlimited future through the latest blockchain technology updates, development trends, and how blockchain ecosystems drive Web3 mass adoption. 

    - - - -

    Vietnam on the rise 

    - - - -

    Vietnam has all the ingredients to become a Web3 super power. The country has 

    - - - -

    more than 400,000 skilled software engineers, produces 50,000 IT graduates annually, and has an IT labour force more than a million strong. 

    - - - -

    The nation’s software engineers rank at an impressive 8th place globally in terms of capability — 95% of which have bachelor’s degrees or higher in IT. It’s unsurprising then to hear that Vietnam now has 3,800 blockchain-related projects, 200 venture capital funds, and 100 project incubation funds to support the country’s startups. 

    - - - -

    Vietnam’s tech landscape is now full of startups and innovation hubs fostering creativity in Web3. Local incubators and accelerators provide mentorship, resources, and networking opportunities for Web3 entrepreneurs. 

    - - - -

    That growth also has government support. In 2021, Vietnamese Prime Minister Pham Minh Chinh greenlit the country’s “e-government” development strategy designed to create regulatory clarity for Web3 projects. Last year, the country launched its first official blockchain association, which is helping blockchain builders and business owners become a bigger part of the regulatory conversation.  

    - - - -

    Its chairman, Hoang Van Huay, has shared the Vietnam Blockchain Association’s commitment to “providing consultation on building legal framework, regulations, and standards in developing services and products on blockchain”. This commitment is part of a broader mission to accelerate the growth of blockchain technology in Vietnam.

    - - - -

    It’s no wonder then that Vietnam ranks first in the Global Cryptocurrency Adoption Index released by Chainalysis, up from 10th place the year before. 
    Vietnam is on the rise, and the NEAR Foundation is here to support it. Join us at NEAR APAC on 8-12 September 2023 in Ho Chi Minh City.

    -

    The post How Vietnam Became a Web3 Powerhouse  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-apac/index.html b/public/blog/tag/near-apac/index.html deleted file mode 100644 index b545556fa..000000000 --- a/public/blog/tag/near-apac/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR APAC Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/near-balkans/feed/index.xml b/public/blog/tag/near-balkans/feed/index.xml deleted file mode 100644 index 7fe9c5aef..000000000 --- a/public/blog/tag/near-balkans/feed/index.xml +++ /dev/null @@ -1,320 +0,0 @@ - - - - NEAR Balkans Archives – NEAR Protocol - - /blog/tag/near-balkans/ - - Thu, 27 Jul 2023 19:02:02 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Balkans Archives – NEAR Protocol - /blog/tag/near-balkans/ - 32 - 32 - - - NEAR’s BOS Impact at We Are Developers 2023 World Congress - /blog/nears-bos-impact-at-we-are-developers-2023-world-congress/ - - - Thu, 27 Jul 2023 16:45:00 +0000 - - - - /?p=20770 - - The excitement is palpable as NEAR hits the ground in the vibrant city of Berlin for the We Are Developers …

    -

    The post NEAR’s BOS Impact at We Are Developers 2023 World Congress appeared first on NEAR Protocol.

    -]]>
    - The excitement is palpable as NEAR hits the ground in the vibrant city of Berlin for the We Are Developers World Congress 2023. With a packed agenda and a bustling venue, the stage is set for a memorable exploration into the Blockchain Operating System (BOS).

    - - - -

    Amidst a crowd of enthusiastic developers, NEAR is showcasing the immense potential of BOS. The team looks forward to sparking curiosity, fostering innovation, and expanding horizons within the global developer community, setting the tone for a transformative two days.
    Let’s take a quick look at what happened on Day 1 with NEAR at We Are Developers, before taking a look at what’s on the schedule for Day 2, July 28th.

    - - - -

    On the agenda: NEAR’s engaging BOS offerings

    - - - -
    - - - -

    The conference kicked off with “Exploring BOS: The Blockchain Operating System by NEAR”, scheduled for Thursday, July 27, at 3:30 PM and led by Andrej Šarić, senior NEAR developer. The presentation dissectd how BOS is redefining the application-building landscape while highlighting user-friendly onboarding and seamless multi-chain interactions.

    - - - -

    Friday, July 28, will see the enlightening “Mastering BOS: A Developer Workshop”, helmed by Andrej along with fellow senior developer, Alen Meštrov. A must-attend for developers keen to enhance their BOS acumen, this comprehensive workshop promises an in-depth, immersive learning experience, centered around the innovative capabilities of BOS.

    - - - -
    - - - -

    Additionally, the “Tekuno Activation: Devs Without Limits” is adding an exciting gamified element to the conference, running throughout both days (more on this below). Attendees are encouraged to collect PODs at the NEAR booth, as well as during both BOS sessions, culminating in the exclusive “We Are Devs” POD and a shot at winning a ticket to NEARCON 2023.

    - - - -

    Making waves: the buzz at the NEAR booth

    - - - -
    - - - -

    NEAR’s BOS booth is serving as a dynamic hotspot of interactivity and engagement throughout the event. Attendees enthusiastically participated in the “How Big of a Dev BOS(s) are you really?” quiz, testing their knowledge about blockchain development while adding a dose of fun to their conference experience.

    - - - -

    In addition to being a learning hub, the booth continues to be a place for connection. Visitors had the opportunity to meet some of the brilliant minds behind NEAR, fostering meaningful interactions, exchanging ideas, and discussing BOS’s transformative potential. The booth was also brimming with awesome NEAR merchandise for everyone who stopped by.

    - - - -

    Tekuno activation: “Devs Without Limits” POD

    - - - -
    - - - -

    The feature stealing the spotlight at the NEAR booth is the Tekuno activation. Offering the exclusive “Devs Without Limits” NFT collection, attendees can collect PODs at the booth, the “Mastering BOS” workshop, and the “Exploring BOS” talk. Successfully gathering these PODs unlocks the ultimate “We Are Devs” POD and offers the chance to win a free ticket to NEARCON 2023.

    - - - -

    With the We Are Developers World Congress 2023 in full swing, the NEAR team continues to engage passionately with attendees and fellow developers. Every conversation, presentation, and interaction amplifies the buzz around the transformative power of the Blockchain Operating System (BOS).

    - - - -

    There’s plenty more to explore and experience as the event unfolds. If you haven’t yet visited the NEAR booth or attended our sessions, seize the opportunity to dive into BOS and discover its revolutionary impact on the application-building process. And don’t forget to partake in all the fun and rewards, like a chance to win NEARCON tickets with Tekuno PODs.

    -

    The post NEAR’s BOS Impact at We Are Developers 2023 World Congress appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at We Are Developers World Congress 2023: Build with BOS in Berlin - /blog/near-at-we-are-developers-world-congress-2023-build-with-bos-in-berlin/ - - - Tue, 25 Jul 2023 13:56:09 +0000 - - - - /?p=20754 - - NEAR is  gearing up for a big presence at the We Are Developers World Congress 2023. It’s an exciting opportunity …

    -

    The post NEAR at We Are Developers World Congress 2023: Build with BOS in Berlin appeared first on NEAR Protocol.

    -]]>
    - NEAR is  gearing up for a big presence at the We Are Developers World Congress 2023. It’s an exciting opportunity to demonstrate the power of the Blockchain Operating System (BOS), fostering a wave of innovation and expanding horizons for developers in Germany, the Balkans, and beyond.

    - - - -

    A dedicated NEAR team  will be engaging with attendees over 10,000 expected global attendees at We Are Developers. The congress will take place in the dynamic city of Berlin, Germany, on the 27th and 28th of July.

    - - - -

    So if you’re in the area and want to explore new BOS development opportunities in-person, NEAR at the We Are Developers World Congress 2023 is a must-attend.

    - - - -

    NEAR’s participation in the event

    - - - -

    Kicking off on Friday, July 28, 2023, from 9:00 AM to 11:00 AM, the “Mastering BOS” workshop, hosted by senior NEAR developers Andrej Šarić and Alen Meštrov. This deep dive session aims to equip attendees with the skills and knowledge to leverage BOS development and tolling, from a smooth onboarding process to deploying their first application.

    - - - -

    On Thursday, July 27, 2023, from 3:30 PM to 4:00 PM, Andrej Šarić will add depth to NEAR’s presence during “Exploring BOS.”  The session will delve into how BOS simplifies the application-building process, improves user onboarding, and facilitates multi-chain interactions, positioning it as an essential tool for developers and users alike.

    - - - -

    NEAR’s BOS booth will be an interactive hub, offering engaging activities and a fun quiz. Visitors can also get their hands on cool NEAR merchandise. And Tekuno’s Devs Without Limits activation allows participants to collect PODs at three specific locations: the “Mastering BOS” workshop, the “Exploring BOS” talk, and the NEAR BOS booth.

    - - - -

    The Tekuno collab will allow participants to collect PODs at specific locations, which unlocks a special “We Are Developers” Proof-of-Doing (POD) with a chance to win a ticket to NEARCON 2023. Successfully collecting all three PODs unlocks the “We Are Developers” POD, affirming their active participation and engagement at the congress.

    - - - -

    The Tekuno Activation: Devs Without Limits will be happening throughout the duration of the conference, from Thursday, July 27 to July 28, 2023.

    - - - -

    Importance of BOS and NEAR for the Developer Community

    - - - -

    The NEAR team will spread the word and underscore how BOS is making the application-building process smoother and more accessible for developers worldwide. By participating in the “Mastering BOS” workshop and “Exploring BOS” talk, developers can explore the myriad advantages of using BOS and the NEAR Protocol. 

    - - - -

    NEAR’s team will highlight BOS’s ability to facilitate composability, swift app creation, and its chain-agnostic capabilities, empowering developers attending the congress. NEAR’s presence at the congress aims to showcase BOS’s significant potential for expanding the NEAR ecosystem. 

    - - - -

    By engaging with global developers at this event, NEAR aspires to foster a greater understanding of BOS, stimulate increased adoption, and consequently, amplify awareness and growth of the NEAR community.  

    - - - -

    As NEAR gears up for We Are Developers World Congress 2023, their mission is clear —  to illuminate the immense potential of the Blockchain Operating System (BOS). The mission will be  to drive BOS  adoption, foster developer engagement, and strengthen the NEAR ecosystem.

    - - - -

    Mark your calendars for this awesome  event, and join us in the hip and modern city of Berlin on 27th and 28th July. From engaging workshops to in-depth discussions, come on down to the We Are Developers World Congress begin Berlin BOS building.

    -

    The post NEAR at We Are Developers World Congress 2023: Build with BOS in Berlin appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Balkans’ Tekuno and Mastercard Team Up for Gamified NFT Experience - /blog/near-balkans-tekuno-and-mastercard-team-up-for-gamified-nft-experience/ - - - Fri, 07 Apr 2023 12:00:00 +0000 - - - - - - - /?p=20387 - - NEAR Foundation is thrilled to announce that Tekuno, one of the most innovative NEAR Balkans Hub projects, recently teamed up …

    -

    The post NEAR Balkans’ Tekuno and Mastercard Team Up for Gamified NFT Experience appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is thrilled to announce that Tekuno, one of the most innovative NEAR Balkans Hub projects, recently teamed up with Mastercard to serve up an incredibly unique real-life NFT experience. Attendees at the recent Money Motion (MoMo) Fintech conference in Zagreb, Croatia got a taste of how Web3 and NEAR can help brands reach new audiences with blockchain gamification.

    - - - -

    Mastercard, a leader in global payment systems, enabled the Tekuno team and NEAR Balkans to realize this ground-breaking experience with NFTs. The NFT activation provided MoMo visitors with a gamified experience through which they could gather evidence of their participation at the conference and various NFTs — a concept called Proof of Doings (PODs).

    - - - -

    These PODs had time and space restrictions, so participants could only pick them up during a particular period of the conference. PODs demonstrated a novel use case of how NFTs can be used to gamify real life, while strengthening Mastercard’s brand as forward-thinking in the loyalty and payments space.

    - - - -

    Behind the Tekuno and Mastercard partnership

    - - - -

    The city of Zagreb, Croatia, recently hosted the first edition of an exclusive FinTech conference called Money Motion. With Mastercard as one of the conference organizers and NEAR Balkans as a sponsor, this presented the perfect opportunity for collaboration.

    - - - -

    Before the conference, NEAR Balkans Hub’s Product Lab was ready to launch Tekuno,  a blockchain as a service (BaaS) platform for NFT experiences. A user-friendly product for seamless onboarding of mass audiences to Web3, the Tekuno platform makes blockchain knowledge a preference rather than a requirement. 

    - - - -

    Tekuno can be used for a variety of campaigns and experiences, including loyalty programs, marketing activations and events, CRM, HR initiatives, and much more. The technology does this through the creation of secure and transparent Proof-of-Doings (PODs) in the form of digital collectibles (NFTs) to attest and reward a wide range of activities. For the “Experience the Motion” campaign, Tekuno was used as proof-of-attendance.

    - - - -

    How MoMo attendees claimed NFT PODs

    - - - -

    In “Experience the Motion”, MoMo attendees proved their attendance by collecting a total of 5 different NFT PODs. These PODs were exclusive — attendees could only claim them at specific times during the conference.Attendees claimed their PODs by simply scanning QR codes at several predefined locations — the entrance, speakers presentations and panels, and the NEAR Balkans booth.

    - - - -

    The PODs functioned as a prize raffle gateway, which attendees entered by following certain rules. MoMo attendees competed for a number of exciting prizes, including: exclusive Mastercard merchandise; a special 1–2–1 session with Christian Rau, Senior Vice President Crypto and Fintech Enablement Mastercard Europe; an invitation to a Web3 NEAR educational workshop, VIP access tickets for conference party; and the grand prize — a Mastercard Priceless.com experience at Chiavalon, Istria, an  olive oil making and tasting experience for two. 

    - - - -

    NEAR Balkans and Mastercard campaign results 

    - - - -

    The “Experience the Motion” ultimately reached more than 14,000 people on social media, and was available for over 1,000 attendees over two days of the conference. Tekuno’s user-friendly technology made it possible to distribute more than 500 PODs to more than 200 unique collectors.

    - - - -

    Feedback from the attendees regarding the NFT experience and rewards was overwhelmingly positive. Participants found the Tekuno platform to be intuitive and easy to navigate. Participants  were able to easily open accounts, allowing them to follow the challenges and collect the PODs for a chance at winning exciting prizes. 

    - - - -

    “This is the most seamless experience I have ever had with a Web3 app, and I’ve experimented with many, trust me,” said Vlaho Hrdalo, Lawyer and Chairman of UBIK — Croatian Association for Blockchain and Cryptocurrency. 

    - - - -

    Nikola Škorić, the CEO of Electrocoin, Gold sponsor of the conference, added: “‘Experience the Motion ’ —  the NFT activation made possible by Mastercard and organized by NEAR Balkans and Tekuno for the Money Motion conference, engaged our audience in an authentic and fun way that brought extra value to the conference while rewarding the luckiest ones.”

    - - - -

    “We’re happy that Money Motion is a place of technology adoption and that brands see us as a great partner for such activities,” Škorić added.

    - - - -

    Driving engagement with NFTs

    - - - -

    As Mastercard and NEAR Balkans noted, many attendees, who ranged from fintech professionals to regional bank representatives, retail marketing leads, and others were particularly interested in Tekuno’s various use-cases. Indeed, it demonstrated the real-world applications and versatility of NFTs, helping traditional industries see the value in Web3 integrations. 

    - - - -

    Gea Kariž, Marketing Director at Mastercard Croatia, shared her insights on the successful collaboration between Mastercard, Money Motion, Tekuno, and NEAR Balkans. 

    - - - -

    ‘’Our collaboration with the Tekuno and NEAR Balkans teams provided Mastercard HR with a seamless and exceptional entrance into the Web3 domain,” said Kariž. “Through this activation, we not only gained significant brand visibility but also reinforced our commitment to embracing blockchain and other cutting-edge technologies.”

    - - - -

    “The added value of this campaign was the deep engagement we experienced with our end-users, fostering a strong sense of community around our brand and further solidifying our position as a forward-thinking and innovative company,” Kariž added.

    - - - -

    The NEAR Balkans General Manager, Ida Pandur, was similarly inspired by the partnership — especially as it aligns with NEAR Foundation’s Web2.5 strategy of onboarding the masses with real use cases in Web3.

    - - - -

    ‘’We at NEAR Balkans are committed to help and enable mass adoption of Web3 and decentralization into everyday lives,” said Pandur. “The way we do it is by educating, enabling and  partnering with innovative organizations to bring Web3 to users in simple, value added, use cases. We are happy to have been working with Mastercard and use Tekuno, which is one of the best Web2→Web3 tools UX wise to bring it to life at MoneyMotion and from the interest we see across the region, it’s just getting started.’’

    - - - -

    Sally Meouche-Grawi, CEO of Tekuno, noted that the campaign illustrated how Tekuno demonstrated that Web3 products can be user-friendly. 

    - - - -

    “We’re trying to make it as user friendly as possible, but it’s still realistically a Web3 product, but it’s a Web3 product that is easy to use,” said Meouche-Grawi. “And this is what a lot of these products are critically lacking, which is the easy onboarding experience.”

    - - - -

    “So, we are trying to set the standard… to show how we can create a Web3 product that any average user can actually use,” Meouche-Grawi added. “Because from my experience when it comes to Web3 products they are usually developed by developers for developers, this is the trend and we are trying to break it.’’

    -

    The post NEAR Balkans’ Tekuno and Mastercard Team Up for Gamified NFT Experience appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-balkans/index.html b/public/blog/tag/near-balkans/index.html deleted file mode 100644 index bcd6ffd30..000000000 --- a/public/blog/tag/near-balkans/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Balkans Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-big-query/feed/index.xml b/public/blog/tag/near-big-query/feed/index.xml deleted file mode 100644 index 39febf9b2..000000000 --- a/public/blog/tag/near-big-query/feed/index.xml +++ /dev/null @@ -1,156 +0,0 @@ - - - - NEAR Big Query Archives – NEAR Protocol - - /blog/tag/near-big-query/ - - Fri, 22 Sep 2023 14:39:57 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Big Query Archives – NEAR Protocol - /blog/tag/near-big-query/ - 32 - 32 - - - NEAR Protocol BigQuery Public Dataset - /blog/near-protocol-bigquery-public-dataset/ - - - Fri, 22 Sep 2023 14:00:00 +0000 - - - - - /?p=20911 - - NEAR Protocol is a user-friendly, carbon-neutral blockchain, built from the ground up to be performant, secure, and unparalleled scalability. In …

    -

    The post NEAR Protocol BigQuery Public Dataset appeared first on NEAR Protocol.

    -]]>
    - NEAR Protocol is a user-friendly, carbon-neutral blockchain, built from the ground up to be performant, secure, and unparalleled scalability. In technical terms, NEAR is a layer one, sharded, proof-of-stake blockchain built with usability in mind. In simple terms, NEAR is a blockchain for everyone.

    - - - -

    Today, we are excited to announce the NEAR BigQuery Public Dataset for anyone who wants to query blockchain data in an easy and cost-effective way.

    - - - -

    Why BigQuery Public Dataset

    - - - -

    Until now, a user’s data query needs were fulfilled by indexers. Those indexers were either supplied by NEAR Protocol or custom made. To build custom indexers required JSON files from the NEAR Lake storage layer to be transformed and loaded into a target database engine like PostgreSQL, and only then could a user execute queries against it. This approach is complex, time-consuming, and resource-draining. It requires constant monitoring to ensure databases have the most up-to-date information.
    NEAR BigQuery Public Dataset changes this. It provides near real-time blockchain data that can be easily queried with SQL.

    - - - -

    What we did

    - - - -

    We built the NEAR LakeHouse in Databricks. The data is loaded into raw bronze files using Databricks Autoloader, and transformed with Databricks Delta Live Tables into cleaned and enriched silver tables following the Databricks Medallion Architecture. The silver tables are then copied into the GCP BigQuery Public Dataset ready for consumption.

    - - - -

    The solution design

    - - - -
    - - - -

    The code is open-source and can be found in our GitHub repository: near/near-public-lakehouse

    - - - -

    To learn more about how to get started and the data available, please check our documentation:

    - - - -

    https://docs.near.org/bos/queryapi/big-query

    - - - -

    Benefits

    - - - -
      -
    • NEAR instant insights: Historic on-chain data queried at scale.
    • - - - -
    • Cost-effective: Eliminate the need to store and process bulk NEAR Protocol data; query as little or as much data as preferred.
    • - - - -
    • Easy to use: No prior experience with blockchain technology is required; bring a general knowledge of SQL to unlock insights.
    • -
    - - - -

    Conclusion

    - - - -

    NEAR BigQuery Public Dataset  is now available for anyone wanting to harness blockchain data for their own needs. BigQuery can help not only developers, but broader audiences including: 

    - - - -
      -
    • Users: Create queries to track NEAR Protocol assets, monitor transactions, or analyze on-chain events at a massive scale.
    • - - - -
    • Researchers: Use indexed data for data science tasks, including on-chain activities, identifying trends, or feeding AI/ML pipelines for predictive analysis.
    • - - - -
    • Startups: Use NEAR Protocol’s indexed data for deep insights on user engagement, smart contract utilization, or insights across tokens and NFT adoption.
    • -
    - - - -

    Acknowledgments

    - - - -

    We are grateful for the following contributors who helped us to deliver the NEAR BigQuery Public Dataset. 

    - - - - -

    The post NEAR Protocol BigQuery Public Dataset appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-big-query/index.html b/public/blog/tag/near-big-query/index.html deleted file mode 100644 index 8a8419940..000000000 --- a/public/blog/tag/near-big-query/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Big Query Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-block-explorers/feed/index.xml b/public/blog/tag/near-block-explorers/feed/index.xml deleted file mode 100644 index 8f47e6812..000000000 --- a/public/blog/tag/near-block-explorers/feed/index.xml +++ /dev/null @@ -1,141 +0,0 @@ - - - - NEAR Block Explorers Archives – NEAR Protocol - - /blog/tag/near-block-explorers/ - - Tue, 24 Oct 2023 19:54:55 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Block Explorers Archives – NEAR Protocol - /blog/tag/near-block-explorers/ - 32 - 32 - - - An Update on NEAR Ecosystem Block Explorers  - /blog/an-update-on-near-ecosystem-block-explorers/ - - - Tue, 10 Oct 2023 15:28:45 +0000 - - - - /?p=20962 - - TLDR:  Pagoda’s core goal is to provide the NEAR community with high-quality, reliable, and innovative tools to build and interact …

    -

    The post An Update on NEAR Ecosystem Block Explorers  appeared first on NEAR Protocol.

    -]]>
    - TLDR: 

    - - - -
      -
    1. Explorer.near.org will be transitioned to the Explorer Selector by the end of November 2023. 
    2. - - - -
    3. Public access to Explorer DB will be turned off on November 30, 2023. 
    4. - - - -
    5. The Legacy NEAR Explorer will be turned off on January 31, 2024. NEARBlocks.io block explorer will continue to be actively maintained throughout this transition.
    6. -
    - - - -

    Pagoda’s core goal is to provide the NEAR community with high-quality, reliable, and innovative tools to build and interact with the blockchain while fostering an ecosystem of innovation. The legacy NEAR block explorer, hosted at explorer.near.org, was originally built by Pagoda as the first and only block explorer on the NEAR blockchain. In the early days of NEAR, it was important to bootstrap the necessary indexers, databases, and a block explorer to keep track of events on the blockchain. As alternative block explorers have now met and surpassed the functionality and reliability of the original NEAR Explorer, Pagoda has decided to turn off public access to Explorer DB and transition the legacy NEAR Explorer to the Explorer Selector by the end of November. 

    - - - -

    This leads to good news for those looking for a reliable and high-quality explorer experience. The Invoker Labs team behind NEARBlocks.io launched the Explorer Selector, enabling users and developers to pick their favorite community-built explorers. For projects that link out to explorer.near.org, those links will continue to work, but they will first display the Explorer Selector, where the user can select their preferred explorer and continue to the transaction, block, or account. 

    - - - -

    For feedback on the Explorer Selector and/or to get your NEAR block explorer project listed, please visit the NEARBlocks Explorer Selector GitHub Repo. By the end of November 2023, explorer.near.org will be the new home for the Explorer Selector.

    - - - -

    Details of Transition Plan: 

    - - - -
      -
    1. October 10, 2023: -
        -
      1. Notice within explorer.near.org explaining that it will be sunsetted by January 31, 2024, and linking to this blog post. The details of which Explorer DBs are sunsetting can be found in the NEAR documentation.
      2. - - - -
      3. Direct communication with partners that rely on the explorer to plan interruption-free migration has begun.
      4. - - - -
      5. NEARBlocks Explorer Selector is live. Please leave feedback directly in the NEARBlocks Explorer Selector GitHub Repo.
      6. -
      -
    2. - - - -
    3. November/December 2023: -
        -
      1. Shared Public access to the Explorer DB will be sunset on Thursday, November 30, at 12:00 p.m. PT. Check out ExplorerDB alternatives to maintain interruption-free service for your product.
      2. - - - -
      3. Explorer.near.org will transition to the Explorer Selector. This will include the process to get other block explorers added to the Explorer Selector. 
      4. - - - -
      5. The process for potential future explorers will be shared with the community to encourage diversity of tooling across NEAR. 
      6. -
      -
    4. - - - -
    5. January 31, 2024: -
        -
      1. The legacy NEAR Explorer will be removed from the Explorer Selector and turned off. 
      2. -
      -
    6. - - - -
    7. April 30, 2024 -
        -
      1. ExplorerDB private API gated access will be completely shut off.
      2. - - - -
      3. All wallets, tools, and projects that rely on the ExplorerDB must have migrated to avoid a loss of functionality.
      4. -
      -
    8. -
    - - - -

    If you have a product that may be affected by the sunset of Explorer or Explorer DB, please comment on this NEAR Social post from Pagoda or message @austinbaggio from the Pagoda product team directly on Telegram so they can ensure a smooth transition period. 

    -

    The post An Update on NEAR Ecosystem Block Explorers  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-block-explorers/index.html b/public/blog/tag/near-block-explorers/index.html deleted file mode 100644 index ddcec299b..000000000 --- a/public/blog/tag/near-block-explorers/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Block Explorers Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-da-layer/feed/index.xml b/public/blog/tag/near-da-layer/feed/index.xml deleted file mode 100644 index 271b7438e..000000000 --- a/public/blog/tag/near-da-layer/feed/index.xml +++ /dev/null @@ -1,223 +0,0 @@ - - - - NEAR DA Layer Archives – NEAR Protocol - - /blog/tag/near-da-layer/ - - Thu, 16 Nov 2023 08:51:37 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR DA Layer Archives – NEAR Protocol - /blog/tag/near-da-layer/ - 32 - 32 - - - NEARCON ’23 Unwrapped: Lisbon Steps into the Open Web in Iconic Fashion - /blog/nearcon-23-unwrapped-lisbon-steps-into-the-open-web-in-iconic-fashion/ - - - Thu, 16 Nov 2023 13:00:00 +0000 - - - - - - /?p=21092 - - Over the course of three epic days, the NEAR ecosystem showed up and showed out to make NEARCON ‘23 the …

    -

    The post NEARCON ’23 Unwrapped: Lisbon Steps into the Open Web in Iconic Fashion appeared first on NEAR Protocol.

    -]]>
    - Over the course of three epic days, the NEAR ecosystem showed up and showed out to make NEARCON ‘23 the most iconic edition yet. Groundbreaking partnerships were announced, new bonds forged, and a new vision for AI and the open web was unveiled by some of the brightest minds in the blockchain business.

    - - - -

    “The open web is an internet where all people control their own assets, data, and power of governance,” remarked NEAR co-founder and newly minted CEO of NEAR Foundation, Illia Polosukhin, on Day One of NEARCON ‘23. “And that vision extends beyond NEAR to the entire space, with the B.O.S. acting as the single entry point to an open web.” 

    - - - -

    Illia’s remarks truly encapsulated the spirit of NEARCON ‘23, as innovative collaborations with the likes of Polygon and EigenLayer highlighted a cross-chain, multi-ecosystem future with NEAR enabling multiple key facets of tomorrow’s truly open web. 

    - - - -

    So ICYMI, here’s all the key happenings, hubbub, and highpoints of an iconic NEARCON ‘23.

    - - - -

    Partnerships, IRL Hackathon, and NCON make a splash

    - - - -
    - - - -

    Things started off with a bang before the doors of the Convento Do Beato in Lisbon even opened, with the debut of the NCON token. The first ever native NEARCON token, attendees could download the NEARCON app and collect NCON tokens by completing tasks, bounties, and viewing sessions throughout the event.

    - - - -

    NEARCON-goers could then redeem NCON tokens for swag or a bite from the various food trucks, or even send NCON to other attendees via a slick native wallet on the NEARCON app. All told, over 110,000 NCON tokens were distributed during the event, making it a smash hit amongst attendees.

    - - - -
    - - - -

    This year’s NEARCON also took place across three cool and contrasting venues: NEARCON HQ, Hacker HQ, and Community HQ, each providing a unique experience for those of varying interests. HackerHQ was popping in particular due to the three day IRL Hackathon. Held in a stunning seaview venue, the winners will be announced next week, so stay tuned.

    - - - -

    Once everyone settled in for Day One, the ecosystem was treated to a few major game-changing partnership announcements. Here’s a roundup of the major collabs that are already making an impact for NEAR builders, developers, and the community at large:

    - - - -

    NEAR releases the Data Availability Layer for ETH Rollups and Ethereum developers

    - - - -
    - -
    - - - -

    By far the biggest news of Day One was NEAR unveiling the NEAR Data Availability Layer (NEAR DA), offering robust, low-cost blockchain data to developers for modular open web development. NEAR DA will help developers reduce costs and enhance the reliability of rollups, while keeping the security of Ethereum. NEAR DA is a key part of tomorrow’s open web development stack, with early users including StarkNet, Caldera, Movement Labs, and others. 

    - - - -

    NEAR x EigenLayer streamline Ethereum

    - - - -
    - - - -

    NEAR Foundation announced its partnership with EigenLayer, which will speed  up transaction times and slashing costs on the Ethereum blockchain. The collaboration will introduce a fast finality layer to Ethereum rollups, boosting their efficiency and scalability. The fast finality layer showcases the strengths of NEAR’s technology while making the open web more usable.

    - - - -

    LayerZero brings interoperability to NEAR

    - - - -

    In other big news, LayerZero integrated with NEAR, bringing over 40 blockchain networks into the open web. Layer brings trustless cross-chain messaging into the fold, making NEAR a more versatile ecosystem. The announcement highlighted NEAR’s commitment to seamless communication across various blockchain networks.

    - - - -

    Day One highlights: bringing the open web vision to life

    - - - -
    - - - -

    While there were a ton of amazing sessions and panels on the first day — from open web gaming and sports to crypto economics — one of the major themes was how Illia would realize his vision for a truly open internet in his new role as CEO of the NEAR Foundation. With a renewed focus on developers in the ecosystem, it only makes sense for him to steer the ship.

    - - - -

    Piggybacking on Illia’s “NEAR: The Open Web Vision” keynote, new NEAR COO Chris Donovan made a case for the open web, while also sitting down to discuss Web3 regulatory issues with Coindesk’s Michael Casey. And in other developer tooling news, NEAR Data Availability (DA) was announced, giving developers low-cost access to modular, scalable blockchain data.

    - - - -

    Day Two highlights: the AI is NEAR track takes flight

    - - - -
    - - - -

    The second day of NEARCON ‘23 was perhaps the boldest to date, with an epic “AI is NEAR” speaker and programming track that was simply mind blowing. Things kicked off with sessions featuring thought leaders from the likes of Pantera Capital and NEAR Tasks, and heated up even more with NEAR co-founder Alex Skidanov’s talk on generative AI and the open web.

    - - - -

    Illia returned in the afternoon to discuss “AI on NEAR: The Future of Work and Governance,” painting a picture of how AI will impact the future of governance, work, asset ownership, and beyond. He was then joined by Mike Butcher of TechCrunch, with the two unpacking the intersection of AI, blockchain, and global policy.

    - - - -

    “AI has the potential to be a huge driver for productivity,” Illia explained. “AI agents, for example,  are redefining the future of work. They have the unique ability to manage transactions and resources on blockchain platforms, communicate with secure cryptographic verification, and act as autonomous entities on people’s behalf — and directly for their benefit.”

    - - - -

    The AI is NEAR track was capped off when Illia then joined Michael Casey for a Coindesk podcast, where the two dove as deep as one can imagine down the AI rabbit hole. In particular, Illia shared his experience, views, and predictions regarding AI, blockchain, and the open web – simply a must listen. (Stay tuned for the release of this Coindesk podcast with Illia and Michael.)

    - - - -

    Day Three highlights: governance and hackathon on stage

    - - - -
    - - - -

    Governance and current happenings with the NEAR Digital Collective (NDC) were front and center in a spirited Day Three. One of the most unique panels was the NEAR Governance Forum, featuring AVB from the Transparency Committee, Cameron Dennis from Banyan, and Blaze of Cheddar.

    - - - -

    All three gave their takes on what’s gone right — and wrong — with the NDC since its inception at last year’s NEARCON. And in a “Round Robin” format, the three fielded a variety of questions from the audience, some of whom were NDC members themselves. Blaze and AVB then joined NEAR’s Yadira Blocker in an afternoon session discussing Decentralized Democracy in 2024.

    - - - -

    The final season of NEARCON ‘23 featured presentations from the IRL Hackathon, where builders unveiled their work and ideas. Judges and panelists included Oleg Fomenko, CEO of Sweat Economy, with talented NEAR builders putting their best foot forward. They showcased some truly amazing ideas and tech, so you’ll want to keep your eyes peeled for the winners.

    - - - -

    And what’s Day Three of any NEARCON without a party? This year’s bash was held at the LX Factory, an enormous space where all attendees got their final chance to network, share ideas, and have a blast. The Littles sponsored the party, bringing an added element of excitement by setting up carnival games at the venue along with The Fun Pass to reward anyone who played.

    - - - -

    NEARCON ‘23: as iconic as it gets

    - - - -
    - - - -

    If you joined us in Lisbon, a huge thanks for making this year’s edition so fun, spectacular, and rewarding. If you weren’t able to attend, we sincerely hope to see you next year. From transformative partnerships to leading the Web3 pack in AI, NEARCON ‘23 showcased the passion, momentum, and ingenuity of the entire NEAR ecosystem.

    If you weren’t able to make it to Lisbon for NEARCON, don’t worry — you can still check out all of the talks. Visit NEAR Protocol’s YouTube page for the full livestreams from the Layer 1 and Layer 2 stages, or click the links below. 

    - - - - - - - -

    Anyone who built furiously at the HackerHQ or clinked a cocktail at the Glass Movers & Shakers Happy Hour will likely tell you something similar: that NEARCON ‘23 showed the importance of a truly open web — and how together we can all achieve it.

    -

    The post NEARCON ’23 Unwrapped: Lisbon Steps into the Open Web in Iconic Fashion appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-da-layer/index.html b/public/blog/tag/near-da-layer/index.html deleted file mode 100644 index b9e72d582..000000000 --- a/public/blog/tag/near-da-layer/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR DA Layer Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-da/feed/index.xml b/public/blog/tag/near-da/feed/index.xml deleted file mode 100644 index 52cb2a958..000000000 --- a/public/blog/tag/near-da/feed/index.xml +++ /dev/null @@ -1,107 +0,0 @@ - - - - NEAR DA Archives – NEAR Protocol - - /blog/tag/near-da/ - - Thu, 30 Nov 2023 13:33:37 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR DA Archives – NEAR Protocol - /blog/tag/near-da/ - 32 - 32 - - - NEAR Foundation Launches NEAR DA to Offer Secure, Cost-Effective Data Availability for ETH Rollups and Ethereum Developers  - /blog/near-foundation-launches-near-da-to-offer-secure-cost-effective-data-availability-for-eth-rollups-and-ethereum-developers/ - - - Wed, 08 Nov 2023 14:32:28 +0000 - - - - /?p=21056 - - NEAR Foundation just announced the rollout of the NEAR Data Availability (NEAR DA) layer. Part of the NEAR Open Web …

    -

    The post NEAR Foundation Launches NEAR DA to Offer Secure, Cost-Effective Data Availability for ETH Rollups and Ethereum Developers  appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation just announced the rollout of the NEAR Data Availability (NEAR DA) layer. Part of the NEAR Open Web Stack, NEAR DA is a groundbreaking innovation that offers robust, cost-efficient data availability for ETH rollups and Ethereum developers.

    - - - -

    NEAR DA is set to launch with a number of first users, including Madara by StarkNet, Caldera, Fluent, Vistara, Dymension RollApps, and Movement Labs. 

    - - - -

    Let’s take a brief look at NEAR DA to explore why it’s such an exciting and significant development for NEAR, Ethereum, and the larger effort to build a truly open web. 

    - - - -

    NEAR DA — paving the way for modular blockchain development

    - - - -

    With NEAR DA, ETH rollups and Ethereum developers get cost-effective, reliable data availability. 100kB of calldata on NEAR will cost $0.0033 as of September 2023, while the same calldata on Ethereum L1 will run users  $26.22. That’s 8,000 times cheaper! 

    - - - -

    NEAR DA will help developers reduce costs and enhance the reliability of their rollups, while keeping the security of Ethereum. High quality projects launching an app-chain or L2 will also be able to get NEAR DA support. 

    - - - -

    Illia Polosukhin, co-founder of NEAR Protocol, and newly announced CEO of NEAR Foundation said: “Offering a data availability layer to Ethereum rollups highlights the versatility of NEAR’s tech while also helping founders from across Web3 deliver great products that bring us closer to mainstream adoption of the Open Web.”

    - - - -

    “NEAR’s L1 has been live with 100% uptime for more than three years, so it can offer true reliability to projects looking for secure DA while also being cost-effective,” Polosukhin added. “NEAR provides great solutions to developers no matter which stack they’re building on and now that includes the Ethereum modular blockchain landscape.”

    - - - -

    Expanding NEAR’s Open Web Stack 

    - - - -

    By opening up its blockchain for data availability, NEAR Protocol is expanding its offerings to deliver a modular blockchain development framework. This will let Web3 developers and founders continue building on Ethereum while leveraging NEAR’s state-of-the-art tech for one part of the stack, depending on their requirements. 

    - - - -

    NEAR DA expands the capabilities of NEAR’s Open Web Stack, a common entry point where developers and users alike can easily build, browse, and discover Web3 products and platforms. This includes FastAuth onboarding to an account in seconds with zero crypto or seed phrases required, as well as the ability to create decentralized frontends from a library of thousands of components. 

    - - - -

    Developers and founders building on Ethereum rollups interested in using NEAR DA can visit near.org/data-availability to get started.

    - - - -
    - -
    - - - -

    -

    The post NEAR Foundation Launches NEAR DA to Offer Secure, Cost-Effective Data Availability for ETH Rollups and Ethereum Developers  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-da/index.html b/public/blog/tag/near-da/index.html deleted file mode 100644 index d5a1fe4db..000000000 --- a/public/blog/tag/near-da/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR DA Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-data-availability-layer/feed/index.xml b/public/blog/tag/near-data-availability-layer/feed/index.xml deleted file mode 100644 index a1211e03e..000000000 --- a/public/blog/tag/near-data-availability-layer/feed/index.xml +++ /dev/null @@ -1,233 +0,0 @@ - - - - NEAR Data Availability Layer Archives – NEAR Protocol - - /blog/tag/near-data-availability-layer/ - - Fri, 26 Jan 2024 16:28:31 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Data Availability Layer Archives – NEAR Protocol - /blog/tag/near-data-availability-layer/ - 32 - 32 - - - Why NEAR Data Availability? - /blog/why-near-data-availability/ - - - Fri, 26 Jan 2024 16:28:31 +0000 - - - - - - /?p=21194 - - NEAR Protocol is built to onboard 1B+ users to Web3. Since its mainnet launch in October 2020, NEAR Protocol has …

    -

    The post Why NEAR Data Availability? appeared first on NEAR Protocol.

    -]]>
    - NEAR Protocol is built to onboard 1B+ users to Web3. Since its mainnet launch in October 2020, NEAR Protocol has achieved 100% uptime with 4 shards and has onboarded 35M accounts, of which 16M are monthly active accounts.

    - - - -

    Supporting the most users of any network in Web3 requires a scalable blockchain that is capable of having both high data availability and low-cost data posting in order for applications to scale to the level of mainstream global adoption. This post will explain NEAR’s technical approach to data availability and how NEAR DA, a solution designed for Ethereum rollups, will scale the modular ecosystem and defragment all of Web3.

    - - - -

    The modular Ethereum ecosystem seeks to scale the network by separating the functions of a blockchain––settlement, execution, and data availability––into separate layers. The Ethereum layer-one simply could not scale to accommodate the level of demand it reached, particularly during bull markets, without prohibitively high transaction fees. This demand becomes even more problematic when users want to do swaps on Ethereum or post transaction data for layer-twos to the layer-one network. 

    - - - -

    NEAR DA offers a solution to this scalability roadblock. With a simple architecture that is easy to implement and constantly improving efficiency, and thanks to NEAR having the cheapest transaction fees of any network in Web3, NEAR DA is an incredibly fast and cost-effective data availability option. Depending on the gas fees, NEAR DA is up to 85,000x cheaper than posting blob submissions on Ethereum and 30x cheaper than doing the same on Celestia. 

    - - - -
    - - - -

    NEAR DA and the Chain Abstraction Vision

    - - - -

    The NEAR ecosystem’s focus for 2024 is expanding chain abstraction across more chains & ecosystems, with the goal of abstracting the blockchain away from the user & developer experience. While the modular Ethereum ecosystem has made Ethereum more scalable in some ways, it’s also resulted in a lot of incompatible infrastructure and fractured liquidity that places a huge burden on app builders and end users to manage. The chain abstraction vision is that apps should just work with all chains, onboarding should be seamless, and things like gas fees and bridging should become invisible to end users. 

    - - - -

    Data availability and NEAR DA play an important role in chain abstraction. As zero-knowledge technology enables unification of security across chains via state proofs, as described in the chain abstraction deep dive post linked above, settlement data will be easier to fetch from different networks. As dapps become truly multichain thanks to account aggregation and decentralized frontends, they can query data from multiple chains more easily when data is all posted in one place. Doing so on NEAR will be much cheaper for rollups.

    - - - -

    How is NEAR DA Implemented?

    - - - -

    NEAR DA leverages an important part of NEAR’s consensus mechanism, known as Nightshade, which parallelizes the network into multiple shards (essentially, multiple parallel blockchains). Each shard on NEAR produces a small portion of a block, which is called a chunk. These chunks are aggregated to produce blocks. All of this happens entirely at the protocol level and so is invisible to users and developers.

    - - - -

    NEAR DA uses this infrastructure to an ETH rollup’s benefit. When a chunk producer processes a receipt, there is consensus around the receipt. However, once the chunk has been processed and included in the block, the receipt is no longer required for consensus and can be pruned from the blockchain’s state. The pruning time is at least 3 NEAR epochs, where each epoch is 12 hours. In practice, this is usually around 5 NEAR epochs, so data is available in the network for around 60 hours. Once the receipt is pruned, it is the responsibility of archival nodes to retain the transaction data. 

    - - - -

    This means that NEAR doesn’t slow down its consensus with more data than it requires, yet any user of NEAR DA would have ample time to query transaction data. The advantage this architecture provides to rollups is cost-effective data availability, especially to those with high transaction volume, such as gaming chains. 

    - - - -

    NEAR DA provides an out-of-the-box solution for developers, making it easy for rollup builders to make the most of NEAR’s infrastructure––which has 3+ years of proven reliability behind it. The Pagoda engineering team has already built three important components that are open-source and ready to be integrated into any OP Stack, Polygon CDK, or Arbitrum Nitro rollups:

    - - - -
      -
    • The Blob Store Contract: A contract that stores arbitrary data.
    • - - - -
    • Light Client: A trustless off-chain client that provides easy access to transaction and receipt data.
    • - - - -
    • RPC Client: A client to publish data blobs to the NEAR Protocol.
    • -
    - - - -

    Rollup builders looking to work with a cloud-like service could also leverage NEAR DA’s rollup-as-a-service (RaaS) providers (list provided here), in order to utilize these three components all in one place in a more abstracted manner. 

    - - - -

    What’s next? The Future of NEAR DA and Data Availability Sharding

    - - - -

    Another advantage NEAR’s sharding approach offers to users of NEAR DA is the future scaling roadmap. The NEAR Protocol Engineering team recently announced the move towards stateless validation, the next phase of sharding. This will further decrease the hardware requirements of certain types of validators (chunk validators) and move the state into memory, which will allow for more shards and increase the decentralization in the system by lowering the requirements to become a validator in the system. 

    - - - -

    This means that the number of shards will increase, greatly increasing the overall throughput of the NEAR Protocol. While NEAR is already fast, with 4 MB/s per shard with 4 shards, scaling towards n shards means that rollups, applications, and any other project or developer using NEAR will not have to compete for blockspace. This is a major contrast to the scaling limits of both monolithic systems as well as the modular ETH ecosystem and offers a substantial future-proof for anyone building on NEAR, including users of NEAR DA.

    - - - -

    As the NEAR Protocol starts increasing the number of shards to n, the amount of data that has to be stored for a single shard decreases. Eventually, in theory every account on NEAR Protocol could potentially become its own shard. This allows running very light RPC nodes that would only track the shard that a given user is interested in. 

    - - - -

    For L2s that use NEAR DA, this would mean running an in-memory RPC client that would only track the shard that your data blob contract is in for your retention period (for fraud proofs), or for a given interval of time (retention is configurable on the RPC nodes). Instead of relying on data availability sampling (DAS), a rollup can rely on its own shard by running a lightweight RPC through Data Availability with Sharding. The additional benefit here is that the RPC is also applying the chunks they are tracking, essentially acting as a validator without participating in the consensus, as opposed to statistical confidence with DAS. 

    - - - -

    While Data Availability Sharding remains in the research phase of development, it shows the major advantages the NEAR Protocol design offers to many kinds of builders and ecosystems. As the Web3 space pursues mainstream adoption, the scalability hurdles of the first ten years of Ethereum will seem minor, and it is not clear that modularity alone will solve the problem. The NEAR ecosystem’s goal of mainstream adoption of Web3 means the network is available for all builders to use for creating great applications and delivering the next generation of the internet.

    - - - -

    Fast, Cost-Effective DA is NEAR

    - - - -

    As Web3 adoption grows and as the number of rollups continues to climb, the need to scale the modular scalability solutions becomes greater. NEAR offers its innovative, reliable technology as a data availability solution for rollups that can save time and money while future-proofing projects for an increasingly multichain (and cross-chain) future. The bleeding-edge research driving the future development of NEAR DA will provide rollups with even more advantages over time. Interconnecting and defragmenting Web3 via chain abstraction will be a major theme of 2024 and utilizing NEAR DA puts rollups at the forefront of this evolution.

    - - - -

    -

    The post Why NEAR Data Availability? appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Launches NEAR DA to Offer Secure, Cost-Effective Data Availability for ETH Rollups and Ethereum Developers  - /blog/near-foundation-launches-near-da-to-offer-secure-cost-effective-data-availability-for-eth-rollups-and-ethereum-developers/ - - - Wed, 08 Nov 2023 14:32:28 +0000 - - - - /?p=21056 - - NEAR Foundation just announced the rollout of the NEAR Data Availability (NEAR DA) layer. Part of the NEAR Open Web …

    -

    The post NEAR Foundation Launches NEAR DA to Offer Secure, Cost-Effective Data Availability for ETH Rollups and Ethereum Developers  appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation just announced the rollout of the NEAR Data Availability (NEAR DA) layer. Part of the NEAR Open Web Stack, NEAR DA is a groundbreaking innovation that offers robust, cost-efficient data availability for ETH rollups and Ethereum developers.

    - - - -

    NEAR DA is set to launch with a number of first users, including Madara by StarkNet, Caldera, Fluent, Vistara, Dymension RollApps, and Movement Labs. 

    - - - -

    Let’s take a brief look at NEAR DA to explore why it’s such an exciting and significant development for NEAR, Ethereum, and the larger effort to build a truly open web. 

    - - - -

    NEAR DA — paving the way for modular blockchain development

    - - - -

    With NEAR DA, ETH rollups and Ethereum developers get cost-effective, reliable data availability. 100kB of calldata on NEAR will cost $0.0033 as of September 2023, while the same calldata on Ethereum L1 will run users  $26.22. That’s 8,000 times cheaper! 

    - - - -

    NEAR DA will help developers reduce costs and enhance the reliability of their rollups, while keeping the security of Ethereum. High quality projects launching an app-chain or L2 will also be able to get NEAR DA support. 

    - - - -

    Illia Polosukhin, co-founder of NEAR Protocol, and newly announced CEO of NEAR Foundation said: “Offering a data availability layer to Ethereum rollups highlights the versatility of NEAR’s tech while also helping founders from across Web3 deliver great products that bring us closer to mainstream adoption of the Open Web.”

    - - - -

    “NEAR’s L1 has been live with 100% uptime for more than three years, so it can offer true reliability to projects looking for secure DA while also being cost-effective,” Polosukhin added. “NEAR provides great solutions to developers no matter which stack they’re building on and now that includes the Ethereum modular blockchain landscape.”

    - - - -

    Expanding NEAR’s Open Web Stack 

    - - - -

    By opening up its blockchain for data availability, NEAR Protocol is expanding its offerings to deliver a modular blockchain development framework. This will let Web3 developers and founders continue building on Ethereum while leveraging NEAR’s state-of-the-art tech for one part of the stack, depending on their requirements. 

    - - - -

    NEAR DA expands the capabilities of NEAR’s Open Web Stack, a common entry point where developers and users alike can easily build, browse, and discover Web3 products and platforms. This includes FastAuth onboarding to an account in seconds with zero crypto or seed phrases required, as well as the ability to create decentralized frontends from a library of thousands of components. 

    - - - -

    Developers and founders building on Ethereum rollups interested in using NEAR DA can visit near.org/data-availability to get started.

    - - - -
    - -
    - - - -

    -

    The post NEAR Foundation Launches NEAR DA to Offer Secure, Cost-Effective Data Availability for ETH Rollups and Ethereum Developers  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-data-availability-layer/index.html b/public/blog/tag/near-data-availability-layer/index.html deleted file mode 100644 index 92f9f33ed..000000000 --- a/public/blog/tag/near-data-availability-layer/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Data Availability Layer Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-day/feed/index.xml b/public/blog/tag/near-day/feed/index.xml deleted file mode 100644 index 52c338b6f..000000000 --- a/public/blog/tag/near-day/feed/index.xml +++ /dev/null @@ -1,405 +0,0 @@ - - - - NEAR Day Archives – NEAR Protocol - - /blog/tag/near-day/ - - Fri, 24 Mar 2023 15:41:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Day Archives – NEAR Protocol - /blog/tag/near-day/ - 32 - 32 - - - Near at ETHDenver: the Blockchain Operating System, Near Day, and More - /blog/near-at-ethdenver-the-blockchain-operating-system-near-day-and-more/ - - - Wed, 08 Mar 2023 21:30:00 +0000 - - - - - /?p=20288 - - Missed Near Day and ETHDenver 2023? We’ve got you covered with content from Near talks and panels. There were also …

    -

    The post Near at ETHDenver: the Blockchain Operating System, Near Day, and More appeared first on NEAR Protocol.

    -]]>
    - Missed Near Day and ETHDenver 2023? We’ve got you covered with content from Near talks and panels. There were also a number of awesome announcements, including the big news out of ETHDenver — the Blockchain Operating System.

    - - - -

    Let’s take a look at all that was Near at ETHDenver. 

    - - - -

    Near Day talks

    - - - -
    Near co-founder and Pagoda CEO Illia Polosukhin unveiling the Blockchain Operating System.
    - - - -

    Near Day, the 1-day mini summit on all things Near, was jam-packed with the latest technological and protocol updates. Chief among them was the announcement of the Blockchain Operating System.

    - - - -

    Things got started with a Regenerative Finance (ReFI) talk from Open Forest Protocol’s Frederic Fournier and Flow Carbon’s Phil Fogel. Later in the morning programme, OnMachina’s Polina Aladina and Mark Collier talked about building decentralized storage on Near. As a vital Near ecosystem project, it was great for the ETHDenver crowd to hear from OnMachina on Web3 storage. 

    - - - -
    OnMachina’s Mark Collier talking decentralized storage on Near.
    - - - -

    Keypom, which also recently launched on Near, got some much needed visibility at Near Day. In “Instant Crypto Experiences with Keypom”,  Ben Kurrek and Matt Lockyer took the audience on a tour of their Web3 onboarding solution, in which users are given a special type of access key that can be used to experience a crypto application and later be turned into a wallet. (Read more about Keypom here.)

    - - - -

    The morning programme also featured talks from Calimero Network’s Sandi Fatic on privacy and scaling with private sharding; Aurora Labs’ Alex Shevchenko on Containers, Aurora’s cloud computing solution for blockchains; Sweat Economy’s Oleg Fomenko on how to effectively onboard people from Web2 to Web3; and Near co-founder Alex Skidanov on how the future of AI will be decentralized. 

    - - - -

    In the afternoon, there were a range of talks, starting with Pagoda’s Max Zavershynskyi presentation on creating “high velocity developer communities” via Near DevGov DAO. But the big news on Near Day was the Blockchain Operating System talk from Near co-founder Illia Polosukhin. After Illia primed the audience, Pagoda’s Chief Product Officer Alex Chiocchi elaborated on how Blockchain Operating System will help in onboarding millions of users to Near, while Pagoda’s Bowen Wang detailed the protocol innovations powering the Blockchain Operating System. 

    - - - -
    Marieke Flament on the ETHDenver main stage for the ‘Crypto Winter, Bullish Builders’ panel.
    - - - -

    Near Foundation CEO Marieke Flament and Dragonfly Capital’s Haseeb Qureshi also talked about why the future remains bright for Web3 even during the crypto winter. There were also talks from Pagoda’s Pavel Kudinov on the Near data stack and Josh Ford on a fully decentralized Javascript. 

    - - - -

    Other topics included the building of infrastructure to onboard 1 billion users on Near, NFT infrastructure, a “DeFi survival kit” for the bear market, and the regulatory landscape in Web3.

    - - - -

    Near speakers at ETHDenver 

    - - - -
    Pagoda’s Bowen Wang discussing Near’s vision for Layer 1 infrastructure.
    - - - -

    A number of speakers represented the Near ecosystem at ETHDenver talks. Topics included the Blockchain Operating System, sustainability, UX design, and more. 

    - - - -

    Aurora Labs’ Alex Shevchenko kicked things off with a presentation on Web3 infrastructure and scalability — specifically, how not to hack everything up in creating bridges. Alex also gave another talk on next generation user experience. Near Foundation CEO Marieke Flament delivered a talk on the three pillars of Web3 sustainability, while Proximity Labs’ Kendall Cole explored how Web3 can win in the DeFi battle against app stores. 

    - - - -
    Aurora Labs CEO Alex Shevchenko delivering a talk at ETHDenver.
    - - - -

    In separate talks, Illia Polosukhin and Pagoda’s Bowen Wang spoke to the ETHDenver audience about the Blockchain Operating System. While Bowen mapped out Near’s vision for Layer 1 Infrastructure, Illia talked about reinventing Web3 development with decentralized frontends and social networking. 

    - - - -

    Near Announcements

    - - - -

    While the Near is the Blockchain Operating System announcement was the talk of ETHDenver, there were plenty of other announcements. Find the full run-down of Near ecosystem announcements here.

    - - - -

    In other news, the Near ecosystem had two wins at ETHVC’s Startup Demo Day during ETHDenver — Niche Protocol, a Web3 social media platform, and Kino, a film financing platform.  

    -

    The post Near at ETHDenver: the Blockchain Operating System, Near Day, and More appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Near at ETHDenver Highlights  - /blog/near-at-ethdenver-highlights/ - - - Thu, 02 Mar 2023 16:00:30 +0000 - - - - - /?p=20239 - - Near will see a number of partnership and project announcements at Near Day and ETHDenver. Over a 1,000 people are attending …

    -

    The post Near at ETHDenver Highlights  appeared first on NEAR Protocol.

    -]]>
    - Near will see a number of partnership and project announcements at Near Day and ETHDenver. Over a 1,000 people are attending Near Day, with many more visiting the Near booth and dropping in on ETHDenver talks and panels featuring Near ecosystem figures. Beyond the many engaging talks and projects demos, there was also an ecosystem party, side events, a hackathon, and much more. 

    - - - -

    Let’s take a quick look at a few of the latest announcements from Near at ETHDenver. 

    - - - -

    A number of other announcements will be rolling out over the course of Near Day and ETHDenver, so stay tuned for those below in the coming days.

    - - - -

    Few and Far raises $10.5 million in funding

    - - - -

    Few and Far, a leading Digital Collectibles web3 platform, announced today that it has raised $10.5 million in a funding round led by Pantera Capital, the leading blockchain investment firm.The raise marks a significant milestone for Few and Far, which has been experiencing exponential growth since launch. 

    - - - -

    The new funds will help expand the platform’s capabilities, enhance user experience, and increase the number of Web3 developers. IP owners also stand to benefit from the platform. Few and Far features an all-inclusive platform available to carry out everything related to next generation digital collectibles, including a suite of developer tools. 

    - - - -

    The round also included top VCs, Cypher Capital, Huobi Ventures, Hypersphere, Metaweb, Mantis Partners, K5 Global and many more. 

    - - - -

    Near Blockchain Operating System now live on Alpha.Near.Org

    - - - -

    Read the full Near Blockchain Operating System announcement here

    - - - -

    For Near Day on March 2nd, Near launched alpha.nearpages.wpengine.com — a composable frontend for Web3. It will allow end users to easily and frictionlessly discover all of Web3’s possibilities in one seamless experience. It will also empower developers to create and code interfaces in a single environment with the ability to fork a host of components to build apps faster and more efficiently than ever before.

    - - - -

    Anyone in the Open Web ecosystem can create their own frontends (i.e., their own versions of alpha.nearpages.wpengine.com), compatible with the blockchain of their choice. This means that builders from any ecosystem can create components in just a few lines of code, and take advantage of fast onboarding to help make new and custom Web3 experiences.

    - - - -

    This is an industry first. With the addition of composable frontends to the tech stack, Near now becomes the Blockchain Operating System, allowing seamless, one-time onboarding and removing friction points like making accounts for every experience, while supercharging development from a collection of over 1,800 components. 

    - - - -

    Alpha.nearpages.wpengine.com is the first step in Near’s Blockchain Operating System journey. It’s the Alpha version, where builders can see the frontend come to life. 

    - - - -

    Try out the Alpha at alpha.nearpages.wpengine.com to experience the world’s first Blockchain Operating System — a revolutionary moment in Web3. If you’re a developer, see how easy it is to fork components and create new experiences. If you’re an end user, see how easy it is to explore Web3 experiences, social, and news all in one place. 

    - - - -

    The Blockchain Operating System is Near and it’s here. #NearistheBOS

    - - - -

    Flow Carbon announces carbon-market ecosystem built on Near

    - - - -

    Near and Flowcarbon, the pioneering climate technology company, announced the launch of a carbon-market ecosystem that will enable carbon credits to be traded on the Near network through Flowcarbon’s tokenized carbon credits. With this collaboration, Near will realize its vision of becoming a carbon-negative blockchain. As part of this partnership, Near plans to offset its carbon footprint through Flowcarbon.

    - - - -

    Flow Carbon’s carbon credit token will be launched on both Near and Aurora, an Ethereum Virtual Machine (EVM) built on Near. Validators will be set up for the purpose of offsetting, and large Near holders will be able to stake with these validators.

    - - - -

    Designed to make carbon offsetting more accessible and transparent, this partnership will help Near become carbon-negative, solidifying Near’s position as one of the top players in Regenerative Finance (ReFi). 

    - - - -

    With Stacksports, parents and athletes can mint royalty-free NFTs

    - - - -

    StackNFT is teaming up with Near to offer an NFT platform that allows youth athletes of all ages and skill levels to create and capture their favorite sports memories digitally. 

    - - - -

    Youth sports parents and athletes can now mint royalty-free NFTs effortlessly, without any advanced knowledge of the minting or wallet creation process. Just upload, decorate, and mint. Parents and athletes can also mint NFTs knowing that Near is a carbon-neutral, environmentally friendly blockchain, which supports several forest protection and restoration projects.

    - - - -

    StackNFT is owned and operated by Stack Sports, a global technology leader in SaaS platform offerings for the sports industry, with nearly 50 million users in 35 countries. From little league to the pros, Stack Sports powers the many moments that create the story of your journey through sports.

    - - - -

    Calimero’s private shard infrastructure now live on Near

    - - - -

    Calimero.network, a secure private shard infrastructure provider announced that after several months running in a stealth mode, during which it was tested by beta testers and partners, is ready to serve customers with unique blockchain power and a Web2 interface.

    - - - -

    With roots in the Near Protocol, Calimero is a high performance blockchain that launched on mainnet in 2020. Founded by Sandi Fatic and Mario Halambek, two of the first infrastructure engineers at Near, Calimero allows projects to launch their own shard in a matter of minutes. In launching a private shard, users can be certain of the network’s performance and security, which is managed by Calimero itself.

    - - - -

    Calimero is targeting so-called “Web2.5”, seeking a way to connect Web3 and Web2 worlds. For Web3 startups, Calimero provides a unique way to scale their products and leverage the privacy features, giving access to target Enterprise customers and getting access to new audiences. For classic Enterprises, Calimero offers a way to build new products and onboard chosen Web3 mechanics to find new areas to grow their businesses with growth rates compared to DeFi and NFT markets.

    - - - -

    With the cheapest option starting from less than $300, Calimero provides a flexible model to maximize the cost efficiency by adjusting shard performance according to the load. Calimero also offers a 14-day grace period to test out the platform for startups who are in the very beginning of their journey. 

    - - - -

    Calimero.network is a London-based startup that has recently raised an investment round of $8.5M, co-led by Khosla Ventures, Lyrik Ventures, and Near foundation. 

    - - - -

    Near Foundation Council updates

    - - - -

    Near Foundation announced that Mona El Isa, a founding council member at Near Foundation Council (NFC), has been appointed as Chair.  Marieke Flament, CEO of Near Foundation, has joined as a council member, and will govern alongside existing members Richard Muirhead, Chairman and Managing Partner at Fabric Ventures, and Jason Warner, Managing Director at Redpoint Ventures as well as Sheila Warren advisor to Near Foundation and  CEO of the Crypto Council for Innovation. 

    - - - -

    Mona takes the place of Illia Polosukhin, co-founder of Near Protocol and CEO of Pagoda (formerly Near Inc.), who has stepped down as Chair and member of the  Near Foundation Council (NFC) to focus on Web3 ecosystem development and participation.  

    - - - -

    “It was an honor to serve as Chair and Council Member of the NEAR Foundation Council over the past two years,” said Illia Polosukhin. “I’m stepping down in order to focus fully on the development of products and technology at Pagoda, which is critical to the continuing success of the NEAR Ecosystem.”

    - - - -

    “I will continue to be involved with NFC in my capacity as Pagoda CEO,” he added. “From a governance perspective, my departure increases the council’s independence and further decentralizes leadership and decision-making in the NEAR Ecosystem. I welcome Mona’s appointment as the new Chair and Marieke’s as council member to continue steering the Foundation in its mission of supporting NEAR’s growth.”

    -

    The post Near at ETHDenver Highlights  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Day at ETHDenver: Ethereum Without Limits - /blog/near-day-at-ethdenver-ethereum-without-limits/ - - - Fri, 20 Jan 2023 17:00:00 +0000 - - - - /?p=19730 - - ETHDenver is once again upon us. NEAR will be there with a full schedule of talks, panels, bounties, after parties, …

    -

    The post NEAR Day at ETHDenver: Ethereum Without Limits appeared first on NEAR Protocol.

    -]]>
    - ETHDenver is once again upon us. NEAR will be there with a full schedule of talks, panels, bounties, after parties, and more, exploring why NEAR is the place where mainstream adoption of the Open Web will happen. 

    - - - -

    NEAR makes building and innovating on Web3 simple, secure, and scalable — all well before “The Merge”. Soon, anyone in the world—devs, founders, creators, and app users — will be able to create without limits. Join us on March 2nd for NEAR Day at ETHDenver — a 1-day mini summit on all things NEAR. From March 3rd to March 5th, join NEAR at ETHDenver for the Main Event and Hackathon.

    - - - -

    Registering for NEAR Day is free. Sign up for a spot via the link below to meet people from the NEAR community and join the hackathon! To join NEAR Day at ETHDenver, you will also need an ETHDenver pass.

    - - - -

    Why NEAR @ ETH Denver? 

    - - - -

    With the Aurora EVM and Rainbow Bridge, the NEAR ecosystem is basically “Ethereum without limits”. While NEAR will be in attendance to help foster a decentralized multi-chain future, NEAR is showcasing why it’s the platform of choice for Web3 builders and onboarding the masses into the Open Web.

    - - - -

    Register for NEAR Day at ETHDenver

    - - - -

    Builders, creators, and entrepreneurs will find us at NEAR Day, a 1-day mini summit on ETHDenver’s Main Stage of the National Western Complex on March 2nd. From March 3rd – March 5th, find the NEAR ecosystem booth during ETHDenver and mingle with NEAR Devs, Community members, and others from the ecosystem.

    - - - -

    To participate at NEAR Day, all you need to do is register via the link below and have an ETHDenver pass. ETHDenver is a free event. Register now to secure your spot and find out why NEAR is the easiest, most accessible, and scalable blockchain in Web3. Stay tuned for more details!

    - - - - - - - -

    For the full schedule and information about NEAR Day at ETHDenver  as well as #BUIDLWEEK and Main Event, please visit our event page. Check out ETHDenver’s full schedule to learn more about featured NEAR sessions and more. 

    - - - -

    Join the Hackathon

    - - - -

    Join ETHDenver’s Hackathon and build on NEAR. Members of NEAR Foundation, Aurora, and other projects will be on-site to help onboard devs, creators, and entrepreneurs into NEAR and advise on building dApps. 

    - - - -

    Building on NEAR is easy and fun, and you’ll instantly be part of a vibrant and supportive community. Let’s get you started!

    - - - - - - - -

    Notable Speakers at NEAR Day and ETHDenver

    - - - -

    Catch a number of exciting NEAR speakers and sessions at NEAR Day and ETHDenver. The final list of participants and sessions is still being solidified. However, we do have some speakers to highlight. 

    - - - -
      -
    • Illia Polusukhin – NEAR Co-founder, CEO of NEAR
    • - - - -
    • Marieke Flament – CEO of NEAR Foundation
    • - - - -
    • Alex Shevchenko – CEO of Aurora Labs
    • - - - -
    • Alex Skidanov – NEAR Co-founder
    • - - - -
    • Polina Aladina – OnMachina Co-Founder
    • -
    - - - -

    Learn about our other speakers at the NEAR Day event page.

    -

    The post NEAR Day at ETHDenver: Ethereum Without Limits appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-day/index.html b/public/blog/tag/near-day/index.html deleted file mode 100644 index 3bc112c47..000000000 --- a/public/blog/tag/near-day/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Day Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-digital-collective/feed/index.xml b/public/blog/tag/near-digital-collective/feed/index.xml deleted file mode 100644 index 6a482ac44..000000000 --- a/public/blog/tag/near-digital-collective/feed/index.xml +++ /dev/null @@ -1,1119 +0,0 @@ - - - - NEAR Digital Collective Archives – NEAR Protocol - - /blog/tag/near-digital-collective/ - - Wed, 23 Aug 2023 17:17:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Digital Collective Archives – NEAR Protocol - /blog/tag/near-digital-collective/ - 32 - 32 - - - An Update on the NDC Funding and Support for Grassroots Projects - /blog/an-update-on-the-ndc-funding-and-support-for-grassroots-projects/ - - - Fri, 18 Aug 2023 15:04:37 +0000 - - - - /?p=20807 - - Executive Summary One of the central tenets of Web3 is decentralisation. Decentralisation is central to creating an open web because …

    -

    The post An Update on the NDC Funding and Support for Grassroots Projects appeared first on NEAR Protocol.

    -]]>
    - Executive Summary

    - - - -
      -
    • The Foundation has set the future of funding for the NDC based on significant milestones post V1 Governance
    • - - - -
    • The launch of the Grassroots Support Initiative where projects in need of funding or support can engage directly with the NEAR Foundation to discuss options in the interim of direct support from the NDC 
    • - - - -
    • If you are looking for support, you can schedule time with the team here
    • -
    - - - -

    One of the central tenets of Web3 is decentralisation. Decentralisation is central to creating an open web because it underpins an ecosystem’s anti-fragility, sustainability, scalability, and censorship resistance (amongst other important characteristics). A core part of a decentralised ecosystem is a robust self-governance infrastructure that empowers users and the community.

    - - - -

    Decentralisation is something that has guided the Foundation as a northstar, but as in all emerging fields sometimes the path toward that goal can be winding, complicated, and messy. That’s why we thought it would be important to take a moment to discuss the place of the NDC on that journey, the steps ahead, and how we can help the community get the support it needs along the way. 

    - - - -

    Back in August 2022, the Community Working Group was formed by a collection of prominent NEAR community nodes with the purpose of establishing a new framework and implementation plan for ecosystem self-governance infrastructure and an associated treasury that could help ensure the ecosystem would continue on its path to decentralisation while giving everyone the chance to have their voice heard. This is how and why the NEAR Digital Collective (NDC) was formed. 

    - - - -

    As the champion supporting the creation of decentralised governance infrastructure, the NDC plays an important role in the future of the NEAR ecosystem. Decentralised governance infrastructure will enable the community to vote (using an on-chain mechanism) on the allocation of funds, help ensure that decisions are made in a fair and representative manner, and further decentralise the NEAR ecosystem, something that is important both philosophically and practically for the healthy development of any Web3 ecosystem.

    - - - -

    So far, the NDC has already successfully launched the NDC Community Treasury, the IAMHuman voting initiative and V0 Governance, all major milestones for the ecosystem and vital pieces of governance infrastructure.

    - - - -

    Funding for the NDC

    - - - -

    Understanding the important role that the NDC can play in the future of the ecosystem, the NEAR Foundation is fully committed to its long term success. Of the Foundation’s treasury, a substantial portion has been earmarked for community initiatives like the NDC, which the Foundation intends to advance to the NDC Community Treasury over time as the ecosystem’s governance infrastructure matures.

    - - - -

    In order to further support the mission of the NDC as they continue to make progress, the Foundation is announcing today that it will provide an advance to the NDC Community Treasury in the region of 15M NEAR, subject to the successful completion of the V1 Governance elections. The criteria for this initial treasury advance will include (a) all V1 Governance elected positions being filled; and (b) the implementation by the community of a standardized funding request framework as a benchmark for responsible work moving forward.

    - - - -

    After this initial advance, the Foundation is also reiterating its commitment to further treasury advances (up to 100M NEAR). These further advances will be based on careful work with the community to set out specific criteria for milestones that will ensure funds are deployed responsibly and in a way that helps achieve the long-term goals of the wider ecosystem. 

    - - - -

    Once V1 Governance is live, the community will be able to create success metrics for the NDC and vote on them as a collective with the support of the Foundation and other ecosystem nodes. 

    - - - -

    The Foundation is also aware that, as a result of various delays with the launch of V1 Governance, the NDC Community Treasury is close to reaching the original USD1.5m V0 Governance budget cap contained in the NDC Community Treasury trust instrument. To ensure the community can continue to move forwards to the critical goal of V1 Governance launch, the Foundation will support the NDC Community Treasury by providing an additional USD400k buffer above that original budget cap.

    - - - -

    The NDC nominations for all 3 houses in V1 Governance are currently live until September 7th, with elections then kicking off on September 8th and running until September 22nd. We would encourage anyone who is interested in getting involved in this critical ecosystem milestone, and playing a role in steering the ecosystem forwards, to nominate themselves.

    - - - -

    Support for grassroots projects

    - - - -

    As part of the Foundation’s commitment to decentralisation and ensuring the voice of the community is heard, the Foundation announced in November 2022 that in most instances it would stop providing capital to the ecosystem through grants and instead have the NDC gradually take over that responsibility. While the Foundation understands that grants are a vital resource for grassroots projects to build and grow, we believed it was important to support moving them to a more decentralised model.  

    - - - -

    However, since the timeline to implement V1 Governance has taken longer than anticipated, we recognise that ecosystem funding has been more limited, which has put significant pressure on builders in the ecosystem. Concerns around funding have been a major topic of discussion in the community over the last few weeks, and the Foundation appreciates that the community has rallied together to surface these issues in an open and constructive way. This feedback has helped the Foundation understand that it should have moved more quickly to provide interim support. 

    - - - -

    To help address this issue, and to better support grassroots projects who are in need of support while the NDC continues to ramp up, the Foundation is launching a grassroots support initiative for any project in the ecosystem that is currently in need of urgent support. The Ecosystem Relations team is leading on the initiative from the Foundation and they have set up an open calendar for community members to connect directly with them to discuss how the Foundation can best support. 

    - - - -

    Projects will be able to ask for emergency support, either financial or otherwise, by booking time with the team. This initiative will remain in place until NDC funding options become more readily available. While the Foundation will not be able to fund every request, we are committed to carefully reviewing every one we receive and prioritizing them based on immediate need and how well they line up with the goals of the broader ecosystem. 

    - - - -

    You can book time with the Ecosystem Relations Team here.

    - - - -

    Grassroots projects and the community are the lifeblood of the NEAR ecosystem and the Foundation is committed to ensuring projects have the resources they need as we continue to create a thriving, decentralised ecosystem together.

    -

    The post An Update on the NDC Funding and Support for Grassroots Projects appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NDC V1 Governance Elections FAQ - /blog/ndc-v1-governance-elections-faq/ - - - Thu, 20 Jul 2023 13:13:39 +0000 - - - - /?p=20739 - - The NEAR Digital Collective (NDC), the largest decentralization effort on any layer 1 blockchain, has spent much of 2023 designing …

    -

    The post NDC V1 Governance Elections FAQ appeared first on NEAR Protocol.

    -]]>
    - The NEAR Digital Collective (NDC), the largest decentralization effort on any layer 1 blockchain, has spent much of 2023 designing a number of frameworks that will allow any member of the NEAR Protocol network to have a say in how NEAR is run. NDC’s goal is to combine transparency, collective decision making, evolving governance models, and self-determination in a completely new way. 

    - - - -

    After laying this decentralization groundwork, the NDC is gearing up for its first elections. As of July 19th at 15:00 pm UTC: I-AM-HUMAN OG SBT Soul Bound Tokens holders can now nominate themselves for office. This is your opportunity to upvote and to comment on candidates you believe in and who could add the most value to the future of NEAR! 

    - - - -

    What are the key dates to remember for the NDC election?

    - - - -
      -
    • July 19, 15:00:00 UTC — Start date for candidacy submissions on BOS and get I-AM-HUMAN SBT
    • - - - -
    • September 1, 23:59:59 UTC — Deadline for Voter Registration via I-AM-HUMAN
    • - - - -
    • September 1, 23:59:59 UTC — Deadline for applying for an OG Badge for candidacy eligibility
    • - - - -
    • September 7, 23:59:59 UTC  — Deadline for candidacy submissions
    • - - - -
    • September 8, 00:00:00 UTC —  Voting begins at Near APAC in Vietnam
    • - - - -
    • September 22, 23:59:59 UTC — Voting ends
    • -
    - - - -

    Below you will find a list of frequently asked questions about the elections, from how participation and voting works to candidate selection, election integrity, and more.  

    - - - -

    NDC V1 Governance Structure

    - - - -

    NDC V1 Governance includes three elected houses, a voting body, and a community treasury. The qualification to run for V1 governance requires an OG SBT. Elected Community members (OG’s) of each house are responsible for planning, overseeing, and allocating funding aligned with the ecosystems Northstar to grow and decentralize NEAR. 

    - - - -

    What will the NDC government look like?

    - - - -

    The NDC government will be composed of three houses, structured as following:

    - - - -
    Name of the HouseHouse of Merit (HoM)Council of Advisors (CoA)Transparency Commission (TC)
    Seats15 seats7 seats7 seats
    ResponsibilitiesIn charge of allocating the treasury and deploying capital for the growth of the ecosystem.In charge of vetoing proposals from the HoM and guiding the deployment of the treasury.In charge of keeping behavior of elected officials clean, and making sure cartels do not form in the ecosystem. 
    Commitment5-20 hours weekly with a minimum participation threshold.5-20 hours weekly with a minimum participation threshold.5-20 hours weekly with a minimum participation threshold.
    Expertise
    Required
    Budgetary expertise for ecosystem-wide budget planning, treasury management, and review.Strategic minds to advise the House of Merit and hold budget veto power.Unbiased guardians of the treasury that investigate and remove bad actors.
    - - - -

    Nominate Yourself for Candidacy

    - - - -

    Who can run for office?

    - - - -

    In order to run for office, you must hold an OG SBT. These aren’t given out to just anyone; these are for people that have been actively contributing to the NEAR ecosystem for extended periods of time. If you already have an OG SBT, you can self-nominate yourself right now.

    To find out the full criteria and to see if you qualify, please refer to Safeguards and OG. If you still require help, head over to the official NDC Telegram and ask a member of the team for help.

    - - - -

    Why should you run for office?

    - - - -

    If you’re an OG, we need your expertise and authentic commitment to the continued growth, success, and most importantly… Decentralization of NEAR. This is an opportunity for you to actualize an incredible future for NEAR.

    - - - -

    What information will be available in the candidate profiles?

    - - - -

    The candidate profiles are on BOS Nomination and will contain their name, background, affiliation, and policy positions. The profiles should give you a clear overview of what to expect should you select them as your preferred candidate. You can choose to upvote the candidate and comment on the candidate profiles as long as you are registered through I-AM-HUMAN.

    - - - -
    - - - -

    Election Overview

    - - - -

    Nomination starts the NDC v1 governance process and runs for 50 days and allow the community to rally their candidates. The nomination ends on September 7, and the election starts on September 8 and runs for two weeks. The elected representatives are onboarded for one week, and begin to organize the first government for the NEAR ecosystem.

    - - - -

    Nomination Period: July 19th to September 7th, 2023

    - - - -

    Election Period: September 8th – September 22nd, 2023

    - - - -

    Start of 1st Congress: October 1st – April 1st, 2024

    - - - -
    - - - -

    How can my vote shape the future of the NEAR ecosystem?

    - - - -

    By engaging in the election process, you get to help determine the direction of the NDC and the future of decentralization on NEAR. This is not like a presidential election where your vote is a thimble of water added to a sea. Every vote in the NDC election actually makes a difference, and some of the elected positions will likely come down to just a few votes. When the candidates have very different policy positions, each vote has a potentially outsize impact.

    - - - -

    How else does my vote matter?

    - - - -

    By participating in the elections process and on-chain voting, you are also contributing to your own on-chain reputation.

    - - - -

    Participation

    - - - -

    How can I participate in the NDC election?

    - - - -

    The main ways to participate in the NDC election are of course voting for candidates or running as a candidate, but there’s a lot more to it than just that. Through our Nominations platform, voters and candidates will be able to engage with one another discussing policy positions and contribute to candidacy social proof through commenting or upvoting.

    - - - -

    What is the eligibility criteria to vote?

    - - - -

    Any person with a Face Verified Soul Bound Token (SBT) is eligible to vote, and anyone can get one with a NEAR wallet through I-AM-HUMAN.

    - - - -

    What is the eligibility to run in the NDC election?

    - - - -

    In order to be eligible to run in the NDC election, candidates will need to be one or more of the following:

    - - - -
      -
    • A Champion of the NDC that is still actively contributing to the ecosystem. Champions are ecosystem leaders that run nodes or projects and contribute to a workgroup or initiative they feel passionate about to help bring NDC V1 Gov online. They contribute by lending time or resources and also help by referring or recruiting contributors to help deliver objectives.
    • - - - -
    • An NDC Contributor that forfeited or received a bounty through June ’23 that is still actively contributing to the ecosystem.
    • - - - -
    • A member of NEAR Inc or NEAR Foundation before the Pagoda rebrand in Feb ’22 that is still actively contributing to the ecosystem.
    • - - - -
    • A member of VCs, nodes, projects, or spinout founders in the ecosystem before the Pagoda rebrand in Feb ’22 that is still actively contributing to the ecosystem (including, but not limited to, Aurora, NEAR UA, Proximity Labs, Lyrik(MOVE) Capital, NEAR Balkans, MetaWeb, MetaPool, Orderly, NEAR Vietnam, Satori, Open Shard Alliance, Open Forest Protocol, Human Guild, HAPI Labs, Calimero, OnMachina, Ref, PemBrock, etc.).
    • - - - -
    • A known OG and Community member for at least one year that is still actively contributing to the ecosystem.
    • -
    - - - -

    Remember: bids for candidacy can be turned in as soon as July 19 and no later than September 7th. Give yourself ample time to fill out a form detailing your background, experience, and what you plan to bring to NDC governance. This material you provide helps the NEAR community make an informed decision about your candidacy.

    - - - -

    Election Integrity

    - - - -

    What procedures will be in place to ensure election integrity?

    - - - -

    We would love to see every single person in the NEAR ecosystem vote in NDC elections, but in order to maintain election integrity, there is one important requirement in order to cast a valid ballot. You will need to have a Face-Verified Soul Bound Token (SBT) linked with a NEAR wallet. You may use your main wallet or create a new one explicitly for the purpose of voting.

    - - - -

    Does Face Verification mean you have a picture of my face connected to my wallet?

    - - - -

    No. I-AM-HUMAN does not store your biometrics. You are also free to request the deletion of any and all data collected in this process should you decide to forfeit your FV SBT.

    - - - -

    Will there be any election oversight?

    - - - -

    It goes without saying that we want as fair and transparent an election as possible. Given that we are remote, and that the internet can be a strange place, there have been certain safeguards implemented into all NDC elections, that deter poor behavior, and also guarantee that bad actors are punished if they are able to manipulate an election. Election integrity can ultimately be broken down into six clear safeguards: 

    - - - -

    Safeguard 1. Fair Voting Policy (voters agreement to not sell votes). On behalf of all voters, holding an I-Am-Human verified account, you agree when you vote, that you will not sell your vote. If it turns out that you do sell your vote, you are eligible to post-election enforcement from the TC (see safeguard 6). 

    - - - -

    Safeguard 2. Candidate Agreement to Transparency and Accountability to not buy votes. On the candidates’ side, they all also agree to not buy votes for their election, and are equally eligible for post-election enforcement if they are found guilty. 

    - - - -

    Safeguard 3. Implementing a Vote Bonding: Vote bonding is a mechanism designed to deter malicious voting behaviors. Participants must stake a certain amount of NEAR tokens, as a bond to vote. This bond ensures good faith participation and can be reclaimed post-voting if all rules are adhered to. However, if participants engage in vote manipulation, such as buying or selling votes, the bond is forfeited. This mechanism introduces a strong financial disincentive to engage in fraudulent activities, safeguarding the integrity of the voting process. Recently, in a NDC produced EasyPoll, the community had a majority vote to have a bond for the vote.

    - - - -

    Safeguard 4. Pikes Peak review Election results ongoing/after. NEAR is fortunate enough to have the data visualization and tracking capabilities of Pikespeak, active and involved in the ecosystem. As a core supporter of NDC, Pikes Peak is also going to be monitoring election results both during and after the election to identify any anomalies and ensure it is done as fairly as possible. 

    - - - -

    Safeguard 5. Whistleblower program and bounty. In addition to the technical safeguards and Pikespeak oversight, the NDC is also instituting a whistleblower incentive program whereby anyone who has knowledge of potential election fraud can receive a bounty assuming their claims as to people and impact are justified and accurate. 

    - - - -

    Safeguard 6. Enforcement by Transparency Commission. In the event of any serious election fraud the investigation, and decision to remove, or forever ban either a voter or a candidate, will lie with the Transparency Commission. This means that there is ultimately no escape for a wrongdoer once they have been discovered or accused. The official Transparency Commission process is to field a complaint, investigate the complaint, and then publicly move to either remove, or ban the member in question from further participation. 

    - - - -

    With these six safeguards, we are hopeful that all elections for the V1 framework will be fair and transparent.

    - - - -

    Is NEAR Foundation or any other organization external to NDC involved?

    - - - -

    No. The NDC community is the sole administrator of this election, though NDC funding originated at NEAR Foundation.

    - - - -

    Voting

    - - - -

    Voting powered by I-Am-Human proof of personhood soul-bound tokens (SBTs). 1 Human, 1 Vote kickstarts voting. future versions factor in activity throughout the NEAR Ecosystem, giving merit based on contribution and reputation.

    - - - -

    What date does voting start for the NDC General Election?

    - - - -

    The NDC Election starts on September 8, 00:00:00 UTC, which coincides with NEAR APAC in Vietnam.

    - - - -

    How can I vote in the NDC election?

    - - - -

    Voting in the NDC election is designed to be as simple as possible and will take place on NEAR’s Blockchain Operating System. A link to voting will be found on the NDC’s Medium, Telegram, and Discord. You’ll simply log in, review candidate profiles and their platforms, and submit your choices. Be sure to vote within the designated time frame to be sure your voice is counted.

    - - - -

    What should I consider before voting for a candidate?

    - - - -

    Just like in any civic election, you should familiarize yourself with the policy positions of the candidates as well as their backgrounds. All candidates will have been vetted and have an “OG SBT,” but will likely have widely divergent views on the direction of the NDC. Asking questions and commenting on their platforms can also be a valuable way to get clarity on any positions that seem unclear to you.

    - - - -

    Can I change my vote once I’ve submitted it?

    - - - -

    Since all votes are recorded on the blockchain, they are immutable and cannot be changed after submission. Therefore it is in your best interest to triple check your selections before hitting that “submit” button.

    - - - -

    Information & Support

    - - - -

    Where can I find the most accurate and up-to-date information about the NDC election?

    - - - -

    You can find the most accurate and up-to-date information on the NDC’s Medium, Telegram, and Discord.

    - - - -

    Where can I get support if I have any issues or questions during the election process?

    - - - -

    You are welcome to reach out for support on Telegram or Discord.

    - - - -

    Post-Election

    - - - -

    How will the election results be announced?

    - - - -

    Election results will be announced on the NDC’s Medium, Telegram, and Discord and will also be viewable in the Election UI. Winning candidates will be highlighted in green.

    - - - -

    What happens after the election results are announced?

    - - - -

    After the election results are announced, the elected representatives will convene for the first time in the first NDC governance town hall, where we will hear from elected members from the three branches of NDC governance.

    -

    The post NDC V1 Governance Elections FAQ appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Digital Collective’s I-AM-HUMAN Welcomes Its First 1000 Verified Humans - /blog/near-digital-collectives-i-am-human-welcomes-its-first-1000-verified-humans/ - - - Fri, 16 Jun 2023 21:29:01 +0000 - - - - - /?p=20648 - - NEAR Foundation is thrilled to share some inspiring news today. The I-AM-HUMAN project, a cornerstone proof-of-humanity initiative of the NEAR …

    -

    The post NEAR Digital Collective’s I-AM-HUMAN Welcomes Its First 1000 Verified Humans appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is thrilled to share some inspiring news today. The I-AM-HUMAN project, a cornerstone proof-of-humanity initiative of the NEAR Digital Collective (NDC), just achieved a significant landmark of welcoming 1,000 verified community members to our growing ecosystem. 

    - - - -

    This critical milestone underscores the NEAR Foundation and NDC’s commitment to fair and equitable digital governance and representation built on NEAR.

    - - - -

    The impact of I-AM-HUMAN’s 1,000 verified users

    - - - -

    What does it mean to have 1,000 verified users? Simply put, it means 1,000 verified, unique human voices; 1,000 individual perspectives; and 1,000 contributors to NEAR Foundation’s mission of democratizing the digital world. 1,000 verified community members now have the opportunity to engage in governance voting, build an on-chain reputation, drive grassroots funding, and unlock the truly transformative power of DAOs.

    - - - -

    This active engagement is helping reshape the way key decisions are made, moving away from centralized control and towards a truly decentralized, democratic governance model. 

    - - - -

    Distributing voting power to the people with “Soul Bound Tokens”

    - - - -

    I-AM-HUMAN is all about fairly distributing voting power to the people. At its heart is the concept of “Soul Bound Tokens” or SBTs. These aren’t your average digital tokens —each SBT represents a real individual, flesh-and-blood human being, verified through our innovative and user-friendly proof-of-humanity identity verification process. SBTs are the digital embodiment of you, assuring that your voice counts, and making the principle of “one person, one vote” a reality in the digital realm.

    - - - -

    Minting your SBT is easy and only requires a NEAR wallet and your (adorable) human face. And don’t worry about what you look like since the image is encrypted and never seen by anyone. In fact, you always have the right to request the deletion of your data from I-AM-HUMAN and our partner Fractal. If you haven’t yet done so, give it a shot! It only takes a minute or two and we would love to have you be part of this important initiative. 

    - - - -

    We’ve made sure the process of getting your unique SBT, or putting a digital stamp on your individuality, is simple and accessible. With Fractal’s help, we’ve been able to keep this process secure and respectful of your privacy rights, which for the NDC, is of paramount importance. 

    - - - -

    “With the creation of the I-AM-HUMAN protocol, NDC sets a new standard for on-chain identity verification, empowering individuals to assert their humanity securely and transparently in the digital realm,” says Jane Wang, Product Lead at NDC Governance Working Group. “The I-AM-HUMAN protocol opens up a world of opportunities, from secure voting and governance participation to fair airdrops and reputation systems. We’re thankful for our partnership with Fractal, who has made the journey smooth with their field-tested identity solutions at NEAR.”

    - - - -

    Other NDC Initiatives on the horizon

    - - - -

    As NEAR Foundation and the NDC celebrate this major milestone, the commitment to innovation and improvement continues. The NDC is determined to provide an ever-improving experience for users, with initiatives underway to constantly improve user experience, strengthen data privacy, and expand our availability within the NEAR ecosystem. The NDC is actively creating a partnership roadmap for other organizations to leverage our proof-of-personhood solution, helping to empower our partners to ensure equitable decision-making within their own ecosystems.

    - - - -

    The journey to 1,000 users has been exciting, but the NDC is far from finished. Every new user brings us one step closer to NEAR’s vision of a digital world where each individual’s voice is respected, and where the democratic process isn’t just a principle, but a practice.

    - - - -

    So, if you haven’t already, we invite you to become a part of this revolutionary journey. Mint your own SBT, join our community, and make your unique mark in shaping the future of decentralized governance.

    - - - -

    The NDC extends its deepest gratitude to each and every one of you for taking the opportunity to unlock elections, governance, and community treasury with us. These first 1,000 users are opening the door for thousands more to come. 
    For updates, follow NDC on Medium and stay connected with us on this revolutionary journey!

    -

    The post NEAR Digital Collective’s I-AM-HUMAN Welcomes Its First 1000 Verified Humans appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Digital Collective Legal Framework - /blog/near-digital-collective-legal-framework/ - - - Tue, 21 Mar 2023 14:16:51 +0000 - - - - - /?p=20315 - - To help accelerate real-world value creation in the NEAR ecosystem, the NEAR community has launched the NEAR Community Purpose Trust …

    -

    The post NEAR Digital Collective Legal Framework appeared first on NEAR Protocol.

    -]]>
    - To help accelerate real-world value creation in the NEAR ecosystem, the NEAR community has launched the NEAR Community Purpose Trust (for ease referred to in the remainder of this post as the ‘NEAR Community Treasury’). The NEAR Community Treasury is intended to serve as a decentralised treasury for the NEAR ecosystem that will allocate funds to support various grassroots initiatives.

    - - - -

    The launch of the NEAR Community Treasury has been championed by the Governance Working Group (‘GWG’), a group focussing on ecosystem governance initiatives as part of the NEAR Digital Collective (‘NDC’). The NDC is an ambitious grassroots initiative that brings together users, projects, stakeholders and partners of the NEAR ecosystem to promote self-governance, aiming to empower the ecosystem to collectively make decisions on everything from funding to elected representatives and more. It is a significant step towards an even further decentralised network.

    - - - -

    The NEAR Community Treasury leverages an innovative legal framework that builds on work that has already been done utilising Guernsey Special Purpose Trust frameworks elsewhere in the industry. The NEAR community hopes that this framework should help to bring much-needed clarity to participants in decentralised autonomous organisations (‘DAOs’). Below for discussion purposes only is a high-level summary of some of the key features of the NEAR Community Treasury framework.

    - - - -

    What is the NEAR Community Treasury and how is it structured?

    - - - -

    A trust is a mechanism for holding assets so that the legal title to those assets is separated from the beneficial interest in those assets. One or more trustees are appointed as the ‘legal’ owners of the assets in question, and those trustees are bound by various duties and obligations to hold those assets either:

    - - - -
      -
    1.  for the benefit of one or more beneficiaries; or in certain cases,
    2. - - - -
    3. to further one or more specified purposes (with a trust of this nature typically referred to as a ‘Purpose Trust‘).
    4. -
    - - - -

    The NEAR Community Treasury is a type of Purpose Trust, specifically a Guernsey Non-Charitable Purpose Trust (a ‘GNCPT’). A GNCPT is brought into existence when assets are transferred to one or more trustees (the ‘Trustees‘), and those trustees enter into a written settlement of trust (the ‘Trust Instrument’) with another party termed an enforcer (the ‘Enforcer‘) which determines how the assets subject to the trust will be administered.

    - - - -

    The Trust Instrument sets out the duties and obligations of the Trustees and Enforcer, and also the various purposes that the NEAR Community Treasury was created to support. The NEAR Community Treasury is governed by Guernsey law at its inception (although this can be changed by the Trustees with NEAR community consent). The Trust Instrument has been drafted to deliberately minimise the trust that the NEAR community needs to place in the Trustees, the Enforcer and any centralised administrator. The NEAR Foundation has no control over the NEAR Community Treasury, nor any ownership right or interest in respect of any assets held in the NEAR Community Treasury.

    - - - -

    The Trustees are required to administer the NEAR Community Treasury in accordance with the terms of the Trust Instrument and are also subject to various fiduciary duties which require them to, for example, always act honestly and in good faith and exercise their powers in furtherance of the purposes of the NEAR Community Treasury. The Trustees are also subject to a duty of care which requires them to employ the care, skill and diligence of a prudent person of business when administering the trust assets. Both the Trustees and Enforcer are also required to comply with all applicable laws and regulations in connection with their roles.

    - - - -

    The Enforcer has a fiduciary duty to enforce the NEAR Community Treasury in relation to its non-charitable purposes and has a proactive oversight function, monitoring the Trustees and their administration of the NEAR Community Treasury to ensure they are complying with their duties and obligations. The Enforcer has the power to request information and documentation from the Trustees; and also has the power to remove one or more Trustees in certain circumstances (more on this below).

    - - - -

    The Trustees can use the assets in the NEAR Community Treasury for any transaction or arrangement that furthers one or more purposes of the NEAR Community Treasury, provided the transaction and/or arrangement has been approved by the NEAR community. 

    - - - -

    At this stage, the NEAR community has not yet launched any on-chain voting mechanism (although there are various potential implementations in development). The Trust Instrument therefore also provides the Trustees with a limited power – subject to various constraints – to use assets in the NEAR Community Treasury for any transaction or arrangement that furthers one or more purposes of the NEAR Community Treasury without requiring approval of the NEAR community (the ‘Limited Trustee Power‘). Once an on-chain voting mechanism is launched by the NEAR community, this Limited Trustee Power will fall away permanently.

    - - - -

    The Trust Instrument was reviewed by a set of skilled external and community legal counsel in Switzerland, the US and Guernsey. A group of lawyers from the NEAR community also reviewed the Trust Instrument, alongside various members of the GWG. The Trustees are required to make a copy of the Trust Instrument available to the NEAR community, and a copy of the signed Trust Instrument will be stored on IPFS (and this post will be updated with the IPFS link once it is confirmed by the Enforcer). 

    - - - -

    The NEAR Foundation does have any control over, or ownership of, the NEAR Community Treasury

    - - - -

    What are the purposes of the NEAR Community Treasury?

    - - - -

    The purposes of the NEAR Community Treasury are set out in Schedule 3 of the Trust Instrument, and consist of two types of purpose:

    - - - -

         (i) Core Purposes: to support and promote the operation and/or development of the NEAR Blockchain and/or associated ecosystem. These Core Purposes cannot be changed by anyone, although new Core Purposes can be added by the Trustees with NEAR community consent.

    - - - -

         (ii) Subsidiary Purposes: there are various Subsidiary Purposes including to stake the majority of the Trust Fund that is NEAR denominated, and to consider and if thought fit approve funding proposals from the NEAR community. Subsidiary Purposes can be added or removed by the Trustees with NEAR Community consent.

    - - - -

    Any assets held in the NEAR Community Treasury must therefore be used by the Trustees to support one or more of these Core and/or Subsidiary Purposes.

    - - - -

    Who are the Trustees and Enforcer of the NEAR Community Treasury?

    - - - -

    The initial Trustees are the following individuals from the NEAR ecosystem:

    - - - - - - - -

    The initial Enforcer is Francesco Paolo Piatti, who is an experienced lawyer in the Web3 space. The initial Trustees and Enforcer were selected by the GWG, a grassroots community group that has been working on various ecosystem governance initiatives. The process the GWG used to select the initial Trustees and Enforcer is set out in detail here.

    - - - -

    How do the Trustees and Enforcer operate?

    - - - -

    There must always be a minimum of 3 Trustees (although there is no upper limit specified in the Trust Instrument). Trustees can be appointed and/or removed by the Enforcer at the direction of the NEAR community. The Enforcer also has the power to remove any Trustee where that Trustee has committed a breach of a purpose or a breach of fiduciary duty. Conversely, the Enforcer can be removed by the Trustees at the direction of the NEAR community.

    - - - -

    Each Trustee has one vote on any proposal. Trustees are required to disclose any direct or indirect conflict of interest in respect of any proposal, and by default cannot participate in any vote where they are conflicted. The Trust Instrument prohibits the same person occupying the role of a Trustee and Enforcer simultaneously.

    - - - -

    The Trustees and Enforcer are entitled to be paid a reasonable remuneration for performing their respective roles (and the NEAR community has control in respect of this remuneration on the basis that, to the extent any remuneration is put in place that the NEAR community disagrees with, the NEAR community can remove the Trustees and/or Enforcer).

    - - - -

    What assets are held by the NEAR Community Treasury?

    - - - -

    At the outset, the NEAR Community Treasury will hold 5,662,061 NEAR that was donated to the NEAR Digital Collective initiative by the NEAR community (along with a nominal amount of USDT that was donated by the NEAR Foundation, consistent with its legal purpose, as part of the administrative set-up process). The NEAR Community Treasury wallet can be viewed here.

    - - - -

    The Trustees will administer this initial trust property as a proof of concept, enabling the NEAR community to establish how to best utilise this GNCPT framework and demonstrate that the NEAR Community Treasury framework can be used effectively. Moving forward, the NEAR Foundation (as well as other NEAR ecosystem participants) can make further contributions of assets into the NEAR Community Treasury based on the needs of the ecosystem.

    - - - -

    How will the NEAR Community Treasury operate in practice?

    - - - -

    The Trustees provided NEAR addresses, as well as Twitter and Telegram handles (but not physical addresses), in the Trust Instrument. They are able to make decisions as they would normally in the absence of the trust (e.g. via real-time written communications like Telegram or Signal) without having to adopt any additional formalities or bureaucratic processes.

    - - - -

    The Trustees control the NEAR Community Treasury multi-sig wallet and can execute transactions that support one or more of the NEAR Community Treasury’s purposes from this wallet, with a majority of Trustees required to approve/sign any transaction. Any such transaction or arrangement must support one or more of the NEAR Community Treasury’s purposes and would require NEAR community consent; however as discussed above until the NEAR community implements some form of on-chain voting mechanism, the Trustees have the Limited Trustee Power to allocate funds from the NEAR Community Treasury without requiring the consent of the NEAR community. Any such allocations would still need to support or further one or more of the Core and/or Subsidiary Purposes.

    - - - -

    Based on the GWG’s proposed framework, the NEAR community’s intention during this initial period is for the NEAR Community Treasury to receive funding proposals just from the 3 ecosystem grassroots DAOs – being the Developer DAO, Marketing DAO and Creatives DAO. The NEAR Community Treasury’s scope will likely be widened moving forwards as determined by the Trustees and the NEAR community, potentially becoming the primary treasury/capital allocation node in the ecosystem.

    - - - -

    Based on input from the GWG, the Trust Instrument envisages that the NEAR community will develop an on-chain voting mechanism that leverages proof of personhood technology (i.e. technology that can verify there is an identifiable, unique individual controlling a NEAR account).

    - - - -

    Once the NEAR community launches this on-chain voting mechanism, the Limited Trustee Power will fall away permanently. The NEAR community will then be able to put forward and approve funding proposals, and also direct the Trustees to take various actions including:

    - - - -
      -
    • fulfill grant requests;
    • - - - -
    • add Core Purposes and add/remove Subsidiary Purposes;
    • - - - -
    • appoint/remove Trustee(s) and/or Enforcer; and
    • - - - -
    • change the NEAR Community Treasury’s governing law.
    • -
    - - - -

    What are the benefits of the NEAR Community Treasury structure?

    - - - -
      -
    1. Participant Liability
    2. -
    - - - -

    One of the most significant legal issues currently facing DAOs and other decentralised initiatives is participant (or token-holder) liability. Recent legal developments (for example in connection with the CFTC’s enforcement action against Ooki DAO) have only heightened the uncertainty and risks in this context, particularly with respect to DAOs being classified as ‘general partnerships’ or ‘unincorporated associations’ and creating potential joint and several liability exposure for participants. This means participants potentially being held individually liable on an unlimited basis for their own actions, and/or the actions of the entire DAO/initiative, and/or the actions of certain participants.

    - - - -

    It is the hope of the NEAR community that the NEAR Community Treasury may help to mitigate these potential participant liability issues:

    - - - -
      -
    • The Trustees undertake (in their capacity as Trustees) certain activities and actions (e.g. holding treasury, making grants) that might otherwise expose ecosystem participants to potential liability. Other ecosystem participants do not undertake these activities and instead exercise oversight over the Trustees and Enforcer.
    • - - - -
    • When the Trustees (a) act (as they are required to do) in accordance with the provisions of the Trust Instrument and their fiduciary and statutory duties as trustees; and (b) also make it clear to any third parties that they are acting in their capacities as trustees of the Community Treasury, then the liability of each Trustee should be limited to the value of the assets held in the NEAR Community Treasury.
    • -
    - - - -

    In addition:

    - - - -
      -
    • The Trustees are indemnified under the Trust Instrument, meaning that they will be compensated for any liability/losses suffered by them in carrying out their duties as Trustees from the assets held in the NEAR Community Treasury.
    • - - - -
    • The Trust Instrument also makes it clear that the Trustees will not be liable for any losses arising to or suffered by the assets in the NEAR Community Treasury (save for any losses arising in respect of a Trustee’s breach of trusts arising from their own fraud, wilful misconduct or gross negligence).
    • -
    - - - -
      -
    1. Off-chain activities
    2. -
    - - - -

    Without a formal legal structure, if a DAO/decentralised initiative wishes to participate in an off-chain transaction or arrangement then typically individual participants would be required to enter into the relevant transaction/arrangement in their individual capacity (and/or some other affiliated legal person); exposing them to potential liability. While the NEAR Community Treasury is a ‘legal arrangement’ and so not itself a ‘legal person’ (i.e. it does not have a separate legal personality from the Trustees, unlike for example a limited liability company), the Trustees are able to interact with the off-chain world – in their capacity as trustees – in a similar way as other entities (for example, opening a bank account). 

    - - - -
      -
    1. Tax
    2. -
    - - - -

    Certain activities undertaken by DAOs, particularly holding a DAO treasury, can create complex tax consequences for participants (especially in the absence of any clear guidance). One critical risk is the possibility of tax liability arising in connection with DAO activities being attributed to (and so payable by) individual participants.

    - - - -

    The NEAR Community hopes that the NEAR Community Treasury may mitigate that risk for participants by ensuring the relevant activities are being undertaken by the Trustees (in their capacity as Trustees). In addition, as the NEAR Community Treasury does not have any Guernsey resident beneficiaries or Guernsey-source income, it should not be liable to tax in Guernsey nor be required to make any on-going tax or reporting filings. 

    - - - -
      -
    1. Efficient and trustless
    2. -
    - - - -

    Unlike many other alternative DAO legal ‘wrapper’ or ‘proxy’ structures, the NEAR Community Treasury does not rely on a centralised administrative body to be brought into existence or maintain its legal standing – the execution of the Trust Instrument by the relevant parties is all that is required. As mentioned above, there are also minimal operational formalities, meaning the Trustees can make decisions as they would normally (i.e. as if the trust wasn’t there). 

    - - - -

    Under Guernsey law, there is also significant flexibility regarding who can serve as a Trustee or Enforcer, including no requirement for a locally-registered professional trustee/trust company to serve as a trustee. To the extent any disputes were to arise in connection with the NEAR Community Treasury, these would be heard and ultimately determined by the courts in Guernsey.

    - - - -

    What happens if the NEAR Community Treasury is terminated?

    - - - -

    The NEAR Community Treasury is irrevocable and can continue to exist for as long as there are Core and/or Subsidiary Purposes to support. The NEAR community could however direct the Trustees to transfer all of the NEAR Community Treasury assets to another trust (provided such a transfer supported one or more Core and/or Subsidiary Purposes).

    - - - -

    The Trust Instrument also contains various contingencies in the event all of the NEAR Community Treasury’s Core and/or Subsidiary Purposes cease to exist and/or one or more Trustees undertake a transaction or arrangement that is in breach of one or more Core and/or Subsidiary purposes. In such circumstances, the Enforcer (acting reasonably and in good faith) has the power to direct the Trustees to transfer the NEAR Community Treasury assets to a new trust or otherwise deploy them for the benefit of the NEAR community.

    - - - -

    Some closing thoughts

    - - - -

    The NEAR community hopes that the NEAR Community Treasury framework will enable the NEAR community to benefit from a decentralised treasury in a risk mitigated manner. For more information about Guernsey Non-Charitable Purpose Trust frameworks, a template Guernsey Special Purpose Trust Instrument will shortly be hosted on the NEAR Foundation GitHub (and this post will be updated to include the relevant link, once available).

    - - - -


    Disclaimer: Nothing in this article/post should be construed as legal, tax or investment advice. This post might not reflect all current updates to applicable laws, regulations or guidance. Any templates or documentation referenced in this post are made available on a non-reliance basis and the authors do not assume any responsibility for their contents or any consequences of their use. The authors disclaim any obligation to update this post, and also reserve the right to make any changes to this post without notice. The subject matter of this post deals with an emerging and uncertain area of the law and there are no guarantees (and none are given, of whatsoever nature, by the authors or otherwise) that the NEAR Community Treasury framework will effectively mitigate any of the risks identified above. In all cases persons should conduct their own investigation and analysis of the information in this post. Please consult with a reputable lawyer in your jurisdiction for any questions or concerns and before making use of any templates or documentation referenced in this post. Neither this post nor the NEAR Community Treasury constitutes, or is indented to constitute, the offer or sale of any security or token.

    -

    The post NEAR Digital Collective Legal Framework appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - What is the NEAR Digital Collective? - /blog/what-is-the-near-digital-collective/ - - - Fri, 27 Jan 2023 16:00:00 +0000 - - - - /?p=19744 - - What is the NEAR Digital Collective? The NEAR Digital Collective (NDC) is an ambitious project that brings together users, projects, …

    -

    The post What is the NEAR Digital Collective? appeared first on NEAR Protocol.

    -]]>
    - What is the NEAR Digital Collective? - - - -

    The NEAR Digital Collective (NDC) is an ambitious project that brings together users, projects, stakeholders and partners of the NEAR ecosystem to create a radically new way of governing itself.  

    - - - -

    By creating a framework that allows any member of the network to have a say in how NEAR is run, the NDC’s goal is to combine transparency, collective decision making, evolving governance models, and self-determination in a completely new way.  

    - - - -

    The NDC plans on doing this by helping to create the NEAR Constitution, a unifying document that enshrines the ideas of self-governance and decentralization into the core of how the NEAR ecosystem works. 

    - - - -
    - - - -

    Why is this important? 

    - - - -

    The NEAR ecosystem is made up of over 1,000 projects, regional hubs, funding nodes, infrastructure providers, and more than 20 million wallets. That’s a lot of people. The NDC was established to help all those involved take an active role in how NEAR evolves. 

    - - - -

    Whether that’s how funding is allocated, how elections take place, or who represents the mosaic of interests that make up this thriving and diverse ecosystem. The NDC wants to help everyone have a voice, and for those voices to be recorded on chain.   

    - - - -

    How does it do that? 

    - - - -

    The NDC is helping develop a system of governance. Once in place, it will allow people to vote on a wide variety of issues, elect members to different governing councils, and even make amendments to the constitution itself.

    - - - -

    The essence of the NDC brings this radical framework to life, and allows the community to then engage and take part in actively shaping the future of NEAR. 

    - - - -

    In its current stage, the NDC is working on a governance structure that includes the following sections: 

    - - - -
      -
    • Voting Body – This is every active near account, as qualified by the governance framework
    • -
    - - - -
      -
    • House of Merit – A group of experienced community members appointed by members of the ecosystem to represent them during votes and key decisions. 
    • - - - -
    • Council of Advisors – Advisors appointed to help shape the direction of the House of Merit.
    • - - - -
    • Transparency Commission – members of the community appointed to ensure checks and balances, are in place and upheld. 
    • - - - -
    • Community Treasury – Members of the House of Merit with support from the Council of Advisors help facilitate voting on how community funds are allocated. 
    • -
    - - - -

    You can find more information on the above here. 

    - - - -

    This is a work in progress, and is currently overseen by the Governance Working Group, or GWG. This is a collection of community members working on refining the models of governance that will help everyone have their say.  

    - - - -

    The Collective and the GWG invites anyone to share and discuss ideas. All the details on how to do that can be found here. 

    - - - -

    What is the scope of the NDC? 

    - - - -

    While the constitution and governance models are key, the NDC will also help to shape, define and deliver the following: 

    - - - -
      -
    1. NEAR Constitution. 
    2. - - - -
    3. Create and deploy local and global on-chain decision-making. 
    4. - - - -
    5. Create and deploy a repository of local and global on-chain journals, logs, and minutes. 
    6. - - - -
    7. Establish governing bodies, their operations, powers, and what checks and balances each one needs.
    8. - - - -
    9. Create and maintain a community treasury with a complete set of operating procedures and safeguards.  
    10. - - - -
    11. Create and maintain Community Guidelines, Code of Conduct, and Dispute Resolution protocols. 
    12. - - - -
    13. Create and deploy a communications strategy to ensure the work carried out by the NDC and GWG is easy to access. 
    14. - - - -
    15. A strategy to help the community find, access and use the NDC. 
    16. - - - -
    17. Help develop and deploy a DAO Governance Model
    18. - - - -
    19.  Facilitate growth of the NEAR ecosystem more broadly.
    20. -
    - - - -

    What role does the NEAR Foundation play in the NDC? 

    - - - -

    The Foundation is a partner and contributor to the NDC. It supports the work being carried out by the Collective, and will ultimately look to hand over its funding role to the community once it is ready to do so. 

    - - - -

    Who is working on NEAR Digital Collective? 

    - - - -

    The Collective is made up for members of the NEAR ecosystem. Some are former members of the Foundation, others are founders of projects, and others still are long term users and supporters of the blockchain and the projects that are built on it. 

    - - - -

    Feel free to reach out to any of the team leads. 

    - - - -

    Why is Decentralization Important? 

    - - - -

    Decentralization is a term that has become synonymous with blockchain, but has its origins as far back as the French Revolution in the 18th century. 

    - - - -

    Decentralization then, and now is the process by which the activities of an organization, particularly those regarding planning and decision making, are distributed or delegated away from a central, authoritative location or group.

    - - - -

    This is important because, as any student of history will tell you, when power becomes overly centralized, the opportunity for abuse increases. In 2022, members of the blockchain community experienced first hand what happens when centralized authorities abuse their power. 

    - - - -

    Members of the NEAR Community believe that the goal of decentralization is to improve on what came before. It believes that increasing transparency and democracy creates a fair and more equal community for everyone. 

    - - - -

    But to get there requires a commitment to a process. A process that will need to evolve and adapt to the needs of the community, and for that community to take part in shaping it.

    - - - -

    Decentralization is vital for the long term health and sustainability of any collection of people and ideas. The NDC is how the NEAR community is trying to achieve that.   

    - - - -

    How do I get involved? 

    - - - -

    Any member of the NEAR community is free to join any of the following workgroups:. 

    - - - -
      -
    • Constitution
    • - - - -
    • Governance & Tech Governance
    • - - - -
    • Legal
    • - - - -
    • Community Engagement
    • - - - -
    • Communications
    • -
    - - - -

    Get started by completing the Governance Working Group (GWG) onboarding process.

    - - - -

    Or if you’re looking for a deeper dive into how all of this works, you can see the Overview page. 

    -

    The post What is the NEAR Digital Collective? appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-digital-collective/index.html b/public/blog/tag/near-digital-collective/index.html deleted file mode 100644 index 5ab117e88..000000000 --- a/public/blog/tag/near-digital-collective/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Digital Collective Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/near-discord/feed/index.xml b/public/blog/tag/near-discord/feed/index.xml deleted file mode 100644 index 247683c44..000000000 --- a/public/blog/tag/near-discord/feed/index.xml +++ /dev/null @@ -1,160 +0,0 @@ - - - - NEAR Discord Archives – NEAR Protocol - - /blog/tag/near-discord/ - - Fri, 09 Jun 2023 09:01:10 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Discord Archives – NEAR Protocol - /blog/tag/near-discord/ - 32 - 32 - - - Post Mortem: NEAR Discord Security Incident - /blog/post-mortem-near-discord-security-incident/ - - - Mon, 22 May 2023 04:00:00 +0000 - - - /?p=20520 - - This is a post mortem report regarding the recent security incident that occurred on the NEAR Discord server.  The purpose …

    -

    The post Post Mortem: NEAR Discord Security Incident appeared first on NEAR Protocol.

    -]]>
    - This is a post mortem report regarding the recent security incident that occurred on the NEAR Discord server.  The purpose of this report is to provide analysis of the incident, identify the root cause, outline the impact, and propose actions to potentially limit similar incidents in the future.

    - - - -

    Summary: On Wednesday, May 17th, the NEAR Discord server experienced a security incident.  This resulted in unauthorized access to a singular moderator account. The incident occurred due to a successful spear-phishing attempt on one of our server’s moderators. The attacker used their access to promote a fraudulent airdrop campaign, with the intent to deceive users and drain their wallets. 

    - - - -

    Root Cause Analysis: The investigation revealed the following root causes:

    - - - -
      -
    1. Successful spear-phishing: One of the NEAR Discord moderators was targeted by a phishing campaign, leading to the theft of their Discord credentials. 
    2. - - - -
    3. Lack of Two-Factor Authentication (2FA): The absence of 2FA for user accounts provided an opportunity for attackers to gain unauthorized access. 
    4. -
    - - - -

    Impact: The security incident had the following impacts:

    - - - -
      -
    1. Unauthorized Access: The attacker gained unauthorized access to our Discord server. 
    2. - - - -
    3. Removal of Moderators: The attacker used their access to ban existing moderators that tried to intervene. 
    4. - - - -
    5. Content Deletion: Unauthorized deletion of two Discord channels.
    6. - - - -
    7. Disruption of Services: During the incident investigation and subsequent remediation, there was a temporary disruption in server availability and functionality. Invite links were invalidated during the process and are being rebuilt. 
    8. -
    - - - -

    Actions Taken: In response to the security incident, we have taken the following actions:

    - - - -
      -
    1. Incident Response and Investigation: Immediately upon detection, our security team initiated an incident response plan. They conducted a thorough investigation to determine the extent of the incidents and identify the source of the entry point. -
        -
      • Timeline of events:  -
          -
        1. At 7:47 PM UTC, a malicious webhook was installed by a compromised Discord Moderator account.
        2. - - - -
        3. At 10:47 PM UTC, the attacker — using the compromised moderator account — began posting in Discord. From there, other Discord members attempting to mitigate the attack were subsequently banned.
        4. - - - -
        5. The attacker used their access to promote a fraudulent airdrop campaign, with the intent to deceive users and drain their wallets.
        6. - - - -
        7. 10:57 PM UTC, The Pagoda Security team was notified. 
        8. - - - -
        9. Triage began and we identified the problem account and began resetting permission immediately. 
        10. - - - -
        11. 11:13 PM UTC, all attackers had been removed and all threats neutralized. 
        12. -
        -
      • -
      -
    2. - - - -
    3. User Notification and Password Reset: Affected users have been notified about the incident, and a mandatory password reset has been implemented to ensure the security of their accounts. 
    4. - - - -
    5. Required 2FA for Moderators: Moderators are now required to use 2FA in the NEAR Discord. 
    6. -
    - - - -

    Preventive Measures: To prevent similar incidents, the following actions will be taken: measures:

    - - - -
      -
    1. Regular Security Audits: Implement regular security audits of our Discord server to identify and address vulnerabilities promptly.
    2. - - - -
    3. Ongoing Monitoring and Incident Response Improvement: Enhance our monitoring capabilities to detect any suspicious activities and continually improve our incident response procedures.
    4. - - - -
    5. Security Education and Awareness: Continue to educate our team on the importance of strong passwords, multi-factor authentication, and general security best practices. 
    6. -
    - - - -

    Conclusion: The security incident on the NEAR Discord server served as a crucial reminder of the significance of having robust security measures in place. Prompt action to minimize the impact was taken and the team have since implemented preventive measures to avoid similar incidents moving forward.  Ensuring the security and privacy of our users and their data continues to be our utmost priority. 

    -

    The post Post Mortem: NEAR Discord Security Incident appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-discord/index.html b/public/blog/tag/near-discord/index.html deleted file mode 100644 index 32ad7abca..000000000 --- a/public/blog/tag/near-discord/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Discord Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-ecosystem/feed/index.xml b/public/blog/tag/near-ecosystem/feed/index.xml deleted file mode 100644 index e3616018d..000000000 --- a/public/blog/tag/near-ecosystem/feed/index.xml +++ /dev/null @@ -1,300 +0,0 @@ - - - - NEAR Ecosystem Archives – NEAR Protocol - - /blog/tag/near-ecosystem/ - - Fri, 19 Jan 2024 20:19:03 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Ecosystem Archives – NEAR Protocol - /blog/tag/near-ecosystem/ - 32 - 32 - - - Self-Sovereignty Is NEAR: A Vision for Our Ecosystem - /blog/self-sovereignty-is-near-a-vision-for-our-ecosystem/ - - - Fri, 19 Jan 2024 20:19:02 +0000 - - - - - - - /?p=21170 - - As a kid growing up in Ukraine in the ’90s after the dissolution of the USSR, I remember we watched …

    -

    The post Self-Sovereignty Is NEAR: A Vision for Our Ecosystem appeared first on NEAR Protocol.

    -]]>
    -

    - - - -

    As a kid growing up in Ukraine in the ’90s after the dissolution of the USSR, I remember we watched the price of bread go from 1,000 karbovanets, to 10,000, to 100,000 in less than five years (until that currency was thrown out altogether and replaced with hryvnia). When I first started working as a software developer as a teenager, I kept my earnings in cash in my room because I already understood that we couldn’t trust corrupt banks with our money.

    - - - -

    Between 2014 and 2016 alone, 77 banks failed in Ukraine. My grandparents still have their savings account bank books tracking the money they put away during the USSR years––but those savings don’t exist anymore. So even something that is yours, that you rightfully own, can go away if the system you’re a part of fails. The same thing is happening to millions of people living under hyperinflation, dictatorships, and war zones across the world, of course. And while these may seem like abstract or distant problems that won’t arrive at your doorstep, let me tell you from my own experience: nothing is guaranteed. 

    - - - -

    Every system is as fragile as the rules holding it together. And the rules can change. They’re changing around us right now, and I believe we are approaching a point of no return. 

    - - - -

    The Need for Digital Self-Sovereignty

    - - - -

    We need to create new economic opportunities for people everywhere via self-sovereignty, which should be a universal right and which technology can now provide, not just nation-states as in most other points in history. For citizens of nations who’ve enjoyed economic security and a high degree of sovereignty, this may not seem like an immediate-term issue. But it is. 

    - - - -

    The economics of tech companies leads inevitably to corrupting their original product or vision for the sake of profit in order to maintain growth, and more importantly, they naturally involve creating barriers for someone else to disrupt. In order to maintain their power, governments will use pressure and ingenuity in order to control their populations, too often to the point of violating human rights in the name of safety or security. 

    - - - -

    We all use our phones and computers a thousand times a day, prioritizing convenience over self-sovereignty because until now, we haven’t had a choice. We are now approaching a tipping point towards a dystopian future that we may not be able to come back from, brought on not just by governments but by the economics of tech companies. What happens when these incentives increasingly collide and push each other deeper into the lives of individuals for the sake of maintaining control and profit? 

    - - - -

    That’s right about where we are today. 

    - - - -

    Changing the Stakes with Generative AI

    - - - -

    Before founding NEAR, I was an AI researcher. I worked at Google where I contributed to TensorFlow, and eventually published a paper with a handful of colleagues called “Attention Is All You Need.” That paper introduced the Transformers architecture that powers ChatGPT, Bard, and most of the well-known LLMs behind last year’s explosive growth in AI. 

    - - - -

    I was first interested in AI because of the 2001 movie, “Artificial Intelligence.” Changing how we interact with computing and augmenting one’s intelligence to maximize human potential was, and still is, very appealing to me. And I still think it has the potential to make human lives, organizations, even governments better. But like any other technology, in the hands of the wrong people or with the wrong incentives, it also has the potential to make our lives terrible. 

    - - - -

    Generative AI is creating a universal and scalably personal method of enabling control and manipulation. Practically, it means your social feed and search results can ensure that you buy specific products or form a specific opinion. This will start in the form of commercial improvements that lead to more profit for tech giants: Netflix will generate a movie script that can shape your opinion, Facebook can reinforce that opinion by showing you more of it, and so on. This could even happen at a more fundamental level, such as flooding training data with specific information to influence all models trained on it. 

    - - - -

    If this granular information and vector of manipulation on such a personal level can be extracted or bought, it will be, and then it will become a tool for control. If it’s stored somewhere centralized and hackable, it will be stolen––we see this constantly with Web2 giants as it is. If governments can get access to this data, they will use it to maintain or grow their power. 

    - - - -

    The true danger that generative AI introduces is that this exploitation won’t just be on a systems level or a population level, it will become personal and incredibly specific. The depth of potential control and manipulation goes to the level of each and every human, no matter where they live, no matter where they keep their money. Such a powerful technology simply cannot remain in the hands of centralized companies, nor be too easy for governments to take over.

    - - - -

    So What Should We Do About It?

    - - - -

    So if people don’t yet feel the sense of urgency towards building new systems that uphold self-sovereignty, what will make it real for people? Changes in collective values are always driven by economic opportunity. The major revolutions of history started because of economic failures: American independence from Britain, the French Revolution, the collapse of the USSR, and so on. If people see ways to create better economic realities for themselves and their families, then they will turn values into actions. 

    - - - -

    Creating new opportunities for people via self-sovereignty is what NEAR is about. Complete self-sovereignty  has been the NEAR vision since day one: we want to build a world where all people can control their own assets, data, and power of governance. This sovereignty must apply not only at the level of individuals but also the organizations and communities they create, and eventually societies. 

    - - - -

    Self-sovereignty is a new primitive that hasn’t existed before today. One always needed to rely on some power of violence for ensuring rules are followed, most recently nation-states. One of the core principles of digital self-sovereignty is the ability to choose and switch between any service provider. There is no lock- in. There are no middlemen like banks or government agencies that can lose or steal assets, or change the rules on you out of nowhere. 

    - - - -

    Importantly, this must also apply to AI. People need to own their data so they know what it’s being used for and so they can actively consent to personalized experiences they think will improve their lives. Models must be governed transparently, in public, with clear rules and monitoring to proactively manage risk and reputation systems to build more clarity around information and traceability. Web3 can help to uphold, scale, and manage such systems to ensure AI is a force for good while also preventing it from being too exploitable. 

    - - - -

    Another major challenge, which is especially clear in governance but it also applies to corporations, is that when we select someone to represent our ideas for us as our delegate, they will always have their own interests and motivations in the mix as well. They don’t necessarily have nefarious intentions, it’s just a natural tendency. This is the “principal agent problem,” wherein the person elected behaves differently than the people who elected them or pay them would prefer based on their best interests. This is where AI governance systems can help by introducing neutral agents, where unbiased AI agents governed directly by a community can act on their behalf in a more reliable way. With transparent governance and monitoring, AI can be a force for good in individual lives as well as for the collective. 

    - - - -

    A Vision for the NEAR Future

    - - - -

    Despite my concerns about where the traditional tech paradigm is potentially heading, I remain a techno-optimist. I wouldn’t be doing this work if I didn’t think it was for the good of everyone, and I’ve read enough sci-fi to know that the outcomes of science and technology are much more about what people do with them than the tech itself. If we want something, we should build it. 

    - - - -

    I would like NEAR to become a fully sovereign operating system that is equipped with a personal AI assistant that optimizes for users’ needs without revealing private information about the user’s data or assets. It should also be able to interact and transact with other people’s AIs and the community’s AIs peer-to-peer. I call this “user-owned AI.”

    - - - -

    We also need shared community AIs, which are governed by the members of such a community. They represent the mix of needs and knowledge of all the members of such a community, from something like a small club or startup, to the city, to the nation-state, to the global level. There is always an opportunity to fork one community and create new ones. The community governs which data goes into training its community model, and can run inference (running live data through a model) privately in such a way that only the user sees input and output, while getting a proof that the selected model was used.

    - - - -

    To facilitate this vision, a lot of pieces need to come together:

    - - - -
      -
    • Economic and technological opportunity to enable users to onboard en masse.
    • - - - -
    • Open source software across the stack, from blockchain tech to AI models.
    • - - - -
    • Blockchains must get abstracted away from the user so they are not barriers to entry or participation. I call this the principle of Chain Abstraction.
    • - - - -
    • Applications must provide a novel value unlock: for example, Cosmose and Sweat. These apps reward users and serve as an economic gateway into a broader ecosystem of opportunities.
    • - - - -
    • On-edge, meaning hyperlocal, AI models that are usable by individuals (and free of manipulation).
    • - - - -
    • Community-owned AI models with governance and economic opportunity, replacing everything from business ops to government agencies. Self-governance by the people, for the people, at scale with the help of technology and decentralized peer-to-peer systems.
    • -
    - - - -

    Blockchains, peer-to-peer payments, Web3, zero-knowledge, very large language models and on-edge AI models: these are not separate technology verticals, but rather interconnected facets of a new digital paradigm of self-sovereignty. 

    - - - -

    We have the tools to remake how we provide for ourselves, how we work together and govern ourselves, and how we consume and generate information. Without gatekeepers, fair and open to everyone. And this is not a futuristic vision: it’s possible to start experimenting and building now, before our fragile and outdated systems and structures get weaker or fail, before too much centralization leads to the worst outcomes instead of the ones we all design and share together.

    ––Illia Polosukhin, Co-Founder of NEAR and CEO of NEAR Foundation

    -

    The post Self-Sovereignty Is NEAR: A Vision for Our Ecosystem appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - An Update on NEAR Ecosystem Block Explorers  - /blog/an-update-on-near-ecosystem-block-explorers/ - - - Tue, 10 Oct 2023 15:28:45 +0000 - - - - /?p=20962 - - TLDR:  Pagoda’s core goal is to provide the NEAR community with high-quality, reliable, and innovative tools to build and interact …

    -

    The post An Update on NEAR Ecosystem Block Explorers  appeared first on NEAR Protocol.

    -]]>
    - TLDR: 

    - - - -
      -
    1. Explorer.near.org will be transitioned to the Explorer Selector by the end of November 2023. 
    2. - - - -
    3. Public access to Explorer DB will be turned off on November 30, 2023. 
    4. - - - -
    5. The Legacy NEAR Explorer will be turned off on January 31, 2024. NEARBlocks.io block explorer will continue to be actively maintained throughout this transition.
    6. -
    - - - -

    Pagoda’s core goal is to provide the NEAR community with high-quality, reliable, and innovative tools to build and interact with the blockchain while fostering an ecosystem of innovation. The legacy NEAR block explorer, hosted at explorer.near.org, was originally built by Pagoda as the first and only block explorer on the NEAR blockchain. In the early days of NEAR, it was important to bootstrap the necessary indexers, databases, and a block explorer to keep track of events on the blockchain. As alternative block explorers have now met and surpassed the functionality and reliability of the original NEAR Explorer, Pagoda has decided to turn off public access to Explorer DB and transition the legacy NEAR Explorer to the Explorer Selector by the end of November. 

    - - - -

    This leads to good news for those looking for a reliable and high-quality explorer experience. The Invoker Labs team behind NEARBlocks.io launched the Explorer Selector, enabling users and developers to pick their favorite community-built explorers. For projects that link out to explorer.near.org, those links will continue to work, but they will first display the Explorer Selector, where the user can select their preferred explorer and continue to the transaction, block, or account. 

    - - - -

    For feedback on the Explorer Selector and/or to get your NEAR block explorer project listed, please visit the NEARBlocks Explorer Selector GitHub Repo. By the end of November 2023, explorer.near.org will be the new home for the Explorer Selector.

    - - - -

    Details of Transition Plan: 

    - - - -
      -
    1. October 10, 2023: -
        -
      1. Notice within explorer.near.org explaining that it will be sunsetted by January 31, 2024, and linking to this blog post. The details of which Explorer DBs are sunsetting can be found in the NEAR documentation.
      2. - - - -
      3. Direct communication with partners that rely on the explorer to plan interruption-free migration has begun.
      4. - - - -
      5. NEARBlocks Explorer Selector is live. Please leave feedback directly in the NEARBlocks Explorer Selector GitHub Repo.
      6. -
      -
    2. - - - -
    3. November/December 2023: -
        -
      1. Shared Public access to the Explorer DB will be sunset on Thursday, November 30, at 12:00 p.m. PT. Check out ExplorerDB alternatives to maintain interruption-free service for your product.
      2. - - - -
      3. Explorer.near.org will transition to the Explorer Selector. This will include the process to get other block explorers added to the Explorer Selector. 
      4. - - - -
      5. The process for potential future explorers will be shared with the community to encourage diversity of tooling across NEAR. 
      6. -
      -
    4. - - - -
    5. January 31, 2024: -
        -
      1. The legacy NEAR Explorer will be removed from the Explorer Selector and turned off. 
      2. -
      -
    6. - - - -
    7. April 30, 2024 -
        -
      1. ExplorerDB private API gated access will be completely shut off.
      2. - - - -
      3. All wallets, tools, and projects that rely on the ExplorerDB must have migrated to avoid a loss of functionality.
      4. -
      -
    8. -
    - - - -

    If you have a product that may be affected by the sunset of Explorer or Explorer DB, please comment on this NEAR Social post from Pagoda or message @austinbaggio from the Pagoda product team directly on Telegram so they can ensure a smooth transition period. 

    -

    The post An Update on NEAR Ecosystem Block Explorers  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-ecosystem/index.html b/public/blog/tag/near-ecosystem/index.html deleted file mode 100644 index fdace1de4..000000000 --- a/public/blog/tag/near-ecosystem/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Ecosystem Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-foundation-council/feed/index.xml b/public/blog/tag/near-foundation-council/feed/index.xml deleted file mode 100644 index 8683ad37d..000000000 --- a/public/blog/tag/near-foundation-council/feed/index.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - NEAR Foundation Council Archives – NEAR Protocol - - /blog/tag/near-foundation-council/ - - Thu, 19 Oct 2023 13:53:54 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Foundation Council Archives – NEAR Protocol - /blog/tag/near-foundation-council/ - 32 - 32 - - - Illia Polosukhin returns to NEAR Foundation Council to continue the evolution of NEAR ecosystem, Diogo Mónica, Founder of Anchorage, joins as Chairman - /blog/illia-polosukhin-returns-to-near-foundation-council-to-continue-evolution-of-near-ecosystem-diogo-monica-founder-of-anchorage-joins-as-chairman/ - - - Wed, 18 Oct 2023 14:00:00 +0000 - - - /?p=20985 - - NEAR Foundation today announced that Illia Polosukhin, co-founder of the NEAR protocol, will be returning to the NEAR Foundation Council …

    -

    The post Illia Polosukhin returns to NEAR Foundation Council to continue the evolution of NEAR ecosystem, Diogo Mónica, Founder of Anchorage, joins as Chairman appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation today announced that Illia Polosukhin, co-founder of the NEAR protocol, will be returning to the NEAR Foundation Council (NFC) with immediate effect as part of a rotation of the NFC on the Foundation’s fourth anniversary. As an NFC member, Illia will be better positioned to support the evolution of the NEAR ecosystem, which puts Web3 founders at the core. Key developments will be revealed at this year’s NEARCON in Lisbon, 7-10 November.

    - - - -

    As part of this rotation, Diogo Mónica has been appointed Chair of the NFC. Diogo is the Founder and President of Anchorage Digital, the world’s most regulated and proven institutional custodian. As the new Chair, Diogo brings years of experience in corporate leadership and crypto technologies, and a track record of scaling innovative and diverse teams in the digital asset space. Richard Muirhead, Founder, Chairman and Managing Partner at Fabric, will remain as NFC member, a position he has held since its inception; Sheila Warren, CEO of the Crypto Council for Innovation, will remain as advisor to the NFC; and Chris Donovan, CEO of NEAR Foundation, remains as NFC member. 

    - - - -

    Mona El Isa, Marieke Flament & Jason Warner have elected to step down from their positions on the NFC.

    - - - -

    Diogo Mónica, NFC Chairperson, remarked: “I am delighted to be joining the NEAR Foundation Council as Chair, joining Illia, Chris, Richard and Sheila. I have been following the impressive progress of the NEAR ecosystem for some time. Huge strides have been made over the last few years in building towards an Open Web. I am privileged to play my part in the next evolution of the NEAR ecosystem to continue on the Open Web journey, and excited to do my bit to bring new ideas and direction to support Founders building in the NEAR ecosystem.” 

    - - - -

    The next evolution of the NEAR ecosystem will be unveiled at NEARCON, NEAR’s yearly ecosystem flagship event in Lisbon, from 7-10 November. Tickets are on sale at nearcon.org for $99.

    -

    The post Illia Polosukhin returns to NEAR Foundation Council to continue the evolution of NEAR ecosystem, Diogo Mónica, Founder of Anchorage, joins as Chairman appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-foundation-council/index.html b/public/blog/tag/near-foundation-council/index.html deleted file mode 100644 index 3c9adf729..000000000 --- a/public/blog/tag/near-foundation-council/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Council Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-foundation-policy-priorities/feed/index.xml b/public/blog/tag/near-foundation-policy-priorities/feed/index.xml deleted file mode 100644 index 736217df9..000000000 --- a/public/blog/tag/near-foundation-policy-priorities/feed/index.xml +++ /dev/null @@ -1,340 +0,0 @@ - - - - NEAR Foundation Policy Priorities Archives – NEAR Protocol - - /blog/tag/near-foundation-policy-priorities/ - - Thu, 15 Jun 2023 18:43:10 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Foundation Policy Priorities Archives – NEAR Protocol - /blog/tag/near-foundation-policy-priorities/ - 32 - 32 - - - NEAR Foundation Announces Policy Principles  - /blog/near-foundation-announces-policy-principles/ - - - Fri, 28 Apr 2023 18:11:08 +0000 - - - /?p=20459 - - It’s no surprise that the Web3 industry presents many unique challenges for lawmakers and regulators globally. Decentralised, permissionless technology is, …

    -

    The post NEAR Foundation Announces Policy Principles  appeared first on NEAR Protocol.

    -]]>
    - It’s no surprise that the Web3 industry presents many unique challenges for lawmakers and regulators globally. Decentralised, permissionless technology is, in many ways, at odds with much of current law and regulation that assumes centralised, intermediated and gatekept systems. Adding to this inherent complexity, Web3 technology is borderless by nature, spanning countless jurisdictions and legal/regulatory frameworks.

    - - - -

    We believe that fair, proportionate and clear regulation can benefit our industry and is necessary if we want to see genuine global growth and adoption of Web3 technology. We also believe that the policy outcomes advanced by most regulators globally (protecting investors, maintaining market integrity and promoting financial stability) are reasonable and capable of being achieved in the Web3 context with the right approach (i.e. regulatory equivalence is possible).

    - - - -

    Indeed, many of Web3’s core features (including decentralisation, disintermediation, transparency and immutability) make it uniquely suited to effectively achieving these policy outcomes. But, to achieve these outcomes, regulation must be fair and proportionate. If regulation isn’t fair and proportionate — if it doesn’t consider the unique features and associated challenges inherent to Web3 technology — then it can stifle innovation and undermine the very policy goals lawmakers and regulators are trying to advance1

    - - - -

    CURRENT STATE OF PLAY

    - - - -

    Currently, there is no common or consistent approach to Web3 regulation. Laws and regulations that do exist vary widely between jurisdictions. In some jurisdictions, including Switzerland, the European Union (EU), the United Kingdom (UK), Japan, Singapore and Hong Kong, we are seeing progress and, critically, a recognition that, at least in some respects, our industry does require a different approach. In the EU, for example, the Markets in Crypto-Assets Regulation (MiCA) (the text of which was agreed upon late last year and is anticipated to come into force in late 2024) aims to create a harmonised, comprehensive legal framework across all EU member states for the regulation of crypto assets and related activities2 (although other policy developments are troubling3). Switzerland was one of the first jurisdictions to implement an effective regulatory framework for digital assets back in 20184 and has since been home to a vibrant Web3 ecosystem. The UK has also signaled its intent to embrace our industry, recently launching a significant consultation to seek views on how the UK could best regulate the Web3 industry5, which followed an excellent Law Commission of England and Wales (Law Commission) paper on personal property law and digital assets (as well as a consultation on decentralised autonomous organisations (DAOs) which recently closed6).

    - - - -

    However, in other jurisdictions, most notably the US, there has been an increasing, and in many cases, overt hostility towards our industry. Amongst other things, a recent White House report on crypto is scathing7, a Treasury Department analysis of decentralised finance (DeFi) (somewhat more balanced than the White House report) contains some fundamental technical and policy misunderstandings8, banking access for Web3 projects has been compromised in a seemingly coordinated and deliberate manner9, prominent lawmakers talk of creating an ‘anti-crypto army,’10 and aggressive legislation proposals are receiving increased support. Regulators continue to rely on outdated laws and regulations that aren’t fit for purpose without providing any clarity or guidance that the industry desperately needs, let alone a viable route to registration11. Amidst this complex and unclear regulatory background, regulators and the industry alike struggle with definitive asset classification and the industry faces a wave of enforcement actions12

    - - - -

    This approach is unquestionably damaging the Web3 industry in the US (and beyond), driving many projects out of the jurisdiction. It is not a fair or proportionate regulatory approach, it is regulation by enforcement.

    - - - -

    WHERE DOES THIS LEAVE THE INDUSTRY?

    - - - -

    There is much work to do, particularly in the US. As an industry, we need to recognise that these regulatory challenges and the apparent growing hostility can potentially harm us all. However, what is unfolding now across our industry in the US could become a seminal and net positive moment if we can unite and mobilise effectively.

    - - - -

    The NEAR Foundation’s primary focus is to support the ongoing growth and development of the NEAR protocol and its associated ecosystem, but it also has a more general mandate to accelerate the adoption of open technologies at a global scale. The Foundation, therefore, has a responsibility to advocate for reasonable, proportionate and effective approaches to regulating our industry. 

    - - - -

    Part I of this series sets out the NEAR Foundation’s core policy priorities for the next 12 months and beyond to increase awareness of the key issues, and to show what guides the NEAR Foundation as we advocate on behalf of the NEAR ecosystem and the wider industry. These policy priorities are: (1) protect developers and open source software; (2) protect privacy; (3) promote autonomy; (4) protect validators; (5) promote clarity, collaboration and good faith engagement.

    - - - -

    In Part II of this series, to follow shortly, we set out policy initiatives to help drive these priorities forwards.

    - - - -

    NEAR FOUNDATION POLICY PRIORITIES

    - - - -
      -
    1. PROTECT DEVELOPERS AND OPEN SOURCE SOFTWARE
    2. -
    - - - -

    Developers are the lifeblood of our industry, responsible for creating, maintaining, and innovating the infrastructure on which Web3 operates. To foster innovation and growth, it is essential to safeguard developers from onerous regulation and ensure that publishing open source code remains free and open. Developers should be able to explore, experiment, and create without unnecessary constraints, burdensome obligations or fear of liability (including, for example, designation as fiduciaries13 or ‘Financial Institutions’14). 

    - - - -

    Open source code is a powerful tool that enables transparency, collaboration, and rapid innovation,  allowing developers to share, modify, and build upon existing work while enhancing the security of the code. By defending the right to publish open source code, we also support the principles of freedom of expression and the free flow of information. This not only benefits the Web3 community but also fosters a culture of open collaboration across the entire technology industry and encourages its continued development.

    - - - -
      -
    1. PROTECT PRIVACY
    2. -
    - - - -

    Privacy is a fundamental human right and a cornerstone of the Web3 vision to create a more secure, user-centric and user-empowered web. However, as a neutral and highly transparent technology, blockchain (and other Web3 technology) is equally capable of being misused for warrantless mass surveillance and censorship if appropriate privacy safeguards aren’t in place. We are already seeing various attempts to erode privacy in Web3 that could have far-reaching consequences well beyond our industry15.

    - - - -

    Web3 technology has demonstrated that maintaining privacy can be compatible with other important policy outcomes including, for example, the prevention of crime. Zero-knowledge proof (and other) innovations are already capable of implementing (for example) KYC/AML and sanctions checks without exposing sensitive personal data16.

    - - - -

    Privacy should be staunchly defended to protect individuals from unwarranted surveillance, invasive data collection, censorship and malicious actors. Policymakers should support these outcomes when it comes to Web3 technology, as they have done in Web2 with data protection legislation such as GDPR and DPA. By championing privacy, we want to ensure that Web3 technology continues to respect users and empower them to own and control their data. 

    - - - -
      -
    1. PROMOTE AUTONOMY
    2. -
    - - - -

    Ensuring individuals can use self-hosted products and services free of heavy restrictions or obligations is critical to user empowerment. Through self-hosting, users can fully control their assets and data, enhance their privacy, and reduce censorship risks and reliance on centralised intermediaries and service providers (and it is often within such centralised intermediaries that risk is most highly concentrated17). Self-hosting is also a foundational component of secure, resilient, diverse and competitive ecosystems since it minimises centralised points of failure and dangerous concentrations of power18 and supports decentralised infrastructure and governance systems19. But, we are already seeing proposals that would harm autonomy by significantly constraining the development and use of self-hosted products and services20.

    - - - -

    Users should be able to seamlessly embrace self-hosting as a viable and attractive alternative to centralised service offerings and also safely participate in decentralised autonomous governance systems (including DAOs) without fear of liability or being subjected to burdensome obligations. Many in the industry, including those working on NEAR protocol’s transition to the Blockchain Operating System21, are pioneering technological innovations to make this possible. Policymakers should also enable these outcomes. 

    - - - -
      -
    1. PROTECT VALIDATORS
    2. -
    - - - -

    Validators are the backbone of decentralised networks, ensuring those networks can function effectively by validating transactions, maintaining transaction accuracy and ensuring adherence to consensus rules. In performing this essential function, validators should not be subject to burdensome obligations or significant liability risks22. Accordingly, a balance should be struck between the need for regulatory clarity, network security and ease of validator participation.

    - - - -

    A good starting point could be the creation of a light-touch, standardised public disclosure regime whereby validators would be required to disclose relevant information about their operations. This relevant information could include (amongst other things) relevant digital asset holdings, ownership of/the extent of their node operations, fee structure, affiliations with other significant ecosystem participants, hardware and software infrastructure, security measures, and past performance records. De minimis thresholds could be implemented so that the disclosure requirements would apply only to those validators operating at scale and in connection with significant networks. This approach could also provide much-needed clarity by confirming the nature and extent of participating validator obligations and liability in the context of network failures, security breaches or other adverse events, providing an incentive for participation in the regime.

    - - - -

    This type of disclosure-based approach would reduce information asymmetry, and therefore promote investor protection and help to maintain market integrity. It also has other advantages, including: (1) focusing on the types of activities that are being undertaken rather than the nature or classification of the underlying asset (the latter approach can create enormous complexity, as evidenced by the current situation in the US); and (b) being relatively flexible and so capable of application to other critical network participants including, for example, core development teams who are building/maintaining certain types of Web3 projects/infrastructure23.

    - - - -

    By establishing clear guidelines and legal safeguards for validators (and other network participants), policymakers can provide a conducive environment for validators to operate without fear of significant legal consequences. This will promote the resilience, security and growth of decentralized networks and help to preserve critical benefits of Web3 – decentralisation and disintermediation.

    - - - -
      -
    1. PROMOTE CLARITY, COLLABORATION AND GOOD FAITH ENGAGEMENT
    2. -
    - - - -

    The industry desperately needs clarity from lawmakers and regulators. Effective policy debate requires willingness from both policymakers, and the industry to discuss issues in good faith24, as well as a recognition that Web3 presents a unique and unprecedented policy challenge and therefore an openness to exploring new approaches.

    - - - -

    We should also recognise that as developers, users, and other proponents of Web3 technology, we are each representatives of and advocates for our industry. Our conduct matters, and we should all strive to act with integrity and set a good example to show policymakers what our industry is capable of, and the unique value it can generate25. To do this effectively, collaboration across the industry is essential. 

    - - - -

    CLOSING THOUGHTS

    - - - -

    Productive dialogue between the industry and regulators will hopefully lead towards further legal and regulatory clarity in Web3, which will have a positive effect on: (1) developers, by offering them a framework in which to operate, aware of their obligations and protected from the unreasonable application of unsuitable laws and regulations; and (2) users, by providing a safe environment in which to try new products and services and explore a new technological frontier where autonomy, transparency and privacy are paramount.  

    - - - -

    We believe that the light-touch disclosure based approaches (like the high-level proposal referenced above), as well as safe harbour implementations26 (which provide projects with viable, conditioned routes to registration/compliance – and which could be integrated into a wider disclosure based regime), sandboxes (to explore specific activities like digital asset issuance, updated AML/KYC processes etc.) and model law proposals27 (amongst other approaches), show significant promise and warrant further work and discussion28

    - - - -

    We will explore some of these potential routes forwards in more detail in Part II of this series. 

    - - - -

    In the meantime, we believe that regulatory clarity and consensus are essential for the meaningful global adoption of Web3 technology. Policymakers’ approach to Web3 will continue to evolve, and on-going education efforts and good faith discussions will be key to moving the conversation in a positive direction. We welcome the opportunity to engage with other industry participants, as well as lawmakers and regulators globally, to develop a fair and proportionate approach in support of these policy priorities. 

    - - - -

    Disclaimer: Nothing in this article/post should be construed as legal, tax or investment advice. This post might not reflect all current updates to applicable laws, regulations or guidance. The authors disclaim any obligation to update this post and reserve the right to make any changes to this post without notice. In all cases, persons should conduct their own investigation and analysis of the information in this post. Where this post contains links to other sites and resources provided by third parties, these links are provided for information only and should not be interpreted as approval by us of those linked websites (or any information obtained from them) that the authors of this post do not control.

    - - -
    -
    - -
    - -
    -
    - - -

    Footnotes:

    - - - -

    1. See, e.g., Running on Empty: A Proposal to Fill the Gap Between Regulation and Decentralization, Hester M. Peirce, speech on February 6, 2020 (available here), where Peirce discusses the current challenges in the US with the lack of legal clarity around decentralization and the outdated application of the Howey Test to crypto assets. See also, e.g., The SEC, Digital Assets and Game Theory, Yuliya Guseva, 46 J. Corp.. L. 629-679 (2021)(available here), which suggests that the SEC’s regulation via enforcement actions approach has broken the ‘fabric of cooperation’ between industry participants and the SEC and is therefore leading to bad outcomes for all market participants. See further testimony before the US House Financial Services Subcommittee on Digital Assets, Financial Technology, and Inclusion, hearing entitled Coincidence or Coordinated? The Administrator’s Attack on the Digital Asset Ecosystem, Dr. Tonya M. Evans, March 9, 2023 (available here), where Evans emphasizes the difficulty in innovating and building in Web3 given the present uncertain regulatory climate in the US.

    - - - -

    2. MiCA will primarily regulate centralised intermediaries/crypto-asset service providers in a relatively proportionate manner, enabling so-called ‘passporting’ across all member states and largely carving out decentralised initiatives, demonstrating a clear recognition by EU lawmakers and regulators of the current and future importance of our industry. MiCA isn’t perfect – the provisions governing stablecoins are unwieldy and challenging, the bloc’s intended approach to decentralised initiatives remains largely unknown and some other legislative developments are troubling (see footnote 3) – however, it represents a meaningful launching-off point for engagement and future iteration, and will provide much-needed clarity and consistency across the world’s largest single market.

    - - - -

    3. See, e.g., Proposal for a Regulation on Information Accompanying transfers of funds and Certain Crypto-Assets, Piotr Bąkowski, European Parliamentary Research Service, 20 July 2021 (available here), which proposes to expand travel rule obligations to all crypto-asset service providers (CASPS) and require them to collect identifying data in respect of all transactions with no minimum transaction threshold (while the TradFi equivalent rule has a €1k minimum transaction threshold). See also, e.g., Proposal for a Regulation of the European Parliament and of the Council on harmonised rules on fair access to and use of data (Data Act), European Commission, 23 February 2022 (available here), which proposes mandating that certain smart contracts be ‘reversible’ and/or contain a so-called ‘kill switch’ in the ‘Internet of Things’ (IOT) context. See also, e.g., “Decentralised” or “disintermediated” finance: what regulatory response?, April 2023, the Autorité de Contrôle Prudentiel et de Résolution (ACPR) (available here), which proposes, in effect, to ‘re-intermediate’ DeFi (amongst other things) by requiring DeFi projects to incorporate in the EU, and to classify DeFi front-ends as regulated intermediaries with data collection and monitoring obligations.

    - - - -

    4.  The Swiss Financial Market Supervisory Authority (FINMA) published ‘ICO Guidelines’ in February 2018 (available here), which set out a relatively straightforward digital asset classification framework with the aim of providing clarity to market participants. 

    - - - -

    5.  The consultation indicates an approach inspired partly by MiCA — i.e. regulate centralised intermediaries based on their activities, but recognise that decentralised initiatives will require a different approach — and asks the industry to provide views and feedback to inform the UK Government’s approach. This degree of engagement with industry is extremely encouraging. The NEAR Foundation will be submitting a consultation response and we would encourage all industry stakeholders to do the same. The consultation paper is available here.  

    - - - -

    6.  The Law Commission’s consultation paper dealing with law reform proposals in the context of digital assets and personal property rights is available here, and the Law Commission’s consultation paper on DAOs can be found here.

    - - - -

    7.  The Annual Report of the Council of Economic Advisors, 20 March 2023 (available here), p. 238. (“[C]rypto assets to date do not appear to offer investments with any fundamental value, nor do they act as an effective alternative to fiat money, improve financial inclusion, or make payments more efficient; instead, their innovation has been mostly about creating artificial scarcity in order to support crypto assets’ prices—and many of them have no fundamental value.”) 

    - - - -

    8.  See, e.g., Coin Centre’s excellent commentary on the Treasury DeFi risk assessment. Peter Van Valkenburgh, Treasury’s new DeFi risk assessment relies on ill-fitting frameworks and makes potentially unconstitutional recommendations, 7 April 2023 (available here).

    - - - -

    9.  See, e.g., Operation Choke Point 2.0: The Federal Bank Regulators Come for Crypto, Cooper & Kirk LLP (available here).

    - - - -

    10.  See, e.g., Elizabeth Warren is building an anti-crypto army. Some conservatives are on board, Zachary Warmbrodt, Politico, 14 February 2023 (available here).

    - - - -

    11.  See, e.g., Due to SEC Inaction, Registration is Not a Viable Path for Crypto Projects, Rodrigo Seira, Justin Slaughter, Katie Biber, Paradigm (available here), which notes that despite SEC Chair Genlser repeatedly telling projects to ‘come in and register’, current US securities laws are incompatible with various features of Web3, making registration a practical impossibility for Web3 projects.

    - - - -

    12.  Only this week, the SEC commenced an enforcement action against Bittrex, alleging, among other things that the Bittrex Platform “merged three functions that are typically separated in traditional securities markets—those of broker-dealers, exchanges, and clearing agencies—despite the fact that Bittrex has never registered with the SEC as a broker-dealer, national securities exchange, or clearing agency,” and arguing that five tokens, including Algorand and DASH, are securities. Securities and Exchange Commission v Bittrex Inc., (WD Wash) (Complaint), No 2:23 cv 00580. See also e.g., SEC Cryptocurrency Enforcement Update, Cornerstone Research 2022 (available here), according to which, in 2022 alone the SEC brought 30 crypto-related enforcement actions against Web3 projects. In spite of the numerous enforcement actions, the SEC has still not provided any material guidance to the industry to foster regulatory compliance. For a longer list of SEC crypto asset enforcement actions, please refer to the SEC’s summary available here

    - - - -

    13.  See, e.g. Tulip Trading Ltd v Van der Laan and Ors [2023] EWCA Civ 83, a case currently in the High Court of England & Wales (following the successful appeal of a High Court order for summary judgment which was overturned by the Court of Appeal) that considers whether certain core developers of various Bitcoin networks owe network users either a fiduciary duty and/or a tortious duty of care, and therefore is one of the most important cases to date in the context of developer duties/liability. 

    - - - -

    14.  See e.g., 31 U.S.C. § 5312(a)(2) (defining a financial institution as an entity encompassing various organizations and businesses, including but not limited to banks, credit unions, investment companies, broker-dealers, insurance companies, currency exchanges, and money transmitters, or deemed to engage in similar activities). Being classified as a ‘Financial Institution’ from a US law perspective subjects a person to (amongst other things) various onerous information collection and reporting duties, including a duty to: (1) identify and record personal information of any person who uses the relevant software/service; (2) develop anti-money laundering (AML) programmes that can block persons from using the relevant software/service where there are suspicions of illegal activity; and (3) file reports about users of the relevant software/service to the government.

    - - - -

    15.  See, e.g., the Digital Asset Anti-Money Laundering Act proposed in December last year in the US by Senators Warren and Marshall (the “Warren/Marshall Act”),  which would significantly erode the privacy of anyone using or supporting public blockchain infrastructure; See also, e.g., Coin Centre’s post here for further analysis. See further, e.g., the US Infrastructure Bill which contains two particularly problematic revisions to the US Tax Code: (1) widening the definition of ‘broker’ so that it captures non-custodial service providers and transfers involving self-hosted wallets; and (2) an adjustment to include digital assets within provision §6050I, with the result that businesses would need to collect information about counterparties whenever they receive digital assets worth more than $10,000 in value. See also footnote 3 re ACPR’s proposals to treat DeFi front-ends as intermediaries which would require information collection and reporting with respect to users.

    - - - -

    16.   Zero-Knowledge (ZK) proofs are a cryptographic technique that enable one party to prove to another party that they have knowledge of a certain piece of information, without revealing the underlying information itself. ZK proofs can enhance privacy and efficiency in KYC and AML compliance, as they can enable individuals to prove that they have already completed KYC with a trusted provider without disclosing their personal data to other parties. ZK proofs can also allow individuals to prove that they are not on any sanctions or watch lists without revealing their identity or location. ZK proofs can reduce the risk of identity theft, data breaches, and fraud, as well as lower the operational costs and complexity of KYC and AML processes. See, e.g., zkKYC – A solution concept for KYC without knowing your customer, leveraging self-sovereign identity and zero-knowledge proofs, Pieter Pauels, Smart Contract Research Forum, July 2021 (available here). 

    - - - -

    17.  For example, both FTX and Alameda were (extremely) centralised digital asset intermediaries, performing functions and offering services to customers in a bundled manner, and it is critical to recognise that: (1) the market contagion following the collapse of FTX/Alameda was significantly amplified precisely because of the centralised, opaque nature of the institutions (as well as alleged criminal behaviour); and (2) the contagion across decentralised ecosystems, which are open,  transparent, and disintermediated by design, was notably less severe precisely because of these unique Web3 features. In relation to (2) see, e.g., Report of the Cotnell SC Johnson College of Business, 2022 Cornell Roundtable Forum on Digital Assets, (available here).

    - - - -

    18.  From a policy perspective, a key element of promoting autonomy involves the prevention of concentrations of power amongst a small number of centralised service providers/market actors that bundle various services together, something that has been a feature of the industry to date. See, e.g., Policy Paper Series (Part 1): Reframing How We Look at a Crypto Legislative Solution, Delphi Digital & LeXPunK, 17 March 2023 (available here)), which proposes a regulatory framework for public permissionless blockchain networks focussing on the regulation of systemically important vertically-integrated centralised actors.

    - - - -

    19.  The NEAR Digital Collective (NDC) is a community grassroots initiative in the NEAR ecosystem that is working to support the ongoing development of sustainable governance infrastructure and the ecosystem’s continuing decentralisation. The NEAR Foundation supported the NDC’s recent launch of a decentralised treasury that represents an important step in the NEAR ecosystem’s ongoing decentralisation. See, e.g., NEAR Digital Collective Legal Framework, 21 March 2023 (available here).  

    - - - -

    20. The Warren/Marshall Act would classify all providers of self-hosted wallets (and effectively anyone else who maintains public blockchain infrastructure) as ‘Financial Institutions’, subjecting them to a host of onerous obligations that are in practice impossible to comply with, and would significantly constrain the development and use of self-hosted products and services. See footnote 14 for more detail on the onerous obligations of ‘Financial Institutions’ from a US perspective. See also footnote 3 re ACPR’s proposals to treat DeFi font-ends as intermediaries which would require information collection and reporting with respect to users.

    - - - -

    21. The Blockchain Operating System (BOS) serves as a single platform that developers can build into and users can interact on, including by browsing and discovering Web3 products such as crypto exchanges, non-fungible token (NFT) galleries and social networks. The BOS will be compatible with all blockchains (currently supporting NEAR protocol and Ethereum Virtual Machine chains), with NEAR protocol acting as the common entry point. The BOS offers a decentralized and composable and front end framework for building, launching, and using dApps, while leveraging common user experience frameworks such as profiles, notifications, and searching.For more information on the BOS, see, e.g., Near Protocol Announces the Blockchain Operating System, NEAR Foundation, 2 March 2023 (available here); Near Protocol Starts ‘Blockchain Operating System’ to Focus on User Experience, Lyllah Ledesma, Coindesk, 2 March 2023 (available here).

    - - - -

    22. For example, Rule 3b-16(a)(2), Securities Exchange Act of 1934, 15 U.S.C. §§ 78a-78qq (2012). defines an exchange as an organization that (1) brings together the orders for securities of multiple buyers and sellers; and (2) uses established, non-discretionary methods under which such orders interact with each other, and the buyers and sellers entering such orders agree to the terms of the trade. The SEC’s proposed amendment to Rule 3b-16(a)(2) replaces the phrase “uses established, non-discretionary methods,” with “makes available established, non-discretionary methods,” which could inadvertently capture “developers working with all manners or protocols, front end systems, and smart contracts,” along with persons who “operate…’validators’ on the underlying blockchain where the AMM is stored”. See Reg-X-Proposal-An-Expempt-Offering-Framework-for-Token-Issuances, LeXpunK-Army, 7 March 2023 (available here). 

    - - - -

    23.  The “Token Safe Harbor Proposal 2.0” framework proposed by SEC Commissioner Hester Peirce includes measures applying to validators, including “information, detailing…the process for validating transactions.” See Token Safe Harbor Proposal 2.0, Commissioner, Hester M. Peirce, 13 April 2021 (available here); See also, e.g., Safe Harbor X, LeXpunK-Army, 7 March 2023 (available here) (proposing a rule that would provide an exemption for the distribution of autonomous cryptotokens to users and builders of autonomous software systems, based on the Token Safe Harbor Proposal 2.0, but with some modifications and additions, such as requiring semi-annual updates, an exit report, guidance on decentralization criteria, and clarifying the definition and scope of autonomous cryptotokens and autonomous cryptosystems). These safe harbor proposals would operate to effectively provide projects with conditioned routes to compliance, based on each project meeting various requirements (including disclosures, smart contract audits, and degree of decentralisation).

    - - - -

    24.  In any principles-based regulatory system, regulators are generally afforded wide discretion to interpret and enforce regulations in line with desired policy outcomes. Where that discretion is misused or otherwise not exercised in good faith, those systems break down with the result that innovation is stifled and policy goals are undermined.

    - - - -

    25.  See, e.g., Community Policy Initiative No. 1, Polygon Labs, 11 April 2023 (available here)

    - - - -

    26.  See footnote 23 for more information on potential safe harbor implementations in the US.

    - - - -

    27.  Model law proposals are draft laws or regulations that are proposed by regulators or other authorities to address specific issues or challenges in a given domain. Model law consultations and proposals can serve as guidance or inspiration for other jurisdictions that are considering similar reforms or initiatives. See, e.g., Model Law For Decentralized Autonomous Organizations, Constance Choi, Primavera De Filippi, Rick Dudley, Silke Not Elrifia, Coalition of Automated Legal Applications, 2021 (available here); Proposal for a Regulation on Markets in Crypto-assets, European Commission, September 2020 (available here) (proposing a regulation that would establish a comprehensive framework for crypto-assets in the European Union, which eventually led to MiCA); Future financial services regulatory regime for cryptoassets: Consultation and call for evidence, UK Treasury, February 2023 (available here) (proposing a new regulatory regime for cryptoassets in the UK).

    - - - -

    28.  See, e.g.,Brief of LexpunK as Amicus Curiae Regarding Plainitff’s Motion for Alternative Service, LeXpunK, CFTC v. Ooki DAO et al., No. 3:22-cv-05416-WHO (N.D. Cal. Oct. 17, 2022) (available here) (challenging the CFTC’s motion for alternative service against token holders of Ooki DAO, a decentralized crypto platform, on the basis that DAOs are not legal entities or persons, but rather collections of smart contracts that run autonomously on a blockchain without any central authority or control). See also, e.g., Brief of Coinbase Global Inc. as Amicus Curiae in Support of Defendants’ Motion to Dismiss, Coinbase Global Inc., SEC v. Ripple Labs Inc. et al., No. 1:20-cv-10832-AT-SN (S.D.N.Y. Oct. 31, 2022) (available here) (arguing that the SEC failed to provide fair notice to market participants that XRP was considered a security); See also, e.g., Brief of Blockchain Association as Amicus Curiae in Support of Defendants’ Motion to Dismiss, Blockchain Association, SEC v. Wahi et al., No. 2:22-cv-02101-RSL (W.D. Wash. Feb. 13, 2023) (available here) (expressing support for the Defendants’ argument for dismissal and claiming that the SEC exceeded its authority by declaring certain tokens to be securities without prior findings and attempting to punish absent third parties who had no meaningful opportunity to defend themselves); See also, e.g.,Brief of Blockchain Association and DeFi Education Fund as Amici Curiae in Support of Plaintiffs’ Motion for Partial Summary Judgment, Blockchain Association & DeFi Education Fund, Van Loon v. Dep’t of the Treasury, No. 1:23-cv-00312-RP (W.D. Tex. April 12, 2023) (available here) (challenging OFAC’s sanctions on Tornado Cash, a privacy-protecting software protocol on Ethereum, as being based on a misunderstanding of blockchain technology and violating the Administrative Procedure Act). 

    - - - -

    - - -
    - -
    -
    -

    The post NEAR Foundation Announces Policy Principles  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-foundation-policy-priorities/index.html b/public/blog/tag/near-foundation-policy-priorities/index.html deleted file mode 100644 index 8f12269ec..000000000 --- a/public/blog/tag/near-foundation-policy-priorities/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Policy Priorities Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-foundation-update/feed/index.xml b/public/blog/tag/near-foundation-update/feed/index.xml deleted file mode 100644 index 5a53a5526..000000000 --- a/public/blog/tag/near-foundation-update/feed/index.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - - NEAR Foundation Update Archives – NEAR Protocol - - /blog/tag/near-foundation-update/ - - Thu, 11 Jan 2024 08:04:19 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Foundation Update Archives – NEAR Protocol - /blog/tag/near-foundation-update/ - 32 - 32 - - - An Update from the NEAR Foundation - /blog/an-update-from-the-near-foundation/ - - - Thu, 11 Jan 2024 08:01:06 +0000 - - - - /?p=21148 - - Dear NEAR Community, The NEAR Foundation’s vision has always been to help the world create a truly Open Web, giving …

    -

    The post An Update from the NEAR Foundation appeared first on NEAR Protocol.

    -]]>
    - Dear NEAR Community,

    - - - -

    The NEAR Foundation’s vision has always been to help the world create a truly Open Web, giving all people full control of their data, privacy, and power of governance. In 2023, the NEAR ecosystem saw remarkable progress towards this vision, with the NEAR Protocol now home to three of the top ten apps in Web3, a record number of daily users, and closer collaboration than ever with the Ethereum community.

    - - - -

    With the NEAR Foundation Council (NFC), we’ve conducted a thorough review of the Foundation’s activities. During this process, we heard feedback that the Foundation has not always been as effective as it could be, sometimes moving too slowly and trying to do too many things at once. Following this review, we have decided to significantly consolidate the core Foundation team to focus on a narrower and higher-impact set of activities. Over time, Foundation’s footprint will continue to contract as the ecosystem further decentralizes and various nodes drive more activity in the network and across the ecosystem.

    - - - -

    As part of this realignment, NEAR Foundation will reduce its team by approximately 40%, impacting 35 colleagues, primarily across the marketing, business development, and community teams. The NEAR Protocol Engineering Team at Pagoda will continue to operate as it has. The NEAR Foundation will provide support to affected colleagues during this time to help them find new opportunities in the NEAR ecosystem, the Web3 industry, and beyond. We thank each of our departing colleagues for your efforts and contributions towards our shared vision of the Open Web.

    The NEAR Foundation treasury remains strong and well-managed, with over $285m fiat, 305m NEAR (worth over $1B), and $70m of investments and loans. The Foundation is well-placed to continue to support the ongoing growth, development, and further decentralization of the NEAR Protocol and ecosystem.

    - - - -

    Thank you to everyone in the NEAR community for your ongoing efforts and support. We are excited to move forward with more focus, more efficiency, and more speed. We’ll share more updates soon about what comes next as we work to advance chain abstraction, user-owned AI, and mainstream adoption of the Open Web.

    - - - -

    Keep building,

    - - - -

    Illia

    - - - -

    –Illia Polosukhin, CEO of NEAR Foundation

    - - - -

    -

    The post An Update from the NEAR Foundation appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-foundation-update/index.html b/public/blog/tag/near-foundation-update/index.html deleted file mode 100644 index 3ea6a6a88..000000000 --- a/public/blog/tag/near-foundation-update/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Update Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-foundation/feed/index.xml b/public/blog/tag/near-foundation/feed/index.xml deleted file mode 100644 index a62755b33..000000000 --- a/public/blog/tag/near-foundation/feed/index.xml +++ /dev/null @@ -1,106 +0,0 @@ - - - - NEAR Foundation Archives – NEAR Protocol - - /blog/tag/near-foundation/ - - Wed, 08 Nov 2023 06:51:56 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Foundation Archives – NEAR Protocol - /blog/tag/near-foundation/ - 32 - 32 - - - Enter the Black Dragon: NEAR Co-Founder Joins the NEAR Foundation as CEO - /blog/enter-the-black-dragon-near-co-founder-joins-the-near-foundation-as-ceo/ - - - Tue, 07 Nov 2023 14:00:00 +0000 - - - - /?p=21045 - - The NEAR Foundation announced today that Illia Polosukhin, co-founder of NEAR Protocol, has been appointed NEAR Foundation CEO to lead …

    -

    The post Enter the Black Dragon: NEAR Co-Founder Joins the NEAR Foundation as CEO appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation announced today that Illia Polosukhin, co-founder of NEAR Protocol, has been appointed NEAR Foundation CEO to lead the NEAR ecosystem into the next phase of building an open web. As the person who has driven the vision for NEAR from the very beginning, there is no one better to oversee the growth of the NEAR Open Web Ecosystem and guide the constellation of teams building on NEAR to work together towards that common vision. From the earliest days of NEAR, Illia’s vision of an open web has guided the development of the ecosystem and served as a north star for the Foundation. In his new role as CEO, he will be able to realize that vision in a more direct and streamlined way. 

    - - - -

    “I’m honored and excited to officially join the NEAR Foundation and continue working together with the ecosystem to build towards our shared vision of an open web,” said Illia Polosukhin about his new role. “Effectively coordinating a decentralized ecosystem involves a lot of iteration and experimentation and I’m proud that NEAR has committed to refining this process since the very beginning. I believe this next step in our shared evolution will help us build our respective verticals faster and work together more efficiently.” 

    - - - -

    With his ability to bring together key nodes and align people across the ecosystem, Illia has always been a powerful guiding force for NEAR, something that his new role will allow him to continue and expand. As NEAR cements its position as the entry point to an open web, Illia’s appointment will help to create common work streams across the organization and broader ecosystem organizations that will help accelerate this journey. Combining a decentralized ecosystem approach with a more streamlined strategic coordination function will accelerate NEAR into its next phase of evolution, the details of which Illia will share at this week’s NEARCON. 

    - - - -

    To help ensure the ecosystem nodes building this open web vision are coordinating effectively, Chris Donovan will be stepping into the position of NEAR Foundation COO to oversee the day-to-day operations of the Foundation, and will also remain as a member of the NEAR Foundation Council. Chris has been essential in this transition to a founder-led organization, and the Foundation and the whole ecosystem extend gratitude and appreciation for his work.

    - - - -

    With a clear vision, strong leadership, an engaged ecosystem, and a passionate community all building towards a common vision, NEAR is poised to take its next bold step into an open web. All members of the NEAR community are invited to join this week for the biggest, most exciting NEARCON ever in Lisbon, or tune in virtually at nearcon.org starting Wednesday, November 8. You won’t want to miss the chance to hear exciting announcements and strategy updates from Illia, demos from top projects across the ecosystem, and leading perspectives from the Web3 industry during three days of talks, hackathons, and celebration.  

    -

    The post Enter the Black Dragon: NEAR Co-Founder Joins the NEAR Foundation as CEO appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Illia Polosukhin returns to NEAR Foundation Council to continue the evolution of NEAR ecosystem, Diogo Mónica, Founder of Anchorage, joins as Chairman - /blog/illia-polosukhin-returns-to-near-foundation-council-to-continue-evolution-of-near-ecosystem-diogo-monica-founder-of-anchorage-joins-as-chairman/ - - - Wed, 18 Oct 2023 14:00:00 +0000 - - - /?p=20985 - - NEAR Foundation today announced that Illia Polosukhin, co-founder of the NEAR protocol, will be returning to the NEAR Foundation Council …

    -

    The post Illia Polosukhin returns to NEAR Foundation Council to continue the evolution of NEAR ecosystem, Diogo Mónica, Founder of Anchorage, joins as Chairman appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation today announced that Illia Polosukhin, co-founder of the NEAR protocol, will be returning to the NEAR Foundation Council (NFC) with immediate effect as part of a rotation of the NFC on the Foundation’s fourth anniversary. As an NFC member, Illia will be better positioned to support the evolution of the NEAR ecosystem, which puts Web3 founders at the core. Key developments will be revealed at this year’s NEARCON in Lisbon, 7-10 November.

    - - - -

    As part of this rotation, Diogo Mónica has been appointed Chair of the NFC. Diogo is the Founder and President of Anchorage Digital, the world’s most regulated and proven institutional custodian. As the new Chair, Diogo brings years of experience in corporate leadership and crypto technologies, and a track record of scaling innovative and diverse teams in the digital asset space. Richard Muirhead, Founder, Chairman and Managing Partner at Fabric, will remain as NFC member, a position he has held since its inception; Sheila Warren, CEO of the Crypto Council for Innovation, will remain as advisor to the NFC; and Chris Donovan, CEO of NEAR Foundation, remains as NFC member. 

    - - - -

    Mona El Isa, Marieke Flament & Jason Warner have elected to step down from their positions on the NFC.

    - - - -

    Diogo Mónica, NFC Chairperson, remarked: “I am delighted to be joining the NEAR Foundation Council as Chair, joining Illia, Chris, Richard and Sheila. I have been following the impressive progress of the NEAR ecosystem for some time. Huge strides have been made over the last few years in building towards an Open Web. I am privileged to play my part in the next evolution of the NEAR ecosystem to continue on the Open Web journey, and excited to do my bit to bring new ideas and direction to support Founders building in the NEAR ecosystem.” 

    - - - -

    The next evolution of the NEAR ecosystem will be unveiled at NEARCON, NEAR’s yearly ecosystem flagship event in Lisbon, from 7-10 November. Tickets are on sale at nearcon.org for $99.

    -

    The post Illia Polosukhin returns to NEAR Foundation Council to continue the evolution of NEAR ecosystem, Diogo Mónica, Founder of Anchorage, joins as Chairman appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-foundation/index.html b/public/blog/tag/near-foundation/index.html deleted file mode 100644 index 45aa6d50d..000000000 --- a/public/blog/tag/near-foundation/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Foundation Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-horizon/feed/index.xml b/public/blog/tag/near-horizon/feed/index.xml deleted file mode 100644 index f3a8fce6b..000000000 --- a/public/blog/tag/near-horizon/feed/index.xml +++ /dev/null @@ -1,669 +0,0 @@ - - - - NEAR Horizon Archives – NEAR Protocol - - /blog/tag/near-horizon/ - - Thu, 27 Jul 2023 15:11:27 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Horizon Archives – NEAR Protocol - /blog/tag/near-horizon/ - 32 - 32 - - - Case Study: NEAR Foundation’s Laura Cunningham on the NEAR Horizon Startup Accelerator - /blog/case-study-near-foundations-laura-cunningham-on-the-near-horizon-startup-accelerator/ - - - Wed, 26 Jul 2023 16:00:00 +0000 - - - - /?p=20758 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: NEAR Foundation’s Laura Cunningham on the NEAR Horizon Startup Accelerator appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

    - - - -

    In the latest NEAR Foundation Case Study video, viewers hear from Laura Cunningham, Team Lead at NEAR Horizon and General Manager at NEAR Foundation. NEAR Horizon is a Web3 accelerator program revolutionizing how founders and builders receive support in the open web. Laura takes viewers on a deep dive into Horizon’s startup accelerator marketplace, which the Horizon team built on the Blockchain Operating System (BOS). 

    - - - -

    “The BOS was our platform of choice for building NEAR Horizon because it makes Horizon much more accessible to founders and projects that are already in the ecosystem. And then ones coming in new, you can be building on another chain as long as you have some component of your stack on NEAR then you can apply and be part of NEAR Horizon,  ” she adds. “It is also incredibly composable, so we were able to fork different attributes that were already available on BOS and make use of them in our front end, so it made it a lot quicker to actually develop.”

    - - - -
    - -
    -

    The post Case Study: NEAR Foundation’s Laura Cunningham on the NEAR Horizon Startup Accelerator appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at Collision: Start Your BOS Journey and Expand into the Open Web - /blog/near-at-collision-start-your-bos-journey-and-expand-into-the-open-web/ - - - Wed, 28 Jun 2023 00:00:00 +0000 - - - - - /?p=20672 - - Collision is here. Today, June 26th through the 29th in Toronto, Ontario, NEAR experts will be on hand at Collision …

    -

    The post NEAR at Collision: Start Your BOS Journey and Expand into the Open Web appeared first on NEAR Protocol.

    -]]>
    - Collision is here. Today, June 26th through the 29th in Toronto, Ontario, NEAR experts will be on hand at Collision to showcase how brands and companies can make a move into the Open Web with NEAR’s Blockchain Operating System (BOS). The BOS redefines the Web2-to-Web3 experience. Now anyone can effortlessly create and distribute decentralized applications, using any blockchain — all in one browser.  

    - - - -

    Don’t miss NEAR Horizon, NEAR Foundation’s new Web3 startup support platform, which will also be at Collision. If you’re a founder or developer, then you will definitely want to meet with the Horizon team to get started on the Web3 funding and building journey.  

    - - - -

    Here is what to expect from NEAR at Collision 2023

    - - - -

    NEAR Speaker Sessions you won’t want to miss

    - - - -

    Tuesday, Jun 27, 12:00 – 12:45 PM

    - - - -

    Location: Beanfield Centre, Masterclass 1

    - - - -

    Masterclass: “The Fastest Way to Add Web3 to Your App”

    - - - -

    NEAR is transforming Web3 for developers, enterprises, and users alike with the Blockchain Operating System (BOS) – a common layer for browsing and discovering open web experiences compatible with any blockchain. NEAR founder Illia Polosukhin shows how the fastest onboarding in Web3 combined with decentralized frontends and embedded social features can help Web2 brands and Web3 projects deliver new & easy experiences and grow their communities.

    - - - -

    Speaker: Illia Polosukhin, NEAR Protocol, Co-founder

    - - - -

    Tuesday, Jun 27, 2:10 – 2:35 PM

    - - - -

    Location: Enercare Centre, MoneyConf

    - - - -

    Fireside Chat: “At the intersection of AI and Web3

    - - - -

    Speakers:

    - - - -
      -
    • lllia Polosukhin, Near Protocol, Co-founder
    • - - - -
    • Elad Gil, Investor
    • -
    - - - -

    Moderator: Lucinda Shen, Axios, Fintech Reporter

    - - - -

    Wednesday, Jun 28, 01:30 – 02:15 PM

    - - - -

    Location: Beanfield Centre, Masterclass 4

    - - - -

    Masterclass: “How to Decentralize Any Frontend Using BOS”

    - - - -

    Learn how to store your frontend codebase entirely on-chain and make it more accessible to users with NEAR’s Blockchain Operating System (BOS).

    - - - -

    Speaker: Miao Jiang, Head of Product, Proximity Labs

    - - - -

    Wednesday, Jun 28, 02:30 – 03:15 PM

    - - - -

    Location: Beanfield Centre, Masterclass 4
    Panel: “Charting the Course for a Thriving Web3 Ecosystem”

    - - - -

    Delve into the current state of web3 investing, identify the crucial elements for building a thriving web3 ecosystem, and explore innovative strategies for scaling startup support platforms.

    - - - -

    Speakers:

    - - - -
      -
    • Joyce Yang, Founder, Global Coin Research
    • - - - -
    • Steven Chien, Founder, Press Start Capital
    • - - - -
    • Paul Hsu, Co-founder, Decasonic
    • - - - -
    • Moderator: Laura Cunningham, General Manager, NEAR Foundation
    • -
    - - - -

    Thursday, Jun 29, 12:23 – 12:27 PM

    - - - -

    Location: Enercare Centre, Growth Summit

    - - - -

    Keynote: “Solving the Blockchain Enterprise Dilemma”

    - - - -

    Speaker: Sandi Fatic, Co-founder, CEO, Calimero Network

    - - - -

    Events from the NEAR Community

    - - - -

    June 27, 6-9 PM – NEAR Horizon Pitch & Networking | Collision 2023

    - - - -

    The NEAR Horizon team is partnering with VCs and Funding Teams from around the world who are looking to back exceptional entrepreneurs for the long term to build the future of Web3.

    - - - -

    June 28, 10 AM-8 PM – Web3 Day (& Night) | Collision Conference Toronto

    - - - -

    An invite-only event for the Web3 community & Web3 curious during the Collision conference in Toronto. Panels, speakers, networking, art, music, food & drinks, pitch opportunities, and more.

    - - - -

    June 29, 6-9 PM – NEAR Toronto Launch Party
    An exhilarating event that marks the launch of the NEAR Toronto Regional Community and concludes the three-day Collision Conference.

    - - - -

    Stay tuned to Near.org/collision for the latest event updates. 

    -

    The post NEAR at Collision: Start Your BOS Journey and Expand into the Open Web appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Encode x NEAR Horizon Bootcamp: Your Mission to Master Web3 Rust Contracts - /blog/encode-x-near-horizon-bootcamp-your-mission-to-master-web3-rust-contracts/ - - - Wed, 14 Jun 2023 14:00:00 +0000 - - - - /?p=20629 - - Web3 builders, developers, and founders are gearing up to join the Encode x NEAR Horizon Bootcamp starting July 10th, 2023 …

    -

    The post Encode x NEAR Horizon Bootcamp: Your Mission to Master Web3 Rust Contracts appeared first on NEAR Protocol.

    -]]>
    - Web3 builders, developers, and founders are gearing up to join the Encode x NEAR Horizon Bootcamp starting July 10th, 2023 to upgrade their building, development, and coding skills. Following the recent partnership between NEAR Horizon and Encode Club, the bootcamp is part of a broader initiative to accelerate blockchain expertise with a focus on developing Rust smart contracts.

    - - - -

    Encode Club is a community that helps builders grow their technical capabilities with tangible results, such as completing projects, promoting employability, and gaining funding. This mission aligns seamlessly with NEAR Horizon, a new branch of the NEAR Foundation fostering innovation and development among early stage Web3 Founders building in the NEAR ecosystem

    - - - -

    If you’re a self-starting developer hungry to learn more about building on NEAR, then the NEAR x Encode Club Bootcamp might just be the perfect crash course to get started and progress rapidly. Apply here for the NEAR x Encode Bootcamp. Here’s the lowdown on what the bootcamp will entail and how NEAR builders can fast track their Web3 skillset and knowledge base to the next level.

    - - - -

    Ranking up in Web3 with the NEAR x Encode Club Bootcamp

    - - - -

    Firstly, selected participants can attend the bootcamp for free, reflecting Encode Club’s commitment to supporting Web3 builders. The 90-minute lessons will be conducted via Zoom (or similar), Monday through Thursday over the course of eight weeks, and feature an engaging mix of deep educational content focused on smart contract development as well as hands-on learning from Encode Club technical experts.

    - - - -

    Mentors will guide participants through a variety of topics and related subjects, demystifying  the myriad of concepts and nuances inherent in blockchain development. The focus will be primarily on the NEAR ecosystem, with the goal of ensuring that everyone gains the practical skills and knowledge to excel, succeed, and create in the rapidly evolving Web3 world. 

    - - - -

    Calling all coders: Bootcamp application and selection process

    - - - -

    There are no official prerequisites to applying for the bootcamp. However, previous coding and Web3 or blockchain experience (particularly with RUST) will help you get the most from the sessions. The Bootcamp is also part-time, giving attendees flexibility with their full-time commitments.

    - - - -

    After registration, the pool will be whittled down to a shortlist who will be asked to conduct a brief interview before being formally selected and invited to attend. At this time, selectees will be asked to provide a small deposit, repaid when the Bootcamp concludes. The cohort size will be roughly 50 people, with Encode Club assisting in job placement once finished.

    - - - -

    The NEAR x Encode Club Bootcamp is a perfect example of the work NEAR Horizon is doing as a startup support platform for the entire ecosystem. Any builders, developers, or NEAR blockchain enthusiasts should apply directly through Encode Club right away, as cohort space is currently limited. To learn more about NEAR Horizon or to list your project on the Horizon platform, visit near.org/horizon.

    - - - -

    Your mission – should you choose to accept and sign the transaction – is to master Web3 at the NEAR x Encode Club Bootcamp. Apply now and report for duty on July 10th!

    -

    The post Encode x NEAR Horizon Bootcamp: Your Mission to Master Web3 Rust Contracts appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Horizon and Encode Club: Accelerating Blockchain Mastery for Builders - /blog/near-horizon-and-encode-club-accelerating-blockchain-mastery-for-builders/ - - - Tue, 09 May 2023 15:00:00 +0000 - - - - - /?p=20482 - - NEAR Horizon and Encode Club have joined forces with a singular mission: to simplify the entry into the Web3 sphere. …

    -

    The post NEAR Horizon and Encode Club: Accelerating Blockchain Mastery for Builders appeared first on NEAR Protocol.

    -]]>
    - NEAR Horizon and Encode Club have joined forces with a singular mission: to simplify the entry into the Web3 sphere. This partnership forms a structured pathway, offering builders and founders a seamless transition into the blockchain world. Anchoring their efforts on practical solutions, NEAR Horizon and Encode Club aim to foster an inclusive and accessible future in the ever-evolving decentralized landscape.

    - - - -

    Uniting Encode’s developer training expertise with NEAR’s advanced tech, the partnership goes beyond facilitation. It directly trains builders, fueling growth and actively shaping an open Web3.

    - - - -

    Encode x NEAR Horizon: Four steps to blockchain expertise

    - - - -

    This inclusive program is meticulously designed to accommodate everyone from those new to blockchain to well-versed industry professionals, promoting skill development and exploration in Web3.

    - - - -

    Here’s what to expect:

    - - - -
      -
    1. Encode x NEAR Horizon Educational Series: The journey commences with a four-week program of building awareness of Web3 and NEAR Technology. These sessions aim to demystify blockchain technology, making it approachable for newcomers while offering valuable insights for seasoned professionals. From introductory presentations to in-depth technical demos, the educational series lays a solid foundation for all participants.
    2. -
    - - - -
      -
    1. Encode x NEAR Horizon Bootcamp: An intense eight-week program offers a deep dive into the world of blockchain development. Participants engage in live classes, practical assignments, and collaborative group projects — all under the expert guidance of seasoned instructors. The bootcamp offers a hands-on learning experience, accelerating the participants’ transition from theory to practice.
    2. -
    - - - -
      -
    1. Encode x NEAR Horizon Hackathon: A four-week hackathon that supports builders in launching high-quality projects. This event is designed to challenge participants and allow them to apply their newfound skills. With technical workshops, mentorship, and continual support, the hackathon provides an excellent platform for budding developers to build, learn, and innovate.
    2. -
    - - - -
      -
    1. Encode x NEAR Horizon Accelerator Program: This eight-week program focuses on nurturing the most promising hackathon projects and ecosystem builders. By offering mentorship and weekly workshops, the accelerator program aims to transform innovative ideas into operational startups, contributing to the growth and diversity of the NEAR ecosystem.
    2. -
    - - - -

    In essence, this partnership between NEAR Foundation and Encode Club is more than just an event — it’s a comprehensive roadmap to blockchain mastery, designed to educate, engage, challenge, and inspire all who embark on the journey.

    - - - -

    Cultivating talent: Encode x NEAR Horizon growth strategy

    - - - -

    The program offers a well-structured process for developers to learn, practice and build startups while receiving mentorship support from Encode and NEAR Horizon. The program’s impact extends beyond individual growth, as it also fosters a thriving environment for the NEAR ecosystem and Web3 developers.

    - - - -

    Don’t miss the chance to be part of this enriching experience — an opportunity that promises to strengthen the NEAR ecosystem while nurturing the next generation of Web3 developers. Embark on a rewarding blockchain journey with the NEAR Horizon and Encode Club partnership. Whether it’s the educational series, hackathon, bootcamp, or accelerator program, NEAR Horizon and Encode provide the resources and opportunities you need to succeed in the world of blockchain. Your blockchain adventure starts here. 

    - - - -

    To start,  create a NEAR Horizon project profile and register to the Encode x NEAR Horizon program here. Stay updated on Encode Club’s programs via their website, Twitter, and Discord, and join a community that shares your passion for Web3 innovation and growth. NEAR Horizon was recently launched, read the press release here, and register in the NEAR Horizon platform here.

    -

    The post NEAR Horizon and Encode Club: Accelerating Blockchain Mastery for Builders appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at Consensus Highlights - /blog/near-at-consensus-highlights/ - - - Thu, 27 Apr 2023 20:18:30 +0000 - - - - - - /?p=20451 - - NEAR has a monolithic mega-booth at Consensus 2023, where there have been a number of awesome NEAR announcements, talks, and …

    -

    The post NEAR at Consensus Highlights appeared first on NEAR Protocol.

    -]]>
    - NEAR has a monolithic mega-booth at Consensus 2023, where there have been a number of awesome NEAR announcements, talks, and events, including the big news out: the Blockchain Operating System is now live on Near.org and the NEAR Horizon accelerator is open for business. If you haven’t stopped by yet to meet our NEAR experts or are unable to attend, we’ve got you covered with all of the highlights.

    - - - -

    Let’s take a look at everything NEAR at Consensus, including the BOS, NEAR Horizon, a submissions call for the latest edition of Women in Web3, and much more! And stay tuned for more NEAR at Consensus highlights over the next few days.

    - - - -

    The BOS is now live on Near.org

    - - - -
    - - - -

    On April 26th at Consensus, NEAR co-founder and Pagoda CEO Illia Polosukhin and Pagoda Chief Product Officer Alex Chiocchi announced that the Blockchain Operating System (BOS) — a real alternative to the Operating Systems of centralized platforms — is now live at near.org. 

    - - - -

    As a blockchain operating system for an open web, the BOS is accessible to everyone, not just web3 natives. And it makes Web3 and Web2 easier than ever to access and navigate for users and developers alike. With the BOS, you no longer have to choose between decentralization and discoverability. Devs and users get the best of both worlds, whether they are new to Web3 experiences and want to play around, or developers looking to build an open web. 

    - - - -

    Read the full BOS announcement here

    - - - -

    NEAR Horizon: A revolutionary accelerator for Web3 startups

    - - - -
    - - - -

    NEAR Foundation also announced the launch of Near Horizon, a Web3 accelerator program, on the 26th from Consensus. Built on the Blockchain Operating System (BOS), Horizon features a revolutionary marketplace where Web3 startups can find the support they need for building on Near and cross-chain platforms. 

    - - - -

    Together with partners Dragonfly, Pantera, Decasonc, Blockchange, Fabric Ventures, dLab, Hashed, and Factomind, and Outlier Ventures, Near Horizon is on a mission to empower founding teams with the tools and support they require to accelerate the development of sustainable, profitable, innovative startups on Near.

    - - - -

    Near Horizon’s robust network of support is a game-changer for Near builders, offering new opportunities and resources to propel the best minds in the Near ecosystem to success.

    - - - -

    Read the full NEAR Horizon announcement here

    - - - -

    NEAR opens submissions for Women in Web3 Changemakers 2023

    - - - -
    - - - -

    Following its hugely successful launch a year ago, Women in Web3 is back! On Day 2 of Consensus, NEAR Foundation announced the return of its global Women in Web3 Changemakers list.  

    - - - -

    Nominations are now open for 2023! Designed to showcase the talented and socially mindful women who make up the Web3 ecosystem, the initiative will once again spotlight ten exceptional leaders across the international sector and the amazing, sustainable work they do.

    - - - -

    Members of the Web3 community — both men and women — are welcome to nominate and submit the names of female colleagues who they feel should be recognized for their exemplary contribution to Web3. Women who work in Web3 can also nominate themselves. 

    - - - -

    Each nominee should meet the following criteria, which NEAR uses to define impact:

    - - - -
      -
    1. Inclusion – driving ideas that are good for society, sustainable, and socially impactful.
    2. - - - -
    3. Influence – in the community and among peers.
    4. - - - -
    5. Innovation – contributing to interesting and socially impactful projects at work or independently.
    6. -
    - - - -

    The top ten Changemakers will be decided by you — the community! 

    - - - -

    Important Dates for Submissions and Voting

    - - - -

    More details on the voting process will be announced shortly. But here are some important dates.

    - - - -
      -
    • June 1, 2023 — Nominations Deadline
    • - - - -
    • June 5, 2023 — Voting Begins
    • - - - -
    • June 19, 2023 (Midnight) — Voting Ends
    • - - - -
    • June 29, 2023 — 10 Changemakers for 2023 will be announced
    • -
    - - - -

    Those selected will be included in the Women in Web3 Changemakers list, which will be shared with the press and the global community. NEAR will also feature the winners in a special series of video interviews that will air across NEAR’s social platforms and distribution network to share each award-winner’s story and contributions to Web3. Founders of Web3 companies that have made the list will also have the opportunity to meet with investors and pitch for funding at the event.

    - - - -

    Google Cloud Unveils Web3 Startup Program 

    - - - -
    - - - -

    Google Cloud recently made a splash in the Web3 space by announcing its Web3 Startup program via a Twitter thread during Consensus. Catering to seed and Series A projects and startups, the program offers up to $200K in cloud credits, and access to technical training. Recipients also receive partner perks including discounts on Nansen AI products and platform credits from Alchemy, and Thirdweb’s gasless contract deployment, support, and co-marketing opportunities.

    - - - -

    Google’s support of Web3 will benefit founders building on the Blockchain Operating System (BOS) and those partnering with the recently launched NEAR Horizon, an accelerator revolutionizing how founders are supported in Web3. NEAR Horizon will enable founding teams to scale their project with the support they need, increasing the number of founding teams building great products with real-world value on the NEAR Protocol.

    - - - -

    To apply, visit the application portal and explore more information on the official website.

    - - - -

    Here’s how to get involved:

    - - - - - - - -

    NEARCON is Returning to Lisbon and NEAR APAC is Headed to HCMC, Vietnam!

    - - - -

    Today at Consensus, NEAR Foundation announced that NEARCON will take place in Lisbon, Portugal on November 7 – 10, 2023. In an effort to globally scale and create more accessible events, the NEAR Foundation also announced that NEAR APAC will take place in Ho Chi Minh City, Vietnam on September 8 – 12, 2023. Both events will gather an audience of builders, Web2 and Web3 entrepreneurs, industry professionals, investors, and creators from all over the world.

    - - - -

    NEAR APAC will be the NEAR Ecosystem’s first and largest event in the APAC region. NEAR APAC delivers a world-class lineup of speakers to share latest APAC developments, unlimited potential of the blockchain industry, regional market insights, Web3 hacker festival, and insightful events for networking opportunities with local communities and partners. Head to https://nearapac.org/ on May 15th to secure your NEAR APAC tickets!

    - - - -

    NEARCON, the NEAR Ecosystem’s Annual flagship conference is headed back to Lisbon. The Mainnet anniversary of the protocol’s launch and the biggest announcements from the Ecosystem will be featured at NEARCON. Hear from some of the most iconic names in Web3 speak on Technical updates, Web2 and Web3 trends, the latest on Governance and Regulation, Arts and Culture, and much more. 

    - - - -

    This year the conference will take over two venues: Convento De Beato and Armazem Lisboa. Convento de Beato will host the core conference and will feature two larger stages whereas Armazem Lisboa will be Developers HQ where hackers will build all day. Both venues are just a 10 minute walk from each other. Mark your calendars because on June 1st NEARCON tickets will go live on nearcon.org!  

    - - - -

    See you in HCMC and Lisbon this Fall!

    - - - -

    Updates from around the NEAR Ecosystem

    - - - -
    - - - -

    Mailchain brings encrypted communication to NEAR-based dApps

    - - - -

    Mailchain, an open source, multi-chain communication layer for Web3, announced integration with NEAR. Now, NEAR developers can send encrypted messages between blockchain wallet addresses with simple, unified inbox to view and send messages and keep track of on-chain activity. 

    - - - -

    NEAR’s vision has always been to onboard the next billion users to the Open Web. With Mailchain, these next billion users can communicate natively with one another, regardless of blockchain. 

    - - - -

    Mailchain’s integration with NEAR is a significant step towards strengthening the interoperability mission of NEAR’s blockchain operating system (BOS). NEAR’s BOS and Mailchain are both chain-agnostic, prioritize usability and security, and together make Web3 more accessible and interoperable for users.

    - - - -

    “Our vision aligns perfectly with NEAR’s–to onboard the next billion users,” said Tim Boeckmann, CEO of Mailchain. “When building Mailchain, we knew these next billion users would want to communicate with what mattered most to them, their blockchain identities. Mailchain’s secure communication protocol makes this a reality. We believe that this integration is a big step forwards for the developers who are building the next generation of the Internet.”

    - - - -

    XP Network brings cross-chain NFT bridge to NEAR

    - - - -

    During Consensus, the XP Network, a cross chain NFT bridge, went live on NEAR mainnet. XP Network allows NFT holders to transfer their NFTs to any other supported chain. XP Network recently showcased their cross-chain NFT bridge  by transferring a BSC NFT over to Near via the XP Network bridge, and selling it on Mintbase. 

    - - - -

    Now, NFT marketplaces built on NEAR Protocol like Paras, Berry Club, Mintbase, Flux, Few & Far can list the most promising NFT collections from almost 30 other chains. XP Network’s integration will supercharge both arts and collectibles, as well as Web3 gaming on NEAR, with players now being able to buy and trade NFTs in-game across chains. 

    - - - -

    kuutamo and Lattitude.sh give NEAR validators access to premium infrastructure

    - - - -

    From Consensus, Kuutamo announced its partnership with enterprise-grade infrastructure provider Lattitude.sh, which will give developers and current NEAR validators more flexibility and control. NEAR validators using both kuutamo and Latitude can now access premium infrastructure at a limited promotional price, or apply for the kuutamo x Latitude Program.

    - - - -

    A venture-backed technology company, Kuutamo offers a resilient and user-friendly node infrastructure, designed for the peer-to-peer economy. kuutamo launched the world’s first high availability node for the NEAR Protocol, giving users full control and flexibility (no lock-in effect) to execute their desired cloud strategies — differentiating itself from most large public cloud providers in the process.

    - - - -

    Latitude is an emerging global leader, offering access to enterprise-grade infrastructure in the world’s most advanced data centers. In its partnership with kuutamo, Latitude is expanding its offering to developers and NEAR validators. Latitude already supports other leading blockchains and Web3 companies such as Solana, Ankr, and Riot Games.

    - - - -

    WOMBI brings Web2-style analytics to NEAR

    - - - -

    During Consensus, Wombi — a Web3 attribution platform — announced that it is now live on NEAR. With an aim to be the Google Analytics of Web3, Wombi helps decentralized app developers by connecting Web2 and Web3 funnels, so they can instantly see which marketing channels are bringing them the most impactful users. 

    - - - -

    Wombi is now publicly available to all dApps fully live or building on the NEAR Blockchain Operating System or Protocol. All developers get free product and marketing analytics, making NEAR the first Layer 1 with a live attribution product. 

    -

    The post NEAR at Consensus Highlights appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-horizon/index.html b/public/blog/tag/near-horizon/index.html deleted file mode 100644 index 2e6c8909b..000000000 --- a/public/blog/tag/near-horizon/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Horizon Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/near-in-review/feed/index.xml b/public/blog/tag/near-in-review/feed/index.xml deleted file mode 100644 index 4ab8d513d..000000000 --- a/public/blog/tag/near-in-review/feed/index.xml +++ /dev/null @@ -1,137 +0,0 @@ - - - - NEAR in Review Archives – NEAR Protocol - - /blog/tag/near-in-review/ - - Wed, 20 Dec 2023 18:20:17 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR in Review Archives – NEAR Protocol - /blog/tag/near-in-review/ - 32 - 32 - - - 2023: NEAR In Review - /blog/2023-near-in-review/ - - - Wed, 20 Dec 2023 18:10:12 +0000 - - - - /?p=21133 - - by Illia Polosukhin While this was a tough year in the market, we’re closing 2023 on a higher note for …

    -

    The post 2023: NEAR In Review appeared first on NEAR Protocol.

    -]]>
    - by Illia Polosukhin

    - - - -

    While this was a tough year in the market, we’re closing 2023 on a higher note for Web3. The NEAR ecosystem has made great progress on many fronts.

    - - - -

    Here’s a recap of some highlights and accomplishments from this year and a brief look ahead at 2024.

    - - - -

    Year in Review

    - - - -

    The NEAR ecosystem has made great strides in 2023 towards realizing the vision of mainstream adoption of the Open Web in spite of tough market conditions. Four of DappRadar’s top ten apps in all of Web3 are built on the NEAR Protocol and daily active users now regularly exceed a million per day. 

    - - - -

    From launching the Blockchain Operating System in February to NEAR DA in November, the NEAR ecosystem is offering solutions to builders across all Web3 networks to deliver the vision of the Open Web. With 7 million monthly active accounts, 35 million total accounts overall, and a current average of over 2 million transactions per day, the NEAR ecosystem has seen substantial growth in usage this year—and keeps outpacing its peers in terms of daily usage. 

    - - - -

    A lot of exciting technology built on NEAR was also released this year to enable chain abstraction. At EthDenver in February, NEAR Day featured the debut of the Blockchain Operating System—a fully decentralized open web stack and common layer for browsing and discovering open web experiences. By making it easier to build and deploy decentralized on-chain frontends for any network, B.O.S. helps developers build more discoverable and resilient apps while hiding the blockchain infrastructure from users.  

    - - - -

    Building on the benefits of the NEAR account model, the FastAuth onboarding solution lets users create an account in seconds using only an email address and device security. App developers can subsidize gas so users can start using apps immediately upon creating their account, and they only need to set up once in order to access any app on B.O.S. The team has gotten great feedback on the beta and will share some exciting next steps early next year. 

    - - - -

    B.O.S. also includes NEAR QueryAPI, a fully managed, open-source, serverless infrastructure offering NEAR blockchain indexers, storage, and GraphQL endpoints. QueryAPI simplifies the indexer building experience with JavaScript and interactive debugging and eliminates the need to manage cloud infrastructure. The beta already powers 25 indexers in production.

    - - - -

    Beyond rollups using decentralized frontends, I shared the news of 3 exciting Ethereum alignment initiatives to offer NEAR technology to the modular Ethereum ecosystem and benefit the broader Open Web. The collaboration with Polygon Labs on a zkWASM prover will optimize the NEAR L1 and bring NEAR to the forefront of the zero-knowledge research space. 

    - - - -

    The Foundation is working with Eigen Labs to build a fast finality layer for defragmenting Ethereum rollups and also launched NEAR DA, a cost-efficient and data availability layer compatible with L2s offering 11,000x cheaper DA than Ethereum and 30x cheaper than Celestia.

    - - - -
    NEAR reached #1 in daily active users for all of Web3 to close the year, per Artemis.
    - - - -
    4 of the top 10 apps in all of Web3 are built on NEAR & Aurora, per DappRadar’s 30-day ranking.
    - - - -

    Looking Ahead

    - - - -

    As we look towards 2024, the ecosystem will build upon the innovations and market recognition of 2023 with some major advancements at every layer of NEAR’s open web stack, plus expand into exciting new territory on the AI and product fronts. 

    - - - -

    2024 is the year of chain abstraction: blockchains and other infrastructure will become increasingly invisible to users and developers. Just as we don’t need to know if a given website or app we’re using every day is running on Google or Amazon servers, most app users on the Open Web shouldn’t need to manage infra, toggling between accounts and wallets, bridging, or gas. This is the biggest barrier to mainstream adoption. 

    - - - -

    The NEAR ecosystem has been building for chain abstraction since the very beginning with sharding and the account model, and more recently the B.O.S., FastAuth, and ETH alignment solutions. From the user perspective the NEAR blockchain functions like a single platform, but under the hood, every account and smart contract is its own logical chain. 

    - - - -

    Developers today pick an ecosystem based on where they can access liquidity and users, but that will matter less if they can access users and deposit liquidity from any chain – so they can just choose the infrastructure that works best for their application. 

    - - - -

    A big part of advancing chain abstraction for the Web3 space is account aggregation. In order to enable users to transact across all blockchains without needing to think about underlying infrastructure or switch networks, they need a single account from which they can navigate all of Web3. In the true spirit of Web3, this single account should be non-custodial and non-dependent on a specific wallet software or any other single service provider. In addition to FastAuth, Pagoda will launch chain signatures and intent relayers to deliver the full scope of this vision in the first half of 2024.

    - - - -

    At the protocol level, the team will launch Phase 2 of sharding, which is a big deal. TLDR: introducing stateless validation will expand the original Nightshade design, allowing us to avoid fraud proofs. As part of this transition, the state of each shard moves fully into memory, improving performance of each shard—currently 4, soon to be 5—by 10x+. Adding zkWASM on top as the next step will compress execution proofs, enabling even greater decentralization of validators. 

    - - - -

    Finally, the NEAR ecosystem will make bigger strides into AI. I’ve been sharing my views on how AI and blockchains can work together with humans to improve our collective systems and individual experiences while minimizing risk and centralization. We’re working both on AI-driven governance and AI-augmented Web3 experiences to work towards the vision of user-owned AI. 

    - - - -

    Stay tuned for more updates and specifics in January 2024. Thank you to every member of the NEAR community for staying the course and believing in our shared Open Web vision.

    -

    The post 2023: NEAR In Review appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-in-review/index.html b/public/blog/tag/near-in-review/index.html deleted file mode 100644 index 1ef4d2d3d..000000000 --- a/public/blog/tag/near-in-review/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR in Review Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-korea-hub/feed/index.xml b/public/blog/tag/near-korea-hub/feed/index.xml deleted file mode 100644 index b04c3e2ba..000000000 --- a/public/blog/tag/near-korea-hub/feed/index.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - - NEAR Korea Hub Archives – NEAR Protocol - - /blog/tag/near-korea-hub/ - - Thu, 22 Jun 2023 18:38:35 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Korea Hub Archives – NEAR Protocol - /blog/tag/near-korea-hub/ - 32 - 32 - - - NEAR Foundation Partners with Vortex Gaming, a Web3 Subsidiary of Korea’s Largest Gaming Community INVEN - /blog/near-foundation-partners-with-vortex-gaming-a-web3-subsidiary-of-koreas-largest-gaming-community-inven/ - - - Fri, 23 Jun 2023 00:00:00 +0000 - - - - - - /?p=20658 - - NEAR Foundation is excited to announce a new partnership with Vortex Gaming, a Web3 subsidiary of the leading game industry …

    -

    The post NEAR Foundation Partners with Vortex Gaming, a Web3 Subsidiary of Korea’s Largest Gaming Community INVEN appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Vortex Gaming, a Web3 subsidiary of the leading game industry INVEN. INVEN is the largest game media·community in Korea, with a monthly active user (MAU) count of 7.2 million.

    - - - -

    With the guidance of the NEAR Korea Hub, NEAR Foundation and Vortex Gaming plan to achieve mutual growth by collaborating to support the growth of Vortex Gaming; strengthen the NEAR game ecosystem; conduct offline hackathons and events to foster developer talent; and enhance brand awareness and business networks.

    - - - -

    To support Web3 gaming, Vortex Gaming will leverage NEAR’s global layer 1 protocol, known for its user experience and scalability, and the Blockchain Operating System (BOS). The BOS is an OS for an open web, allowing developers to effortlessly build apps for an internet free from centralized platforms.

    - - - -

    “Following the leading companies in the gaming industry such as Kakao Games, Wemade, Netmarble’s Marblex, we expect our sustainable game ecosystem to be further enhanced through this partnership with INVEN,” said Marieke Flament, CEO of NEAR Foundation, expressed her delight at INVEN joining the NEAR ecosystem.

    - - - -

    Vortex Gaming: an open web community game changer

    - - - -

    Vortex Gaming is a content-based game community that builds services optimized for Web3 games. It also offers a global social media platform and features such as Gaming Guild. Vortex’s Gaming Guild will allow members to earn rewards by playing games, participating in tournaments, and contributing to the guild’s community. The guild system also provides a stronger sense of bonding between guild members, which can help strengthen user retention.

    - - - -

    Vortex Gaming also aims to break a major stereotype of current Web3 games as being dominated by a few profit-seeking individuals. It does this by offering specialized content that thoroughly explores the in-game economy, the completeness of the game, and gameplay guide. By leveraging its successful experience in building Web2 communities, Vortex Gaming plans to establish a robust user base by incorporating both high quality content and INVEN’s existing wide pool of users.

    - - - -

    INVEN is the largest game media·community in Korea. For over 20 years it has been the leading company in the game industry, driving the development as the top online game media platform. Based on content generated in-house, INVEN continues to innovate and expand into industries such as entertainment and Web3.

    - - - -

    “The ultimate goal is to build an integrated gamer community that encompasses both Web3 and traditional Web2 gamers by providing high quality Web3 and Web2 content alike,” said Vortex Gaming CEO, HOON JAI LEE. “Gamers and their communities are the most crucial components of the game ecosystem. In addition to offering game content for gamers and their communities, Vortex Gaming envisions establishing a sustainable cycle by incentivizing gamers’ production of content such as character builds and game guides”.

    - - - -

    The NEAR Korea Hub, responsible for business expansion across Korea and other Asian regions, has been instrumental in fostering this partnership. The Hub views Vortex’s onboarding as a significant moment that further accelerates the development of the NEAR gaming ecosystem.

    - - - -

    “While the strong content competitiveness of leading companies plays a crucial role in attracting many users to the NEAR ecosystem, community is the key driving force in maintaining this competitiveness,”said  Scott Lee, Co-CEO of NEAR Korea. “The synergy effects resulting from the onboarding of Vortex Gaming will further strengthen NEAR’s position as the optimal mainnet in the Web3 game ecosystem, accelerating ecosystem development.”

    -

    The post NEAR Foundation Partners with Vortex Gaming, a Web3 Subsidiary of Korea’s Largest Gaming Community INVEN appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-korea-hub/index.html b/public/blog/tag/near-korea-hub/index.html deleted file mode 100644 index d2263db24..000000000 --- a/public/blog/tag/near-korea-hub/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Korea Hub Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-korea/feed/index.xml b/public/blog/tag/near-korea/feed/index.xml deleted file mode 100644 index 7c329379d..000000000 --- a/public/blog/tag/near-korea/feed/index.xml +++ /dev/null @@ -1,317 +0,0 @@ - - - - NEAR Korea Archives – NEAR Protocol - - /blog/tag/near-korea/ - - Mon, 03 Jul 2023 15:23:57 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Korea Archives – NEAR Protocol - /blog/tag/near-korea/ - 32 - 32 - - - NEAR Korea Hub: June 2023 Highlights - /blog/near-korea-hub-june-2023-highlights/ - - - Tue, 04 Jul 2023 00:00:00 +0000 - - - - /?p=20685 - - Since launching in November of 2022, NEAR Korea Hub has hit a number of major milestones in the Korean Web3 …

    -

    The post NEAR Korea Hub: June 2023 Highlights appeared first on NEAR Protocol.

    -]]>
    - Since launching in November of 2022, NEAR Korea Hub has hit a number of major milestones in the Korean Web3 industry. The Hub has significantly contributed to the expansion of the Web3 ecosystem over the past 6 months by forming partnerships with leading domestic game companies, providing generous developer support, and forging long-term relationships with college blockchain clubs. 

    - - - -

    Let’s take a look at all of the exciting things that came out of the NEAR Korea Hub during NEAR co-founder Illia Polosukhin’s visit.

    - - - -

    NEAR co-founder Illia Polosukhin talks Web3 and AI

    - - - -
    - - - -

    A number of major Korean media outlets conducted interviews with Illia on NEAR Protocol’s Web3 and AI strategy. Illia pointed out that NEAR Protocol’s principle focus is on the Blockchain Operating System (BOS) and FastAuth, an important new product that provides a better-than-Web2 onboarding experience that can help foster the mass adoption of Web3.
    Here is a list of Illia’s interviews (the coverage is in Korean):

    - - - -
      -
    • Hankyung (Korea Economy) – “Blockchain and AI will Create the Best Synergy”
    • - - - -
    • Kyunghyang – Blockchain AI Synergy will be Amazing
    • - - - -
    • Kyunghyang Weekly – Is Fake News the Fault of Generative AI?
    • - - - -
    • TechM – Korean Games Leading in Web3.0 Business Model… Synergy with AI and Blockchain
    • - - - -
    • CoinDesk – Popularization of Web3 Starts from User-Centered Thinking
    • -
    - - - -

    Illia’s talk at ETHSeoul & Buidl Asia — June 2nd – June 7th

    - - - -
    - - - -

    Illia attended ETH Seoul and BUIDL Asia — both major Web3 events — as the first keynote speaker, where he gave a speech entitled “Web3’s Future, BOS.”  

    - - - -

    “One of the major problems with Web3 is the user inconvenience when making and using wallets,” Illia pointed out. “With BOS, which provides a Web2-like experience and ease for developers and users, NEAR Protocol wants to connect all blockchain and users to onboard 1 billion users to Web3”. He also added: “BOS acts as a gateway to combine all features such as DeFi and NFT which are scattered around the Web3 network”.

    - - - -

    Illia further emphasized the importance of the Korean market and shared achievements of NEAR Korea Hub. 

    - - - -

    Illia’s Speech at the Gyeonggi Province ‘AI Expert Policy Roundtable’ — June 8th

    - - - -
    - - - -

    Illia was invited to give his speech “The Intersection of AI and Web3” at the “AI Expert Policy Roundtable” hosted by Gyeonggi-do, the largest province in Korea. He also discussed potential partnership opportunities with the governor of Gyeonggi-do, who is also a presidential candidate.

    - - - -
    - - - -

    In his speech, Illia noted: “AI should be open source instead of closed source. We need to find institutional measures to secure and manage high-quality data based on Web3 technology in the public domain. The combination of Web3 and AI has the potential to act as a pillar of the new policy for mass adoption. NEAR Protocol will be the strongest use case if allowed to become a bridge for onboarding users to Web3”.

    - - - -

    Business Meetings and Major Partnerships 

    - - - -

    Meetings with global companies 

    - - - -
    - - - -

    NEAR Foundation and NEAR Korea Hub hosted meetings between Illia and the management of major global companies in Korea. There were constructive discussions with companies looking to expand into Web3, which have already shown significant results.

    - - - -

    From having small discussions to signing MOUs with major companies including Netmarble and Mirae Asset, the Korea Hub laid the foundation for solid collaboration. This foundation will serve as an important first step in expanding the Web3 industry in Korea.

    - - - -

    MARBLEX Partnership — June 5th

    - - - -

    NEAR Foundation has joined forces with MARBLEX, a blockchain subsidiary of Netmarble, to Expand Korea’s Web3 Gaming Industry with Aurora. Netmarble is a global top 7 game publisher with 1M+ MAU in the last three games.

    - - - -

    Through this strategic business agreement, NEAR Foundation and MARBLEX plan to achieve mutual growth by linking the NEAR blockchain and Aurora with WARP Bridge to enable interactive collaboration, promote global joint marketing events, and enhance brand awareness. Furthermore, competitive and casual gamers alike will now be able to enjoy a variety of games and exclusive content through NEAR’s Blockchain Operating System (BOS).

    - - - -

    More information on the NEAR Blog and Twitter.

    - - - -

    Mirae Asset Partnership – June 7th

    - - - -
    - - - -

    In a pivotal partnership for the blockchain industry, NEAR Foundation is joining forces with Mirae Asset — a subsidiary of Asia’s largest financial group Mirae Asset Global — to help bridge the gap between traditional finance and Web3.

    - - - -

    Through this strategic business agreement, NEAR Foundation and Mirae Asset aim to expand the Web3 business domain and lead the global financial paradigm by conducting joint research and collaboration on Real-World Assets Technology. Furthermore, both parties have agreed to organize global joint events to enhance brand awareness and establish a mutual support system to strengthen the Web2/Web3 business network.

    - - - -

    More information on the NEAR Blog and Twitter.

    - - - -

    Vortex Gaming Onboarding — June 22nd

    - - - -
    - - - -

    NEAR Foundation is excited to announce a new partnership with Vortex Gaming, a Web3 subsidiary of the leading game industry INVEN. INVEN is the largest game media·community in Korea, with a monthly active user (MAU) count of 7.2 million.

    - - - -

    With the guidance of the NEAR Korea Hub, NEAR Foundation and Vortex Gaming plan to achieve mutual growth by collaborating to support the growth of Vortex Gaming; strengthen the NEAR game ecosystem; conduct offline hackathons and events to foster developer talent; and enhance brand awareness and business networks.

    - - - -

    Read the full announcement on the NEAR Foundation blog

    - - - -

    Major Events

    - - - -

    Glitch Hackathon Winners Dinner – May 30th

    - - - -
    - - - -

    During the Glitch Hackathon, which took place from May 19th to 21st, Illia and the NEAR Korea team organized a meetup event with the participants of the NEAR Track. Despite being a multi-chain hackathon with five mainnets participating, the NEAR Track had the highest number of participants, and PokaTika from the NEAR Track won the hackathon.

    - - - -

    NEAR Korea Hub’s constant support throughout the hackathon helped achieve these remarkable results. NEAR Korea Hub provided comprehensive support and mentoring to the participating teams. Furthermore, the meetup event, which was hosted to continuously build the Korean Web3 ecosystem and establish strong relationships with new builders, saw participation from over 70 builders.

    - - - -

     It provided builders with valuable opportunities to showcase their products. A considerable number of teams participating in the Glitch Hackathon also took part in the ETHSeoul Hackathon, which serves as evidence of the growth of the domestic builder ecosystem for NEAR Protocol.

    - - - -

    ETHSeoul Hackathon — June 2nd – 4th

    - - - -
    - - - -

    NEAR Protocol held “NEAR Track at ETHSeoul”, an event for the blockchain ecosystem and community. ETHSeoul served as a platform for discussions on Web3 mass adoption, with participation from 46 hackathon teams (including over 250 builders) and 800 Web3 users. 

    - - - -

    Among the 46 participating teams, 24 teams chose NEAR Protocol despite the event’s focus on Ethereum, indicating the strong interest and influence of NEAR in Korea. 

    - - - -

    At NEAR Track, after an intense competition among outstanding teams, the following teams emerged victorious:

    - - - -
      -
    • 1st. Pokatika, is a mobile application that enhances the post-event experience with unique NFT photo cards.
    • - - - -
    • 2nd. On Stage(What’s Next), turns artists’ characters and illustrations into NFTs, providing AI training data to NFT holders for integrating them into new AI images.
    • - - - -
    • Co-3rd. AGLIPPA, combines blockchain and AI to democratize artistic creation, allowing anyone to transform personal experiences into everlasting NFT.
    • - - - -
    • Co-3rd. 0xtail, matches football enthusiasts for a football game.
    • -
    - - - -

    BUIDL Asia — June 6th – 7th

    - - - -
    - - - -

    BUIDL Asia 2023 provided a platform for various projects and communities to come together, share insights, and discuss development trends. The event, organized by Erica Kang — a prominent figure representing Korean Web3 women — garnered significant media and corporate attention.

    - - - -

    Illia and Alex Shevchenko, co-founder of Aurora, participated as speakers and shared insights on the NEAR ecosystem’s current trends and future prospects. Additionally, NEAR Korea Hub operated a booth at the event, allowing attendees to experience the Blockchain Operating System (BOS) first-hand.

    - - - -

    NEAR x Hashed Night — June 8th

    - - - -
    - - - -

    NEAR x Hashed Night was a highly successful event co-organized with Hashed, a distinguished venture capital firm representing the Web3 industry. The event witnessed the participation of 35 partner companies and an impressive attendance of 410 individuals. Illia led the event alongside key executives from the NEAR ecosystem who served as distinguished speakers. They provided insightful introductions to NEAR Protocol and its notable projects, facilitating valuable networking opportunities for all attendees.

    - - - -

    Speakers like Alex Shevchenko, co-founder of Aurora, Bowen Shen, co-founder of Proximity Labs, and Ran Yi, co-founder of Orderly Network attended the event. Representatives from Mirae Asset and MARBLEX, who recently formed a strategic partnership with NEAR Foundation, were also present. It was amazing to see so many major Web2 and Web3 companies in one place, as it created a fantastic opportunity to explore new business prospects.

    - - - -

    As one attendee noted: “The place was so crowded that it was running out of oxygen”. This achievement was made possible thanks to NEAR’s growing reputation in the Korean Web3 industry and the onboarding of numerous builders through Glitch and ETHSeoul Hackathon.

    - - - -

    NEAR Korea is really excited about NEAR’s upcoming events, including Korea Blockchain Week(KBW), and they look forward to high expectations and participation!

    - - - -

    Raising NEAR awareness in Korea

    - - - -

    Overall, Illia’s time in Korea along with the hard work of NEAR Korea Hub has greatly enhanced the awareness and influence of NEAR Protocol within Korea. This was made possible through the active support of the NEAR Foundation and the strong collaboration with ecosystem partners. 

    -

    The post NEAR Korea Hub: June 2023 Highlights appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-korea/index.html b/public/blog/tag/near-korea/index.html deleted file mode 100644 index ef086d9a2..000000000 --- a/public/blog/tag/near-korea/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Korea Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-protocol/feed/index.xml b/public/blog/tag/near-protocol/feed/index.xml deleted file mode 100644 index 133ea3684..000000000 --- a/public/blog/tag/near-protocol/feed/index.xml +++ /dev/null @@ -1,165 +0,0 @@ - - - - NEAR Protocol Archives – NEAR Protocol - - /blog/tag/near-protocol/ - - Thu, 14 Sep 2023 17:29:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Protocol Archives – NEAR Protocol - /blog/tag/near-protocol/ - 32 - 32 - - - Open Call for Feedback on NEAR Protocol Validator Delegation Proposals - /blog/open-call-for-feedback-on-near-protocol-validator-delegation-proposals/ - - - Thu, 14 Sep 2023 17:29:04 +0000 - - - - /?p=20890 - - Validators are the backbone of the NEAR Protocol, playing an integral role in upholding the network’s core values now and …

    -

    The post Open Call for Feedback on NEAR Protocol Validator Delegation Proposals appeared first on NEAR Protocol.

    -]]>
    - Validators are the backbone of the NEAR Protocol, playing an integral role in upholding the network’s core values now and into the future. Validators ensure that NEAR Protocol remains scalable, user-friendly, secure, trustworthy, and most importantly, decentralized. 

    - - - -

    NEAR validators provided community feedback on how to improve the validator experience, and we collectively listened. Responses suggested that routes to secure funding were unclear, and that existing delegations from the NEAR Foundation lacked transparency.
    The result of the community feedback process is a new NEAR Protocol Validator Delegation Proposal and an open call RFP to coordinate the NEAR Protocol Institutional Validator Programme. The RFP will be open until Monday September 24th, 2023.

    - - - -

    Drafted in collaboration with a number of ecosystem participants — Meta Pool, Banyan Collective, DevHub, Pagoda, Proximity, Validator Community, and NEAR Foundation — this proposal creates a framework for a refreshed validator delegation structure. It clearly defines a number of expectations for validators, aims to align incentives, assigns ownership, and enhances transparency around securing funding support.

    - - - -

    The proposal’s framework addresses three delegation trackscommunity validators, institutional validators, and 100% fee project validators — with the goals of improving transparency, strengthening the Nakamoto coefficient of the NEAR Protocol, and increasing validator selection at custody providers: 

    - - - -
      -
    • Community Validators — Individual participants or smaller entities within the NEAR Protocol ecosystem who choose to operate validator nodes. They are strong advocates of NEAR Protocol’s principles and values, and actively contribute to the decentralization and security of the blockchain. The proposal addresses issues that Community Validators face, including resource constraints, rewards, vulnerability to attacks, and limited influence, building on new proposals for Community validators put forward in June.
    • - - - -
    • Institutional Validators — Typically large entities, such as companies, financial institutions, or well-established organizations. They often have significant resources and stake in the NEAR Protocol, which allows them to operate powerful and reliable infrastructure to maintain the blockchain. This proposal addresses concerns around institutional validators such as network centralization, lack of community inclusivity, and inequality in influence.
    • - - - -
    • 100% Fee Project Validators  — A track to support growth activities resulting in onboarding of users to the NEAR Protocol, and continued engagement through retention programmes. 
    • -
    - - - -

    Firstly, check out the full NEAR Protocol Validator Delegation Proposal and provide any feedback publicly here. Your feedback is greatly appreciated to improve the proposal.

    - - - -

    Secondly, since this is an open call RFP to run the NEAR Protocol Institutional Validator programme, please return any applications to finance@near.foundation.

    - - - -

    Additionally, Restaking is coming to NEAR courtesy of Octopus Network. Under Octopus 2.0, $NEAR stakers will have the ability to secure appchains with their staked $NEAR. Find out more here

    - - - -

    Many thanks for your continued support to improve the validator experience and help secure the NEAR Protocol.  

    -

    The post Open Call for Feedback on NEAR Protocol Validator Delegation Proposals appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Q2 Protocol Roadmap Update - /blog/near-q2-protocol-roadmap-update/ - - - Wed, 09 Aug 2023 16:00:00 +0000 - - - - /?p=20793 - - The Q1 protocol roadmap update was well received by the community. Pagoda committed to  continuing to share quarterly roadmap updates, …

    -

    The post NEAR Q2 Protocol Roadmap Update appeared first on NEAR Protocol.

    -]]>
    - The Q1 protocol roadmap update was well received by the community. Pagoda committed to  continuing to share quarterly roadmap updates, so here is the update for Q2 2023.

    - - - -

    What the protocol team accomplished in Q2

    - - - -

    Pagoda made good progress on the protocol roadmap in Q2. For the experience section, there is now a NEP on account namespaces, a key stepping stone towards account extension. Account extension would allow users to easily compose different modules such as multisig, proxy, and so on. In addition, Aurora submitted a NEP on wasm submodules, which, if implemented, would enable a limited form of synchronous execution, or allowing transactions that touch multiple contracts to settle within a single block. Both proposals are still works in progress due to the complexity of the changes. 

    - - - -

    On top of these two proposed changes, there is a NEP on shared storage for contract code which could significantly lower the cost of deploying a common contract. These proposals aspire to bring to life the account extension idea, which allows an account to install different modules to different functionalities such as multisig, recovery, proxy, and so on.

    - - - -

    For the core section of the roadmap, Pagoda delivered a few important improvements this quarter. Flat storage with value inlining is live on mainnet and brings an 8x improvement to state reads. Work on background writes is also in progress and the protocol team’s initial experiments show that it can potentially reduce the cost of state writes by 3x. In addition, cold storage is fully live on mainnet and drastically reduces the cost of running an archival node.

    - - - -

    Pagoda has also made good progress to revamp state sync. With the growth of mainnet state, the previous version of state sync was too inefficient and practically unusable. The new state sync, which uses flat storage to speed up state part generation, allows a node to finish syncing mainnet state within 3 hours. The team is expected to deliver the fully functional version of the new state sync in Q3.

    - - - -

    The team has also delivered finite wasm and its integration with nearcore, which improves the security and robustness of NEAR’s contract runtime immensely.

    - - - -

    Updates to the roadmap

    - - - -

    The experience section of the roadmap remains mostly the same, with two changes worth highlighting. One shift is that the changes required to implement account extension are temporarily on hold as we would like to see the impact on user experience by first emulating the changes through smart contracts. Another change is that the protocol team will work on the storage refund problem to prevent potential faucet-draining attacks in the new onboarding experience.

    - - - -
    - - - -

    For the core section of the roadmap, the focus in Q3 will shift to Phase 2 of sharding, which includes both resharding the current mainnet state and turning off the requirement that block producers have to track all shards. This endeavor will take more than one quarter to finish and we will post more updates as we iron out details of the design.

    - - - -
    - - - -

    To stay up to date with protocol changes as they happen, or to participate in protocol governance, please join the protocol community group and follow the NEAR Enhancement Proposal (NEP) process.

    -

    The post NEAR Q2 Protocol Roadmap Update appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-protocol/index.html b/public/blog/tag/near-protocol/index.html deleted file mode 100644 index a0262a50c..000000000 --- a/public/blog/tag/near-protocol/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Protocol Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-query-api/feed/index.xml b/public/blog/tag/near-query-api/feed/index.xml deleted file mode 100644 index e53c89c23..000000000 --- a/public/blog/tag/near-query-api/feed/index.xml +++ /dev/null @@ -1,154 +0,0 @@ - - - - NEAR Query API Archives – NEAR Protocol - - /blog/tag/near-query-api/ - - Thu, 12 Oct 2023 13:08:22 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Query API Archives – NEAR Protocol - /blog/tag/near-query-api/ - 32 - 32 - - - NEAR Query API Beta Is Now Open for Apps Building on B.O.S - /blog/near-query-api-beta-is-now-open-for-apps-building-on-b-o-s/ - - - Thu, 12 Oct 2023 14:00:00 +0000 - - - - - /?p=20967 - - Pagoda has officially opened the Beta version of NEAR Query API, a fully managed serverless infrastructure offering NEAR blockchain #indexers, …

    -

    The post NEAR Query API Beta Is Now Open for Apps Building on B.O.S appeared first on NEAR Protocol.

    -]]>
    - Pagoda has officially opened the Beta version of NEAR Query API, a fully managed serverless infrastructure offering NEAR blockchain #indexers, storage, and GraphQL endpoints. Developers can now build indexers for any smart contract using JavaScript and the NEAR Lake Primitives library, and store data in custom SQL schemas, all without needing to manage any infrastructure. This approach significantly simplifies the way developers interact with blockchain data and empowers them to build B.O.S applications with great user experiences.

    - - - -

    NEAR Query API allows developers to store indexer code on-chain and receive an auto-provisioned database with GraphQL API and indexed historical data, continuously updated through an indexer service that closely tracks the blockchain. The GraphQL API supports paginated and aggregate queries such as count, avg, min, etc. It also enables subscriptions through web sockets, allowing you to create user interfaces that update data without page refresh.

    - - - -

    With QueryAPI, you can quickly get GraphQL endpoints and use them directly in your dApps to enrich the user experience and improve user interface performance.

    - - - -

    In the latest release, Pagoda moved to a more scalable and stable infrastructure and open-sourced the code to make it easy to run it yourself and contribute to future development.

    - - - -

    Sample Indexers

    - - - -

    Additionally, Pagoda introduced several sample indexers:

    - - - - - - - -

    User Interface

    - - - -

    The NEAR Query API’s user-friendly interface, built using B.O.S components, provides easy access to all indexers and key features of the platform that streamline the process of building indexers:

    - - - -
      -
    • Access to all indexers built on the platform. Developers can learn from practical examples as indexers’ code and schemas are stored on-chain.
    • - - - -
    • Edit code online with autocomplete for easy access to block data and SQL tables for efficient development.
    • - - - -
    • Debug indexers on any block using the browser console for a familiar debugging experience.
    • - - - -
    • Build GraphQL queries using the GraphiQL playground.
    • - - - -
    • Auto-generate JSX code for swift B.O.S component development.
    • - - - -
    • Monitor indexer status and access logs written from JavaScript code.
    • - - - -
    • Start historical indexing from any block.
    • -
    - - - -

    Documentation

    - - - -

    Pagoda created documentation for QueryAPI to help you get started. Take a look at how it works, read about indexer functions, the context object, and check out the tutorials. To provide more insight into the capabilities of the NEAR Query API, the product team has prepared a walkthrough video that you can watch here.

    - - - -

    Invitation to Beta Testing

    - - - -

    Pagoda invites developers to register their interest in closed Beta testing of NEAR Query API. If you are interested in indexing smart contracts on Mainnet with moderate transactions per day, the team is eager to engage with you and help you get started. Please use this link to register your interest.

    - - - -

    Build full-stack JavaScript dApps on NEAR

    - - - -

    On NEAR, JavaScript developers can build smart contracts with low gas fees, fast and decentralized user interfaces on the B.O.S and powered by QueryAPI, and all without needing to worry about cloud infrastructure.

    - - - -

    Pagoda will be working with B.O.S developers on improving the developer experience of building, debugging, using and maintaining indexers, as well as performance and scalability to prepare for general availability later this year.

    - - - -

    Join in this exciting new chapter of full-stack JavaScript dApps with NEAR B.O.S. and NEAR Query API!

    -

    The post NEAR Query API Beta Is Now Open for Apps Building on B.O.S appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-query-api/index.html b/public/blog/tag/near-query-api/index.html deleted file mode 100644 index 87b33569d..000000000 --- a/public/blog/tag/near-query-api/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Query API Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-regional-hubs/feed/index.xml b/public/blog/tag/near-regional-hubs/feed/index.xml deleted file mode 100644 index 1d027b8b4..000000000 --- a/public/blog/tag/near-regional-hubs/feed/index.xml +++ /dev/null @@ -1,458 +0,0 @@ - - - - NEAR regional hubs Archives – NEAR Protocol - - /blog/tag/near-regional-hubs/ - - Mon, 10 Oct 2022 13:39:26 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR regional hubs Archives – NEAR Protocol - /blog/tag/near-regional-hubs/ - 32 - 32 - - - NEAR Community in Focus: NEAR Regional Hubs - /blog/near-community-in-focus-near-regional-hubs/ - - - Mon, 20 Jun 2022 13:30:45 +0000 - - - /?p=16744 - - Across the NEAR ecosystem and beyond its digital borders, there is frequent talk of NEAR’s infinite scalability. But leveraging scalability, …

    -

    The post NEAR Community in Focus: NEAR Regional Hubs appeared first on NEAR Protocol.

    -]]>
    - Across the NEAR ecosystem and beyond its digital borders, there is frequent talk of NEAR’s infinite scalability. But leveraging scalability, fast transactions, and low costs to reimagine the future ultimately requires a vibrant NEAR community. This is where NEAR Regional Hubs come in. 

    - - - -

    As portals into a multi-faceted, ever-evolving ecosystem, NEAR Regional Hubs are communities where new projects and teams can meet and learn from Web3 natives and early adopters. Led by local entrepreneurs, and operating as independent legal entities, NEAR Regional Hubs are crucial in helping NEAR Foundation reach its missions and objectives around the world. With fully operational outposts in Asia, the Balkans, Ukraine, and Kenya, these hubs are vibrant incubators of Web3 communities, talent, and products. 

    - - - -

    To get a better idea of how they operate and what each is up to, let’s take a deep dive into NEAR Regional Hubs. 

    - - - -

    NEAR Regional Hubs: Mission, structure and operations

    - - - -

    “Each hub has its own flavor,” says Grace Torrellas, NEAR Foundation’s Head of Regional Hubs. “No hub is expected to be a specific way, or follow the same organization or structure.” 

    - - - -

    Hubs tend to follow one of two primary approaches: local awareness and education or product lab and ecosystem fund. In the first, hubs generate local awareness and onboard new users, as well as support project building on NEAR. There are also activations through press releases, IRL events, and major local blockchain or tech events. Hubs that opt for this approach, like NEAR Kenya, are major drivers of NEAR Education programs, creating opportunities for developers and students to learn Web3 skills.

    - - - -

    The hub as a product lab or ecosystem fund drives adoption by working closely with projects from idea to execution. They also create partnerships with relevant organizations and government agencies. These hubs function like incubators with fundraising, accelerator, community building, and user acquisition functions.

    - - - -

    NEAR Asia: The first and largest regional hub

    - - - -

    Led by Amos Zhang, a Web3 investor and entrepreneur, NEAR Asia has undergone quite an evolution since inception. What began as an organizing force for NEAR’s Chinese community, it’s expanded to now include Korea and Vietnam.  Featuring a product lab and ecosystem fund, along with $5M in funding from Metaweb, NEAR Asia is an active incubator of Web3 projects. 

    - - - -

    The hub has also been instrumental in helping the NEAR Foundation secure funding for Web3 talent and project development. NEAR Asia supports users, developers and entrepreneurs in Asia by hosting events, hackathons, translated content, and more.

    - - - -

    “Half of global internet users are in Asia, home to apps like WeChat, Alipay, and Metituan,” says Zhang. “Mobile payments are also highly common in many Asian countries like China and Korea. This creates a great base and perfect fit for adopting blockchain technology, and NEAR’s mission has always been to make blockchain easy and usable by mainstream users.”

    - - - -

    The NEAR Chinese community is one of the largest communities in Greater China. Over 50,000 users engage in various community-hosted channels. And many developers and entrepreneurs are actively building on NEAR. 

    - - - -

    In late 2021, NEAR Asia partnered with Alibaba’s Taobao for its Maker Festival. Hosted by China’s leading e-commerce platform, which generated more than $500 billion USD in revenue in 2020, Taobao Maker Festival (TMF) is an annual summit for top creators and innovators from the Taobao community. Taobao debuted “Too Rich City,” the first and only public chain-based NFTs created by artist Huang Heshan.

    - - - -

    Zhang says that Vietnam is one of NEAR’s biggest communities, with more than 30,000 members. This community is highly active on Telegram, Facebook, and Discord. The Vietnamese community recently partnered with GFS to run online education events to promote the NEAR ecosystem and educate both investors and developers.

    - - - -

    NEAR Ukraine: A hub within a hub

    - - - -

    Activated in late 2021, the Ukraine Hub is very much developer-oriented. But Anton Vaisburd, who leads the Ukraine Regional Hub, sees a multi-faceted community. 

    - - - -

    “From one point of view, we’re an independent organization and kind of a for-profit organization,” says Vaisburd. “On the other, we’re a regional hub and community of people building on NEAR. We’re helping everybody out of Ukraine, building the product lab, and deeply connected with the foundation as a whole ecosystem.”

    - - - -

    NEAR Ukraine’s venture arm includes a product lab, which funds projects building on NEAR. The hub also performs marketing and PR functions, as well as organizing events like hackathons, conferences, and more. 

    - - - -

    Amidst NEAR Ukraine’s hustle and bustle, the war in Ukraine weighs heavily on the community.

    - - - -

    “There hasn’t been a single hour we haven’t thought about it,” says Vaisburd. “I would love to say that it’s business as usual, but it’s not. You’re thinking about the importance of not only building social initiatives like helping Ukrainian refugees but also supporting the government and army, and trying to fight Russia in every way possible.”

    - - - -

    “What we realized is that we should do what we can do best, and that’s build products,” Vaisburd adds. “We’re trying to work harder because the better we work, the better we can actually perform, and the more we can pay taxes and support Ukraine.”

    - - - -

    With its current home in Lisbon, NEAR Ukraine is hub within a hub. The community is keenly aware of this. So NEAR Ukraine is creating an inclusive atmosphere in Lisbon, where local citizens, refugees, and expats from around the world can gather.

    - - - -

    “We’re trying to build a Web3 community for all in Lisbon,” says Vaisburd. “Soon, we’re going to announce our crypto summer house, where we are going to gather everyone, plan events, and host hackathons.”

    - - - -

    NEAR Balkans: Seven countries, one Web3 hub

    - - - -

    NEAR Balkans, which officially launched two months ago, started to coalesce in the summer of 2021. That’s when crypto natives Edi Sinovcic and Luka Sucic—the hub’s co-founders and current advisors—decided to unite Bosnia & Herzegovina, Bulgaria, Croatia, Montenegro, North Macedonia, Serbia and Slovenia into a single Web3 community. 

    - - - -

    Ida Pandur, the General Manager of NEAR Balkans, says the hub has three primary areas of focus: Web3 education and community building, partnerships with traditional businesses, and product development. 

    - - - -

    “Basically, the idea was to bring seven countries into the hub, into a community,” says Pandur. “Educate the community about Web3, about the opportunities, and how NEAR is the main facilitator of these Web3 opportunities within the region.”

    - - - -

    Community building and Web3 education at NEAR Balkans has already included a number of local meetups across the Balkans. The hub is also sponsoring specific Web3 conferences and building relationships with universities to attract students. 

    - - - -

    “We are also preparing custom-made education for the developers to get certified on NEAR and Web3,” says Pandur. “We believe once you educate the market, then it’s easier to do everything else.”

    - - - -

    Parallel to education, NEAR Balkans works with both traditional and Web3 companies interested in Web3 integration. To help facilitate this process, the hub distributes grants to projects they see as showing potential. The hub is also available to companies looking to transition to NEAR from other Web3 platforms; and to individuals and teams looking to build projects from scratch. 

    - - - -

    “We have our own research and development lab, and are looking to launch three products in the next few months,” Pandur says. “Two products are going to be in the DeFi space, and the other is going to be an NFT product. So, products are going to be a main focus of our hub.”

    - - - -

    NEAR Kenya: Spreading word of Web3

    - - - -

    NEAR Kenya is taking a different tack by building community from the ground up. 

    - - - -

    “What’s lacking on the ground is predominantly a basic understanding of blockchain and why it’s important,” says Kevin Imani, NEAR Kenya Hub General Manager and Sankore Guild founder.

    - - - -

    Community members want to learn about Web3. But job prospects are also top of mind. To meet these needs, NEAR Kenya funnels individuals into NEAR Education programs. 

    - - - -

    “We’re promoting NEAR Education different certification programs,” says Imani. “We’re also getting involved with universities. By that I mean having a stand in a college hallway and telling students, hey, we have this thing going on this Saturday. Just come and we’ll break down some of these principles.”

    - - - -

    “We’re replicating NEAR Education content and breaking it down to the basics,” says Imani. “The end goal is to get them a job. So, hopefully, we’ll have one of the first Africa-based developer shops, where developers can be hired from other parts of the NEAR ecosystem, and jump on really exciting projects.” 

    - - - -

    Imani believes these efforts will bear future fruit—a self-sustaining Web3 community in Kenya and neighboring countries. One built on a playbook based on speed, execution, inclusivity, and scalability.

    - - - -

    “The playbook will showcase how a Layer 1 protocol can be leveraged to implement blockchain in Eastern Africa, and do it effectively,” says Imani. “A 360-degree experience of someone who’s never been exposed to Web3, making sure there’s a space for them, all the way to bringing apps built by local talent onto NEAR mainnet. And just solving problems from infrastructure to decentralized finance, etc, in our respective region.” 

    - - - -

    “Within a few years we’ll have some components in place, although it won’t be perfect,” Imani says. “Something tangible where we can say, ‘Hey, guys, we actually built something totally new.’”

    - - - -

    Bringing NEAR hubs to other regions

    - - - -

    Many other NEAR Regional Hubs are in active development. The LATAM Regional Hub, which would include several Latin American countries, is currently in the works. The hub is spearheaded by Claudio Cossio, founder of Metapool and Hispano Guild, an early NEAR Guild. 

    - - - -

    “The LATAM Hub will focus more on education, and there are two programs that are quite critical in that education pipeline,” says Torrellas. “NEAR-certified developer and NEAR certified entrepreneur. Those two will allow the hub to pair the students with projects.” 

    - - - -

    NEAR Foundation is now focusing on India, home to a large number of developers and strong interest in Web3. The government has even expressed interest in having NEAR be part of university curricula. This hub will feature both education and innovation.”

    - - - -

    Torrellas says a hub in Dubai, United Arab Emirates (UAE) is another area of interest. Many successful Indian developers have moved to Dubai, making the UAE a natural fit for a NEAR Regional Hub. And, of course, the United States will also feature a number of Hub Nodes forming part of the NEAR Regional Hubs network. Efforts are now underway to begin establishing hubs in Austin,  San Francisco, New York City, and Miami. 

    - - - -

    “There are so many places in the world where we know great opportunities seed, we are at the best time to build strong local connections and get people on board,” says Torrellas. “We need to focus on where those opportunities are.”

    - - - -

    Check out the complete series on the NEAR Community:

    - - - - -

    The post NEAR Community in Focus: NEAR Regional Hubs appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Launches Balkans Regional Hub to Incubate Web3 Talent and Projects - /blog/near-launches-balkans-regional-hub-to-incubate-web3-talent-and-projects/ - - - Wed, 01 Jun 2022 20:00:47 +0000 - - - /?p=16619 - - Fostering Regional Hubs around the world is an important part of NEAR Foundation’s mission. Fresh off the Kenya Regional Hub …

    -

    The post NEAR Launches Balkans Regional Hub to Incubate Web3 Talent and Projects appeared first on NEAR Protocol.

    -]]>
    - Fostering Regional Hubs around the world is an important part of NEAR Foundation’s mission. Fresh off the Kenya Regional Hub launch, the foundation has reached another milestone in the Regional Hubs strategy. 

    - - - -

    This week, NEAR is excited to announce the launch of the NEAR Balkans Regional Hub, which will accelerate onboarding of Web3 talents and blockchain projects in the Balkans. The Balkans Regional Hub is only the latest, though certainly not the last, node Borderless Tech Associationin the NEAR Foundation’s ongoing efforts to globalize and democratize the Web3 industry. 

    - - - -

    Web3 growth and talent in the Balkans

    - - - -
    NEAR Balkans Regional Hub gathering in Belgrade, Serbia, May 2022
    - - - -

    The Balkans is home to an incredibly talented and tech-savvy community. NEAR Balkans will tap into this deep pool of talent and creativity, accelerating the development of new Web3 projects and skills throughout the region. 

    - - - -

    Beyond the region’s deep developer talent pool, the Balkans is also home to a growing community that includes startups and established businesses. Even before the hub’s launch, the Balkans had a number of Web3 success stories, attracting investor and global VC attention. 

    - - - -

    Taken together, the region’s talent and startups made the Balkans an ideal node in NEAR’s Regional Hub network. 

    - - - -

    NEAR Balkan’s mission

    - - - -

    Established in partnership with the , NEAR Balkans provides the local community with tools and support to begin building on the NEAR protocol. The hub will be a resource for developers and entrepreneurs looking to educate themselves about the technology, and to expand the NEAR ecosystem. 

    - - - -

    NEAR Balkans will also serve as a funnel for NEAR Foundation Grants. These grants will be made available to developers, entrepreneurs, and Web2 businesses with promising and innovative ideas for Web3 apps.   

    - - - -
    NEAR Balkans attendees in Belgrade, Serbia, May 2022
    - - - -

    The Balkans hub will also guide founders, developers, and community members throughout their journey. Beyond funding and education, NEAR Balkans will facilitate partnerships, mentoring, and incubation for both individuals and teams. The hub will also focus on launching new products from its innovation lab. The aim is to inspire the region’s entrepreneurs, and showcase why building in a more decentralized and democratized way is the future.

    - - - -

    The Hub will drive activities and cover the following countries: Bosnia & Herzegovina, Bulgaria, Croatia, Montenegro, North Macedonia, Serbia and Slovenia.

    - - - -

    The NEAR Balkans team

    - - - -

    The NEAR Balkans Hub features a team of more than 15 Web3 experts and blockchain enthusiasts. Team members come from a variety of backgrounds, including business, education, product labs and more. 

    - - - -

    Collectively, the NEAR Balkans team members will leverage their Web3 experience in managing projects in the Balkan region. These efforts are crucial in driving the NEAR ecosystem’s growth, not only in the Balkans but also globally.

    - - - -
    NEAR Balkans attendees in Zagreb, Croatia, May 2022
    - - - -

    “We are dedicated to bringing the best of education and opportunities for companies and individuals interested in Web3 through strong local support across our Balkan region, which is full of creative, technical and business talents,” says Ida Pandur, General Manager of NEAR Balkans. We are looking forward to forming strong partnerships with teams, businesses and universities to bring the mission to execution.” 

    - - - -

    An inspiring launch in the Balkans

    - - - -

    Since coalescing six months ago, NEAR Balkans is officially launching on a high note. From Zagreb, Croatia to Belgrade, Serbia and Sofia, Bulgaria, the hub is lively base of developers, entrepreneurs, and students participating in a number of activities, from meetups to hackathons and internships. 

    - - - -

    The hub has also launched several products on NEAR from its innovation lab, focusing on Web3 arenas such DeFi and NFTs. One such project is Electrocoin, the company behind Bitcoin Mjenjacnica, one of the biggest crypto exchanges in the region. Electrocoin enables customers to transfer money from crypto to fiat and vice versa. The app will also allow users to pay their bills and invoices. 

    - - - -
    NEAR Balkans attendees in Sofia, Bulgaria, May 2022
    - - - -

    Another project, CircuitMess, is building innovative DIY STEM toys for kids, and are currently at work on NFT integration. CircuitMess wants to equip children with the skills to build on Web3 today. 

    - - - -

    The NEAR Balkans hub includes regional ambassadors, who attend meetups and share valuable information and contacts to anyone interested in learning or building on NEAR. There are tentative plans to hold 3 to 5 meetups a month across different Balkans cities, as well as two live hackathons in the coming months. 

    - - - -

    Much like the NEAR Ukraine Regional Hub, NEAR Balkans is able to reach a large pool of developers. The hub is particularly focused on leveraging this talent pool for its Web3 education efforts, including workshops and collaborations with regional universities. It is also funneling students from a variety of backgrounds into the NEAR Certified Developer program. 

    - - - -

    NEAR Balkans is only the beginning of what will be a long and prosperous journey of Web3 innovation in the region. 

    -

    The post NEAR Launches Balkans Regional Hub to Incubate Web3 Talent and Projects appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Launches Kenya Regional Hub to Support Blockchain Projects and Talent in Africa - /blog/near-launches-kenya-regional-hub-to-support-blockchain-projects-and-talent-in-africa/ - - - Mon, 09 May 2022 17:18:23 +0000 - - - /?p=16450 - - NEAR Foundation is thrilled to announce the launch of Kenya Regional Hub in partnership with Sankore, a Kenya-based NEAR Guild. …

    -

    The post NEAR Launches Kenya Regional Hub to Support Blockchain Projects and Talent in Africa appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is thrilled to announce the launch of Kenya Regional Hub in partnership with Sankore, a Kenya-based NEAR Guild. The Kenya Regional Hub will accelerate blockchain innovation, education, and talent development across the African continent. 

    - - - -

    The hub, led by Sankore founder Kevin Imani and a core team of four members, will organize events, launch an academy and incubator, and be part of the Sankore Bounty ecosystem. 

    - - - -

    “We are thrilled to be working with NEAR to educate and nurture talented individuals to become world-class blockchain developers,” says Kevin Imani. “Our dream is to lead the way in blockchain innovations in providing solutions to Africa’s biggest problems. The NEAR Protocol allows tomorrow’s brightest developers to build custom solutions with scalability, security, and transparency and this hub is the next step in turning our shared vision into reality.”

    - - - -

    How NEAR Meets kickstarted the Kenya Regional Hub

    - - - -
    Sankore founder Kevin Imani speaking at a Kenya Regional Hub event.
    - - - -

    Crucially, the new Kenya Regional Hub didn’t come out of nowhere. The Sankore-led NEAR Meets had overwhelming attendance, and were already hubs for locals gathering for blockchain and NEAR protocol education. 

    - - - -

    The NEAR Meets a space to share ideas and create new Open Web opportunities. As such, these events created networking opportunities amongst both locals and the larger NEAR community. 

    - - - -

    At the recent “Harnessing Opportunities in Web3” in Nakuru, a NEAR-Certified Developer helped local Kenyan developers become certified NEAR developers. The hub’s education arm already has strong connections with local universities, and registered 77 students in the NEAR Certified Developer Workshops. Seven other students are currently in NEAR Certified Analysts Workshops, while six students are already certified NEAR developers.

    - - - -

    Incubating blockchain projects in Africa

    - - - -
    Attendees at a Kenya Regional Hub event.
    - - - -

    With Sankore’s track record as a Kenyan project incubator, the Kenya Regional Hub will hit the ground running. 

    - - - -

    Sankore created local traction by supporting several forward-thinking blockchain projects. Kilimo Shwari, for instance, helps local farmers hedge against agricultural uncertainties, like bad weather and Kenya’s recent locust invasion. Kilimo Shwari’s smart contract-based insurance gathers data on these and other uncertainties, and then automatically compensates farmers in advance. 

    - - - -

    Another Sankore-backed project, Ledja, tackles document fraud throughout Africa. In partnership with local universities, Ledja is using the NEAR protocol to digitize and verify qualifications and legal documents. 

    - - - -

    Africa’s rapid cryptocurrency adoption

    - - - -
    Attendees at a Kenya Regional Hub event.
    - - - -

    Over the past decade, African countries have been undergoing a rapid digital revolution. The continent’s cryptocurrency adoption jumped 1,200% from July 2020 to June 2021, the fastest adoption rate in the world. 

    - - - -

    “We are excited by the potential avenues throughout Africa for blockchain solutions, which come from innovation in development, education and talent,” says Marieke Flament, CEO of the NEAR Foundation. “This hub represents a unique opportunity to partner with local talent not only for the opportunities that we know exist today but also for the opportunities yet to be created in the future.”

    - - - -

    The Kenya Regional Hub will demonstrate just how how easy it is to onboard into NEAR’s fast, low-cost, and safe ecosystem. They will find a host of DeFi projects, DAOs, NFT marketplaces, and more on NEAR. By showcasing these vibrant NEAR ecosystem projects, the Kenya hub will help unleash the next wave of Web3 innovation. 

    - - - -

    NEAR Foundation is investing heavily in regional hubs around the world. Kenya joins a growing list of hubs in China, the Balkans, and Ukraine, with many more in the works. Led by great local entrepreneurs, NEAR Hubs operate as independent legal entities in full alignment with the foundation’s mission and objectives. 

    - - - -

    All regional hubs are vital to onboarding users into the NEAR ecosystem to help build a multi-chain, open web future. 

    -

    The post NEAR Launches Kenya Regional Hub to Support Blockchain Projects and Talent in Africa appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-regional-hubs/index.html b/public/blog/tag/near-regional-hubs/index.html deleted file mode 100644 index 8dada1cb5..000000000 --- a/public/blog/tag/near-regional-hubs/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR regional hubs Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-tasks/feed/index.xml b/public/blog/tag/near-tasks/feed/index.xml deleted file mode 100644 index d36fede68..000000000 --- a/public/blog/tag/near-tasks/feed/index.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - NEAR Tasks Archives – NEAR Protocol - - /blog/tag/near-tasks/ - - Wed, 02 Aug 2023 17:17:45 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Tasks Archives – NEAR Protocol - /blog/tag/near-tasks/ - 32 - 32 - - - Case Study: Satori’s Jeff Bissinger Talks NEAR Tasks for the Gig Economy - /blog/case-study-satoris-jeff-bissinger-talks-near-tasks-for-the-gig-economy/ - - - Mon, 31 Jul 2023 14:30:00 +0000 - - - - - /?p=20761 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: Satori’s Jeff Bissinger Talks NEAR Tasks for the Gig Economy appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

    - - - -

    In the latest NEAR Foundation Case Study video, we hear from Jeff Bissinger, Product Manager at Satori. As a product team building innovative Web3 solutions, Satori is creating AI integrations that enable people to work with purpose. NEAR Tasks, which launched at Consensus 2023 in Austin, is one of Satori’s latest products. 

    - - - -

    In this case study video, Jeff Bissinger takes viewers on a trip into NEAR Tasks — Satori’s effort to blend the gig economy with blockchain technology. With NEAR Tasks, users can earn $NEAR while completing simple, yet meaningful, AI related tasks. 

    - - - -

    - - - -
    - -
    -

    The post Case Study: Satori’s Jeff Bissinger Talks NEAR Tasks for the Gig Economy appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-tasks/index.html b/public/blog/tag/near-tasks/index.html deleted file mode 100644 index 1754907da..000000000 --- a/public/blog/tag/near-tasks/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Tasks Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-vietnam/feed/index.xml b/public/blog/tag/near-vietnam/feed/index.xml deleted file mode 100644 index d41b3d3a3..000000000 --- a/public/blog/tag/near-vietnam/feed/index.xml +++ /dev/null @@ -1,101 +0,0 @@ - - - - NEAR Vietnam Archives – NEAR Protocol - - /blog/tag/near-vietnam/ - - Fri, 01 Sep 2023 15:18:27 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Vietnam Archives – NEAR Protocol - /blog/tag/near-vietnam/ - 32 - 32 - - - How Vietnam Became a Web3 Powerhouse  - /blog/how-vietnam-became-a-web3-powerhouse/ - - - Mon, 04 Sep 2023 14:00:00 +0000 - - - - /?p=20828 - - Asia is Web3’s engine room. According to a report by Emergen Research, the Web3 global market is expected to be …

    -

    The post How Vietnam Became a Web3 Powerhouse  appeared first on NEAR Protocol.

    -]]>
    - Asia is Web3’s engine room. According to a report by Emergen Research, the Web3 global market is expected to be worth $81.5 billion by 2030, growing at an annual rate of more than 40%. Asia is set to capture most of that growth.  

    - - - -

    That’s because the region has some of the highest adoption rates of Web3 technologies anywhere in the world. In Japan, more than five million people currently own cryptocurrency, the South Korean government became the first to directly invest in the metaverse, and   almost 70% of people in Southeast Asia alone have used at least one metaverse-related tech in the last year.

    - - - -

    One of the leaders in the region is Vietnam. In recent years, international investors have flooded into Vietnam and established funds specialising in blockchain – with capital inflows into non-fungible token (NFT) assets rising from 37 million USD to 4.8 billion USD in 2021. 

    - - - -

    It’s why the NEAR Foundation is one of the leading investors in Asia, thanks to its partnerships with the likes of Alibaba Cloud, and why it’s hosting its first major conference in Vietnam.

    - - - -

    Taking place September 8-12 NEAR APAC will bring together more than 100 global blockchain leaders to discuss blockchain’s unlimited future through the latest blockchain technology updates, development trends, and how blockchain ecosystems drive Web3 mass adoption. 

    - - - -

    Vietnam on the rise 

    - - - -

    Vietnam has all the ingredients to become a Web3 super power. The country has 

    - - - -

    more than 400,000 skilled software engineers, produces 50,000 IT graduates annually, and has an IT labour force more than a million strong. 

    - - - -

    The nation’s software engineers rank at an impressive 8th place globally in terms of capability — 95% of which have bachelor’s degrees or higher in IT. It’s unsurprising then to hear that Vietnam now has 3,800 blockchain-related projects, 200 venture capital funds, and 100 project incubation funds to support the country’s startups. 

    - - - -

    Vietnam’s tech landscape is now full of startups and innovation hubs fostering creativity in Web3. Local incubators and accelerators provide mentorship, resources, and networking opportunities for Web3 entrepreneurs. 

    - - - -

    That growth also has government support. In 2021, Vietnamese Prime Minister Pham Minh Chinh greenlit the country’s “e-government” development strategy designed to create regulatory clarity for Web3 projects. Last year, the country launched its first official blockchain association, which is helping blockchain builders and business owners become a bigger part of the regulatory conversation.  

    - - - -

    Its chairman, Hoang Van Huay, has shared the Vietnam Blockchain Association’s commitment to “providing consultation on building legal framework, regulations, and standards in developing services and products on blockchain”. This commitment is part of a broader mission to accelerate the growth of blockchain technology in Vietnam.

    - - - -

    It’s no wonder then that Vietnam ranks first in the Global Cryptocurrency Adoption Index released by Chainalysis, up from 10th place the year before. 
    Vietnam is on the rise, and the NEAR Foundation is here to support it. Join us at NEAR APAC on 8-12 September 2023 in Ho Chi Minh City.

    -

    The post How Vietnam Became a Web3 Powerhouse  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-vietnam/index.html b/public/blog/tag/near-vietnam/index.html deleted file mode 100644 index 1b14ada7f..000000000 --- a/public/blog/tag/near-vietnam/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Vietnam Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-wallet-migration/feed/index.xml b/public/blog/tag/near-wallet-migration/feed/index.xml deleted file mode 100644 index e66dc9e5e..000000000 --- a/public/blog/tag/near-wallet-migration/feed/index.xml +++ /dev/null @@ -1,87 +0,0 @@ - - - - NEAR Wallet Migration Archives – NEAR Protocol - - /blog/tag/near-wallet-migration/ - - Thu, 26 Oct 2023 14:00:03 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Wallet Migration Archives – NEAR Protocol - /blog/tag/near-wallet-migration/ - 32 - 32 - - - NEAR Wallet Will Remain Online Until the End of the Year - /blog/near-wallet-will-remain-online-until-the-end-of-the-year/ - - - Thu, 26 Oct 2023 14:00:02 +0000 - - - - /?p=21007 - - To avoid the rush of last minute transfers, and to support the inclusion of new wallets coming into the ecosystem, …

    -

    The post NEAR Wallet Will Remain Online Until the End of the Year appeared first on NEAR Protocol.

    -]]>
    - To avoid the rush of last minute transfers, and to support the inclusion of new wallets coming into the ecosystem, we are delaying the sunset of the NEAR wallet.

    - - - -

    The NEAR wallet sunset is now targeted for December 31st, 2023.

    - - - -

    We want to encourage users to continue to transfer their wallets using the Transfer Wizard available at wallet.near.org. Simply select “Get Started” on the banner at the top of the page displayed when you log in.

    - - - -
      -
    • Learn more about how the Transfer Wizard works.
    • - - - -
    • You can also learn more about why Pagoda is sunsetting the NEAR Wallet.
    • -
    - - - -

    The future of the wallet.near.org landing page

    - - - -

    Previously, we had intended to make wallet.near.org into a wallet-centric landing page as a place for ecosystem users to learn about all the amazing wallets available on the NEAR platform. However, due to resource and time constraints, we no longer believe we could provide the best experience. Instead, we are asking the community to create an information site that showcases all the NEAR wallets.

    - - - -

    These plans are still in progress as we work with community partners. More to follow when we have more to share.

    - - - -

    Thank you for your continued support and patience as we work hard to improve the user onboarding and transaction experience.

    -

    The post NEAR Wallet Will Remain Online Until the End of the Year appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-wallet-migration/index.html b/public/blog/tag/near-wallet-migration/index.html deleted file mode 100644 index fc70b1d17..000000000 --- a/public/blog/tag/near-wallet-migration/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Wallet Migration Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near-wallet/feed/index.xml b/public/blog/tag/near-wallet/feed/index.xml deleted file mode 100644 index a75b5decb..000000000 --- a/public/blog/tag/near-wallet/feed/index.xml +++ /dev/null @@ -1,183 +0,0 @@ - - - - NEAR Wallet Archives – NEAR Protocol - - /blog/tag/near-wallet/ - - Thu, 26 Oct 2023 14:00:03 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Wallet Archives – NEAR Protocol - /blog/tag/near-wallet/ - 32 - 32 - - - NEAR Wallet Will Remain Online Until the End of the Year - /blog/near-wallet-will-remain-online-until-the-end-of-the-year/ - - - Thu, 26 Oct 2023 14:00:02 +0000 - - - - /?p=21007 - - To avoid the rush of last minute transfers, and to support the inclusion of new wallets coming into the ecosystem, …

    -

    The post NEAR Wallet Will Remain Online Until the End of the Year appeared first on NEAR Protocol.

    -]]>
    - To avoid the rush of last minute transfers, and to support the inclusion of new wallets coming into the ecosystem, we are delaying the sunset of the NEAR wallet.

    - - - -

    The NEAR wallet sunset is now targeted for December 31st, 2023.

    - - - -

    We want to encourage users to continue to transfer their wallets using the Transfer Wizard available at wallet.near.org. Simply select “Get Started” on the banner at the top of the page displayed when you log in.

    - - - -
      -
    • Learn more about how the Transfer Wizard works.
    • - - - -
    • You can also learn more about why Pagoda is sunsetting the NEAR Wallet.
    • -
    - - - -

    The future of the wallet.near.org landing page

    - - - -

    Previously, we had intended to make wallet.near.org into a wallet-centric landing page as a place for ecosystem users to learn about all the amazing wallets available on the NEAR platform. However, due to resource and time constraints, we no longer believe we could provide the best experience. Instead, we are asking the community to create an information site that showcases all the NEAR wallets.

    - - - -

    These plans are still in progress as we work with community partners. More to follow when we have more to share.

    - - - -

    Thank you for your continued support and patience as we work hard to improve the user onboarding and transaction experience.

    -

    The post NEAR Wallet Will Remain Online Until the End of the Year appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - A Reminder to Migrate from NEAR Wallet - /blog/a-reminder-to-migrate-from-near-wallet/ - - - Thu, 12 Oct 2023 13:00:27 +0000 - - - - /?p=20966 - - In July, NEAR Foundation published “Embracing Decentralization: What’s Next for the NEAR Wallet”, a detailed exploration of how Pagoda is …

    -

    The post A Reminder to Migrate from NEAR Wallet appeared first on NEAR Protocol.

    -]]>
    - In July, NEAR Foundation published “Embracing Decentralization: What’s Next for the NEAR Wallet”, a detailed exploration of how Pagoda is migrating NEAR Wallet from being a browser wallet into a wallet hub. As we noted at the time, this wallet evolution illustrates the substantial growth of the NEAR ecosystem, which now offers a wide range of cross-chain wallets and native wallets. 

    - - - -

    As part of this wallet evolution, the NEAR Wallet is set to be discontinued on January 1, 2024.

    - - - -

    You can migrate to your wallet of choice using the automatic Wallet Transfer Wizard, integrated into the current NEAR Wallet, or manually by using your recovery phrase. Whichever path you choose, understand that your account and its assets are safe.

    - - - -

    Do not worry if you have not transferred your accounts by January 1, 2024 — the Transfer Wizard will still be available after the wallet functionality sunsets. And again, rest assured that your assets will remain secure until you import them to a new wallet.

    - - - -

    For more details on using  the Transfer Wizard, visit the Migrating from NEAR Wallet page. 

    -

    The post A Reminder to Migrate from NEAR Wallet appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Embracing Decentralization: What’s Next for the NEAR Wallet - /blog/embracing-decentralization-whats-next-for-the-near-wallet/ - - - Wed, 12 Jul 2023 16:30:00 +0000 - - - - /?p=20715 - - When NEAR Mainnet launched in late 2020, it included a wallet built and hosted by Pagoda’s (then known as Near …

    -

    The post Embracing Decentralization: What’s Next for the NEAR Wallet appeared first on NEAR Protocol.

    -]]>
    - When NEAR Mainnet launched in late 2020, it included a wallet built and hosted by Pagoda’s (then known as Near Inc.) core team on https://wallet.near.org/ to support NEAR’s unique account model. Nearly three years later, the NEAR wallet ecosystem is home to a myriad of high quality, open source wallets supported by NEAR’s community of active contributors. This significant milestone reflects NEAR’s ongoing commitment to empower users and foster decentralization. The evolution of NEAR wallets also showcases the substantial growth of the ecosystem, as NEAR now supports a diverse list of cross-chain wallets, as well as native wallets with innovative onboarding approaches such as FastAuth.

    - - - -

    To celebrate these excellent contributions from across the NEAR community, and to reflect the priority of decentralization, over the next few months Pagoda will start migrating the domain https://wallet.near.org/ from being a browser wallet to being a wallet hub. In this way, https://wallet.near.org/ will become the reference place for all NEAR wallets, allowing users to discover and implement the right wallets for their specific needs.

    - - - -

    If you currently use https://wallet.near.org/ as your main wallet, you have nothing to worry about. The Pagoda team has been working hard to build a Wallet Transfer Wizard to help you transfer your accounts to a new wallet easily and smoothly, while keeping your funds and assets safe. The Transfer Wizard will allow you to choose between Browser and Extension-based wallets, so you will still have the same friendly wallet experience you are accustomed to after the Wizard is finished.

    - - - -

    For more details, visit the Migrating from NEAR Wallet page. 

    - - - -

    Timeline for transitioning the main wallet domain 

    - - - -

    The NEAR Wallet will remain a browser wallet until January 1st, 2024, during which time the wallet will encourage and help you to transfer your accounts to a new wallet. You can do this manually with your recovery phrase or use the Transfer Wizard to securely migrate your accounts to the wallet of your choice. 

    - - - -

    Do not worry if you have not transferred your accounts by January 1st, 2024 the Transfer Wizard will still be available after the wallet functionality sunsets. Rest assured that your assets will remain secure until you import them to a new wallet.

    - - - -

    The Transfer Wizard will remain available on the new wallet landing page at wallet.near.org indefinitely. This repurposed page will act as an introduction to the various options for wallets in the NEAR ecosystem.

    - - - -

    A new era for NEAR Wallets

    - - - -

    This new step moves NEAR closer to achieving a truly decentralized ecosystem driven by its own community. Thanks to the wallet hub and the wallet selector (which enables the use of any compatible NEAR wallet in web applications), users will now be able to use any wallet they like. This will not only improve their experience on NEAR, but also the full spectrum of available Web3 experiences thanks to the BOS.

    -

    The post Embracing Decentralization: What’s Next for the NEAR Wallet appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near-wallet/index.html b/public/blog/tag/near-wallet/index.html deleted file mode 100644 index ae62a98ff..000000000 --- a/public/blog/tag/near-wallet/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Wallet Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/near/feed/index.xml b/public/blog/tag/near/feed/index.xml deleted file mode 100644 index d20ef94cf..000000000 --- a/public/blog/tag/near/feed/index.xml +++ /dev/null @@ -1,508 +0,0 @@ - - - - NEAR Archives – NEAR Protocol - - /blog/tag/near/ - - Wed, 08 Nov 2023 06:51:56 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEAR Archives – NEAR Protocol - /blog/tag/near/ - 32 - 32 - - - Enter the Black Dragon: NEAR Co-Founder Joins the NEAR Foundation as CEO - /blog/enter-the-black-dragon-near-co-founder-joins-the-near-foundation-as-ceo/ - - - Tue, 07 Nov 2023 14:00:00 +0000 - - - - /?p=21045 - - The NEAR Foundation announced today that Illia Polosukhin, co-founder of NEAR Protocol, has been appointed NEAR Foundation CEO to lead …

    -

    The post Enter the Black Dragon: NEAR Co-Founder Joins the NEAR Foundation as CEO appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation announced today that Illia Polosukhin, co-founder of NEAR Protocol, has been appointed NEAR Foundation CEO to lead the NEAR ecosystem into the next phase of building an open web. As the person who has driven the vision for NEAR from the very beginning, there is no one better to oversee the growth of the NEAR Open Web Ecosystem and guide the constellation of teams building on NEAR to work together towards that common vision. From the earliest days of NEAR, Illia’s vision of an open web has guided the development of the ecosystem and served as a north star for the Foundation. In his new role as CEO, he will be able to realize that vision in a more direct and streamlined way. 

    - - - -

    “I’m honored and excited to officially join the NEAR Foundation and continue working together with the ecosystem to build towards our shared vision of an open web,” said Illia Polosukhin about his new role. “Effectively coordinating a decentralized ecosystem involves a lot of iteration and experimentation and I’m proud that NEAR has committed to refining this process since the very beginning. I believe this next step in our shared evolution will help us build our respective verticals faster and work together more efficiently.” 

    - - - -

    With his ability to bring together key nodes and align people across the ecosystem, Illia has always been a powerful guiding force for NEAR, something that his new role will allow him to continue and expand. As NEAR cements its position as the entry point to an open web, Illia’s appointment will help to create common work streams across the organization and broader ecosystem organizations that will help accelerate this journey. Combining a decentralized ecosystem approach with a more streamlined strategic coordination function will accelerate NEAR into its next phase of evolution, the details of which Illia will share at this week’s NEARCON. 

    - - - -

    To help ensure the ecosystem nodes building this open web vision are coordinating effectively, Chris Donovan will be stepping into the position of NEAR Foundation COO to oversee the day-to-day operations of the Foundation, and will also remain as a member of the NEAR Foundation Council. Chris has been essential in this transition to a founder-led organization, and the Foundation and the whole ecosystem extend gratitude and appreciation for his work.

    - - - -

    With a clear vision, strong leadership, an engaged ecosystem, and a passionate community all building towards a common vision, NEAR is poised to take its next bold step into an open web. All members of the NEAR community are invited to join this week for the biggest, most exciting NEARCON ever in Lisbon, or tune in virtually at nearcon.org starting Wednesday, November 8. You won’t want to miss the chance to hear exciting announcements and strategy updates from Illia, demos from top projects across the ecosystem, and leading perspectives from the Web3 industry during three days of talks, hackathons, and celebration.  

    -

    The post Enter the Black Dragon: NEAR Co-Founder Joins the NEAR Foundation as CEO appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Coin98 Launches Decentralized Dapp Store for its 7 Million Users on NEAR’s Blockchain Operating System (B.O.S) - /blog/coin98-launches-decentralized-dapp-store-for-its-7-million-users-on-nears-blockchain-operating-system-b-o-s/ - - - Thu, 02 Nov 2023 13:00:00 +0000 - - - - - /?p=21028 - - Coin98, the multichain wallet and DeFi platform, has today launched a decentralized dapp store for its 7 million users across …

    -

    The post Coin98 Launches Decentralized Dapp Store for its 7 Million Users on NEAR’s Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

    -]]>
    - Coin98, the multichain wallet and DeFi platform, has today launched a decentralized dapp store for its 7 million users across 170 countries, built on NEAR. 

    - - - -

    The company behind the Super app, designed to seamlessly connect a billion users to the crypto world safely and securely, has created an innovative marketplace that allows users to access a range of apps on prominent Ethereum Layer-2 ecosystems such as Polygon zkEVM, zkSync, Base, and Linea, greatly increasing accessibility and discoverability for users. 

    - - - -

    The result is a both a web app and mobile app (details below) that provides a gateway to more than 70 chains and 15,000 dapps including cross-chain bridging, money markets, and decentralized exchanges — all in a single interface. Coin98 has achieved this by harnessing the power of NEAR’s B.O.S, the Blockchain Operating System. 

    - - - -

    “At Coin98, we are dedicated to providing our users with the very best one-stop DeFi experience in our pursuit of the vision to make Web3 accessible for everyone.” says Thanh Le, Coin98 Founder. 

    - - - -

    “With NEAR’s B.O.S, we can create a user-friendly interface thanks to its composability, while enabling decentralization under the hood,” he said. “Our dapp store offers hassle-free interaction with the most exciting L2s in the market. Soon, we will expand our collection to offer even more ecosystems and dapps, as B.O.S greatly reduces the development process, enabling a fast and scalable way to integrate new applications.”

    - - - -

    Coin98 selected NEAR’s B.O.S thanks to the ease in the development process. All the widgets and components running on the B.O.S are fully composable, enabling developers to freely combine them to fit their needs. 

    - - - -

    Coin98 utilized the B.O.S as a frontend layer to fully decentralize the user experience. Instead of routing parts of the process through centralized servers, all the featured dapps on the Coin98 gateway have frontend components whose code are stored on-chain on NEAR, which directly interact with the smart contracts on the original chains. No centralized servers are used.

    - - - -

    “The NEAR ecosystem is excited to see Coin98 build their decentralized app store on the B.O.S and deliver much better experiences to their users,” says Illia Polosukhin, co-founder of NEAR Protocol. 

    - - - -

    “This is exactly why we set out to build the B.O.S: because NEAR’s technology can help founders achieve decentralization and discoverability in parallel,” he added. “Now Coin98’s users can explore multiple L2 ecosystems all in one app, through the wallet of their choice, in seconds, with no complexity or switching costs. NEAR’s mission is to drive mainstream adoption of the Open Web through great user experiences and we hope more founders and projects will join us on the B.O.S.”

    - - - -

    Coin98’s decentralized app store offering follows the launches of major B.O.S gateways by Polygon zkEVM and Mantle, two top L2 ecosystems. The success of these wallet gateway partners highlights the benefits that B.O.S helps Web3 founders deliver to end-users, demonstrating NEAR’s commitment to enabling products that simplify the blockchain experience and globally expand access to the Open Web.

    - - - -

    Want to try the new B.O.S integration? Download the mobile app on Apple or Google Play store today.

    -

    The post Coin98 Launches Decentralized Dapp Store for its 7 Million Users on NEAR’s Blockchain Operating System (B.O.S) appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at Collision: Expand into the Open Web with the Blockchain Operating System - /blog/near-at-collision-expand-into-the-open-web-with-the-blockchain-operating-system/ - - - Wed, 24 May 2023 07:00:46 +0000 - - - - /?p=20524 - - NEAR Foundation is excited to announce that NEAR is heading to the 2023 edition of Collision from June 26-29 in …

    -

    The post NEAR at Collision: Expand into the Open Web with the Blockchain Operating System appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce that NEAR is heading to the 2023 edition of Collision from June 26-29 in Toronto, Ontario. 

    - - - -

    NEAR experts will be at Collision to demonstrate how brands and companies can expand into the open web using the Blockchain Operating System (BOS). The BOS is  an industry-first category: a common layer for browsing and discovering open web experiences with any blockchain — all in one browser. 

    - - - -

    Here is what to expect from NEAR at Collision 2023. 

    - - - -

    The BOS and NEAR Horizon at Collision 

    - - - -

    If you saw NEAR’s big announcement out of ETHDenver and Collision, NEAR isn’t just a Layer 1 blockchain. It’s a Blockchain Operating System that makes it easy to use the tools you already know to build apps that engage users, while fostering an open web free from centralized platforms.

    - - - -

    Also appearing at Collision will be NEAR Horizon — NEAR Foundation’s new Web3 startup support platform. Meet with the Horizon team and get started on the Web3 funding and building journey.  

    - - - -

    NEAR speakers at Collision

    - - - -

    At Collision, catch a number of exciting NEAR speakers and sessions. 

    - - - -

    Illia Polosukhin – Co-founder, NEAR Protocol; CEO, Pagoda

    - - - -

    Elad Gil – Investor

    - - - -

    Kendall Cole – Founder, Proximity

    - - - -

    Laura Cunningham – General Manager, NEAR Horizon

    - - - -

    Joyce Yang – Founder, Global Coin Research

    - - - -

    Steven Chien –  Founder, Press Start Capital

    - - - -

    Paul Hsu – CEO & Founder, Decasonic

    - - - -

    Stay updated on the complete slate of confirmed speakers at near.org/Collision

    - - - - - - - -

    NEAR Horizon pitch and networking event

    - - - -

    NEAR Horizon will be hosting another Pitch and networking event with VC partners the evening of June 27th. Applications to pitch are being accepted now through June 7th. 

    - - - - -

    The post NEAR at Collision: Expand into the Open Web with the Blockchain Operating System appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at Consensus Highlights - /blog/near-at-consensus-highlights/ - - - Thu, 27 Apr 2023 20:18:30 +0000 - - - - - - /?p=20451 - - NEAR has a monolithic mega-booth at Consensus 2023, where there have been a number of awesome NEAR announcements, talks, and …

    -

    The post NEAR at Consensus Highlights appeared first on NEAR Protocol.

    -]]>
    - NEAR has a monolithic mega-booth at Consensus 2023, where there have been a number of awesome NEAR announcements, talks, and events, including the big news out: the Blockchain Operating System is now live on Near.org and the NEAR Horizon accelerator is open for business. If you haven’t stopped by yet to meet our NEAR experts or are unable to attend, we’ve got you covered with all of the highlights.

    - - - -

    Let’s take a look at everything NEAR at Consensus, including the BOS, NEAR Horizon, a submissions call for the latest edition of Women in Web3, and much more! And stay tuned for more NEAR at Consensus highlights over the next few days.

    - - - -

    The BOS is now live on Near.org

    - - - -
    - - - -

    On April 26th at Consensus, NEAR co-founder and Pagoda CEO Illia Polosukhin and Pagoda Chief Product Officer Alex Chiocchi announced that the Blockchain Operating System (BOS) — a real alternative to the Operating Systems of centralized platforms — is now live at near.org. 

    - - - -

    As a blockchain operating system for an open web, the BOS is accessible to everyone, not just web3 natives. And it makes Web3 and Web2 easier than ever to access and navigate for users and developers alike. With the BOS, you no longer have to choose between decentralization and discoverability. Devs and users get the best of both worlds, whether they are new to Web3 experiences and want to play around, or developers looking to build an open web. 

    - - - -

    Read the full BOS announcement here

    - - - -

    NEAR Horizon: A revolutionary accelerator for Web3 startups

    - - - -
    - - - -

    NEAR Foundation also announced the launch of Near Horizon, a Web3 accelerator program, on the 26th from Consensus. Built on the Blockchain Operating System (BOS), Horizon features a revolutionary marketplace where Web3 startups can find the support they need for building on Near and cross-chain platforms. 

    - - - -

    Together with partners Dragonfly, Pantera, Decasonc, Blockchange, Fabric Ventures, dLab, Hashed, and Factomind, and Outlier Ventures, Near Horizon is on a mission to empower founding teams with the tools and support they require to accelerate the development of sustainable, profitable, innovative startups on Near.

    - - - -

    Near Horizon’s robust network of support is a game-changer for Near builders, offering new opportunities and resources to propel the best minds in the Near ecosystem to success.

    - - - -

    Read the full NEAR Horizon announcement here

    - - - -

    NEAR opens submissions for Women in Web3 Changemakers 2023

    - - - -
    - - - -

    Following its hugely successful launch a year ago, Women in Web3 is back! On Day 2 of Consensus, NEAR Foundation announced the return of its global Women in Web3 Changemakers list.  

    - - - -

    Nominations are now open for 2023! Designed to showcase the talented and socially mindful women who make up the Web3 ecosystem, the initiative will once again spotlight ten exceptional leaders across the international sector and the amazing, sustainable work they do.

    - - - -

    Members of the Web3 community — both men and women — are welcome to nominate and submit the names of female colleagues who they feel should be recognized for their exemplary contribution to Web3. Women who work in Web3 can also nominate themselves. 

    - - - -

    Each nominee should meet the following criteria, which NEAR uses to define impact:

    - - - -
      -
    1. Inclusion – driving ideas that are good for society, sustainable, and socially impactful.
    2. - - - -
    3. Influence – in the community and among peers.
    4. - - - -
    5. Innovation – contributing to interesting and socially impactful projects at work or independently.
    6. -
    - - - -

    The top ten Changemakers will be decided by you — the community! 

    - - - -

    Important Dates for Submissions and Voting

    - - - -

    More details on the voting process will be announced shortly. But here are some important dates.

    - - - -
      -
    • June 1, 2023 — Nominations Deadline
    • - - - -
    • June 5, 2023 — Voting Begins
    • - - - -
    • June 19, 2023 (Midnight) — Voting Ends
    • - - - -
    • June 29, 2023 — 10 Changemakers for 2023 will be announced
    • -
    - - - -

    Those selected will be included in the Women in Web3 Changemakers list, which will be shared with the press and the global community. NEAR will also feature the winners in a special series of video interviews that will air across NEAR’s social platforms and distribution network to share each award-winner’s story and contributions to Web3. Founders of Web3 companies that have made the list will also have the opportunity to meet with investors and pitch for funding at the event.

    - - - -

    Google Cloud Unveils Web3 Startup Program 

    - - - -
    - - - -

    Google Cloud recently made a splash in the Web3 space by announcing its Web3 Startup program via a Twitter thread during Consensus. Catering to seed and Series A projects and startups, the program offers up to $200K in cloud credits, and access to technical training. Recipients also receive partner perks including discounts on Nansen AI products and platform credits from Alchemy, and Thirdweb’s gasless contract deployment, support, and co-marketing opportunities.

    - - - -

    Google’s support of Web3 will benefit founders building on the Blockchain Operating System (BOS) and those partnering with the recently launched NEAR Horizon, an accelerator revolutionizing how founders are supported in Web3. NEAR Horizon will enable founding teams to scale their project with the support they need, increasing the number of founding teams building great products with real-world value on the NEAR Protocol.

    - - - -

    To apply, visit the application portal and explore more information on the official website.

    - - - -

    Here’s how to get involved:

    - - - - - - - -

    NEARCON is Returning to Lisbon and NEAR APAC is Headed to HCMC, Vietnam!

    - - - -

    Today at Consensus, NEAR Foundation announced that NEARCON will take place in Lisbon, Portugal on November 7 – 10, 2023. In an effort to globally scale and create more accessible events, the NEAR Foundation also announced that NEAR APAC will take place in Ho Chi Minh City, Vietnam on September 8 – 12, 2023. Both events will gather an audience of builders, Web2 and Web3 entrepreneurs, industry professionals, investors, and creators from all over the world.

    - - - -

    NEAR APAC will be the NEAR Ecosystem’s first and largest event in the APAC region. NEAR APAC delivers a world-class lineup of speakers to share latest APAC developments, unlimited potential of the blockchain industry, regional market insights, Web3 hacker festival, and insightful events for networking opportunities with local communities and partners. Head to https://nearapac.org/ on May 15th to secure your NEAR APAC tickets!

    - - - -

    NEARCON, the NEAR Ecosystem’s Annual flagship conference is headed back to Lisbon. The Mainnet anniversary of the protocol’s launch and the biggest announcements from the Ecosystem will be featured at NEARCON. Hear from some of the most iconic names in Web3 speak on Technical updates, Web2 and Web3 trends, the latest on Governance and Regulation, Arts and Culture, and much more. 

    - - - -

    This year the conference will take over two venues: Convento De Beato and Armazem Lisboa. Convento de Beato will host the core conference and will feature two larger stages whereas Armazem Lisboa will be Developers HQ where hackers will build all day. Both venues are just a 10 minute walk from each other. Mark your calendars because on June 1st NEARCON tickets will go live on nearcon.org!  

    - - - -

    See you in HCMC and Lisbon this Fall!

    - - - -

    Updates from around the NEAR Ecosystem

    - - - -
    - - - -

    Mailchain brings encrypted communication to NEAR-based dApps

    - - - -

    Mailchain, an open source, multi-chain communication layer for Web3, announced integration with NEAR. Now, NEAR developers can send encrypted messages between blockchain wallet addresses with simple, unified inbox to view and send messages and keep track of on-chain activity. 

    - - - -

    NEAR’s vision has always been to onboard the next billion users to the Open Web. With Mailchain, these next billion users can communicate natively with one another, regardless of blockchain. 

    - - - -

    Mailchain’s integration with NEAR is a significant step towards strengthening the interoperability mission of NEAR’s blockchain operating system (BOS). NEAR’s BOS and Mailchain are both chain-agnostic, prioritize usability and security, and together make Web3 more accessible and interoperable for users.

    - - - -

    “Our vision aligns perfectly with NEAR’s–to onboard the next billion users,” said Tim Boeckmann, CEO of Mailchain. “When building Mailchain, we knew these next billion users would want to communicate with what mattered most to them, their blockchain identities. Mailchain’s secure communication protocol makes this a reality. We believe that this integration is a big step forwards for the developers who are building the next generation of the Internet.”

    - - - -

    XP Network brings cross-chain NFT bridge to NEAR

    - - - -

    During Consensus, the XP Network, a cross chain NFT bridge, went live on NEAR mainnet. XP Network allows NFT holders to transfer their NFTs to any other supported chain. XP Network recently showcased their cross-chain NFT bridge  by transferring a BSC NFT over to Near via the XP Network bridge, and selling it on Mintbase. 

    - - - -

    Now, NFT marketplaces built on NEAR Protocol like Paras, Berry Club, Mintbase, Flux, Few & Far can list the most promising NFT collections from almost 30 other chains. XP Network’s integration will supercharge both arts and collectibles, as well as Web3 gaming on NEAR, with players now being able to buy and trade NFTs in-game across chains. 

    - - - -

    kuutamo and Lattitude.sh give NEAR validators access to premium infrastructure

    - - - -

    From Consensus, Kuutamo announced its partnership with enterprise-grade infrastructure provider Lattitude.sh, which will give developers and current NEAR validators more flexibility and control. NEAR validators using both kuutamo and Latitude can now access premium infrastructure at a limited promotional price, or apply for the kuutamo x Latitude Program.

    - - - -

    A venture-backed technology company, Kuutamo offers a resilient and user-friendly node infrastructure, designed for the peer-to-peer economy. kuutamo launched the world’s first high availability node for the NEAR Protocol, giving users full control and flexibility (no lock-in effect) to execute their desired cloud strategies — differentiating itself from most large public cloud providers in the process.

    - - - -

    Latitude is an emerging global leader, offering access to enterprise-grade infrastructure in the world’s most advanced data centers. In its partnership with kuutamo, Latitude is expanding its offering to developers and NEAR validators. Latitude already supports other leading blockchains and Web3 companies such as Solana, Ankr, and Riot Games.

    - - - -

    WOMBI brings Web2-style analytics to NEAR

    - - - -

    During Consensus, Wombi — a Web3 attribution platform — announced that it is now live on NEAR. With an aim to be the Google Analytics of Web3, Wombi helps decentralized app developers by connecting Web2 and Web3 funnels, so they can instantly see which marketing channels are bringing them the most impactful users. 

    - - - -

    Wombi is now publicly available to all dApps fully live or building on the NEAR Blockchain Operating System or Protocol. All developers get free product and marketing analytics, making NEAR the first Layer 1 with a live attribution product. 

    -

    The post NEAR at Consensus Highlights appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/near/index.html b/public/blog/tag/near/index.html deleted file mode 100644 index 1e478ee32..000000000 --- a/public/blog/tag/near/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEAR Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/nearcon-2023/feed/index.xml b/public/blog/tag/nearcon-2023/feed/index.xml deleted file mode 100644 index 183eb3cda..000000000 --- a/public/blog/tag/nearcon-2023/feed/index.xml +++ /dev/null @@ -1,794 +0,0 @@ - - - - NEARCON 2023 Archives – NEAR Protocol - - /blog/tag/nearcon-2023/ - - Fri, 13 Oct 2023 16:46:31 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEARCON 2023 Archives – NEAR Protocol - /blog/tag/nearcon-2023/ - 32 - 32 - - - Built on NEAR: Celebrating Partners and Innovators at NEARCON ’23 - /blog/built-on-near-celebrating-partners-and-innovators-at-nearcon-23/ - - - Fri, 13 Oct 2023 15:59:43 +0000 - - - - - /?p=20968 - - Partnerships are one of the biggest pillars to expanding NEAR’s footprint. They help drive the ecosystem toward fostering new and …

    -

    The post Built on NEAR: Celebrating Partners and Innovators at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - Partnerships are one of the biggest pillars to expanding NEAR’s footprint. They help drive the ecosystem toward fostering new and innovative use cases that will bring the next billion users to the open web. And that’s exactly what’s happening on NEAR, with partnerships ranging from sports to social taking center stage. At NEARCON — the ultimate Web3 education — a number of NEAR partners will be on-hand to talk about Web3 partnerships and innovation. 

    - - - -

    Throughout the past few years, NEAR has engaged, collaborated, and built with partners who share the vision of a decentralized, user-centric open web. Each partnership is contributing their unique, innovative flair to the ecosystem, with a scalable, user-friendly blockchain helping to propel their efforts.

    - - - -

    As NEARCON ‘23 approaches, let’s celebrate and explore how NEAR’s collaborations and partnerships are shaping the future of the open web. By registering for and attending NEARCON ‘23, you’ll be able to meet some of the following founders, entrepreneurs, and innovators below.

    - - - -

    And these names are just the tip of the iceberg, so don’t forget to register for NEARCON ‘23 and let’s take part in learning, networking, and building an open web together.

    - - - - - - - -

    Creating consumer fun and engagement in the open web

    - - - -

    An area where NEAR partnerships are thriving is making the blockchain more fun and engaging for the masses. NEAR’s partnership with NFT launchpad Mintbase is a perfect illustration. Mintbase recently celebrated the traditional Indian festival, Raksha Bandhan, by seamlessly transforming photos into NFTs on the NEAR blockchain. 

    - - - -

    During Raksha Bandan, sisters tie a good-luck talisman around the wrists of their brothers, a special moment often photographed and cherished by families. With Mintbase’s open web wallet built on NEAR, users could easily create an account without seed phrases and seamlessly upload their photos, transforming them into NFTs in an instant.

    - - - -

    Let’s also toast to  GLASS, a one-of-a-kind Web3 platform that empowers alcohol brands to engage directly with consumers. Built on the NEAR blockchain, spirit brands can issue token rewards and other blockchain perks to social drinkers who try new cocktail recipes, socialize with friends, and vote on brand decisions. 

    - - - -

    Gaming is also a key entry point into the open web, and NEAR’s partnership with PlayEmber is kicking the door wide open. PlayEmber’s creative gaming studio is fusing AAA quality mobile games on the blockchain, with NEAR providing the backend foundation. Decentralized mobile gaming experiences are now becoming more accessible to a wider audience.

    - - - -

    Then there’s Cosmose AI’s KaiKai, a fusion of shopping, retail, and gamification dubbed”Shoppertainment.” Built on NEAR’s Blockchain Operating System (B.O.S), KaiKai offers a captivating brand discovery avenue, with features like Augmented Reality (AR) product interactions, exclusive product drops, and celebrity live streams. 

    - - - -

    More than just a shopping app, KaiKai also uses a native cryptocurrency, Kai-Ching. Shoppers earn rewards with the help of Cosmose’s AI-powered personalization, all while transacting on the NEAR blockchain. It’s all about enhancing personalization, user empowerment, and engagements in the retail space with a unique, powerful blockchain twist.

    - - - -

    And in a fusion of health and blockchain, Sweatcoin’s partnership with NEAR helps people earn SWEAT tokens with literally every step towards better fitness. With a user base of over 63 million who’ve clocked in more than 19 trillion steps, Sweatcoin and NEAR are incentivizing  healthier lifestyles.

    - - - -

    Oleg Fomenko, co-founder of Sweatcoin, believes in the potential of merging health and blockchain, enabling users to “walk into the world of crypto.” This partnership, built on the NEAR blockchain, personifies the next level of open web adoption, encouraging physical wellness via crypto-based rewards.

    - - - -

    Financial empowerment and innovation on NEAR

    - - - -

    One of the biggest challenges that the open web is addressing is financial empowerment and inclusion. NEAR Foundation’s partnerships in this area are helping bring that vision to life. The Foundation’s collaboration with Proximity Labs is helping talented builders create innovative Web3 financial solutions, with substantial grants and support.

    - - - -

    Calimero Network is another example of NEAR’s commitment to financial innovation. Calimero provides what’s called ‘private sharding’ infrastructure, a feature that ensures  data privacy in Web3 finance without sacrificing the power of open-source platforms. With both financial and technical support from NEAR, more business can be safely conducted on the blockchain.

    - - - -

    Building the technical foundation for tomorrow’s open web

    - - - -

    The ongoing partnership between NEAR Protocol and Octopus Network signifies the ecosystem’s infrastructure strides. Early on, Octopus Network selected NEAR as its “mother-chain” protocol citing speed ability to accommodate a large user base. Octopus Network and NEAR are paving the way for developers aiming to launch tailored applications using their own dedicated blockchains — also known as “Appchains” — making deployment a breeze.

    - - - -

    Partnering with a tech infrastructure behemoth like Google Cloud is another way of giving Web3 startups pathways to world-class startup expertise. It’s all part of NEAR’s commitment to making blockchain solutions more accessible, robust, and primed for mainstream adoption.

    - - - -

    In collaboration with Urbit, NEAR is also continuing to make the open web more user friendly. Urbit’s vision — shared and supported by the NEAR Foundation — is to improve the frontend experience of open web apps. Urbit allows developers to easily create sleek designs so that tomorrow’s decentralized applications are as seamless as the most popular ones in the App Store.

    - - - -

    On another front, NEAR’s collaboration with SailGP is bringing Decentralized Autonomous Organizations (DAOs) to professional sports, creating a bridge between leagues and fans. The introduction of a DAO-owned racing team on the NEAR Protocol gives fans a novel way to engage, interact with, and participate in active decision making along with teams and athletes.

    - - - -

    Partnership innovation rolls on at NEARCON

    - - - -

    Past, current, and future partnership will take center stage at NEARCON 2023 — now less than a month away. It’ll be four full days of full immersion into the NEAR ecosystem — a place for you to truly step into the open web. Build on the B.O.S and network with thousands of other blockchain enthusiasts. Get the inside scoop on onboarding Web2 companies into Web3 with Google Cloud’s James Tromans, and get the low down on SWEAT with Oleg Fomenko.

    - - - -

    From raising a glass to blockchain brand loyalty with GLASS and setting sail towards new DAO horizons with SailGP, each and every NEAR partner is playing its own pivotal role in crafting how tomorrow’s open web experiences will look, feel, and even taste. Better decentralized infrastructure, financial empowerment, and exciting consumer experiences are just the start.

    - - - -

    Ready to dive into sessions, hackathons, and more in Lisbon at NEARCON 2023? Go ahead and register now to secure your spot.

    - - - - -

    The post Built on NEAR: Celebrating Partners and Innovators at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Estudantes terão ingressos grátis no NEARCON’23 - /blog/estudantes-terao-ingressos-gratis-no-nearcon23/ - - - Fri, 06 Oct 2023 17:56:48 +0000 - - - - /?p=20956 - - Estudantes do mundo inteiro estão interessados em Web3. Se você é um estudante em Portugal e quer aprender mais sobre …

    -

    The post Estudantes terão ingressos grátis no NEARCON’23 appeared first on NEAR Protocol.

    -]]>
    - Estudantes do mundo inteiro estão interessados em Web3. Se você é um estudante em Portugal e quer aprender mais sobre o mundo do Web3 não precisa procurar mais. NEARCON 2023 em Lisboa será o melhor lugar para aprender sobre a ‘open web’ (internet aberta).

    - - - -

    Para começar sua jornada educacional na Web3, a Fundação NEAR tem uma excelente oferta para você! Estudantes registados em Portugal terão acesso a um número limitado de ingressos para o maior evento do ano, o NEARCON ‘23. O evento será em Lisboa, do dia 7 a 10 de Novembro (mais detalhes sobre como conseguir o ingresso abaixo).

    - - - -

    O que é o NEARCON?

    - - - -

    Para quem ainda não sabe, NEAR é uma blockchain, um ecossistema e uma comunidade internacional de desenvolvedores, criadores, fundadores e visionários da descentralização.

    - - - -

    NEARCON será um evento de 4 dias celebrando a NEAR, o sistema operacional para blockchain na internet aberta (Blockchain Operating System – B.O.S). A internet aberta é como a internet deveria ser. Uma nova internet onde todos terão a chance de criar, participar e ganhar incentivos pelos seus dados, ideias e contribuições. NEAR é um dos únicos ecossistemas que podem trazer a internet aberta para todos.

    - - - -

    Todos os anos a comunidade da NEAR se junta para ouvir, aprender, se conectar e desenvolver ideias inspiradoras para o futuro. NEARCON será o melhor lugar para aprender as últimas novidades da internet aberta!

    - - - -

    Se você não tem certeza o que a Web3 é, ou como o crypto funciona, esse é o seu lugar. Um dos projetos mais descentralizados, a NEAR tem paixão em conectar e inspirar a próxima geração de talentos em tecnologia. 

    - - - -

    NEARCON 2023 vai ser o maior evento educacional de Web3 – e o número de ingressos gratuitos é limitado. Garanta o seu!

    - - - -

    O que você vai aprender no NEARCON ‘23

    - - - -

    O ecossistema em Web3 contém muitos setores, e nós temos a sorte de contar com muitas das mais brilhantes mentes no NEARCON esse ano. Palestras, painéis e conversas nos seguintes tópicos:

    - - - -
      -
    • Internet aberta – aprenda como a tecnologia aberta e seus ideais se juntam em blockchains como NEAR para a criação de uma internet onde todos podem aproveitar o controle dos seus dados, ideias e criações.
    • - - - -
    • AI & Blockchain – o co-fundador da NEAR, Illia Polosukhin, vai te ensinar como blockchain e inteligência artificial podem trabalhar juntos em 2023 e no futuro.
    • - - - -
    • Descentralização – Veja como a NEAR Digital Collective (NDC) está contribuindo para a descentralização do ecossistema.
    • - - - -
    • Leis e regulamentação – se informe sobre os últimos desenvolvimentos no setor.
    • -
    - - - -

    Garanta seu ingresso grátis para o NEARCON ‘23

    - - - -

    É fácil garantir o seu ingresso grátis. Para conseguir o seu cupom de desconto, você precisa:

    - - - -
      -
    • Ser estudante registrado em Portugal
    • - - - -
    • Ser maior de 18 anos
    • - - - -
    • Estar disponível para ir ao evento entre 7 a 10 de Novembro em pessoa.
    • -
    - - - -

    Para acessar o cupom de desconto [DISCOUNT CODE], acesse a página do [NEARCON ‘23- add link]. Você vai precisar completar o formulário (preencha todas as informacoes). O site vai direcionar você à página de pagamento, mas não se preocupe, aqui você vai poder adicionar o cupom de desconto. O recibo com o ingresso será enviado para você.

    -

    The post Estudantes terão ingressos grátis no NEARCON’23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Entradas Gratuitas a NEARCON ‘23 para Estudiantes en España - /blog/entradas-gratuitas-a-nearcon-23-para-estudiantes-en-espana/ - - - Fri, 06 Oct 2023 17:54:31 +0000 - - - - /?p=20953 - - Si eres estudiante universitario en España y estás interesado en aprender sobre Web3, la Fundación NEAR tiene una gran noticia …

    -

    The post Entradas Gratuitas a NEARCON ‘23 para Estudiantes en España appeared first on NEAR Protocol.

    -]]>
    - Si eres estudiante universitario en España y estás interesado en aprender sobre Web3, la Fundación NEAR tiene una gran noticia para ti. ¡Estamos ofreciendo un número limitado de entradas gratuitas a universitarios para NEARCON ‘23!, nuestro evento insignia en Lisboa, del 7 al 10 de noviembre (más detalles sobre elegibilidad debajo). 

    - - - -

    No importa si nunca usaste una blockchain, o si eres nuevo en el mundo del Web3. NEARCON es el mejor lugar para aprender sobre Web3 y cómo ésta contribuye a la Web Abierta.

    - - - -

    ¿Qué es NEARCON?

    - - - -

    Si nunca escuchaste hablar de NEAR, NEAR es a la vez una blockchain, un ecosistema, y una comunidad internacional de desarrolladores, emprendedores, y visionarios de la descentralización.

    - - - -

    Una de las principales misiones de NEAR es hacer realidad la visión de una web abierta. Esto es, una web donde todo el mundo puede crear, participar y ser recompensado por sus datos, ideas y esfuerzo.

    - - - -

    NEARCON es el evento insignia de 4 días destinado a NEAR, donde todos los años la comunidad se junta a debatir, conectar y colaborar en ideas que contribuyan a desarrollar una web abierta. 

    - - - -

    NEARCON 2023 ofrece lo mejor en educación Web3, y hay entradas gratuitas disponibles para un número limitado de universitarios.

    - - - -

    No importa si eres nuevo en el universo Blockchain, NEAR tiene una pasión por involucrar e inspirar a la próxima generación de talentos Web3, ¡y NEARCON es el lugar donde aprender lo último en tecnología Web3 y la web abierta!

    -

    The post Entradas Gratuitas a NEARCON ‘23 para Estudiantes en España appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEARCON IRL Hackathon 2023: Build the Open Web - /blog/nearcon-irl-hackathon-2023-build-the-open-web/ - - - Thu, 28 Sep 2023 16:03:35 +0000 - - - - /?p=20931 - - If you attended NEARCON last year, you know the 48-hour IRL hackathon — “Building Beyond the Hype” was a great …

    -

    The post NEARCON IRL Hackathon 2023: Build the Open Web appeared first on NEAR Protocol.

    -]]>
    - If you attended NEARCON last year, you know the 48-hour IRL hackathon — “Building Beyond the Hype” was a great event, with all sorts of exciting prototypes that helped propel NEAR through the last year.

    - - - -

    For NEARCON 2023, which will be held November 7-10th, we’re leveling up the hackathon. This year’s hackathon explores NEARCON 2023’s theme — “Step into the Open Web”. And that hacking together apps and experiences that explore how the NEAR Protocol and Blockchain Operating System are paving the way for a truly open web.

    - - - -

    Let’s explore what’s new for the NEARCON 2023 Hackathon

    - - - -
    - -
    - - - -

    Hacker HQ: a space just for the hackers

    - - - -

    Not only do hackers get into NEARCON 2023 for free, but they also get their own space. NEARCON’s Hacker HQ will be a place for hackers to hang out, network, and build — whether that’s for the Hackathon or if you’re just interested in continuing to build your project on NEAR. Hacker HQ will be located at: 

    - - - -

    Armazem 16
    R. Pereira Henriques nº1, 1950-242
    Lisboa, Portugal

    - - - -

    Hack the days and nights away for a chance to build on the BOS and win $140k+.

    - - - -

    Important NEARCON Hackathon dates and information

    - - - -
      -
    • The Hackathon is held November 7-10th. -
        -
      • November 7th — Hackathon orientation, team matching, and a welcome party hosted by NEARWEEK. 
      • - - - -
      • November 8th — Day 1 of hacking. Mentoring available. 
      • - - - -
      • November 9th — Day 2 of hacking. Mentoring available. Submission Deadline. 
      • - - - -
      • November 10th — Pitch competition. 
      • -
      -
    • - - - -
    • Request a visa letter to support hackers’ visa applications. All requests must be submitted via the form by October 7, 2023. 
    • - - - -
    • Travel stipends are available depending on your location. Please read the Hacker Stipend Guidelines
    • -
    - - - -

    Stay tuned in the coming weeks for details on NEARCON IRL Hackathon bounties. 

    - - - -
    - -
    -

    The post NEARCON IRL Hackathon 2023: Build the Open Web appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEARCON: The Ultimate Web3 Education for Only $99! - /blog/nearcon-the-ultimate-web3-education-for-only-99/ - - - Fri, 22 Sep 2023 14:47:16 +0000 - - - - /?p=20914 - - As NEAR’s flagship conference, NEARCON is the place to learn all of the latest on Web3 technologies and the open …

    -

    The post NEARCON: The Ultimate Web3 Education for Only $99! appeared first on NEAR Protocol.

    -]]>
    - As NEAR’s flagship conference, NEARCON is the place to learn all of the latest on Web3 technologies and the open web. NEARCON 2023 will be the ultimate Web3 education — and for only $99. 

    - - - -

    Let’s explore what you can expect from the NEARCON crash course — from recent Web3 developments in venture capital, decentralization, and AI to NEAR technologies like the Blockchain Operating System (B.O.S), and much more. 

    - - - -

    What you’ll learn at NEARCON 2023

    - - - -

    The Web3 ecosystem consists of several key roles and sectors, and we’re lucky to have some of the biggest names attending NEARCON. Over 4 days, you will hear from venture capital figures like Samantha Bohbot (RockawayX) and Nathalie Oestmann (Outlier Ventures) as well as accelerator leaders like Nicolai Reinbold (CV Labs). There will also be a number of entrepreneurs and founders, including Michael Casey (CoinDesk), Alexander Skidanov (NEAR Protocol), Rebecca Allen (Contented), Dave Balter (Flipside Crypto), Aurelie Boiteux (Nansen), Mitchell Amador (Immunefi), Marc Goldich (Proximity Labs), and many others. 

    - - - -

    Featured talks, panels, and discussions will include learnings on:

    - - - -
      -
    • Open Web — Learn how open source technologies and ideals are colliding with blockchain technologies like NEAR to create an open web where everyone can be fairly rewarded for their data, ideas, and effort. 
    • - - - -
    • AI & Blockchain — Learn from the OG of AI himself, NEAR co-founder Illia Polosukhin, on how Blockchain and Artificial Intelligence are intersecting in 2023, and how they will develop in the near future. 
    • - - - -
    • Decentralization — See how the NDC (NEAR Digital Collective) is helping to decentralize governance to the NEAR community. 
    • - - - -
    • Regulation & Policy — Get updated on the latest Web3 regulatory developments. 
    • -
    - - - -

    Your Web3 education doesn’t stop at NEARCON — take the next step

    - - - -

    If you love what you learn at NEARCON, you can keep going with your NEAR and open web education. The NEAR ecosystem offers a number of resources to help you find success in Web3. 

    - - - -

    Thanks to the NEAR Horizon team — who will be on hand at NEARCON — you can get help in your journey of building, getting funding, and networking as a Web3 builder, founder, and entrepreneur. 

    - - - -

    See you in Lisbon!

    - - - - -

    The post NEARCON: The Ultimate Web3 Education for Only $99! appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEARCON 2023: Get Tickets, Get Involved, Join the Hackathon! - /blog/nearcon-2023-get-tickets-get-involved-join-the-hackathon/ - - - Wed, 13 Sep 2023 17:30:00 +0000 - - - - /?p=20880 - - NEARCON 2023 “Step into the Open Web” may be a few months away but it’s fast approaching. Since kicking off …

    -

    The post NEARCON 2023: Get Tickets, Get Involved, Join the Hackathon! appeared first on NEAR Protocol.

    -]]>
    - NEARCON 2023 “Step into the Open Web” may be a few months away but it’s fast approaching. Since kicking off this year’s edition of NEARCON, the NEAR Foundation has been hard at work building an iconic experience for the NEAR ecosystem and community. 

    - - - -

    This year, NEARCON has three venues, designed to optimize spaces for the hackathon and the talks and demos.  While we are still working out the details of the third venue, here are two confirmed venues:  

    - - - -

    NEARCON HQ
    Convento Do Beato
    Alameda do Beato 40, 1950-042
    Lisboa, Portugal

    - - - -

    Hacker HQ
    Armazem 16
    R. Pereira Henriques nº1, 1950-242
    Lisboa, Portugal

    - - - -

    We’ve got some exciting updates on NEARCON tickets, speakers and sessions, the hackathon, and ways of getting involved in the conference. 

    - - - -

    Let’s take a look at all of the latest from NEARCON.
    To stay tuned for all of the latest updates over the next few months, join the official NEARCON 2023 Telegram channel, and drop into the spirit before the event.

    - - - -
    - -
    - - - -

    What you get at NEARCON

    - - - -
      -
    • Join 5,000+ delegates as the NEAR community explores the power and possibilities of an open web
    • - - - -
    • Get inspired by talks from renowned authors, economists, artists, politicians, developers, entrepreneurs, and more
    • - - - -
    • Explore the Blockchain Operating System (BOS), try it for yourself, and find out why it’s the driving force behind an open web
    • - - - -
    • Connect with projects, speakers, community members, builders, and multi-chain enthusiasts from around the world
    • - - - -
    • Hack the days and nights away for a chance to build on the BOS and win $180k
    • -
    - - - -

    Tickets info update

    - - - -

    If you missed our early bird NEARCON 2023 tickets a few months ago, don’t worry! While your chance at free tickets has passed, you can still receive a special prize.
    If you refer 4 friends when you register for NEARCON, you will get a special prize at the conference. When your friends register for NEARCON, they must name you in the referral field. Friends can refer you all the way up to the first day of the conference. 

    - - - -

    Stay tuned to the Near.org/blog and NEAR Protocol Twitter account for updates on the prize. 

    - - - -

    Speakers & Sessions

    - - - -

    NEARCON will host a wide array of exciting speakers, including VCs, founders, developers, and many other notable ecosystem players. Here is a sneak peak at some of the 70+ confirmed speakers: 

    - - - -
      -
    • Michael Casey — CoinDesk
    • - - - -
    • Samantha Bohbot — RockawayX
    • - - - -
    • Nicolai Reinbold — CV Labs
    • - - - -
    • Nathalie Oestmann — Outlier Ventures
    • - - - -
    • Alexander Skidanov — NEAR Protocol
    • -
    - - - -

    NEARCON Hackathon: Build a multi-chain, open web future.

    - - - -

    Hackers know that NEAR and NEARCON love them. This year, any builder or developer who applies for the hackathon gets in for free. 

    - - - -

    The NEARCON hackathon is a 48-hour IRL hacking session for those looking to team up, familiarize themselves with NEAR, prototype their project, and pitch it — all for a chance to win. 

    - - - -

    The hackathon can be the start of something amazing — or a way to fail fast, learn, and adapt. We appreciate both, because we know that to build the next big thing you often have to fail enough times to find just the right idea.

    - - - -

    If accepted to the hackathon, hackers will receive:

    - - - -
      -
    • FREE access to NEARCON
    • - - - -
    • 24/7 access to hack at the venue
    • - - - -
    • Hands on mentoring
    • - - - -
    • Participation stipend in NEAR
    • - - - -
    • Chances to win amazing prizes!
    • -
    - - - -

    For consideration to hack and get a free NEARCON pass, please complete the application form. We’re working on the full list of bounties, partners, and opportunities, so stay tuned to the NEARCON hackathon page. 

    - - - -

    Request a visa letter to support hackers’ visa applications.

    - - - -

    Get involved with NEARCON

    - - - -

    Last year, a number of partners helped support NEARCON, including TAP Air Portugal, Business Insider, Circle, The Graph, and others. There are various ways of getting involved, from digital marketing exposure and exclusive access to side events to major visibility at the conferences. 

    - - - -

    Find what’s right for you. Take a look at how you can get involved at NEARCON 2023. 

    - - - -

    Step into the Open Web and register for NEARCON

    - - - -

    Join the NEAR ecosystem and community and step into the open web. Let’s build a new web together. 

    - - - -

     Register for NEARCON.

    -

    The post NEARCON 2023: Get Tickets, Get Involved, Join the Hackathon! appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEARCON Returns: Here’s Everything You Need to Know So Far - /blog/nearcon-returns-heres-everything-you-need-to-know-so-far/ - - - Thu, 15 Jun 2023 19:56:22 +0000 - - - - /?p=20642 - - Last year’s NEARCON was epic. NEARCON 2023 will be iconic.  While all of you have been diligently building NEAR into …

    -

    The post NEARCON Returns: Here’s Everything You Need to Know So Far appeared first on NEAR Protocol.

    -]]>
    - Last year’s NEARCON was epic. NEARCON 2023 will be iconic. 

    - - - -

    While all of you have been diligently building NEAR into one of the best ecosystems in the blockchain world, NEAR Foundation has been planning a 4-day journey into an open web. 

    - - - -

    Let’s take a quick look at everything we have to share (so far). 

    - - - -

    What to expect at NEARCON 2023

    - - - -

    For this year’s NEARCON, we’re expanding. There will be two venues — NEARCON HQ and Hack HQ. 

    - - - -

    Most of the action will happen at NEARCON HQ. But if you’re a hacker, or just like hanging with them, you can do that at Hack HQ.

    - - - -

    At NEARCON, you can expect to:

    - - - -
      -
    • Join 5,000+ delegates as we explore the power and possibilities of an open web
    • - - - -
    • Encounter a diverse melting pot of creators, builders, policy makers, and more — you’ll even find the rare thought leader in their natural environment
    • - - - -
    • Get inspired by talks from renowned authors, economists, artists, politicians, VCS, developers, entrepreneurs, and more
    • - - - -
    • Explore the Blockchain Operating System (BOS), try it for yourself, and find out why it’s the driving force behind an open web 
    • - - - -
    • Connect with projects, speakers, community members, builders, and multi-chain enthusiasts from around the world
    • - - - -
    • Hack the days and nights away for a chance to build on the BOS and win $180+k   
    • - - - -
    • And experience so much more that you’ll be looking around and asking yourself, “What bear market?” 
    • -
    - - - -

    Get your early bird tickets now!

    - - - -

    NEARCON 2023 tickets are $20 off until July 1. So, don’t wait — snag your ticket for $79 now because after July 1st they are $99. 

    - - - -

    NEAR Foundation is also offering another deal. If you refer 4 friends to NEARCON 2023, you will get a special gift upon check-in at the conference. 

    - - - -

    Become a Speaker or Sponsor

    - - - -

    Thinking about becoming a NEARCON speaker? We’d love to hear from you. 

    - - - -

    Speaking spots always go fast, so make haste. Apply to speak at NEARCON here

    - - - -

    Psstt… we’re looking for technical applications that don’t just shill but highlight problems being solved — on the BOS and the wider open web. 

    - - - -

    Apply for the Hackathon and get in for free

    - - - -

    NEAR and NEARCON loves its hackers. And to show it, we’ve made it so that any builder or developer who applies for the hackathon gets in for free. 

    - - - -

    Find more information about the NEARCON 2023 hackathon here.

    -

    The post NEARCON Returns: Here’s Everything You Need to Know So Far appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/nearcon-2023/index.html b/public/blog/tag/nearcon-2023/index.html deleted file mode 100644 index fbebde8e8..000000000 --- a/public/blog/tag/nearcon-2023/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEARCON 2023 Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/nearcon-23-3/feed/index.xml b/public/blog/tag/nearcon-23-3/feed/index.xml deleted file mode 100644 index b13c3fe45..000000000 --- a/public/blog/tag/nearcon-23-3/feed/index.xml +++ /dev/null @@ -1,576 +0,0 @@ - - - - NEARCON 23 Archives – NEAR Protocol - - /blog/tag/nearcon-23-3/ - - Fri, 10 Nov 2023 10:42:50 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEARCON 23 Archives – NEAR Protocol - /blog/tag/nearcon-23-3/ - 32 - 32 - - - NEARCON ‘23 Day Three: Shaping the Future of Decentralized Governance  - /blog/nearcon-23-day-three-shaping-the-future-of-decentralized-governance/ - - - Fri, 10 Nov 2023 08:09:16 +0000 - - - /?p=21078 - - NEARCON ’23’s grand finale is here, packed with groundbreaking sessions you won’t want to miss. It’s been a great ride …

    -

    The post NEARCON ‘23 Day Three: Shaping the Future of Decentralized Governance  appeared first on NEAR Protocol.

    -]]>
    - NEARCON ’23’s grand finale is here, packed with groundbreaking sessions you won’t want to miss. It’s been a great ride so far, with engaging sessions, a mind-blowing hackathon, and the chance to network in person with open web experts from all over the globe. Today’s agenda has some of the most impactful talks yet, so get ready to send NEARCON ‘23 out with a bang!

    - - - -

    Start with a coffee at 9:00 AM and enjoy breakfast at the venue with other attendees before diving into our final day of immersive sessions. By 10:45 AM, the curtain will lift on the main stage for NEARCON 23’s final foray into Web3 — including a special, surprise announcement from NEAR CEO Illia Polosukhin.
    Remember, you can stay connected throughout the day on Calimero Chat  — a private, decentralized comms built on the NEAR blockchain.
    *Note: There is no bag check or cloak room at any NEARCON venue

    - - - -

    Can’t miss sessions on Day Three

    - - - -

    What 2024 Looks Like for Decentralized Democracy (1:00 PM – 1:30 PM, Layer 1 Stage).

    - - - -

    Join us for a deep dive into the future of governance on NEAR, where the visionaries behind NEAR’s political framework dissect past triumphs and unfold the master plan for 2024. Hear from our panelists, including Joe Spano of ShardDog and Blaze from Cheddar.

    - - - -

    Special Announcement (12:00 PM – 12:30 PM, Layer 1 Stage). Don’t miss NEAR Co-founder and NEAR Foundation CEO Illia Polosukhin’s major announcement. When Illia speaks, the entire Web3 world listens, so grab a quick bite and head on over to the main stage for what’s sure to be Illia’s mic-drop moment of NEARCON ‘23.

    - - - -

    NEAR Governance Forum (11:05 AM – 12:00 PM, Layer 2 Stage). Curious about NEAR’s decentralized governance model? Get your questions answered by Alejandro Betancourt of the Transparency Commission and Cameron Dennis of Banyan Collective, with the conversation facilitated by Gus Friis of NEARWEEK.

    - - - -

    NEAR Campus: Unleashing the Potential of University Partnerships for DevHub (11:00 AM – 11:20 AM). NEAR DevHub’s Boris Polania will showcase the NEAR Campus’s role in revolutionizing developer engagement. Explore the relationship between NEAR and academia, and how NEAR Campus will serve as a touchpoint for global campuses in the future.

    - - - -

    Sensational speaker highlights

    - - - -

    Unveiling the Web3 BUILD Incubator Fellowship (11:20 AM – 11:30 AM, Block Zero Stage)

    - - - -

    Max Mizzi from Major League Hacking will introduce the BUILD Incubator Fellowship, an innovative collaboration with NEAR Horizon. Discover the inception, operation, and success stories of the program’s trailblazing summer cohort.

    - - - -

    It’s Honest Work: How DeFi Is Growing Up (11:30 AM – 12:00 PM, Layer 1 Stage),

    - - - -

    From ‘DeFi Summer’ to today, decentralized finance remains one of the most promising areas of crypto — and it’s inevitably maturing. Drop by as an incredible panel included Arjun Arora from Orderly Network, Mike Cahill of Douro Labs, and more chart recent developments that are reshaping DeFi’s landscape on NEAR and beyond.

    - - - -

    Aurora Unleashed: Igniting NEAR’s Potential (11:15 AM – 11:30 AM, Layer 1 Stage).

    - - - -

    Alex Shevchenko of Aurora Labs takes the spotlight to discuss Aurora’s impactful innovations within the NEAR ecosystem. Expect insights into Aurora’s network developments, Borealis infrastructure, and their cross-contract call SDK, all of which amplify NEAR’s technological prowess.

    - - - -

    IRL Hackathon grand finale and LX Factory party

    - - - -

    Judgment day is finally here, as winners of the IRL Hackathon will claim their awards on the Main Stage from 2:35 PM – 3:50 PM. Huge thanks to all who participated and submitted projects. Every hacker, coder, builder, and developer is what makes the NEAR ecosystem special and the NEAR Foundation looks forward to engaging each and every one in the future.

    - - - -

    Finally, NEARCON ‘23 is going out with a major bang at one of the most iconic Lisbon party venues — LX Factory. An epic bash brought to you by The Littles, it’s a going away soiree that every NEARCON ‘23 attendee simply can’t miss. Grab a drink, do some networking, and groove your night away as NEARCON ‘23 sails off into the Portuguese sunset. 

    - - - -

    A few important reminders

    - - - -

    Here are today’s venue hours:

    - - - -
      -
    • Armazem (Hacker HQ) closes at 12:30 PM.
    • -
    - - - -
      -
    • Garagem (Community HQ) closes at 5:30 immediately after the happy hour.
    • -
    - - - -
      -
    • Convento Do Beato Layer 2 Stage closes at 12:00 PM. The Layer 1 Stage and venue closes at 4:00 PM.
    • -
    - - - -
      -
    • Closing party at LX Factory (Fábrica) from 9:00 PM – 4:00 AM. Open to badge holders.
    • -
    - - - -

    Shoutout to Day Three sponsors

    - - - -

    Of course, this epic Day Three wouldn’t be possible without the support of todays’ generous and amazing sponsors:

    - - - -
      -
    • The Littles
    • - - - -
    • SailGP
    • -
    - - - -

    Day Three will be all about forging connections, gaining insights, and celebrating all that you and the collective NEAR ecosystem has accomplished not only over the past three days – but the entirety of 2023. So grab a coffee, head on over to the venue, and let’s make the final day of NEARCON ‘23 count towards making this the most iconic edition ever.

    -

    The post NEARCON ‘23 Day Three: Shaping the Future of Decentralized Governance  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEARCON ‘23 Day 2 Roundup: Web3’s Women Shine and Innovations Unfold - /blog/nearcon-23-day-2-roundup-web3s-women-shine-and-innovations-unfold/ - - - Thu, 09 Nov 2023 17:57:24 +0000 - - - /?p=21075 - - As the Lisbon sun dipped below the horizon, NEARCON ‘23’s second day came to a vibrant conclusion. The day was …

    -

    The post NEARCON ‘23 Day 2 Roundup: Web3’s Women Shine and Innovations Unfold appeared first on NEAR Protocol.

    -]]>
    - As the Lisbon sun dipped below the horizon, NEARCON ‘23’s second day came to a vibrant conclusion. The day was marked by a rich tapestry of dialogue and discovery, highlighting the profound impact of women in Web3 and the AI is NEAR track. The energy was palpable as attendees navigated through a day steeped in collaborative exploration. 

    - - - -

    Key announcements from Pyth Network and breakthroughs in identity solutions with idOS and Tangem Wallet underscored a day where the future of blockchain was not just imagined, but actively constructed.

    - - - -

    Remember, you can stay connected with other attendees through Calimero Chat — a private, decentralized comms built on the NEAR blockchain.

    - - - -

    *Note: There is no bag check or cloak room at any NEARCON venue

    - - - -

    Female open web trailblazers kick start Day Two

    - - - -

    Day 2 of NEARCON ‘23’s celebrated diversity and technical milestones, highlighting transformative initiatives and strategic expansions within the ecosystem.

    - - - -

    The “Women in Web3” brunch at NEARCON ‘23 spotlighted the vital contributions of women in blockchain, focusing on fostering inclusivity. Leaders in the space convened to discuss strategies for empowering women, emphasizing the NEAR Foundation’s commitment to diversity with initiatives like the Women in Web3 Changemakers list.

    - - - -

    Ecosystem highlights take center stage

    - - - -

    FractalID unveils idOS on NEAR

    - - - -

    FractalID is redefining Web3 identity with the launch of idOS on NEAR, providing users with unparalleled control over their digital identity. This pivotal development promises to enhance user sovereignty and compliance in dApp interactions, bolstering NEAR’s position as a leader in decentralized identity solutions.

    - - - -

    Pyth Network

    - - - -

    NEAR’s integration with the Pyth Network brings a wealth of real-time price feeds to its testnet, significantly enhancing the toolkit available to developers. This move, a year after Pyth’s Aurora integration, demonstrates NEAR’s dedication to equipping its platform with the data and tools required for leading-edge dApp development.

    - - - -

    Octopus Network restaking and IBC bridge

    - - - -

    As part of its Octopus 2.0 program, Octopus Network — built on NEAR Protocol — unveils $NEAR restaking for Ottochain launch in December. This initiative enhances validators’ rewards and bolsters appchain security, incentivizing $NEAR’s wider use and fostering equilibrium in the NEAR ecosystem.

    - - - -

    Octopus Network also introduced Adaptive IBC, bridging Cosmos and NEAR ecosystems for enhanced interoperability with Secret Network poised to be the first adopter. 

    - - - -

    Tangem Cold Wallet integrates NEAR Protocol

    - - - -

    The Tangem Wallet, renowned for its Swiss-made security and simplicity, now fully supports the NEAR Protocol, ensuring effortless self-custody for NEAR holders. This collaboration embodies NEAR’s commitment to making Web3 accessible, offering users a secure and straightforward way to manage their digital assets with confidence.

    - - - -

    Jump DeFi broadens DeFi accessibility on NEAR

    - - - -

    Jump DeFi has extended its decentralized finance platform to Telos, making strides toward widespread DeFi adoption. By integrating with NEAR Protocol, Jump DeFi simplifies user and developer engagement, streamlining access to a previously fragmented DeFi ecosystem with its all-in-one solution for core financial activities.

    - - - -

    MotoDEX accelerates on NEAR Blockchain

    - - - -

    MotoDEX, integrating with the NEAR blockchain, offers a thrilling motorcycle racing game directly on app stores. It caters to 13,000 daily players, blending the thrill of racing with the perks of blockchain tech. The game’s seamless Web3 integration ensures accessibility for all, fueling a new era of blockchain gaming.

    - - - -

    GeekPay rides high on NEAR Blockchain

    - - - -

    GeekPay also announced impressive growth with a $1M turnover, a quarter of which was on NEAR. GeekPay simplifies payroll for businesses like theirs. Its recent accolade includes a nod from the Tenity Incubation Program, affirming GeekPay’s pivotal role in the gig economy and future of work.

    - - - -

    DevHub’s bold new rebrand

    - - - -

    DevHub unveiled a fresh brand identity to resonate with its evolution into a thriving NEAR developer ecosystem. This rebranding is more than a visual facelift — it represents DevHub’s commitment to fostering innovation and supporting builders at every stage. Dive into the enhanced experience at neardevhub.org and join the ranks shaping the Open Web with NEAR.

    - - - -

    Key sessions and panels

    - - - -

    SK Telecom ports into the metaverse

    - - - -

    Sehyeon Oh from SK Telecom detailed the Korean company’s strategic foray into the open web, highlighting their collaboration with NEAR Foundation and plans for a Web3 wallet and NFT marketplace. SKT’s approach aims to fuse digital and tangible realms, from art NFTs to metaverse developments while community building with education and blockchain integration.

    - - - -

    FractalID unveils idOS on NEAR 

    - - - -

    Julian Leitloff from Fractal ID and Johan Salaï Bondioli of Pagoda introduced the idOS at NEARCON ‘23, a leap forward in Web3 identity, granting users control over their digital presence. This initiative is set to redefine the interaction landscape for dApp users, solidifying NEAR’s leadership in decentralized identity solutions.

    - - - -

    NEAR’s evolution from Nightshade to Starsight

    - - - -

    Bowen Wang from Pagoda offered a compelling overview of NEAR Protocol’s evolution, highlighting the advances in stateless validation and zero-knowledge technologies. Wang teased the upcoming Starsight project, promising a leap forward in blockchain’s usability, scalability, and decentralization in 2024.

    - - - -

    Illia Polosukhin on AI’s Role in NEAR’s Future

    - - - -

    NEAR co-founder and CEO Illia Polosukhin dove into the future of AI and its integration with blockchain. He emphasized AI’s potential to drive work and governance on NEAR, forecasting AI agents that execute tasks autonomously, enhancing efficiency within decentralized systems and contributing to the evolution of DAOs into truly autonomous organizations.

    - - - -

    Side events and networking

    - - - -

    As Day Two winds down, don’t forget to head on over to the Community HQ for the Movers and Shakers Happy Hour, sponsored by Glass and Moonbounce. Just a few steps down the cobbled Lisbon streets from HackerHQ, Movers and Shakers will be a great chance to sip some cocktails and learn about Glass, an innovative app bringing the adult beverage closer to brand enthusiasts on the NEAR blockchain.

    - - - -

    Looking ahead to Day Three

    - - - -

    Day Three of NEARCON ‘23 is your final opportunity to dive into immersive open web sessions starting at 10:45 AM, after doors open at 9 AM. The day will highlight the Hackathon’s brightest innovations with judging from 12:00 PM and the NEAR Pitch Competition and Hackathon Awards Ceremony from 2:35 PM to 3:50 PM on the Main Stage, showcasing top project pitches.

    - - - -

    NEARCON ‘23 then goes out with a massive bang at the Closing Party at the LX Factory, sponsored by The Littles. The bash begins at 9:00 PM, and will be a chance for attendees to unwind, network, and reflect on everything that was NEARCON ‘23. Not to mention dancing the night away in one of Lisbon’s most happening party venues.

    - - - -

    We hope you had a fantastic Day Two at NEARCON ‘23, with the best yet to come. Enjoy another buzzing evening in Lisbon and see you on Day Three!

    -

    The post NEARCON ‘23 Day 2 Roundup: Web3’s Women Shine and Innovations Unfold appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Get Ready for [REDACTED] at NEARCON ‘23 - /blog/get-ready-for-redacted-at-nearcon-23/ - - - Thu, 02 Nov 2023 14:39:45 +0000 - - - /?p=21032 - - NEARCON ‘23 is days away, and we’ve got a slate of exciting announcements and product releases, including ▆▆▆▆▆▆▆▆▆▆▆▆▆▆ and ▆▆▆▆▆▆▆▆▆▆.  …

    -

    The post Get Ready for [REDACTED] at NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - NEARCON ‘23 is days away, and we’ve got a slate of exciting announcements and product releases, including ▆▆▆▆▆▆▆▆▆▆▆▆▆▆ and ▆▆▆▆▆▆▆▆▆▆. 

    - - - -

    Let’s take a look at a [HEAVILY REDACTED] teaser of the major upcoming NEAR news. 

    - - - -

    November 8th, 2:00 pm GMT — Illia to announce ▆▆▆▆▆▆▆ !!!

    - - - -

    From the Main Stage, NEAR Co-founder Illia Polosukhin will take the stage to announce ▆▆▆▆▆▆▆▆▆▆. Illia will explain what the ▆▆▆▆▆▆▆▆▆▆  means for Web3 app developers building on NEAR. 

    - - - -

    November 9th, 2:50 pm GMT — NEAR Tasks to launch ▆▆ Marketplace

    - - - -

    At NEARCON ‘23, NEAR Tasks (formerly Satori), will launch its new ▆▆ Marketplace on NEAR to revolutionize the future of work. NEAR Tasks will redefine ▆▆▆▆▆▆ with ▆▆▆▆-centric innovation. 

    - - - -

    November 10th, 12:30pm GMT — Illia to unveil ▆▆▆▆▆▆▆ 

    - - - -

    Illia will take the stage again on Day 3 for yet another major announcement. He will talk about how NEAR Foundation and ▆▆▆▆▆▆ are teaming up to build and deploy ▆▆▆▆▆▆▆▆▆▆, which will make it easier for developers to create a more secure, interoperable Web3 ecosystem for an open web. 

    - - - -

    November 10th, 1:30 pm GMT —  NEAR Foundation and ▆▆▆▆▆▆ to announce new partnership

    - - - -

    NEAR Foundation and ▆▆▆▆▆▆ will announce a partnership to build a ▆▆▆▆▆▆▆▆▆▆▆▆▆▆, a first of its kind in Web3. The NEAR-▆▆▆▆ solution will power fast and inexpensive ▆▆-▆▆▆ transactions, enabling finality in seconds rather than minutes to days — a major improvement for anyone using ▆▆▆▆▆▆ scaling solutions. 

    - - - -

    Register for NEARCON and journey into the open web

    - - - -

    Want to get firsthand details on Illia’s  ▆▆▆▆▆▆▆▆▆▆ announcement , the unveiling of NEAR Foundation and ▆▆▆▆▆▆’s new collaboration, NEAR Tasks’s  ▆▆ Marketplace, and NEAR Foundation’s new ▆▆▆▆▆▆? Then NEARCON ‘23 is the place to be.

    - - - -

    If you still haven’t registered, then head over to the NEARCON registration page, and join the NEAR community for an iconic 4-day journey into the open web!

    -

    The post Get Ready for [REDACTED] at NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEARCON ’23: Developer, Founder, and Creative Talks You Shouldn’t Miss - /blog/nearcon-23-developer-founder-and-creative-talks-you-shouldnt-miss/ - - - Tue, 31 Oct 2023 19:39:29 +0000 - - - - - - /?p=21022 - - NEARCON ’23 in scenic Lisbon, Portugal is your go-to event for everything AI, the open web, and more. Whether you’re …

    -

    The post NEARCON ’23: Developer, Founder, and Creative Talks You Shouldn’t Miss appeared first on NEAR Protocol.

    -]]>
    - NEARCON ’23 in scenic Lisbon, Portugal is your go-to event for everything AI, the open web, and more. Whether you’re a developer, entrepreneur, or artist, there’s a session for you. Web3 regulatory aficionados, we’ve got you covered too (more on that later). 

    - - - -

    Here’s a rundown of sessions that are a must-see.

    - - - -

    Developer track: build better on NEAR

    - - - -

    NEAR: The Open Web Stack 

    - - - -

    NEAR co-founder Illia Polosuhin reveals game-changing updates for the NEAR ecosystem. A lot of new and exciting NEAR products and tools are in the works for developers. So, if you’re a dev, you won’t want to miss this talk from Illia. 

    - - - -

    Why Build Web3 Games 

    - - - -

    Hosted by PlayEmber’s Hugo Furneaux, this panel dissects the massive potential of gaming on the open web. Learn about player-owned economies and why you should consider NEAR for your next gaming project. An essential session for forward-thinking game developers.

    - - - -

    Unlocking NEAR Data 

    - - - -

    Data extraction got you puzzled? Pavel Kudinov, senior engineering manager at NEAR, will walk you through using SQL queries on NEAR BigQuery Datasets and the NEAR Query API to build and analyze. This is the toolkit you’ve been waiting for.

    - - - -

    Inside the BUILD Incubator 

    - - - -

    Will Russell, Michael Yu, and Max Mizzi from student hackathon league Major League Hacking take a deep dive into the BUILD Incubator Fellowship. Hear firsthand experiences and gather invaluable insights that could jump-start your open web development journey.

    - - - -

    Entrepreneurial track: jumpstart your journey

    - - - -

    Building Web3 Communities 

    - - - -

    This panel brings together experts from community building collective KryptoSeoul, decentralized identity project Galxe, NEAR DevHub, and Web incubator CryptoOracle Collective to discuss the art of fostering a vibrant, diverse community around any project.

    - - - -

    CryptoEconomics 101 

    - - - -

    Lisa Jy Tan, CEO of tokenomics consulting firm Economics Design, dives into the world of cryptoeconomics, helping you understand the fundamentals and real-world applications of economic principles, drivers, and incentives at play in the open web.

    - - - -

    Hiring Smart in Web3 

    - - - -

    Hiring in the open web is both exciting and fraught with potential landmines. Dan Eskow, founder of specialized Web3 talent agency Up Top, will share valuable tips on sourcing top talent, effective company branding, and red flags to look out for during the interview process.

    - - - -

    Funding Trends in Web3 

    - - - -

    A frontline perspective on open web investment from venture capital firms Accomplice VC, a_capital, RockawayX, and Generative Ventures. The expert VC panel will offer insights into funding trends and standout pitch decks to help founders stay ahead of the curve.

    - - - -

    Creative track: redefining art, marketing, and gaming

    - - - -

    Asia’s Impact on Web3 Gaming 

    - - - -

    This panel explores Asia’s key role in Web3 gaming, particularly Korea’s leadership in the space. Hear from Jay Hoonjai Lee, CEO of Vortex Gaming DAO, and NEAR Korea Hub’s general manager Scott Lee on what the entire blockchain gaming space can learn from Asia.

    - - - -

    Marketing in the Open Web 

    - - - -

    Learn how decentralization and the open web is changing marketing and branding from Lex B., co-founder of NEAR Studio, a creative agency dedicated to the NEAR ecosystem. Everything you need to know about marketing in the open web, including real-life case studies and successes.

    - - - -

    Advertising in Web3 

    - - - -

    Anjali Young from Collab.Land, an innovative project helping implement token-gated communities, discusses how Web3 is transforming the advertising landscape, allowing for more effective brand-customer engagement and immediate feedback.

    - - - -

    The Power of NFTs 

    - - - -

    Explore how NFTs are driving decentralized creativity, redefining loyalty, and reshaping cultural norms. Hear from the likes of Wilson Lee, co-founder of blockchain-based carnival app TheFunPass™, and Stipe Plejic, CEO of social NFT marketplace Endemic.

    - - - -

    NEARCON ‘23: get in on the action

    - - - -

    If you’re passionate about the transformative power of the open web, NEARCON ’23 is a can’t-miss conference. We’ve carefully curated speaker tracks and sessions to fuel your imagination and skills, whether you’re a developer, entrepreneur, or creative mind. And the policy-minded need not fret, there’s a special Regulatory Track chock full of insights about evolving legal frameworks, governance, and more. 

    - - - -

    With NEAR’s unique approach — super cheap, super fast, super secure — you’ll discover how the open web is solving real-world problems today.

    - - - -

    So why wait? Register for NEARCON ’23 now to secure your spot!

    - - - -

    Special offers are available for Ukrainians, students in Spain and Portugal, and hackathon registrants. Head over to those pages and register for your free NEARCON ‘23 pass!

    -

    The post NEARCON ’23: Developer, Founder, and Creative Talks You Shouldn’t Miss appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/nearcon-23-3/index.html b/public/blog/tag/nearcon-23-3/index.html deleted file mode 100644 index ea8100994..000000000 --- a/public/blog/tag/nearcon-23-3/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEARCON 23 Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/nearcon-23/feed/index.xml b/public/blog/tag/nearcon-23/feed/index.xml deleted file mode 100644 index e9bab22ce..000000000 --- a/public/blog/tag/nearcon-23/feed/index.xml +++ /dev/null @@ -1,1059 +0,0 @@ - - - - NEARCON ‘23 Archives – NEAR Protocol - - /blog/tag/nearcon-23/ - - Thu, 16 Nov 2023 08:51:37 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEARCON ‘23 Archives – NEAR Protocol - /blog/tag/nearcon-23/ - 32 - 32 - - - NEARCON ’23 Unwrapped: Lisbon Steps into the Open Web in Iconic Fashion - /blog/nearcon-23-unwrapped-lisbon-steps-into-the-open-web-in-iconic-fashion/ - - - Thu, 16 Nov 2023 13:00:00 +0000 - - - - - - /?p=21092 - - Over the course of three epic days, the NEAR ecosystem showed up and showed out to make NEARCON ‘23 the …

    -

    The post NEARCON ’23 Unwrapped: Lisbon Steps into the Open Web in Iconic Fashion appeared first on NEAR Protocol.

    -]]>
    - Over the course of three epic days, the NEAR ecosystem showed up and showed out to make NEARCON ‘23 the most iconic edition yet. Groundbreaking partnerships were announced, new bonds forged, and a new vision for AI and the open web was unveiled by some of the brightest minds in the blockchain business.

    - - - -

    “The open web is an internet where all people control their own assets, data, and power of governance,” remarked NEAR co-founder and newly minted CEO of NEAR Foundation, Illia Polosukhin, on Day One of NEARCON ‘23. “And that vision extends beyond NEAR to the entire space, with the B.O.S. acting as the single entry point to an open web.” 

    - - - -

    Illia’s remarks truly encapsulated the spirit of NEARCON ‘23, as innovative collaborations with the likes of Polygon and EigenLayer highlighted a cross-chain, multi-ecosystem future with NEAR enabling multiple key facets of tomorrow’s truly open web. 

    - - - -

    So ICYMI, here’s all the key happenings, hubbub, and highpoints of an iconic NEARCON ‘23.

    - - - -

    Partnerships, IRL Hackathon, and NCON make a splash

    - - - -
    - - - -

    Things started off with a bang before the doors of the Convento Do Beato in Lisbon even opened, with the debut of the NCON token. The first ever native NEARCON token, attendees could download the NEARCON app and collect NCON tokens by completing tasks, bounties, and viewing sessions throughout the event.

    - - - -

    NEARCON-goers could then redeem NCON tokens for swag or a bite from the various food trucks, or even send NCON to other attendees via a slick native wallet on the NEARCON app. All told, over 110,000 NCON tokens were distributed during the event, making it a smash hit amongst attendees.

    - - - -
    - - - -

    This year’s NEARCON also took place across three cool and contrasting venues: NEARCON HQ, Hacker HQ, and Community HQ, each providing a unique experience for those of varying interests. HackerHQ was popping in particular due to the three day IRL Hackathon. Held in a stunning seaview venue, the winners will be announced next week, so stay tuned.

    - - - -

    Once everyone settled in for Day One, the ecosystem was treated to a few major game-changing partnership announcements. Here’s a roundup of the major collabs that are already making an impact for NEAR builders, developers, and the community at large:

    - - - -

    NEAR releases the Data Availability Layer for ETH Rollups and Ethereum developers

    - - - -
    - -
    - - - -

    By far the biggest news of Day One was NEAR unveiling the NEAR Data Availability Layer (NEAR DA), offering robust, low-cost blockchain data to developers for modular open web development. NEAR DA will help developers reduce costs and enhance the reliability of rollups, while keeping the security of Ethereum. NEAR DA is a key part of tomorrow’s open web development stack, with early users including StarkNet, Caldera, Movement Labs, and others. 

    - - - -

    NEAR x EigenLayer streamline Ethereum

    - - - -
    - - - -

    NEAR Foundation announced its partnership with EigenLayer, which will speed  up transaction times and slashing costs on the Ethereum blockchain. The collaboration will introduce a fast finality layer to Ethereum rollups, boosting their efficiency and scalability. The fast finality layer showcases the strengths of NEAR’s technology while making the open web more usable.

    - - - -

    LayerZero brings interoperability to NEAR

    - - - -

    In other big news, LayerZero integrated with NEAR, bringing over 40 blockchain networks into the open web. Layer brings trustless cross-chain messaging into the fold, making NEAR a more versatile ecosystem. The announcement highlighted NEAR’s commitment to seamless communication across various blockchain networks.

    - - - -

    Day One highlights: bringing the open web vision to life

    - - - -
    - - - -

    While there were a ton of amazing sessions and panels on the first day — from open web gaming and sports to crypto economics — one of the major themes was how Illia would realize his vision for a truly open internet in his new role as CEO of the NEAR Foundation. With a renewed focus on developers in the ecosystem, it only makes sense for him to steer the ship.

    - - - -

    Piggybacking on Illia’s “NEAR: The Open Web Vision” keynote, new NEAR COO Chris Donovan made a case for the open web, while also sitting down to discuss Web3 regulatory issues with Coindesk’s Michael Casey. And in other developer tooling news, NEAR Data Availability (DA) was announced, giving developers low-cost access to modular, scalable blockchain data.

    - - - -

    Day Two highlights: the AI is NEAR track takes flight

    - - - -
    - - - -

    The second day of NEARCON ‘23 was perhaps the boldest to date, with an epic “AI is NEAR” speaker and programming track that was simply mind blowing. Things kicked off with sessions featuring thought leaders from the likes of Pantera Capital and NEAR Tasks, and heated up even more with NEAR co-founder Alex Skidanov’s talk on generative AI and the open web.

    - - - -

    Illia returned in the afternoon to discuss “AI on NEAR: The Future of Work and Governance,” painting a picture of how AI will impact the future of governance, work, asset ownership, and beyond. He was then joined by Mike Butcher of TechCrunch, with the two unpacking the intersection of AI, blockchain, and global policy.

    - - - -

    “AI has the potential to be a huge driver for productivity,” Illia explained. “AI agents, for example,  are redefining the future of work. They have the unique ability to manage transactions and resources on blockchain platforms, communicate with secure cryptographic verification, and act as autonomous entities on people’s behalf — and directly for their benefit.”

    - - - -

    The AI is NEAR track was capped off when Illia then joined Michael Casey for a Coindesk podcast, where the two dove as deep as one can imagine down the AI rabbit hole. In particular, Illia shared his experience, views, and predictions regarding AI, blockchain, and the open web – simply a must listen. (Stay tuned for the release of this Coindesk podcast with Illia and Michael.)

    - - - -

    Day Three highlights: governance and hackathon on stage

    - - - -
    - - - -

    Governance and current happenings with the NEAR Digital Collective (NDC) were front and center in a spirited Day Three. One of the most unique panels was the NEAR Governance Forum, featuring AVB from the Transparency Committee, Cameron Dennis from Banyan, and Blaze of Cheddar.

    - - - -

    All three gave their takes on what’s gone right — and wrong — with the NDC since its inception at last year’s NEARCON. And in a “Round Robin” format, the three fielded a variety of questions from the audience, some of whom were NDC members themselves. Blaze and AVB then joined NEAR’s Yadira Blocker in an afternoon session discussing Decentralized Democracy in 2024.

    - - - -

    The final season of NEARCON ‘23 featured presentations from the IRL Hackathon, where builders unveiled their work and ideas. Judges and panelists included Oleg Fomenko, CEO of Sweat Economy, with talented NEAR builders putting their best foot forward. They showcased some truly amazing ideas and tech, so you’ll want to keep your eyes peeled for the winners.

    - - - -

    And what’s Day Three of any NEARCON without a party? This year’s bash was held at the LX Factory, an enormous space where all attendees got their final chance to network, share ideas, and have a blast. The Littles sponsored the party, bringing an added element of excitement by setting up carnival games at the venue along with The Fun Pass to reward anyone who played.

    - - - -

    NEARCON ‘23: as iconic as it gets

    - - - -
    - - - -

    If you joined us in Lisbon, a huge thanks for making this year’s edition so fun, spectacular, and rewarding. If you weren’t able to attend, we sincerely hope to see you next year. From transformative partnerships to leading the Web3 pack in AI, NEARCON ‘23 showcased the passion, momentum, and ingenuity of the entire NEAR ecosystem.

    If you weren’t able to make it to Lisbon for NEARCON, don’t worry — you can still check out all of the talks. Visit NEAR Protocol’s YouTube page for the full livestreams from the Layer 1 and Layer 2 stages, or click the links below. 

    - - - - - - - -

    Anyone who built furiously at the HackerHQ or clinked a cocktail at the Glass Movers & Shakers Happy Hour will likely tell you something similar: that NEARCON ‘23 showed the importance of a truly open web — and how together we can all achieve it.

    -

    The post NEARCON ’23 Unwrapped: Lisbon Steps into the Open Web in Iconic Fashion appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEARCON ‘23 Day One: Major Announcements and Insightful Panels in Focus - /blog/nearcon-23-day-one-major-announcements-and-insightful-panels-in-focus/ - - - Wed, 08 Nov 2023 17:48:09 +0000 - - - - /?p=21061 - - As the sun set on Lisbon, the first day of an already iconic NEARCON ‘23 drew to a close, the …

    -

    The post NEARCON ‘23 Day One: Major Announcements and Insightful Panels in Focus appeared first on NEAR Protocol.

    -]]>
    - As the sun set on Lisbon, the first day of an already iconic NEARCON ‘23 drew to a close, the excitement and momentum of the entire ecosystem was on full display. The morning kicked off with insightful sessions on open web interoperability and AI, all leading up to NEAR co-founder and newly announced NEAR Foundation CEO Illia Polosukhin unveiling some exciting announcements.

    - - - -

    From regulatory talks to marketing in the open web, here’s everything that went down at Day One of NEARCON ‘23.

    - - - -

    Talks, panels and sessions highlight day one

    - - - -

    NEAR: The Open Web Vision
    Illia Polosukhin, NEAR co-founder, delivered an inspiring session on his vision for the open web, sharing NEAR’s strategic direction and upcoming enhancements. His talk illuminated the path forward for the ecosystem, including new initiatives and partnerships in areas like account abstraction and NEAR’s role as the main portal to the open web.

    - - - -

    Regulating the Open Web: Chris Donovan and Michael Casey
    Chris Donovan, COO of NEAR Foundation, and Michael Casey, Chief Content Officer at CoinDesk, engaged in a riveting dialogue about the intersection of open web philosophies and regulation. They unpacked the complexities of fostering innovation within a framework that ensures inclusivity, transparency, and community governance.

    - - - -

    Innovations in AI, Account Abstraction, and NFTs Today
    Nate Geier, CEO of Mintbase, took attendees on a deep dive into the evolving realms of AI, account abstraction, and the burgeoning NFT landscape. His insights provided a closer look at how these technologies interplay to shape a user-centric NFT ecosystem and finding product market fit for NFT projects.

    - - - -

    Marketing Through Web3 Mechanisms at DevHub and Beyond
    Joe Spano of ShardDog highlighted the transformative power of open web mechanisms in the marketing domain. He discussed how decentralized approaches are reshaping brand strategies, offering businesses a novel way to engage with their audiences while retaining user privacy and control.

    - - - -

    Open Brand: Unlocking the Power of Brand to Accelerate Growth

    - - - -

    One of the biggest challenges for decentralized projects and founders is developing a powerful, cohesive brand. Tom Munckton, head of design at well-known branding agency Fold7, joined NEAR Foundation CMO Jack Collier in a fireside chat, where the two dove into NEAR’s rebrand as a case study for any open web project.

    - - - -

    Recap of major announcements

    - - - -

    The crowd at NEARCON ‘23 was buzzing with anticipation as Illia took the stage to kick off the afternoon sessions, and he didn’t disappoint, unveiling a number of key announcements that will drive NEAR’s vision of the open web into the future. 

    - - - -

    NEAR Data Availability (DA)

    - - - -

    Perhaps the biggest announcement of the day was Illia lifting the curtain on NEAR DA, offering Ethereum developers a low-cost, secure data availability layer. NEAR DA opens the door for enhanced modular blockchain solutions, ensuring scalability and cost-efficiency for developers in the NEAR ecosystem and beyond.

    - - - -

    Polygon zkWASM

    - - - -

    Illia also spotlighted a new NEAR and Polygon Labs partnership, zkWASM, which fuses zero-knowledge proofs with Web Assembly (WASM) for enhanced blockchain scalability and decentralization. This exciting research initiative will pave the way for greater trustless interoperability across the open web, including between NEAR and the Ethereum ecosystem.

    - - - -

    Coin98 Decentralized Dapp Store 

    - - - -

    Coin98’s new decentralized app store, leveraging NEAR’s Blockchain Operating System (B.O.S), will empower its 7 million users to access diverse apps across key Ethereum Layer-2 ecosystems. The user-friendly platform will enhance dApp discoverability, streamlining the open web experience within a single, decentralized interface.

    - - - -

    Ecosystem announcements

    - - - -

    And the momentum didn’t stop there, with a couple of key ecosystem announcements coming to the forefront during Day One.

    - - - -

    Tekuno spurs open web adoption

    - - - -

    Tekuno has sparked a surge in NEAR’s ecosystem by activating over 27,000 new wallets since March 2023. This NEAR BAAS platform, leveraging NFTs to gamify real-world experiences, has garnered attention with collaborations like Mastercard, showcasing NEAR’s growing appeal and Tekuno’s innovative impact.

    - - - -

    Mintbase empowers NEAR builders

    - - - -

    Mintbase, in partnership with NEAR, has launched its 2023 cohort to propel the NEAR ecosystem. The initiative aims to empower developers with essential open web development tools and has earmarked funding for innovative projects that contribute open-source solutions, driving forward the creation and adoption of decentralized applications.

    - - - -

    Side events and networking success 

    - - - -

    The day concluded with a couple of amazing side events where networking, brainstorming, and fun all came together. The final speaker session led right into the SailGP Happy Hour at the SailGP Lounge directly at the venue, giving NEARCON-goers a chance to unwind and socialize right away.

    - - - -

    From there, things lead into the Opening Night Party, Sponsored by Cosmose and BitGo, at the Pavilhão Carlos Lopes. It’ll be a great chance to party until midnight with fellow builders, founders, and open web enthusiasts. Between the Opening Night party and SailGP Happy Hour, Day One’s social activities showcase the energy and enthusiasm of the entire ecosystem.

    - - - -

    A stellar NEARCON Day Two agenda around the corner

    - - - -

    As NEARCON ’23’s Day Two swiftly approaches, attendees can look forward to a plethora of enriching talks and panels, including deep dives into blockchain’s societal impacts and the latest in open web advancements. 

    - - - -

    Additionally, the Women of Web3 Brunch and Founders Forum Programming kick off at 8:30 AM, offering insights on diversity, equity, and open web building success. And if you’re participating in the Hackathon, make sure your project is submitted by the deadline.

    - - - -

    Thanks to everyone who attended Day One, and if you weren’t able to attend, rest assured that it’s just the beginning of a NEARCON ‘23 that will only grow to be more iconic over the next few days.

    -

    The post NEARCON ‘23 Day One: Major Announcements and Insightful Panels in Focus appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEARCON ‘23 Lifts Off: Start Your Journey into the Open Web - /blog/nearcon-23-lifts-off-start-your-journey-into-the-open-web/ - - - Wed, 08 Nov 2023 08:00:00 +0000 - - - /?p=21052 - - Lisbon is about to light up as NEARCON ‘23 kicks off in the heart of the city. The stars are …

    -

    The post NEARCON ‘23 Lifts Off: Start Your Journey into the Open Web appeared first on NEAR Protocol.

    -]]>
    - Lisbon is about to light up as NEARCON ‘23 kicks off in the heart of the city. The stars are aligned for Day One to kick things off in spectacular fashion with a wide array of sessions, speakers, and activities you won’t want to miss.

    - - - -

    Doors open at 9:00 AM for breakfast, so make sure to head on over bright an early, grab a bite with your fellow NEARCON-goers. And stay connected throughout the conference with Calimero Chat for private, decentralized comms on the NEAR blockchain.

    - - - -

    So start off the most iconic NEARCON yet and catch some of the most intriguing and impactful happenings on what promises to be an epic first day of NEARCON ‘23.

    - - - -

    Can’t miss speaker sessions 

    - - - -

    Speaker stages ramp up at 10:45 AM until 5:30 PM, so set your alarms for an invigorating start to NEARCON ‘23 with sessions that promise to shape your understanding of the open web and the NEAR ecosystem.

    - - - -
      -
    • NEAR: The Open Web Stack (2:00 PM – 2:30 PM at Layer 1 Stage). Join Illia Polosukhin, CEO of NEAR Foundation and NEAR co-founder, as he shares his strategic vision on what’s next for the NEAR ecosystem.
    • - - - -
    • Regulating the Open Web (1:40 PM – 2:00 PM, Layer 1 Stage). Michael Casey from CoinDesk and NEAR Foundation COO Chris Donovan take a forward-thinking look at regulatory headwinds and regional approaches to open web regulations.
    • - - - -
    • Innovations in AI, Account Abstraction, and NFTs Today (3:00PM – 3:15 PM, Layer 2 stage). If you’re into the intersection of AI and NFTs, Nate Grier of Mintbase’s talk is one you won’t want to miss.
    • - - - -
    • Marketing Through Web3 Mechanisms at DevHub and Beyond (4:15 PM – 4:30 PM,
    • -
    - - - -

    Block Zero Stage). Shardog’s Joe Spano shares how the open web provides unique opportunities to create relationships while allowing users to retain control and privacy.

    - - - -

    More speaker highlights

    - - - -
      -
    • The Interop Future (11:30 AM – 12:00PM at Layer 1 Stage). An in-depth panel including Aurora founder Alex Shevchenko, and Mariano Sorgente of a16z will dive into  NEAR’s critical role in driving open web interoperability.
    • - - - -
    • Unstore Your Data for the AI Revolution (11:20 AM – 11:40AM at Block Zero Stage). Don’t miss Jonathan Bryce and Polina Aladina from OnMachina as they delve into the future of data and AI, exploring new ways of working with unstructured data.
    • - - - -
    • Anjali Young’s Web3 Advertising Revolution (1:15 PM – 1:30 PM, Layer 2 Stage). Dive into the world of advertising and the open web with Anjali Young from Collab.Land. She’ll illustrate how Web3 is redefining brand-customer relationships through community engagement, NFTs, and token-gated communities.
    • - - - -
    • Richard Muirhead’s Vision of the Open Economy (4:30PM – 4:45 PM, Layer 1 Stage). Fabric Ventures’ Richard Muirhead presents a compelling vision of 2023’s open economy, discussing the profound impact of token economics and the massive impact of AI on decentralized economies.
    • -
    - - - -

    Conclude your day enriched with insights from these thought leaders of the open web, and get revved up for the evening networking and festivities.

    - - - -

    Hackathon and HZN1 in full force

    - - - -

    There’s also tons of activity for builders, founders, and developers during Day One. Things kick off at 9:00AM with the all day HZ1 Retreat for Founders. It’s an invite-only event so if you’re on the list, get ready for a full day of jumpstarting your vision supported by the best open web experts until 5:00PM.

    - - - -

    And then there’s what promises to be an epic Hackathon. Make sure you’re registered, submit your projects, and join your fellow builders over at the Hacker HQ. Get the full low-down over at the official NEARCON ‘23 Hackathon webpage, and kick things off with a full day of hacking and B.O.S building.

    - - - -

    Finally, there’s the invite-only Validator Session at Hacker HQ from 1:00-4:00PM, so if you’re registered for that don’t forget to check it out and participate.

    - - - -

    Must attend side events

    - - - -
      -
    • SailGP Happy Hour (5:45 – 7:00 PM, SailGP Lounge, Layer 2 Stage): Wind down from a dynamic day of sessions and celebrate the community spirit of NEARCON ‘23 with one of the pioneers of Web3 and fan engagement..
    • - - - -
    • Opening Night Party (8:00 PM, Pavilhão Carlos Lopes): Don’t miss Day One’s biggest networking event, sponsored by Cosmose AI and BitGo, where the energy of NEARCON ‘23 will be on full display under the Lisbon stars.
    • -
    - - - -

    Shout out to the Day One sponsors

    - - - -

    A heartfelt thanks to our sponsors that highlighted Day One of NEARCON ‘23:

    - - - -
      -
    • SailGP
    • - - - -
    • BitGo
    • - - - -
    • Cosmose AI
    • - - - -
    • PlayEmber
    • - - - -
    • Aurora Labs
    • -
    - - - -

    Day One of NEARCON promises to be an amazing kick off to an iconic gathering of minds, builders, and creators in the open web. From interoperability and cryptonomics to drinks and brainstorming well into the night, make sure to mark your calendars for all of the notable speakers and sessions that will make Day One a simply can’t miss.

    -

    The post NEARCON ‘23 Lifts Off: Start Your Journey into the Open Web appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Introducing NCON and How to Use It at NEARCON ‘23 - /blog/introducing-ncon-and-how-to-use-it-at-nearcon-23/ - - - Mon, 06 Nov 2023 22:16:19 +0000 - - - - /?p=21042 - - Hello NEARians, By now many of you are in or are en route to the magical city of Lisbon for …

    -

    The post Introducing NCON and How to Use It at NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - Hello NEARians,

    - - - -

    By now many of you are in or are en route to the magical city of Lisbon for NEARCON23! The amount of alpha dropping this week will have you weak in your knees. It’s been our mission to bring you an event that puts Web3 experiences at the forefront of NEARCON. Even better when we partner with our Community to bring you a truly social experience elevating your journeys throughout NEARCON. This year NCON makes its big debut! 

    - - - -

    What is NCON? 

    - - - -

    The NEAR Foundation has partnered with Jutsu, Keypom, and Veriken to create an exciting experience for you: the NCON token — an event experience built on B.O.S. NCON embodies the essence of the open web. An open web where we transact with each other on a peer to peer network. 

    - - - -

    Interacting with sponsors, attending content sessions, paying for your lunch, will be part of the NCON experience. As you complete NCON Bounties (see the full list below), you’ll be rewarded NCON which can be redeemed for swag, lunches, and other goodies during NEARCON. 

    - - - -

    When you check in at registration you will automatically receive 100 NCON — enough to buy lunch for 3 days and 1 piece of swag. Complete Bounties to earn more NCON and maximize your NEARCON experience. At the end of NEARCON, the top 3 NCON redeemers will receive a free trip to NEARCON24. Visit the helpdesk to verify your Bounty completions and get dropped NCON. 

    - - - -

    Good luck and “happy bounting”!

    - - - -

    *NCON exists for the purposes of NEARCON and NCON holds no real financial value beyond the event. Terms and conditions apply

    - - - -

    NCON Bounties to complete

    - - - -
    BOUNTYNCON REWARD
    Ticket Claim (done at registration)100.00
    We’re dropping various amounts of NCON during sessions, roundtables, firesides, panels and keynotes. The more sessions you join, the higher chance for more NCON!1.00 – 10.00
    Take a picture with the Opening Ceremony special guest and tweet “FOUNDERS, DEVELOPERS, BUILDERS #NEARCON2023”20.00
    Early Bird Drops (arrive to NEARCON or Hacker HQs between 9am and 10:30am)5.00
    Visit all three venues (tweet pictures of each venue and #NEARCON2023)5.00
    Upvote apps in the B.O.S. App Library 5.00
    Attend one of the Founders Forum sessions 2.00
    Complete the Shard Dog Engage-a-thon2.00
    Submit Pagoda User Research Survey2.00
    Shoutout your favorite thing on NEARCON Twitter #NEARCON20232.00
    Submit a Hackathon Project40.00
    Visit the B.O.S. Booth5.00
    Visit the hacker help desk and get help on your project (or just get your NCON Drop)2.00
    Sponsor BountiesVaries
    Glass – Sign up for GLASS at www.glass.fun/signup, and tag us (@glassdotfun) in a tweet about your favorite thing you’ve eaten or drank so far at NEARCON!5.00
    Aurora – Visit Aurora booth, talk to Armand or Slava, tweet “Big Alpha coming soon on @auroraisnear” without a spoiler.2.00
    Proximity – Attend a talk featuring a Proximity team member. Post on X and tag @proximityfi2.00
    Proximity – Try out these B.O.S.-powered gateways for L2s and share your thoughts on X: Polygon zkEVM Interactive App Dashboard, Mantle Ecosystem Gateway, “B.O.S.” Store on the Coin98 Super App.20.00
    Mintbase – Minsta your NEARCON moments and earn NCON 🤳🏻
    ▾ Go to https://minsta.mintbase.xyz/
    ▾ Take a photo and mint it as a NFT
    8.00
    Octopus – Visit us at the Octopus Network booth and tweet a picture at the booth with “Otto” tagging @oct_network and #NEARCON. 2.00
    Octopus – Interact with Octopus Network on mainnet.oct.network, in forum at forum.oct.network or at Octopus DAO on AstroDAO for a 5x multiplier bonus!10.00
    Calimero – Log in to Calimero Chat, the official chat of NEARCON, and send an epic meme! The funnier your meme, the more NCON you score! Claim them at the Calimero booth.2.00 – 5.00
    The Littles -1. Visit TheFunPass booth2. Participate in their Stick Catcher experience.2.00
    NEAR Mobile – Publish a tweet describing what you like more about @NEARMobile_app- Download NEAR Mobile (https://nearmobile.app/) and give us a review on Google Play or App Store- Follow us on Twitter (@NEARMobile_app), join our Telegram (https://t.me/NEARMobile) and subscribe to YT (@NEARMobileWallet).2.00
    NEAR Balkans – NEAR Lisbon Adventure: Collect all flags at the NEACON booths!2.00
    NEAR Balkans – POAP: Find the POAP QR code and prove your attendance at NEARCON with the Tekuno PODs!2.00
    SailGP – SailGP’s NEARcon Scavenger Hunt: Download the SailGP app and join our fan loyalty program, The Dock. Then, set off to explore NEARcon’s three venues, hunting down not one, not two, but SEVEN SailGP QR codes. Scan all seven codes using the SailGP app to snag your exclusive SailGP x NEARcon NFT. Once you’ve got your hands on it, head over to the SailGP booth, present your collectible, and get in on the action to win daily prizes on top of NCON!5.00
    - - - -

    How to redeem your NCON

    - - - -
    RedeemableNCON PRICE
    LUNCH (NEARCON and HACKER HQs)15 per visit
    White t-shirt20.00
    Black t-shirt20.00
    Green t-shirt20.00
    Cream hoodie50.00
    Black hoodie50.00
    Windbreaker50.00
    Cream hat15.00
    Black hat15.00
    Water bottle10.00
    Duffle bag50.00
    Tangem Wallet V140
    Tangem Wallet V240
    Bottle Openers5
    Early Closing Party Access50
    Horizon Credits for Founders30
    Top 3 NCON Redeemers will receive a free trip to NEARCNO24!—–
    - - - -

    -

    The post Introducing NCON and How to Use It at NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Why NEARCON is the Must-See Global Web3 Event of 2023 - /blog/why-nearcon-is-the-must-see-global-web3-event-of-2023/ - - - Wed, 01 Nov 2023 16:44:59 +0000 - - - /?p=21025 - - Just less than a week until Lisbon rumbles as the epicenter of the NEAR ecosystem. Step into the open web …

    -

    The post Why NEARCON is the Must-See Global Web3 Event of 2023 appeared first on NEAR Protocol.

    -]]>
    - Just less than a week until Lisbon rumbles as the epicenter of the NEAR ecosystem. Step into the open web at NEARCON ‘23 across three different stunning venues, with the Convento Do Beato being the main hub for things like  founder and builder talks. Rua Pereira will pop off with creative and community action, and hardcore dev building will be going down at the Hacker HQ.

    - - - -

    Don’t miss what’s next in NEAR’s vision for an open web that’s scalable, user-friendly, and secure. NEAR has grown to over 30 million active accounts and over 1,000 projects, and NEARCON ‘23 will showcase all these ecosystem successes, along with a slate of brand new product and ecosystem announcements.

    - - - -

    Here’s exactly why you’ll want to be in Lisbon starting on November 7th.

    - - - -

    A track for everyone at NEARCON ‘23

    - - - -

    This year’s edition promises to be even more iconic then the last, with diverse tracks for any open web enthusiast, along with a melting pot of cultural and social activities to spice up the nights — Portuguese style.

    - - - -

    No matter who you are, one of these tracks is likely tailor made for your interests:

    - - - -
      -
    • Developers: Sharpen your skills in open web technology with hands-on workshops and coding sessions. This is your chance to get a first-hand look at the newest innovations in the blockchain space.
    • -
    - - - -
      -
    • Entrepreneurs: Listen to industry leaders as they offer game-changing insights, actionable strategies, and practical advice you need to transform your vision into the next unicorn startup.
    • -
    - - - -
      -
    • Creatives: Explore how blockchain technology can revolutionize art, marketing, and beyond. You’ll walk away with new perspectives on how to infuse blockchain into your creative process.
    • -
    - - - -
      -
    • Regulators: Blockchain regulations can seem like a daunting maze of laws and policies. Get the low-down on best practices, legal frameworks, and the future of blockchain regulation from experts in the field.
    • -
    - - - -

    Hackathons, bounty rewards, and AI at the bleeding edge

    - - - -

    If you’re a developer, fling yourself into an intense 48-hour NEARCON hackathon where you’ll get the chance to build next-level apps for NEAR and potentially see your project in the spotlight. Developers can also earn NCON tokens through bounties, redeemable for perks from food to merch. Also, don’t miss the much anticipated “AI is NEAR” track led by AI and machine learning OGs Illia Polosukhin and Alex Skidanov, exploring where AI meets the Open Web.

    - - - -

    So whether you’re an AI head who craves the latest insights from the baddest machine learning experts or a curious founder who delights in brainstorming over a local merlot at one of the many super cool side events, NEARCON ‘23 is sure to be memorable and valuable.

    - - - -

    With tracks tailored to suit every interest, ecosystem milestones to celebrate, and a hackathon that brings the brightest minds together, NEARCON ‘23 is the can’t miss event of the year for anyone curious, passionate (or both) about what’s next for the  open web.

    - - - -

    So what are you waiting for? Sign up for NEARCON ’23 now to secure your spot!
    And let’s not forget some special treatment is in store for Ukrainians, students in Spain and Portugal, and hackathon registrants. All of the above can head over to those pages and register for a totally free NEARCON ‘23 pass!

    - - - -

    -

    The post Why NEARCON is the Must-See Global Web3 Event of 2023 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Call for Founders and Developers to Qualify Your B.O.S Apps Before NEARCON ‘23  - /blog/call-for-founders-and-developers-to-qualify-your-b-o-s-apps-before-nearcon-23/ - - - Mon, 30 Oct 2023 16:00:00 +0000 - - - - /?p=21013 - - Dear NEAR B.O.S Developer Community,  This week, the Pagoda product team launched the App Library to help B.O.S founders and …

    -

    The post Call for Founders and Developers to Qualify Your B.O.S Apps Before NEARCON ‘23  appeared first on NEAR Protocol.

    -]]>
    - Dear NEAR B.O.S Developer Community, 

    - - - -

    This week, the Pagoda product team launched the App Library to help B.O.S founders and developers showcase and promote their apps. With over 200 applications powered by B.O.S and more than 11,000 components now in the ecosystem, the App Library is a page on near.org designed to help users and community members find your applications and promote greater usage across the NEAR ecosystem. 

    - - - -

    The App Upvoting Event: NCON Bounty

    - - - -

    To find the first group of featured apps on App Library, we are launching the App Upvoting Event as a NCON Bounty to invite all NEARCON attendees to upvote and decide who gets featured! 

    - - - -

    “NCON Bounties” is a Web3 gamified event experience for attendees to engage throughout the event. Attendees will earn NCON by completing Bounties and have the option to redeem NCON for food, merchandise, and more. Participants who decide to complete this special NCON Bounties experience will also help select the first group of featured apps in the B.O.S. App Library. 

    - - - - - - - -

    To ensure your dApp shines during this event, here’s what you need to do. The following steps can be be found in the B.O.S interface for those who want to participate — simply go to the Metadata page of your app and follow the instructions below:

    - - - -
      -
    1. Create a Captivating Description
    2. -
    - - - -

    Craft a compelling introduction to your dApp. Highlight its unique features and value proposition. Pro tip: Add screenshots to make your dApp visually appealing and easy to understand. (Description is required!)

    - - - -
      -
    1. Tag Your App
    2. -
    - - - -

    First, make sure to tag the component that holds the entry to your project experience as App. Then, choose the category that best represents your dApp—Earn, Play, Develop, Engage. (Choosing one of these four categories is required! If you applied more than one of these four tags, then we will only use the latest one you applied.) Add additional tags for improved discoverability. Make it easy for users to find and appreciate your work.

    - - - -

    (These categories are suggested from research around users’ needs, broken down by categories and industry app store benchmarks. Check near.org/applications on how these categories are currently being used)

    - - - -
      -
    1. Spread the Word
    2. -
    - - - -

    It’s time to promote! Rally your community, spread the news across your networks, and encourage users to like and engage with your dApp. The more upvotes your app gets, the greater your chances of securing a top spot.

    - - - -

    Why Participate?

    - - - -

    The App Library isn’t just a catalog — it’s an interactive platform that spotlights the capabilities of the NEAR B.O.S. It will become the most visited page on near.org and serves as a gateway to the NEAR Ecosystem. By participating, you have the chance to feature prominently on the App Library and the NEAR homepage for the next three months, gaining exposure and recognition across the NEAR ecosystem and beyond.

    - - - -

    What’s the Payoff? 

    - - - -

    Your active participation can lead to significant rewards:

    - - - -
      -
    • Top 8 Featured dApps
    • -
    - - - -

    The dApps with the highest number of upvotes from this event will be showcased prominently on the landing page of the App Library for the next three months, putting your creation on the most visited page on near.org.

    - - - -
      -
    • Category Leaders 
    • -
    - - - -

    The top 4 dApps in each category will be prominently featured on category pages, such as Earn, Play, Develop, and Engage. This targeted exposure aligns with the core needs and use cases of the diverse NEAR user base.

    - - - -

    What’s Next? 

    - - - -
      -
    • Upvote Button Enabled 2 days Before NEARCON
    • -
    - - - -

    2 days before NEARCON, you will see an upvote button appear on the details pages of your qualified Apps. Any users who have an account on near.org can now send their support by hitting that upvote button. This upvote button will be disabled two days after NEARCON, and the total number of upvotes you received in the event will be displayed for 6 months on your details page as your participation badge. 

    - - - -
      -
    • NEARCON attendees will be incentivized to engage with App Upvoting by earning NCON
    • -
    - - - -

    QR code and event posters will be promoted at the NEARCON venues to encourage them to complete this Bounty. In addition, this Bounty will be part of the NCON product for NEARCON participants to earn more NCON, so we will make sure your dApps get plenty of exposure. 

    - - - -

    Event Timeline Summary

    - - - -
      -
    • October 27th — Submit your App for Qualification. App Upvoting Bounty Event Page made available on near.org. Qualified Apps will be Fetched (Qualified Apps will be fetched continuously on one-hour intervals throughout the NEARCON event through November 13th).
    • - - - -
    • November 3rd — Upvote button enabled + counters started.
    • - - - -
    • November 13th — Upvote disabled + results calculated.
    • - - - -
    • November 17th — Results display + feature apps updated on main App Library page.
    • -
    - - - -

    The primary goal of the App Library is to celebrate the creativity and efforts of NEAR developers and founders. To increase visibility, boost engagement, and get valuable feedback from the whole NEAR community on your app, make sure to register your apps as qualified and participate in the App Upvoting NCON Bounty

    -

    The post Call for Founders and Developers to Qualify Your B.O.S Apps Before NEARCON ‘23  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Meet the Builders of the Open Web: Top Speakers at NEARCON ’23 - /blog/meet-the-builders-of-the-open-web-top-speakers-at-nearcon-23/ - - - Thu, 19 Oct 2023 18:33:00 +0000 - - - - - /?p=20989 - - If you thought last year’s NEARCON was epic, then wait until you see what’s in store for NEARCON ’23 in …

    -

    The post Meet the Builders of the Open Web: Top Speakers at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - If you thought last year’s NEARCON was epic, then wait until you see what’s in store for NEARCON ’23 in Lisbon, kicking off on November 7th. From deep dives into the open web to insightful sessions featuring global leaders in blockchain and the open web, here’s the inside scoop on what to expect at this year’s iconic edition.

    - - - -

    What awaits you at NEARCON ’23

    - - - -

    NEARCON ’23 is set to be a smorgasbord of innovation and collaboration. Taking place across three venues in Lisbon, including the historic Convento Do Beato, and spanning four days, NEARCON ‘23 attendees will have access to an array of exciting opportunities. From enlightening talks on AI and Web3’s future to hands-on developer hackathons, there’s something for everyone.

    - - - -

    You also won’t want to miss exclusive networking sessions that connect you with NEAR and multi-chain enthusiasts and projects from around the globe. Attendees also get a firsthand experience with building on the Blockchain Operating System (B.O.S.).

    - - - -

    Meet the Big Brains of NEARCON ’23

    - - - -

    There’s an incredible lineup of speakers and thought leaders scheduled for this year’s edition of NEARCON. Here’s a rundown of some of top names you’ll on various stages, panels and sessions:

    - - - -
      -
    • Mitchell Amador: Founder and CEO of Immunefi. Mitchell is a leading voice in blockchain security and will explore how incentivized bounties enhance security.
    • - - - -
    • James Young: The Co-founder and CCO of Collab.Land will delve into the power of tokenized communities, from governance to engagement.
    • - - - -
    • Samantha Bohbot: Chief Growth Officer at RockawayX. An expert in strategic growth, Samantha will share essential tips for project scalability.
    • - - - -
    • Se Hyun Oh: SVP at SK Telecom. Expect insights into the convergence of telecom, AI, and the open web.
    • - - - -
    • Michael Casey: Chief Content Officer at CoinDesk. Michael will dissect the evolving narratives around cryptocurrency and its impact on the traditional financial sector.
    • - - - -
    • Richard Muirhead: Managing Partner at Fabric Ventures. Hear a venture capitalist’s perspective on what makes a blockchain project investable.
    • - - - -
    • Oleg Fomenko: Co-founder of Sweat Economy. Join the discussion on how blockchain is revolutionizing health and fitness via Move-to-Earn.
    • - - - -
    • Nicolai Reinbold: Global Head of Expansion and Innovation at CV Labs. Nicolai will cover blockchain innovation hubs and their role in nurturing early-stage startups.
    • - - - -
    • Teana Baker-Taylor: Circle’s VP of Policy and Regulatory Strategy for the EU/UK. She’ll address the regulatory landscape surrounding blockchain and cryptocurrencies.
    • - - - -
    • Joy Macknight: The editor at The Banker will offer an overview of how the open web and blockchain are disrupting traditional banking systems.
      Check out the complete list of NEARCON 23′ Speakers, full of founders, builders, VCs, and other open web innovators.
    • -
    - - - -

    Maximizing your NEARCON ’23 experience

    - - - -

    While the speakers are a definite draw, NEARCON ’23 is more than just speaker sessions. You can also join the NEARCON IRL Hackathon where developers will have the chance to build directly on the B.O.S and compete for over $140,000 in prizes. In case you didn’t already know, NEARCON is free for hackers participating in the hackathon! At NEARCON ‘23, there’s something for just about everyone.

    - - - -

    Four Distinct Paths to Explore at NEARCON ’23

    - - - -
      -
    • Developers: Engage in technical workshops and learn from the best in the business. These sessions are designed to meet you at any point in your open web journey.
    • - - - -
    • Entrepreneurs: Explore how the open web can revolutionize the way businesses connect and engage with users through innovative products and solutions.
    • - - - -
    • Creators: Discover how the open web can disrupt traditional systems, offering more equitable platforms for creators to get discovered and fairly compensated.
    • - - - -
    • Regulators: Stay up-to-date with the evolving regulations and policies that are shaping the open web, keeping you ahead of the curve.
    • -
    - - - -

    And don’t forget the networking opportunities, where you’ll get a chance to collaborate and engage in exciting conversations with NEAR community members from around the world.

    - - - -

    Don’t miss the future at NEARCON ’23

    - - - -

    Your chance to explore the entire NEAR ecosystem and the B.O.S is right around the corner. So, come play a part in driving the open web towards mass adoption. And with General Admission ticket prices still available, NEARCON ‘23 is still a steal for anyone interested in helping shape the future of blockchain and decentralization.

    - - - -

    So what are you waiting for? Register for NEARCON ’23 to secure your spot today. And if you’re a Ukrainian living in Portugal, or a student in Portugal or Spain, click those links for more information on how to register and attend NEARCON ‘23 in Lisbon for absolutely free!

    -

    The post Meet the Builders of the Open Web: Top Speakers at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Унікальна можливість для українців: Безкоштовні квитки на NEARCON ‘23 - /blog/%d1%83%d0%bd%d1%96%d0%ba%d0%b0%d0%bb%d1%8c%d0%bd%d0%b0-%d0%bc%d0%be%d0%b6%d0%bb%d0%b8%d0%b2%d1%96%d1%81%d1%82%d1%8c-%d0%b4%d0%bb%d1%8f-%d1%83%d0%ba%d1%80%d0%b0%d1%97%d0%bd%d1%86%d1%96%d0%b2-%d0%b1/ - - - Thu, 05 Oct 2023 18:17:28 +0000 - - - - - /?p=20949 - - NEARCON ’23 – це багатоденна конференція, яка збирає найяскравіших представників блокчейн-індустрії з усього світу. Це місце, де ви зможете почути …

    -

    The post Унікальна можливість для українців: Безкоштовні квитки на NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - NEARCON ’23 – це багатоденна конференція, яка збирає найяскравіших представників блокчейн-індустрії з усього світу. Це місце, де ви зможете почути найсвіжіші ідеї, познайомитися зі світовими експертами та знайти натхнення для вашої майбутньої кар’єри. NEARCON ’23 пропонує широкий спектр тематик, включаючи штучний інтелект, кібербезпеку, блокчейн, веб-розробку та багато іншого.

    - - - -

    Як невеликий акт солідарності, NEAR Foundation пропонує обмежену кількість БЕЗКОШТОВНИХ квитків для українців, які живуть у Португалії чи Іспанії, на NEARCON ‘23, що відбудеться в Лісабоні з 7 по 10 листопада.

    - - - -

    Це неймовірна можливість познайомитися зі світом Web3, розширити свої знання та знайти нові можливості для кар’єрного зростання. Не пропустіть цю унікальну можливість та отримайте безкоштовний квиток на NEARCON ’23 вже сьогодні!

    - - - -

    Що таке NEARCON?

    - - - -

    Ті, хто не знайомі з Web3, можуть не бути обізнані, що NEAR – це блокчейн, екосистема та міжнародна спільнота розробників, підприємців, фаундерів і провідних фігур у сфері децентралізації. 

    - - - -

    NEARCON – це основна щорічна подія для NEAR. Кожного року спільнота NEAR збирається, щоб слухати, навчатися, спілкуватися та розробляти надихаючі ідеї для майбутнього. 

    - - - -

    NEARCON – це найкраща освіта в галузі Web3! Як провідний децентралізований проект у світі, NEAR прагне привернути та надихати наступне покоління талантів Web3 з обмеженою кількістю безкоштовних місць.

    - - - -

    Що ви дізнаєтесь на NEARCON 2023

    - - - -

    Web3 складається з кількох ключових ролей і секторів, і на NEARCON ‘23 ми матимемо можливість почути виступи та взяти участь у панельних дискусіях із провідними фігурами в галузі Web3. 

    - - - -

    На NEARCON будуть обговорюватися такі теми як Open Web, де використовуються технології з відкритим кодом, включаючи NEAR. Також буде розглядатися взаємодія блокчейну та штучного інтелекту сьогодні та їхні перспективи в майбутньому, а також роль NEAR Digital Collective у децентралізації управління NEAR. Крім того, будуть поширені оновлення щодо регулювання та політики в сфері Web3.

    - - - -

    Як отримати безкоштовний квиток на NEARCON ‘23

    - - - -

    Отримати безкоштовні квиток на NEARCON ‘23 просто! 

    - - - -

    Основні вимоги включають:

    - - - -
      -
    • Ви є українцем, що тимчасово проживає в Іспанії/Португалії
    • - - - -
    • Ваш вік більше за 18 років
    • - - - -
    • Ви можете відвідати подію особисто в Лісабоні з 7 по 10 листопада
    • -
    - - - -

    Щоб отримати безкоштовний квиток на NEARCON ’23, переходьте за посиланням, заповніть форму аплікації. Вас буде перенаправлено до завершення оплати, де ви введете код знижки «UKFRENSNCON». Ви отримаєте квитанцію на ваш імейл, і квиток буде надіслано вам пізніше перед NEARCON ‘23.

    - - - -

    -

    The post Унікальна можливість для українців: Безкоштовні квитки на NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/nearcon-23/index.html b/public/blog/tag/nearcon-23/index.html deleted file mode 100644 index b1fcd5ab4..000000000 --- a/public/blog/tag/nearcon-23/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEARCON ‘23 Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/nearcon-early-bird-tickets/feed/index.xml b/public/blog/tag/nearcon-early-bird-tickets/feed/index.xml deleted file mode 100644 index e592a6345..000000000 --- a/public/blog/tag/nearcon-early-bird-tickets/feed/index.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - NEARCON Early Bird Tickets Archives – NEAR Protocol - - /blog/tag/nearcon-early-bird-tickets/ - - Tue, 20 Jun 2023 13:52:19 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEARCON Early Bird Tickets Archives – NEAR Protocol - /blog/tag/nearcon-early-bird-tickets/ - 32 - 32 - - - NEARCON Returns: Here’s Everything You Need to Know So Far - /blog/nearcon-returns-heres-everything-you-need-to-know-so-far/ - - - Thu, 15 Jun 2023 19:56:22 +0000 - - - - /?p=20642 - - Last year’s NEARCON was epic. NEARCON 2023 will be iconic.  While all of you have been diligently building NEAR into …

    -

    The post NEARCON Returns: Here’s Everything You Need to Know So Far appeared first on NEAR Protocol.

    -]]>
    - Last year’s NEARCON was epic. NEARCON 2023 will be iconic. 

    - - - -

    While all of you have been diligently building NEAR into one of the best ecosystems in the blockchain world, NEAR Foundation has been planning a 4-day journey into an open web. 

    - - - -

    Let’s take a quick look at everything we have to share (so far). 

    - - - -

    What to expect at NEARCON 2023

    - - - -

    For this year’s NEARCON, we’re expanding. There will be two venues — NEARCON HQ and Hack HQ. 

    - - - -

    Most of the action will happen at NEARCON HQ. But if you’re a hacker, or just like hanging with them, you can do that at Hack HQ.

    - - - -

    At NEARCON, you can expect to:

    - - - -
      -
    • Join 5,000+ delegates as we explore the power and possibilities of an open web
    • - - - -
    • Encounter a diverse melting pot of creators, builders, policy makers, and more — you’ll even find the rare thought leader in their natural environment
    • - - - -
    • Get inspired by talks from renowned authors, economists, artists, politicians, VCS, developers, entrepreneurs, and more
    • - - - -
    • Explore the Blockchain Operating System (BOS), try it for yourself, and find out why it’s the driving force behind an open web 
    • - - - -
    • Connect with projects, speakers, community members, builders, and multi-chain enthusiasts from around the world
    • - - - -
    • Hack the days and nights away for a chance to build on the BOS and win $180+k   
    • - - - -
    • And experience so much more that you’ll be looking around and asking yourself, “What bear market?” 
    • -
    - - - -

    Get your early bird tickets now!

    - - - -

    NEARCON 2023 tickets are $20 off until July 1. So, don’t wait — snag your ticket for $79 now because after July 1st they are $99. 

    - - - -

    NEAR Foundation is also offering another deal. If you refer 4 friends to NEARCON 2023, you will get a special gift upon check-in at the conference. 

    - - - -

    Become a Speaker or Sponsor

    - - - -

    Thinking about becoming a NEARCON speaker? We’d love to hear from you. 

    - - - -

    Speaking spots always go fast, so make haste. Apply to speak at NEARCON here

    - - - -

    Psstt… we’re looking for technical applications that don’t just shill but highlight problems being solved — on the BOS and the wider open web. 

    - - - -

    Apply for the Hackathon and get in for free

    - - - -

    NEAR and NEARCON loves its hackers. And to show it, we’ve made it so that any builder or developer who applies for the hackathon gets in for free. 

    - - - -

    Find more information about the NEARCON 2023 hackathon here.

    -

    The post NEARCON Returns: Here’s Everything You Need to Know So Far appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/nearcon-early-bird-tickets/index.html b/public/blog/tag/nearcon-early-bird-tickets/index.html deleted file mode 100644 index c835575a9..000000000 --- a/public/blog/tag/nearcon-early-bird-tickets/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEARCON Early Bird Tickets Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/nearcon-highlights/feed/index.xml b/public/blog/tag/nearcon-highlights/feed/index.xml deleted file mode 100644 index 0b97a4384..000000000 --- a/public/blog/tag/nearcon-highlights/feed/index.xml +++ /dev/null @@ -1,169 +0,0 @@ - - - - NEARCON Highlights Archives – NEAR Protocol - - /blog/tag/nearcon-highlights/ - - Thu, 09 Nov 2023 09:28:05 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEARCON Highlights Archives – NEAR Protocol - /blog/tag/nearcon-highlights/ - 32 - 32 - - - NEARCON ‘23 Day One: Major Announcements and Insightful Panels in Focus - /blog/nearcon-23-day-one-major-announcements-and-insightful-panels-in-focus/ - - - Wed, 08 Nov 2023 17:48:09 +0000 - - - - /?p=21061 - - As the sun set on Lisbon, the first day of an already iconic NEARCON ‘23 drew to a close, the …

    -

    The post NEARCON ‘23 Day One: Major Announcements and Insightful Panels in Focus appeared first on NEAR Protocol.

    -]]>
    - As the sun set on Lisbon, the first day of an already iconic NEARCON ‘23 drew to a close, the excitement and momentum of the entire ecosystem was on full display. The morning kicked off with insightful sessions on open web interoperability and AI, all leading up to NEAR co-founder and newly announced NEAR Foundation CEO Illia Polosukhin unveiling some exciting announcements.

    - - - -

    From regulatory talks to marketing in the open web, here’s everything that went down at Day One of NEARCON ‘23.

    - - - -

    Talks, panels and sessions highlight day one

    - - - -

    NEAR: The Open Web Vision
    Illia Polosukhin, NEAR co-founder, delivered an inspiring session on his vision for the open web, sharing NEAR’s strategic direction and upcoming enhancements. His talk illuminated the path forward for the ecosystem, including new initiatives and partnerships in areas like account abstraction and NEAR’s role as the main portal to the open web.

    - - - -

    Regulating the Open Web: Chris Donovan and Michael Casey
    Chris Donovan, COO of NEAR Foundation, and Michael Casey, Chief Content Officer at CoinDesk, engaged in a riveting dialogue about the intersection of open web philosophies and regulation. They unpacked the complexities of fostering innovation within a framework that ensures inclusivity, transparency, and community governance.

    - - - -

    Innovations in AI, Account Abstraction, and NFTs Today
    Nate Geier, CEO of Mintbase, took attendees on a deep dive into the evolving realms of AI, account abstraction, and the burgeoning NFT landscape. His insights provided a closer look at how these technologies interplay to shape a user-centric NFT ecosystem and finding product market fit for NFT projects.

    - - - -

    Marketing Through Web3 Mechanisms at DevHub and Beyond
    Joe Spano of ShardDog highlighted the transformative power of open web mechanisms in the marketing domain. He discussed how decentralized approaches are reshaping brand strategies, offering businesses a novel way to engage with their audiences while retaining user privacy and control.

    - - - -

    Open Brand: Unlocking the Power of Brand to Accelerate Growth

    - - - -

    One of the biggest challenges for decentralized projects and founders is developing a powerful, cohesive brand. Tom Munckton, head of design at well-known branding agency Fold7, joined NEAR Foundation CMO Jack Collier in a fireside chat, where the two dove into NEAR’s rebrand as a case study for any open web project.

    - - - -

    Recap of major announcements

    - - - -

    The crowd at NEARCON ‘23 was buzzing with anticipation as Illia took the stage to kick off the afternoon sessions, and he didn’t disappoint, unveiling a number of key announcements that will drive NEAR’s vision of the open web into the future. 

    - - - -

    NEAR Data Availability (DA)

    - - - -

    Perhaps the biggest announcement of the day was Illia lifting the curtain on NEAR DA, offering Ethereum developers a low-cost, secure data availability layer. NEAR DA opens the door for enhanced modular blockchain solutions, ensuring scalability and cost-efficiency for developers in the NEAR ecosystem and beyond.

    - - - -

    Polygon zkWASM

    - - - -

    Illia also spotlighted a new NEAR and Polygon Labs partnership, zkWASM, which fuses zero-knowledge proofs with Web Assembly (WASM) for enhanced blockchain scalability and decentralization. This exciting research initiative will pave the way for greater trustless interoperability across the open web, including between NEAR and the Ethereum ecosystem.

    - - - -

    Coin98 Decentralized Dapp Store 

    - - - -

    Coin98’s new decentralized app store, leveraging NEAR’s Blockchain Operating System (B.O.S), will empower its 7 million users to access diverse apps across key Ethereum Layer-2 ecosystems. The user-friendly platform will enhance dApp discoverability, streamlining the open web experience within a single, decentralized interface.

    - - - -

    Ecosystem announcements

    - - - -

    And the momentum didn’t stop there, with a couple of key ecosystem announcements coming to the forefront during Day One.

    - - - -

    Tekuno spurs open web adoption

    - - - -

    Tekuno has sparked a surge in NEAR’s ecosystem by activating over 27,000 new wallets since March 2023. This NEAR BAAS platform, leveraging NFTs to gamify real-world experiences, has garnered attention with collaborations like Mastercard, showcasing NEAR’s growing appeal and Tekuno’s innovative impact.

    - - - -

    Mintbase empowers NEAR builders

    - - - -

    Mintbase, in partnership with NEAR, has launched its 2023 cohort to propel the NEAR ecosystem. The initiative aims to empower developers with essential open web development tools and has earmarked funding for innovative projects that contribute open-source solutions, driving forward the creation and adoption of decentralized applications.

    - - - -

    Side events and networking success 

    - - - -

    The day concluded with a couple of amazing side events where networking, brainstorming, and fun all came together. The final speaker session led right into the SailGP Happy Hour at the SailGP Lounge directly at the venue, giving NEARCON-goers a chance to unwind and socialize right away.

    - - - -

    From there, things lead into the Opening Night Party, Sponsored by Cosmose and BitGo, at the Pavilhão Carlos Lopes. It’ll be a great chance to party until midnight with fellow builders, founders, and open web enthusiasts. Between the Opening Night party and SailGP Happy Hour, Day One’s social activities showcase the energy and enthusiasm of the entire ecosystem.

    - - - -

    A stellar NEARCON Day Two agenda around the corner

    - - - -

    As NEARCON ’23’s Day Two swiftly approaches, attendees can look forward to a plethora of enriching talks and panels, including deep dives into blockchain’s societal impacts and the latest in open web advancements. 

    - - - -

    Additionally, the Women of Web3 Brunch and Founders Forum Programming kick off at 8:30 AM, offering insights on diversity, equity, and open web building success. And if you’re participating in the Hackathon, make sure your project is submitted by the deadline.

    - - - -

    Thanks to everyone who attended Day One, and if you weren’t able to attend, rest assured that it’s just the beginning of a NEARCON ‘23 that will only grow to be more iconic over the next few days.

    -

    The post NEARCON ‘23 Day One: Major Announcements and Insightful Panels in Focus appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/nearcon-highlights/index.html b/public/blog/tag/nearcon-highlights/index.html deleted file mode 100644 index 121d1169a..000000000 --- a/public/blog/tag/nearcon-highlights/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEARCON Highlights Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/nearcon-irl-hackathon/feed/index.xml b/public/blog/tag/nearcon-irl-hackathon/feed/index.xml deleted file mode 100644 index a54ff122a..000000000 --- a/public/blog/tag/nearcon-irl-hackathon/feed/index.xml +++ /dev/null @@ -1,340 +0,0 @@ - - - - NEARCON IRL Hackathon Archives – NEAR Protocol - - /blog/tag/nearcon-irl-hackathon/ - - Tue, 21 Nov 2023 11:22:51 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEARCON IRL Hackathon Archives – NEAR Protocol - /blog/tag/nearcon-irl-hackathon/ - 32 - 32 - - - Meet the 2023 NEARCON IRL Hackathon Winners - /blog/meet-the-2023-nearcon-irl-hackathon-winners/ - - - Wed, 22 Nov 2023 14:00:00 +0000 - - - /?p=21104 - - The wait is over! After a week of intense, dedicated work from the NEARCON hackathon judges, the winners of the …

    -

    The post Meet the 2023 NEARCON IRL Hackathon Winners appeared first on NEAR Protocol.

    -]]>
    - The wait is over! After a week of intense, dedicated work from the NEARCON hackathon judges, the winners of the 2023 NEARCON IRL Hackathon have been chosen. 

    - - - -

    For the NEARCON IRL Hackathon, DevHub issued travel stipends to the most experienced hackers from all around the world. From Brazil and Canada to Spain, the UK, and beyond, the best builders traveled to NEARCON to celebrate NEAR’s global ecosystem. Those hackers who choose to stick around and keep building on NEAR will be eligible to apply to NEAR Horizon’s pre-acceleration program or the accelerator itself.

    - - - -

    Without further ado, let’s take a look at the amazing projects that were built on NEAR. 

    - - - -

    Developers Track Winner: Quex

    - - - -

    Quex is an AI-powered NEAR Grant program treasury. A smart contract can automatically fund a project if a pre-configured ChatGPT concludes that it will satisfy the grant program criteria.

    - - - -

    “The idea of a fully autonomous AI-controlled treasury captivated our imagination. We envisioned a system where AI, not humans, would have the sole discretion over the allocation of funds, paving the way for an unbiased and efficient distribution of resources,” wrote Quex developers Dmitry Meshkov (3x) and Alejandro V. Betancourt (Biz Dev, Metapool / Co-founder NEAR Misfits). 

    - - - -

    “We aim to achieve the fully autonomous and secure DAO — even being the developers of this DAO, we should not be able to fund our own project until we get a ‘funded’ response from AI, and we’re not able to censor transactions to fund projects good enough from the chosen AI point of view.”

    - - - -

    More details on Quex

    - - - -

    Entrepreneurs Track Winner: ClickDapp

    - - - -

    ClickDapp, a B.O.S-powered no-code tool to easily create, customize, and deploy dApps, was the winning project for the NEARCON IRL Hackathon’s Entrepreneurs Track. 

    - - - -

    “ClickDapp was inspired by how easy it is to start a Web 2 company,” said developers João Veiga, Pedro Destri, and Rafaeldkb Borges. “No-code tooling empowers a set of different players, from devs to PMs, to entrepreneurs, allowing them to create and iterate on their products with zero to no difficulty, low cost, and faster development speeds.”

    - - - -

    “ClickDapp is a no-code builder connected to the Near BOS library, giving devs, PMs and entrepreneurs the superpower of building entire blockchain applications and products without writing a single line of code.”

    - - - -

    More details on ClickDapp.

    - - - -

    Creators Track Winner: B4B 

    - - - -

    An influencer-marketing protocol for Near Social Graph, B4B collects on-chain data about channel activity and enables the amplification of new and existing projects in certain NEAR communities.

    - - - -

    “We have built a protocol that simplifies searching, analyzing, and managing influencer marketing through Near Social Graph,” said developers Anton Pecherkin, Ann Chuhnina, Gregory Melnikov, and Aleksandr Sokolov. “Additionally, it provides new monetization opportunities for content creators and influencers in the ecosystem.”

    - - - -

    “B4B is a Web3-native influencer ad network that connects advertisers with influencers willing to create and publish ads on their channels. The B4B protocol protects advertisers and influencers by escrowing the budget and maintaining a transparent history of ad orders owned by users. During the NEARHACK, we connected the protocol with the Near Social Graph.”

    - - - -

    More details on B4B

    - - - -

    Regulators Track Winner: Proof-of-Reputation

    - - - -

    Proof-of-Reputation is a mechanism that enables any user to get a loan using their on-chain activity as collateral and accomplishing the regulator’s requirement. In other words, it’s a simple, on-chain, and transparent loan protocol for underbanked regions. 

    - - - -

    Small and medium-sized businesses (SMBs) are the backbone of many economies. Still, they often face challenges in accessing loans — this is especially true in underbanked regions, where people may not have access to traditional banking services,” said the developers Luis Daniel Mendez Castellanos, Irving Yair Nava Hernández, and Alan Estrada. 

    - - - -

    “Avoid complicated, bureaucratic, and lengthy loan application processes. All tracking is done on-chain using a Soul Bond Token,” explain the developers. “If necessary, complete anti-money laundering (AML) procedures by completing quests for proof of identity, proof of citizenship, and other requirements provided by third parties. Allow anyone in regions with limited access to banking services to get a loan.”

    - - - -

    More details on Proof-of-Reputation.

    - - - -

    Pitch Competition Winner: DeFi Builder

    - - - -

    Using AI, DeFi Builder allows users to effortlessly launch powerful DeFi projects without coding. Its intuitive code-less tools unlock the doors to the next DeFi entrepreneurs on NEAR and Aurora.

    - - - -

    “For the NEAR hackathon, we introduced an innovative feature: the AI Smart Contract Generator,” said its developers  Ravi Rasadiya, Alexe Spataru, Lorenzo Castagnone, and Daniel Morosan. “Utilizing the latest AI technology — which has been trained and fine-tuned on NEAR Rust smart contracts, JavaScript smart contracts, and Aurora EVM smart contracts — NEARAI can generate a variety of smart contracts tailored to the user’s specific requests.”

    - - - -

    “The platform’s design focuses on automating complex processes like smart contract deployment, while offering integration across various blockchain networks, thus streamlining the journey from concept to market-ready DeFi project.”

    - - - -

    More details on DeFi Builder.

    - - - -

    Main Track Winners

    - - - -

    Three winners took home prizes for the NEARCON IRL Hackathon Main Track. 

    - - - -

    1st Prize — Obrigado

    - - - -

    Obrigado allows seamless execution of heavy computational tasks, distributed across multiple computational resource providers.

    - - - -

    “NEAR is aiming to be the OS for an open web with the on-chain frontend (B.O.S) and backend (WASM/zkWASM),” said the developers William S, João Vasco Pestana, Igor Perić, Souheila Sidennas, and Hojay Lee. “The missing piece is a way to process heavy computes such as training a LLM or analyzing DNA data.”

    - - - -

    “Obrigado will allow seamless execution of heavy computational tasks, distributed across multiple computational resource providers (Task Runners), ensuring efficient processing and integrity of results, all within NEAR. Computing happens off-chain and book-keeping like job queue handling, result validation, node reputation, slashing and balances happen on-chain.”

    - - - -

    More details on Obrigado

    - - - -

    2nd Prize — Magic Build

    - - - -

    Magic Build is a powerful tool designed to streamline the process of generating front-end interfaces for smart contracts on the B.O.S. It will help developers on B.O.S to deploy products faster without coding. 

    - - - -

    “Our B.O.S Composer is a tool that helps create widget connections within the BOS ecosystem. It enables infinite scalability of nested widgets, increasing the depth and resource utilization of a website,” said the developers Hai N and Kuro Denjiro. “With B.O.S Composer, you can create multiple pages, export them as widgets, and then select and link these widgets together.” 

    - - - -

    “Magic Build also supports horizontal widget connections through the “self customize” section, where you can input the URL of a widget, export it, and import it to establish connections with other widgets. B.O.S Composer simplifies the process of creating widget connections, enabling the creation of intricate and resource-rich web experiences within the B.O.S ecosystem.

    - - - -

    More details on Magic Build.

    - - - -

    3rd Prize — Web3 Plugin

    - - - -

    A web3.jd plugin for NEAR Protocol and its ecosystem, Web3 Plugin provides the functionality of near-api-js but in the web3.js style.

    - - - -

    “Developers who already use web3.js can quickly start working with NEAR technology  with fewer things to read and learn,” said the developer, Muhammad Altabba. “All they need to do is provide the web3.js library with a link to a NEAR provider, add it with the plugin, then they can start working just like they are used to. Even though there will be slight differences that they’ll have to adjust for, we do our best to reduce them to the minimum.”

    - - - -

    More details on Web3 Plugin.

    - - - -

    Thanks for joining the NEARCON IRL Hackathon

    - - - -

    Thanks to all of the participants who joined the NEARCON ‘23 hackathon! As you can see from the winners, there was no shortage of great, cutting edge projects built on NEAR. The NEAR community and ecosystem are strong and creative because of each and every project like yours. 

    - - - -

    A big thank you as well to the NEARCON IRL Hackathon judges: Max Zavershynskyi (Leader, NEAR DevHub), Eric Winer (CTO, Pagoda), Alex Shevchenko (CEO, Aurora), Nate Geier (CEO, Mintbase), Laura Cunningham (General Manager, NEAR Horizon), Samantha Bohbot (Chief Growth Officer, RockawayX), Oleg Fomenko (Co-founder, Sweat Economy), Bowen Wang(Head of Protocol, Pagoda), Sandi Fatic (Co-founder, Calimero Network), Joe Spano (Co-Founder, ShardDog), MJ (Head of Product, Proximity Labs), and Diogo Monica (Founder, Anchorage Digital). 

    - - - -

    The NEAR Foundation and the entire NEAR community looks forward to you participating in the hackathon at NEARCON ‘24! 

    - - - -

    Keep hacking and building on NEAR.

    -

    The post Meet the 2023 NEARCON IRL Hackathon Winners appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEARCON IRL Hackathon 2023: Build the Open Web - /blog/nearcon-irl-hackathon-2023-build-the-open-web/ - - - Thu, 28 Sep 2023 16:03:35 +0000 - - - - /?p=20931 - - If you attended NEARCON last year, you know the 48-hour IRL hackathon — “Building Beyond the Hype” was a great …

    -

    The post NEARCON IRL Hackathon 2023: Build the Open Web appeared first on NEAR Protocol.

    -]]>
    - If you attended NEARCON last year, you know the 48-hour IRL hackathon — “Building Beyond the Hype” was a great event, with all sorts of exciting prototypes that helped propel NEAR through the last year.

    - - - -

    For NEARCON 2023, which will be held November 7-10th, we’re leveling up the hackathon. This year’s hackathon explores NEARCON 2023’s theme — “Step into the Open Web”. And that hacking together apps and experiences that explore how the NEAR Protocol and Blockchain Operating System are paving the way for a truly open web.

    - - - -

    Let’s explore what’s new for the NEARCON 2023 Hackathon

    - - - -
    - -
    - - - -

    Hacker HQ: a space just for the hackers

    - - - -

    Not only do hackers get into NEARCON 2023 for free, but they also get their own space. NEARCON’s Hacker HQ will be a place for hackers to hang out, network, and build — whether that’s for the Hackathon or if you’re just interested in continuing to build your project on NEAR. Hacker HQ will be located at: 

    - - - -

    Armazem 16
    R. Pereira Henriques nº1, 1950-242
    Lisboa, Portugal

    - - - -

    Hack the days and nights away for a chance to build on the BOS and win $140k+.

    - - - -

    Important NEARCON Hackathon dates and information

    - - - -
      -
    • The Hackathon is held November 7-10th. -
        -
      • November 7th — Hackathon orientation, team matching, and a welcome party hosted by NEARWEEK. 
      • - - - -
      • November 8th — Day 1 of hacking. Mentoring available. 
      • - - - -
      • November 9th — Day 2 of hacking. Mentoring available. Submission Deadline. 
      • - - - -
      • November 10th — Pitch competition. 
      • -
      -
    • - - - -
    • Request a visa letter to support hackers’ visa applications. All requests must be submitted via the form by October 7, 2023. 
    • - - - -
    • Travel stipends are available depending on your location. Please read the Hacker Stipend Guidelines
    • -
    - - - -

    Stay tuned in the coming weeks for details on NEARCON IRL Hackathon bounties. 

    - - - -
    - -
    -

    The post NEARCON IRL Hackathon 2023: Build the Open Web appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/nearcon-irl-hackathon/index.html b/public/blog/tag/nearcon-irl-hackathon/index.html deleted file mode 100644 index eaf8a7546..000000000 --- a/public/blog/tag/nearcon-irl-hackathon/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEARCON IRL Hackathon Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/nearcon-speakers/feed/index.xml b/public/blog/tag/nearcon-speakers/feed/index.xml deleted file mode 100644 index 9ccd1b339..000000000 --- a/public/blog/tag/nearcon-speakers/feed/index.xml +++ /dev/null @@ -1,162 +0,0 @@ - - - - NEARCON Speakers Archives – NEAR Protocol - - /blog/tag/nearcon-speakers/ - - Thu, 19 Oct 2023 18:37:27 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEARCON Speakers Archives – NEAR Protocol - /blog/tag/nearcon-speakers/ - 32 - 32 - - - Meet the Builders of the Open Web: Top Speakers at NEARCON ’23 - /blog/meet-the-builders-of-the-open-web-top-speakers-at-nearcon-23/ - - - Thu, 19 Oct 2023 18:33:00 +0000 - - - - - /?p=20989 - - If you thought last year’s NEARCON was epic, then wait until you see what’s in store for NEARCON ’23 in …

    -

    The post Meet the Builders of the Open Web: Top Speakers at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - If you thought last year’s NEARCON was epic, then wait until you see what’s in store for NEARCON ’23 in Lisbon, kicking off on November 7th. From deep dives into the open web to insightful sessions featuring global leaders in blockchain and the open web, here’s the inside scoop on what to expect at this year’s iconic edition.

    - - - -

    What awaits you at NEARCON ’23

    - - - -

    NEARCON ’23 is set to be a smorgasbord of innovation and collaboration. Taking place across three venues in Lisbon, including the historic Convento Do Beato, and spanning four days, NEARCON ‘23 attendees will have access to an array of exciting opportunities. From enlightening talks on AI and Web3’s future to hands-on developer hackathons, there’s something for everyone.

    - - - -

    You also won’t want to miss exclusive networking sessions that connect you with NEAR and multi-chain enthusiasts and projects from around the globe. Attendees also get a firsthand experience with building on the Blockchain Operating System (B.O.S.).

    - - - -

    Meet the Big Brains of NEARCON ’23

    - - - -

    There’s an incredible lineup of speakers and thought leaders scheduled for this year’s edition of NEARCON. Here’s a rundown of some of top names you’ll on various stages, panels and sessions:

    - - - -
      -
    • Mitchell Amador: Founder and CEO of Immunefi. Mitchell is a leading voice in blockchain security and will explore how incentivized bounties enhance security.
    • - - - -
    • James Young: The Co-founder and CCO of Collab.Land will delve into the power of tokenized communities, from governance to engagement.
    • - - - -
    • Samantha Bohbot: Chief Growth Officer at RockawayX. An expert in strategic growth, Samantha will share essential tips for project scalability.
    • - - - -
    • Se Hyun Oh: SVP at SK Telecom. Expect insights into the convergence of telecom, AI, and the open web.
    • - - - -
    • Michael Casey: Chief Content Officer at CoinDesk. Michael will dissect the evolving narratives around cryptocurrency and its impact on the traditional financial sector.
    • - - - -
    • Richard Muirhead: Managing Partner at Fabric Ventures. Hear a venture capitalist’s perspective on what makes a blockchain project investable.
    • - - - -
    • Oleg Fomenko: Co-founder of Sweat Economy. Join the discussion on how blockchain is revolutionizing health and fitness via Move-to-Earn.
    • - - - -
    • Nicolai Reinbold: Global Head of Expansion and Innovation at CV Labs. Nicolai will cover blockchain innovation hubs and their role in nurturing early-stage startups.
    • - - - -
    • Teana Baker-Taylor: Circle’s VP of Policy and Regulatory Strategy for the EU/UK. She’ll address the regulatory landscape surrounding blockchain and cryptocurrencies.
    • - - - -
    • Joy Macknight: The editor at The Banker will offer an overview of how the open web and blockchain are disrupting traditional banking systems.
      Check out the complete list of NEARCON 23′ Speakers, full of founders, builders, VCs, and other open web innovators.
    • -
    - - - -

    Maximizing your NEARCON ’23 experience

    - - - -

    While the speakers are a definite draw, NEARCON ’23 is more than just speaker sessions. You can also join the NEARCON IRL Hackathon where developers will have the chance to build directly on the B.O.S and compete for over $140,000 in prizes. In case you didn’t already know, NEARCON is free for hackers participating in the hackathon! At NEARCON ‘23, there’s something for just about everyone.

    - - - -

    Four Distinct Paths to Explore at NEARCON ’23

    - - - -
      -
    • Developers: Engage in technical workshops and learn from the best in the business. These sessions are designed to meet you at any point in your open web journey.
    • - - - -
    • Entrepreneurs: Explore how the open web can revolutionize the way businesses connect and engage with users through innovative products and solutions.
    • - - - -
    • Creators: Discover how the open web can disrupt traditional systems, offering more equitable platforms for creators to get discovered and fairly compensated.
    • - - - -
    • Regulators: Stay up-to-date with the evolving regulations and policies that are shaping the open web, keeping you ahead of the curve.
    • -
    - - - -

    And don’t forget the networking opportunities, where you’ll get a chance to collaborate and engage in exciting conversations with NEAR community members from around the world.

    - - - -

    Don’t miss the future at NEARCON ’23

    - - - -

    Your chance to explore the entire NEAR ecosystem and the B.O.S is right around the corner. So, come play a part in driving the open web towards mass adoption. And with General Admission ticket prices still available, NEARCON ‘23 is still a steal for anyone interested in helping shape the future of blockchain and decentralization.

    - - - -

    So what are you waiting for? Register for NEARCON ’23 to secure your spot today. And if you’re a Ukrainian living in Portugal, or a student in Portugal or Spain, click those links for more information on how to register and attend NEARCON ‘23 in Lisbon for absolutely free!

    -

    The post Meet the Builders of the Open Web: Top Speakers at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/nearcon-speakers/index.html b/public/blog/tag/nearcon-speakers/index.html deleted file mode 100644 index a76d4ca7e..000000000 --- a/public/blog/tag/nearcon-speakers/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEARCON Speakers Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/nearcon/feed/index.xml b/public/blog/tag/nearcon/feed/index.xml deleted file mode 100644 index 09ad32fdb..000000000 --- a/public/blog/tag/nearcon/feed/index.xml +++ /dev/null @@ -1,1553 +0,0 @@ - - - - NEARCON Archives – NEAR Protocol - - /blog/tag/nearcon/ - - Wed, 08 Nov 2023 06:51:42 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NEARCON Archives – NEAR Protocol - /blog/tag/nearcon/ - 32 - 32 - - - Welcome to NEARCON ‘23: Step Into the Open Web - /blog/welcome-to-nearcon-23-step-into-the-open-web/ - - - Tue, 07 Nov 2023 14:36:44 +0000 - - - /?p=21050 - - Hello NEARians! Welcome to the 3rd annual NEARCON in the always lovely and scenic Lisbon, Portugal. The NEAR Community is …

    -

    The post Welcome to NEARCON ‘23: Step Into the Open Web appeared first on NEAR Protocol.

    -]]>
    - Hello NEARians!

    - - - -

    Welcome to the 3rd annual NEARCON in the always lovely and scenic Lisbon, Portugal. The NEAR Community is out in force for NEARCON ‘23, with around 3,000 delegates here to explore the power and possibilities of an open web.

    - - - -

    A number of exciting protocol and ecosystem announcements are planned over from November 7-10th. We’re thrilled to have you all here to get inspired by talks from renowned authors, economists, artists, politicians, developers, entrepreneurs, and many others helping to build an open web.

    - - - -

    NEARCON ‘23 is the perfect opportunity to meet and network with a wide variety of projects, speakers, community members, builders, and multi-chain enthusiasts from across the globe. And if you’re here to build, then we look forward to seeing what you put together for the NEAR IRL Hackathon, for which $140K+ in prizes are up for grabs!

    - - - -

    Finding the NEARCON 23 venues 

    - - - -

    NEARCON ‘23 will unfold across three different venues. NEAR Foundation designed and optimized each space for talks, demonstrations, hackathons, and more. You can find the three NEARCON venues here:

    - - - -

    NEARCON HQ
    Convento Do Beato
    Alameda do Beato 40, 1950-042
    Lisboa, Portugal

    - - - -

    Hacker HQ
    Armazem 16
    R. Pereira Henriques nº1, 1950-242
    Lisboa, Portugal

    - - - -

    Community HQ
    Rua Pereira Henriques
    31950-242
    Lisboa, Portugal

    - - - -

    NCON: What it is and how to use it

    - - - -

    For NEARCON ‘23, NEAR Foundation partnered with Jutsu, Keypom, and Veriken to create a novel conference experience — the NCON token, an event experience built on the Blockchain Operating System (B.O.S). In many ways, NCON is the embodiment of the open web, where users seamlessly transact with each other on a peer-to-peer network.

    - - - -

    With NCON, you can attend content sessions, interact with sponsors, pay for your lunch, and more. You can even complete NCON Bounties, for which you’ll be rewarded NCON that can be redeemed for swag, lunches, and other goodies during NEARCON ‘23.

    - - - -

    More NCON details

    - - - -

    Tracks for Developers, Entrepreneurs, Creatives, and Regulators

    - - - -

    To make this year’s NEARCON even more iconic than last year, we’ve created a diverse set of tracks for attendees. There is something for every type of open web enthusiast. 

    - - - -
      -
    • Developers — Devs should drop in on a number of hands-on workshops and coding sessions. These are the best sessions for getting first-hand looks at NEAR’s latest open web innovations.
    • - - - -
    • Entrepreneurs — A track designed for the open web entrepreneur. Web3 industry leaders will be on-site to share the best insights, strategies, and advice on turning an idea into the next best open web startup. 
    • - - - -
    • Creatives — Artists, musicians, marketers, and more are a major part of the NEAR community. The Creatives track is designed to deliver the latest insights into the creative process for NEARCON attendees. 
    • - - - -
    • Regulators — Top legal and regulatory talent will help open web developers and founders get the latest information on best practices, legal frameworks, and future regulatory development. 
    • -
    - - - -

    AI is NEAR: The Future of AI on the Open Web

    - - - -

    We’re all excited about AI and blockchain, and this is reflected in a special track for NEARCON ’23 — “AI is NEAR”. NEAR co-founder Illia Polosukhin, a pioneer in the world of AI, will be leading the charge. Check out the “AI is NEAR” track over at nearcon.org.

    - - - -

    Get your badge, beat the lines, and register for the hackathon

    - - - -

    November 7th is the perfect day to drop by to get your badge and register for the hackathon. Beat the lines and get settled in!

    - - - -

    You can also drop by the Registration Party sponsored by Octopus Network, G20, and Glass at the Layer 1 Stage (Convento Do Beato). From 5-7pm, join the hackathon orientation and NDC’s Proof of Pizza at Hacker HQ from 5-7pm, then don your party hat for NEARWEEK’s evening party from 7-11pm! 

    - - - -

    A look ahead to NEARCON Day 1 — November 8th

    - - - -

    Doors open at 9:00am. 

    - - - -

    Join us bright and early for breakfast before a number of welcome sessions from various NEARCON stages, and earn some NCON for being an early riser!

    - - - -

    NEARCON Day 1 will feature a variety of talks and panels, from NEAR UX and DeFi, to decentralized storage, Web3 community building, and much more.

    - - - -

    Check out the full Day 1 schedule now to plan for the day’s events!

    -

    The post Welcome to NEARCON ‘23: Step Into the Open Web appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Meet the Builders of the Open Web: Top Speakers at NEARCON ’23 - /blog/meet-the-builders-of-the-open-web-top-speakers-at-nearcon-23/ - - - Thu, 19 Oct 2023 18:33:00 +0000 - - - - - /?p=20989 - - If you thought last year’s NEARCON was epic, then wait until you see what’s in store for NEARCON ’23 in …

    -

    The post Meet the Builders of the Open Web: Top Speakers at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - If you thought last year’s NEARCON was epic, then wait until you see what’s in store for NEARCON ’23 in Lisbon, kicking off on November 7th. From deep dives into the open web to insightful sessions featuring global leaders in blockchain and the open web, here’s the inside scoop on what to expect at this year’s iconic edition.

    - - - -

    What awaits you at NEARCON ’23

    - - - -

    NEARCON ’23 is set to be a smorgasbord of innovation and collaboration. Taking place across three venues in Lisbon, including the historic Convento Do Beato, and spanning four days, NEARCON ‘23 attendees will have access to an array of exciting opportunities. From enlightening talks on AI and Web3’s future to hands-on developer hackathons, there’s something for everyone.

    - - - -

    You also won’t want to miss exclusive networking sessions that connect you with NEAR and multi-chain enthusiasts and projects from around the globe. Attendees also get a firsthand experience with building on the Blockchain Operating System (B.O.S.).

    - - - -

    Meet the Big Brains of NEARCON ’23

    - - - -

    There’s an incredible lineup of speakers and thought leaders scheduled for this year’s edition of NEARCON. Here’s a rundown of some of top names you’ll on various stages, panels and sessions:

    - - - -
      -
    • Mitchell Amador: Founder and CEO of Immunefi. Mitchell is a leading voice in blockchain security and will explore how incentivized bounties enhance security.
    • - - - -
    • James Young: The Co-founder and CCO of Collab.Land will delve into the power of tokenized communities, from governance to engagement.
    • - - - -
    • Samantha Bohbot: Chief Growth Officer at RockawayX. An expert in strategic growth, Samantha will share essential tips for project scalability.
    • - - - -
    • Se Hyun Oh: SVP at SK Telecom. Expect insights into the convergence of telecom, AI, and the open web.
    • - - - -
    • Michael Casey: Chief Content Officer at CoinDesk. Michael will dissect the evolving narratives around cryptocurrency and its impact on the traditional financial sector.
    • - - - -
    • Richard Muirhead: Managing Partner at Fabric Ventures. Hear a venture capitalist’s perspective on what makes a blockchain project investable.
    • - - - -
    • Oleg Fomenko: Co-founder of Sweat Economy. Join the discussion on how blockchain is revolutionizing health and fitness via Move-to-Earn.
    • - - - -
    • Nicolai Reinbold: Global Head of Expansion and Innovation at CV Labs. Nicolai will cover blockchain innovation hubs and their role in nurturing early-stage startups.
    • - - - -
    • Teana Baker-Taylor: Circle’s VP of Policy and Regulatory Strategy for the EU/UK. She’ll address the regulatory landscape surrounding blockchain and cryptocurrencies.
    • - - - -
    • Joy Macknight: The editor at The Banker will offer an overview of how the open web and blockchain are disrupting traditional banking systems.
      Check out the complete list of NEARCON 23′ Speakers, full of founders, builders, VCs, and other open web innovators.
    • -
    - - - -

    Maximizing your NEARCON ’23 experience

    - - - -

    While the speakers are a definite draw, NEARCON ’23 is more than just speaker sessions. You can also join the NEARCON IRL Hackathon where developers will have the chance to build directly on the B.O.S and compete for over $140,000 in prizes. In case you didn’t already know, NEARCON is free for hackers participating in the hackathon! At NEARCON ‘23, there’s something for just about everyone.

    - - - -

    Four Distinct Paths to Explore at NEARCON ’23

    - - - -
      -
    • Developers: Engage in technical workshops and learn from the best in the business. These sessions are designed to meet you at any point in your open web journey.
    • - - - -
    • Entrepreneurs: Explore how the open web can revolutionize the way businesses connect and engage with users through innovative products and solutions.
    • - - - -
    • Creators: Discover how the open web can disrupt traditional systems, offering more equitable platforms for creators to get discovered and fairly compensated.
    • - - - -
    • Regulators: Stay up-to-date with the evolving regulations and policies that are shaping the open web, keeping you ahead of the curve.
    • -
    - - - -

    And don’t forget the networking opportunities, where you’ll get a chance to collaborate and engage in exciting conversations with NEAR community members from around the world.

    - - - -

    Don’t miss the future at NEARCON ’23

    - - - -

    Your chance to explore the entire NEAR ecosystem and the B.O.S is right around the corner. So, come play a part in driving the open web towards mass adoption. And with General Admission ticket prices still available, NEARCON ‘23 is still a steal for anyone interested in helping shape the future of blockchain and decentralization.

    - - - -

    So what are you waiting for? Register for NEARCON ’23 to secure your spot today. And if you’re a Ukrainian living in Portugal, or a student in Portugal or Spain, click those links for more information on how to register and attend NEARCON ‘23 in Lisbon for absolutely free!

    -

    The post Meet the Builders of the Open Web: Top Speakers at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Built on NEAR: Celebrating Partners and Innovators at NEARCON ’23 - /blog/built-on-near-celebrating-partners-and-innovators-at-nearcon-23/ - - - Fri, 13 Oct 2023 15:59:43 +0000 - - - - - /?p=20968 - - Partnerships are one of the biggest pillars to expanding NEAR’s footprint. They help drive the ecosystem toward fostering new and …

    -

    The post Built on NEAR: Celebrating Partners and Innovators at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - Partnerships are one of the biggest pillars to expanding NEAR’s footprint. They help drive the ecosystem toward fostering new and innovative use cases that will bring the next billion users to the open web. And that’s exactly what’s happening on NEAR, with partnerships ranging from sports to social taking center stage. At NEARCON — the ultimate Web3 education — a number of NEAR partners will be on-hand to talk about Web3 partnerships and innovation. 

    - - - -

    Throughout the past few years, NEAR has engaged, collaborated, and built with partners who share the vision of a decentralized, user-centric open web. Each partnership is contributing their unique, innovative flair to the ecosystem, with a scalable, user-friendly blockchain helping to propel their efforts.

    - - - -

    As NEARCON ‘23 approaches, let’s celebrate and explore how NEAR’s collaborations and partnerships are shaping the future of the open web. By registering for and attending NEARCON ‘23, you’ll be able to meet some of the following founders, entrepreneurs, and innovators below.

    - - - -

    And these names are just the tip of the iceberg, so don’t forget to register for NEARCON ‘23 and let’s take part in learning, networking, and building an open web together.

    - - - - - - - -

    Creating consumer fun and engagement in the open web

    - - - -

    An area where NEAR partnerships are thriving is making the blockchain more fun and engaging for the masses. NEAR’s partnership with NFT launchpad Mintbase is a perfect illustration. Mintbase recently celebrated the traditional Indian festival, Raksha Bandhan, by seamlessly transforming photos into NFTs on the NEAR blockchain. 

    - - - -

    During Raksha Bandan, sisters tie a good-luck talisman around the wrists of their brothers, a special moment often photographed and cherished by families. With Mintbase’s open web wallet built on NEAR, users could easily create an account without seed phrases and seamlessly upload their photos, transforming them into NFTs in an instant.

    - - - -

    Let’s also toast to  GLASS, a one-of-a-kind Web3 platform that empowers alcohol brands to engage directly with consumers. Built on the NEAR blockchain, spirit brands can issue token rewards and other blockchain perks to social drinkers who try new cocktail recipes, socialize with friends, and vote on brand decisions. 

    - - - -

    Gaming is also a key entry point into the open web, and NEAR’s partnership with PlayEmber is kicking the door wide open. PlayEmber’s creative gaming studio is fusing AAA quality mobile games on the blockchain, with NEAR providing the backend foundation. Decentralized mobile gaming experiences are now becoming more accessible to a wider audience.

    - - - -

    Then there’s Cosmose AI’s KaiKai, a fusion of shopping, retail, and gamification dubbed”Shoppertainment.” Built on NEAR’s Blockchain Operating System (B.O.S), KaiKai offers a captivating brand discovery avenue, with features like Augmented Reality (AR) product interactions, exclusive product drops, and celebrity live streams. 

    - - - -

    More than just a shopping app, KaiKai also uses a native cryptocurrency, Kai-Ching. Shoppers earn rewards with the help of Cosmose’s AI-powered personalization, all while transacting on the NEAR blockchain. It’s all about enhancing personalization, user empowerment, and engagements in the retail space with a unique, powerful blockchain twist.

    - - - -

    And in a fusion of health and blockchain, Sweatcoin’s partnership with NEAR helps people earn SWEAT tokens with literally every step towards better fitness. With a user base of over 63 million who’ve clocked in more than 19 trillion steps, Sweatcoin and NEAR are incentivizing  healthier lifestyles.

    - - - -

    Oleg Fomenko, co-founder of Sweatcoin, believes in the potential of merging health and blockchain, enabling users to “walk into the world of crypto.” This partnership, built on the NEAR blockchain, personifies the next level of open web adoption, encouraging physical wellness via crypto-based rewards.

    - - - -

    Financial empowerment and innovation on NEAR

    - - - -

    One of the biggest challenges that the open web is addressing is financial empowerment and inclusion. NEAR Foundation’s partnerships in this area are helping bring that vision to life. The Foundation’s collaboration with Proximity Labs is helping talented builders create innovative Web3 financial solutions, with substantial grants and support.

    - - - -

    Calimero Network is another example of NEAR’s commitment to financial innovation. Calimero provides what’s called ‘private sharding’ infrastructure, a feature that ensures  data privacy in Web3 finance without sacrificing the power of open-source platforms. With both financial and technical support from NEAR, more business can be safely conducted on the blockchain.

    - - - -

    Building the technical foundation for tomorrow’s open web

    - - - -

    The ongoing partnership between NEAR Protocol and Octopus Network signifies the ecosystem’s infrastructure strides. Early on, Octopus Network selected NEAR as its “mother-chain” protocol citing speed ability to accommodate a large user base. Octopus Network and NEAR are paving the way for developers aiming to launch tailored applications using their own dedicated blockchains — also known as “Appchains” — making deployment a breeze.

    - - - -

    Partnering with a tech infrastructure behemoth like Google Cloud is another way of giving Web3 startups pathways to world-class startup expertise. It’s all part of NEAR’s commitment to making blockchain solutions more accessible, robust, and primed for mainstream adoption.

    - - - -

    In collaboration with Urbit, NEAR is also continuing to make the open web more user friendly. Urbit’s vision — shared and supported by the NEAR Foundation — is to improve the frontend experience of open web apps. Urbit allows developers to easily create sleek designs so that tomorrow’s decentralized applications are as seamless as the most popular ones in the App Store.

    - - - -

    On another front, NEAR’s collaboration with SailGP is bringing Decentralized Autonomous Organizations (DAOs) to professional sports, creating a bridge between leagues and fans. The introduction of a DAO-owned racing team on the NEAR Protocol gives fans a novel way to engage, interact with, and participate in active decision making along with teams and athletes.

    - - - -

    Partnership innovation rolls on at NEARCON

    - - - -

    Past, current, and future partnership will take center stage at NEARCON 2023 — now less than a month away. It’ll be four full days of full immersion into the NEAR ecosystem — a place for you to truly step into the open web. Build on the B.O.S and network with thousands of other blockchain enthusiasts. Get the inside scoop on onboarding Web2 companies into Web3 with Google Cloud’s James Tromans, and get the low down on SWEAT with Oleg Fomenko.

    - - - -

    From raising a glass to blockchain brand loyalty with GLASS and setting sail towards new DAO horizons with SailGP, each and every NEAR partner is playing its own pivotal role in crafting how tomorrow’s open web experiences will look, feel, and even taste. Better decentralized infrastructure, financial empowerment, and exciting consumer experiences are just the start.

    - - - -

    Ready to dive into sessions, hackathons, and more in Lisbon at NEARCON 2023? Go ahead and register now to secure your spot.

    - - - - -

    The post Built on NEAR: Celebrating Partners and Innovators at NEARCON ’23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Estudantes terão ingressos grátis no NEARCON’23 - /blog/estudantes-terao-ingressos-gratis-no-nearcon23/ - - - Fri, 06 Oct 2023 17:56:48 +0000 - - - - /?p=20956 - - Estudantes do mundo inteiro estão interessados em Web3. Se você é um estudante em Portugal e quer aprender mais sobre …

    -

    The post Estudantes terão ingressos grátis no NEARCON’23 appeared first on NEAR Protocol.

    -]]>
    - Estudantes do mundo inteiro estão interessados em Web3. Se você é um estudante em Portugal e quer aprender mais sobre o mundo do Web3 não precisa procurar mais. NEARCON 2023 em Lisboa será o melhor lugar para aprender sobre a ‘open web’ (internet aberta).

    - - - -

    Para começar sua jornada educacional na Web3, a Fundação NEAR tem uma excelente oferta para você! Estudantes registados em Portugal terão acesso a um número limitado de ingressos para o maior evento do ano, o NEARCON ‘23. O evento será em Lisboa, do dia 7 a 10 de Novembro (mais detalhes sobre como conseguir o ingresso abaixo).

    - - - -

    O que é o NEARCON?

    - - - -

    Para quem ainda não sabe, NEAR é uma blockchain, um ecossistema e uma comunidade internacional de desenvolvedores, criadores, fundadores e visionários da descentralização.

    - - - -

    NEARCON será um evento de 4 dias celebrando a NEAR, o sistema operacional para blockchain na internet aberta (Blockchain Operating System – B.O.S). A internet aberta é como a internet deveria ser. Uma nova internet onde todos terão a chance de criar, participar e ganhar incentivos pelos seus dados, ideias e contribuições. NEAR é um dos únicos ecossistemas que podem trazer a internet aberta para todos.

    - - - -

    Todos os anos a comunidade da NEAR se junta para ouvir, aprender, se conectar e desenvolver ideias inspiradoras para o futuro. NEARCON será o melhor lugar para aprender as últimas novidades da internet aberta!

    - - - -

    Se você não tem certeza o que a Web3 é, ou como o crypto funciona, esse é o seu lugar. Um dos projetos mais descentralizados, a NEAR tem paixão em conectar e inspirar a próxima geração de talentos em tecnologia. 

    - - - -

    NEARCON 2023 vai ser o maior evento educacional de Web3 – e o número de ingressos gratuitos é limitado. Garanta o seu!

    - - - -

    O que você vai aprender no NEARCON ‘23

    - - - -

    O ecossistema em Web3 contém muitos setores, e nós temos a sorte de contar com muitas das mais brilhantes mentes no NEARCON esse ano. Palestras, painéis e conversas nos seguintes tópicos:

    - - - -
      -
    • Internet aberta – aprenda como a tecnologia aberta e seus ideais se juntam em blockchains como NEAR para a criação de uma internet onde todos podem aproveitar o controle dos seus dados, ideias e criações.
    • - - - -
    • AI & Blockchain – o co-fundador da NEAR, Illia Polosukhin, vai te ensinar como blockchain e inteligência artificial podem trabalhar juntos em 2023 e no futuro.
    • - - - -
    • Descentralização – Veja como a NEAR Digital Collective (NDC) está contribuindo para a descentralização do ecossistema.
    • - - - -
    • Leis e regulamentação – se informe sobre os últimos desenvolvimentos no setor.
    • -
    - - - -

    Garanta seu ingresso grátis para o NEARCON ‘23

    - - - -

    É fácil garantir o seu ingresso grátis. Para conseguir o seu cupom de desconto, você precisa:

    - - - -
      -
    • Ser estudante registrado em Portugal
    • - - - -
    • Ser maior de 18 anos
    • - - - -
    • Estar disponível para ir ao evento entre 7 a 10 de Novembro em pessoa.
    • -
    - - - -

    Para acessar o cupom de desconto [DISCOUNT CODE], acesse a página do [NEARCON ‘23- add link]. Você vai precisar completar o formulário (preencha todas as informacoes). O site vai direcionar você à página de pagamento, mas não se preocupe, aqui você vai poder adicionar o cupom de desconto. O recibo com o ingresso será enviado para você.

    -

    The post Estudantes terão ingressos grátis no NEARCON’23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Entradas Gratuitas a NEARCON ‘23 para Estudiantes en España - /blog/entradas-gratuitas-a-nearcon-23-para-estudiantes-en-espana/ - - - Fri, 06 Oct 2023 17:54:31 +0000 - - - - /?p=20953 - - Si eres estudiante universitario en España y estás interesado en aprender sobre Web3, la Fundación NEAR tiene una gran noticia …

    -

    The post Entradas Gratuitas a NEARCON ‘23 para Estudiantes en España appeared first on NEAR Protocol.

    -]]>
    - Si eres estudiante universitario en España y estás interesado en aprender sobre Web3, la Fundación NEAR tiene una gran noticia para ti. ¡Estamos ofreciendo un número limitado de entradas gratuitas a universitarios para NEARCON ‘23!, nuestro evento insignia en Lisboa, del 7 al 10 de noviembre (más detalles sobre elegibilidad debajo). 

    - - - -

    No importa si nunca usaste una blockchain, o si eres nuevo en el mundo del Web3. NEARCON es el mejor lugar para aprender sobre Web3 y cómo ésta contribuye a la Web Abierta.

    - - - -

    ¿Qué es NEARCON?

    - - - -

    Si nunca escuchaste hablar de NEAR, NEAR es a la vez una blockchain, un ecosistema, y una comunidad internacional de desarrolladores, emprendedores, y visionarios de la descentralización.

    - - - -

    Una de las principales misiones de NEAR es hacer realidad la visión de una web abierta. Esto es, una web donde todo el mundo puede crear, participar y ser recompensado por sus datos, ideas y esfuerzo.

    - - - -

    NEARCON es el evento insignia de 4 días destinado a NEAR, donde todos los años la comunidad se junta a debatir, conectar y colaborar en ideas que contribuyan a desarrollar una web abierta. 

    - - - -

    NEARCON 2023 ofrece lo mejor en educación Web3, y hay entradas gratuitas disponibles para un número limitado de universitarios.

    - - - -

    No importa si eres nuevo en el universo Blockchain, NEAR tiene una pasión por involucrar e inspirar a la próxima generación de talentos Web3, ¡y NEARCON es el lugar donde aprender lo último en tecnología Web3 y la web abierta!

    -

    The post Entradas Gratuitas a NEARCON ‘23 para Estudiantes en España appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Унікальна можливість для українців: Безкоштовні квитки на NEARCON ‘23 - /blog/%d1%83%d0%bd%d1%96%d0%ba%d0%b0%d0%bb%d1%8c%d0%bd%d0%b0-%d0%bc%d0%be%d0%b6%d0%bb%d0%b8%d0%b2%d1%96%d1%81%d1%82%d1%8c-%d0%b4%d0%bb%d1%8f-%d1%83%d0%ba%d1%80%d0%b0%d1%97%d0%bd%d1%86%d1%96%d0%b2-%d0%b1/ - - - Thu, 05 Oct 2023 18:17:28 +0000 - - - - - /?p=20949 - - NEARCON ’23 – це багатоденна конференція, яка збирає найяскравіших представників блокчейн-індустрії з усього світу. Це місце, де ви зможете почути …

    -

    The post Унікальна можливість для українців: Безкоштовні квитки на NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - NEARCON ’23 – це багатоденна конференція, яка збирає найяскравіших представників блокчейн-індустрії з усього світу. Це місце, де ви зможете почути найсвіжіші ідеї, познайомитися зі світовими експертами та знайти натхнення для вашої майбутньої кар’єри. NEARCON ’23 пропонує широкий спектр тематик, включаючи штучний інтелект, кібербезпеку, блокчейн, веб-розробку та багато іншого.

    - - - -

    Як невеликий акт солідарності, NEAR Foundation пропонує обмежену кількість БЕЗКОШТОВНИХ квитків для українців, які живуть у Португалії чи Іспанії, на NEARCON ‘23, що відбудеться в Лісабоні з 7 по 10 листопада.

    - - - -

    Це неймовірна можливість познайомитися зі світом Web3, розширити свої знання та знайти нові можливості для кар’єрного зростання. Не пропустіть цю унікальну можливість та отримайте безкоштовний квиток на NEARCON ’23 вже сьогодні!

    - - - -

    Що таке NEARCON?

    - - - -

    Ті, хто не знайомі з Web3, можуть не бути обізнані, що NEAR – це блокчейн, екосистема та міжнародна спільнота розробників, підприємців, фаундерів і провідних фігур у сфері децентралізації. 

    - - - -

    NEARCON – це основна щорічна подія для NEAR. Кожного року спільнота NEAR збирається, щоб слухати, навчатися, спілкуватися та розробляти надихаючі ідеї для майбутнього. 

    - - - -

    NEARCON – це найкраща освіта в галузі Web3! Як провідний децентралізований проект у світі, NEAR прагне привернути та надихати наступне покоління талантів Web3 з обмеженою кількістю безкоштовних місць.

    - - - -

    Що ви дізнаєтесь на NEARCON 2023

    - - - -

    Web3 складається з кількох ключових ролей і секторів, і на NEARCON ‘23 ми матимемо можливість почути виступи та взяти участь у панельних дискусіях із провідними фігурами в галузі Web3. 

    - - - -

    На NEARCON будуть обговорюватися такі теми як Open Web, де використовуються технології з відкритим кодом, включаючи NEAR. Також буде розглядатися взаємодія блокчейну та штучного інтелекту сьогодні та їхні перспективи в майбутньому, а також роль NEAR Digital Collective у децентралізації управління NEAR. Крім того, будуть поширені оновлення щодо регулювання та політики в сфері Web3.

    - - - -

    Як отримати безкоштовний квиток на NEARCON ‘23

    - - - -

    Отримати безкоштовні квиток на NEARCON ‘23 просто! 

    - - - -

    Основні вимоги включають:

    - - - -
      -
    • Ви є українцем, що тимчасово проживає в Іспанії/Португалії
    • - - - -
    • Ваш вік більше за 18 років
    • - - - -
    • Ви можете відвідати подію особисто в Лісабоні з 7 по 10 листопада
    • -
    - - - -

    Щоб отримати безкоштовний квиток на NEARCON ’23, переходьте за посиланням, заповніть форму аплікації. Вас буде перенаправлено до завершення оплати, де ви введете код знижки «UKFRENSNCON». Ви отримаєте квитанцію на ваш імейл, і квиток буде надіслано вам пізніше перед NEARCON ‘23.

    - - - -

    -

    The post Унікальна можливість для українців: Безкоштовні квитки на NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEARCON: The Ultimate Web3 Education for Only $99! - /blog/nearcon-the-ultimate-web3-education-for-only-99/ - - - Fri, 22 Sep 2023 14:47:16 +0000 - - - - /?p=20914 - - As NEAR’s flagship conference, NEARCON is the place to learn all of the latest on Web3 technologies and the open …

    -

    The post NEARCON: The Ultimate Web3 Education for Only $99! appeared first on NEAR Protocol.

    -]]>
    - As NEAR’s flagship conference, NEARCON is the place to learn all of the latest on Web3 technologies and the open web. NEARCON 2023 will be the ultimate Web3 education — and for only $99. 

    - - - -

    Let’s explore what you can expect from the NEARCON crash course — from recent Web3 developments in venture capital, decentralization, and AI to NEAR technologies like the Blockchain Operating System (B.O.S), and much more. 

    - - - -

    What you’ll learn at NEARCON 2023

    - - - -

    The Web3 ecosystem consists of several key roles and sectors, and we’re lucky to have some of the biggest names attending NEARCON. Over 4 days, you will hear from venture capital figures like Samantha Bohbot (RockawayX) and Nathalie Oestmann (Outlier Ventures) as well as accelerator leaders like Nicolai Reinbold (CV Labs). There will also be a number of entrepreneurs and founders, including Michael Casey (CoinDesk), Alexander Skidanov (NEAR Protocol), Rebecca Allen (Contented), Dave Balter (Flipside Crypto), Aurelie Boiteux (Nansen), Mitchell Amador (Immunefi), Marc Goldich (Proximity Labs), and many others. 

    - - - -

    Featured talks, panels, and discussions will include learnings on:

    - - - -
      -
    • Open Web — Learn how open source technologies and ideals are colliding with blockchain technologies like NEAR to create an open web where everyone can be fairly rewarded for their data, ideas, and effort. 
    • - - - -
    • AI & Blockchain — Learn from the OG of AI himself, NEAR co-founder Illia Polosukhin, on how Blockchain and Artificial Intelligence are intersecting in 2023, and how they will develop in the near future. 
    • - - - -
    • Decentralization — See how the NDC (NEAR Digital Collective) is helping to decentralize governance to the NEAR community. 
    • - - - -
    • Regulation & Policy — Get updated on the latest Web3 regulatory developments. 
    • -
    - - - -

    Your Web3 education doesn’t stop at NEARCON — take the next step

    - - - -

    If you love what you learn at NEARCON, you can keep going with your NEAR and open web education. The NEAR ecosystem offers a number of resources to help you find success in Web3. 

    - - - -

    Thanks to the NEAR Horizon team — who will be on hand at NEARCON — you can get help in your journey of building, getting funding, and networking as a Web3 builder, founder, and entrepreneur. 

    - - - -

    See you in Lisbon!

    - - - - -

    The post NEARCON: The Ultimate Web3 Education for Only $99! appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEARCON 2023: Get Tickets, Get Involved, Join the Hackathon! - /blog/nearcon-2023-get-tickets-get-involved-join-the-hackathon/ - - - Wed, 13 Sep 2023 17:30:00 +0000 - - - - /?p=20880 - - NEARCON 2023 “Step into the Open Web” may be a few months away but it’s fast approaching. Since kicking off …

    -

    The post NEARCON 2023: Get Tickets, Get Involved, Join the Hackathon! appeared first on NEAR Protocol.

    -]]>
    - NEARCON 2023 “Step into the Open Web” may be a few months away but it’s fast approaching. Since kicking off this year’s edition of NEARCON, the NEAR Foundation has been hard at work building an iconic experience for the NEAR ecosystem and community. 

    - - - -

    This year, NEARCON has three venues, designed to optimize spaces for the hackathon and the talks and demos.  While we are still working out the details of the third venue, here are two confirmed venues:  

    - - - -

    NEARCON HQ
    Convento Do Beato
    Alameda do Beato 40, 1950-042
    Lisboa, Portugal

    - - - -

    Hacker HQ
    Armazem 16
    R. Pereira Henriques nº1, 1950-242
    Lisboa, Portugal

    - - - -

    We’ve got some exciting updates on NEARCON tickets, speakers and sessions, the hackathon, and ways of getting involved in the conference. 

    - - - -

    Let’s take a look at all of the latest from NEARCON.
    To stay tuned for all of the latest updates over the next few months, join the official NEARCON 2023 Telegram channel, and drop into the spirit before the event.

    - - - -
    - -
    - - - -

    What you get at NEARCON

    - - - -
      -
    • Join 5,000+ delegates as the NEAR community explores the power and possibilities of an open web
    • - - - -
    • Get inspired by talks from renowned authors, economists, artists, politicians, developers, entrepreneurs, and more
    • - - - -
    • Explore the Blockchain Operating System (BOS), try it for yourself, and find out why it’s the driving force behind an open web
    • - - - -
    • Connect with projects, speakers, community members, builders, and multi-chain enthusiasts from around the world
    • - - - -
    • Hack the days and nights away for a chance to build on the BOS and win $180k
    • -
    - - - -

    Tickets info update

    - - - -

    If you missed our early bird NEARCON 2023 tickets a few months ago, don’t worry! While your chance at free tickets has passed, you can still receive a special prize.
    If you refer 4 friends when you register for NEARCON, you will get a special prize at the conference. When your friends register for NEARCON, they must name you in the referral field. Friends can refer you all the way up to the first day of the conference. 

    - - - -

    Stay tuned to the Near.org/blog and NEAR Protocol Twitter account for updates on the prize. 

    - - - -

    Speakers & Sessions

    - - - -

    NEARCON will host a wide array of exciting speakers, including VCs, founders, developers, and many other notable ecosystem players. Here is a sneak peak at some of the 70+ confirmed speakers: 

    - - - -
      -
    • Michael Casey — CoinDesk
    • - - - -
    • Samantha Bohbot — RockawayX
    • - - - -
    • Nicolai Reinbold — CV Labs
    • - - - -
    • Nathalie Oestmann — Outlier Ventures
    • - - - -
    • Alexander Skidanov — NEAR Protocol
    • -
    - - - -

    NEARCON Hackathon: Build a multi-chain, open web future.

    - - - -

    Hackers know that NEAR and NEARCON love them. This year, any builder or developer who applies for the hackathon gets in for free. 

    - - - -

    The NEARCON hackathon is a 48-hour IRL hacking session for those looking to team up, familiarize themselves with NEAR, prototype their project, and pitch it — all for a chance to win. 

    - - - -

    The hackathon can be the start of something amazing — or a way to fail fast, learn, and adapt. We appreciate both, because we know that to build the next big thing you often have to fail enough times to find just the right idea.

    - - - -

    If accepted to the hackathon, hackers will receive:

    - - - -
      -
    • FREE access to NEARCON
    • - - - -
    • 24/7 access to hack at the venue
    • - - - -
    • Hands on mentoring
    • - - - -
    • Participation stipend in NEAR
    • - - - -
    • Chances to win amazing prizes!
    • -
    - - - -

    For consideration to hack and get a free NEARCON pass, please complete the application form. We’re working on the full list of bounties, partners, and opportunities, so stay tuned to the NEARCON hackathon page. 

    - - - -

    Request a visa letter to support hackers’ visa applications.

    - - - -

    Get involved with NEARCON

    - - - -

    Last year, a number of partners helped support NEARCON, including TAP Air Portugal, Business Insider, Circle, The Graph, and others. There are various ways of getting involved, from digital marketing exposure and exclusive access to side events to major visibility at the conferences. 

    - - - -

    Find what’s right for you. Take a look at how you can get involved at NEARCON 2023. 

    - - - -

    Step into the Open Web and register for NEARCON

    - - - -

    Join the NEAR ecosystem and community and step into the open web. Let’s build a new web together. 

    - - - -

     Register for NEARCON.

    -

    The post NEARCON 2023: Get Tickets, Get Involved, Join the Hackathon! appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR After NEARCON In Numbers - /blog/near-after-nearcon-in-numbers/ - - - Fri, 30 Sep 2022 13:00:00 +0000 - - - - /?p=18573 - - Anyone who made the trip to Lisbon for NEARCON 2022, or tuned in via the YouTube livestream or Twitter, knew …

    -

    The post NEAR After NEARCON In Numbers appeared first on NEAR Protocol.

    -]]>
    - Anyone who made the trip to Lisbon for NEARCON 2022, or tuned in via the YouTube livestream or Twitter, knew NEARCON was a smashing success. The vibe was something to behold. From devs and builders to other visionaries and champions of NEAR, NEARCON showcased the ecosystem and community at its very best—with boundless energy for creating without limits. 

    - - - -

    This is an energy that was also palpable to the press. Everything came together to produce  awe-inspiring momentum that is being sustained well beyond NEARCON’s aftermath.

    - - - -

    Let’s take a look at NEAR by the numbers in the wake of NEARCON to see just how the NEAR community is building without limits. 

    - - - -

    20M Accounts and 200M Transactions 

    - - - -

    Coming out of NEARCON, the total amount of NEAR accounts hit a new high of 20 million. To be sure, this was an ecosystem and community effort. But Sweat Economy, who presented at NEARCON, is responsible for onboarding 14 million new users into the NEAR ecosystem with their move-to-earn app. That’s 20x growth since this time last year! 

    - - - -

    Thanks to NEAR’s Nightshade sharding—Phase 1 of which was announced at NEARCON—this onboarding of the masses unfolded without a hitch. This example of NEAR’s infinite capacity is proof that it can welcome millions more users across the 800+ apps running on the protocol.

    - - - -

    Earlier this month, NEAR also hit a new milestone of 200 million on-chain transactions. Next up? 250 million. The ecosystem is growing by leaps and bounds, and doing so in a crypto winter. 

    - - - -

    21 Global Media Partners

    - - - -

    NEARCON was a major hit this year with members of the international press.  All told, the conference attracted 21 global media partners, with CoinDesk leading the pack as NEAR’s top tier sponsor.  

    - - - -

    Other major media outlets joined NEAR from around the world, including Cointelegraph, the Defiant, Coinpost Japan, W3volution Spain, and Business Insider Africa. 

    - - - -

    Over 250 Pieces of Media Coverage

    - - - -

    Naturally, with so many global media partners, there is quite a lot of great news to share. Seven NEAR announcements and five partnership stories were pushed out to the global media.  All together these ecosystem stories attracted 256+ pieces of coverage including a fantastic show roundup video by CryptoBanter, a hugely influential crypto YouTube channel that has over half a million subscribers. 

    - - - -

    While US media outlets led with most of the NEARCON coverage, NEAR’s flagship conference also saw consistent reporting from media in India, Korea, Vietnam and beyond. 

    - - - -

    Media Coverage Breakdown by Country

    - - - -
    1. Africa – 5 pieces of coverage
    2. Brazil – 5 pieces of coverage
    3. China – 5 pieces of coverage
    4. French – 8 pieces of coverage
    5. German – 2 pieces of coverage
    6. Italy – 4 pieces of coverage
    7. India – 18 pieces of coverage
    8. Japan – 2 pieces of coverage
    9. Korea – 11 pieces of coverage
    10. Spain – 5 pieces of coverage 
    11. UK – 12 pieces of coverage
    12. US – 25 pieces of coverage
    13. Vietnam – 5 pieces of coverage
    14. Global – 150+pieces of coverage
    - - - -

    $100M Entertainment Fund

    - - - -

    Perhaps the biggest story to come out of NEARCON was the launch of NEAR’s $100 million entertainment fund. It captivated the press, appearing in coverage from international news outlets such as CoinDesk, International Business Times, Journal Du Coin France, China’s leading crypto title Panony , CoinPost Japan and Coin Press Korea.

    - - - -

    And rightly so. By partnering with Caerus for this new $100 VC Fund and Lab, NEAR will help push new Web3 innovation in culture, media, and entertainment. This fund now places NEAR at the forefront of changing how creative projects are financed, produced, and distributed, as well as how it’s consumed, owned, and monetized. 

    - - - -

    11 Visionary ‘Women of Web3 Changemakers’

    - - - -

    Another big campaign launched at NEARCON—the Women of Web3 Changemakers. A partnership with Forkast News, thisinitiative celebrated 11 exceptional women shaping the future of Web3. 

    - - - -

    The campaign attracted a great deal of interest from a global audience, with mentions in CoinDesk, Fintech Finance, and Yahoo Finance.  

    - - - -

    NEAR Digital Collective (NDC) and Phase 1 Sharding announcements

    - - - -

    NEAR Co-founder Illia Polosukhin gave an exclusive interview with CoinDesk about the NEAR Digital Collective (NDC). This interview was syndicated in various media outlets across Africa, Brazil, and China.  

    - - - -

    CoinDesk also covered NEAR’s Phase 1 Sharding news, which made significant waves in the developer community as well as international headlines. Meanwhile, Pagoda announced their Pagoda Console—a ‘one stop’ tool shop that gives devs all the kit they need to build Web3 apps. 

    - - - -

    NEAR hubs launch in India and Vietnam

    - - - -

    NEARCON also witnessed the launch of two major regional hubs—Vietnam and India.  NEAR Foundation worked closely with the Vietnamese press to amplify the story locally, and with great success. Vietnam’s major tech titles covered the announcement, including Zing news.

    - - - -

    NEAR Foundation replicated this approach with India’s media outlets, garnering coverage in major titles such as YourStory, the local equivalent of TechCrunch. Interviews were also secured with Reuters, Bloomberg and Times of India. 

    - - - - - - - -

    NEAR Foundation pushed out announcements on Tether (USDT) going live on NEAR, Sender Wallet’s $3.5 million funding round, and Few and Far’s ambition to grow the NEAR NFT ecosystem. There were also announcements for NEAR’s partnership with Fireblocks, which will bring innovative crypto technologies to new global institutional investors, and SWEAT Economy’s tokenomics

    - - - -

    As with many of the other stories and announcements from NEARCON, these stories had mass global appeal. Coverage could be found in The Block, CointelegraphForbes India, and  CryptoTVPlus Africa.

    - - - -

    The sheer amount of positive press comes at a critical time for NEAR. The entire ecosystem and the wider Web3 world are building through a crypto winter but also battling other macroeconomic forces, post-Covid trauma, and climate change. It’s a time for resilience and creativity in how the NEAR and Web3 communities rethink and refashion the internet, and more importantly, the world. 

    - - - -

    NEARCON demonstrated to the people across the globe that the protocol, ecosystem, and community will not be deterred. Builders and investors are still flocking to NEAR to build the next generation of decentralized apps. 

    - - - -

    This is what creating without limits looks like. And it’s just the beginning!

    -

    The post NEAR After NEARCON In Numbers appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEARCON 2022: Highlights, Talks and Videos - /blog/nearcon-2022-highlights-talks-and-videos/ - - - Tue, 20 Sep 2022 21:17:27 +0000 - - - - /?p=18455 - - Missed NEARCON 2022? We’ve got you covered with content from the four conference stages, as well as a dizzying host …

    -

    The post NEARCON 2022: Highlights, Talks and Videos appeared first on NEAR Protocol.

    -]]>
    - Missed NEARCON 2022? We’ve got you covered with content from the four conference stages, as well as a dizzying host of awesome announcements.

    - - - -

    Here’s a sizzle to get you primed for all that happened at this year’s NEARCON. A NEARCON 2022 Dropbox folder has also been set up so everyone can peruse, download, and share all of the photos from the conference. There is also a NEARCON 2022 YouTube video playlist worth checking out.

    - - - -

    NEARCON Day 1:  Year in Review, Regulatory Frameworks, Brave Fireside Chat, and More

    - - - -
    - - - -

    Day One kicked off with a slew of exciting speakers, sessions, and announcements. It was headlined by notable names from an array of industries and backgrounds, from JavaScript inventor Brandon Eiche to renowned crypto legal expert Sheila Warren. 

    - - - -

    From NEAR’s first ever transparency report to the announcement of a new Sports and Entertainment fund, here’s all the big news from Day One of NEARCON.

    - - - -

    Ecosystem Announcements

    - - - -
    • Few and Far, a next-generation NFT marketplace built on NEAR, won a grant  to advance NFTs across the ecosystem.
    • NEAR unveiled the eleven winners of the Women in Web3 Changemakers competition to spotlight the achievement of women in Web3 and to showcase female role models in the ecosystem.
    • Tether, the first and most widely used stablecoin (“USDT”), launched on NEAR.
    • Sender Wallet raised US$4.5 Million in a private round led by Pantera  Capital.
    • NEAR Digital Collective (NDC) will help decentralize NEAR’s ecosystem governance and move decision-making on-chain to make community more resilient, transparent, and fair.
    • Phase 1 of NEAR’s Nightshade sharding was unveiled, making NEAR even more decentralized and scalable.
    • In a new Entertainment Fund, NEAR is backing a new $100m VC Fund and Lab focused on Web3’s evolution of culture, media, and entertainment 
    • The Fireblocks integration on NEAR went live.
    - - - -

    Day 1 Videos

    - - - - - - - -

    NEAR Year in Review and Transparency Report

    - - - -
    - - - -

    NEAR Foundation CEO Marieke Flament and NEAR Co-founder Illia Polosukhin began the day by welcoming attendees on the Layer 1 Stage and delving into how NEAR is building beyond the hype through 2022 and beyond.

    - - - -

    “We’re extremely excited about the diversity of attendees and over 220 speakers from so many different verticals and industries,” said Flament. “And we’ll continue to build upon our core vision of onboarding the next one billion users onto Web3 by helping the ecosystem build things that people can use.”

    - - - -

    Flament returned solo to the stage for the “NEAR Year in Review,” recapping key milestones in the ecosystem over the last 12 months and unveiling NEAR’s first ever Transparency Report. Flament communicated top data from the report, including how the NEAR Grants fund had reached over $800 million in capital with over $540 million deployed within the ecosystem. Among the key sectors of grant recipients were Startup Funds, Regional Hubs, NFTs, Gaming and & Entertainment and DAOs. 

    - - - -

    Watch the full talk

    - - - -

    Bridging the Gap Between Web2 and Web3

    - - - -
    - - - -

    Onboarding the next billion users onto Web3 requires an efficient tech stack and rich ecosystem of useful decentralized apps (dApps) and services, a topic that James Tromans from Google Cloud took to the Layer 1 Stage to address. While Tromans championed Web3, he also pointed out the Web2 services can play a role in easing the transition for developers.

    - - - -

    “We need to make building in Web3 faster, better, and easier,” Tromans said. “For now, we can bring the best of Web2 services like Google Cloud to Web3 so that not everything has to be built from scratch.”

    - - - -

    Tromans was then joined by a panel moderated by Emily Parker from Coindesk entitled “Bridge Builders, Why We Need Web 2.5.” In addition to Parker and Tromans, Susie Batt from Opera Browser and Satish Ramakrishan of BitGo contributed their opinions on the concept of a “Web 2.5” that could enable a more seamless transition to Web3.

    - - - -

    Watch the full talk

    - - - -

    Shelia Warren discusses Web3 regulatory frameworks

    - - - -
    - - - -

    One of the biggest names headlining day one was Sheila Warren, crypto legal expert and CEO of the Crypto Council for Innovation. Warren took the Layer One stage during the afternoon to help attendees wade through the complex and controversial topics of regulation, governance, and legal frameworks in crypto and Web3.

    - - - -

    “Who regulates crypto?” Warren posited to begin. “There is no definitive answer other than it’s complicated. It depends how projects are classified and certain power dynamics between the industry and regulators. What we need is a regulatory policy framework that addresses multiple aspects of decentralization.”

    - - - -

    Warren added that regulation is not all bad and could have a beneficial effect on the space if done in an intelligent and collaborative manner. 

    - - - -

    Watch the full talk

    - - - -

    The next year on NEAR and Brave Fireside Chat

    - - - -
    - - - -

    Looking ahead, NEAR Co-founder Illia Polosukhin took the Layer 1 stage to offer his sentiments on the year ahead for the NEAR Foundation, protocol, and ecosystem. Polosukhin predicted a steady increase in both ecosystem funding and projects, with over 800 projects and growing, according to AwesomeNEAR.

    - - - -

    “I’m very excited about next year as we’ll continue to build out a wide range of developer tooling that will facilitate the next generation of NEAR apps,” said Polosukhin. “We now have all the necessary primitives – like Paras for NFTs and AstroDAO for DAOs – that the NEAR ecosystem can now become more composable with richer experiences.”

    - - - -

    Watch the full talk

    - - - -

    Polosukhin then welcomed Brave founder Brandon Eiche to the stage for a fireside chat. Eiche is also the inventor of the JavaScript programming language, and the two discussed a wide array of topics including NEAR’s recently launched JavaScript SDK.

    - - - -

    “Everything NEAR is doing feels like one of my children,” Eiche said. “On-chain JavaScript is simply a dream, and now so many developers can build on-chain without learning another language.”

    - - - -

    Watch the full talk

    - - - -

    NEARCON Day 2: Headlined by Messari, Armored Kingdom, and SailGP

    - - - -
    - - - -

    Most anyone at Day Two of NEARCON could attest to the level of excitement and momentum for the entire NEAR ecosystem. And if there’s one thing that Day Two showcased, it’s that Web3 and NEAR are well along the path of mass adoption. From sports to social media and entertainment, real-world projects building on NEAR stepped forward in a big way on Day Two.

    - - - -

    Session attendees came away with big updates and predictions for NEAR ecosystem partners like Sweatcoin and SailGP, not to mention a special appearance and workshop for the creators of Armored Kingdom. Everyone in the building also saw that the Hackathon was in full swing, with presentations and judging right around the corner.

    - - - -

    Ecosystem Announcements 

    - - - -
    • New NEAR Regional Hubs launched in India and Vietnam to support Web3 innovation, education, and talent. 
    • Pagoda Console lets devs create without limits from an ad hoc toolkit, a one-stop tool shop that gives devs all they need to build Web3 apps.
    • Switchboard goes multichain with NEAR to give developers the best tools and data to build their apps.
    • Fayyr launched first NFT Marketplace for Social Impact Organizations on NEAR.
    • Chainstack, a leading blockchain managed services provider, launched support for NEAR on its platform.
    • Contented Media Group (CMG) received a Near Foundation grant to launch a Web3 platform where brands can interact with content creators. 
    • Bitstamp listed NEAR token on its exchange.
    - - - -

    Day 2 Videos

    - - - - - - - -

    Ryan Selkis of Messari on navigating crypto cycles

    - - - -
    - - - -

    Things started off with one of the biggest names at NEARCON, as Messari co-founder Ryan Selkis joined NEAR CEO Marieke Flament to discuss where we are in the current crypto cycle, building in a downturn, and how to navigate the future. Selkis was well-positioned to speak on the subject, having lived through multiple peaks and valleys of blockchain markets and adoption.

    - - - -

    “We’re in the early innings of a long-term game,” Selkis told Flament. “Centralized institutions are weaker than ever and there’s transformational potential in a user-owned economy, empowering individuals and building more resilient systems.”

    - - - -

    “This is the part of the cycle where protocols will begin to cross the chasm from MVP to mass adoption,” posited Selkis. “And now is the time to think long term about things like how the Web3 tech stack will develop and what a potential cross-chain future looks like.”

    - - - -

    Watch the full talk

    - - - -

    The SWEAT Economy gets NEARCON moving

    - - - -
    - - - -

    Another major highlight of Day Two took place on the Layer One stage as Oleg Fomenko, co-founder of Sweatcoin, explained how the SWEAT economy was born, why the NEAR blockchain is playing a critical role, and where the move-to-earn economy is heading.

    - - - -

    “We are literally witnessing the birth of the movement economy,” Fomenko exclaimed. “We created Sweatcoin in 2016 with that name because we assumed it would be on the blockchain. Now we’re number one on the App Store in over 66 countries with over 120 million users.”

    - - - -

    Fomenko also recalled that in the early days of Sweatcoin, the Ethereum network simply couldn’t handle the number of transactions with adequate speed to truly bring his vision of move-to-earn to life.

    - - - -

    “But when we found NEAR, it was a perfect match in terms of both vision and mission,” said Fomenko. “A fast, low-cost blockchain along with an incredible team is helping us push the movement economy forward and help users live healthier lifestyles.”

    - - - -

    Watch the full talk

    - - - -

    SailGP + NEAR Have the wind at their backs

    - - - -
    - - - -

    Piggybacking on Day One’s announcement of the NEAR Foundation’s new Sports and Entertainment fund, NEAR CEO Marieke Flament returned to the stage to welcome SailGP’s CEO Russell Coutts and CTO Warren Jones. 

    - - - -

    “SailGP as a brand and product is built on both being exciting and data driven,” said Coutts. “Our boats generate billions of data points per day that we use to improve the fan experience. We’ve always been technology focused, which is why working with NEAR to integrate Web3 and the blockchain makes so much sense.”

    - - - -

    Flament added that one of the most exciting aspects to the partnership is how NEAR is currently helping SailGP facilitate a racing team being owned and operated by a DAO. Coutts also expressed this excitement, painting a picture of endless possibilities with how the DAO might choose to operate and increase fan engagement.

    - - - -

    “The DAO might decide that certain token holders or the most engaged members can actually talk to athletes in the midst of a competition,” said Coutts. “Other things like special rewards for members or participating in team selection can also potentially be implemented. It’s all up to the DAO, which is what makes this initiative so special.”

    - - - -

    Watch the full talk

    - - - -

    Armored Kingdom gives a lesson in storytelling

    - - - -
    - - - -

    One of the most anticipated gaming and metaverse projects finally touched down on Day Two of NEARCON. Armored Kingdom creators Lisa and Hugh Sterbakov were joined by writer Brian Turner to deconstruct the process of building a story arc, core elements to great storytelling, and what to expect from Armored Kingdom on NEAR.

    - - - -

    “Armored Kingdom is not just a comic book or metaverse game,” said Lisa. “It’s an entire multimedia platform built where fans can participate and co-create. And we’ll be rolling out an animated series to go along with it.”

    - - - -

    “Armored Kingdom is our playground,” Turner said. “The world is based on an endless conflict between four major tribes on an alien planet. There are religious undertones as well as a battle for a scarce resource – Armorite – with which very powerful weapons are made from.”

    - - - -

    Lisa capped off the session by mentioning that building Armored Kingdom on NEAR is allowing the team to build features and functions into the game easily due to the tech stack, and in the end, fans can put as much or as little time in as they want.

    - - - -

    “Web3 is allowing us to create communities and encourage participation that Web2 never has,” she said. “We’re currently receiving fan art submissions through our Discord community that have already made their way into the comic book.”

    - - - -

    Watch the full talk

    - - - -

    NEARCON Day 3: Circle, AstroDAO, and NEAR Digital Collective

    - - - -
    - - - -

    The biggest NEARCON to date came to a close on Day Three with a slew of insightful speakers, interactive panels, and an unexpected announcement. Big names from organizations and projects like Circle, NearPay, and A16z helped make the conclusion of NEARCON 2022 feel extremely meaningful  and memorable.

    - - - -

    Attendees got a glimpse at how DAOs work under the hood, where NEAR fits in with the ever-evolving fintech and payments space, and how builders should approach governance in a crypto winter. And then there was the unveiling of the NEAR Digital Collective, an ambitious leap in decentralizing and enhancing governance on the NEAR network.

    - - - -

    Ecosystem Announcements 

    - - - -
    • SWEAT and NEAR partner to enable the masses to ‘walk into crypto.’
    • OnMachina to provide native large-scale storage system to dApps and services building on NEAR, creating capacity to support billions of users. 
    - - - -

    Day 3 Videos

    - - - - - - - -

    Spotlight on Crypto Payments and Fintech

    - - - -
    - - - -

    Day Three began with a meeting of the minds between NEAR CEO Marieke Flament and Jeremy Allaire, CEO of Circle. The pair started a morning of talks and discussions around crypto innovation, payments, and broader implications for governments and fintech. 

    - - - -

    “You couldn’t have predicted the amount of innovation that’s taken place over the past decade and the millions of developers now on the blockchain,” Allaire from Circle said. “And now that we have the base layer technology in place for programmable money, along with decreasing costs of transactions, the stage is really set for exponential growth.”

    - - - -

    Flament then asked Allaire about his perspective on the role that stablecoins and central bank digital currencies (CBDC) could play in the future of a blockchain and crypto-powered global financial ecosystem.

    - - - -

    “What we really want to see is a composable system that resembles the software-powered internet,” Allair continued. “There’s certainly room for various stablecoins and CBDCs, as long as they continue the inertia towards self-sovereign commerce.”

    - - - -

    The duo was followed by a panel entitled “Crypto Natives vs. Fintechs for the Future of Payments,” including notable names from Checkout.com, Roketo, and NearPay. The group discussed a range of topics, from making crypto payments more seamless for individuals and onboarding small businesses to the blockchain.

    - - - -

    Watch the full talk

    - - - -

    Deep Dive into DAOs and Governance

    - - - -
    - - - -

    The afternoon on the Layer 1 Stage was filled with opinions and insights about Decentralized Autonomous Organizations (DAOs), how they function, and the role of DAOs in the future of Web3 and society at large. In a panel about How DAOs Get Work Done, founders and leaders from AstroDAO, The Kin DAO, and CornerstoneDAO all offered unique perspectives.

    - - - -

    “We created Kin DAO for the purposes of collaboratively owning physical land to create self-sustaining food systems and micro economies,” said Adrian Bello, founder of Kin DAO and Primordia DAO. “We’re practicing this decentralized governance in person and rehabilitating our relationship with Earth.”

    - - - -

    Bello went on to explain that her new project, Primorida DAO, has the goal of onboarding as many DAOs as possible from excluded communities onto NEAR. That’s in large part because of the NEAR ecosystem’s focus on user-friendly DAO tooling and community building through AstroDAO.

    - - - -

    “AstroDAO is our home for everything,” Bello continued. “Other chains can be somewhat hard to get into. But AstroDAO is accessible and has a low barrier to entry. We can reference decisions made on-chain and governance is therefore always transparent.”

    - - - -

    Jordan Gray, the founder of AstroDAO, also explained how his project is focused on letting everyday users harness the power of DAOs. Smart contracts, APIs, and governance protocols all exist “under the hood” of AstroDAO, making it easier for both users and developers to create, engage with, and operate DAOs.

    - - - -

    “DAOs are going to rock the business world in a way that we haven’t seen since the spreadsheet,” Gray predicts. “We’re on the cusp of a work revolution. And if we figure out new ways to incentivize voting, we might even fix democracy.”

    - - - -

    Watch the full talk

    - - - -

    Introducing the NEAR Digital Collective for Governance

    - - - -
    - - - -

    Day Three of NEARCON concluded with one of the most exciting announcements of the entire conference. NEAR co-founder Illia Polosukhin and Harry Tafolla of Cheddar announced the creation of the NEAR Digital Collective (NDC), an ambitious initiative to further decentralize NEAR governance and create a more robust, resilient network.

    - - - -

    “With the NEAR Digital Collective, we’re striving for a truly autonomous ecosystem,” Polosukhin said. “We need to do this on the people’s level, where we’re all accountable and responsible and systems are not chaotic or toxic.”

    - - - -

    Polosukhin went on to explain that the NDC governance framework is akin to drafting the constitution of a newly formed nation, with core community members like Tafolla leading the charge to formulate, define, and implement NEAR governance from here on out.

    - - - -

    Polosukhin said  that the NDC is a major step in addressing the needs of all stakeholders within the NEAR ecosystem, from users and DAOs to node validators and wallet developers. The NDC will also be dynamic and allow for constant updates and upgrades in governance frameworks and processes.

    - - - -

    Watch the full talk

    - - - -

    Hackathon winner and wrapping up NEARCON

    - - - -
    - - - -

    Flament then took the stage along with Polosukhin to wrap up NEARCON 2022, highlighting that almost 3,000 attendees from 176 countries contributed to making this year’s gathering such a rousing success. In addition, 38% of all attendees were women, and NEAR handed out the first-ever Women in Web3 Changemakers awards for female role models in the space. 

    - - - -

    Polosukhin also thanked the 500+ hackers who participated in the NEARCON 2022 Hackathon. Out of the 98 submissions, the winner chosen was Pomegrant, a browser plugin that allows users to eliminate ads and donate directly to content creators using crypto. 

    - - - -

    “If there’s something that we hope you’re taking away from these past three days, it’s without limits,” Flament concluded. “We hope with NEAR you see that you can truly create without limits and realize whatever dreams and visions that you have for both your project and society. So let’s continue to create without limits, build beyond the hype, and get to one billion users!”

    - - - -

    Watch the full talk

    - - - -

    Thanks again to all who attended, contributed to, and engaged with NEARCON 2022. A big round of applause for the entire NEAR ecosystem and we’ll see you again at NEARCON 2023!

    -

    The post NEARCON 2022: Highlights, Talks and Videos appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/nearcon/index.html b/public/blog/tag/nearcon/index.html deleted file mode 100644 index fb70d27b5..000000000 --- a/public/blog/tag/nearcon/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEARCON Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/nearcon/page/2/index.html b/public/blog/tag/nearcon/page/2/index.html deleted file mode 100644 index b3790857c..000000000 --- a/public/blog/tag/nearcon/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NEARCON Archives – Page 2 of 2 – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/nfts/feed/index.xml b/public/blog/tag/nfts/feed/index.xml deleted file mode 100644 index 7ff554e6e..000000000 --- a/public/blog/tag/nfts/feed/index.xml +++ /dev/null @@ -1,1094 +0,0 @@ - - - - NFTs Archives – NEAR Protocol - - /blog/tag/nfts/ - - Wed, 12 Jul 2023 17:13:00 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - NFTs Archives – NEAR Protocol - /blog/tag/nfts/ - 32 - 32 - - - Shred Spots and NEAR Foundation: Kick-Flipping Into the Future of Social NFTs - /blog/shred-spots-and-near-foundation-kick-flipping-into-the-future-of-social-nfts/ - - - Wed, 12 Jul 2023 17:30:00 +0000 - - - - - /?p=20718 - - Action sports such as skateboarding and snowboarding are gaining momentum, especially among Gen Z, and are quickly outpacing traditional sports. …

    -

    The post Shred Spots and NEAR Foundation: Kick-Flipping Into the Future of Social NFTs appeared first on NEAR Protocol.

    -]]>
    - Action sports such as skateboarding and snowboarding are gaining momentum, especially among Gen Z, and are quickly outpacing traditional sports. Today, Gen Z is one of the biggest growth populations in skateboarding, highlighting the relevance of action sports and their surrounding community to the TikTok generation.

    - - - -

    This is where NEAR Foundation’s newest partner, Shred Spots, steps in. Shred Spots is a unique social platform specifically designed for active participants and community members in the street sports realm. Despite impressive growth, a dedicated, verticalized social platform that caters to these Gen Z skaters has been noticeably absent – until now. 

    - - - -

    In a convergence of skating and the open web, Shred Spots has partnered with NEAR Foundation to create a unique, interactive experience for street sports enthusiasts. This fusion will empower skaters to create, compete, and immortalize their achievements via innovative NFT technology within the action sports metaverse.

    - - - -

    Shred Spots: grinding in popularity among the open web generation

    - - - -

    Shred Spots has established itself as a go-to app for street skaters and has formed partnerships with significant street sports brands like Red Bull, GoPro, and XGames. It’s a community-driven digital platform that allows its users to track their achievements, compete with their peers, and express themselves creatively.

    - - - -

    A unique feature of Shred Spots is its live map, updated by the community, where users can find and add sports locations. They can search based on the type of obstacle, difficulty level, or even the likelihood of getting “busted.” These attributes have led Wired to proclaim Shred Spots as “the only app street skaters will ever need.”

    - - - -

    In a recent interview, Shred Spots founder, Lev Filimonov, also emphasized the app’s unique ability to combine skaters’ experience with AR and NFTs, fostering a dynamic interaction with the history and culture of skate spots worldwide while allowing users to monetize their art and achievements.

    - - - -

    Shred Spots’ popularity is a testament to its success. With its growth primarily driven by word-of-mouth within the street sports community, it has rapidly emerged as an essential tool for skaters worldwide. This organic growth underscores the platform’s ability to resonate with its audience and fulfill a clear need with Web3 and NEAR.

    - - - -

    Making every trick memorable with Shred Spots x NEAR

    - - - -

    The partnership between NEAR and Shred Spots brings an innovative twist to the realm of action sports, introducing the transformative potential of Web3 technologies to this vibrant community. Shred Spots plan to leverage NEAR’s blockchain to generate unique, collectible NFTs from skating highlights, enriching the overall user experience.

    - - - -

    In this exciting new chapter, every trick recorded and uploaded onto Shred Spots could be minted into an NFT within the street art metaverse. This integration not only adds a rewarding layer to the platform but also deepens the connection between skaters and the fascinating world of blockchain.

    - - - -

    Growth within the Shred Spots community has been largely organic, a testament to its widespread acceptance within the skating community. This partnership with NEAR amplifies the platform’s user experience through the integration of NFT technology, extending the reach of Web3 into the action sports world.

    - - - -

    The alignment of Shred Spots and NEAR’s vision aids in democratizing access to Web3 technologies, introducing an entirely new user base to the possibilities of blockchain. This marks a pivotal step in broadening the horizons of the street sports community, linking their passions with the power of Web3 and digital ownership.

    - - - -

    The collaboration between NEAR and Shred Spots epitomizes how the open web can enrich user experiences in growing niche communities like skateboarding and action sports. It also illustrates the future confluence of the open web, sports, and real-world achievements. And it’s bringing the blockchain to a whole new generation of action sports enthusiasts.

    -

    The post Shred Spots and NEAR Foundation: Kick-Flipping Into the Future of Social NFTs appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Škoda Ventures into NFTs with NEAR to Create the Škodaverse India - /blog/skoda-ventures-into-nfts-with-near-to-create-the-skodaverse-india/ - - - Tue, 20 Jun 2023 05:30:00 +0000 - - - - - /?p=20652 - - Škoda India, in collaboration with NEAR Protocol, announces its foray into the world of NFTs and blockchain technology with Škodaverse …

    -

    The post Škoda Ventures into NFTs with NEAR to Create the Škodaverse India appeared first on NEAR Protocol.

    -]]>
    - Škoda India, in collaboration with NEAR Protocol, announces its foray into the world of NFTs and blockchain technology with Škodaverse India. This new platform forms a part of the global Škodaverse initiative and will bring a fresh wave of digital innovation to Škoda automobile fans in India.

    - - - -

    Škoda, one of Europe’s biggest car manufacturers headquartered in the Czech Republic, is quickly becoming one of the most forward-thinking industry brands in Web3 and the metaverse. Late last year, the company announced its global Škodaverse initiative, integrating virtual test drives and NFTs into an immersive environment.

    - - - -

    And now the Škodaverse is coming to the Indian market, powered by the NEAR Protocol, that will enable Škoda fans to buy, trade, and engage with NFTs in Web3. It’s a crucial step in the brand’s journey towards building a tight-knit community of Škoda loyalists, offering a space for fans to connect, co-create, and establish long-term relationships with the brand.

    - - - -

    Steering Škoda fans towards NFTs with NEAR

    - - - -

    Mr. Christian Cahn von Seelen – Executive Director of Sales, Marketing, and Digital, Škoda at Auto Volkswagen India – expressed excitement at the unveiling of the Škodaverse India NFT platform. He envisions it as a dynamic hub for connection and creativity, exemplifying Škoda’s commitment to its customers and fans in India. The Škodaverse India will offer unique and immersive experiences to a rapidly growing market.

    - - - -

    “Škodaverse India signifies the brand’s leap into uncharted digital territory,” said von Seelen. It’s not just about creating extraordinary digital assets, it’s about forging deep connections with a community that shares an unwavering passion for the brand and its initiatives in India. It also showcases our commitment to sustainability and innovation, through leveraging carbon-neutral blockchain technology that enables secure, transparent, and decentralized transactions.”

    - - - -

    Škodaverse India is designing its metaverse platform to be exciting and engaging for Škoda enthusiasts of all demographics, whether they’re familiar with blockchain technology or not. Whether it’s an image, video, sound, or ticket, each NFT collection released on the Škodaverse India platform will be curated to create memorable driving experiences

    - - - -

    The first NFT collection, honoring sustainability, will be created on NEAR Protocol. As a South Pole-certified, carbon-neutral blockchain, NEAR’s eco-first philosophy aligns seamlessly with Škoda India’s sustainability efforts.

    - - - -

    Driving Škoda India’s Web3 Strategy into the future

    - - - -

    As part of the brand’s intensified Web3 strategy, Škoda Auto India is collaborating with Antier, a leading blockchain consulting firm, to foster the creation and minting of innovative NFTs. Each NFT collection released on the Škodaverse India platform will be thoughtfully curated to represent memorable driving experiences. 

    - - - -

    These unique collectibles will unlock exclusive experiences, strengthening the bond between Škodaverse and its community of users. The Škodaverse India platform also ensures users stay updated with the latest in the creation and sale of NFTs. Users can sign in, create, and maintain their profiles, and monitor for updates via Škodaverse India’s Discord, Telegram, and Twitter.

    - - - -

    With the launch of Škodaverse India, Škoda Auto India embraces blockchain technology, signaling a significant move towards Web3 applications. Powered by NEAR Protocol, Škodaverse India will offer engaging, community-building experiences, further solidifying Škoda’s position as a forward-thinking automobile brand in Web3 and the metaverse.

    -

    The post Škoda Ventures into NFTs with NEAR to Create the Škodaverse India appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Rove World v2 Simplifies Web3 Ticketing and Loyalty for Brands - /blog/rove-world-v2-simplifies-web3-ticketing-and-loyalty-for-brands/ - - - Wed, 12 Apr 2023 14:12:00 +0000 - - - - - - /?p=20449 - - Rove, one of the most user-friendly entertainment ecosystems in Web3, is now in collaboration with NEAR. Their next release, Rove …

    -

    The post Rove World v2 Simplifies Web3 Ticketing and Loyalty for Brands appeared first on NEAR Protocol.

    -]]>
    - Rove, one of the most user-friendly entertainment ecosystems in Web3, is now in collaboration with NEAR. Their next release, Rove World v2, will act as a one-stop mobile-based ticketing solution and loyalty rewards program for brands. The update will also feature an in-app store that will include major brands, sports leagues, and musical artists.

    - - - -

    Rove and Rove World v2 removes many of the key friction points that occur when brands and creators try to engage their audience with Web3 technology. Notable brands are already on board, as Rove has collaborated with the likes of Tommy Hilfiger on the Web2 side, alongside some of Web3’s largest brands such as Claynosaurz and MonkeDAO, with more exciting partnerships and activations to be announced soon.

    - - - -

    “A multichain approach was always at the forefront of our long-term growth strategy for Rove,” said Jason Desimone, Founder of Rove. “Having built and launched the initial version of the Rove World mobile app, our goal is to now expand the reach and traction of Rove to other ‘Layer 1’ blockchain communities and ecosystems that align with our vision and will help us achieve our goals with the launch of Rove v2.”

    - - - -

    Let’s take a look at how Rove World V2 is a game-changer for branded NFTs on NEAR.

    - - - -

    How Rove is helping brands amp up their NFTs

    - - - -

    The Rove ecosystem is a solution to many of the core issues facing brand and entertainment NFT campaigns, launches, and projects. That’s because Web3 itself is often difficult or daunting for the end user, who amongst other things might have questions about the value or utility of NFT ownership.

    - - - -

    What Rove brings to the table is a user-friendly mobile app where NFTs are minted in mere seconds and with minimal steps. Brands can also easily add utility to the NFTs which are easily accessible by the user. Rove’s vision aligns seamlessly with NEAR’s Web2.5 strategy of making the onboarding of the next billion users into Web3 as easy as possible.   

    - - - -

    Brand and entertainment NFT experiences built atop Rove and NEAR lets users log in seamlessly through familiar means like social media log-in, Apple ID, or facial ID. NFTs are easily sent and received on the Rove app via usernames, again with a similar Web2 interface to that of Venmo.

    - - - -

    Rove World v2 release lets brands create buzz

    - - - -

    The Rove World v2 release will be a major part of Rove’s suite of tools that make it easy for brands to get started with blockchain technology. Their approach is to allow brands to engage with NFTs in a collaborative manner that benefits creators, brands, and end users alike. Rove World v2 on Near is a huge leap in that direction.

    - - - -

    The main feature is the in-app store that brands can now leverage in combination with Rove’s flagship app for curated NFT launches and blockchain-based ticketing. Not only will attendees be able to claim NFTs instantly at the tap of their phone, but brands can also now leverage Rove World v2 to offer seamless in-app purchases via the mobile store.

    - - - -

    NEAR and entertainment continue to shine with Rove

    - - - -

    Rove has many brands in the pipeline across the fashion, film, music, and sports verticals that want a seamless NFT experience for their customers. This not only brings more notable and forward-thinking brands into NEAR’s orbit but also showcases how the NEAR ecosystem continues to make major strides in the sports and entertainment verticals. 

    - - - -

    Eventually, Rove will serve as a central ticketing and NFT project on NEAR. Users can easily create assets, mint the NFT, and distribute it however they’d like. The entire experience will be on a single mobile app, bridging the technical gap between users and brands while giving a fairer share to creators than mainstream NFT marketplaces.

    - - - -

    All assets on Rove and Rove World v2 also have some form of utility. Anyone who owns an NFT on Rove can stake that asset for Rove credits that unlock various perks. It’s a great example of how Rove is making all of Web3 simple, including things like staking. 

    - - - -

    Ticketing and NFT distribution for brands and creators are about to get a whole lot easier for everyone thanks to Rove. And with Rove World v2’s in-app store, major brands are lining up to be at the forefront of making web3 truly accessible, user-friendly, and financially fair.

    - - - -

    “NEAR’s emphasis on onboarding the next billion users into Web3 with a specialized focus on entertainment, sports, and culture fit identically with our approach,” said Rove’s Desimone. “Not to mention NEAR’s industry-leading technology which enables a seamless migration of the easy-to-use features of the Rove World mobile app onto the NEAR blockchain.”

    -

    The post Rove World v2 Simplifies Web3 Ticketing and Loyalty for Brands appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - How Solaire is Revolutionizing the Fashion Industry with Web3 Technology and Building the Retail Infrastructure on NEAR - /blog/how-solaire-is-revolutionizing-the-fashion-industry-with-web3-technology-and-building-the-retail-infrastructure-on-near/ - - - Thu, 30 Mar 2023 13:20:43 +0000 - - - - - /?p=20346 - - Solaire – an exciting web3 retail platform that merges physical and digital assets – is revolutionizing the way consumers interact …

    -

    The post How Solaire is Revolutionizing the Fashion Industry with Web3 Technology and Building the Retail Infrastructure on NEAR appeared first on NEAR Protocol.

    -]]>
    - Solaire – an exciting web3 retail platform that merges physical and digital assets – is revolutionizing the way consumers interact with fashion brands. By harnessing the power of web3 and the NEAR blockchain, Solaire is building out key protocol infrastructure and APIs that will expand decentralized retail and unlock new opportunities for both shoppers and fashion brands alike.

    - - - -

    - - - -

    Solaire is pioneering phygital use cases and brands will be able to leverage the NEAR blockchain in tandem with Solair’s powerful APIs to engage with their audience in novel ways.  Solaire’s suite of APIs seamlessly integrates with a brand’s existing retail channels. This enables new revenue channels and richer data. 

    - - - -

    - - - -

    Solaire’s entire backend is fully on-chain and facilitates an easy-to-use web2 interface, with no wallet or crypto needed from shoppers. The NEAR blockchain helps Solaire provide these benefits for brands, as well as unique integrations with NEAR. This includes Solaire integration with the NEAR Mainnet, native NEAR wallet support, and the NEAR token as a payment option.

    - - - -

    How Solaire is Changing Fashion with Phygital

    - - - -

    Solaire establishes a 1:1 connection between a physical object and its digital twin. Brands can then leverage Solaire’s infrastructure and suite of APIs to engage customers with NFTs and phygital experiences in a seamless, user-friendly way, removing some of the typical web3 friction points.

    - - - -

    - - - -

    “We aim to do all the hard work on the backend so that brands and consumers can enjoy a familiar user experience with all the benefits of Web3 but without the hassle of dealing with wallet or crypto,” says Vivian Zhang, CEO of Solaire. “And NEAR’s blockchain is perfectly suited to run enterprise-level protocols to ensure a seamless and frictionless user experience.”

    - - - -

    - - - -

    Soliare infrastructure helps brands create meaningful digital twins for physical goods, as well as providing a means for consumers to buy and trade phygital assets. Solaire allows for minting unique NFTs attached to physical goods and offers an end-to-end solution for securing and tracking a product from manufacturing through its entire product lifecycle.

    - - - -

    - - - -

    Solaire has already collaborated with major fashion brands like Freeman’s Limited Edition Phygital Harry Potter™ Collection and Ilona Song. Smart contracts facilitate shipping, returns, and exchanges all on the NEAR blockchain This allows customers to shop and purchase with transparency and confidence.

    - - - -

    Benefits of Phygital Assets for Fashion Brands

    - - - -

    Phygital assets are a new way for fashion brands to engage consumers, combining the physical and digital worlds to create a more immersive shopping experience. For example, when a customer buys a dress in real life, they also receive a digital wearable. This can be in the form of an AR filter, a digital skin in their favorite game, or to wear in the metaverse. 

    - - - -

    - - - -

    “Solaire’s mission is to empower the retail industry with web3 tools to cultivate a more connected and automated ecosystem,” Zhang continues. “With our suite of APIs, brands are able to maximize revenue and gain valuable data from digital assets, facilitate the secondary market, and build community.”

    - - - -

    - - - -

    Brands can then use Solaire as a powerful CRM tool. Through the digital twin in customers’ wallets, brands will have a constant open channel of communication with both the primary customer and secondary owners. Smart contracts also automate royalties from secondary selling, giving brands visibility into trading data.

    - - - -

    - - - -

    Another exciting feature is the secondary market experience brands can now provide. Solaire’s backend enables peer-to-peer physical asset trading without a middleman, utilizing blockchain-secured data and smart contracts. Buyers and sellers can independently confirm possession and authenticity of assets on-chain, and smart contracts resolve any disputes.

    - - - -

    Solaire and NEAR Building a Phygital Fashion Future

    - - - -

    “We’re building on NEAR because it champions community, and it’s one we have found to be incredibly supportive,” remarks Vivian Zhang, CEO of Solaire. “We’ve been able to connect and collaborate with so many partners as we build an entire retail ecosystem together on NEAR.”

    - - - -

    As fashion brands recognize the value of web3, NFTs, and phygital technology as important audience touchpoints, Solaire has the potential to partner with even more fashion brands and designers. Solaire’s game-changing approach and tech stack – aided by the NEAR blockchain – will bring web3 to more fashionistas without some of the usual pain points.

    - - - -

    “Together with NEAR, we hope to lay out the Web3 infrastructure for the retail industry to onboard the next billion users into web3,” concluded Zhang. 

    -

    The post How Solaire is Revolutionizing the Fashion Industry with Web3 Technology and Building the Retail Infrastructure on NEAR appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Keypom Brings Frictionless Onboarding to Near and Web3 - /blog/keypom-brings-frictionless-onboarding-to-near-and-web3/ - - - Thu, 23 Feb 2023 15:00:00 +0000 - - - - /?p=19764 - - A key roadblock to mass Web3 adoption is onboarding. People want to get into Web3 and crypto, but they don’t …

    -

    The post Keypom Brings Frictionless Onboarding to Near and Web3 appeared first on NEAR Protocol.

    -]]>
    - A key roadblock to mass Web3 adoption is onboarding. People want to get into Web3 and crypto, but they don’t know how. Seed phrases, private keys, smart contract transactions, technical knowledge and crypto jargon are massive barriers to Web3 entry. 

    - - - -

    With Keypom, that’s about to change. Keypom is a new zero friction onboarding protocol with a companion no-code app, built on Near. 

    - - - -

    Now users, regardless of their background, can experience the value of Near’s blockchain technology whether or not they have a wallet. Envisioned as a community-driven, public good — or a public utility — Keypom’s APIs (the Keypom Protocol) will be completely fee-free. The Keypom App will also allow non-developers to take full advantage of Keypom’s powerful wallet-less onboarding experiences.

    - - - -

    How Keypom’s frictionless onboarding works

    - - - -

    Debuting at NEARCON 2022, Keypom’s onboarding solution is entirely on-chain and non-custodial. It’s  run completely on the Near blockchain via Near smart contracts  — not on any centralized databases.

    - - - -

    Keypom allows Near and Web3 to function more like Web2, where developers and end-users alike can use applications without Web3’s usually confusing, tedious, time-consuming onboarding. For those looking to explore this technology, Keypom will offer an App, which is currently set to release at ETH Denver 2023. This app will give users and organizations the ability to easily create links to invite users to experience aspects of the Near blockchain without having to set up a wallet first.

    - - - -
    - -
    - - - -

    On other blockchains, users are commonly onboarded with pre-created, pre-loaded wallets. Keypom operates on the basis of Near’s unique access key model, which allows for much more flexibility in the end user-experience. 

    - - - -

    With Keypom, users are given a special type of access key that can be used to experience a crypto application and later be turned into a wallet. This key can be embedded within a simple Web2 style link that, once clicked, allows users to enter into a crypto experience, entirely on-chain and non-custodially. 

    - - - -

    Currently, Keypom experiences include receiving $NEAR, NFTs, Tickets to an event, or even dropping the user into a trial account with Near tokens to spend on a preset selection of apps. Once a user has enjoyed an experience with a Keypom link, they can upgrade to a full account and enjoy the entire Near ecosystem.

    - - - -

    For organizations that have experienced Keypom and choose to develop on top of their protocol, the Keypom SDK and Wallet Selector plugin allows for a seamless integration of Keypom’s technology into their own apps. Companies will be able to customize every aspect of the user experience to tailor their needs, all while using carefully designed plug-and-play libraries meant to abstract complicated processes for the developer. 

    - - - -

    Low-cost, customizable linkdrops

    - - - -

    Typically, linkdrops have been used to onboard developers and end-users looking to build on Near. The cost of creating 1,000 accounts via traditional means has been approximately 1,003 $NEAR. With Keypom, the costs for onboarding 1,000 users can fall to about 3.5 $NEAR. 

    - - - -

    “We imagine a world where decentralized applications use the Keypom Protocol to create truly immersive user experiences and specialize in specific use-cases spanning across the entire ecosystem,” says Keypom’s Ben Kurrek. “Companies can build anything from event ticketing to subscription-based payments and multi-sig tooling. While the Keypom App would still allow for users to experience these use-cases, it would be at a much smaller scope.”

    - - - -

    Keypom can be used, for instance, to automatically register users into a Decentralized Autonomous Organization (DAO) as part of the onboarding process. Another use case is for events ticketing. With Keypom, users wouldn’t need a wallet to enter an event, and would also be able to receive a POAP (Proof of Attendance Protocol) NFT.

    - - - -

    Perhaps one of the most powerful use cases is the ability for applications to use the Keypom protocol to give their users a free trial. After choosing an account name, the user is instantly signed in and can begin exploring and experiencing the app. Just like with gift cards and other vouchers, the funds can only be used on that dApp thus preventing the possibility for a rug to occur. Once the trial is over, the user can onboard fully with the added option of a payback condition for the funds that the dApp fronted. 

    - - - -

    In this new model, Keypom introduces a paradigm shift in Web3 where users experience crypto first and only focus on onboarding once they’ve seen the benefit and gained value.

    - - - -

    “We leave it to those building atop the Keypom Protocol to specialize and create applications however they see fit, such as charging custom fees,” says Keypom’s Matt Lockyer. “We’ve created a world where there are no limits and we simply provide the technology that unlocks these experiences.”

    - - - -

    For a full explanation on what is possible with Keypom’s customizable linkdrops, check out the Keypom Protocol README. Keypom developer documentation can be found here and Keypom Executive Summary here

    -

    The post Keypom Brings Frictionless Onboarding to Near and Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR and Dropt to Revolutionize Loyalty and Engagement - /blog/near-and-dropt-to-revolutionize-loyalty-and-engagement/ - - - Thu, 19 Jan 2023 16:00:00 +0000 - - - - /?p=19724 - - NEAR Foundation is excited to announce a new partnership with Dropt, focused on embedding Web3 technologies into customer loyalty and …

    -

    The post NEAR and Dropt to Revolutionize Loyalty and Engagement appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Dropt, focused on embedding Web3 technologies into customer loyalty and engagement programs. With ownership and interoperability being critical components in the next generation of the customer experience, Dropt chose to build on NEAR. Its compelling tech stack and powerful tooling offer Dropt the ideal foundation for delivering these features at scale and redefining “frictionless onboarding”.

    - - - -

    With Dropt, teams and enterprises can now easily and seamlessly introduce blockchain-powered loyalty and engagement mechanics into their customer journey. These Web3 features will help increase engagement, retention, and lifetime value without customers ever even knowing they are interacting with the blockchain. Customers simply use apps and sites just as they do today, but with new NFT-powered features. 

    - - - -

    NEAR and Dropt believe this is the key to mass adoption. Users are not interested in what is happening in the background—they simply want a fun experience that is engaging and rewarding. 

    - - - -

    For one of its first integrations, Dropt will be partnering with a NBA championship team, led by one of the most dominant players in the world. 

    - - - -

    Blockchain mechanics shift the paradigm for customer engagement

    - - - -

    By introducing NFTs to the customer journey, brands immediately integrate an incentive structure into the customer experience that elevates participation and engagement like never before. Branded marketplaces, where customers can interact with tokens, give users the ability to monetize their engagement with a brand.”With Dropt, NFTs can feature different kinds of perks and benefits. In this way, customers are better aligned with the brand’s and naturally become true evangelists.

    - - - -

    A changing landscape

    - - - -

    In an era where customer expectations are evolving and acquisition costs are rising, Dropt’s highly curated experiences enable brands to exceed these expectations. Let’s face it, loyalty is stale. Consumer expectations are shifting—people want to align themselves with brands that connect with authenticity and make consumers feel like part of a community.

    - - - -

    Dropt transforms the loyalty experience into a deeper, more community-based level of engagement, enabling brands to better connect with their communities. This not only modernizes how brands engage in this digital era, but also creates new acquisition channels.

    - - - -

    To capitalize on this opportunity, NEAR Foundation and Dropt believe user experience is vital. It’s unrealistic to expect customers to change their behavior, which is why Dropt and NEAR are working alongside cutting-edge authentication and gamification partners to build a web that’s both familiar and brings the best of what Web3 has to offer. 

    - - - -

    Dropt is confident that in partnering with the Foundation, mass adoption is NEAR.

    -

    The post NEAR and Dropt to Revolutionize Loyalty and Engagement appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR 2022: A Year in Review - /blog/near-2022-a-year-in-review/ - - - Fri, 23 Dec 2022 15:00:00 +0000 - - - - - - /?p=19607 - - It’s been a whirlwind year for NEAR – and it’s hard to believe that 2022 is coming to an end. …

    -

    The post NEAR 2022: A Year in Review appeared first on NEAR Protocol.

    -]]>
    - It’s been a whirlwind year for NEAR – and it’s hard to believe that 2022 is coming to an end. It’s been a year filled with massive milestones and achievements, including the biggest NEARCON ever, record-breaking new wallet creation, and much more.

    - - - -

    With 2023 around the corner, it’s a great time to reflect and take stock of all the exciting happenings and announcements that took place in 2022. NEAR Foundation congratulates every developer, community member, and partner that made 2022 a blast.

    - - - -

    Without further ado, here’s everything that happened with NEAR in 2022, how the ecosystem is successfully navigating bear market conditions, and why NEAR is primed for explosive growth heading into 2023!

    - - - -

    Protocol Progress and JavaScript SDK

    - - - -

    The last 12 months saw huge progress on the protocol level, with an exciting roadmap charting the course for 2023 and beyond. From staking upgrades to new developer tools, the NEAR protocol made huge strides in onboarding new builders and the next 1 billion users.

    - - - -

    NEAR introduced the brand new JavaScript SDK, enabling developers to build on NEAR using the most popular programming language in the world. Brendan Eiche, the inventor of JavaScript and co-founder of privacy-first browser Brave, even joined a panel at NEARCON to discuss the new SDK, Brave’s new support of Aurora, and why he’s excited about NEAR.

    - - - -

    NEAR also saw the introduction of meta-transactions, allowing third parties to pay transactions for the transaction cost of any account. Users can then be onboarded to NEAR apps without owning any NEAR tokens. Meta transaction development will continue through next year and will be critical to new wallet growth.

    - - - -

    Stake Wars’ latest iteration also began in 2022, marking another step towards decentralizing the network. Stake Wars will increase the total number of validators as chunk-only producers for the next phases of sharding. The chunk-only producer role will be more accessible to new validators who don’t have sufficient $NEAR to run a Block Producer node.

    - - - -

    Phase 1 of Nightshade Sharding Commences

    - - - -

    Stake Wars was a critical step in the transition from Simple Nightshade to Phase 1 of sharding in 2022. As Phase 1 continues, total validators will increase from around 100 to 300, with a significantly lower seat price. Phase 1 was crucial to facilitate scaling, improve decentralization, and bring the Open Web to mass adoption.

    - - - -

    There will be an 86% decrease in collateral requirements to become a chunk-only producer as Phase 1 of Nightshade concludes in 2022 and continues into the next year. Phase 1 went live on mainnet in September 2022 with key contributions and assistance from the Pagoda team.

    - - - -

    As NEAR co-founder Illia Polosukhin told CoinDesk in the lead-up to the Phase 1 roll-out, “the more users the network gets, the more decentralized the network gets as well.” This allows NEAR to add more validators in response to more demand for the network, delivering on the promise of speed, scalability, and efficiency. 

    - - - -

    Major Strides in Funding and Transparency

    - - - -

    A thriving NEAR ecosystem requires resources and trust, both of which made major strides. The birth of Transparency Reports assured the community that all core stakeholders in NEAR are operating in good faith and from a position of financial strength. These reports provide important information about the health of the protocol and ecosystem, including staking distribution, daily transactions, and new accounts created. (Read the Q3 Transparency Report.)

    - - - -

    NEAR Foundation CEO Marieke Flament also hosted a post-FTX AMA, re-assuring the ecosystem of NEAR’s runway and explaining why the current bear market is a time for a conviction to build.

    - - - -

    To see how NEAR Foundation and other ecosystem funding projects have been distributing portions of the $800M in funding throughout 2022, check out Q1/Q2 and Q3 Transparency Reports. Key areas of funding include Proximity Labs and DeFi, DAOs, NFT infrastructure, and Regional Hubs. The NEAR Digital Collective (NDC) was also announced and launched at NEARCON, with one of the goals being to further decentralize and democratize grants giving and decision-making processes.

    - - - -

    Ecosystem Growth

    - - - -

    NEAR’s 2022 was one of huge growth and innovation. New partnerships like Sweatcoin and SailGP were major stepping stones toward bringing Web3 to the masses. Projects in areas such as gaming, music, and NFTs showcased that the NEAR ecosystem is thriving and poised for new heights in 2023.

    - - - -

    The NEAR protocol experienced 15x growth in cumulative accounts over the past year with 22M+ today. NEAR also has 900K monthly active wallets, marking a major increase from this time last year. And in 2022, the NEAR ecosystem generated $330M of external capital in projects building on NEAR. 

    - - - -

    Movement Economy

    - - - -

    One of the biggest catalysts for new NEAR wallet and account creation was the partnership with Sweatcoin. The $SWEAT token rewards users for every step they take throughout the day, encouraging users to live healthy lifestyles. Sweatcoin migrating to NEAR pushed total wallets from 2 million at the beginning of the year to over 20 million by November. As Flament pointed out during the Sweatcoin keynote at NEARCON, the movement economy is in its infancy, and NEAR is poised to be a leader in the space with the help of Sweatcoin.

    - - - -

    DAO Innovation

    - - - -

    Another huge addition to the NEAR ecosystem was the world-renowned boat racing league, SailGP. SailGP partnered with NEAR to pioneer the intersection of sports, Web3, and Decentralized Autonomous Organizations (DAOs). In addition to offering NFT collectibles on the NEAR blockchain to fans, SailGP will use AstroDAO tooling to create the first fan-owned team as a DAO. In addition to the growth of ecosystem projects like Kin DAO for equity and inclusion, it was a banner year for NEAR and DAOs.

    - - - -

    Blockchain Music

    - - - -

    You may not have noticed, but 2022 saw a massive surge in interest about music and Web3. And one of the most innovative projects in this area was in the NEAR ecosystem, with the launch of Endlesss. The music creation, marketing, and community development platform’s NEAR integration went live in the summer as a virtual gathering place blending social media features with music production tools. Endlesss enables musicians of all skill levels to conduct “jam sessions” on the NEAR blockchain and mint their music as NFTs. 

    - - - -

    Gaming

    - - - -

    The NEAR ecosystem got a huge dose of star power with the unveiling of Armored Kingdom. Backed by Hollywood star Mila Kunis, Armored Kingdom will be an immersive gaming, NFT, storytelling, and metaverse experience built on the NEAR blockchain. The project kicked off with a first edition NFT comic book airdrop at Consensus, Austin. NEAR also announced the launch of the South Korea Regional Hub with a focus on bringing the NEAR blockchain to the massive local game development community. 

    - - - -

    PlayEmber also established itself as a key player in the NEAR gaming ecosystem, taking a mobile-first approach to Web3 gaming and bringing advertisers into the space. PlayEmber’s games now have over 4.2 million monthly active users, and recently closed a $2.3 million pre-seed raise led by Shima Capital.

    - - - -

    NFTs

    - - - -

    With core NFT infrastructure maturing in the NEAR ecosystem, 2022 was a year of innovative use cases and groundbreaking projects. NEARCON saw the announcement of a key grant to Few and Far, a premium NFT marketplace on NEAR with a seamless UX and simple minting solutions. One of NEAR’s biggest NFT projects, Mintbase, received over $12 million in funding this August. Mintbase empowers niche creators with the ability to mint NFTs of any type with little technical know-how, exemplifying NEAR’s commitment to making Web3 easy for everyone.

    - - - -

    Looking Ahead

    - - - -

    From the launch of Phase 1 sharding to protocol upgrades and ecosystem growth, 2022 was a huge leap for the NEAR ecosystem in many respects. It’s the year that the “Create Without Limits” vision was introduced, the biggest NEARCON ever took place, and some of the most important partnerships in the history of NEAR were cemented. It was also a year in which NEAR committed to more transparency and communication with the community.  

    - - - -

    Looking forward, NEAR will continue to champion Web3 as a catalyst for change, in addition to environmental sustainability as a carbon-neutral blockchain. In 2023, the NEAR community can expect even more partnerships that push boundaries and support projects that will enhance and empower a prosperous NEAR ecosystem.

    -

    The post NEAR 2022: A Year in Review appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Strategic Update and Outlook for 2023 - /blog/near-strategic-update-and-outlook-for-2023/ - - - Thu, 15 Dec 2022 14:32:27 +0000 - - - - - - - /?p=19581 - - The recent stream of news clearly demonstrates that the world needs Web3. Trust in legacy institutions is breaking down, individual …

    -

    The post NEAR Strategic Update and Outlook for 2023 appeared first on NEAR Protocol.

    -]]>
    - The recent stream of news clearly demonstrates that the world needs Web3. Trust in legacy institutions is breaking down, individual privacy and individual freedom are equally at risk, and the major Web2 platforms we use every day have become monopolies that focus on profit, not people. 

    - - - -

    Yet Web3 also hasn’t fully delivered on its promise to open the web. While important progress has been made, much more needs to be done for this technology to deliver fairer, freer digital systems. Today’s Web3 suffers from inaccessible user experience, siloed applications which are difficult to discover, few real-world use cases, and technology tribalism. Put simply, too much hype and not enough value for users. 

    - - - -

    Since 2018, NEAR has focused on building scalable, secure technology and infrastructure that is easy to use and enables developers to freely create usable applications. Since launching Mainnet in late 2020, the NEAR ecosystem has made incredible progress, becoming one of the top layer-one blockchains with 22 million accounts, 600K monthly active wallets (active defined as 2+ transactions), and 15x growth in users and projects just in the last year. And despite chaos in the market and a major downturn in recent months, NEAR Foundation has sufficient capital to sustain at least five years of operations in bear market conditions thanks to responsible treasury management. 

    - - - -
    - - - -

    While Web3 has yet to deliver on its promises, NEAR Foundation believes that NEAR is the only ecosystem where Web3 promises can be delivered and where mainstream adoption can happen. All the fundamentals have been established for some time and NEAR is charging full-speed ahead into its next growth phase in 2023. This post will cover NEAR’s convictions heading into next year, the strategic approach to drive our next phase, and a look ahead at new areas of product and development. 

    - - - -

    Fundamentals and Convictions

    - - - -
      -
    • NEAR has the best technology in Web3. Provably scalable, easy to onboard and use, developer friendly, secure, and decentralized, with the most advanced account model and onboarding in the blockchain space. 
    • - - - -
    • NEAR has world-class talent and ample runway. From the core teams at the Foundation and Pagoda, to the incredible NEAR Foundation Council and advisors, to the diverse group of brilliant entrepreneurs building companies, apps, and funds on NEAR, some of the best talent in the world is here on NEAR. And thanks to the Foundation’s responsible treasury management, core ecosystem operations and funding are well-positioned to run for many years to come. 
    • - - - -
    • Achieving mainstream adoption is about users. Not TVL, not flashy headlines, not cultish maximalism. NEAR focuses on what matters for the long term and the bear market will separate the high quality projects from the ones fueled mostly by hype. 
    • - - - -
    • Web 2.5 will get us there. Sweatcoin proved that NEAR can support an app with tens of millions of users on open web infrastructure. This is the next phase of adoption: helping another generation of Web2 apps and communities take advantage of the opportunities Web3 offers while providing a richer, more sustainable experience to their users. 
    • -
    - - - -

    Strategic Approach

    - - - -
    - - - -

    Enabling NEAR to make the most of these convictions in today’s climate means committing to the following goals over the next year. 

    - - - -

    Growing usage on NEAR will begin with a top-down approach focused on partnerships. The world-class business development team at the Foundation will focus on working with major applications and brands with substantial, established communities to partner with NEAR on real use cases that drive engagement, such as ticketing and earning. High-traction focus verticals include sports, entertainment, and loyalty. Major partnerships in recent months include Grupo Nutresa, Google Cloud, and Sweat Economy

    - - - -

    Any great Web3 ecosystem is an emergent product of a dedicated community of believers. The bottom-up, grassroots approach for the next year on NEAR will empower the community to invest in its own expansion through grants, primarily through 3 major community DAOs: Developer DAO, Marketing DAO, and Creatives DAO (visit the DAO websites to get involved). This means the NEAR Foundation will no longer directly allocate capital to projects, instead supporting the community in these decisions and further decentralizing key elements of the ecosystem. These grassroots DAOs will be supported by the NDC, which has achieved initial traction, including launching a new Governance Working Group and plans to roll out a v1 governance infrastructure for the ecosystem early next year.

    - - - -

    In the new year, the NEAR Foundation will form an early-stage accelerator that will provide support to promising projects and founders on NEAR in areas including education, tech, hiring, legal, UX, and GTM guidance, setting them up to grow into the landmark Web3 projects of tomorrow. 

    - - - -

    Looking Ahead 

    - - - -

    With NEAR’s protocol, infrastructure, and developer tooling already well established, the next step in providing the best user experience to Web3 will be at the discovery layer: the connective tissue that connects applications, tooling, social, earning, and developer components across the open web. This stack is what we call a “blockchain operating system.”

    - - - -
    - - - -

    Many of the building blocks of the blockchain operating system already exist on NEAR, either as features or apps. These include NEAR Crowd, a gig economy platform with 50% of users transacting every day, and NEAR Social, an on-chain social network with a widget framework that lets developers fork entire app frontends to build new experiences. Combined with upcoming improvements to onboarding, including from EVM wallets (which we’re calling remote accounts), native meta transactions, Keypom, and new chat/social capabilities, NEAR will deliver even more amazing value directly to developers and users. 

    - - - -

    All of these user-centric elements further up the stack, particularly at the app layer, will form the basis for a core component of the NEAR ecosystem’s product and technical focus in 2023. Pagoda, NEAR Foundation, and other key ecosystem participants will work together to deliver the best possible technology with an increasingly integrated and seamless experience for developers and end users. The goal from here is evolving NEAR to be more than just a layer-one blockchain: it will become a global blockchain operating system. It’s still early days, but building is underway and the vision is clear. 

    - - - -

    NEAR is Now 

    - - - -

    NEAR is the place where mainstream adoption of the open web will happen. Soon, anyone in the world—app users, developers, founders, creators—will be able to create without limits.

    - - - -

    - - - -

    Thank you for reading our NEAR 2023 Strategy Blog Post and/or participating in the NEAR Go Forward Strategy Twitter AMA! If you have questions or comments we would love to hear them!

    - - - -

    -

    The post NEAR Strategic Update and Outlook for 2023 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Introducing SeatlabNFT: The Web3 Startup Changing the Ticketing Game  - /blog/introducing-seatlabnft-the-web3-startup-changing-the-ticketing-game/ - - - Thu, 27 Oct 2022 09:38:58 +0000 - - - - /?p=18720 - - Music, sports, and entertainment ticketing is about to be completely reimagined. SeatlabNFT, an NFT ticketing platform built on the NEAR …

    -

    The post Introducing SeatlabNFT: The Web3 Startup Changing the Ticketing Game  appeared first on NEAR Protocol.

    -]]>
    - Music, sports, and entertainment ticketing is about to be completely reimagined. SeatlabNFT, an NFT ticketing platform built on the NEAR blockchain, is bringing fans closer to their favorite artists and sports teams, while also making the ticketing game a lot fairer by reducing scalping and touting.

    - - - -

    NFTs in sports and entertainment are becoming more widespread and high-profile. Professional athletes and musicians love flexing their profile pic NFTs these days. But there are more meaningful ways to use NFT technology in the Web3 space. This is precisely SeatlabNFT’s aim: use NFTs and the underlying technology to revolutionize ticketing.

    - - - -

    How NFTs can make ticketing fairer

    - - - -

    A major long-standing issue in the ticketing industry is control over the secondary market. Tickets to popular events often sell out in a matter of minutes—often due to scalpers and ticket wholesalers—only to reappear on the secondary market at a significant markup. It’s an unfortunate reality that many music and sports fans have come to accept.

    - - - -

    “While various ideas to beat scalpers have been tried in the past, Web2 lacks the tools required to provide genuine control over the secondary market,” wrote Ryan Kenny, CEO of SeatlabNFT, in a recent op-ed for City A.M

    - - - -

    “The result, in many cases, is that fans are unable to see the performers they love without paying extortionate amounts of money,” he added. “And, with the profit falling into the hands of scalpers, artists miss out on any revenue generated by secondary sales.”

    - - - -

    The SeatlabNFT live event and ticketing platform, built on NEAR, has a clear plan to solve those issues. Artists will be able to mint and sell tickets directly to fans on SeatlabNFT, while those who purchase will avoid scalper markups. And unlike buying a ticket in today’s secondary market, NFT technology will ensure that the ticket they buy isn’t fraudulent.

    - - - -

    “With the arrival of Web3, there is a huge opportunity to change this dynamic by issuing tickets as NFTs,” wrote Kenny. “NFT technology is a natural fit for ticketing, as it solves many main problems plaguing the event ticketing industry.”

    - - - -

    But maintaining fair pricing and putting more revenue into the pockets of creators themselves is just the tip of the iceberg. SeatlabNFT has other ideas for how to use NFTs to change the ticketing landscape.

    - - - -

    Creating more profound relationships with fans

    - - - -

    SeatlabNFT has big plans to help artists and teams make the fan experience much more fun, immersive, and bi-directional. Fans and attendees will feel less like consumers being sold an experience, and more like active participants. SeatlabNFT’s NFT platform will open doors and opportunities to increase fan engagement and loyalty.

    - - - -

    For starters, artists will be able to create, issue, and sell NFT collectibles associated with various live events. This goes beyond images, as NFTs can also exist on the blockchain in the form of audio recordings, videos, and other forms of digital artwork. These event-associated NFTs could be airdropped on demand, displayed online, or traded with the same smart contracts used to control the secondary market for tickets. 

    - - - -

    Creators can also airdrop event-based NFTs or collectibles using SeatlabNFT smart contracts, rewarding some of the best and most loyal fans who attend live events. For instance, a musical artist could airdrop NFTs to fans who have been to multiple live shows, with their attendance verified by the blockchain. This gives creators the chance to issue everything from digital collectibles to utility NFTs that grant things like discounts on merch, early access to future sales or even unlock on-site perks like access to restricted areas or free food and drink.

    - - - -

    Ticket royalty splits and price ceilings

    - - - -

    Underpinning all of these NFT ticketing value propositions is SeatlabNFT’s smart contracts that enable royalty splits (on NEAR, royalty splits are baked into smart contracts) and price ceilings. Royalty splits and price ceilings give artists and event organizers the tools they need to fight back against scalping. It allows creators to configure the tickets before they go on sale, and ensures that even on the secondary market, event creators can still capture the value they create.  

    - - - -

    With these cutting-edge ticketing efforts, SeatlabNFT is working to create a fairer, more transparent, and equitable playing field for all parties.

    - - - -

    What’s next for SeatlabNFT

    - - - -

    SeatlabNFT is currently in Phase 2 of its roadmap, with a variety of features and functions already live. The SeatlabNFT app is downloadable on the Apple App Store and Google Play Store, with tickets to various events currently on sale. 

    - - - -

    The SeatlabNFT membership card available on the app is also a precursor to the Immersive Fan Pass, an NFT-based fan membership card program exclusively on SeatlabNFT. These passes will be NFTs with various tiered utility and benefits that artists can offer as part of an immersive fan club package. Backstage passes, early access to demo tracks, and artist meet-and-greets are just a few potential ways the Immersive Fan Pass could be used.

    - - - -

    SeatlabNFT also just announced a new partnership with Elrow, one of the world’s biggest dance brands. At Elrow’s Dubai festival, scheduled for February 18, 2023 , SeatlabNFT technology will be used for exclusive VIP ticketing and immersive experiences. Elrow Dubai is taking place at D3 Dubai Design District, which can accommodate up to 10,000 people, making it a great opportunity to onboard many new people into both NEAR and Web3.

    - - - -
    - -
    - - - -

    The ticketing industry and experience are long overdue for disruption, and SeatlabNFT is well on the way to doing just that. Artists, creators, and sports teams can offer more fair pricing to their fans while receiving a greater share of the revenue via SeatlabNFT’s royalty split smart contracts. And fans get better pricing with the peace of mind that they’re purchasing an authentic ticket.

    - - - -

    And even more exciting, integrating NFT technology into the ticketing space opens the door for limitless possibilities in connecting fans with their favorite artists and teams. Linking exclusive digital NFT collectibles and airdrops with tickets is ripe for experimentation, and the Immersive Fan Pass will engage fans on a level never before seen.

    -

    The post Introducing SeatlabNFT: The Web3 Startup Changing the Ticketing Game  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR & Gaming: The Future of Gaming on Web3 - /blog/near-gaming-the-future-of-gaming-on-web3/ - - - Mon, 22 Aug 2022 15:00:00 +0000 - - - /?p=18007 - - Most people when asked why they play games will give a simple answer: because games are fun. And though “fun” …

    -

    The post NEAR & Gaming: The Future of Gaming on Web3 appeared first on NEAR Protocol.

    -]]>
    - Most people when asked why they play games will give a simple answer: because games are fun. And though “fun” might mean different things to different people, with Web3 gaming, at least in its present form, “fun” is only sometimes part of the equation. 

    - - - -

    “We tend to conflate games with fun, but the thing is, a game doesn’t necessarily have to be fun to be engaging,” says Chase Freo, CEO and Co-founder of OP Games. “There are a lot of different games out there that evoke different types of emotions.”

    - - - -

    Though many gamers have a keen sense of what they enjoy and want to see more of, Web3 gaming’s direction will be determined not only by what is fun, but also by what developers and gamers realize is possible through experimentation. 

    - - - -

    Freo compares Web3 gaming to couture fashion season, when designers and runway models often show styles that stretch the limits of taste and the imagination. Think enormous hats, clothes made of garbage, and costumes that would seem extreme even at Burning Man. This couture fashion isn’t meant for the street—it’s made to see what’s possible.

    - - - -

    In Web3 gaming, the goal isn’t necessarily to make or viral iconic games, but to plant the seeds for what games might one day be able to do. This starts with the technology itself.

    - - - -

    Web2.5: The bridge to Web3

    - - - -

    “A lot of times people sacrifice player experience to have a Web3 spin to it—that makes sense,” says Freo, who says gaming needs developers willing to experiment and try new things to evolve the ecosystem. “For example, bring[ing] game states on-chain [is] not optimal…but you kind of want to push it that way, so that you’ll see exactly where you can draw the line.” 

    - - - -

    Freo explains that there are generally two camps of developers: Web2 game designers who focus on gameplay, and devs who really push the envelope with blockchain but sacrifice playability in the process.

    - - - -

    “Most games in Web3 are actually a combination of Web2 and Web3, so it’s like Web2.5,” says Freo. “[They combine] aspects of what works on the blockchain [and] everything else is centralized because it works better.” 

    - - - -

    Hugo Furneaux and Jon Hook at playEmber, a game-fi middleware company that brings Web3 to Web2 mobile games, echo Freo’s “Web2.5” view. Furneaux, playEmber’s CEO, describes the platform as “an amalgamation” of Web2 and Web3, where developers make extremely fun games while on-ramping Web2 users into Web3. They simply play games they already know and love with Web3 features that are low-key. 

    - - - -

    “There’s an added element now, which makes it more fun, where you can just put in your email [and] we do all the rest in the background,” he says. “And it sets up your NEAR wallet and you’re playing, effectively, a Web3 game but as a Web2 user.”

    - - - -

    Getting gamers to board the Web3 train

    - - - -

    At the forefront of Web3 gaming is NEAR’s Human Guild. Created in early 2021 by Sasha Hudzilin and Vlad Grichina, both early builders on NEAR, their approach is simple: easy onboarding and gamers earning by doing what they love. 

    - - - -

    “The mission is to help people earn in crypto and join the online economy,” says Hudzilin. 

    - - - -

    Human Guild also helps game designers develop their ideas, launch on mainnet, improve their products, and generally expand an already strong, supportive community of game developers. This makes Human Guild a vital resource within the NEAR ecosystem. 

    - - - -

    “[We] provide support starting with the concept of the game, designing economic upside for the community to get involved, DAO creation, bootstrap community engagement, consider foundries, share initial MVP with the community, and involve influencers,” says Hudzilin. 

    - - - -

    “We know Web3 can be difficult to navigate,” he adds. “So, we want to make sure people are not discouraged and can get the best out of this space.”

    - - - -

    Indie versus AAA game studios in Web3 

    - - - -

    Currently the most popular Web3 games feature around 200,000 active wallets, says Hudzilin, and there are only a few of them. By comparison, Web2 mobile games can have over 100 million users, and in some cases one billion users. Truly, these early days demand that designers think differently about what games are and what they can be. 

    - - - -

    Perhaps because of Web3 games’ relatively low numbers, most of the creativity in game development comes from smaller indie studios. Not unlike the music, film, or book publishing industries, bigger budget games from AAA studios tend to be more formulaic (and less likely to take risks). This makes some sense, as AAA studios are often more pressed to turn a profit and follow previously successful models. However, Web3’s low market saturation does have its advantages. 

    - - - -

    “If you do launch, you’re almost bound to succeed,” says Hudzilin, who notes the bar for success is about 10k users giving the game a shot. “Especially in an ecosystem like NEAR where very few things have gone live so far.”

    - - - -

    Human Guild is starting to focus more on smaller indie game developers, as they can deliver on smaller budgets with more creative spark. The idea is that this creativity will carry over into the future of Web3 gaming. Crypto games are labors of love and passion projects. Some developers even sacrifice career stability for their projects. 

    - - - -

    “Sometimes they live below the poverty line, which is kind of crazy because they’re very talented developers,” says Hudzilin. “And so we work with some of them.”

    - - - -

    While most pure Web3 games don’t have mass market appeal, many companies are trying hard to make that happen. PlayEmber, for instance, is all about mass market appeal with their “hyper casual” gaming experiences that look very much like Web2 mobile games. With Ember Coin, playEmber offers a “play and earn” model where gamers don’t even need to think about earning cryptocurrency. Their goal is ambitious: to onboard a million new crypto wallets within a year once their games are live on EmberCoin. 

    - - - -

    Bridges to the physical world 

    - - - -

    There is also a real hunger to see games interfacing with the physical world. Endlesss, a live collaborative music creation platform inspired by game mechanics, recently showcased one possibility at NFT.NYC: a MIDI-enabled arcade game. Although arcades are niche, this experience opened a door to other Web3 physical integrations and in-person social interactions.

    - - - -

    For playEmber’s Jon Hook, the Web3 bridge to the physical world could feature partnerships with big brands for retail experiences. 

    - - - -

    “Imagine partnering with Nike: you’re playing a game and hidden within the game are magic loot boxes,” he muses. “When you find one, it actually unlocks sneakers. It’s a little NFT so that when you go into the Nike store, you redeem it. It’s kind of like gamifying retail.”

    - - - -

    This is, of course, in addition to designing and buying NFT avatars and using them across a gaming or Web3 ecosystem. Just like in the physical world, Furneaux envisions an experience where  “you change moods, you change styles, you change clothes, so why shouldn’t you be able to change your NFT to reflect that too?”

    - - - -

    NFTs are also useful for re-engagement. Jon Werthen Jr. at ARterraLabs envisions players earning in-game NFTs, then using them as an entry fee for gaming tournaments or a token to redeem real-world prizes. 

    - - - -

    A tapestry of visionaries

    - - - -

    One thing that Web3 gaming has going for it is the abundance of visionaries. No doubt a crucial ingredient for crypto gaming’s future.

    - - - -

    Human Guild’s Vlad Grichina, for instance, imagines a world where massive multiplayer games keep running forever on the blockchain—especially games from the 2000s and 2010s that disappeared because server costs were just too high for game studios. How? A separate group of validators would essentially run that part of the blockchain.

    - - - -

    “As long as a community is interested in this kind of game, it should continue,” Hudzilin says. 

    - - - -

    Futuristic possibilities aside, currently Human Guild is gearing up for NEARCON where the NEARCON Gaming Lounge will have up to 20 playable versions of games. This is as much about research as it is entertainment, as the Human Guild will use NEARCON metrics to measure things like retention. 

    - - - -

    Despite the visionary nature of many Web3 game developers, there is little certainty about what it will look like in the future. Will personal computers still dominate Web3 games? Can mobile developers break past gatekeepers like Apple’s App Store? Will consoles jump aboard? What about virtual reality? It is likely to be some combination of all of these, but only time will tell. 

    - - - -

    It’s likely that Web3 game developers, on NEAR’s carbon neutral protocol or others like it, will redefine what is possible. This is something that current and future gamers alike can look forward to.

    -

    The post NEAR & Gaming: The Future of Gaming on Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/nfts/index.html b/public/blog/tag/nfts/index.html deleted file mode 100644 index 858624ca9..000000000 --- a/public/blog/tag/nfts/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NFTs Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/nfts/page/2/index.html b/public/blog/tag/nfts/page/2/index.html deleted file mode 100644 index fb5b0594d..000000000 --- a/public/blog/tag/nfts/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NFTs Archives – Page 2 of 3 – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/nfts/page/3/index.html b/public/blog/tag/nfts/page/3/index.html deleted file mode 100644 index 9bd210712..000000000 --- a/public/blog/tag/nfts/page/3/index.html +++ /dev/null @@ -1,2 +0,0 @@ -NFTs Archives – Page 3 of 3 – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/nightshade/feed/index.xml b/public/blog/tag/nightshade/feed/index.xml deleted file mode 100644 index 755917bd4..000000000 --- a/public/blog/tag/nightshade/feed/index.xml +++ /dev/null @@ -1,261 +0,0 @@ - - - - Nightshade Archives – NEAR Protocol - - /blog/tag/nightshade/ - - Tue, 30 Jan 2024 14:33:23 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Nightshade Archives – NEAR Protocol - /blog/tag/nightshade/ - 32 - 32 - - - Phase 2 of NEAR Sharding Launches - /blog/phase-2-of-near-sharding-launches/ - - - Tue, 30 Jan 2024 14:33:22 +0000 - - - - - - - /?p=21200 - - The NEAR Foundation announced today that the Protocol Work Group will launch testing for Phase 2 of Sharding this week, …

    -

    The post Phase 2 of NEAR Sharding Launches appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation announced today that the Protocol Work Group will launch testing for Phase 2 of Sharding this week, marking a major milestone in the network’s development roadmap. Phase 2 introduces fundamental upgrades to NEAR’s core protocol architecture, enabling even greater scalability and decentralization for the network. The fourth edition of Stake Wars, an incentivized community testing initiative, will kick off on February 1.  

    - - - -

    NEAR’s vision of chain abstraction to facilitate broad adoption of decentralized apps requires an extremely scalable blockchain layer. From the start, NEAR has been designed to scale with demand towards mainstream adoption. A primary benefit of the new sharding implementation will be an up-to-10x speed improvement to NEAR’s already-fast transaction throughput. Sharding is NEAR’s unique approach to scaling, which partitions the blockchain into multiple parallel “shards.” Combined with NEAR already having the lowest transaction fees in Web3, this sharding upgrade positions NEAR at the forefront of Web3 in terms of both performance and scalability. Phase 2 greatly improves the network’s capacity for end user volume and is an important landmark on the road to global-scale usage of Web3. 

    - - - -

    “NEAR continues to make progress on bringing Chain Abstraction infrastructure that can scale to a billion users and beyond,” said Illia Polosukhin, Co-Founder of NEAR Protocol and CEO of NEAR Foundation. “The scalability improvements from stateless validation can unlock even better user experiences for more end-user applications, whether multichain DeFi-style dapps or those aimed at mainstream users.”

    - - - -

    Phase 2 introduces the most significant changes to the NEAR Protocol since its Mainnet launch in 2020. The biggest of these is the implementation of stateless validation: an innovative approach to state change, or the process of updating the status of all the data posted to the blockchain. Now, NEAR validators no longer have to maintain the state of a shard locally and can retrieve all the information they need to validate state changes, or “state witness,” from the network. 

    - - - -

    With stateless validation, NEAR can finally achieve the truest form of sharding, where shards can function mostly independently at the consensus level to improve decentralization and throughput while preserving the highest security guarantees. An added benefit is that the hardware requirements to run most validator nodes are dramatically reduced (a smaller number of “chunk proposer” validators with specialized hardware will validate blocks with state held in memory). This also paves the way for greater decentralization of the network by lowering the barrier to entry to become a validator.

    - - - -

    “We’re very excited about the potential for future proofing the NEAR protocol design with stateless validation,” said Bowen Wang, Director of Protocol at Pagoda. “From a research perspective, we expect that as zero-knowledge tech matures, more protocols will adopt a similar approach, where a smaller set of expensive machines execute transactions and produce proofs, while a bigger validator set validates the proofs. This will enable more unified security across networks and defragment Web3, advancing a key aspect of the chain abstraction vision.” 

    - - - -

    Phase 2 is a shift in direction from the original Nightshade sharding architecture NEAR launched with in 2020, bypassing some fundamental roadblocks in that protocol design around the implementation of challenges in the initial idea of Phase 2, while also unlocking additional benefits. Other network improvements in Phase 2 include in-memory trie, wherein validator nodes can load the entire state into RAM for maximized performance. This will greatly improve transaction throughput thanks to minimizing storage access. 

    - - - -
    Phase 2 is the third major upgrade to NEAR Protocol’s sharding since Mainnet launch in October 2020, showcasing the incredible shipping speed of the protocol engineering team.
    - - - -

    - - - -

    NEAR users should not experience any downtime with the transition to Phase 2 and no special action is required from validators, apart from adjusting hardware specs. Through dozens of protocol upgrades since Mainnet launch, including three major upgrades, the core NEAR protocol has had 100% uptime with zero disruption for developers and end users. 

    - - - -

    On Thursday, February 1, Stake Wars IV: Attack of the Transactions will launch to incentivize battle testing of the new sharding architecture. Planned to run through March 31, the latest edition of Stake Wars invites community members to test features and generate traffic. For more information about participating and deeper technical detail about Phase 2, visit the Stake Wars page on Github

    - - - -

    With the launch of Phase 2, NEAR becomes one of the only networks in Web3 to implement stateless validation to improve scaling and paves the way for further network performance and scalability improvements in the future roadmap. A technical paper with more detail about NEAR’s new sharding design is forthcoming later in Q1. Phase 2 is expected to launch on NEAR Mainnet in May 2024.

    -

    The post Phase 2 of NEAR Sharding Launches appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Q4 Protocol Roadmap Update - /blog/near-q4-protocol-roadmap-update/ - - - Fri, 12 Jan 2024 19:23:37 +0000 - - - - - - - /?p=21155 - - TLDR: 2023 saw major experience improvements via meta transactions and zero-balance accounts, as well as node performance improvements and optimizations. Preparations are underway for a major upgrade to stateless validation, completing Phase 2 of the sharding roadmap in early 2024.

    -

    The post NEAR Q4 Protocol Roadmap Update appeared first on NEAR Protocol.

    -]]>
    -
    By Bowen Wang, Director of Protocol

    In this post, the NEAR Protocol work group would like to provide an update of the protocol roadmap to show what we accomplished in 2023 and what is planned for 2024.

    - - - -

    TLDR: 2023 saw major experience improvements via meta transactions and zero-balance accounts, as well as node performance improvements and optimizations. Preparations are underway for a major upgrade to stateless validation, completing Phase 2 of the sharding roadmap in early 2024.

    - - - -

    What we accomplished in 2023

    - - - -

    There were a total of six protocol upgrades in 2023 which introduced a number of new protocol features. Meta transactions were added as a protocol feature at the beginning of the year to support gasless transactions, which means that users can transact on NEAR and start using apps without necessarily needing to pay transaction fees in NEAR. We also added zero-balance accounts, an important feature that enables users to create an account without holding NEAR to pay for storage. This makes it easy to onboard new users to applications. These two features form a solid foundation for a seamless onboarding experience for end users — a top goal for NEAR overall.

    - - - -

    In addition to easy user onboarding, we have also been working hard to optimize the performance of NEAR. Flat storage, which was released in Q2 this year, optimized state reads and improved the stability and performance of the network overall. Another feature that optimizes NEAR nodes is cold storage, which allows for a split between hot and cold storage for a node. This means an archival node does not need to store most of the historical data on SSD and therefore can save a lot on cost. We also optimized the network communication between validator nodes by introducing the tier1 network, which reduces the latency of network messages between two validator nodes. Furthermore, we improved state sync and reduced the time it took a node to synchronize the latest state. We have also worked on improving the stability and maintainability of contract runtime with initiatives like finite wasm and limited replayability.

    - - - -

    There are a few major initiatives that we started this year and expect to finish next year, such as stateless validation, congestion control, and transaction priority. We will dive deeper into those in the section below.

    - - - -


    Plans for 2024

    - - - -

    There are a few major projects that we want to deliver in 2024 to improve the usability, scalability, and decentralization of NEAR Protocol:

    - - - -
      -
    • Stateless validation. Stateless validation is a major initiative that we have been working on for a few months. It adjusts the original Nightshade sharding design to avoid implementing fraud proofs while improving the performance of each shard significantly by putting state in memory. The stateless validation work is expected to be delivered in Q2 2024, which would also mark the completion of the original goal we set for Phase 2 of sharding. We expect the launch of stateless validation to also dramatically increase the throughput of each shard and prepare NEAR for the continued growth of usage.
    • - - - -
    • Congestion control and transaction priority. While NEAR’s sharding design is horizontally scalable, it is important to provide a good user experience when there is short-term congestion on the network. This includes localizing congestion so that gas price increase does not affect the entire network and allowing users to prioritize their transactions during congestion if they are willing to pay more in transaction fees.
    • - - - -
    • Support for account aggregation. Account aggregation allows a user to control accounts on different chains with one NEAR account, an important pillar of the chain abstraction vision for NEAR. It requires chain signatures, which does MPC to sign payload. This requires a new runtime API to facilitate the asynchronous nature of chain signatures.
    • - - - -
    • zkWASM. We have been working on zkWASM with the Polygon team for a few months and the work will continue in 2024. The goal is to build a prover for WebAssembly smart contracts. This could be used as a part of the initiative to prove the state transition of NEAR in a ZK proof. Moreover, zkWASM also provides wasm as an alternative execution environment to EVM for L2s.
    • - - - -
    • Data availability improvements. We launched NEAR DA in early November 2023 and there are a few things that we plan to work on to further improve the efficiency of NEAR DA. Those improvements include introducing KZG commitment to avoid having data availability fraud proofs, as well as real-time bridging to allow verification of data availability on Ethereum.
    • - - - -
    • Ethereum wallet support. Supporting wallets like MetaMask natively on NEAR allows us to attract more users to NEAR and also be more Ethereum aligned. This requires changes to the protocol to support Ethereum addresses natively and support processing of RLP serialized Ethereum transactions.
    • - - - -
    • Research into the future of sharding. There are two major directions of exploration: synchronous sharding and ZK-centric sharding. Synchronous sharding enables synchronous execution of smart contracts and addresses the developer experience pain point of having to deal with asynchronous execution. ZK-centric sharding leverages zero-knowledge proofs to validate state transition of different shards and improves the scalability and decentralization of the protocol. In addition, we will also research the next and final phase of sharding: dynamically adjusting the number of shards based on usage.
    • -
    - - - -

    The roadmap can be seen below for those interested in more timeline specifics. It is split into two parts: Experience and Core. The Experience section encompasses user and/or developer experience and the protocol features needed to enable those experiences. As an example, synchronous execution addresses the pain point that developers feel when they implement cross-contract calls.

    - - - -
    - - - -


    The Core section, on the other hand, covers major efforts to improve the scalability and decentralization of the protocol. This includes stateless validation, zkWASM, improvements to data availability, and so on.

    - - - -
    - - - -



    As always, the protocol team is proud to have made several important improvements to the core protocol with zero disruption for users and developers. We look forward to making some major advancements in 2024 to help the entire NEAR ecosystem deliver its vision of mainstream adoption of an Open Web, where all internet users can control their own data, assets, and power of governance. 

    We will share more details on Phase 2 advancements and timelines soon. If you’d like to learn more, join the NEAR Protocol X Spaces on Tuesday, January 16 at 5pm UTC to hear from Director of Protocol Bowen Wang and NEAR Foundation CEO Illia Polosukhin on upcoming protocol developments.

    -

    The post NEAR Q4 Protocol Roadmap Update appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Blockchain Scaling Approaches: NEAR Sharding vs. Layer 2s - /blog/blockchain-scaling-approaches-near-sharding-vs-layer-2s/ - - - Wed, 14 Jun 2023 15:00:00 +0000 - - - - /?p=20626 - - Layer-twos (L2s) have become increasingly popular as a scaling solution for layer one (L1) blockchains in the past several years, …

    -

    The post Blockchain Scaling Approaches: NEAR Sharding vs. Layer 2s appeared first on NEAR Protocol.

    -]]>
    - Layer-twos (L2s) have become increasingly popular as a scaling solution for layer one (L1) blockchains in the past several years, especially after Ethereum decided to scale via a rollup-centric roadmap. A layer-two is a protocol built on top of an existing blockchain to improve its scalability, throughput, or privacy and reduce the congestion and cost of operating on the L1 blockchain. NEAR, on the other hand, chose to scale through a different approach: sharding. In this post, I’ll explain the rationale behind NEAR’s approach and why NEAR does not plan to scale through layer 2.

    - - - -

    To understand the differences in scaling approaches, let’s first take a look at how layer 2s work. Generally speaking, layer 2s work by performing state transitions outside of (or off-chain from) the layer 1 they build on and committing state roots and transaction data to the underlying layer 1. Depending on how exactly the state transitions are verified, these may be optimistic rollups, which rely on fraud proofs, or ZK rollups, which use zero-knowledge proofs to show the validity of the layer 2 state transition.

    - - - -

    The premise of scaling through rollups is that a rollup has higher throughput than the underlying L1 due to decreased consensus overhead; there could be many rollups running as their own chain and processing different transitions. The underlying L1 provides security for rollups as a settlement layer, and rollups offer scalability in return. This offloads the significant challenge of scalability onto a protocol that exists outside of the L1 and therefore simplifies the L1 protocol design. Ethereum, for example, is well known for its plan to scale through rollups such as Arbitrum, Optimism, ZkSync and Polygon zkEVM.

    - - - -

    How well does this promising design approach work in practice? While it may still be too early to say, given that Ethereum is the only major blockchain adopting this approach and that L2s themselves are relatively nascent, there are lessons to be learned already. First, composability between layer 2s is a problem. While each rollup itself has higher throughput than Ethereum, rollups lack the native interoperability that allows contracts from different rollups to interact with each other. Each one can only interact with the Ethereum L1. Composability is especially important for financial applications and is arguably what makes the Ethereum L1 so successful. 

    - - - -

    Second, while in theory rollups should work together to scale Ethereum, in practice the overall scaling achieved by rollups collectively is not much more than what one rollup offers. That is mostly due to the fact that popular Ethereum dapps run on almost all rollups and as a result, similar transactions are “duplicated” across different rollups. The transactions to use DeFi applications such as Uniswap on different rollups actually compete for call data space on Ethereum for data availability.

    - - - -

    In contrast, NEAR scales through sharding, or parallelizing the network into partitions that are built into the protocol itself, with the same security guarantees of the L1 blockchain. NEAR’s architecture is, in some sense, similar to Ethereum with rollups, where each shard is similar to an optimistic rollup. The difference is that because sharding is built into the protocol, applications on one shard can natively interact with applications on another shard. The homogeneous sharding model also means that two apps interact in the same way regardless of whether or not they are deployed on the same shard. As a result, not only do developers not need to care about which shard to deploy their applications on, they also have the peace of mind that their application can freely interact with any other application deployed on NEAR without having to resort to third-party bridges. 

    - - - -

    While composability is a nontrivial advantage of NEAR’s sharding approach, it is not all NEAR has to offer. Fast finality on NEAR means that users can be confident that their transactions are finalized in two to three seconds. In the rollup world, however, transaction finality is much worse. Optimistic rollups are known for their long exit time (usually 7 days) and ZK rollups are bottlenecked on proof generation, which takes up to 10 minutes today. Furthermore, in NEAR’s sharding model, since both processing and state are completely sharded, the throughput almost scales linearly with the number of shards. Thanks to the native composability mentioned above, developers and users truly benefit from the scalability as one application is only deployed once on one shard, unlike the current state of rollups where many popular applications have to be deployed on many rollups, which reduces the amount of true parallelism in transaction processing.

    - - - -

    This is not to say, however, that NEAR’s approach is superior. Sharding makes the protocol very complex, hard to understand, and difficult to implement. In comparison, the rollup-centric approach taken by Ethereum has a relatively simple design, even though it still requires data availability sharding (Danksharding) for layer 2s to work efficiently.

    - - - -

    Ultimately, the different choices on scaling approaches reflect different design philosophies of the underlying protocol. Ethereum wants the protocol itself to be maximally robust and resilient and therefore it is important to minimize the complexity of the L1 protocol design. NEAR, on the other hand, prioritizes simplicity for developers and users and is willing to make the protocol more complex under the hood for the sake of a better experience for its users.

    - - - -

    It is worth noting that NEAR is not just a blockchain protocol, but an operating system that offers a common layer for browsing and discovering open web experiences and is compatible with any blockchain. Despite the differences in protocol design, NEAR as the blockchain operating system allows developers and users from different blockchains, including Ethereum layer 2s, to build and use applications across many different blockchain ecosystems. 

    -

    The post Blockchain Scaling Approaches: NEAR Sharding vs. Layer 2s appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/nightshade/index.html b/public/blog/tag/nightshade/index.html deleted file mode 100644 index 66865acf4..000000000 --- a/public/blog/tag/nightshade/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Nightshade Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/okrs/feed/index.xml b/public/blog/tag/okrs/feed/index.xml deleted file mode 100644 index f7d1398e2..000000000 --- a/public/blog/tag/okrs/feed/index.xml +++ /dev/null @@ -1,201 +0,0 @@ - - - - OKRs Archives – NEAR Protocol - - /blog/tag/okrs/ - - Fri, 13 Jan 2023 15:53:57 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - OKRs Archives – NEAR Protocol - /blog/tag/okrs/ - 32 - 32 - - - NEAR Foundation & Pagoda Goals and Target Metrics for 2023 - /blog/near-foundation-pagoda-goals-and-target-metrics-for-2023/ - - - Fri, 13 Jan 2023 15:53:04 +0000 - - - - /?p=19718 - - Building on the 2023 strategy for NEAR Foundation and Pagoda shared here at the end of last year, the goal …

    -

    The post NEAR Foundation & Pagoda Goals and Target Metrics for 2023 appeared first on NEAR Protocol.

    -]]>
    - Building on the 2023 strategy for NEAR Foundation and Pagoda shared here at the end of last year, the goal of this post is to share the specific objectives and target metrics that will make this vision a reality. 

    - - - -

    All NEAR ecosystem OKRs for 2023 distill to a single North Star: the goal of 10 million monthly active accounts (MAAs) by the end of the year. This is approximately 12x growth from today’s 800K MAAs (the all-time high was around 900K) and puts NEAR solidly on the path to achieve mainstream adoption in the next few years. The Foundation and Pagoda have chosen to focus on MAAs because they believe user adoption is the best indicator that NEAR is providing real value to end users today with monthly frequency and eventually weekly or daily. 

    - - - -

    During 2023, NEAR will transform from a Layer-1 blockchain into the Blockchain Operating System, connecting applications, tooling, social, earning, and developer components across the Open Web. With product development of NEAR Discovery, the bottom-up community approach, the top-down partnerships growth strategy from NEAR Foundation, and continued iteration on the best user experience and onboarding in Web3, each team in Pagoda and NEAR Foundation will contribute to overall growth in usage over the next year. 

    - - - -

    The following OKRs (objectives and key results) are the guideposts for each team in 2023.

    - - - -

    NEAR Foundation Goals for 2023

    - - - -

    What does success look like for NEAR Foundation at the end of this year?

    - - - -
      -
    • NEAR is the blockchain operating system: brand, marketing -
        -
      • 100% of content and processes running on NEAR Discovery
      • - - - -
      • 30% of NEAR community is using Discovery
      • - - - -
      • 3M Twitter followers and 2x increase in SOV (share of voice)
      • -
      -
    • - - - -
    • NEAR is a thriving decentralized ecosystem: community, legal, accelerator -
        -
      • NDC and 3 community DAOs set up with core contributors and legal structure
      • - - - -
      • 50+ NPS score from community 
      • - - - -
      • $250M in external capital flowing into minimum of 100 projects
      • -
      -
    • - - - -
    • NEAR is transforming the best Web2 projects: BD -
        -
      • 5M+ MAAs added to NEAR through minimum of 3 major partnerships
      • - - - -
      • 12+ landmark partnership agreements
      • - - - -
      • 24+ tier-2 partnership agreements 
      • - - - -
      • -
      -
    • -
    - - - -

    By the end of 2023, NEAR Foundation will have transformed NEAR into a blockchain operating system, made possible through NEAR Discovery, fostering an even more thriving decentralized ecosystem with more MAAs, major partnerships, and external capital inflow.

    - - - -

    Pagoda OKRs

    - - - -

    What does success look like for Pagoda at the end of this year? 

    - - - -
      -
    • NEAR has the best-in-class protocol and infrastructure: core, protocol, security -
        -
      • 100% on-chain availability and security to support product growth
      • -
      -
    • - - - -
    • NEAR has solutions that support millions of users: solutions & product -
        -
      • 10+ partnerships integrated with companies of 1M+ users, 100K+ MAA growth
      • -
      -
    • - - - -
    • NEAR onboards and retains millions of users: product, Discovery, DevOps -
        -
      • 20%+ month-over-month growth in MAAs
      • - - - -
      • 25% 8-week retention and K-factor greater than one
      • - - - -
      • 20% month-over-month growth in Monthly Active Developers (MADs), with 20% growth in used components and component retention
      • -
      -
    • -
    - - - -

    By the end of the year, Pagoda will have created NEAR Discovery and other solutions and products for developers, while growing partnerships and monthly active developers and accounts. 

    - - - -

    Note on Metrics

    - - - -

    Different NEAR teams have tracked various metrics to measure success at different points, but a macro goal for 2023 is to unify progress measurement across the organization. The decision to focus on Monthly Active Accounts reflects two critical points: first, that accounts will be a more accurate measure than wallets in NEAR Discovery thanks to improvements in onboarding, and second, that NEAR cannot provably track unique users because of the default privacy of Web3––many users have several accounts to handle different types of activity. 

    - - - -

    NEAR’s goal since the first NEARCON in 2021 has been to get to a billion users within five years, or in 2026. While a high number of daily active users (DAA) will be necessary for achieving a billion users, the NEAR ecosystem is not there yet––daily usage will require many successful apps and seamless user journeys between them, which is the goal for NEAR Discovery. Over time, NEAR Foundation and Pagoda expect to begin tracking more granular metrics such as Daily Active Accounts, accounts that use more than one app, and retention across apps. 

    - - - -

    2023: The Year of NEAR 

    - - - -

    NEAR is the best-positioned ecosystem in Web3 to achieve mainstream adoption in 2023 despite difficult market conditions. With NEAR Foundation, Pagoda, and the community working towards concrete, shared goals and a common vision, the ecosystem will be better aligned with clearer paths to contribution. The Foundation will continue delivering on its commitment to communicate often about its activities and progress.

    - - - -

    Watch on Twitter and NEAR Social for progress updates on these goals in Q1 as well as a public dashboard for easier tracking of target metrics soon. 

    -

    The post NEAR Foundation & Pagoda Goals and Target Metrics for 2023 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/okrs/index.html b/public/blog/tag/okrs/index.html deleted file mode 100644 index d87a2cb4a..000000000 --- a/public/blog/tag/okrs/index.html +++ /dev/null @@ -1,2 +0,0 @@ -OKRs Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/onmachina/feed/index.xml b/public/blog/tag/onmachina/feed/index.xml deleted file mode 100644 index faa0e0e93..000000000 --- a/public/blog/tag/onmachina/feed/index.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - OnMachina Archives – NEAR Protocol - - /blog/tag/onmachina/ - - Tue, 06 Jun 2023 15:20:45 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - OnMachina Archives – NEAR Protocol - /blog/tag/onmachina/ - 32 - 32 - - - Case Study: OnMachina’s Jonathan Bryce on Building Decentralized Storage for an Open Web - /blog/case-study-onmachinas-jonathan-bryce-on-building-decentralized-storage-for-an-open-web/ - - - Mon, 05 Jun 2023 16:00:00 +0000 - - - - /?p=20559 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: OnMachina’s Jonathan Bryce on Building Decentralized Storage for an Open Web appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. 

    - - - -

    The NEAR Case Studies content vertical made a return recently with a case study featuring Pagoda Chief Product Officer Alex Chiocchi, talking about the BOS.

    - - - -

    For the next entry in the NEAR Case Study series, OnMachina co-founder Jonathan Bryce talks about building decentralized infrastructure on NEAR — specifically, developing decentralized storage for an open web.

    - - - -
    - -
    -

    The post Case Study: OnMachina’s Jonathan Bryce on Building Decentralized Storage for an Open Web appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/onmachina/index.html b/public/blog/tag/onmachina/index.html deleted file mode 100644 index b76d184ee..000000000 --- a/public/blog/tag/onmachina/index.html +++ /dev/null @@ -1,2 +0,0 @@ -OnMachina Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/open-web/feed/index.xml b/public/blog/tag/open-web/feed/index.xml deleted file mode 100644 index 760e21ca7..000000000 --- a/public/blog/tag/open-web/feed/index.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - Open Web Archives – NEAR Protocol - - /blog/tag/open-web/ - - Thu, 14 Sep 2023 08:37:12 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Open Web Archives – NEAR Protocol - /blog/tag/open-web/ - 32 - 32 - - - Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  - /blog/cosmose-ai-harnesses-the-open-web-and-near-with-kaikainow/ - - - Thu, 14 Sep 2023 00:00:00 +0000 - - - - - - /?p=20877 - - Cosmose AI, the global platform that uses AI to predict and influence how people shop offline is launching a new …

    -

    The post Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  appeared first on NEAR Protocol.

    -]]>
    - Cosmose AI, the global platform that uses AI to predict and influence how people shop offline is launching a new piece of technology designed to disrupt the smartphone lock screen experience. 

    - - - -

    Called KAIKAINOW, it brings together artificial intelligence and blockchain to help users stay informed and engaged with the world around them without the hassle of unlocking their phones. 

    - - - -

    KAIKAINOW, an opt-in technology, sits on a user’s home screen. It offers a variety of curated content, including news, language learning, games, and trending stories which would be interspersed between users’ very own personal wallpaper pictures.

    - - - -

    “We check our smartphone lock screens on average 80 times a day, always seeing the same  wallpaper backdrop. Imagine, instead of seeing the same image over and over again you see it every other time, while enjoying personalized content during remaining interactions,” says Miron Mironiuk, Founder and CEO of Cosmose AI. 

    - - - -

    KAIKAINOW changes that by harnessing cutting edge AI technology, and pairing it with open web tools found on the NEAR blockchain to ensure the experience is tailored to the user while always adhering to the highest privacy standards.

    - - - -

    “The launch of KAIKAINOW by COSMOSE AI shows how far we’ve come in respects to transforming Web3 from an innovative idea to a something that can deliver real world benefits to consumers, while also helping foster brand loyalty and business growth in the retail space,” says Marieke Flament, CEO of the NEAR Foundation. 

    - - - -

    “We are thrilled to align ourselves with such a fantastic, rapidly growing tech firm such as Cosmose AI and look forward to seeing how it will truly transform the world of retail and get the world closer to Web3 mass adoption.”

    - - - -

     

    - - - -

    Blockchain meets AI 

    - - - -

    Publishers and brands provide the content and KAIKAINOW enhances the experience by allowing users to unlock rewards via KAI-CHING, a native token pegged to the US Dollar built on the NEAR Protocol. These tokens can then be used to access exclusive offers only available to KAIKAINOW users. 

    - - - -

    Thanks to KAI-CHING, shoppers and retailers benefit from shorter payment processing time and significantly lower fees.

    - - - -

    By building both consumer products and its token on NEAR protocol, Cosmose AI is accelerating its Web3 offerings with one of the world’s leading, open source blockchain platforms and further advancing the AI-driven retail ecosystem.

    - - - -

    To date, Cosmose AI has served over 20 million stores and reached one billion phones globally. The integration of NEAR technologies means that Cosmose can ensure that users maintain complete control over their data and benefit from the ecosystem they help create. This approach ensures the highest level of privacy for users and aligns with the Company’s commitment to user safety.

    - - - -

    Blockchain’s digital record, paired with NEAR’s open web tooling, means AI services can help improve trust in data integrity and, by extension, in the recommendations that AI provides. Using blockchain to store and distribute AI models provides an audit trail, and pairing blockchain and AI can enhance data security. 

    - - - -

    NEAR is helping partners like Cosmose AI harness these tools to create better products that serve customers and partners equally. 

    -

    The post Cosmose AI Harnesses the Open Web and NEAR with KAIKAINOW  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/open-web/index.html b/public/blog/tag/open-web/index.html deleted file mode 100644 index 647280753..000000000 --- a/public/blog/tag/open-web/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Open Web Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/oracles/feed/index.xml b/public/blog/tag/oracles/feed/index.xml deleted file mode 100644 index 0cde51ad7..000000000 --- a/public/blog/tag/oracles/feed/index.xml +++ /dev/null @@ -1,90 +0,0 @@ - - - - Oracles Archives – NEAR Protocol - - /blog/tag/oracles/ - - Thu, 30 Nov 2023 12:38:26 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Oracles Archives – NEAR Protocol - /blog/tag/oracles/ - 32 - 32 - - - Pyth Price Feeds Launch on NEAR Protocol Bringing Equity, Commodities, and Market Data On Chain  - /blog/pyth-price-feeds-launch-on-near-protocol-bringing-equity-commodities-and-market-data-on-chain/ - - - Thu, 30 Nov 2023 14:00:00 +0000 - - - - - /?p=21126 - - Pyth, the largest first-party provider of real-time market data for crypto, equities, FX, and commodities to more than 40 blockchains, …

    -

    The post Pyth Price Feeds Launch on NEAR Protocol Bringing Equity, Commodities, and Market Data On Chain  appeared first on NEAR Protocol.

    -]]>
    - Pyth, the largest first-party provider of real-time market data for crypto, equities, FX, and commodities to more than 40 blockchains, has launched on NEAR protocol. Pyth, whose services are used by more than 80 market participants — including Jane Street, CBOE, Binance, OKX, and Bybit — brings high-fidelity, high frequency financial market data to the NEAR blockchain natively for the first time.

    - - - -

    Previously, Pyth had deployed its feeds to Aurora, the EVM chain built on NEAR. But today Pyth data feeds are fully compatible with NEAR Protocol.   

    - - - -

    The announcement is a boon to the burgeoning DeFi ecosystem built on top of NEAR, which stands to benefit from data feeds that update every 300 milliseconds.

    - - - -

    While other oracle providers use third-party data providers or relayers, Pyth’s data comes from institutions directly. Additionally, Pyth does not use price triggers to prevent certain prices from being pushed. Pyth uses Confidence Intervals to ensure continuous price availability. This new metric allows projects to consume Pyth’s price feeds during the most volatile market conditions.

    - - - -

    The Importance of Oracles 

    - - - -

    Oracles are an important part of any DeFi ecosystem, since they are the information bridges between blockchains and databases. Although oracles could be built by the developers of DeFi projects, out-of-box, decentralized oracles are helpful for builders to start quickly without losing time and effort creating their own oracles. 

    - - - -

    “Celebrating a new era of data reliability and trust, Douro Labs is thrilled to announce the seamless integration of Pyth Network with the NEAR blockchain,” says Abhimanyu Bansal, Head of Partnerships at Douro Labs. 

    - - - -

    “This strategic partnership empowers developers on NEAR with real-time, accurate data feeds, and as we bridge the gap between the physical and digital worlds this integration propels us towards a future of decentralized applications that are not only secure but also truly informed.”

    - - - -

    Pyth has a robust network that is able to deliver price data even during sizable events. During the LUNA/UST incident in May ‘22, Pyth managed to track the LUNA price very accurately during the UST de-peg, while other networks stopped updating the price, causing inaccurate price data. 

    - - - -

    In less than a year since Pyth’s launch, the network secured more than $2.0B in total value. Pyth has facilitated over $70 billion in trading volume and received over a million client downloads from passionate developers. Pyth supports 350+ low-latency price feeds across digital assets, equities, ETFs, forex pairs, and commodities. 

    -

    The post Pyth Price Feeds Launch on NEAR Protocol Bringing Equity, Commodities, and Market Data On Chain  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/oracles/index.html b/public/blog/tag/oracles/index.html deleted file mode 100644 index ddb057ed3..000000000 --- a/public/blog/tag/oracles/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Oracles Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/pagoda-product-roadmap/feed/index.xml b/public/blog/tag/pagoda-product-roadmap/feed/index.xml deleted file mode 100644 index 5f0782c54..000000000 --- a/public/blog/tag/pagoda-product-roadmap/feed/index.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - Pagoda Product Roadmap Archives – NEAR Protocol - - /blog/tag/pagoda-product-roadmap/ - - Thu, 19 Oct 2023 15:25:46 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Pagoda Product Roadmap Archives – NEAR Protocol - /blog/tag/pagoda-product-roadmap/ - 32 - 32 - - - Check Out the Pagoda Product Roadmap - /blog/check-out-the-pagoda-product-roadmap/ - - - Thu, 19 Oct 2023 14:00:00 +0000 - - - - /?p=20986 - - Over the past year, Pagoda has been working hard to build out the B.O.S, evolve near.org, and continue developing the …

    -

    The post Check Out the Pagoda Product Roadmap appeared first on NEAR Protocol.

    -]]>
    - Over the past year, Pagoda has been working hard to build out the B.O.S, evolve near.org, and continue developing the NEAR protocol. While Pagoda has built and launched proprietary services in the past, almost all of our work so far in 2023 and planned for the future is free open-source software,  which we intend to become vital parts of the NEAR ecosystem. We want the community to be aware of, excited by, and engaged in this work. 

    - - - -

    So I’m excited to announce that Pagoda is making its product roadmap public this week via GitHub. It’s honestly a bit overdue. Given our values of transparency and collaboration, we hope to involve more members of the community in the development process. We also hope this lets teams across the NEAR ecosystem plan ahead a bit better, build in parallel to Pagoda, and even get ideas for what to build based on what you feel is missing or should be prioritized. 

    - - - -

    Right now this roadmap covers the rest of 2023 and we are committing to update the roadmap at least quarterly. The roadmap on GitHub is arranged into several views covering both the company objectives (OKRs) as well as larger workstreams (initiatives). We’ve further organized our roadmap views by product vertical and priority level, along with status and expected delivery date (which the product leads will update in real time). You may see some roadmap items displayed as “private”; this is because certain partnerships and enterprise workstreams must remain under NDA or embargo until launch. The Pagoda team will continue to iterate on this roadmap tool to make it an even richer resource for ecosystem partners and the NEAR community.

    - - - -

    Delivering on the Open Web vision will take contributions far beyond Pagoda and we look forward to working alongside those who are as passionate about NEAR as we are. Please explore and leave comments or questions on the NEAR Social post – or on the roadmap itself – if you have feedback. 

    - - - -


    -Eric Winer, CTO Pagoda

    -

    The post Check Out the Pagoda Product Roadmap appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/pagoda-product-roadmap/index.html b/public/blog/tag/pagoda-product-roadmap/index.html deleted file mode 100644 index 84c44130b..000000000 --- a/public/blog/tag/pagoda-product-roadmap/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Pagoda Product Roadmap Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/pagoda/feed/index.xml b/public/blog/tag/pagoda/feed/index.xml deleted file mode 100644 index 47b5e0667..000000000 --- a/public/blog/tag/pagoda/feed/index.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - Pagoda Archives – NEAR Protocol - - /blog/tag/pagoda/ - - Thu, 19 Oct 2023 15:25:46 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Pagoda Archives – NEAR Protocol - /blog/tag/pagoda/ - 32 - 32 - - - Check Out the Pagoda Product Roadmap - /blog/check-out-the-pagoda-product-roadmap/ - - - Thu, 19 Oct 2023 14:00:00 +0000 - - - - /?p=20986 - - Over the past year, Pagoda has been working hard to build out the B.O.S, evolve near.org, and continue developing the …

    -

    The post Check Out the Pagoda Product Roadmap appeared first on NEAR Protocol.

    -]]>
    - Over the past year, Pagoda has been working hard to build out the B.O.S, evolve near.org, and continue developing the NEAR protocol. While Pagoda has built and launched proprietary services in the past, almost all of our work so far in 2023 and planned for the future is free open-source software,  which we intend to become vital parts of the NEAR ecosystem. We want the community to be aware of, excited by, and engaged in this work. 

    - - - -

    So I’m excited to announce that Pagoda is making its product roadmap public this week via GitHub. It’s honestly a bit overdue. Given our values of transparency and collaboration, we hope to involve more members of the community in the development process. We also hope this lets teams across the NEAR ecosystem plan ahead a bit better, build in parallel to Pagoda, and even get ideas for what to build based on what you feel is missing or should be prioritized. 

    - - - -

    Right now this roadmap covers the rest of 2023 and we are committing to update the roadmap at least quarterly. The roadmap on GitHub is arranged into several views covering both the company objectives (OKRs) as well as larger workstreams (initiatives). We’ve further organized our roadmap views by product vertical and priority level, along with status and expected delivery date (which the product leads will update in real time). You may see some roadmap items displayed as “private”; this is because certain partnerships and enterprise workstreams must remain under NDA or embargo until launch. The Pagoda team will continue to iterate on this roadmap tool to make it an even richer resource for ecosystem partners and the NEAR community.

    - - - -

    Delivering on the Open Web vision will take contributions far beyond Pagoda and we look forward to working alongside those who are as passionate about NEAR as we are. Please explore and leave comments or questions on the NEAR Social post – or on the roadmap itself – if you have feedback. 

    - - - -


    -Eric Winer, CTO Pagoda

    -

    The post Check Out the Pagoda Product Roadmap appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/pagoda/index.html b/public/blog/tag/pagoda/index.html deleted file mode 100644 index bfd1f56d5..000000000 --- a/public/blog/tag/pagoda/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Pagoda Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/partners/feed/index.xml b/public/blog/tag/partners/feed/index.xml deleted file mode 100644 index a72d9fe44..000000000 --- a/public/blog/tag/partners/feed/index.xml +++ /dev/null @@ -1,387 +0,0 @@ - - - - Partners Archives – NEAR Protocol - - /blog/tag/partners/ - - Wed, 26 Apr 2023 10:19:54 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Partners Archives – NEAR Protocol - /blog/tag/partners/ - 32 - 32 - - - NEAR Foundation PR Roundup for March - /blog/near-foundation-pr-roundup-for-march/ - - - Fri, 31 Mar 2023 14:29:22 +0000 - - - - - /?p=20350 - - The NEAR ecosystem is ending March on several extremely high notes, from partnerships and community events to unfolding initiatives.  NEAR …

    -

    The post NEAR Foundation PR Roundup for March appeared first on NEAR Protocol.

    -]]>
    - The NEAR ecosystem is ending March on several extremely high notes, from partnerships and community events to unfolding initiatives. 

    - - - -

    - - - -

    NEAR strengthened its India and Southeast Asia presence, widened its gaming footprint — and of course, introduced the Blockchain Operating System (BOS). 

    - - - -

    Here are all the key happenings from a massive March.

    - - - -

    NEAR unveils itself as the Blockchain Operating System (BOS)

    - - - -

    Coindesk broke the biggest news of March, announcing NEAR as the Blockchain Operating System (BOS) at ETHDenver. NEAR will now be the common layer for browsing and discovering open web experiences in an industry-first category. The BOS makes NEAR the entry point for both web2 and web3, enabling easy web3 access and navigation for users and devs.

    - - - -

    - - - -

    The BOS adds composable frontends to NEAR’s tech stack, simplifying onboarding and enhancing development from a collection of over 1,800 components. In only a few lines of code, builders from any ecosystem can create custom components and benefit from quick onboarding to help construct their web3 applications.

    - - - -

    - - - -

    “The iOS provides developers a place to show their app in front of billions of users, and it gives them all the services and the infrastructure underneath to build,” NEAR co-founder Illia Polosukhin told CoinTelegraph. “We’re trying to give the platform underneath and let developers build.”

    - - - -

    An alpha version of the BOS is now available for both users and developers to test at alpha.nearpages.wpengine.com.

    - - - -

    Near at ETHDenver Highlights: the BOS, NEAR Day, and more

    - - - -

    Exciting times for NEAR at ETHDenver, with a capacity crowd and jam-packed NEAR booth as the ecosystem engaged with builders from around the world. NEAR’s presence included a range of, including OnMachina on Web3 storage, Keypom for Web3 onboarding, and the Sweat Economy. Not to mention the BOS being first introduced to the world by Illia.

    - - - -

    - - - -

    Let’s also not forget the over 1,000 people in attendance for NEAR Day, a one-day mini-summit for all things NEAR. Other big highlights out of ETHDenver included premium NFT platform Few & Far raising $30 million, the very first session unveiling the BOS, and Flowcarbon’s new carbon-market ecosystem built on the NEAR blockchain.

    - - - -

    Arpit Sharma joins as Managing Director for eastward expansion

    - - - -

    March also saw the appointment of Arpit Sharma as the Managing Director for India, South East Asia, and the Middle East regions. His focus will be on expanding the NEAR ecosystem’s presence in those regions, bringing a wealth of experience and expertise from a wide array of industries, solutions, and use cases.

    - - - -

    - - - -

    Sharma’s web3 experience extends from the metaverse and NFTs to supply chain tracking and stablecoins. He sees enormous potential in regions and countries like India and the Middle East, believing that Web3 can be used to connect, collaborate and change the world. Regional hubs in India, Vietnam, and Korea should see a huge boost with Sharma on board.

    - - - -

    Korean web3 gaming in focus with BORA and WEMADE 

    - - - -

    Next, NEAR set its sights firmly on the Korean gaming sector as Yahoo! Finance reported a new partnership with BORA gaming, the first of two such agreements. A subsidiary of METABORA, the two will explore new frontiers of web3 adoption in Asia and beyond. Both entities are affiliated with Kakao Games and bring a wealth of IP and gaming expertise into NEAR’s orbit.

    - - - -

    - - - -

    Together, NEAR and METABORA will work to identify global IP-based web3 joint ventures. This means leveraging BORA’s existing gaming catalog and future development capabilities to bring fun and interactive web3 games to the world. And per Business Insider, the NEAR Korean Hub should be an enormous beneficiary as the partnership progresses.

    - - - -

    - - - -

    On top of that, MarketWatch reported the new relationship between NEAR and global web3 gaming company WEMADE, also based out of South Korea. The partnership will leverage WEMAKE’s over 20 years of experience in the gaming industry, as well as its WEMIX 3.0 mainnet for advanced blockchain services.

    - - - -

    - - - -

    “We’re thrilled to be partnering with WEMADE as part of our shared vision towards a decentralized future for the gaming industry,” added Marike Flament, CEO of NEAR. “By joining forces, we are confident in our ability to accelerate the development of cutting-edge solutions that meet the growing needs of gamers and developers in the web3 space.”

    - - - -

    Popp’s web3 customer engagement platform launches on NEAR

    - - - -

    Finally, small-to-medium-sized business owners are about to get exciting new tools for customer engagement using web3 and NEAR. Popp, a web3 customer engagement solution-as-a-service, announced that it will launch its white-label service exclusively on NEAR.

    - - - -

    - - - -

    Popp lets businesses set up micro-tasks called “Popps,” which reward users when completed. Actions like retweets and reviews are rewarded with Popp’s native token that can be redeemed for vouchers, discounts, experiences, and more.

    - - - -

    - - - -

    March was certainly a whirlwind month for NEAR, with the BOS taking the ecosystem into the next era of web3 usability. And not to mention NEAR Day at ETHDenver being a rousing success. NEAR will continue to forge ahead at full steam in April, but if we missed anything that happened in March the community should hear about, don’t hesitate to let us know!

    -

    The post NEAR Foundation PR Roundup for March appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR and Popp Partner on Customer Engagement for Small Businesses - /blog/near-and-popp-partner-on-customer-engagement-for-small-businesses/ - - - Fri, 24 Mar 2023 16:00:00 +0000 - - - - /?p=20311 - - NEAR Foundation is excited to announce a new partnership with Popp, a company helping small businesses generate better customer engagement …

    -

    The post NEAR and Popp Partner on Customer Engagement for Small Businesses appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Popp, a company helping small businesses generate better customer engagement using Web3 technology. 

    - - - -

    As part of the partnership, Popp — a solution-as-a-service (SaaS) for small-to-medium consumer brands — will launch its white-labeled tools and products exclusively on NEAR. 

    - - - -

    How Popp works for small businesses

    - - - -

    Popp helps consumer brands launch micro community spaces for customers, which are embedded in their online stores. Milestone-based customer rewards then drive more engagement for brands. The NEAR partnership will, for instance, allow Popp’s customers to issue NFTs when certain milestones are met. 

    - - - -

    - - - -

    On Popp, brands can build deeper, more meaningful connections with customers by rewarding them across multiple touch points. Through these bespoke projects, Popp has already generated over £57k in revenue ($69k USD) in six months via six pilot partners. 

    - - - -

    - - - -

    Popp has two interfaces. On the business side, each brand gets its own custom dashboard, where they control its loyalty and rewards program and see customer data. On the customer side, users can see all of the user activity in one place, like new members and the number of “Popps” that are live or completed. Customers can also create and interact with content — the more they interact with the community, the more coins they can earn. 

    - - - -

    - - - -

    Popp’s customer brands include Batch LDN, perl Cosmetics, Acid Running, Jenki Matcha, and Ocean Bottle

    - - - -

    What’s a Popp? 

    - - - -

    A Popp is a small task set by a brand for customers. If customers complete the task, they earn coins that can be used to redeem rewards or unlock experiences. 

    - - - -

    - - - -

    Each brand can set a variety of Popps for their customers, which are micro-tasks that generate value for the brand. This can include creating content, leaving reviews, or referring friends. Completing various Popps give users things like discounts and vouchers, but brands can also set up popps for charity, sustainability, and much more.

    - - - -

    - - - -

    Through Popp’s “Partnerships” feature, brands can make coins redeemable for rewards from partnering bands. This feature even allows companies to “invite” brands to partner with them for these rewards.  Each customer gets their own user profile, through which they can see the number of coins they’ve collected, and explore where to redeem rewards.

    - - - -

     

    - - - -

    Head over to Popp to explore the company’s customer rewards ecosystem. Popp’s closed beta is now live and e-commerce brands should head over to the website now to join the waitlist! 

    -

    The post NEAR and Popp Partner on Customer Engagement for Small Businesses appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation PR Roundup for February - /blog/near-foundation-pr-roundup-for-february/ - - - Tue, 28 Feb 2023 20:15:32 +0000 - - - - - /?p=19788 - - As February draws to a close, NEAR Foundation wanted to share some of the best news headlines from the Near …

    -

    The post NEAR Foundation PR Roundup for February appeared first on NEAR Protocol.

    -]]>
    - As February draws to a close, NEAR Foundation wanted to share some of the best news headlines from the Near ecosystem and community. 

    - - - -

    Let’s take a look at some of the biggest stories from NEAR in February. 

    - - - -

    NEAR partners with NYU for Web3 learning workshop

    - - - -

    NEAR attracted over 135 pieces of global coverage this month. One of the popular announcements was NEAR’s partnership with New York University’s School of Professional Studies, featuring a Web3 learning workshop. 

    - - - -

    Published by Cointelegraph and other top-tier press,  this partnership will expose students, faculty, and commercial partners to the underlying technology powering the Web3 industry. The course will focus on blockchain’s intersection with the sporting industry, exposing those involved to hands-on experience taught by Michael Kelly, a co-founder of Open Forest Protocol, and an early builder in the NEAR Ecosystem.

    - - - -

    Former NBA player Baron Davis builds platform for photographers on NEAR

    - - - -

    Two-time NBA All-Star Baron Davis announced his plan to transform the image and video rights market, utilizing NEAR’s extensive NFT infrastructure to create a purpose-built platform for photographers. 

    - - - -

    In an interview with Decrypt, Davis revealed that his startup SliC Images is teaming up with Mintbase with a $250k grant to build a platform where photographers will have ownership of their channels, replacing long-term predatory corporate deals with a fairer platform facilitating opportunities for all photographers. 

    - - - -

    Also featured in Tech Funding News and across the industry press, the announcement has excited the Web3 community around the world. Allowing users to take a photo, add a permanent license, auction it off, and stick it on a blog within five minutes, SliC images are aiming to have a prototype of the platform ready for ETH Denver.

    - - - -

    NEAR Foundation and Supermoon announce NEAR House 

    - - - -

    As the NEAR community prepares for ETHDenver, and especially NEAR Day, Near Foundation announced Near House in collaboration with Supermoon. 

    - - - -

    As covered in the Bitcoin Insider, the unforgettable 8-day experience will see 20 builders and founders from the NEAR ecosystem set up camp in downtown Denver and engage in team-building activities and enthusiastic discussions about NEAR Protocol. NEAR House will also include a curated ETH Denver agenda, enabling the innovators to maximize their experience at the event.

    - - - -

    Marieke Flament on more women in Web3

    - - - -

    Fast Company spoke with Marieke Flament about the importance of greater participation from women in MENA. The crucial nature of diversity of thought in the boardroom cannot be understated, particularly in high-growth industries like Web3.

    - - - -

    In the interview, Marieke outlines that human biases are unavoidable components of all our decision-making. So, ensuring that the group making the decisions is as diverse as possible is a key mission when creating the future on the blockchain.

    - - - -

    Calimero amongst 10 Web3 startups to watch in 2023

    - - - -

    Following their recent funding announcement, Calimero Network was featured in Tech Funding News’ 10 Web3 startups to watch out for in 2023. The piece covered the exciting startup’s ambition to assist Web2 companies in scaling up their offerings by utilizing the NEAR blockchain. 

    - - - -

    Calimero’s founders Sandi and Mario are building the first private sharding infrastructure on the NEAR Protocol, enabling more privacy for companies storing data on blockchains.

    - - - -

    NEAR partners with Recur

    - - - -

    Towards the end of February, Business Insider covered NEAR’s latest step in enhancing interoperability and accessibility in Web3. Partnering with Recur, a project focused on improving the blockchain-building experience, the NEAR ecosystem will have access to an enterprise-grade Web3 software suite. 

    - - - -

    The exciting partnership will make Web3 more accessible for everyone, empowering brands and fans to innovate and explore new digital experiences.

    - - - -

    NEAR joins Figment-powered Ledger Live

    - - - -

    Wrapping up a busy month of activity, NEAR Foundation announced that NEAR has joined Figment-powered Ledger Live, an all-in-one digital asset management app secured by Ledger’s industry-leading hardware wallets. As covered by the Crypto Reporter, more of the Web3 community will now be able to enjoy the benefits of self-custody whilst helping to secure the NEAR Protocol by staking their tokens. 

    - - - -

    That’s all for February. If NEAR Foundation missed anything or you would like to share anything for next month’s roundup, please get in touch!

    -

    The post NEAR Foundation PR Roundup for February appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/partners/index.html b/public/blog/tag/partners/index.html deleted file mode 100644 index b927d834f..000000000 --- a/public/blog/tag/partners/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Partners Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/partnerships/feed/index.xml b/public/blog/tag/partnerships/feed/index.xml deleted file mode 100644 index cc80d1b30..000000000 --- a/public/blog/tag/partnerships/feed/index.xml +++ /dev/null @@ -1,752 +0,0 @@ - - - - Partnerships Archives – NEAR Protocol - - /blog/tag/partnerships/ - - Wed, 14 Feb 2024 18:59:44 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Partnerships Archives – NEAR Protocol - /blog/tag/partnerships/ - 32 - 32 - - - Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 - /blog/inaugural-ai-x-web3-hackathon-and-decentralized-ai-summit-to-debut-at-eth-denver-2024/ - - - Wed, 14 Feb 2024 18:59:43 +0000 - - - - - - - /?p=21226 - - In collaboration with Edge and Polygon Labs, the NEAR Foundation will co-sponsor a Decentralized AI Summit and “Autonomous Agent,” an …

    -

    The post Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 appeared first on NEAR Protocol.

    -]]>
    - In collaboration with Edge and Polygon Labs, the NEAR Foundation will co-sponsor a Decentralized AI Summit and “Autonomous Agent,” an AI x Web3 Hackathon, at ETHDenver on February 26 and 27. The events will bring together visionaries, developers, and enthusiasts working at the intersection of AI and Web3 along with a hackathon for builders and researchers to dive into the buzziest tech topic of today. Speakers at the Summit will include Vitalik Buterin of the Ethereum Foundation, Illia Polosukhin of NEAR Foundation, Sandeep Nailwal of Polygon Labs, and Sreeram Kannan of EigenLayer. 

    - - - -

    “Autonomous Agent” is the first event in the “{Chain}-of-Thought” series from Edge, which will explore and harness the potential of Web3 and open source AI. Edge is a research and development organization dedicated to democratizing access to open intelligence and advancing the evolution of next-generation web architecture. Hackers can expect hands-on hacking sessions, workshops, and mentorship opportunities with a chance to learn from those at the cutting edge of decentralized AI development. 

    - - - -

    The intersection of Artificial Intelligence (AI) and Web3 technology is poised to revolutionize industries, with many Web3 projects now incorporating AI into decentralized applications and developer tools. Ethereum Co-Founder Vitalik Buterin recently shared his observations about the intersection, and NEAR Co-Founder Illia Polosukhin shared how AI fits into the vision for the NEAR ecosystem in a recent post

    - - - -

    As the risks from centralized AI controlled primarily by major corporations become more apparent, investing in open source, transparent AI development will become increasingly important––along with community building, governance experiments, and advocacy. “{Chain} of Thought” will lead the way in bringing members of the AI and Web3 ecosystems together to advance these initiatives and make concrete progress.

    - - - -

    In addition to the premier sponsors, the “Autonomous Agent” hackathon is co-sponsored by EigenLayer, Gensyn, and Hyper Oracle, with co-hosting participation from Sentient, Lightspeed, and Symbolic Capital. Benefits of participation include:

    - - - -
      -
    • Cutting-Edge Workshops: Engage with industry experts and thought leaders through immersive workshops exploring the latest trends and technologies in AI x Web3.
    • - - - -
    • Hackathon Challenges: Tackle real-world challenges and showcase your creativity by developing innovative solutions at the forefront of AI and Web3 integration.
    • - - - -
    • Networking Opportunities: Connect with like-minded individuals, potential collaborators, and industry professionals to expand your network and exchange ideas.
    • - - - -
    • Prizes and Recognition: Compete for exciting prizes and gain recognition for your contributions to the advancement of AI x Web3 technology.
    • -
    - - - -

    Join NEAR Foundation, Polygon Labs, and Edge in Denver and be a part of the next great tech revolution. Those interested in attending the Decentralized AI Summit can register here. Researchers, developers, and hackers interested in participating in the hackathon can apply here

    -

    The post Inaugural AI x Web3 Hackathon and Decentralized AI Summit to Debut at ETH Denver 2024 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation and Blumer: Pioneering Web3 Social Networking in Latin America - /blog/near-foundation-and-blumer-pioneering-web3-social-networking-in-latin-america/ - - - Wed, 26 Jul 2023 14:00:00 +0000 - - - - /?p=20753 - - NEAR Foundation is excited to announce a strategic partnership with Blumer, Colombia’s first Web3 social network. This collaboration signifies a …

    -

    The post NEAR Foundation and Blumer: Pioneering Web3 Social Networking in Latin America appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a strategic partnership with Blumer, Colombia’s first Web3 social network. This collaboration signifies a new era in social media where active users are incentivized for their contributions, marking a transformative shift in the user-social platform dynamic.

    - - - -

    By harnessing the strengths of blockchain technology and integrating them with the vibrant world of social networking, this partnership aims to challenge the status quo, prioritizing user privacy, compensation, and education. It’s a pioneering effort that not only champions user-centric design, but also sets the stage for a more inclusive digital future in Latin America.

    - - - -

    Blumer: Revolutionizing Social Media through Blockchain Technology

    - - - -

    Blumer, the first Web3 social network created and developed in Colombia, is an innovative platform that combines the functionality of traditional social networks with the advantages of blockchain technology. What makes Blumer so unique is that users are compensated for time spent on social media, distributing 18% of its advertising revenue back to its community.

    - - - -

    “At Blumer, we believe in creating a social network for everyone,” says Ernesto Ruiz, Blumer’s CEO. “Our platform is designed to be a space where users can express themselves, connect with friends, and learn about the crypto world. We’re committed to creating a platform that is fun, engaging, and rewarding for everyone involved.” 

    - - - -

    As Ruiz alludes to, Blumer users can monetize their time spent on social media through a variety of activities like consuming advertisements, selling NFTs, and performing crypto transactions. This not only promotes user engagement but emphasizes a novel approach to commercial growth, derived largely from businesses undertaking digital marketing.

    - - - -

    Blumer isn’t just social media landscape but reshaping the whole digital economy narrative. Its unique approach of monetizing user engagement and activity on social media paves the way for a paradigm shift in user interaction and value creation. Let’s now delve into how this innovative platform aims to advance the adoption of Web3 in Latin America, one educated user at a time.

    - - - -

    “This partnership is a significant step towards creating a fair and transparent social media ecosystem,” adds Marieke Flament, CEO of NEAR Foundation. “By combining the benefits of blockchain technology with social media, we are set to revolutionize how we interact on social platforms.“

    - - - -

    Educating users and advancing Latin American Web3 adoption

    - - - -

    Blumer also tackles the significant challenges facing cryptocurrency adoption in Latin America — namely, the lack of knowledge, understanding, and real market usability. Through ZVerso, its free crypto education platform, Blumer is empowering users with the knowledge to confidently engage within the Web3 ecosystem. 

    - - - -

    By providing users with essential blockchain education and tools, Blumer is making strides toward democratizing access to Web3 technologies. This proactive educational initiative aligns with a broader vision for a more decentralized, inclusive, and user-centric digital future in Latin America.

    - - - -

    With an online population of over 54 million people, Latin America and the Caribbean form the fifth-largest global market for social media. South America alone boasts over 30 million users. The NEAR and Blumer partnership provides a unique opportunity to tap into this thriving hub and bolster the adoption of Web3 solutions.

    - - - -

    “With NEAR’s support, we are confident that we can achieve our vision and create a social network fit to thrive in tomorrow’s landscape,” Ruiz adds.

    - - - -

    The collaboration between NEAR and Blumer signifies a pivotal stride towards fostering a fair, transparent, and user-centric social media ecosystem. As Blumer forges ahead with innovative advancements in decentralized social networking, the NEAR Foundation and ecosystem give one big “Like” to Blumer’s mission of a user-empowered social network.

    -

    The post NEAR Foundation and Blumer: Pioneering Web3 Social Networking in Latin America appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris - /blog/near-at-ethcc-highlights-sustainability-and-the-bos-take-center-stage-in-paris/ - - - Thu, 20 Jul 2023 17:00:00 +0000 - - - - - - - /?p=20742 - - Missed out on NEAR’s rendezvous at ETHCC 2023 in Paris? No need to worry. In this roundup, all NEAR enthusiasts …

    -

    The post NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris appeared first on NEAR Protocol.

    -]]>
    - Missed out on NEAR’s rendezvous at ETHCC 2023 in Paris? No need to worry. In this roundup, all NEAR enthusiasts can catch up on the enlightening presentations by BOS, Web3, and blockchain experts. You’re in the perfect place to delve into notable announcements made during the conference, from NEAR signing up to the Ethereum Climate Platform to an epic new interactive Polygon zkEVM app dashboard.

    - - - -

    ICYMI, it’s time to dive into all the key speeches, events, and announcements that unfolded in the City of Lights over this past weekend.

    - - - -

    Interactive Polygon zkEVM app dashboard launches on the BOS

    - - - -

    In the most significant partnership announcement of ETHCC, an interactive Polygon zkEVM app dashboard has launched on the Blockchain Operating System (BOS). This integration will not only increase accessibility and discoverability for zkEVM developers and users on the open web but also vastly improve user experience. 

    - - - -

    The collaboration is set to accelerate the creation of dApps that will onboard billions of users into the open web. The new Polygon zkEVM dashboard now combines the benefits of zero-knowledge technology with the power of the BOS to unlock even more seamless onboarding to the open web. 

    - - - -

    The dashboard brings a new suite of zero knowledge development capabilities to zkEVM developers and lets them build apps that can reach more users from day one. It’s a groundbreaking partnership that brings together the NEAR and Polygon ecosystems, two of the most innovative names in Ethereum and blockchain scalability.

    - - - -

    NEAR makes waves with sustainability commitment

    - - - -

    NEAR Foundation made a significant stride in its commitment to Web3 sustainability. As part of its ongoing efforts, NEAR signed up to the Ethereum Climate Platform, demonstrating its resolve towards minimizing the environmental impact of Web3 development. This move aligns with NEAR’s ethos and commitment to sustainable and scalable blockchain solutions.

    - - - -

    Marieke storms the BOS-tille at “Funding the Commons”

    - - - -

    Adding to the list of notable NEAR occurrences during ETHCC, NEAR Foundation CEO, Marieke Flament, was a keynote speaker at the “Funding the Commons” event held at Sorbonne Université on July 15. Marike’s message was one of bringing more ethics and equity to the entire blockchain and Web3 ecosystem.

    - - - -

    In her speech, titled “The Open Web is NEAR: How the BOS, NDC, and DAOs are creating a Decentralized Web,” Marieke explored how NEAR Foundation serves the ecosystem by building public goods like the BOS, DevHub, NDC, DAOs, and more. 

    - - - -

    “Funding the Commons” is an event designed to complement the Ethereum Community Conference, promoting connection amongst participants, and fostering new collaborations and projects. The event organizers also planned a dinner on July 15 at Le Procope Paris, where Marieke was among the most notable invited guests.

    - - - -

    Unpacking Insights: notable talks and events at ETH CC

    - - - -

    Near @ ETHCC wasn’t just a gathering of blockchain enthusiasts, but a hotbed of innovative discussions. Illia Polosukhin, co-founder of NEAR, and Nadir Dabit’s conversation around decentralized social networks piqued particular interest. They hinted at a shift in how we’ll connect and share information in the future and the potential role of decentralized social on the BOS.

    - - - -

    Matt Stephenson, head of crypto economics at crypto investment firm, Pantera Capital, took the audience on a thrilling Day Two journey through the intricacies of behavioral game theory. He showcased how game theory could be leveraged in this space, offering a unique lens to examine, understand, and potentially predict blockchain trends.

    - - - -

    Near @ ETHCC didn’t skimp on forward-looking conversations either. A panel featuring Max Mersch of Fabric Ventures, Maggie Love from SheFi, and Bilal El Alamy of PyratzLabs posed a pertinent question: “What’s the Next Big Use Case Being Built in the Bear Market?” Each speaker provided valuable insight about both challenges and opportunities posed by bear markets.

    - - - -

    Ecosystem Updates

    - - - -

    Despite the focus on the Near @ ETHCC side event itself, the NEAR ecosystem saw significant developments and milestones during the past few days.

    - - - -
      -
    • The NEAR Digital Collective’s I-AM-HUMAN movement has crossed 2,000 members in the NEAR ecosystem. The initiative allows users to vote, elect candidates for office, and shape the future of NEAR. You can sign up here.
    • - - - -
    • MintbaseSearch has gone live on NEAR mainnet along with its own ChatGPT plugin. Mintbase now enables users to ask anything about NFTs on the NEAR Protocol. More details here.
    • - - - -
    • Opolis has raised $6.6M in a bridge fundraising round with support from NEAR Foundation, Polygon Ventures, and Draper Capital. Read more details about the full announcement here.
    • - - - -
    • Black Snow: Battle For Earth, launched its demo version, offering an exciting free-to-play-and-earn experience that aims to enhance the NEAR ecosystem by boosting user count and transactions. Check out the demo here
    • -
    - - - -

    C’est la vie in Paris as ETHCC 2023 wraps up. As we reflect on these dynamic days, it’s clear that the future of NEAR and the BOS is exciting and full of potential. From environmental commitments to bold collaborations and fascinating talks, NEAR’s Parisian journey was full of engagement, enlightenment, and enthusiasm for everyone involved.

    -

    The post NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at ETHCC: Horizon Pitch Contest, BOS Workshops, and More - /blog/near-at-ethcc-horizon-pitch-contest-bos-workshops-and-more/ - - - Sun, 16 Jul 2023 17:49:56 +0000 - - - - - - /?p=20725 - - As Day One at NEAR @ ETHCC concludes, there’s palpable growing excitement for what’s in store for tomorrow. Held at …

    -

    The post NEAR at ETHCC: Horizon Pitch Contest, BOS Workshops, and More appeared first on NEAR Protocol.

    -]]>
    - As Day One at NEAR @ ETHCC concludes, there’s palpable growing excitement for what’s in store for tomorrow. Held at the beautiful Museum National D’Histoire Naturelle in Paris, the first day of workshops and sessions proved to be an exceptional success for Ethereum and BOS builders. 

    - - - -

    Day Two is gearing up to take the experience to a whole new level, with a primary focus on founders and their ventures.

    - - - -

    Morning and Early Afternoon Sessions: Fostering Innovation

    - - - -

    Day Two will kick off with a casual networking opportunity over café au laits and pastries. It’ll be a great way to get warmed up and connect builders, innovators, and visionaries within the NEAR ecosystem.

    - - - -

    The first main event of the day will be a special workshop held  by Matt Stephenson , Head of Cryptoeconomics at Pantera Capita, along with Pantera Principal, Ryan Barney. His insights on the opportunities and challenges within blockchain economics will deepen participants’ understanding of the critical economic principles underpinning blockchain ecosystems.

    - - - -

    As the morning sessions conclude, the afternoon will kick off by delving into the world of interoperability, onboarding, and value generation with Vik Pandey from NEAR Foundation. Vik has been actively involved in the development of the BOS, focusing on interoperability, open-source technologies, and blockchain success efforts. 

    - - - -

    During his session, “Interoperability, Onboarding, and Value Generation with the BOS,” Vik will share insights from his work, highlighting the ways in which the BOS fosters innovation and impact in the Open Web.

    - - - -

    Late Afternoon Highlights: Regulatory Discussions and Horizon Workshop

    - - - -

    Next on the agenda is a panel of experts moderated by Mya Shofany, regulatory lead at NEAR Foundation. The discussion will delve into regulatory considerations in blockchain, and tackle some of the most critical issues facing Web3  founders in the current regulatory landscape.

    - - - -

    The panel will be followed by one of the day’s most anticipated events — the Horizon afternoon. This session will be a deep dive into the cutting-edge ideas poised to redefine the blockchain world, spearheaded by NEAR’s new Web3 accelerator arm.

    - - - -

    As Day Two winds down, participants can enjoy relaxed networking during the Horizon Happy Hour. Here, NEAR and Ethereum enthusiasts can reflect on the day’s learnings, forge new connections, and unwind over drinks and appetizers.

    - - - -

    If you would like to browse the official schedule, head to near.org.ethcc 

    - - - -

    Throughout the two days of NEAR @ ETHCC, participants are not just learning about the Blockchain Operating System (BOS), they’re experiencing it firsthand. Day Two promises a packed schedule of learning, building, and networking opportunities.

    - - - -

    For those who couldn’t join us on Day One, you can catch up on the sessions uploaded on the NEAR Protocol YouTube channel. Prepare for Day Two by soaking up the insights shared by our experts.

    - - - -

    Stay connected with us for more updates and insights from NEAR @ ETHCC as we continue to explore the limitless possibilities of the Blockchain Operating System (BOS).

    -

    The post NEAR at ETHCC: Horizon Pitch Contest, BOS Workshops, and More appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Partners with Hibiki Run on Open Web Digital Gachapon  - /blog/near-foundation-partners-with-hibiki-run-on-open-web-digital-gachapon/ - - - Wed, 05 Jul 2023 14:00:00 +0000 - - - - /?p=20699 - - NEAR Foundation is thrilled to announce a new strategic partnership with Hibiki Run, a platform lying at the nexus of …

    -

    The post NEAR Foundation Partners with Hibiki Run on Open Web Digital Gachapon  appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is thrilled to announce a new strategic partnership with Hibiki Run, a platform lying at the nexus of innovation in music streaming and digital collectibles. Hibiki Run is revolutionizing music discovery by melding gaming thrills with crypto-driven Listen-to-Earn  (L2E) incentives. 

    - - - -

    Together, NEAR Foundation and Hibiki Run will explore innovative paths for creating engagement between Web3 content creators and end users. With the Japanese “Gachapon” vending machine capsule toys as a model, the collaboration will meld NEAR’s cutting-edge blockchain technology with Hibiki Run’s expertise in digital music, art, and exercise, new opportunities in each vertical for creation, distribution, and ownership.

    - - - -

    Bringing a ‘Digital Gachapon’ economy to the open web

    - - - -

    With “Digital Gachapon”, NEAR and Hibiki Run will bring a powerful economic tool to creators. When interacting with a Japanese Gachapon, layers insert coins into the machine, turn the knob, and receive a capsule with a random item. 

    - - - -

    Hibiki Run has innovatively digitized this exciting concept, integrating it with blockchain technology. In the digital Gachapon system, users utilize their tokens to receive digital items such as NFTs or unique digital assets — anything from exclusive music tracks, collectible art pieces, and rare gaming items, to access tokens for specific events or experiences. 

    - - - -

    The digital Gachapon’s strength lies in its element of surprise and the potential for rare, high-value rewards — transforming the token expenditure into an exciting event while providing a way for creators to distribute their content in a fun and engaging manner. 

    - - - -

    Hibiki Run and NEAR hope that with these types of innovative concepts, blockchain technology, and user-friendly interfaces, a new frontier of digital arts will open up. One that is interactive and immersive for creators and consumers alike. Like NEAR, Hibiki Run is committed to creating a decentralized, fair, and accessible ecosystem for artists. 

    -

    The post NEAR Foundation Partners with Hibiki Run on Open Web Digital Gachapon  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation PR Roundup for June - /blog/near-foundation-pr-roundup-for-june/ - - - Tue, 04 Jul 2023 00:00:00 +0000 - - - - - - - /?p=20694 - - As June comes to a close, summer in the NEAR ecosystem is heating up with a wave of new announcements, …

    -

    The post NEAR Foundation PR Roundup for June appeared first on NEAR Protocol.

    -]]>
    - As June comes to a close, summer in the NEAR ecosystem is heating up with a wave of new announcements, events, media appearances, and more. Not to mention a few notable celebrities bringing some star power into NEAR’s orbit. Here’s a rundown of all the newsworthy NEAR happenings over the past month.

    - - - -

    Sammy Hagar and Guy Fieri jump into NFTs on NEAR

    - - - -

    In the US, Grammy-winning musician Sammy Hagar and celebrity chef Guy Fieri joined the NEAR ecosystem, teaming up with NEAR on-ramp Trident3 to launch an NFT loyalty program. The Santo Spirits Club loyalty program, as reported by Coindesk and Decrypt, will enable tequila fans to earn on-chain tiered perks and an opportunity to win a virtual tasting with the duo.

    - - - -

    Mirae Asset, MARBLEX, and Vortex boost South Korea

    - - - -

     Over in Asia, NEAR Foundation continued to make inroads in South Korea. Mirae Asset, a subsidiary of Asia’s largest financial group, announced a partnership to research Web3’s role in global business. Per  Bloomberg, Mirae Asset will collaborate with NEAR Foundation to strengthen the Web2/3 business network and identify opportunities for real-world blockchain value creation.

    - - - -

    Meanwhile,  Blockchain Reporter broke that Marblex – a Korean blockchain infrastructure provider for high-quality gaming – will integrate NEAR protocol with Marblex’s gaming universe, enhancing user convenience and Web3 adoption. NEAR will integrate with MARBLEX’s WARP Bridge, taking advantage of NEAR’s high scalability and speed to improve the gaming experience in Web3. The partnership will also enable joint marketing initiatives and events, boosting awareness of the global blockchain gaming market. 

    - - - -

    Then there’s Vortex Gaming, a Web3 subsidiary of Inven, the largest game media community in Korea. Coverage by European Gaming reported that Vortex will leverage NEAR protocol to integrate a  gaming community encompassing Web2 and Web3 by building innovative infrastructure for gaming developers. The NEAR Foundation and Inven will also collaborate on marketing and business development, adding to NEAR’s exciting Web3 gaming ecosystem.  

    - - - -

    Skoda launches metaverse for auto fans in India

    - - - -

    Czech Automobile Manufacturer Skoda entered the Metaverse in the world’s most populous country, giving users an opportunity to explore, collect and own digital art pieces on NEAR. The platform, as reported by Cointelegraph and Entrepreneur India, will enable NFT owners to access exclusive perks and rewards, while allowing owners to trade digital artwork in the future. 

    - - - -

    SailGP christens The Dock for decentralized fandom

    - - - -

    In more partnership news, the Global racing league SailGP and Oracle announced the launch of “The Dock”, a decentralized fan engagement platform powered by Oracle and NEAR’s ongoing partnership to bridge the worlds of Web2 and Web3. As reported by SailWeb, The Dock will revolutionize how fans follow SailGP, increasing engagement through exclusive content and enabling fans to earn points, redeemable for exciting rewards including VIP access to SailGP events and more.

    - - - -

    Alibaba Cloud and Women in Web3 headline Collision

    - - - -

    The NEAR ecosystem took over Toronto this month, showcasing the best of BOS at Collision 2023,  one of the world’s biggest tech conferences.  During the event, the NEAR Foundation announced a groundbreaking partnership with Alibaba, enabling developers across Asia to launch new NEAR validators with Alibaba Cloud’s infrastructure as a service. 

    - - - -

    The partnership was covered in myriad outlets such as Coindesk, Journal du Coin, and BTC Echo. Partnering with Alibaba means the NEAR ecosystem will have access to Remote Procedure Calls (RPC) and enable users to interact with NEAR’s Blockchain Operating System while using Alibaba Cloud’s infrastructure. 

    - - - -

    The NEAR Foundation also released the Women in Web3 Changemakers List 2023, celebrating the achievements of extraordinary women throughout the Web3 ecosystem. As reported by Tech Funding News, the ten women were selected by the public and hail from all corners of the globe, following hundreds of nominations from the Web3 community. 

    - - - -

    Leadership viewpoints on media and social fairness

    - - - -

    Illia Polosukhin, Founder of NEAR and CEO of Pagoda, took the time to write a thought leadership piece in Blockworks about crypto’s potential to transform how we interact with the media. Illia sets out the emerging problem with the status quo: bad actors are beginning to utilize generative AI to dramatically scale up misinformation campaigns. 

    - - - -

    However, Illia explains that blockchain-based “sign-and-trace” systems can enable the public to reliably source and validate real news stories, with a legitimate trail of sources available online.

    - - - -

    CEO of NEAR Foundation Marieke Flament also penned an article for London’s leading daily business paper CityAM about using Web3 to build a fair and inclusive digital world.  “Too often technology has only benefited the few: those who have money, those who have power, or those of a certain gender, ethnicity, or skin color.

    - - - -

    But this doesn’t need to be the case,” she explained. “Technology can and should be in the service of all people. But to achieve this, we will need a change in perspective, something that Web3 can help us achieve.”

    - - - -

    Marieke also talked about blockchain, Web3, and BOS on a podcast hosted by the editor Journal du Coin – France’s leading crypto media outlet, and for a video interview with Fintech Finance at the Paris Fintech Forum. 

    - - - -

    That’s all for this month. If we missed anything or want to share anything for next month’s roundup, get in touch!

    -

    The post NEAR Foundation PR Roundup for June appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Škoda Ventures into NFTs with NEAR to Create the Škodaverse India - /blog/skoda-ventures-into-nfts-with-near-to-create-the-skodaverse-india/ - - - Tue, 20 Jun 2023 05:30:00 +0000 - - - - - /?p=20652 - - Škoda India, in collaboration with NEAR Protocol, announces its foray into the world of NFTs and blockchain technology with Škodaverse …

    -

    The post Škoda Ventures into NFTs with NEAR to Create the Škodaverse India appeared first on NEAR Protocol.

    -]]>
    - Škoda India, in collaboration with NEAR Protocol, announces its foray into the world of NFTs and blockchain technology with Škodaverse India. This new platform forms a part of the global Škodaverse initiative and will bring a fresh wave of digital innovation to Škoda automobile fans in India.

    - - - -

    Škoda, one of Europe’s biggest car manufacturers headquartered in the Czech Republic, is quickly becoming one of the most forward-thinking industry brands in Web3 and the metaverse. Late last year, the company announced its global Škodaverse initiative, integrating virtual test drives and NFTs into an immersive environment.

    - - - -

    And now the Škodaverse is coming to the Indian market, powered by the NEAR Protocol, that will enable Škoda fans to buy, trade, and engage with NFTs in Web3. It’s a crucial step in the brand’s journey towards building a tight-knit community of Škoda loyalists, offering a space for fans to connect, co-create, and establish long-term relationships with the brand.

    - - - -

    Steering Škoda fans towards NFTs with NEAR

    - - - -

    Mr. Christian Cahn von Seelen – Executive Director of Sales, Marketing, and Digital, Škoda at Auto Volkswagen India – expressed excitement at the unveiling of the Škodaverse India NFT platform. He envisions it as a dynamic hub for connection and creativity, exemplifying Škoda’s commitment to its customers and fans in India. The Škodaverse India will offer unique and immersive experiences to a rapidly growing market.

    - - - -

    “Škodaverse India signifies the brand’s leap into uncharted digital territory,” said von Seelen. It’s not just about creating extraordinary digital assets, it’s about forging deep connections with a community that shares an unwavering passion for the brand and its initiatives in India. It also showcases our commitment to sustainability and innovation, through leveraging carbon-neutral blockchain technology that enables secure, transparent, and decentralized transactions.”

    - - - -

    Škodaverse India is designing its metaverse platform to be exciting and engaging for Škoda enthusiasts of all demographics, whether they’re familiar with blockchain technology or not. Whether it’s an image, video, sound, or ticket, each NFT collection released on the Škodaverse India platform will be curated to create memorable driving experiences

    - - - -

    The first NFT collection, honoring sustainability, will be created on NEAR Protocol. As a South Pole-certified, carbon-neutral blockchain, NEAR’s eco-first philosophy aligns seamlessly with Škoda India’s sustainability efforts.

    - - - -

    Driving Škoda India’s Web3 Strategy into the future

    - - - -

    As part of the brand’s intensified Web3 strategy, Škoda Auto India is collaborating with Antier, a leading blockchain consulting firm, to foster the creation and minting of innovative NFTs. Each NFT collection released on the Škodaverse India platform will be thoughtfully curated to represent memorable driving experiences. 

    - - - -

    These unique collectibles will unlock exclusive experiences, strengthening the bond between Škodaverse and its community of users. The Škodaverse India platform also ensures users stay updated with the latest in the creation and sale of NFTs. Users can sign in, create, and maintain their profiles, and monitor for updates via Škodaverse India’s Discord, Telegram, and Twitter.

    - - - -

    With the launch of Škodaverse India, Škoda Auto India embraces blockchain technology, signaling a significant move towards Web3 applications. Powered by NEAR Protocol, Škodaverse India will offer engaging, community-building experiences, further solidifying Škoda’s position as a forward-thinking automobile brand in Web3 and the metaverse.

    -

    The post Škoda Ventures into NFTs with NEAR to Create the Škodaverse India appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation and MARBLEX to Expand Korea’s Web3 Gaming Industry with Aurora - /blog/near-foundation-and-marblex-to-expand-koreas-web3-gaming-industry-with-warp-bridge/ - - - Sun, 04 Jun 2023 06:35:49 +0000 - - - - - - /?p=20565 - - NEAR Foundation is excited to announce a new strategic partnership with MARBLEX, a blockchain subsidiary of Netmarble Corp, that will …

    -

    The post NEAR Foundation and MARBLEX to Expand Korea’s Web3 Gaming Industry with Aurora appeared first on NEAR Protocol.

    -]]>
    -

    - - - -

    NEAR Foundation is excited to announce a new strategic partnership with MARBLEX, a blockchain subsidiary of Netmarble Corp, that will help expand Korea’s Web3 gaming industry. MARBLEX will build on Aurora, NEAR’s Ethereum-compatible layer, for maximum scalability and blockchain gaming accessibility to onboard more players to Web3. 

    - - - -

    Under the new partnership facilitated by the NEAR Korea Hub, NEAR Foundation and MARBLEX plan to achieve mutual growth by linking the NEAR blockchain and Aurora with WARP Bridge to enable interactive collaboration, promote global joint marketing events, and enhance brand awareness. 

    - - - -

    - - - -

    Through WARP Bridge, competitive and casual gamers alike will now be able to enjoy a variety of games and exclusive content through NEAR’s Blockchain Operating System (BOS). The BOS leverages the NEAR Protocol’s fast transaction speeds as well as effortless scalability and onboarding (via FastAuth) to make the onboarding experience as easy as possible for the masses. 

    - - - -

    MARBLEX: a developer and publisher of mobile games

    - - - -

    A Web3 gaming giant constantly pushing the boundaries of what’s possible, MARBLEX is a well-established developer and publisher of mobile games with more than 6,000 experts from across the globe. MARBLEX’s goal is to bring the highest quality Web3 games to market by providing key services such as a cryptocurrency wallet, decentralized exchange, token staking, and an NFT Marketplace.

    “We expect NEAR’s core narrative to play a pivotal role in bolstering the overall MBX 3.0 ecosystem,” said Junki Moon, Business Division Director of MARBLEX added. “Through the collaborative integration of the NEAR Foundation’s extensive technical expertise with the content prowess of the MBX ecosystem, we will maintain our position as pioneers in the ever-evolving landscape of the global blockchain trends.”

    - - - -

    Robbie Lim, GM of Business Development at NEAR Foundation, added: “This collaboration with MARBLEX will be an important milestone in promoting various use cases based on BOS (Blockchain Operating System). We will continuously advance the gaming ecosystem of NEAR Protocol as well as attract numerous users to enter the Web3 scene by onboarding high-quality MBX content.”

    - - - -

    NEAR Korea Hub, which oversees business development in Korea and Asia, played a key role in this strategic partnership. The Hub also sees the partnership as breaking a barrier to Web3 entry for mobile gamers. 

    - - - -

    - - - -

    “NEAR Protocol provides a user experience similar to Web2 using Fast Auth account abstraction feature, greatly lowering the initial entry barrier to Web3,” said a spokesperson from NEAR Korea Hub. “We will continue to strongly partner with excellent domestic companies such as MARBLEX to implement a user-centered ecosystem where users can easily enjoy all services.”

    -

    The post NEAR Foundation and MARBLEX to Expand Korea’s Web3 Gaming Industry with Aurora appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Partners with Absolute Labs to Accelerate How Brands Connect with Customers in Web3 - /blog/near-foundation-partners-with-absolute-labs-to-accelerate-how-brands-connect-with-customers-in-web3/ - - - Thu, 20 Apr 2023 13:29:00 +0000 - - - - - /?p=20444 - - NEAR Foundation is excited to announce a new partnership with Absolute Labs, a company revolutionizing Web3’s marketing stack. Its “Wallet …

    -

    The post NEAR Foundation Partners with Absolute Labs to Accelerate How Brands Connect with Customers in Web3 appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Absolute Labs, a company revolutionizing Web3’s marketing stack. Its “Wallet Relationship Management™ platform can be used by Web2 brands and Web3 startups alike to acquire, convert and retain customers on the Open Web. 

    - - - -

    To help in this endeavor, the company announced an $8M seed round of funding at NFT NYC in the past week. Other funding partners include backers like Samsung Next, Aglae Ventures, Sparkle Ventures (Animoca Brands), The Luxury Fund and MoonPay. 

    - - - -

    ”We are thrilled to have the NEAR Foundation as a partner in helping us to accelerate how marketing is done in the next Internet,” says Samir Addamine, Absolute Labs’ CEO and co-founder. “Both our organizations share a vision to accelerate the world’s transition to decentralized marketplaces and more open, transparent and valued user engagement, so it’s a great fit for us.”

    - - - -

    What is Wallet Relationship Management

    - - - -

    Wallet Relationship Management (WRM™) starts with the premise that wallets hold the keys to everything Web3 — from proving identity, providing access to value-rich brand experiences, facilitating payments, creating “ownership” opportunities for customers, and much more. Combining on-chain data from wallets along with assets that Web2 brands can also inject from their Web2 systems, this platform supports all facets of the marketing funnel, from acquisition to conversion and retention of loyalty.

    - - - -

    Users of the platform can gain deep insights into their customers and their on-chain preferences and behaviors, identify actionable segments to track and engage, and craft cross-chain and cross-channel (Web2 and Web3) campaigns to develop and nurture relationships

    - - - -

    Absolute Labs customers can also use WRM to reactivate dormant wallet customers by using the WRM dashboard to distribute meaningful incentives such as rewards tokens, NFTs, and more. 

    - - - -

    To date, Absolute Labs has 40+ companies using their services. With WRM, these customers get an enterprise-grade suite of connectors and APIs to seamlessly integrate with their existing marketing tech stack. 

    - - - -

    Absolute Labs has an incredibly strong product and is a fantastic addition to the NEAR ecosystem. Their Wallet Relationship Management platform is a clear market leader in the burgeoning Web3 martech space, and is already an indispensable component of the modern marketing stack. By bringing Absolute Labs into the NEAR ecosystem, it creates a seamless Web3 on-ramp for brands  and will enable them to engage, retain, and reactivate customers like never before.

    - - - -

    DISCLOSURE: Any information shared in this announcement regarding our partnership with Absolute Labs should not be considered as a binding agreement or representation, and may be subject to change without notice. The information presented in this communication is for informational purposes only and should not be construed as investment advice. Any decisions made based on this information are solely the responsibility of the individual or entity making them.

    -

    The post NEAR Foundation Partners with Absolute Labs to Accelerate How Brands Connect with Customers in Web3 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Backs Hydra Ventures to Create Web3’s First ‘Fund of Funds’ Investment DAO - /blog/near-foundation-backs-hydra-ventures-to-create-web3s-first-fund-of-funds-investment-dao/ - - - Wed, 29 Mar 2023 18:35:16 +0000 - - - - - - /?p=20340 - - NEAR Foundation is excited to announce that it has joined Hydra Ventures, a “fund of funds” investment DAO. A first …

    -

    The post NEAR Foundation Backs Hydra Ventures to Create Web3’s First ‘Fund of Funds’ Investment DAO appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce that it has joined Hydra Ventures, a “fund of funds” investment DAO. A first in the Web3 space, Hydra Ventures is designed to help other investment DAOs get off the ground. 

    - - - -

    By partnering with NEAR Foundation, Hydra Ventures will open the doors to the eventual launch of the first investment DAO in the Near ecosystem. 

    - - - -

    “The combined expertise of the leaders that have created this fund offers a winning formula that will help provide critical funding to purpose-driven, socially impactful web3 startups,” said Marieke Flament, CEO of NEAR Foundation. “We are delighted to be playing a part in launching this DAO and look forward to seeing the role it will play in developing our ecosystem.”

    - - - -

    Decentralizing Web3 investment with DAOs

    - - - -

    To power the “fund of funds” investment DAO, Hydra Ventures has raised $10M in capital from NEAR Foundation, MetaCartel Ventures, ConsenSys, 1kx Ventures, Collab + Currency, Nonagon Ventures, CMT Digital, among others. Hydra Ventures aims to take a hands-on approach to support investment DAOs, from community coordination and investment practices to organizational design, incentive design, and back office/operations.

    - - - -

    “While the first legally wrapped investment DAOs showed us what was possible, many of them have had major operating flaws which have been exposed over the years,” said Peter Pan, co-summoner of MetaCartel and Partner at 1kx Ventures. “Hydra looks to address many of these problems and ultimately emerge with a fundamentally better model for how investment DAOs should be operated. We are thrilled to have NEAR Foundation’s support in this venture.”

    Hydra Ventures is incubated by Thing3 and MetaCartel Ventures (the first and one of the most successful investment DAOs created), and backed by leading founders and thinkers in Web3. MetaCartel has incubated and made investments in several category-leading projects like Sky Mavis, Axie Infinity, Arweave, Open Zeppelin, DAOhaus, Zapper Finance, and Rarible, and were also one of the first investors in Mintbase, an NFT marketplace built on Near. MetaCartel members include Ameen Soleimani (founder, Moloch DAO), Stani Kulechov (founder, AAVE), Roneil Rumburg (founder, Audius), Bobby Ong (founder, Coingecko), RAC (Grammy award winner), Peter Pan (Partner, 1kx Ventures), amongst others.

    -

    The post NEAR Foundation Backs Hydra Ventures to Create Web3’s First ‘Fund of Funds’ Investment DAO appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/partnerships/index.html b/public/blog/tag/partnerships/index.html deleted file mode 100644 index 22442d03e..000000000 --- a/public/blog/tag/partnerships/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Partnerships Archives – NEAR Protocol
    <- Back to all posts

    Tag: Partnerships

    18 posts

    Filter by tags

    Show all tags ->

    Filter by date

    Clear
    \ No newline at end of file diff --git a/public/blog/tag/partnerships/page/2/index.html b/public/blog/tag/partnerships/page/2/index.html deleted file mode 100644 index 9a6eea3f8..000000000 --- a/public/blog/tag/partnerships/page/2/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Partnerships Archives – Page 2 of 2 – NEAR Protocol
    <- Back to all posts

    Tag: Partnerships

    18 posts

    Filter by tags

    Show all tags ->

    Filter by date

    Clear
    \ No newline at end of file diff --git a/public/blog/tag/pipeflare/feed/index.xml b/public/blog/tag/pipeflare/feed/index.xml deleted file mode 100644 index 566b08a77..000000000 --- a/public/blog/tag/pipeflare/feed/index.xml +++ /dev/null @@ -1,120 +0,0 @@ - - - - Pipeflare Archives – NEAR Protocol - - /blog/tag/pipeflare/ - - Tue, 02 May 2023 12:57:11 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Pipeflare Archives – NEAR Protocol - /blog/tag/pipeflare/ - 32 - 32 - - - NEAR Foundation and PipeFlare Team Up to Reshape Web3 Gaming - /blog/near-foundation-and-pipeflare-team-up-to-reshape-web3-gaming/ - - - Tue, 02 May 2023 14:00:00 +0000 - - - - - /?p=20468 - - NEAR Foundation and PipeFlare, a trailblazing play-to-earn (P2E) platform, are partnering to reshape Web3 gaming by building on Aurora, NEAR’s …

    -

    The post NEAR Foundation and PipeFlare Team Up to Reshape Web3 Gaming appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation and PipeFlare, a trailblazing play-to-earn (P2E) platform, are partnering to reshape Web3 gaming by building on Aurora, NEAR’s Ethereum-compatible layer. As Web3 gaming on NEAR accelerates, PipeFlare will enable gamers to play, earn crypto, and engage socially in a decentralized environment. Collaborating with NEAR Foundation, PipeFlare aims to redefine scalability, security, and sheer enjoyment in Web3 by leveraging the EVM-compatible development capabilities of Aurora.

    - - - -

    PipeFlare is one of the industry’s most reliable Web3-enabled gaming platforms, allowing users to earn cryptocurrency through gameplay, tasks, and activities. The partnership will help create more intricate, engaging Web3 games in a secure fashion. The collaboration will most certainly attract more users to Web3 gaming, while making NEAR a top choice for game developers.

    - - - -

    Let’s delve into the PipeFlare and NEAR Foundation partnership, the advantages of the NEAR Blockchain Operating System and tech stack for Web3 gaming, and how the collaboration positively impacts the future of the NEAR decentralized gaming ecosystem.

    - - - -

    Transforming play: PipeFlare’s NEAR-driven gaming evolution

    - - - -

    Pipeflare is one of the most reputable P2E gaming sites in the industry, backed by some of the largest investors in the blockchain space like DCG and Horizen Labs. All PipeFlare transactions are published publicly as well, giving gamers more transparency and peace of mind in Web3 gaming, earning, transacting, and collecting.

    - - - -

    Gamers can enjoy playing games, collecting free cryptocurrency from PipeFlare faucets, participating in airdrops, competing in weekly leaderboards, and earning rewards through the referral program. Additionally, players can buy and sell limited-mint NFTs on PipeFlare’s NFT marketplace. 

    - - - -

    PipeFlare’s exclusive Pyro NFT also brings perks like staking bonuses and a secret fourth crypto faucet to users. A dedicated support team demystifies blockchain and NFTs, while NEAR’s scalability enhances transactions without sacrificing speed or efficiency. This paves the way for PipeFlare’s explosive growth in the dynamic Web3 gaming market.

    - - - -

    As security becomes more paramount in safeguarding digital assets and identities in Web3 gaming, PipeFlare is now embracing the speed and security of NEAR infrastructure. This ensures the protection of user data and assets and provides a cutting-edge, trustworthy, and reliable Web3 gaming experience for users to explore and enjoy.

    - - - -

    Making Web3 Gaming more scalable, secure, and dev-friendly

    - - - -

    NEAR’s intuitive, developer-focused platform offers substantial advantages for PipeFlare, simplifying game development and empowering creators to craft groundbreaking Web3 gaming experiences for veteran gamers and newcomers alike. But the PipeFlare and NEAR Foundation collaboration will transcend mere technology integration. Harnessing the BOS, PipeFlare can introduce even deeper functionality to players in areas like NFTs, in-game token rewards, and community engagement. As one of the only platforms where NFTs can be ported into multiple games, PipeFlare is breaking new ground in the industry.

    - - - -

    NEAR Foundation is excited about this new portable NFT model in Web3 gaming, and will focus on the following three areas to help accelerate PipeFlare:

    - - - -
      -
    • Scalability. One of the biggest challenges facing Web3 gaming is scalability. Traditional blockchains are not designed to handle the high volume of transactions required for gaming. NEAR is a high-performance blockchain that can handle a large number of transactions per second, making it ideal for Web3 gaming.
    • -
    - - - -
      -
    • Security. Another important factor for Web3 gaming is security. Players need to be confident that their data and assets are safe when playing games on the blockchain. The BOS uses a variety of security measures to protect gamer data and ensure the protection and provenance of all digital assets.
    • -
    - - - -
      -
    • User-Friendliness. Web3 gaming needs to be user-friendly to succeed and grow in the long term. Users need to be able to easily create and manage their accounts, buy and sell NFTs, and play games. With the BOS being one of the most developer-friendly ecosystems to build on, PipeFlare is set to make big strides in Web3 gamer onboarding.
    • -
    - - - -

    To get the ball rolling, the partnership will initially focus on upgrading Pipeflare’s existing games and developing new ones using the BOS. This transition will enhance the gaming experience for users and showcase the capabilities of NEAR’s technology in the Web3 gaming space.

    - - - -

    The collaboration also marks substantial progress for the Web3 gaming industry, demonstrating that key players recognize NEAR’s potential. It also signals NEAR’s strong positioning to emerge as the premier blockchain for novel gaming experiences.

    -

    The post NEAR Foundation and PipeFlare Team Up to Reshape Web3 Gaming appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/pipeflare/index.html b/public/blog/tag/pipeflare/index.html deleted file mode 100644 index 89ac54e3a..000000000 --- a/public/blog/tag/pipeflare/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Pipeflare Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/polygon-zkevm/feed/index.xml b/public/blog/tag/polygon-zkevm/feed/index.xml deleted file mode 100644 index 8e5dfbacb..000000000 --- a/public/blog/tag/polygon-zkevm/feed/index.xml +++ /dev/null @@ -1,100 +0,0 @@ - - - - Polygon zkEVM Archives – NEAR Protocol - - /blog/tag/polygon-zkevm/ - - Thu, 20 Jul 2023 13:16:59 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Polygon zkEVM Archives – NEAR Protocol - /blog/tag/polygon-zkevm/ - 32 - 32 - - - Interactive Polygon zkEVM App Dashboard Launches on the NEAR Blockchain Operating System  - /blog/interactive-polygon-zkevm-app-dashboard-launches-on-the-near-blockchain-operating-system/ - - - Tue, 18 Jul 2023 13:00:00 +0000 - - - /?p=20729 - - NEAR Foundation is excited to announce that an interactive Polygon zkEVM app dashboard, has just launched on the Blockchain Operating …

    -

    The post Interactive Polygon zkEVM App Dashboard Launches on the NEAR Blockchain Operating System  appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce that an interactive Polygon zkEVM app dashboard, has just launched on the Blockchain Operating System (BOS). This debut of Polygon zkEVM on the BOS will not only increase accessibility and discoverability for zkEVM developers and users on the open web, but also vastly improve user experience. 

    - - - -

    Polygon zkEVM is the first zero-knowledge scaling solution compatible with the Ethereum Virtual Machine to integrate smart contracts and developer tools. The Polygon ecosystem DEX QuickSwap will host the dashboard, which will include BOS components for Polygon’s zkEVEM bridge and several top Polygon decentralized applications (dApps) including QuickSwap, Gamma, PancakeSwap, and Balancer.

    - - - -

    With the interactive Polygon zkEVM app dashboard on the BOS, users can now discover and use zkEVM projects in a frictionless way. All of this can be done on one website, with users only needing to connect their wallet once to get started. The dashboard also simplifies access, making components uncensorable, highly available, and resilient. Users can also run their own version of the site since all code is open source and verifiable on-chain as a security feature. 

    - - - -

    With this new dashboard on NEAR BOS, Polygon zkEVM developers will unlock a seamless onboarding experience and the quick-start components for which the BOS is known. The collaboration will accelerate the creation of dApps that will onboard billions of users into the open web. 

    - - - -

    A major NEAR x Polygon ecosystem deployment 

    - - - -
    - - - -

    The new Polygon zkEVM dashboard now combines the benefits of zero knowledge technology with the power of the BOS to unlock seamless onboarding to Web3. The NEAR and Polygon zkEVM collaboration brings a new suite of zero knowledge development capabilities to zkEVM developers and lets them build apps that can reach more users from day one.

    - - - -

    The Polygon-NEAR ecosystem deployment underscores the BOS’s utility in helping developers easily deploy their own dApps with on-chain frontend code. With the BOS, any zkEVM app can now benefit from greater accessibility for developers and users alike, easier discoverability for the apps they build, and powerful composability. 

    - - - -

    “The interactive zkEVM app dashboard  is an exciting tool  to support developers and accelerate the pace of large-scale usage of Web3,” said Jack Melnick at Polygon Labs. “NEAR BOS powers the platform as a means to achieve an easy and reliable way to onboard, which is critical to improving the dApp user experience and giving greater infrastructure accessibility.”

    - - - -

    The BOS makes it faster and easier than ever for developers on NEAR, Polygon, and other open web platforms to build multi-chain apps and experiences. The BOS also empowers builders to focus more on creating great products for users than on managing infrastructure. 

    - - - -

    “The Polygon ecosystem is achieving great traction in the blockchain space among developers and enterprises alike,” Illia Polosukhin, co-founder of NEAR. “We’re excited for this deployment to unlock discoverability for applications across the Polygon zkEVM ecosystem, powered by NEAR Blockchain Operating System. Developers on Polygon zkEVM will now be able to quickly bring applications to market by reusing thousands of decentralized components.”

    - - - -

    A common layer for browsing and discovering open web experiences, the BOS makes Web3 app development fast and easy, offering a comprehensive quick-start toolset for developers from any ecosystem. Developers can quickly build composable apps for the open web from thousands of flexible components, seamlessly onboard users, get real-time feedback from actual users, and increase discoverability across the open web, since all apps utilizing BOS are all visible on a common interface. 

    - - - -

    With the shared mission of Polygon Labs and NEAR to accelerate mainstream adoption of the open web, and increase options for developers across blockchains and ecosystems, Polygon zkEVM’s integration on the NEAR BOS is a major step forward to empower more developers to scale Ethereum with the latest  zero knowledge technology.
    Get started today with Polygon zkEVM on the BOS. 

    -

    The post Interactive Polygon zkEVM App Dashboard Launches on the NEAR Blockchain Operating System  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/polygon-zkevm/index.html b/public/blog/tag/polygon-zkevm/index.html deleted file mode 100644 index a07374c3c..000000000 --- a/public/blog/tag/polygon-zkevm/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Polygon zkEVM Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/press-start/feed/index.xml b/public/blog/tag/press-start/feed/index.xml deleted file mode 100644 index 09a085cdc..000000000 --- a/public/blog/tag/press-start/feed/index.xml +++ /dev/null @@ -1,113 +0,0 @@ - - - - Press Start Archives – NEAR Protocol - - /blog/tag/press-start/ - - Thu, 15 Dec 2022 13:31:59 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Press Start Archives – NEAR Protocol - /blog/tag/press-start/ - 32 - 32 - - - NEAR and Press Start Team to Level Up Web3 Gaming  - /blog/near-and-press-start-team-to-level-up-web3-gaming/ - - - Fri, 09 Dec 2022 15:00:12 +0000 - - - - /?p=19535 - - NEAR Foundation is excited to announce a new partnership with Press Start Capital, a seed stage venture fund focused on …

    -

    The post NEAR and Press Start Team to Level Up Web3 Gaming  appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Press Start Capital, a seed stage venture fund focused on full-stack Web3 gaming, metaverse, and entertainment. This follows the Press Start x  Orange DAO Web3 Fellowship announced earlier this year. 

    - - - -

    With NEAR, Press Start is looking to identify, fund, and support the leading Web3 builders and creators of what it calls a “new Golden Age of Entertainment.” Press Start Capital will join NEAR’s network of partner funds. 

    - - - -

    In this new partnership, information and industry insights-sharing between NEAR and Press Start will be vital. Press Start will provide investment and mentorship support to Web3 gaming and entertainment projects building on NEAR. Press Start and its portfolio companies will also have access to the Foundation and ecosystem’s vast network of fund partners—a critical piece in building the new era of gaming. Game developers that aren’t committed to a blockchain will have access to priority NEAR support to help build and ship their Web3 gaming apps and products.

    - - - -

    Marieke Flament, CEO of the NEAR Foundation, said:  “This is a fantastic partnership that will help us to attract the very best projects to our protocol. We look forward to leveraging this opportunity by working closely with Press Start to identify and support exceptional talent and to give creators the tools they need to build without limits on NEAR.”

    - - - -

    Community front and center

    - - - -

    Both NEAR and Press Start see the future of gaming as being community-driven. The partners are fully aligned in manifesting a world where players take part in the creation and ownership of the games, stories, and assets they cherish. 

    - - - -

    “As crypto eats software and gaming eats culture, we believe now is the time to build a new Golden Age of Entertainment that will unleash a new generation of community-owned games, apps, and IP,” said Steven Chien, co-founder and General Partner at Press Start Capital. “We’re excited to collaborate with NEAR as a mission-aligned partner to support and grow a community of Web3 founders building community-driven products.”

    - - - -

    With NEAR and Press Start, founders will help founders in a mutual learning environment. The partnership will also include deal flow sharing and community initiatives.

    - - - -

    Press Start’s collaboration with NEAR partner OrangeDAO, a group of over 1,300 Y Combinator alumni, on a new fellowship is also part of this community-driven strategy. The fellowship featured participants building applications that will empower future Web3 users and communities.

    - - - -

    Ten fellows completed a ten-week fellowship program designed to help Y Combinator alumni validate, build, and ship their next web3 project. Several fellows had closed a fundraising round and gained acceptance into top tier accelerators by the end of the fellowship program.   

    - - - -

    Web3 gaming on NEAR: fast and infinitely scalable 

    - - - -

    With the new NEAR and Press Start partnership, Web3 gaming developers can take full advantage of NEAR’s sharded, Proof-of-Stake (PoS), layer-one blockchain. Thanks to NEAR’s  unique Nightshade sharding implementation, gaming projects will join a dynamic ecosystem of 800+ active projects and over 125 DAOs, building on a protocol that is ever-expanding and decentralizing. 

    - - - -

    Like the other developers, entrepreneurs, and creatives building on NEAR, Web3 gaming devs will have access to the NEAR community’s resources. From Web3 startup platform Pagoda to NEAR Education and other ecosystem players, gaming devs can tap into a vast web of Web3 technology and expertise. 

    - - - -

    Future partnership opportunities

    - - - -

    NEAR Foundation’s partnership with Press Start will evolve over time, combining the Foundation’s technological know-how with the VC fund’s investment and builder expertise. 

    - - - -

    There is already potential for a co-sponsored accelerator and events centered on Web3 gaming and entertainment.  

    -

    The post NEAR and Press Start Team to Level Up Web3 Gaming  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/press-start/index.html b/public/blog/tag/press-start/index.html deleted file mode 100644 index 9f4eb0198..000000000 --- a/public/blog/tag/press-start/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Press Start Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/press/feed/index.xml b/public/blog/tag/press/feed/index.xml deleted file mode 100644 index 4917a1490..000000000 --- a/public/blog/tag/press/feed/index.xml +++ /dev/null @@ -1,210 +0,0 @@ - - - - Press Archives – NEAR Protocol - - /blog/tag/press/ - - Mon, 03 Jul 2023 15:18:39 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Press Archives – NEAR Protocol - /blog/tag/press/ - 32 - 32 - - - NEAR Foundation PR Roundup for June - /blog/near-foundation-pr-roundup-for-june/ - - - Tue, 04 Jul 2023 00:00:00 +0000 - - - - - - - /?p=20694 - - As June comes to a close, summer in the NEAR ecosystem is heating up with a wave of new announcements, …

    -

    The post NEAR Foundation PR Roundup for June appeared first on NEAR Protocol.

    -]]>
    - As June comes to a close, summer in the NEAR ecosystem is heating up with a wave of new announcements, events, media appearances, and more. Not to mention a few notable celebrities bringing some star power into NEAR’s orbit. Here’s a rundown of all the newsworthy NEAR happenings over the past month.

    - - - -

    Sammy Hagar and Guy Fieri jump into NFTs on NEAR

    - - - -

    In the US, Grammy-winning musician Sammy Hagar and celebrity chef Guy Fieri joined the NEAR ecosystem, teaming up with NEAR on-ramp Trident3 to launch an NFT loyalty program. The Santo Spirits Club loyalty program, as reported by Coindesk and Decrypt, will enable tequila fans to earn on-chain tiered perks and an opportunity to win a virtual tasting with the duo.

    - - - -

    Mirae Asset, MARBLEX, and Vortex boost South Korea

    - - - -

     Over in Asia, NEAR Foundation continued to make inroads in South Korea. Mirae Asset, a subsidiary of Asia’s largest financial group, announced a partnership to research Web3’s role in global business. Per  Bloomberg, Mirae Asset will collaborate with NEAR Foundation to strengthen the Web2/3 business network and identify opportunities for real-world blockchain value creation.

    - - - -

    Meanwhile,  Blockchain Reporter broke that Marblex – a Korean blockchain infrastructure provider for high-quality gaming – will integrate NEAR protocol with Marblex’s gaming universe, enhancing user convenience and Web3 adoption. NEAR will integrate with MARBLEX’s WARP Bridge, taking advantage of NEAR’s high scalability and speed to improve the gaming experience in Web3. The partnership will also enable joint marketing initiatives and events, boosting awareness of the global blockchain gaming market. 

    - - - -

    Then there’s Vortex Gaming, a Web3 subsidiary of Inven, the largest game media community in Korea. Coverage by European Gaming reported that Vortex will leverage NEAR protocol to integrate a  gaming community encompassing Web2 and Web3 by building innovative infrastructure for gaming developers. The NEAR Foundation and Inven will also collaborate on marketing and business development, adding to NEAR’s exciting Web3 gaming ecosystem.  

    - - - -

    Skoda launches metaverse for auto fans in India

    - - - -

    Czech Automobile Manufacturer Skoda entered the Metaverse in the world’s most populous country, giving users an opportunity to explore, collect and own digital art pieces on NEAR. The platform, as reported by Cointelegraph and Entrepreneur India, will enable NFT owners to access exclusive perks and rewards, while allowing owners to trade digital artwork in the future. 

    - - - -

    SailGP christens The Dock for decentralized fandom

    - - - -

    In more partnership news, the Global racing league SailGP and Oracle announced the launch of “The Dock”, a decentralized fan engagement platform powered by Oracle and NEAR’s ongoing partnership to bridge the worlds of Web2 and Web3. As reported by SailWeb, The Dock will revolutionize how fans follow SailGP, increasing engagement through exclusive content and enabling fans to earn points, redeemable for exciting rewards including VIP access to SailGP events and more.

    - - - -

    Alibaba Cloud and Women in Web3 headline Collision

    - - - -

    The NEAR ecosystem took over Toronto this month, showcasing the best of BOS at Collision 2023,  one of the world’s biggest tech conferences.  During the event, the NEAR Foundation announced a groundbreaking partnership with Alibaba, enabling developers across Asia to launch new NEAR validators with Alibaba Cloud’s infrastructure as a service. 

    - - - -

    The partnership was covered in myriad outlets such as Coindesk, Journal du Coin, and BTC Echo. Partnering with Alibaba means the NEAR ecosystem will have access to Remote Procedure Calls (RPC) and enable users to interact with NEAR’s Blockchain Operating System while using Alibaba Cloud’s infrastructure. 

    - - - -

    The NEAR Foundation also released the Women in Web3 Changemakers List 2023, celebrating the achievements of extraordinary women throughout the Web3 ecosystem. As reported by Tech Funding News, the ten women were selected by the public and hail from all corners of the globe, following hundreds of nominations from the Web3 community. 

    - - - -

    Leadership viewpoints on media and social fairness

    - - - -

    Illia Polosukhin, Founder of NEAR and CEO of Pagoda, took the time to write a thought leadership piece in Blockworks about crypto’s potential to transform how we interact with the media. Illia sets out the emerging problem with the status quo: bad actors are beginning to utilize generative AI to dramatically scale up misinformation campaigns. 

    - - - -

    However, Illia explains that blockchain-based “sign-and-trace” systems can enable the public to reliably source and validate real news stories, with a legitimate trail of sources available online.

    - - - -

    CEO of NEAR Foundation Marieke Flament also penned an article for London’s leading daily business paper CityAM about using Web3 to build a fair and inclusive digital world.  “Too often technology has only benefited the few: those who have money, those who have power, or those of a certain gender, ethnicity, or skin color.

    - - - -

    But this doesn’t need to be the case,” she explained. “Technology can and should be in the service of all people. But to achieve this, we will need a change in perspective, something that Web3 can help us achieve.”

    - - - -

    Marieke also talked about blockchain, Web3, and BOS on a podcast hosted by the editor Journal du Coin – France’s leading crypto media outlet, and for a video interview with Fintech Finance at the Paris Fintech Forum. 

    - - - -

    That’s all for this month. If we missed anything or want to share anything for next month’s roundup, get in touch!

    -

    The post NEAR Foundation PR Roundup for June appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation PR Roundup for January - /blog/near-foundation-pr-roundup-for-january/ - - - Wed, 01 Feb 2023 22:20:36 +0000 - - - - /?p=19755 - - NEAR Foundation hopes all of you are having a great start to the year. Here are some of the top …

    -

    The post NEAR Foundation PR Roundup for January appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation hopes all of you are having a great start to the year. Here are some of the top news stories from the NEAR Foundation and our thriving ecosystem, as well as press headlines from around the globe.

    - - - -

    Calimero raises $8.5 million in funding

    - - - -

    In an exclusive with The Block, London-based startup Calimero announced an $8.5 million funding round co-led by NEAR Foundation to bring private sharding to NEAR. Calimero’s founders, ex-NEAR engineers Sandi Fatic and Mario Halambek, are building the “AWS for private sharding” and currently have their platform in alpha testing. The story has been covered across North America, Europe, Asia, and Africa, and is creating a lot of excitement throughout the NEAR ecosystem.

    - - - -

    SailGP opens fan-owned team for investment

    - - - -

    Another big story that hit the press was the first fan-owned SailGP team opening for investment.  As reported in Decrypt, the team was created by a modified community DAO on NEAR protocol, giving sailing fans the opportunity to run and invest in a team in their sport. The offer will close after $35 million in funding is raised and the team will debut in June 2023.

    - - - -

    Sheila Warren partners with Forkast News

    - - - -

    Sheila Warren, Advisor to the Crypto Council and NEAR Foundation, partnered with Forkast News to plot the course for Web3 in 2023. She identified regulatory decisions as a key area for the year ahead, with lots of activity expected in the US congress and India leading efforts in the G20. Sheila also identified Asia, and specifically ASEAN, as the region to watch for blockchain adoption and regulatory progress.

    - - - -

    NEAR’s global press coverage

    - - - -

    NEAR Foundation enjoyed coverage across every region in January, with 76 media mentions globally. One story covered extensively was Marieke Flament’s hopes for 2023 with Forkast News, predicting that the ongoing Twitter debacle has warranted an overhaul of the social media status-quo. Users are searching for platforms that are unbiased in their censoring of content and more transparent in their operations, presenting a key use case for blockchains. Marieke also outlined the need for continued improvements in diversity across the Web3 space to create a better working environment for everyone and improve decision making.

    - - - -

    Towards the end of January, we partnered with CoinDesk to take a look at the impending crypto winter and how the NEAR ecosystem will fare. The Web3 industry is in for a tough 12 months due to a contraction in user engagement and a scaling back of venture capital. However, NEAR is primed to thrive in the year ahead — with major new infrastructure, including NEAR Social and NEAR Crowd, real world value on the NEAR protocol is set to take off. The Foundation continues to support our bustling ecosystem, and the development community is only growing stronger through the community DAOs.

    - - - -

    Finally, Marieke Flament wrote about our recent Forbes post about the importance of servant leadership in the world of tech. Forget ego — this never bodes well in the long term.  

    - - - -

    Leaders must do their jobs “for the broader impact they can go on to have,” said Flament. “There are many ‘fake servant leaders’ who pretend they are doing it for the benefit of others but are all too often caught by their own deception and greed, leading to a loss of confidence in authority that runs deep and has a lasting impact on the way people feel about work.” 

    - - - -

    That’s all for this month. If we missed anything out or want to share anything for next month’s roundup, get in touch!

    -

    The post NEAR Foundation PR Roundup for January appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/press/index.html b/public/blog/tag/press/index.html deleted file mode 100644 index 68261226c..000000000 --- a/public/blog/tag/press/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Press Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/protocol-roadmap/feed/index.xml b/public/blog/tag/protocol-roadmap/feed/index.xml deleted file mode 100644 index 56fc2d2b4..000000000 --- a/public/blog/tag/protocol-roadmap/feed/index.xml +++ /dev/null @@ -1,204 +0,0 @@ - - - - Protocol Roadmap Archives – NEAR Protocol - - /blog/tag/protocol-roadmap/ - - Fri, 12 Jan 2024 19:23:38 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Protocol Roadmap Archives – NEAR Protocol - /blog/tag/protocol-roadmap/ - 32 - 32 - - - NEAR Q4 Protocol Roadmap Update - /blog/near-q4-protocol-roadmap-update/ - - - Fri, 12 Jan 2024 19:23:37 +0000 - - - - - - - /?p=21155 - - TLDR: 2023 saw major experience improvements via meta transactions and zero-balance accounts, as well as node performance improvements and optimizations. Preparations are underway for a major upgrade to stateless validation, completing Phase 2 of the sharding roadmap in early 2024.

    -

    The post NEAR Q4 Protocol Roadmap Update appeared first on NEAR Protocol.

    -]]>
    -
    By Bowen Wang, Director of Protocol

    In this post, the NEAR Protocol work group would like to provide an update of the protocol roadmap to show what we accomplished in 2023 and what is planned for 2024.

    - - - -

    TLDR: 2023 saw major experience improvements via meta transactions and zero-balance accounts, as well as node performance improvements and optimizations. Preparations are underway for a major upgrade to stateless validation, completing Phase 2 of the sharding roadmap in early 2024.

    - - - -

    What we accomplished in 2023

    - - - -

    There were a total of six protocol upgrades in 2023 which introduced a number of new protocol features. Meta transactions were added as a protocol feature at the beginning of the year to support gasless transactions, which means that users can transact on NEAR and start using apps without necessarily needing to pay transaction fees in NEAR. We also added zero-balance accounts, an important feature that enables users to create an account without holding NEAR to pay for storage. This makes it easy to onboard new users to applications. These two features form a solid foundation for a seamless onboarding experience for end users — a top goal for NEAR overall.

    - - - -

    In addition to easy user onboarding, we have also been working hard to optimize the performance of NEAR. Flat storage, which was released in Q2 this year, optimized state reads and improved the stability and performance of the network overall. Another feature that optimizes NEAR nodes is cold storage, which allows for a split between hot and cold storage for a node. This means an archival node does not need to store most of the historical data on SSD and therefore can save a lot on cost. We also optimized the network communication between validator nodes by introducing the tier1 network, which reduces the latency of network messages between two validator nodes. Furthermore, we improved state sync and reduced the time it took a node to synchronize the latest state. We have also worked on improving the stability and maintainability of contract runtime with initiatives like finite wasm and limited replayability.

    - - - -

    There are a few major initiatives that we started this year and expect to finish next year, such as stateless validation, congestion control, and transaction priority. We will dive deeper into those in the section below.

    - - - -


    Plans for 2024

    - - - -

    There are a few major projects that we want to deliver in 2024 to improve the usability, scalability, and decentralization of NEAR Protocol:

    - - - -
      -
    • Stateless validation. Stateless validation is a major initiative that we have been working on for a few months. It adjusts the original Nightshade sharding design to avoid implementing fraud proofs while improving the performance of each shard significantly by putting state in memory. The stateless validation work is expected to be delivered in Q2 2024, which would also mark the completion of the original goal we set for Phase 2 of sharding. We expect the launch of stateless validation to also dramatically increase the throughput of each shard and prepare NEAR for the continued growth of usage.
    • - - - -
    • Congestion control and transaction priority. While NEAR’s sharding design is horizontally scalable, it is important to provide a good user experience when there is short-term congestion on the network. This includes localizing congestion so that gas price increase does not affect the entire network and allowing users to prioritize their transactions during congestion if they are willing to pay more in transaction fees.
    • - - - -
    • Support for account aggregation. Account aggregation allows a user to control accounts on different chains with one NEAR account, an important pillar of the chain abstraction vision for NEAR. It requires chain signatures, which does MPC to sign payload. This requires a new runtime API to facilitate the asynchronous nature of chain signatures.
    • - - - -
    • zkWASM. We have been working on zkWASM with the Polygon team for a few months and the work will continue in 2024. The goal is to build a prover for WebAssembly smart contracts. This could be used as a part of the initiative to prove the state transition of NEAR in a ZK proof. Moreover, zkWASM also provides wasm as an alternative execution environment to EVM for L2s.
    • - - - -
    • Data availability improvements. We launched NEAR DA in early November 2023 and there are a few things that we plan to work on to further improve the efficiency of NEAR DA. Those improvements include introducing KZG commitment to avoid having data availability fraud proofs, as well as real-time bridging to allow verification of data availability on Ethereum.
    • - - - -
    • Ethereum wallet support. Supporting wallets like MetaMask natively on NEAR allows us to attract more users to NEAR and also be more Ethereum aligned. This requires changes to the protocol to support Ethereum addresses natively and support processing of RLP serialized Ethereum transactions.
    • - - - -
    • Research into the future of sharding. There are two major directions of exploration: synchronous sharding and ZK-centric sharding. Synchronous sharding enables synchronous execution of smart contracts and addresses the developer experience pain point of having to deal with asynchronous execution. ZK-centric sharding leverages zero-knowledge proofs to validate state transition of different shards and improves the scalability and decentralization of the protocol. In addition, we will also research the next and final phase of sharding: dynamically adjusting the number of shards based on usage.
    • -
    - - - -

    The roadmap can be seen below for those interested in more timeline specifics. It is split into two parts: Experience and Core. The Experience section encompasses user and/or developer experience and the protocol features needed to enable those experiences. As an example, synchronous execution addresses the pain point that developers feel when they implement cross-contract calls.

    - - - -
    - - - -


    The Core section, on the other hand, covers major efforts to improve the scalability and decentralization of the protocol. This includes stateless validation, zkWASM, improvements to data availability, and so on.

    - - - -
    - - - -



    As always, the protocol team is proud to have made several important improvements to the core protocol with zero disruption for users and developers. We look forward to making some major advancements in 2024 to help the entire NEAR ecosystem deliver its vision of mainstream adoption of an Open Web, where all internet users can control their own data, assets, and power of governance. 

    We will share more details on Phase 2 advancements and timelines soon. If you’d like to learn more, join the NEAR Protocol X Spaces on Tuesday, January 16 at 5pm UTC to hear from Director of Protocol Bowen Wang and NEAR Foundation CEO Illia Polosukhin on upcoming protocol developments.

    -

    The post NEAR Q4 Protocol Roadmap Update appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Q2 Protocol Roadmap Update - /blog/near-q2-protocol-roadmap-update/ - - - Wed, 09 Aug 2023 16:00:00 +0000 - - - - /?p=20793 - - The Q1 protocol roadmap update was well received by the community. Pagoda committed to  continuing to share quarterly roadmap updates, …

    -

    The post NEAR Q2 Protocol Roadmap Update appeared first on NEAR Protocol.

    -]]>
    - The Q1 protocol roadmap update was well received by the community. Pagoda committed to  continuing to share quarterly roadmap updates, so here is the update for Q2 2023.

    - - - -

    What the protocol team accomplished in Q2

    - - - -

    Pagoda made good progress on the protocol roadmap in Q2. For the experience section, there is now a NEP on account namespaces, a key stepping stone towards account extension. Account extension would allow users to easily compose different modules such as multisig, proxy, and so on. In addition, Aurora submitted a NEP on wasm submodules, which, if implemented, would enable a limited form of synchronous execution, or allowing transactions that touch multiple contracts to settle within a single block. Both proposals are still works in progress due to the complexity of the changes. 

    - - - -

    On top of these two proposed changes, there is a NEP on shared storage for contract code which could significantly lower the cost of deploying a common contract. These proposals aspire to bring to life the account extension idea, which allows an account to install different modules to different functionalities such as multisig, recovery, proxy, and so on.

    - - - -

    For the core section of the roadmap, Pagoda delivered a few important improvements this quarter. Flat storage with value inlining is live on mainnet and brings an 8x improvement to state reads. Work on background writes is also in progress and the protocol team’s initial experiments show that it can potentially reduce the cost of state writes by 3x. In addition, cold storage is fully live on mainnet and drastically reduces the cost of running an archival node.

    - - - -

    Pagoda has also made good progress to revamp state sync. With the growth of mainnet state, the previous version of state sync was too inefficient and practically unusable. The new state sync, which uses flat storage to speed up state part generation, allows a node to finish syncing mainnet state within 3 hours. The team is expected to deliver the fully functional version of the new state sync in Q3.

    - - - -

    The team has also delivered finite wasm and its integration with nearcore, which improves the security and robustness of NEAR’s contract runtime immensely.

    - - - -

    Updates to the roadmap

    - - - -

    The experience section of the roadmap remains mostly the same, with two changes worth highlighting. One shift is that the changes required to implement account extension are temporarily on hold as we would like to see the impact on user experience by first emulating the changes through smart contracts. Another change is that the protocol team will work on the storage refund problem to prevent potential faucet-draining attacks in the new onboarding experience.

    - - - -
    - - - -

    For the core section of the roadmap, the focus in Q3 will shift to Phase 2 of sharding, which includes both resharding the current mainnet state and turning off the requirement that block producers have to track all shards. This endeavor will take more than one quarter to finish and we will post more updates as we iron out details of the design.

    - - - -
    - - - -

    To stay up to date with protocol changes as they happen, or to participate in protocol governance, please join the protocol community group and follow the NEAR Enhancement Proposal (NEP) process.

    -

    The post NEAR Q2 Protocol Roadmap Update appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/protocol-roadmap/index.html b/public/blog/tag/protocol-roadmap/index.html deleted file mode 100644 index 4106a700f..000000000 --- a/public/blog/tag/protocol-roadmap/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Protocol Roadmap Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/public-dataset/feed/index.xml b/public/blog/tag/public-dataset/feed/index.xml deleted file mode 100644 index 4f7228774..000000000 --- a/public/blog/tag/public-dataset/feed/index.xml +++ /dev/null @@ -1,156 +0,0 @@ - - - - Public Dataset Archives – NEAR Protocol - - /blog/tag/public-dataset/ - - Fri, 22 Sep 2023 14:39:57 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Public Dataset Archives – NEAR Protocol - /blog/tag/public-dataset/ - 32 - 32 - - - NEAR Protocol BigQuery Public Dataset - /blog/near-protocol-bigquery-public-dataset/ - - - Fri, 22 Sep 2023 14:00:00 +0000 - - - - - /?p=20911 - - NEAR Protocol is a user-friendly, carbon-neutral blockchain, built from the ground up to be performant, secure, and unparalleled scalability. In …

    -

    The post NEAR Protocol BigQuery Public Dataset appeared first on NEAR Protocol.

    -]]>
    - NEAR Protocol is a user-friendly, carbon-neutral blockchain, built from the ground up to be performant, secure, and unparalleled scalability. In technical terms, NEAR is a layer one, sharded, proof-of-stake blockchain built with usability in mind. In simple terms, NEAR is a blockchain for everyone.

    - - - -

    Today, we are excited to announce the NEAR BigQuery Public Dataset for anyone who wants to query blockchain data in an easy and cost-effective way.

    - - - -

    Why BigQuery Public Dataset

    - - - -

    Until now, a user’s data query needs were fulfilled by indexers. Those indexers were either supplied by NEAR Protocol or custom made. To build custom indexers required JSON files from the NEAR Lake storage layer to be transformed and loaded into a target database engine like PostgreSQL, and only then could a user execute queries against it. This approach is complex, time-consuming, and resource-draining. It requires constant monitoring to ensure databases have the most up-to-date information.
    NEAR BigQuery Public Dataset changes this. It provides near real-time blockchain data that can be easily queried with SQL.

    - - - -

    What we did

    - - - -

    We built the NEAR LakeHouse in Databricks. The data is loaded into raw bronze files using Databricks Autoloader, and transformed with Databricks Delta Live Tables into cleaned and enriched silver tables following the Databricks Medallion Architecture. The silver tables are then copied into the GCP BigQuery Public Dataset ready for consumption.

    - - - -

    The solution design

    - - - -
    - - - -

    The code is open-source and can be found in our GitHub repository: near/near-public-lakehouse

    - - - -

    To learn more about how to get started and the data available, please check our documentation:

    - - - -

    https://docs.near.org/bos/queryapi/big-query

    - - - -

    Benefits

    - - - -
      -
    • NEAR instant insights: Historic on-chain data queried at scale.
    • - - - -
    • Cost-effective: Eliminate the need to store and process bulk NEAR Protocol data; query as little or as much data as preferred.
    • - - - -
    • Easy to use: No prior experience with blockchain technology is required; bring a general knowledge of SQL to unlock insights.
    • -
    - - - -

    Conclusion

    - - - -

    NEAR BigQuery Public Dataset  is now available for anyone wanting to harness blockchain data for their own needs. BigQuery can help not only developers, but broader audiences including: 

    - - - -
      -
    • Users: Create queries to track NEAR Protocol assets, monitor transactions, or analyze on-chain events at a massive scale.
    • - - - -
    • Researchers: Use indexed data for data science tasks, including on-chain activities, identifying trends, or feeding AI/ML pipelines for predictive analysis.
    • - - - -
    • Startups: Use NEAR Protocol’s indexed data for deep insights on user engagement, smart contract utilization, or insights across tokens and NFT adoption.
    • -
    - - - -

    Acknowledgments

    - - - -

    We are grateful for the following contributors who helped us to deliver the NEAR BigQuery Public Dataset. 

    - - - - -

    The post NEAR Protocol BigQuery Public Dataset appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/public-dataset/index.html b/public/blog/tag/public-dataset/index.html deleted file mode 100644 index be366f2fa..000000000 --- a/public/blog/tag/public-dataset/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Public Dataset Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/pyth-price-feeds/feed/index.xml b/public/blog/tag/pyth-price-feeds/feed/index.xml deleted file mode 100644 index b83ba20a7..000000000 --- a/public/blog/tag/pyth-price-feeds/feed/index.xml +++ /dev/null @@ -1,90 +0,0 @@ - - - - Pyth Price Feeds Archives – NEAR Protocol - - /blog/tag/pyth-price-feeds/ - - Thu, 30 Nov 2023 12:38:26 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Pyth Price Feeds Archives – NEAR Protocol - /blog/tag/pyth-price-feeds/ - 32 - 32 - - - Pyth Price Feeds Launch on NEAR Protocol Bringing Equity, Commodities, and Market Data On Chain  - /blog/pyth-price-feeds-launch-on-near-protocol-bringing-equity-commodities-and-market-data-on-chain/ - - - Thu, 30 Nov 2023 14:00:00 +0000 - - - - - /?p=21126 - - Pyth, the largest first-party provider of real-time market data for crypto, equities, FX, and commodities to more than 40 blockchains, …

    -

    The post Pyth Price Feeds Launch on NEAR Protocol Bringing Equity, Commodities, and Market Data On Chain  appeared first on NEAR Protocol.

    -]]>
    - Pyth, the largest first-party provider of real-time market data for crypto, equities, FX, and commodities to more than 40 blockchains, has launched on NEAR protocol. Pyth, whose services are used by more than 80 market participants — including Jane Street, CBOE, Binance, OKX, and Bybit — brings high-fidelity, high frequency financial market data to the NEAR blockchain natively for the first time.

    - - - -

    Previously, Pyth had deployed its feeds to Aurora, the EVM chain built on NEAR. But today Pyth data feeds are fully compatible with NEAR Protocol.   

    - - - -

    The announcement is a boon to the burgeoning DeFi ecosystem built on top of NEAR, which stands to benefit from data feeds that update every 300 milliseconds.

    - - - -

    While other oracle providers use third-party data providers or relayers, Pyth’s data comes from institutions directly. Additionally, Pyth does not use price triggers to prevent certain prices from being pushed. Pyth uses Confidence Intervals to ensure continuous price availability. This new metric allows projects to consume Pyth’s price feeds during the most volatile market conditions.

    - - - -

    The Importance of Oracles 

    - - - -

    Oracles are an important part of any DeFi ecosystem, since they are the information bridges between blockchains and databases. Although oracles could be built by the developers of DeFi projects, out-of-box, decentralized oracles are helpful for builders to start quickly without losing time and effort creating their own oracles. 

    - - - -

    “Celebrating a new era of data reliability and trust, Douro Labs is thrilled to announce the seamless integration of Pyth Network with the NEAR blockchain,” says Abhimanyu Bansal, Head of Partnerships at Douro Labs. 

    - - - -

    “This strategic partnership empowers developers on NEAR with real-time, accurate data feeds, and as we bridge the gap between the physical and digital worlds this integration propels us towards a future of decentralized applications that are not only secure but also truly informed.”

    - - - -

    Pyth has a robust network that is able to deliver price data even during sizable events. During the LUNA/UST incident in May ‘22, Pyth managed to track the LUNA price very accurately during the UST de-peg, while other networks stopped updating the price, causing inaccurate price data. 

    - - - -

    In less than a year since Pyth’s launch, the network secured more than $2.0B in total value. Pyth has facilitated over $70 billion in trading volume and received over a million client downloads from passionate developers. Pyth supports 350+ low-latency price feeds across digital assets, equities, ETFs, forex pairs, and commodities. 

    -

    The post Pyth Price Feeds Launch on NEAR Protocol Bringing Equity, Commodities, and Market Data On Chain  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/pyth-price-feeds/index.html b/public/blog/tag/pyth-price-feeds/index.html deleted file mode 100644 index 817e9e3f4..000000000 --- a/public/blog/tag/pyth-price-feeds/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Pyth Price Feeds Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/pyth/feed/index.xml b/public/blog/tag/pyth/feed/index.xml deleted file mode 100644 index cb4606e1d..000000000 --- a/public/blog/tag/pyth/feed/index.xml +++ /dev/null @@ -1,90 +0,0 @@ - - - - Pyth Archives – NEAR Protocol - - /blog/tag/pyth/ - - Thu, 30 Nov 2023 12:38:26 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Pyth Archives – NEAR Protocol - /blog/tag/pyth/ - 32 - 32 - - - Pyth Price Feeds Launch on NEAR Protocol Bringing Equity, Commodities, and Market Data On Chain  - /blog/pyth-price-feeds-launch-on-near-protocol-bringing-equity-commodities-and-market-data-on-chain/ - - - Thu, 30 Nov 2023 14:00:00 +0000 - - - - - /?p=21126 - - Pyth, the largest first-party provider of real-time market data for crypto, equities, FX, and commodities to more than 40 blockchains, …

    -

    The post Pyth Price Feeds Launch on NEAR Protocol Bringing Equity, Commodities, and Market Data On Chain  appeared first on NEAR Protocol.

    -]]>
    - Pyth, the largest first-party provider of real-time market data for crypto, equities, FX, and commodities to more than 40 blockchains, has launched on NEAR protocol. Pyth, whose services are used by more than 80 market participants — including Jane Street, CBOE, Binance, OKX, and Bybit — brings high-fidelity, high frequency financial market data to the NEAR blockchain natively for the first time.

    - - - -

    Previously, Pyth had deployed its feeds to Aurora, the EVM chain built on NEAR. But today Pyth data feeds are fully compatible with NEAR Protocol.   

    - - - -

    The announcement is a boon to the burgeoning DeFi ecosystem built on top of NEAR, which stands to benefit from data feeds that update every 300 milliseconds.

    - - - -

    While other oracle providers use third-party data providers or relayers, Pyth’s data comes from institutions directly. Additionally, Pyth does not use price triggers to prevent certain prices from being pushed. Pyth uses Confidence Intervals to ensure continuous price availability. This new metric allows projects to consume Pyth’s price feeds during the most volatile market conditions.

    - - - -

    The Importance of Oracles 

    - - - -

    Oracles are an important part of any DeFi ecosystem, since they are the information bridges between blockchains and databases. Although oracles could be built by the developers of DeFi projects, out-of-box, decentralized oracles are helpful for builders to start quickly without losing time and effort creating their own oracles. 

    - - - -

    “Celebrating a new era of data reliability and trust, Douro Labs is thrilled to announce the seamless integration of Pyth Network with the NEAR blockchain,” says Abhimanyu Bansal, Head of Partnerships at Douro Labs. 

    - - - -

    “This strategic partnership empowers developers on NEAR with real-time, accurate data feeds, and as we bridge the gap between the physical and digital worlds this integration propels us towards a future of decentralized applications that are not only secure but also truly informed.”

    - - - -

    Pyth has a robust network that is able to deliver price data even during sizable events. During the LUNA/UST incident in May ‘22, Pyth managed to track the LUNA price very accurately during the UST de-peg, while other networks stopped updating the price, causing inaccurate price data. 

    - - - -

    In less than a year since Pyth’s launch, the network secured more than $2.0B in total value. Pyth has facilitated over $70 billion in trading volume and received over a million client downloads from passionate developers. Pyth supports 350+ low-latency price feeds across digital assets, equities, ETFs, forex pairs, and commodities. 

    -

    The post Pyth Price Feeds Launch on NEAR Protocol Bringing Equity, Commodities, and Market Data On Chain  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/pyth/index.html b/public/blog/tag/pyth/index.html deleted file mode 100644 index 4f849be75..000000000 --- a/public/blog/tag/pyth/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Pyth Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/raidar/feed/index.xml b/public/blog/tag/raidar/feed/index.xml deleted file mode 100644 index 90c4f8f3a..000000000 --- a/public/blog/tag/raidar/feed/index.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - - RAIDAR Archives – NEAR Protocol - - /blog/tag/raidar/ - - Thu, 02 Nov 2023 15:02:18 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - RAIDAR Archives – NEAR Protocol - /blog/tag/raidar/ - 32 - 32 - - - Berklee College of Music Partners with NEAR Foundation to Build Music Licensing Platform  - /blog/berklee-college-of-music-partners-with-near-foundation-to-build-music-licensing-platform/ - - - Thu, 02 Nov 2023 16:00:00 +0000 - - - - - - /?p=21039 - - Berklee College of Music, the largest independent college of contemporary music and performing arts in the world, announced today a …

    -

    The post Berklee College of Music Partners with NEAR Foundation to Build Music Licensing Platform  appeared first on NEAR Protocol.

    -]]>
    - Berklee College of Music, the largest independent college of contemporary music and performing arts in the world, announced today a partnership with the NEAR Foundation to help build a music licensing platform. 

    - - - -

    The agreement, which will harness NEAR Protocol’s easy-to-use tech stack, will lead to the creation of a marketplace where musicians can upload their music, and creators can license music from the students of this world-class music institution. 

    - - - -

    The project will be released under an app called RAIDAR, which stands for Rights and Asset Information in Decentralized, Authoritative Repositories. Thanks to NEAR’s Web3 technology, all transactions will be recorded on the NEAR blockchain, ensuring a creators’ rights and representation are recorded on-chain. 

    - - - -

    Behind Berklee’s music licensing app, built on NEAR

    - - - -

    RAIDAR will use smart contracts to disintermediate the licensing process and ensure that musicians receive the full economic value and credit for their works. 

    - - - -

    “This is a first of its kind product that will help to democratize the world of music by putting creators first and ensuring they are always rewarded and protected from exploitation for their original work,” says George Howard, Distinguished Professor of Music Business at Berklee. 

    - - - -

    “Those who are seeking to license music for their projects now have a chance to access and support new creators by tapping into an exciting marketplace through the RAIDAR app, which is easy to navigate and offers a safe and reliable way to pay for music.”

    - - - -

    RAIDAR — simple to use, accessible to all

    - - - -

    The product is designed to be simple to use, which is a cornerstone of building on the NEAR Protocol. Musicians simply upload their music files and relevant metadata through a mobile- and desktop-friendly web app. 

    - - - -

    Their song is then represented by a unique, secure smart contract and assigned to the creator’s wallet as an asset or NFT, empowering the creator to view and showcase the song, wherever they go.  

    - - - -

    On the customer side, users can browse, search, and preview songs uploaded to the RAIDAR app and purchase single-use licenses for songs via the app. The song’s smart contract distributes funds received from the payment to the song’s creator. After the purchase transaction completes, the buyer receives an email with the corresponding song download link and a copy of the license agreement.

    - - - -

    “We are extremely excited to be working with Berklee to support a new and unique use case that has real world value for those that use it,” says  Chris Donovan, CEO of the NEAR Foundation. 

    - - - -

    “The RAIDAR app is a disruptive technology built on NEAR  that will help students to explore the power of smart contracts to ensure they are being paid fairly for their work, and that the world of music becomes more inclusive, safe and exciting for everyone.” 

    -

    The post Berklee College of Music Partners with NEAR Foundation to Build Music Licensing Platform  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/raidar/index.html b/public/blog/tag/raidar/index.html deleted file mode 100644 index 015bf9e08..000000000 --- a/public/blog/tag/raidar/index.html +++ /dev/null @@ -1,2 +0,0 @@ -RAIDAR Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/refer-and-earn/feed/index.xml b/public/blog/tag/refer-and-earn/feed/index.xml deleted file mode 100644 index 5d748d958..000000000 --- a/public/blog/tag/refer-and-earn/feed/index.xml +++ /dev/null @@ -1,142 +0,0 @@ - - - - Refer-and-Earn Archives – NEAR Protocol - - /blog/tag/refer-and-earn/ - - Thu, 15 Dec 2022 13:31:44 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Refer-and-Earn Archives – NEAR Protocol - /blog/tag/refer-and-earn/ - 32 - 32 - - - Refer-and-Earn Guidelines Update: Q3 2022 - /blog/refer-and-earn-guidelines-update-q3-2022/ - - - Fri, 09 Dec 2022 17:00:00 +0000 - - - - - /?p=19539 - - NEAR’s ever-growing and engaged community is one of the ecosystem’s greatest strengths. Remember the NEAR Foundation Grants team’s Refer-and-Earn Program? …

    -

    The post Refer-and-Earn Guidelines Update: Q3 2022 appeared first on NEAR Protocol.

    -]]>
    - NEAR’s ever-growing and engaged community is one of the ecosystem’s greatest strengths. Remember the NEAR Foundation Grants team’s Refer-and-Earn Program? A number of NEAR community members participated in Refer-and-Earn in early 2022, resulting in grants for dozens of exciting projects currently building on the NEAR ecosystem.  

    - - - -

    The Foundation has had the pleasure of seeing the community being a key contributor in providing ecosystem support and building dapps. The community does this in a number of ways, including running and sponsoring events, educating developers and entrepreneurs on the benefits of NEAR, bringing projects with active user bases from other chains, and so on.

    - - - -

    NEAR Foundation wants to build on the community’s successes through a new incentive structure that aligns with the Grants Program (more information can be found at the Grants Program Handbook here bit.ly/Grants-Program-Handbook). 

    - - - -
      -
    1. The payout for each project referred will be awarded a total of 10% of the project awarded grant amount. This amount is awarded in nUSDC (wrapped USDC on NEAR) and is calculated at the end of each quarter.
    2. - - - -
    3. The first half of the 5% will be awarded at the point of the contract signed.
    4. - - - -
    5. The second half of the 5% will be awarded once all project milestones are completed. 
    6. -
    - - - -

    Refer-and-Earn: Q3 Qualified Projects

    - - - -

    The NEAR ecosystem receives a number of your recommendations and referrals. A total of 12 quality projects emerged from Refer-and-Earn, each aligning with NEAR Foundation’s Grants program objectives. 

    - - - -

    In no particular order, here are the Q3 2022 qualified projects: 

    - - - -
      -
    • Scene 
    • - - - -
    • Azadi Record
    • - - - -
    • Vital Carbon 
    • - - - -
    • Metavision Games 
    • - - - -
    • Murder Mystery Collective 
    • - - - -
    • MetaLordz 
    • - - - -
    • Klabrate and ClimaFi
    • - - - -
    • Meteor wallet 
    • - - - -
    • Mintmade 
    • - - - -
    • NEARKai
    • - - - -
    • EVIE Marketplace 
    • - - - -
    • Autify 
    • -
    - - - -

    The Grants team has reached out to all Refer-and-Earn referrers. Thanks to your help and support, the Grants team is able to support innovative projects like those listed above. 

    -

    The post Refer-and-Earn Guidelines Update: Q3 2022 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/refer-and-earn/index.html b/public/blog/tag/refer-and-earn/index.html deleted file mode 100644 index 76d7daf60..000000000 --- a/public/blog/tag/refer-and-earn/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Refer-and-Earn Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/regional-hubs/feed/index.xml b/public/blog/tag/regional-hubs/feed/index.xml deleted file mode 100644 index 11896d7ec..000000000 --- a/public/blog/tag/regional-hubs/feed/index.xml +++ /dev/null @@ -1,116 +0,0 @@ - - - - Regional hubs Archives – NEAR Protocol - - /blog/tag/regional-hubs/ - - Thu, 15 Dec 2022 13:35:55 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Regional hubs Archives – NEAR Protocol - /blog/tag/regional-hubs/ - 32 - 32 - - - NEAR Boosts Web3 Gaming with New South Korea Regional Hub Launch - /blog/near-boosts-web3-gaming-with-new-south-korea-regional-hub-launch/ - - - Tue, 01 Nov 2022 10:00:00 +0000 - - - /?p=18744 - - South Korea will soon have its own NEAR Regional Hub  dedicated to Web3  innovation, business development, education, and talent throughout …

    -

    The post NEAR Boosts Web3 Gaming with New South Korea Regional Hub Launch appeared first on NEAR Protocol.

    -]]>
    - South Korea will soon have its own NEAR Regional Hub  dedicated to Web3  innovation, business development, education, and talent throughout the country. The hub will be led by entrepreneurs Scott Lee and Ben Kang – both influential figures within South Korea’s growing blockchain community. Details of the plan include tapping into the country’s active gaming community, bringing more amazing projects and creators to the NEAR ecosystem. 

    - - - -

    NEAR has entered the game

    - - - -

    This exciting development will bring all things NEAR to South Korea’s vibrant Web2 and Web3 scene. Most notably, game developers building on NEAR will be exposed to the country’s massive gaming markets, ranked fourth in the world, and earn commissions on the NEAR-based dapps they build. 

    - - - -

    South Korea’s gaming industry leaders feature WEMADE’s P2E project, WEMIX, NetMarble’s MarbleX, and KakaoGamesMETABORA. With gaming and crypto’s popularity in South Korea, the new hub will be integral in helping lay the foundation for Web3 gaming’s future; both locally within the country, and beyond. 

    - - - -

    Local leadership for local communities

    - - - -

    Together, Scott Lee and Ben Kang bring an impressive depth of knowledge and experience to the NEAR ecosystem, as well as a vast network of industry leaders from the broader Web3 space.

    - - - -

    When Lee wasn’t busy founding a Web3 startup or advising on multiple Korean-based projects, he was the Director of Business Development of Legendaries, a subsidiary of KAKAO Entertainment. Before joining KAKAO Entertainment, he led an accelerating division and growth team from SparkLabs and FuturePlay.

    - - - -

    Kang began his career in financial services and worked in high profile roles at Merrill Lynch and the Korea Stock Exchange. After co-founding Klaytn, Korea’s leading Layer 1, he leveraged his expertise to advise on the company’s tokenomics and corporate investments.  

    - - - -

    The power duo hopes to attract the best quality projects and the hottest developers in South Korea to build on NEAR while helping companies transition from Web2 into Web3, particularly those within the gaming industry.

    - - - -

    New places, new talent, new projects

    - - - -

    To seize this opportunity to heighten awareness for NEAR in South Korea, the hub will also play a proactive role in community building through meetups, hackathons, and university relations, attracting high quality projects and growing NEAR’s presence in the region.

    - - - -

    “NEAR has gained wide support among the exciting Web3 community for its ease of use and impressive user interface, which has helped to democratize access to building and bring a mix of exciting talent to the protocol. Moreover, there is a significant number of JavaScript developers in Korea, and they can now easily build on NEAR,” said Scott Lee. “We want to use the hub to leverage that momentum and to attract an even bigger audience of builders by giving them the funding and the tools to create an inclusive and sustainable Web3 future for Korea.”

    - - - -

    “We will focus on enhancing the overall NEAR ecosystem and attracting Web3 projects to onboard – and  also value campus blockchain communities, which will be the fundamentals of the NEAR Protocol.” said Ben Kang. “In order to do this we will work closely with the community to raise the profile of the NEAR and to shine a spotlight on the high level of scalability and useability that the protocol can offer creators.”

    - - - -

    South Korea has one of the most established Web3 ecosystems in Asia and one of the most active cryptocurrency economies in the world. This, along with a combination of highly creative local talent and a growing desire for developers to build sustainably and without limits, makes this country an ideal addition to the NEAR Regional Hubs initiative. 

    - - - -

    “We are thrilled to be growing the blockchain dev community in Korea as the talent there is world class and they have the potential to create some fantastic Web3 projects on NEAR,” said Marieke Flament, CEO of the NEAR Foundation. “With a stellar leadership team at the helm of this exciting and inclusive hub, we are confident that we can deliver the necessary tools and opportunities to attract more of the best and brightest stars from the local community. Together we can give them the training and freedom to build sustainable and exciting Web3 applications without limits.”

    - - - -

    Building a world without limits

    - - - -

    Internationally, the excitement continues to build around the #NEARisNOW movement,  and the potential NEAR has as the de facto blockchain of Web3.  With its ecosystem-first approach, incredible community, and innovative tech, there is no better on ramp to the future of the web. Unlike other chains, NEAR gives software developers easy access to create without limits.  

    -

    The post NEAR Boosts Web3 Gaming with New South Korea Regional Hub Launch appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/regional-hubs/index.html b/public/blog/tag/regional-hubs/index.html deleted file mode 100644 index ce51762f9..000000000 --- a/public/blog/tag/regional-hubs/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Regional hubs Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/research/feed/index.xml b/public/blog/tag/research/feed/index.xml deleted file mode 100644 index feb96b132..000000000 --- a/public/blog/tag/research/feed/index.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - - Research Archives – NEAR Protocol - - /blog/tag/research/ - - Thu, 15 Dec 2022 08:30:15 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Research Archives – NEAR Protocol - /blog/tag/research/ - 32 - 32 - - - NEAR Developer Research: Validating the NEAR DevX Tech Stack – Round 2 - /blog/near-developer-research-validating-the-near-devx-tech-stack-round-2/ - - - Thu, 29 Oct 2020 16:29:13 +0000 - - - /?p=6284 - - Update: We’ve quickly filled up the available sessions for this round of research, and will not be taking on any …

    -

    The post NEAR Developer Research: Validating the NEAR DevX Tech Stack – Round 2 appeared first on NEAR Protocol.

    -]]>
    - Update: We’ve quickly filled up the available sessions for this round of research, and will not be taking on any more participants. The post will remain on the blog for those interested in getting a peek at what we’re up to. For those interested in participating, check back for round 3!

    -

    After a successful first round of research diving into the developer experiences of AssemblyScript and Rust earlier this month, we’re back in action with ROUND 2. This is a compensated opportunity to contribute to the future success of NEAR and help shape the future of developer experience for the community.

    -

    Validating the NEAR DevX Tech Stack

    -

    The next big decision we welcome the community to participate in is how we will support AssemblyScript in addition to Rust as a WASM source. We want to test our assumptions about the value propositions of these languages with community developers in order to make an informed, evidence based decision on what we choose to support, and to what extent.

    -

    Round 1 of this initiative focused on reading and discussing a set of pre-written contracts.

    -

    For Round 2, we want to walk through setting up and deploying a simple contract with our developer participants in order to compare and contrast the experience between languages. If selected, participants who complete a session with us will be compensated with $50 of value in the form of a gift card or tokens depending on location.

    -

    If interested in participating, fill out this invite form to connect with our team. You do not have to have participated in Round 1 to participate in Round 2.

    -

    What you’ll do

    -

    It’s easy to join and we’re open to feedback from community members from around the world. After a quick survey and remote interview we’ll ask you to complete a few simple dev tasks and provide your feedback to the team.

    -
      -
    1. Pre-interview Survey
      -
      New participants will be asked to complete a short pre-interview survey about their development experience to help us categorize feedback. 
    2. -
    3. Remote Interview (15 min)
      -
      At the start of the session, new participants will be interviewed about their development experience and their opinions about the tools that we’re testing. 
    4. -
    5. Remote Technical Exercises (35 – 60min)
      -
      Each participant will be asked to complete a series of short tasks focused on customizing a smart contract on NEAR, and to share their thoughts along the way.
      -

      -
      Participants will be asked to:

      -
        -
      • Use create-near-app to generate new projects in Rust and AssemblyScript
      • -
      • Edit contract code to pass a set of pre-written unit tests
      • -
      • Build and deploy the contract to the NEAR Testnet
      • -
      • Verify that the contract works as expected and troubleshoot any issues
      • -
      -
    6. -
    -

    You’re a great fit if you fall into any of the following categories:

    -

    … you’re a developer with experience in Javascript / Typescript

    -

    … you’re a developer with experience in AssemblyScript

    -

    … you’re a developer with experience in Rust

    -

    … you’re a developer with experience in Solidity

    -

    … you’re interested in getting some hands-on time with some of the basic NEAR developer tooling.

    -

    If this sounds like you, and you’d like to participate in this initiative, please fill out the participant sign up form here, and we’ll reach out with additional details should you be selected!

    -

    The post NEAR Developer Research: Validating the NEAR DevX Tech Stack – Round 2 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/research/index.html b/public/blog/tag/research/index.html deleted file mode 100644 index edb62f401..000000000 --- a/public/blog/tag/research/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Research Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/retail/feed/index.xml b/public/blog/tag/retail/feed/index.xml deleted file mode 100644 index 5a6256094..000000000 --- a/public/blog/tag/retail/feed/index.xml +++ /dev/null @@ -1,152 +0,0 @@ - - - - Retail Archives – NEAR Protocol - - /blog/tag/retail/ - - Wed, 06 Sep 2023 16:46:55 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Retail Archives – NEAR Protocol - /blog/tag/retail/ - 32 - 32 - - - Cosmose and NEAR Foundation Set To Revolutionize Retail with Web3 and AI - /blog/cosmose-and-near-foundation-set-to-revolutionize-retail-with-web3-and-ai/ - - - Mon, 24 Apr 2023 07:46:00 +0000 - - - - - /?p=20441 - - The Artificial Intelligence (AI) wave is touching just about every corner of commerce and culture, and retail is no exception. …

    -

    The post Cosmose and NEAR Foundation Set To Revolutionize Retail with Web3 and AI appeared first on NEAR Protocol.

    -]]>
    - The Artificial Intelligence (AI) wave is touching just about every corner of commerce and culture, and retail is no exception. Cosmose AI, one of the leaders in AI and retail, has received a strategic investment from NEAR Foundation to create Web3, mobile, and retail experiences that enhance personalization without sacrificing privacy or security.

    - - - -

    “NEAR is the most secure, scalable, and sustainable blockchain protocol,” says Miron Mironiuk, founder and CEO of Cosmose. “As such, we’re grateful for the ongoing support from NEAR Foundation and are excited about what’s to come.”

    - - - -

    By utilizing the NEAR Blockchain Operating System (BOS) and AI-powered retail personalization, Cosmose gives users access to their data and personalized recommendations. This move toward a decentralized and user-focused Web3 future emphasizes how AI and blockchain have the power to completely alter current business structures in the retail sector.

    - - - -

    With the help of NEAR’s technology and ecosystem, Cosmose can now change conventional retail business models and produce hyper-personalized shopping experiences that increase loyalty and happiness. These experiences will include its flagship mobile application KaiKai and a suite of AI-powered personalization tools.

    - - - -

    Personalizing retail with Web3 experiences

    - - - -

    Shopper and user personalization is nothing new in retail, but Cosmose is blazing a new trail with the power of its proprietary AI engine. Cosmose’s AI gathers and analyzes user data to produce suggestions and experiences that are uniquely tailored to each user. 

    - - - -

    By building on NEAR, Cosmose is able to help retailers develop stronger customer interactions while also addressing privacy and data security issues endemic to Web2 retail data collection. Cosmose and its KaiKai mobile app are trusted by top brands including LVMH, Richemont, L’Oréal, and Estée Lauder.

    - - - -

    “Having built on NEAR in 2022 and while working with NEAR Foundation we discovered that our visions for the Web3-driven future are aligned,” Mironiuk continues.

    - - - -

    Through the partnership, Cosmose will be able to offer individualized experiences to its worldwide clientele through a number of channels, including online, in-store, and mobile. 

    - - - -

    “This investment from NEAR Foundation is a testament to Cosmose AI’s strength and potential to revolutionize e-commerce and the retail industry,” said George Raymond Zage III, founder and CEO of Tiga Investments and a Cosmose board member. “We’re excited to see Cosmose AI’s continued growth and success.”

    - - - -

    KaiKai: Introducing “Shoppertainment” on the NEAR Blockchain Operating System

    - - - -

    KaiKai, Cosmose AI’s flagship product, shopping, retail, and gamification to create a new category altogether: Shoppertainment. The mobile shopping experience is constructed in a very unique way, using the BOS as a backbone to make brand discovery and engagement more fun and rewarding.

    - - - -

    Some of KaiKai’s features that brands are already using include:

    - - - -
      -
    • Exclusive product drops available for a limited time
    • - - - -
    • Augmented Reality (AR) technology that brings products to life
    • - - - -
    • Livestreams featuring celebrities and influencers
    • - - - -
    • Ads displayed on users’ lock screens without interruptions
    • - - - -
    • Geolocation features displaying available products in the user’s area
    • - - - -
    • Rewards for collecting products and writing reviews
    • - - - -
    • A secure Near wallet accessible via the KaiKai app
    • -
    - - - -

    KaiKai also features a native cryptocurrency called Kai-Ching, which users earn and spend like any other retail rewards program. The difference is that Cosmose’s AI provides more personalized recommendations and rewards suggestions, with customers easily transacting on the NEAR blockchain with a native KaiKai crypto wallet.

    - - - -

    “We’re excited to support Cosmose as it continues to scale rapidly and create new ways for retailers to offer customers the best offline and online shopping experiences,” noted Marieke Flament, CEO of the NEAR Foundation. “Cosmose has already been building on NEAR testnet, and with this additional support it will have many more opportunities to grow and expand its offerings with Web3 in a sustainable, transparent, and infinitely scalable way.” 

    - - - -

    Flament added: “Cosmose’s excellent AI innovation will help to intensify its global marketplace lead, and with superior AI-driven personalization, its user base will undoubtedly continue to grow as new and existing customers are seamlessly transitioned into the world of Web3 and all the exciting opportunities it brings.”

    - - - -

    It’s no secret that AI is turning industries, communities, and business models on their heads – and that’s not a bad thing. NEAR Foundation’s commitment to developing Cosmose’s retail technology, including KaiKai, signals that consumers will now be even more empowered with more personal recommendations, a “shoppertaining” experience, and the sound of “Kai-Ching” as they earn crypto rewards powered by NEAR and BOS.

    - - - -

    “Together we’ll build a future where one billion users benefit from the ecosystem they’re part of, with complete control of their data and superior AI-driven personalization,” said Mironiuk.

    -

    The post Cosmose and NEAR Foundation Set To Revolutionize Retail with Web3 and AI appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/retail/index.html b/public/blog/tag/retail/index.html deleted file mode 100644 index 88950b6f7..000000000 --- a/public/blog/tag/retail/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Retail Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/rewards/feed/index.xml b/public/blog/tag/rewards/feed/index.xml deleted file mode 100644 index 1bd4cfc7b..000000000 --- a/public/blog/tag/rewards/feed/index.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - rewards Archives – NEAR Protocol - - /blog/tag/rewards/ - - Wed, 09 Aug 2023 16:23:10 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - rewards Archives – NEAR Protocol - /blog/tag/rewards/ - 32 - 32 - - - How GLASS is Uncorking Adult Beverage Loyalty with Web3 and NEAR  - /blog/how-glass-is-uncorking-adult-beverage-loyalty-with-web3-and-near/ - - - Thu, 10 Aug 2023 14:00:00 +0000 - - - - - /?p=20794 - - GLASS, the world’s first compliant Web3 community and loyalty platform for the $1.6 trillion alcohol industry, is deploying on the …

    -

    The post How GLASS is Uncorking Adult Beverage Loyalty with Web3 and NEAR  appeared first on NEAR Protocol.

    -]]>
    - GLASS, the world’s first compliant Web3 community and loyalty platform for the $1.6 trillion alcohol industry, is deploying on the NEAR blockchain to engage social drinkers. Founded by Zoe Leavitt, who formerly led early-stage social and entertainment investing for the VC arm of AB InBev, the world’s largest beer company, and serial blockchain entrepreneur and compliance tech expert Calvin Pak, GLASS redefines the ways alcohol brands connect with consumers during social occasions.

    - - - -

    GLASS’s compliance infrastructure allows wine, beer, and spirits brands to directly engage social drinkers, introducing groundbreaking innovation to an industry navigating strict legal restrictions when it comes to sales and marketing.

    - - - -

    Rather than spending seven million dollars on a 30-second Super Bowl ad spot, what if alcohol brands could send drinks directly to over four hundred thousand fan watch parties? Tapping into Web3, this is the future that GLASS plans to create. Brands on GLASS use tokens to incentivize fans to try new cocktail recipes, socialize with friends, vote on brand decisions, and more; and fans can use those tokens to unlock exclusive rewards and experiences. 

    - - - -

    Prominent brands stir up social engagement with GLASS

    - - - -

    Premium alcohol brands are already live on this groundbreaking new platform. These include premium Italian winemaker Lyons Wine; Talkhouse Encore, the canned cocktail brand affiliated with legendary music hall The Stephen Talkhouse; Hotaling & Co’s Fiero Tequila, the spiciest infused tequila in the US; and Junipero Gin, the original American craft gin. Each brand is prepped to offer its customers unique rewards — from exclusive merchandise to money-can’t buy-experiences on Web3 with GLASS and the NEAR blockchain. 

    - - - -

    “We see great potential in building the Lyons Wine community on GLASS,” said Lyons Wine CEO and founder Chris Lyons. “Lyons Wine has always been driven by community and innovation, and we’re excited to leverage web3 to bring exclusive rewards to our network through this platform.”

    - - - -

    Through upcoming integrations with alcohol e-commerce and point-of-sale platforms, GLASS members will be able to track purchases and earn for purchasing as well as socializing — in ways that comply with each member’s local regulations. From the bar, to the friend’s house, to the stadium, GLASS creates a unified platform for fans and brands to engage across the full universe of social occasions.   

    - - - -

    “We’re excited to use this new platform to engage and grow the Fiero Tequila community of ‘heat seekers’ who rally around the spiciest infused tequila in the U.S,” said Jordan Parker, Head of Marketing for the Agave Portfolio at Hotaling & Co. “The platform will help us bring our community together around the unique, social activations that Fiero has planned.”

    - - - -

    GLASS will continue to announce new brand partnerships and roll out new features throughout the summer and fall. Consumers can sign up directly at www.glass.fun to start earning tokens today.

    -

    The post How GLASS is Uncorking Adult Beverage Loyalty with Web3 and NEAR  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/rewards/index.html b/public/blog/tag/rewards/index.html deleted file mode 100644 index f1d335798..000000000 --- a/public/blog/tag/rewards/index.html +++ /dev/null @@ -1,2 +0,0 @@ -rewards Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/richmond-night-market/feed/index.xml b/public/blog/tag/richmond-night-market/feed/index.xml deleted file mode 100644 index b97f1a108..000000000 --- a/public/blog/tag/richmond-night-market/feed/index.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - Richmond Night Market Archives – NEAR Protocol - - /blog/tag/richmond-night-market/ - - Mon, 17 Jul 2023 20:22:33 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Richmond Night Market Archives – NEAR Protocol - /blog/tag/richmond-night-market/ - 32 - 32 - - - TheFunPass™ Debuts at North America’s Largest Night Market with The Littles and NEAR - /blog/thefunpass-debuts-at-north-americas-largest-night-market-with-the-littles-and-near/ - - - Thu, 13 Jul 2023 22:00:00 +0000 - - - - - - /?p=20721 - - Everyone’s a winner playing carnival games thanks to TheFunPass™, a groundbreaking leap in Web3 that will redefine loyalty rewards and …

    -

    The post TheFunPass™ Debuts at North America’s Largest Night Market with The Littles and NEAR appeared first on NEAR Protocol.

    -]]>
    - Everyone’s a winner playing carnival games thanks to TheFunPass™, a groundbreaking leap in Web3 that will redefine loyalty rewards and transform the way we engage and connect with events and experiences. From the popular Web3 project, the littles, this innovative Web3 rewards app on the NEAR blockchain offers a solution that will transform the event landscape, that benefits event-goers but also empowers event operators. 

    - - - -

    It’s all about bridging the gap between the physical and digital worlds, as TheFunPass™ creates a seamless and immersive experience for users while driving value for businesses. 

    - - - -

    TheFunPass™ presents a brand-new model of interaction that empowers users, business operators, and The Littles holders alike. The Littles’ TheFunPass™ rewards app will debut at the Richmond Night Market, rethinking the entire carnival experience by connecting people through interactive missions, rewards, and personalized engagement. 

    - - - -

    Now every carnival-goer can win prizes, food, and once-in-a-lifetime trips — even if their skeeball doesn’t land in the bullseye — breathing new life into the classic carnival games.

    - - - -

    TheFunPass™ is the best way to win at carnival games

    - - - -

    Wil Lee and Cass Chan created the Web3 children’s media company, the littles, in 2021 offering a creative blend of animation, gaming, and real-world activations. The Littles is even joining up with TIME Studios to produce a children’s animation series. TheFunPass™, their latest endeavor, showcases their commitment to pushing the boundaries of interactive entertainment. Meanwhile, Lee is also the CEO and creator of Wun2Free Entertainment, a Company that has been producing events for over 10 years and hires over one hundred people each season, with TheFunPass™ as their latest endeavor. 

    - - - -

    TheFunPass™ is a rewards application that utilizes Web3 technology to enhance the way people emotionally engage with events. The application will debut at the Richmond Night Market in British Columbia, the largest night market in North America. TheFunPass™ engages user participation through missions, allowing them to earn digital and physical rewards unlocking exclusive benefits, digital collectibles, and unforgettable experiences. 

    - - - -

    TheFunPass™ not only engages event attendees but also presents a game-changing opportunity for businesses and operators. The app will also enable event operators and businesses to create customized missions and campaigns driving attendee participation and extending engagement before, during, and after the event. It’s a win-win scenario, where attendees enjoy immersive experiences and rewards, while businesses drive revenue growth and forge stronger connections with their audience.

    - - - -

    TheFunPass™ is a new and innovative way to experience the Richmond Night Market, which boasts over 500 food stalls, 100 retail shops, and an average attendance of over 1 million visitors per season. TheFunPass™ can reach tens of thousands of carnival-goers and engage them in unprecedented ways. The partnership between The Littles and NEAR will change the way people emotionally engage with events.

    - - - -
    - - - -

    The Littles and TheFunPass™ are a NEAR perfect match

    - - - -

    TheFunPass™, powered by NEAR, revolutionizes the traditional carnival experience, offering dynamic gameplay with location-based missions and rewarding social engagements. The app’s integration of digital and physical missions enables users to accrue reward points beyond the physical space confines, effectively turning the standard carnival participation model on its head thanks to the development support of LaunchBadge, a leading software development team trusted by the littles and NEAR. 

    - - - -

    “800 users for a soft launch has reaffirmed our decision to support The Fun Pass and the team’s vision to reimagine how we experience the night market with blockchain technology,” said Dillon Freeman, Blockchain Success Manager on NEAR Foundation’s BD team. “The team has been executing at a high level and we’re excited to see what they deliver in the coming months.”

    - - - -

    Beyond the in-person carnival fun, TheFunPass™ also facilitates year-round engagement with unique missions and reward opportunities, making the carnival-style fun available wherever and whenever. This innovative blend of phygital experiences is a game changer, enabling events to expand their reach and engage audiences more effectively.

    - - - -

    The mechanics of TheFunPass™ are simple: Play Games, Collect STARs, Win Rewards! Attendees participate in carnival games, scan QR codes or tap to gather STARs on TheFunPass™, and subsequently exchange these STARs for various rewards, regardless of their game outcomes. The participation model offers a tangible sense of achievement, transforming the carnival experience.

    - - - -
    - - - -

    TheFunPass™ ensures an exciting and ongoing engagement with its mission-based gameplay and reward system. After the carnival, users can continue to engage in digital missions, games, and rewards, offering an immersive experience that extends beyond its physical boundaries.

    - - - -
    - - - -

    Debuting at Richmond Night Market, the partnership between The Littles and NEAR, with the development expertise from Launchbadge, showcases a unique use case of Web3 technology. By using TheFunPass™, every visitor stands a chance to win prizes, while also partaking in a unique Web3 event experience, thereby redefining event participation.

    - - - -

    Empowering all stakeholders in the events industry 

    - - - -

    TheFunPass™ empowers The Littles holders by integrating them into its growth through a unique referral program, reflecting the app’s commitment to decentralization and community empowerment. This groundbreaking approach enables Littles holders to earn commissions by referring businesses and operators to the app’s expanding network.

    - - - -

    Beyond rewarding users, TheFunPass™ is an invaluable tool for businesses and operators. It enhances customer engagement, fosters loyalty, and promotes revenue growth. Additionally, the app provides businesses with valuable consumer behavior insights, enabling them to customize their offerings and establish meaningful connections with their audience.

    - - - -

    The Littles are poised to lead the web3 industry into the future with the launch of TheFunPass™, powered by NEAR. By introducing gamification and immersive experiences to events, concerts, and festivals worldwide, TheFunPass™ aims to revolutionize the event experience, heralding a new frontier of interaction for fans.

    - - - -

    TheFunPass™ presents a unique convergence of loyalty rewards, immersive experiences, and Web3 technology. As we step into the future of truly phygital experiences, every event-goer can look forward to a redefined, gamified, and winning event experience like never before.

    -

    The post TheFunPass™ Debuts at North America’s Largest Night Market with The Littles and NEAR appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/richmond-night-market/index.html b/public/blog/tag/richmond-night-market/index.html deleted file mode 100644 index cb3241aa3..000000000 --- a/public/blog/tag/richmond-night-market/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Richmond Night Market Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/roadmaps/feed/index.xml b/public/blog/tag/roadmaps/feed/index.xml deleted file mode 100644 index d9c3acd0b..000000000 --- a/public/blog/tag/roadmaps/feed/index.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - Roadmaps Archives – NEAR Protocol - - /blog/tag/roadmaps/ - - Thu, 15 Dec 2022 13:34:08 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Roadmaps Archives – NEAR Protocol - /blog/tag/roadmaps/ - 32 - 32 - - - NEAR Protocol Roadmap 2023-4: The Next 2 Years of NEAR - /blog/near-protocol-roadmap-2023-4-the-next-2-years-of-near%ef%bf%bc/ - - - Wed, 09 Nov 2022 13:33:43 +0000 - - - - /?p=19009 - - This post, written by Pagoda’s Head of Protocol Bowen Wang, originally appeared on the Web3 startup platform and main contributor …

    -

    The post NEAR Protocol Roadmap 2023-4: The Next 2 Years of NEAR appeared first on NEAR Protocol.

    -]]>
    - This post, written by Pagoda’s Head of Protocol Bowen Wang, originally appeared on the Web3 startup platform and main contributor to the core Protocol Pagoda’s blog.

    - - - -

    NEAR has evolved tremendously in the two years since the mainnet launch in October 2020. More than 20 protocol upgrades were done live, most recently the launch of Sharding Phase 1. As we look ahead to the next two phases of sharding and beyond, it’s time for an updated protocol roadmap.

    - - - -

    This post will outline the next two years of evolving the NEAR Protocol and the technical priorities we believe will benefit builders and users the most. The roadmap is meant to be a living document and anyone is welcome to make suggestions or proposals on how the protocol should evolve.

    - - - -

    The roadmap has two major components: Experience and Core. The Experience section encompasses user and/or developer experience and the protocol features needed to enable those experiences. As an example, an iPhone user can freely start to use applications built on top of NEAR without having to register an account if we have meta transactions and support for Secp256r1 keys.

    - - - -

    The Core section, on the other hand, covers major efforts to improve the scalability and decentralization of the protocol. Most notably, this features the launch of phase 2 of sharding, which scales the network to 100 shards with no validators tracking all shards. Phase 2 is planned for 2023. The roadmap goes through 2024 with the delivery of phase 3 of sharding, which dynamically adjusts the number of shards based on demand.

    - - - -

    Head over to the Pagoda blog to read the NEAR Protocol Roadmap 2023-4 with infographics.

    -

    The post NEAR Protocol Roadmap 2023-4: The Next 2 Years of NEAR appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/roadmaps/index.html b/public/blog/tag/roadmaps/index.html deleted file mode 100644 index 8044b55d7..000000000 --- a/public/blog/tag/roadmaps/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Roadmaps Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/rownd/feed/index.xml b/public/blog/tag/rownd/feed/index.xml deleted file mode 100644 index 7d150436d..000000000 --- a/public/blog/tag/rownd/feed/index.xml +++ /dev/null @@ -1,113 +0,0 @@ - - - - Rownd Archives – NEAR Protocol - - /blog/tag/rownd/ - - Wed, 17 May 2023 15:43:24 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Rownd Archives – NEAR Protocol - /blog/tag/rownd/ - 32 - 32 - - - Rownd and NEAR Foundation are Cracking the Code of Web3 Onboarding - /blog/rownd-and-near-foundation-are-cracking-the-code-of-web3-onboarding/ - - - Tue, 16 May 2023 14:00:00 +0000 - - - - /?p=20495 - - One of the main reasons that the NEAR ecosystem exists is to onboard the next billion users to Web3 — …

    -

    The post Rownd and NEAR Foundation are Cracking the Code of Web3 Onboarding appeared first on NEAR Protocol.

    -]]>
    - One of the main reasons that the NEAR ecosystem exists is to onboard the next billion users to Web3 — and that mission has just made significant strides by partnering with Rownd. An industry leader in digital onboarding and identity, Rownd’s passwordless authentication tech will utilize NEAR for more seamless interaction and onboarding for both Web3 and Web2.

    - - - -

    Brands and businesses use Rownd to take users from landing pages to downloading apps while ensuring a streamlined registration process across platforms, websites, and mobile apps. 

    - - - -

    Now, companies that use Rownd can integrate NEAR apps into their mobile and desktop experiences, while still maintaining privacy and security via passwordless authentication.

    - - - -

    Addressing the persistent digital onboarding problem

    - - - -

    Engaging and retaining users is still a major challenge. A clear symptom of this problem is that only 2% of site visitors complete sign-up processes of all sorts. A whopping 60% leave during the sign-up stage itself. This high attrition rate can have a severe impact on customer acquisition and revenue generation efforts.

    - - - -

    Rownd directly confronts this problem, bringing to the table its innovative onboarding and authentication solutions. These are far from one-size-fits-all solutions. Rownd dynamically allows platforms to tailor the authentication and profile creation process to meet the specific needs and preferences of their users.

    - - - -

    This customization reduces friction and drop-off rates, improving user experience and making the process more appealing. When onboarding is user-centric and straightforward, it leads to higher conversion rates, ultimately benefiting both the user and the platform. Rownd doesn’t just address not a functional need but also builds trust and credibility amongst users.

    - - - -

    Rownd’s digital onboarding solution on NEAR

    - - - -

    Rownd’s solution is both elegant and robust. It employs compact code snippets and software development kits (SDKs) to create a network of interconnected digital platforms — from websites and blogs to landing pages and apps. This strategic platform unification consolidates user data into a single, comprehensive profile, which translates into a smooth cross-platform experience.

    - - - -

    Rownd goes a step further with adaptive sign-up. Rownd’s SDKs do not require hard coding design and authentication methods for apps and websites.  Rather, they are set in the platform. This allows developers and non-developers alike to dynamically change sign-in methods, branding, and where authentication occurs without editing code.

    - - - -

    Rownd also has a Web3 integration strategy, making it easier for users to navigate the often complex and intimidating world of crypto and Web3. They offer user-friendly custodial wallets for those new to the crypto space, while simultaneously allowing crypto-savvy users to link their existing wallets with minimal hassle. 

    - - - -

    This balanced approach ensures that Rownd’s onboarding solution is inclusive, comprehensive, and future-ready.

    - - - -

    NEAR Foundation and Rownd: the future of Web3 onboarding

    - - - -

    NEAR Foundation’s partnership with Rownd greatly expands the potential of the company

    - - - -

    ‘s advanced authentication and onboarding solutions. Rownd’s NEAR integration allows app developers to add a NEAR account/wallet to a new user in seconds.  This collaboration paves the way for faster adoption of Web3 technology in a secure, scalable, and decentralized environment. Brands and businesses will benefit from increased conversions and engagement of Web3 veterans and novices alike.

    - - - -

    Together, Rownd and the NEAR Foundation demonstrate the transformative potential of integrating state-of-the-art onboarding and passwordless authentication with the revolutionary Web3. By crafting a user-centric onboarding experience, they are making significant strides toward broadening the use of Web3 applications, marking a new era for digital experiences.

    -

    The post Rownd and NEAR Foundation are Cracking the Code of Web3 Onboarding appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/rownd/index.html b/public/blog/tag/rownd/index.html deleted file mode 100644 index 2096eaf54..000000000 --- a/public/blog/tag/rownd/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Rownd Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/sailgp/feed/index.xml b/public/blog/tag/sailgp/feed/index.xml deleted file mode 100644 index a90213c7d..000000000 --- a/public/blog/tag/sailgp/feed/index.xml +++ /dev/null @@ -1,151 +0,0 @@ - - - - SailGP Archives – NEAR Protocol - - /blog/tag/sailgp/ - - Thu, 20 Jul 2023 13:08:59 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - SailGP Archives – NEAR Protocol - /blog/tag/sailgp/ - 32 - 32 - - - NEAR Foundation and Sail GP Elevate Mobile Fan Engagement with The Dock - /blog/near-foundation-and-sail-gp-elevate-mobile-fan-engagement-with-the-dock/ - - - Thu, 20 Jul 2023 14:00:00 +0000 - - - - - /?p=20736 - - SailGP and NEAR Foundation are embarking on a daring journey where sports meets blockchain. SailGP’s The Dock platform is ready …

    -

    The post NEAR Foundation and Sail GP Elevate Mobile Fan Engagement with The Dock appeared first on NEAR Protocol.

    -]]>
    - SailGP and NEAR Foundation are embarking on a daring journey where sports meets blockchain. SailGP’s The Dock platform is ready to make waves and redefine fan engagement in both sailing and sports at large. After its maiden voyage as a web-based platform on June 13th, The Dock is now ready to drop anchor with the launch of the new mobile app.

    - - - -

    The Dock is SailGP’s free loyalty program that brings fans closer than ever to the sport and will now be available in both Apple and Google Play Stores. And by leveraging the NEAR blockchain, users of The Dock will be able to claim unique rewards and digital assets using Web3 to engage sports fans like never before.

    - - - -

    Not to mention that The Dock is powered in part by Oracle, making the triad of SailGP and NEAR an excellent representation of building bridges between Web2 and Web3. 

    - - - -

    The Dock: A revolution in Fan Engagement

    - - - -

    The Dock is an immersive loyalty platform designed to reward and engage sports and sailing enthusiasts globally. The platform — and now mobile app — gives fans a chance to create personalized accounts, engage with unique and exclusive SailGP content, and earn points redeemable for exclusive rewards. 

    - - - -

    With offerings ranging from VIP access to SailGP events and signed merchandise to once-in-a-lifetime experiences with teams and athletes, The Dock is every fan’s passport to an interactive way of engaging with their favorite SailGP athletes and teams. The platform essentially encourages fans to interact more, and in doing so earn more. 

    - - - -

    With each interaction —± through videos, stories, behind-the-scenes content, quizzes, surveys, and polls — fans earn points that propel them closer to becoming a SailGP Champion. The accumulation of points unlocks new levels, each promising a unique set of exclusive benefits, enhancing the overall SailGP experience.

    - - - -

    The Dock and NEAR Protocol: A synergistic partnership

    - - - -

    A standout feature of The Dock is its fusion of Oracle’s CrowdTwist platform with the NEAR Protocol, symbolizing an industry-first partnership that bridges Web2 and Web3. This collaboration showcases how traditional and decentralized technologies can come together to revolutionize fan engagement in sports.

    - - - -

    Through the Dock’s ‘Season Pass’, fans can link an existing NEAR account or create a new one. This paves the way for exciting blockchain-based rewards, including digital collectibles commemorating their progress. Fans can also trade these digital collectibles for limited-edition collectibles, adding another layer of engagement and excitement.

    - - - -

    “Data is at the heart of SailGP — from the mid-race decisions made on the water to the league’s continued innovation around fan engagement,” said Rob Tarkoff, EVP of customer experience at Oracle. “We’re excited to support their newest CX initiative, The Dock, as they redefine their approach to the fan experience.”

    - - - -

    SailGP’s journey with Oracle and NEAR

    - - - -

    Since its inception in 2019, SailGP has harnessed the power of Oracle Cloud Infrastructure (OCI) to expand from a five-team, six-event startup to one of the fastest-growing sports leagues in the world with ten teams competing in 12 events throughout 2023 and 2024. Oracle has stepped up as the Title Partner for the inaugural Los Angeles Sail Grand Prix. Scheduled for July 22 and 23, it’s a thrilling new addition to SailGP’s 12-event global calendar for Season 4, which kicks off in Chicago on June 16.

    - - - -

    “Oracle’s cloud technology is at the heart of everything we do at SailGP, and this partnership extension reflects the power and results of our collaboration,” says Warren Jones, chief technology officer, SailGP. “We have no doubt Oracle will take our fan and athlete experience to even greater heights in the seasons to come and The Dock is a great example of this.”

    - - - -

    With the launch of The Dock’s mobile app, this exciting world of interactive sailboat racing, fan engagement, and blockchain rewards is now just a tap away. Anyone can download the app and embark on their journey to become a SailGP Champion, while also exploring the new fandom possibilities offered by the blend of Web2 and Web3 technologies.

    - - - -

    NEAR’s mission is to push the boundaries of the Web3 world, create experiences that allow everyone to engage with decentralized technology, and foster partnerships that provide real-world utility for blockchain. Whether you’re immersed in the NEAR ecosystem or a sports enthusiast intrigued by the intersection of blockchain and sports.

    - - - -

    The Dock promises an exciting glimpse into the future of fan engagement and loyalty platforms while bridging the gap between Web2 and Web3 with Oracle and NEAR. 
    Download The Dock mobile app today on the Apple App Store or Google Play and get started on your interactive journey.

    -

    The post NEAR Foundation and Sail GP Elevate Mobile Fan Engagement with The Dock appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Case Study: Bernoulli-Locke-Locke’s David Palmer on the DAO-Owned SailGP Team - /blog/case-study-bernoulli-locke-lockes-david-palmer-on-the-dao-owned-sailgp-team/ - - - Wed, 14 Jun 2023 17:30:00 +0000 - - - - - /?p=20635 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: Bernoulli-Locke-Locke’s David Palmer on the DAO-Owned SailGP Team appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In recent installments, NEAR Foundation explored the BOS with Pagoda’s Chief Product Officer Alex Chiocchi, heard from OnMachina co-founder Jonathan Bryce on building decentralized storage, and dove into Move-to-Earn with Sweat Economy’s Oleg Fomenko.

    - - - -

    In the latest case study video, Bernouilli-Locke founder David Palmer details how his group is implementing a DAO for team ownership and governance for SailGP boat racing, by leveraging the power of NEAR.

    - - - -
    - -
    -

    The post Case Study: Bernoulli-Locke-Locke’s David Palmer on the DAO-Owned SailGP Team appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/sailgp/index.html b/public/blog/tag/sailgp/index.html deleted file mode 100644 index 3607e585c..000000000 --- a/public/blog/tag/sailgp/index.html +++ /dev/null @@ -1,2 +0,0 @@ -SailGP Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/satori/feed/index.xml b/public/blog/tag/satori/feed/index.xml deleted file mode 100644 index 2c007a269..000000000 --- a/public/blog/tag/satori/feed/index.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - Satori Archives – NEAR Protocol - - /blog/tag/satori/ - - Wed, 02 Aug 2023 17:17:45 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Satori Archives – NEAR Protocol - /blog/tag/satori/ - 32 - 32 - - - Case Study: Satori’s Jeff Bissinger Talks NEAR Tasks for the Gig Economy - /blog/case-study-satoris-jeff-bissinger-talks-near-tasks-for-the-gig-economy/ - - - Mon, 31 Jul 2023 14:30:00 +0000 - - - - - /?p=20761 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: Satori’s Jeff Bissinger Talks NEAR Tasks for the Gig Economy appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

    - - - -

    In the latest NEAR Foundation Case Study video, we hear from Jeff Bissinger, Product Manager at Satori. As a product team building innovative Web3 solutions, Satori is creating AI integrations that enable people to work with purpose. NEAR Tasks, which launched at Consensus 2023 in Austin, is one of Satori’s latest products. 

    - - - -

    In this case study video, Jeff Bissinger takes viewers on a trip into NEAR Tasks — Satori’s effort to blend the gig economy with blockchain technology. With NEAR Tasks, users can earn $NEAR while completing simple, yet meaningful, AI related tasks. 

    - - - -

    - - - -
    - -
    -

    The post Case Study: Satori’s Jeff Bissinger Talks NEAR Tasks for the Gig Economy appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/satori/index.html b/public/blog/tag/satori/index.html deleted file mode 100644 index 6eef0e1b4..000000000 --- a/public/blog/tag/satori/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Satori Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/self-sovereignty/feed/index.xml b/public/blog/tag/self-sovereignty/feed/index.xml deleted file mode 100644 index b595580e4..000000000 --- a/public/blog/tag/self-sovereignty/feed/index.xml +++ /dev/null @@ -1,190 +0,0 @@ - - - - Self-Sovereignty Archives – NEAR Protocol - - /blog/tag/self-sovereignty/ - - Fri, 19 Jan 2024 20:19:03 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Self-Sovereignty Archives – NEAR Protocol - /blog/tag/self-sovereignty/ - 32 - 32 - - - Self-Sovereignty Is NEAR: A Vision for Our Ecosystem - /blog/self-sovereignty-is-near-a-vision-for-our-ecosystem/ - - - Fri, 19 Jan 2024 20:19:02 +0000 - - - - - - - /?p=21170 - - As a kid growing up in Ukraine in the ’90s after the dissolution of the USSR, I remember we watched …

    -

    The post Self-Sovereignty Is NEAR: A Vision for Our Ecosystem appeared first on NEAR Protocol.

    -]]>
    -

    - - - -

    As a kid growing up in Ukraine in the ’90s after the dissolution of the USSR, I remember we watched the price of bread go from 1,000 karbovanets, to 10,000, to 100,000 in less than five years (until that currency was thrown out altogether and replaced with hryvnia). When I first started working as a software developer as a teenager, I kept my earnings in cash in my room because I already understood that we couldn’t trust corrupt banks with our money.

    - - - -

    Between 2014 and 2016 alone, 77 banks failed in Ukraine. My grandparents still have their savings account bank books tracking the money they put away during the USSR years––but those savings don’t exist anymore. So even something that is yours, that you rightfully own, can go away if the system you’re a part of fails. The same thing is happening to millions of people living under hyperinflation, dictatorships, and war zones across the world, of course. And while these may seem like abstract or distant problems that won’t arrive at your doorstep, let me tell you from my own experience: nothing is guaranteed. 

    - - - -

    Every system is as fragile as the rules holding it together. And the rules can change. They’re changing around us right now, and I believe we are approaching a point of no return. 

    - - - -

    The Need for Digital Self-Sovereignty

    - - - -

    We need to create new economic opportunities for people everywhere via self-sovereignty, which should be a universal right and which technology can now provide, not just nation-states as in most other points in history. For citizens of nations who’ve enjoyed economic security and a high degree of sovereignty, this may not seem like an immediate-term issue. But it is. 

    - - - -

    The economics of tech companies leads inevitably to corrupting their original product or vision for the sake of profit in order to maintain growth, and more importantly, they naturally involve creating barriers for someone else to disrupt. In order to maintain their power, governments will use pressure and ingenuity in order to control their populations, too often to the point of violating human rights in the name of safety or security. 

    - - - -

    We all use our phones and computers a thousand times a day, prioritizing convenience over self-sovereignty because until now, we haven’t had a choice. We are now approaching a tipping point towards a dystopian future that we may not be able to come back from, brought on not just by governments but by the economics of tech companies. What happens when these incentives increasingly collide and push each other deeper into the lives of individuals for the sake of maintaining control and profit? 

    - - - -

    That’s right about where we are today. 

    - - - -

    Changing the Stakes with Generative AI

    - - - -

    Before founding NEAR, I was an AI researcher. I worked at Google where I contributed to TensorFlow, and eventually published a paper with a handful of colleagues called “Attention Is All You Need.” That paper introduced the Transformers architecture that powers ChatGPT, Bard, and most of the well-known LLMs behind last year’s explosive growth in AI. 

    - - - -

    I was first interested in AI because of the 2001 movie, “Artificial Intelligence.” Changing how we interact with computing and augmenting one’s intelligence to maximize human potential was, and still is, very appealing to me. And I still think it has the potential to make human lives, organizations, even governments better. But like any other technology, in the hands of the wrong people or with the wrong incentives, it also has the potential to make our lives terrible. 

    - - - -

    Generative AI is creating a universal and scalably personal method of enabling control and manipulation. Practically, it means your social feed and search results can ensure that you buy specific products or form a specific opinion. This will start in the form of commercial improvements that lead to more profit for tech giants: Netflix will generate a movie script that can shape your opinion, Facebook can reinforce that opinion by showing you more of it, and so on. This could even happen at a more fundamental level, such as flooding training data with specific information to influence all models trained on it. 

    - - - -

    If this granular information and vector of manipulation on such a personal level can be extracted or bought, it will be, and then it will become a tool for control. If it’s stored somewhere centralized and hackable, it will be stolen––we see this constantly with Web2 giants as it is. If governments can get access to this data, they will use it to maintain or grow their power. 

    - - - -

    The true danger that generative AI introduces is that this exploitation won’t just be on a systems level or a population level, it will become personal and incredibly specific. The depth of potential control and manipulation goes to the level of each and every human, no matter where they live, no matter where they keep their money. Such a powerful technology simply cannot remain in the hands of centralized companies, nor be too easy for governments to take over.

    - - - -

    So What Should We Do About It?

    - - - -

    So if people don’t yet feel the sense of urgency towards building new systems that uphold self-sovereignty, what will make it real for people? Changes in collective values are always driven by economic opportunity. The major revolutions of history started because of economic failures: American independence from Britain, the French Revolution, the collapse of the USSR, and so on. If people see ways to create better economic realities for themselves and their families, then they will turn values into actions. 

    - - - -

    Creating new opportunities for people via self-sovereignty is what NEAR is about. Complete self-sovereignty  has been the NEAR vision since day one: we want to build a world where all people can control their own assets, data, and power of governance. This sovereignty must apply not only at the level of individuals but also the organizations and communities they create, and eventually societies. 

    - - - -

    Self-sovereignty is a new primitive that hasn’t existed before today. One always needed to rely on some power of violence for ensuring rules are followed, most recently nation-states. One of the core principles of digital self-sovereignty is the ability to choose and switch between any service provider. There is no lock- in. There are no middlemen like banks or government agencies that can lose or steal assets, or change the rules on you out of nowhere. 

    - - - -

    Importantly, this must also apply to AI. People need to own their data so they know what it’s being used for and so they can actively consent to personalized experiences they think will improve their lives. Models must be governed transparently, in public, with clear rules and monitoring to proactively manage risk and reputation systems to build more clarity around information and traceability. Web3 can help to uphold, scale, and manage such systems to ensure AI is a force for good while also preventing it from being too exploitable. 

    - - - -

    Another major challenge, which is especially clear in governance but it also applies to corporations, is that when we select someone to represent our ideas for us as our delegate, they will always have their own interests and motivations in the mix as well. They don’t necessarily have nefarious intentions, it’s just a natural tendency. This is the “principal agent problem,” wherein the person elected behaves differently than the people who elected them or pay them would prefer based on their best interests. This is where AI governance systems can help by introducing neutral agents, where unbiased AI agents governed directly by a community can act on their behalf in a more reliable way. With transparent governance and monitoring, AI can be a force for good in individual lives as well as for the collective. 

    - - - -

    A Vision for the NEAR Future

    - - - -

    Despite my concerns about where the traditional tech paradigm is potentially heading, I remain a techno-optimist. I wouldn’t be doing this work if I didn’t think it was for the good of everyone, and I’ve read enough sci-fi to know that the outcomes of science and technology are much more about what people do with them than the tech itself. If we want something, we should build it. 

    - - - -

    I would like NEAR to become a fully sovereign operating system that is equipped with a personal AI assistant that optimizes for users’ needs without revealing private information about the user’s data or assets. It should also be able to interact and transact with other people’s AIs and the community’s AIs peer-to-peer. I call this “user-owned AI.”

    - - - -

    We also need shared community AIs, which are governed by the members of such a community. They represent the mix of needs and knowledge of all the members of such a community, from something like a small club or startup, to the city, to the nation-state, to the global level. There is always an opportunity to fork one community and create new ones. The community governs which data goes into training its community model, and can run inference (running live data through a model) privately in such a way that only the user sees input and output, while getting a proof that the selected model was used.

    - - - -

    To facilitate this vision, a lot of pieces need to come together:

    - - - -
      -
    • Economic and technological opportunity to enable users to onboard en masse.
    • - - - -
    • Open source software across the stack, from blockchain tech to AI models.
    • - - - -
    • Blockchains must get abstracted away from the user so they are not barriers to entry or participation. I call this the principle of Chain Abstraction.
    • - - - -
    • Applications must provide a novel value unlock: for example, Cosmose and Sweat. These apps reward users and serve as an economic gateway into a broader ecosystem of opportunities.
    • - - - -
    • On-edge, meaning hyperlocal, AI models that are usable by individuals (and free of manipulation).
    • - - - -
    • Community-owned AI models with governance and economic opportunity, replacing everything from business ops to government agencies. Self-governance by the people, for the people, at scale with the help of technology and decentralized peer-to-peer systems.
    • -
    - - - -

    Blockchains, peer-to-peer payments, Web3, zero-knowledge, very large language models and on-edge AI models: these are not separate technology verticals, but rather interconnected facets of a new digital paradigm of self-sovereignty. 

    - - - -

    We have the tools to remake how we provide for ourselves, how we work together and govern ourselves, and how we consume and generate information. Without gatekeepers, fair and open to everyone. And this is not a futuristic vision: it’s possible to start experimenting and building now, before our fragile and outdated systems and structures get weaker or fail, before too much centralization leads to the worst outcomes instead of the ones we all design and share together.

    ––Illia Polosukhin, Co-Founder of NEAR and CEO of NEAR Foundation

    -

    The post Self-Sovereignty Is NEAR: A Vision for Our Ecosystem appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/self-sovereignty/index.html b/public/blog/tag/self-sovereignty/index.html deleted file mode 100644 index c1b90baf0..000000000 --- a/public/blog/tag/self-sovereignty/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Self-Sovereignty Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/seracle/feed/index.xml b/public/blog/tag/seracle/feed/index.xml deleted file mode 100644 index df6d1fd61..000000000 --- a/public/blog/tag/seracle/feed/index.xml +++ /dev/null @@ -1,98 +0,0 @@ - - - - Seracle Archives – NEAR Protocol - - /blog/tag/seracle/ - - Tue, 20 Jun 2023 13:53:03 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Seracle Archives – NEAR Protocol - /blog/tag/seracle/ - 32 - 32 - - - NEAR Foundation and Seracle Team to Nurture the Web3 Ecosystem with DevOps Efficiency - /blog/near-foundation-and-seracle-team-to-nurture-the-web3-ecosystem-with-devops-efficiency/ - - - Wed, 07 Jun 2023 13:57:04 +0000 - - - - - /?p=20601 - - NEAR Foundation and Seracle, a top blockchain cloud platform, have established a partnership to revolutionize the world of Web3 development. …

    -

    The post NEAR Foundation and Seracle Team to Nurture the Web3 Ecosystem with DevOps Efficiency appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation and Seracle, a top blockchain cloud platform, have established a partnership to revolutionize the world of Web3 development. This alliance, forged in the name of innovation and cost-efficiency, capitalizes on Seracle’s unique Litenode architecture.

    - - - -

    This groundbreaking technology aims to drive down costs, with the potential for reducing a project’s monthly expenditures on node maintenance and DevOps by up to 90%.

    - - - -

    Introducing the Litenode and the Web3 Incubation Center

    - - - -

    The Litenode architecture is one of the linchpins in this strategic collaboration. Its design facilitates dramatic cost savings, all while ensuring quality isn’t compromised. But it doesn’t stop there. 

    - - - -

    The integration of a Web3 incubation center, nestled in the bustling tech hub of Pune, India, gives developers access to a fertile innovation environment. This collaborative center presents developers with a unique opportunity to immerse themselves in a vibrant ecosystem dedicated to the development, learning, and scaling of Web3 projects.

    - - - -

    “Seracle’s enthusiasm, technical capabilities, and experience in the Web3 space make them an ideal partner to grow NEAR,” said Arpit Sharma, Managing Director of APAC, MENA of NEAR Foundation, expressing enthusiasm for the collaboration’s potential. 

    - - - -

    This partnership, with its focus on communal growth and knowledge sharing, is poised to cultivate an enriched community of developers ready to take on the challenges of the Web3 landscape.

    - - - -

    How NEAR and Seracle are financing the next wave of Web3 

    - - - -

    To bring these ambitions to fruition, financial support is vital. Seracle has committed to providing substantial backing, offering platform credits from a pool of $100,000. These credits serve to alleviate the financial burdens of upfront costs, letting developers channel their focus into the creative process. 

    - - - -

    NEAR Foundation, in step with this initiative, pledges to offer grants to select innovative projects based at Seracle’s incubation center. Looking ahead, the partnership has set its sights high. The ambitious goal to onboard around 100 Web3 projects and engage with 5,000 developers this year underscores the commitment to growth and innovation. 

    - - - -

    Shrikant Bhalerao, CEO of Seracle, shares this vision and expresses his optimism about the partnership, stating that “NEAR boasts some of the most innovative solutions in the Web3 space. We anticipate that our partnership with NEAR will contribute to a significant 30% growth in our revenue.”

    - - - -

    With such dedication to growth and innovation, the collaboration between NEAR Foundation and Seracle is shaping up to be an inspiring chapter in the evolution of the Web3 ecosystem. Leveraging cost-efficient technology, fostering a vibrant community, and providing robust financial support, this partnership stands as a beacon for the future of Web3 development.

    -

    The post NEAR Foundation and Seracle Team to Nurture the Web3 Ecosystem with DevOps Efficiency appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/seracle/index.html b/public/blog/tag/seracle/index.html deleted file mode 100644 index 022c49427..000000000 --- a/public/blog/tag/seracle/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Seracle Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/sharding/feed/index.xml b/public/blog/tag/sharding/feed/index.xml deleted file mode 100644 index 14a133e1f..000000000 --- a/public/blog/tag/sharding/feed/index.xml +++ /dev/null @@ -1,261 +0,0 @@ - - - - Sharding Archives – NEAR Protocol - - /blog/tag/sharding/ - - Tue, 30 Jan 2024 14:33:23 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Sharding Archives – NEAR Protocol - /blog/tag/sharding/ - 32 - 32 - - - Phase 2 of NEAR Sharding Launches - /blog/phase-2-of-near-sharding-launches/ - - - Tue, 30 Jan 2024 14:33:22 +0000 - - - - - - - /?p=21200 - - The NEAR Foundation announced today that the Protocol Work Group will launch testing for Phase 2 of Sharding this week, …

    -

    The post Phase 2 of NEAR Sharding Launches appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation announced today that the Protocol Work Group will launch testing for Phase 2 of Sharding this week, marking a major milestone in the network’s development roadmap. Phase 2 introduces fundamental upgrades to NEAR’s core protocol architecture, enabling even greater scalability and decentralization for the network. The fourth edition of Stake Wars, an incentivized community testing initiative, will kick off on February 1.  

    - - - -

    NEAR’s vision of chain abstraction to facilitate broad adoption of decentralized apps requires an extremely scalable blockchain layer. From the start, NEAR has been designed to scale with demand towards mainstream adoption. A primary benefit of the new sharding implementation will be an up-to-10x speed improvement to NEAR’s already-fast transaction throughput. Sharding is NEAR’s unique approach to scaling, which partitions the blockchain into multiple parallel “shards.” Combined with NEAR already having the lowest transaction fees in Web3, this sharding upgrade positions NEAR at the forefront of Web3 in terms of both performance and scalability. Phase 2 greatly improves the network’s capacity for end user volume and is an important landmark on the road to global-scale usage of Web3. 

    - - - -

    “NEAR continues to make progress on bringing Chain Abstraction infrastructure that can scale to a billion users and beyond,” said Illia Polosukhin, Co-Founder of NEAR Protocol and CEO of NEAR Foundation. “The scalability improvements from stateless validation can unlock even better user experiences for more end-user applications, whether multichain DeFi-style dapps or those aimed at mainstream users.”

    - - - -

    Phase 2 introduces the most significant changes to the NEAR Protocol since its Mainnet launch in 2020. The biggest of these is the implementation of stateless validation: an innovative approach to state change, or the process of updating the status of all the data posted to the blockchain. Now, NEAR validators no longer have to maintain the state of a shard locally and can retrieve all the information they need to validate state changes, or “state witness,” from the network. 

    - - - -

    With stateless validation, NEAR can finally achieve the truest form of sharding, where shards can function mostly independently at the consensus level to improve decentralization and throughput while preserving the highest security guarantees. An added benefit is that the hardware requirements to run most validator nodes are dramatically reduced (a smaller number of “chunk proposer” validators with specialized hardware will validate blocks with state held in memory). This also paves the way for greater decentralization of the network by lowering the barrier to entry to become a validator.

    - - - -

    “We’re very excited about the potential for future proofing the NEAR protocol design with stateless validation,” said Bowen Wang, Director of Protocol at Pagoda. “From a research perspective, we expect that as zero-knowledge tech matures, more protocols will adopt a similar approach, where a smaller set of expensive machines execute transactions and produce proofs, while a bigger validator set validates the proofs. This will enable more unified security across networks and defragment Web3, advancing a key aspect of the chain abstraction vision.” 

    - - - -

    Phase 2 is a shift in direction from the original Nightshade sharding architecture NEAR launched with in 2020, bypassing some fundamental roadblocks in that protocol design around the implementation of challenges in the initial idea of Phase 2, while also unlocking additional benefits. Other network improvements in Phase 2 include in-memory trie, wherein validator nodes can load the entire state into RAM for maximized performance. This will greatly improve transaction throughput thanks to minimizing storage access. 

    - - - -
    Phase 2 is the third major upgrade to NEAR Protocol’s sharding since Mainnet launch in October 2020, showcasing the incredible shipping speed of the protocol engineering team.
    - - - -

    - - - -

    NEAR users should not experience any downtime with the transition to Phase 2 and no special action is required from validators, apart from adjusting hardware specs. Through dozens of protocol upgrades since Mainnet launch, including three major upgrades, the core NEAR protocol has had 100% uptime with zero disruption for developers and end users. 

    - - - -

    On Thursday, February 1, Stake Wars IV: Attack of the Transactions will launch to incentivize battle testing of the new sharding architecture. Planned to run through March 31, the latest edition of Stake Wars invites community members to test features and generate traffic. For more information about participating and deeper technical detail about Phase 2, visit the Stake Wars page on Github

    - - - -

    With the launch of Phase 2, NEAR becomes one of the only networks in Web3 to implement stateless validation to improve scaling and paves the way for further network performance and scalability improvements in the future roadmap. A technical paper with more detail about NEAR’s new sharding design is forthcoming later in Q1. Phase 2 is expected to launch on NEAR Mainnet in May 2024.

    -

    The post Phase 2 of NEAR Sharding Launches appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Q4 Protocol Roadmap Update - /blog/near-q4-protocol-roadmap-update/ - - - Fri, 12 Jan 2024 19:23:37 +0000 - - - - - - - /?p=21155 - - TLDR: 2023 saw major experience improvements via meta transactions and zero-balance accounts, as well as node performance improvements and optimizations. Preparations are underway for a major upgrade to stateless validation, completing Phase 2 of the sharding roadmap in early 2024.

    -

    The post NEAR Q4 Protocol Roadmap Update appeared first on NEAR Protocol.

    -]]>
    -
    By Bowen Wang, Director of Protocol

    In this post, the NEAR Protocol work group would like to provide an update of the protocol roadmap to show what we accomplished in 2023 and what is planned for 2024.

    - - - -

    TLDR: 2023 saw major experience improvements via meta transactions and zero-balance accounts, as well as node performance improvements and optimizations. Preparations are underway for a major upgrade to stateless validation, completing Phase 2 of the sharding roadmap in early 2024.

    - - - -

    What we accomplished in 2023

    - - - -

    There were a total of six protocol upgrades in 2023 which introduced a number of new protocol features. Meta transactions were added as a protocol feature at the beginning of the year to support gasless transactions, which means that users can transact on NEAR and start using apps without necessarily needing to pay transaction fees in NEAR. We also added zero-balance accounts, an important feature that enables users to create an account without holding NEAR to pay for storage. This makes it easy to onboard new users to applications. These two features form a solid foundation for a seamless onboarding experience for end users — a top goal for NEAR overall.

    - - - -

    In addition to easy user onboarding, we have also been working hard to optimize the performance of NEAR. Flat storage, which was released in Q2 this year, optimized state reads and improved the stability and performance of the network overall. Another feature that optimizes NEAR nodes is cold storage, which allows for a split between hot and cold storage for a node. This means an archival node does not need to store most of the historical data on SSD and therefore can save a lot on cost. We also optimized the network communication between validator nodes by introducing the tier1 network, which reduces the latency of network messages between two validator nodes. Furthermore, we improved state sync and reduced the time it took a node to synchronize the latest state. We have also worked on improving the stability and maintainability of contract runtime with initiatives like finite wasm and limited replayability.

    - - - -

    There are a few major initiatives that we started this year and expect to finish next year, such as stateless validation, congestion control, and transaction priority. We will dive deeper into those in the section below.

    - - - -


    Plans for 2024

    - - - -

    There are a few major projects that we want to deliver in 2024 to improve the usability, scalability, and decentralization of NEAR Protocol:

    - - - -
      -
    • Stateless validation. Stateless validation is a major initiative that we have been working on for a few months. It adjusts the original Nightshade sharding design to avoid implementing fraud proofs while improving the performance of each shard significantly by putting state in memory. The stateless validation work is expected to be delivered in Q2 2024, which would also mark the completion of the original goal we set for Phase 2 of sharding. We expect the launch of stateless validation to also dramatically increase the throughput of each shard and prepare NEAR for the continued growth of usage.
    • - - - -
    • Congestion control and transaction priority. While NEAR’s sharding design is horizontally scalable, it is important to provide a good user experience when there is short-term congestion on the network. This includes localizing congestion so that gas price increase does not affect the entire network and allowing users to prioritize their transactions during congestion if they are willing to pay more in transaction fees.
    • - - - -
    • Support for account aggregation. Account aggregation allows a user to control accounts on different chains with one NEAR account, an important pillar of the chain abstraction vision for NEAR. It requires chain signatures, which does MPC to sign payload. This requires a new runtime API to facilitate the asynchronous nature of chain signatures.
    • - - - -
    • zkWASM. We have been working on zkWASM with the Polygon team for a few months and the work will continue in 2024. The goal is to build a prover for WebAssembly smart contracts. This could be used as a part of the initiative to prove the state transition of NEAR in a ZK proof. Moreover, zkWASM also provides wasm as an alternative execution environment to EVM for L2s.
    • - - - -
    • Data availability improvements. We launched NEAR DA in early November 2023 and there are a few things that we plan to work on to further improve the efficiency of NEAR DA. Those improvements include introducing KZG commitment to avoid having data availability fraud proofs, as well as real-time bridging to allow verification of data availability on Ethereum.
    • - - - -
    • Ethereum wallet support. Supporting wallets like MetaMask natively on NEAR allows us to attract more users to NEAR and also be more Ethereum aligned. This requires changes to the protocol to support Ethereum addresses natively and support processing of RLP serialized Ethereum transactions.
    • - - - -
    • Research into the future of sharding. There are two major directions of exploration: synchronous sharding and ZK-centric sharding. Synchronous sharding enables synchronous execution of smart contracts and addresses the developer experience pain point of having to deal with asynchronous execution. ZK-centric sharding leverages zero-knowledge proofs to validate state transition of different shards and improves the scalability and decentralization of the protocol. In addition, we will also research the next and final phase of sharding: dynamically adjusting the number of shards based on usage.
    • -
    - - - -

    The roadmap can be seen below for those interested in more timeline specifics. It is split into two parts: Experience and Core. The Experience section encompasses user and/or developer experience and the protocol features needed to enable those experiences. As an example, synchronous execution addresses the pain point that developers feel when they implement cross-contract calls.

    - - - -
    - - - -


    The Core section, on the other hand, covers major efforts to improve the scalability and decentralization of the protocol. This includes stateless validation, zkWASM, improvements to data availability, and so on.

    - - - -
    - - - -



    As always, the protocol team is proud to have made several important improvements to the core protocol with zero disruption for users and developers. We look forward to making some major advancements in 2024 to help the entire NEAR ecosystem deliver its vision of mainstream adoption of an Open Web, where all internet users can control their own data, assets, and power of governance. 

    We will share more details on Phase 2 advancements and timelines soon. If you’d like to learn more, join the NEAR Protocol X Spaces on Tuesday, January 16 at 5pm UTC to hear from Director of Protocol Bowen Wang and NEAR Foundation CEO Illia Polosukhin on upcoming protocol developments.

    -

    The post NEAR Q4 Protocol Roadmap Update appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Blockchain Scaling Approaches: NEAR Sharding vs. Layer 2s - /blog/blockchain-scaling-approaches-near-sharding-vs-layer-2s/ - - - Wed, 14 Jun 2023 15:00:00 +0000 - - - - /?p=20626 - - Layer-twos (L2s) have become increasingly popular as a scaling solution for layer one (L1) blockchains in the past several years, …

    -

    The post Blockchain Scaling Approaches: NEAR Sharding vs. Layer 2s appeared first on NEAR Protocol.

    -]]>
    - Layer-twos (L2s) have become increasingly popular as a scaling solution for layer one (L1) blockchains in the past several years, especially after Ethereum decided to scale via a rollup-centric roadmap. A layer-two is a protocol built on top of an existing blockchain to improve its scalability, throughput, or privacy and reduce the congestion and cost of operating on the L1 blockchain. NEAR, on the other hand, chose to scale through a different approach: sharding. In this post, I’ll explain the rationale behind NEAR’s approach and why NEAR does not plan to scale through layer 2.

    - - - -

    To understand the differences in scaling approaches, let’s first take a look at how layer 2s work. Generally speaking, layer 2s work by performing state transitions outside of (or off-chain from) the layer 1 they build on and committing state roots and transaction data to the underlying layer 1. Depending on how exactly the state transitions are verified, these may be optimistic rollups, which rely on fraud proofs, or ZK rollups, which use zero-knowledge proofs to show the validity of the layer 2 state transition.

    - - - -

    The premise of scaling through rollups is that a rollup has higher throughput than the underlying L1 due to decreased consensus overhead; there could be many rollups running as their own chain and processing different transitions. The underlying L1 provides security for rollups as a settlement layer, and rollups offer scalability in return. This offloads the significant challenge of scalability onto a protocol that exists outside of the L1 and therefore simplifies the L1 protocol design. Ethereum, for example, is well known for its plan to scale through rollups such as Arbitrum, Optimism, ZkSync and Polygon zkEVM.

    - - - -

    How well does this promising design approach work in practice? While it may still be too early to say, given that Ethereum is the only major blockchain adopting this approach and that L2s themselves are relatively nascent, there are lessons to be learned already. First, composability between layer 2s is a problem. While each rollup itself has higher throughput than Ethereum, rollups lack the native interoperability that allows contracts from different rollups to interact with each other. Each one can only interact with the Ethereum L1. Composability is especially important for financial applications and is arguably what makes the Ethereum L1 so successful. 

    - - - -

    Second, while in theory rollups should work together to scale Ethereum, in practice the overall scaling achieved by rollups collectively is not much more than what one rollup offers. That is mostly due to the fact that popular Ethereum dapps run on almost all rollups and as a result, similar transactions are “duplicated” across different rollups. The transactions to use DeFi applications such as Uniswap on different rollups actually compete for call data space on Ethereum for data availability.

    - - - -

    In contrast, NEAR scales through sharding, or parallelizing the network into partitions that are built into the protocol itself, with the same security guarantees of the L1 blockchain. NEAR’s architecture is, in some sense, similar to Ethereum with rollups, where each shard is similar to an optimistic rollup. The difference is that because sharding is built into the protocol, applications on one shard can natively interact with applications on another shard. The homogeneous sharding model also means that two apps interact in the same way regardless of whether or not they are deployed on the same shard. As a result, not only do developers not need to care about which shard to deploy their applications on, they also have the peace of mind that their application can freely interact with any other application deployed on NEAR without having to resort to third-party bridges. 

    - - - -

    While composability is a nontrivial advantage of NEAR’s sharding approach, it is not all NEAR has to offer. Fast finality on NEAR means that users can be confident that their transactions are finalized in two to three seconds. In the rollup world, however, transaction finality is much worse. Optimistic rollups are known for their long exit time (usually 7 days) and ZK rollups are bottlenecked on proof generation, which takes up to 10 minutes today. Furthermore, in NEAR’s sharding model, since both processing and state are completely sharded, the throughput almost scales linearly with the number of shards. Thanks to the native composability mentioned above, developers and users truly benefit from the scalability as one application is only deployed once on one shard, unlike the current state of rollups where many popular applications have to be deployed on many rollups, which reduces the amount of true parallelism in transaction processing.

    - - - -

    This is not to say, however, that NEAR’s approach is superior. Sharding makes the protocol very complex, hard to understand, and difficult to implement. In comparison, the rollup-centric approach taken by Ethereum has a relatively simple design, even though it still requires data availability sharding (Danksharding) for layer 2s to work efficiently.

    - - - -

    Ultimately, the different choices on scaling approaches reflect different design philosophies of the underlying protocol. Ethereum wants the protocol itself to be maximally robust and resilient and therefore it is important to minimize the complexity of the L1 protocol design. NEAR, on the other hand, prioritizes simplicity for developers and users and is willing to make the protocol more complex under the hood for the sake of a better experience for its users.

    - - - -

    It is worth noting that NEAR is not just a blockchain protocol, but an operating system that offers a common layer for browsing and discovering open web experiences and is compatible with any blockchain. Despite the differences in protocol design, NEAR as the blockchain operating system allows developers and users from different blockchains, including Ethereum layer 2s, to build and use applications across many different blockchain ecosystems. 

    -

    The post Blockchain Scaling Approaches: NEAR Sharding vs. Layer 2s appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/sharding/index.html b/public/blog/tag/sharding/index.html deleted file mode 100644 index 0df2cbb0e..000000000 --- a/public/blog/tag/sharding/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Sharding Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/shemaroo/feed/index.xml b/public/blog/tag/shemaroo/feed/index.xml deleted file mode 100644 index ee39e8f6c..000000000 --- a/public/blog/tag/shemaroo/feed/index.xml +++ /dev/null @@ -1,114 +0,0 @@ - - - - Shemaroo Archives – NEAR Protocol - - /blog/tag/shemaroo/ - - Tue, 02 May 2023 12:36:20 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Shemaroo Archives – NEAR Protocol - /blog/tag/shemaroo/ - 32 - 32 - - - Shemaroo and NEAR Foundation Accelerate Web3 Adoption in Indian Media and Entertainment  - /blog/shemaroo-and-near-foundation-accelerate-web3-adoption-in-indian-media-and-entertainment/ - - - Tue, 02 May 2023 12:34:53 +0000 - - - - - /?p=20464 - - Shemaroo Entertainment, a prominent Indian content powerhouse with a diverse library of over 3,700 movie titles, a subscriber userbase of …

    -

    The post Shemaroo and NEAR Foundation Accelerate Web3 Adoption in Indian Media and Entertainment  appeared first on NEAR Protocol.

    -]]>
    - Shemaroo Entertainment, a prominent Indian content powerhouse with a diverse library of over 3,700 movie titles, a subscriber userbase of over 200 million people, and a vast global distribution network, is forging a strategic partnership with the NEAR Foundation to foster Web3 innovation in the media and entertainment industry — across  India and beyond. The partnership also paints an even brighter picture for NEAR and the entertainment sector.

    - - - -

    With six decades of experience in Indian cinema, Shemaroo is synonymous with the Indian entertainment picture, consistently staying at the forefront of technological advancements, and adapting to the ever-changing landscape of content consumption. Sheramoo’s latest foray into Web3 and the metaverse with NEAR Foundation is the latest example.

    - - - -

    Through this collaboration, Shemaroo aims to explore the potential applications of blockchain technology by establishing a dedicated Web3 innovation cell. The cell will focus on unlocking new opportunities for decentralization, transparency, and immutability in the media and entertainment sector. 

    - - - -

    With over 600 employees in Delhi, Mumbai, and New Jersey, Sheramoo’s already global reach in the entertainment industry is rapidly growing. Sheramoo’s app is also available and used in over 150 countries and counting. This extensive and expanding global presence positions Shemaroo perfectly to explore and capitalize on the potential of Web3 in entertainment — powered by the NEAR Blockchain Operating System.

    - - - -

    Shemaroo expands Web3 into Indian media

    - - - -

    Together, Shemaroo and NEAR Foundation will develop pioneering products and services that leverage Web3 and Sheramoo’s vast content library. The Web 3 innovation cell will become a breeding ground for groundbreaking ideas in how blockchain technology can reshape multiple facets of the entertainment industry.

    - - - -

    Shemaroo will take advantage of the BOS to develop scalable blockchain and smart contract services in areas like content distribution, rights management, and audience engagement. Hiren Gada, CEO of Shemaroo Entertainment, expressed enthusiasm for the partnership and the potential it holds for the future of media.

    - - - -

    “As a forward-thinking company, we are always looking for new ways to innovate and enhance our offerings to better serve our users,” says Gada “We believe that blockchain technology has the potential to unlock new possibilities and create new revenue streams for the industry.” 

    - - - -

    Gada also highlighted the benefits of NEAR becoming the Blockchain Operating System (BOS), which will ease and accelerate Sheramoo’s adoption of Web3, and reduce the time to market for projects. With NEAR, Shemaroo will provide Indian entertainment enthusiasts with enhanced security, faster transaction speeds, and lower costs for all forms of content engagement. 

    - - - -

    Building Shemaroo’s next-gen content on NEAR

    - - - -

    The partnership is expected to produce numerous benefits for both ecosystems. Shemaroo stands to increase brand awareness, reach new audiences, and develop fresh revenue streams while integrating cutting-edge technologies into its content. By building on NEAR, Shemaroo will be able to integrate things like NFTs and immersive metaverse experiences into both its vast existing library and future content.

    - - - -

    Marieke Flament, CEO of the NEAR Foundation, shared her excitement about the partnership, saying, “We are thrilled to partner with Shemaroo Entertainment, a company with a rich history in Indian cinema and a vast market reach.” 

    - - - -

    Flament added, “With a collection of over 3,700 movie titles and content distribution partners like Amazon Prime Video, Netflix, and YouTube, Shemaroo will expose NEAR to a completely new audience.”

    - - - -

    Shemaroo garners over 100 million views per day, with a massive cumulative subscriber base of over 200 million. This impressive audience reach will make NEAR more visible in an important market, contributing to its broader vision of bringing one billion people to Web3 through strategic partnerships.

    - - - -

    The partnership also helps increase the adoption of BOS, demonstrates the potential of blockchain technology in media and entertainment, and will attract new developers and partners in both the region and the entertainment industry. The partnership comes just shortly after the Foundation appointed Arpit Sharma to spearhead regional growth in India, ASEAN, and the Middle East.

    - - - -

    The partnership between Shemaroo Entertainment and NEAR Foundation is an important step towards unlocking the full potential of blockchain technology in the world of media and entertainment. Using the Indian region as a breeding ground for innovation via Sheramoo’s Web3 cell, they’ll be setting a new standard for new forms of content for existing libraries.

    -

    The post Shemaroo and NEAR Foundation Accelerate Web3 Adoption in Indian Media and Entertainment  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/shemaroo/index.html b/public/blog/tag/shemaroo/index.html deleted file mode 100644 index 08b787429..000000000 --- a/public/blog/tag/shemaroo/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Shemaroo Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/shopify/feed/index.xml b/public/blog/tag/shopify/feed/index.xml deleted file mode 100644 index 6e9f481e7..000000000 --- a/public/blog/tag/shopify/feed/index.xml +++ /dev/null @@ -1,134 +0,0 @@ - - - - Shopify Archives – NEAR Protocol - - /blog/tag/shopify/ - - Wed, 17 May 2023 15:43:17 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Shopify Archives – NEAR Protocol - /blog/tag/shopify/ - 32 - 32 - - - Taco Labs and NEAR Foundation to Give Shopify Retailers Next-Gen Customer Loyalty Programs - /blog/taco-labs-and-near-foundation-to-give-shopify-retailers-next-gen-customer-loyalty-programs/ - - - Fri, 05 May 2023 14:00:00 +0000 - - - - - /?p=20477 - - E-commerce is entering a new era of customer loyalty as Taco Labs and NEAR Foundation join forces to revolutionize the …

    -

    The post Taco Labs and NEAR Foundation to Give Shopify Retailers Next-Gen Customer Loyalty Programs appeared first on NEAR Protocol.

    -]]>
    - E-commerce is entering a new era of customer loyalty as Taco Labs and NEAR Foundation join forces to revolutionize the way 5.6 million Shopify retailers engage and retain customers. This innovative partnership fosters personalized loyalty experiences that deepen connections between brands and consumers, transcending traditional loyalty program limitations.

    - - - -

    By merging Taco Labs’ inventive platform with NEAR’s speedy, carbon-neutral blockchain, Shopify retailers can develop captivating loyalty programs while overcoming Web3 adoption challenges, such as slow transactions and high fees. The alliance paves the way for engaging multiplayer experiences, token-gated access, and exclusive benefits that transform customer retention and brand affinity.In this new loyalty landscape, both brands and consumers stand to benefit from this groundbreaking collaboration.

    - - - -

    Taco Labs and NEAR: Loyalty reinvention unwrapped

    - - - -

    As e-commerce continues to evolve, customer loyalty programs must adapt to remain relevant and effective. Traditional loyalty programs often struggle to build meaningful connections with customers, resulting in missed opportunities for improved retention and brand loyalty. Taco Labs and NEAR Foundation have partnered to address this issue, offering groundbreaking solutions to Shopify retailers. 

    - - - -

    The Starbucks case study illustrates how these solutions can foster unique and engaging loyalty experiences. With its recently unveiled Odyssey initiative, Starbucks created a Web3 loyalty program centered on gamification and real-life participation. Customers engage in challenges — like trying new menu items — to earn digital collectible stamps (NFTs). These stamps can be traded, and provide access to exclusive perks like limited-edition token-gated products, virtual classes, and trips to Starbucks roasteries or coffee farms.

    - - - -

    Similar to Starbucks, Taco Labs is harnessing Web3 to create innovative and captivating customer experiences and connections. The Taco App is doing this through quest gamification, membership tiers, reward points, and referral programs. These experiences are delivered swiftly, seamlessly, and at scale using the NEAR Protocol.

    - - - -

    Taco Labs and NEAR Foundation will further facilitate innovative loyalty approaches, incentivizing brand-valuable behavior, enhancing customer engagement, and transforming the e-commerce loyalty landscape.

    - - - -

    Streamlining loyalty with no-code solutions

    - - - -

    Taco Labs’ comprehensive platform addresses both immediate business needs and fosters long-term growth. It enables brands to scale their loyalty programs without incurring high costs and adapts to various business models, making the platform suitable for diverse industries and market segments.

    - - - -

    A key strength of Taco Labs is its seamless integration with existing systems, connecting easily with popular e-commerce platforms like Shopify and in-store Point of Sale (POS) systems. This cross-channel integration ensures a cohesive and immersive customer experience across online and offline touchpoints.

    - - - -

    Taco’s no-code approach streamlines the process for brands, marketers, and agencies. The end-to-end workflow doesn’t require specialized technical knowledge or developers, allowing businesses to focus on building meaningful connections with customers.

    - - - -

    In the Web3 world, privacy and data security are crucial. Taco addresses this by giving brands control over customer data, which is stored on a decentralized, transparent network. This ensures security and privacy while enabling brands to leverage valuable information for decision-making.

    - - - -

    Combining Web3 and the user-friendly NEAR Protocol, Taco Labs revolutionizes customer loyalty programs. Taco’s scalable, adaptable, and secure features enable businesses to create engaging experiences that retain customers and foster lasting connections, differentiating loyalty programs in a competitive market.

    - - - -

    Spicing up Shopify loyalty

    - - - -

    Taco Labs and NEAR Foundation will provide innovative solutions for Shopify retailers to enhance customer loyalty programs. By using Web3 technology, businesses can launch exclusive, early-access products quickly. Integration with Shopify delivers Web3 benefits while preserving Web2’s convenience and user experience.

    - - - -

    With Nike’s successful CryptoKicks NFT campaign as another example, Taco Labs enables Shopify retailers to create similar experiences. Businesses can launch tiered NFTs to crowdfund new product lines, offering lifelong perks to early supporters, like monthly loyalty tokens for exclusive products and offers. This encourages early adoption and strengthens customer relationships.

    - - - -

    Taco Labs’ platform promotes brand-valuable behavior by allowing customers to buy, sell, and gift the NFTs they’ve received. This generates a dynamic ecosystem of gifting and trading, attracting new customers without costly marketing. The platform’s blockchain foundation enables comprehensive data analytics, providing customer insights while respecting privacy.

    - - - -

    A key advantage of Taco Labs and NEAR Foundation’s collaboration is user control over data. Customers can choose to share information or maintain privacy, fostering trust and a positive experience. With data stored on a public blockchain, no third party can revoke access, ensuring businesses retain full control over customer relationships.

    - - - -

    Taco Labs and NEAR offer Shopify retailers a powerful, flexible solution to boost customer loyalty and engagement by combining Web3 and Web 2 features. This partnership presents an excellent growth opportunity for businesses in the rapidly evolving digital landscape.

    - - - -

    The collaboration ushers in a new era of customer loyalty, empowering Shopify retailers to harness Web3 capabilities. By seamlessly integrating blockchain technology with existing platforms, businesses can create tailored, engaging experiences fostering lasting customer connections.

    - - - -

    From token-gated products to comprehensive analytics, this partnership enables unique, sustainable loyalty programs, blending the strengths of Web3 and Web2 technologies. As the future of customer engagement unfolds, Taco Labs and the NEAR ecosystem are at the forefront.

    -

    The post Taco Labs and NEAR Foundation to Give Shopify Retailers Next-Gen Customer Loyalty Programs appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/shopify/index.html b/public/blog/tag/shopify/index.html deleted file mode 100644 index 7f0f5386a..000000000 --- a/public/blog/tag/shopify/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Shopify Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/shred-sports/feed/index.xml b/public/blog/tag/shred-sports/feed/index.xml deleted file mode 100644 index b619e8a0c..000000000 --- a/public/blog/tag/shred-sports/feed/index.xml +++ /dev/null @@ -1,106 +0,0 @@ - - - - Shred Sports Archives – NEAR Protocol - - /blog/tag/shred-sports/ - - Wed, 12 Jul 2023 17:13:00 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Shred Sports Archives – NEAR Protocol - /blog/tag/shred-sports/ - 32 - 32 - - - Shred Spots and NEAR Foundation: Kick-Flipping Into the Future of Social NFTs - /blog/shred-spots-and-near-foundation-kick-flipping-into-the-future-of-social-nfts/ - - - Wed, 12 Jul 2023 17:30:00 +0000 - - - - - /?p=20718 - - Action sports such as skateboarding and snowboarding are gaining momentum, especially among Gen Z, and are quickly outpacing traditional sports. …

    -

    The post Shred Spots and NEAR Foundation: Kick-Flipping Into the Future of Social NFTs appeared first on NEAR Protocol.

    -]]>
    - Action sports such as skateboarding and snowboarding are gaining momentum, especially among Gen Z, and are quickly outpacing traditional sports. Today, Gen Z is one of the biggest growth populations in skateboarding, highlighting the relevance of action sports and their surrounding community to the TikTok generation.

    - - - -

    This is where NEAR Foundation’s newest partner, Shred Spots, steps in. Shred Spots is a unique social platform specifically designed for active participants and community members in the street sports realm. Despite impressive growth, a dedicated, verticalized social platform that caters to these Gen Z skaters has been noticeably absent – until now. 

    - - - -

    In a convergence of skating and the open web, Shred Spots has partnered with NEAR Foundation to create a unique, interactive experience for street sports enthusiasts. This fusion will empower skaters to create, compete, and immortalize their achievements via innovative NFT technology within the action sports metaverse.

    - - - -

    Shred Spots: grinding in popularity among the open web generation

    - - - -

    Shred Spots has established itself as a go-to app for street skaters and has formed partnerships with significant street sports brands like Red Bull, GoPro, and XGames. It’s a community-driven digital platform that allows its users to track their achievements, compete with their peers, and express themselves creatively.

    - - - -

    A unique feature of Shred Spots is its live map, updated by the community, where users can find and add sports locations. They can search based on the type of obstacle, difficulty level, or even the likelihood of getting “busted.” These attributes have led Wired to proclaim Shred Spots as “the only app street skaters will ever need.”

    - - - -

    In a recent interview, Shred Spots founder, Lev Filimonov, also emphasized the app’s unique ability to combine skaters’ experience with AR and NFTs, fostering a dynamic interaction with the history and culture of skate spots worldwide while allowing users to monetize their art and achievements.

    - - - -

    Shred Spots’ popularity is a testament to its success. With its growth primarily driven by word-of-mouth within the street sports community, it has rapidly emerged as an essential tool for skaters worldwide. This organic growth underscores the platform’s ability to resonate with its audience and fulfill a clear need with Web3 and NEAR.

    - - - -

    Making every trick memorable with Shred Spots x NEAR

    - - - -

    The partnership between NEAR and Shred Spots brings an innovative twist to the realm of action sports, introducing the transformative potential of Web3 technologies to this vibrant community. Shred Spots plan to leverage NEAR’s blockchain to generate unique, collectible NFTs from skating highlights, enriching the overall user experience.

    - - - -

    In this exciting new chapter, every trick recorded and uploaded onto Shred Spots could be minted into an NFT within the street art metaverse. This integration not only adds a rewarding layer to the platform but also deepens the connection between skaters and the fascinating world of blockchain.

    - - - -

    Growth within the Shred Spots community has been largely organic, a testament to its widespread acceptance within the skating community. This partnership with NEAR amplifies the platform’s user experience through the integration of NFT technology, extending the reach of Web3 into the action sports world.

    - - - -

    The alignment of Shred Spots and NEAR’s vision aids in democratizing access to Web3 technologies, introducing an entirely new user base to the possibilities of blockchain. This marks a pivotal step in broadening the horizons of the street sports community, linking their passions with the power of Web3 and digital ownership.

    - - - -

    The collaboration between NEAR and Shred Spots epitomizes how the open web can enrich user experiences in growing niche communities like skateboarding and action sports. It also illustrates the future confluence of the open web, sports, and real-world achievements. And it’s bringing the blockchain to a whole new generation of action sports enthusiasts.

    -

    The post Shred Spots and NEAR Foundation: Kick-Flipping Into the Future of Social NFTs appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/shred-sports/index.html b/public/blog/tag/shred-sports/index.html deleted file mode 100644 index 1fde77d9b..000000000 --- a/public/blog/tag/shred-sports/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Shred Sports Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/sk-inc-cc/feed/index.xml b/public/blog/tag/sk-inc-cc/feed/index.xml deleted file mode 100644 index 341dc9e03..000000000 --- a/public/blog/tag/sk-inc-cc/feed/index.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - SK Inc. C&C Archives – NEAR Protocol - - /blog/tag/sk-inc-cc/ - - Mon, 25 Sep 2023 17:01:04 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - SK Inc. C&C Archives – NEAR Protocol - /blog/tag/sk-inc-cc/ - 32 - 32 - - - NEAR Foundation Unlocks Web3 B2B Solutions with SK Inc. C&C Strategic Partnership  - /blog/near-foundation-unlocks-web3-b2b-solutions-with-sk-inc-cc-strategic-partnership/ - - - Thu, 21 Sep 2023 00:00:00 +0000 - - - - /?p=20903 - - The NEAR Foundation is joining forces with SK Inc. C&C, a global leader in the IT industry, to help Web3 …

    -

    The post NEAR Foundation Unlocks Web3 B2B Solutions with SK Inc. C&C Strategic Partnership  appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation is joining forces with SK Inc. C&C, a global leader in the IT industry, to help Web3 businesses expand in the region. 

    - - - -

    The collaboration brings together two teams committed to helping companies find the right Web3 tools to make their business grow. NEAR Foundation and SK Inc. C&C agree to carry out joint research, share and support partners in both ecosystems and collaborate on marketing and raising awareness. 

    - - - -

    “I am very pleased to collaborate with a leading company in South Korea’s IT industry like SK Inc.C&C. This partnership is expected to serve as a significant milestone, leading to the emergence of various use cases and the creation of a user-centric ecosystem,” says Marieke Flament, CEO of NEAR Foundation. 

    - - - -

    The partnership with SK Inc. C&C will leverage the NEAR Foundation’s network to strengthen its technological and business growth, connecting with SK Inc. C&C’s local corporate clients to accelerate the recruitment of outstanding companies in the Korean market.

    - - - -

    “Various attempts are being made to discover Web3 services connected with public blockchains across various industries, including public, financial, manufacturing, and distribution sectors. Starting with NEAR Protocol, we will strengthen our collaboration with already market-validated public blockchain companies and embark on expanding the Web3 service ecosystem,” says Cheol Choi, Head of the Web3 and Convergence Group at SK Inc.C&C 

    - - - -

    SK Inc. C&C provides consulting services, enterprise resource planning (ERP) solutions, intelligent transportation systems (ITSs), geographic information systems (GISs), billing solutions as well as other systems and solutions used in telecommunications, financial, logistics, energy and chemical industries. The company is active in the United States, China, the Middle East and other markets in addition to South Korea. 

    - - - -

    Asia in focus

    - - - -

    South Korea has become a major hub for the NEAR Community. Since launching in November of 2022, NEAR Korea Hub has hit a number of major milestones in the Korean Web3 industry. 

    - - - -

    The Hub has significantly contributed to the expansion of the Web3 ecosystem over the past 6 months by forming partnerships with leading domestic technology companies, offering generous developer support, and forging long-term relationships with college blockchain clubs. 

    - - - -

    The partnership with SK Inc. C&C forms part of a wider strategy to help support Asia’s role in mainstream adoption of Web3 and Open Web technologies. The NEAR Foundation’s support of ecosystems across Asia culminated in its recent NEAR APAC conference that took place in Ho Chi Minh City, Vietnam. 
    “NEAR Protocol is actively making moves to conquer the Korean market. As evidenced by the management team’s visit to Korea during Korea Blockchain Week (KBW), where discussions were held with leading companies in various industries, we expect significant results initially led by SK Inc. C&C,” says Scott Lee, General Manager, NEAR Korea. 

    -

    The post NEAR Foundation Unlocks Web3 B2B Solutions with SK Inc. C&C Strategic Partnership  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/sk-inc-cc/index.html b/public/blog/tag/sk-inc-cc/index.html deleted file mode 100644 index 116c42acd..000000000 --- a/public/blog/tag/sk-inc-cc/index.html +++ /dev/null @@ -1,2 +0,0 @@ -SK Inc. C&C Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/skateboarding/feed/index.xml b/public/blog/tag/skateboarding/feed/index.xml deleted file mode 100644 index a11dcadc6..000000000 --- a/public/blog/tag/skateboarding/feed/index.xml +++ /dev/null @@ -1,106 +0,0 @@ - - - - Skateboarding Archives – NEAR Protocol - - /blog/tag/skateboarding/ - - Wed, 12 Jul 2023 17:13:00 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Skateboarding Archives – NEAR Protocol - /blog/tag/skateboarding/ - 32 - 32 - - - Shred Spots and NEAR Foundation: Kick-Flipping Into the Future of Social NFTs - /blog/shred-spots-and-near-foundation-kick-flipping-into-the-future-of-social-nfts/ - - - Wed, 12 Jul 2023 17:30:00 +0000 - - - - - /?p=20718 - - Action sports such as skateboarding and snowboarding are gaining momentum, especially among Gen Z, and are quickly outpacing traditional sports. …

    -

    The post Shred Spots and NEAR Foundation: Kick-Flipping Into the Future of Social NFTs appeared first on NEAR Protocol.

    -]]>
    - Action sports such as skateboarding and snowboarding are gaining momentum, especially among Gen Z, and are quickly outpacing traditional sports. Today, Gen Z is one of the biggest growth populations in skateboarding, highlighting the relevance of action sports and their surrounding community to the TikTok generation.

    - - - -

    This is where NEAR Foundation’s newest partner, Shred Spots, steps in. Shred Spots is a unique social platform specifically designed for active participants and community members in the street sports realm. Despite impressive growth, a dedicated, verticalized social platform that caters to these Gen Z skaters has been noticeably absent – until now. 

    - - - -

    In a convergence of skating and the open web, Shred Spots has partnered with NEAR Foundation to create a unique, interactive experience for street sports enthusiasts. This fusion will empower skaters to create, compete, and immortalize their achievements via innovative NFT technology within the action sports metaverse.

    - - - -

    Shred Spots: grinding in popularity among the open web generation

    - - - -

    Shred Spots has established itself as a go-to app for street skaters and has formed partnerships with significant street sports brands like Red Bull, GoPro, and XGames. It’s a community-driven digital platform that allows its users to track their achievements, compete with their peers, and express themselves creatively.

    - - - -

    A unique feature of Shred Spots is its live map, updated by the community, where users can find and add sports locations. They can search based on the type of obstacle, difficulty level, or even the likelihood of getting “busted.” These attributes have led Wired to proclaim Shred Spots as “the only app street skaters will ever need.”

    - - - -

    In a recent interview, Shred Spots founder, Lev Filimonov, also emphasized the app’s unique ability to combine skaters’ experience with AR and NFTs, fostering a dynamic interaction with the history and culture of skate spots worldwide while allowing users to monetize their art and achievements.

    - - - -

    Shred Spots’ popularity is a testament to its success. With its growth primarily driven by word-of-mouth within the street sports community, it has rapidly emerged as an essential tool for skaters worldwide. This organic growth underscores the platform’s ability to resonate with its audience and fulfill a clear need with Web3 and NEAR.

    - - - -

    Making every trick memorable with Shred Spots x NEAR

    - - - -

    The partnership between NEAR and Shred Spots brings an innovative twist to the realm of action sports, introducing the transformative potential of Web3 technologies to this vibrant community. Shred Spots plan to leverage NEAR’s blockchain to generate unique, collectible NFTs from skating highlights, enriching the overall user experience.

    - - - -

    In this exciting new chapter, every trick recorded and uploaded onto Shred Spots could be minted into an NFT within the street art metaverse. This integration not only adds a rewarding layer to the platform but also deepens the connection between skaters and the fascinating world of blockchain.

    - - - -

    Growth within the Shred Spots community has been largely organic, a testament to its widespread acceptance within the skating community. This partnership with NEAR amplifies the platform’s user experience through the integration of NFT technology, extending the reach of Web3 into the action sports world.

    - - - -

    The alignment of Shred Spots and NEAR’s vision aids in democratizing access to Web3 technologies, introducing an entirely new user base to the possibilities of blockchain. This marks a pivotal step in broadening the horizons of the street sports community, linking their passions with the power of Web3 and digital ownership.

    - - - -

    The collaboration between NEAR and Shred Spots epitomizes how the open web can enrich user experiences in growing niche communities like skateboarding and action sports. It also illustrates the future confluence of the open web, sports, and real-world achievements. And it’s bringing the blockchain to a whole new generation of action sports enthusiasts.

    -

    The post Shred Spots and NEAR Foundation: Kick-Flipping Into the Future of Social NFTs appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/skateboarding/index.html b/public/blog/tag/skateboarding/index.html deleted file mode 100644 index 4da3258c6..000000000 --- a/public/blog/tag/skateboarding/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Skateboarding Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/space-id-voyage/feed/index.xml b/public/blog/tag/space-id-voyage/feed/index.xml deleted file mode 100644 index 8eaba727d..000000000 --- a/public/blog/tag/space-id-voyage/feed/index.xml +++ /dev/null @@ -1,97 +0,0 @@ - - - - SPACE ID Voyage Archives – NEAR Protocol - - /blog/tag/space-id-voyage/ - - Tue, 20 Jun 2023 13:52:56 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - SPACE ID Voyage Archives – NEAR Protocol - /blog/tag/space-id-voyage/ - 32 - 32 - - - NEAR and Galxe Team Up for SPACE ID Voyage Season 2 - /blog/near-and-galxe-team-up-for-space-id-voyage-season-2/ - - - Thu, 08 Jun 2023 16:00:00 +0000 - - - - /?p=20605 - - NEAR Foundation and Galxe —the  leading platform for Web3 community building — are joining forces to provide new and existing Web3 …

    -

    The post NEAR and Galxe Team Up for SPACE ID Voyage Season 2 appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation and Galxe —the  leading platform for Web3 community building — are joining forces to provide new and existing Web3 users with a seamless onboarding experience for SPACE ID’s renewed referral program, “Voyage Season 2 – Calling”. 

    - - - -

    This new partnership is significant, as Galxe is the first major Web3 partner launching a component on NEAR’s Blockchain Operating System (BOS). The BOS is an OS on which developers can effortlessly build and distribute chain-agnostic, decentralized apps and experiences on the  Open Web.  

    - - - -

    SPACE ID is a universal name service network with a one-stop identity platform to discover, register, trade, and manage Web3 domains. It also includes a Web3 Name SDK & API for developers across blockchains and provides a multi-chain name service for everyone to easily build and create a web3 identity. Established in the third quarter of 2022, SPACE ID quickly took the market by storm with its .bnb domain name service, as well as more recently with .arb name service. 

    - - - -

    How the BOS will power the SPACE ID Voyage decentralized frontend

    - - - -

    NEAR’s BOS will be powering the decentralized frontend for SPACE ID’s Voyage, a referral program where users invite others to register a .bnb or .arb address and earn special Voyage Boxes in return. Starting on June 7th, users will be able to participate in Space ID’s Voyage program through near.org and register .bnb names — enjoying a seamless, one-stop, decentralized experience powered by BOS. 

    - - - -

    Before the BOS integration, participating in quests like Voyage could be a complicated process. Users had to navigate through multiple pages, going back and forth to sign-in, register a domain, check eligibility, and claim rewards separately. A tech stack for decentralized and user-friendly frontends, BOS enables a unified interface where users can do all of the above with a single sign-in — directly in-app — so that users never have to leave the page on which they started.

    - - - -

    How SPACE ID uses BOS’s composable components

    - - - -
    - - - -

    The BOS components for SPACE ID are created independently and composed inside another composite component. This, in and of itself, clearly demonstrates the true composability strengths of BOS. 

    - - - -

    And thanks to BOS’s permissionless nature, developers are able to fork the components and embed them into their BOS components or websites. Users are then able to view the source code for each of the these components both on-chain and in-browser — improving transparency and security at every step of the user journey. 

    - - - -

    Discover Galxe’s exciting SPACE ID Campaign today. Register a .bnb domain name and claim a Voyage Box today on near.org

    - - - -

    Stay tuned for more exciting NEAR Foundation and Galxe campaigns to come — powered by BOS! 

    -

    The post NEAR and Galxe Team Up for SPACE ID Voyage Season 2 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/space-id-voyage/index.html b/public/blog/tag/space-id-voyage/index.html deleted file mode 100644 index ff397ea27..000000000 --- a/public/blog/tag/space-id-voyage/index.html +++ /dev/null @@ -1,2 +0,0 @@ -SPACE ID Voyage Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/startup-wise-guys/feed/index.xml b/public/blog/tag/startup-wise-guys/feed/index.xml deleted file mode 100644 index b114e14ea..000000000 --- a/public/blog/tag/startup-wise-guys/feed/index.xml +++ /dev/null @@ -1,180 +0,0 @@ - - - - Startup Wise Guys Archives – NEAR Protocol - - /blog/tag/startup-wise-guys/ - - Wed, 22 Feb 2023 14:44:58 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Startup Wise Guys Archives – NEAR Protocol - /blog/tag/startup-wise-guys/ - 32 - 32 - - - NEAR and Startup Wise Guys Partner on MetaBUILD’s Pre-Accelerator Program - /blog/near-and-startup-wise-guys-partner-on-metabuilds-pre-accelerator-program/ - - - Thu, 16 Feb 2023 14:01:00 +0000 - - - - - /?p=19756 - - NEAR Foundation is excited to announce a new partnership with Startup Wise Guys — Europe’s biggest startup accelerator, which has …

    -

    The post NEAR and Startup Wise Guys Partner on MetaBUILD’s Pre-Accelerator Program appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Startup Wise Guys — Europe’s biggest startup accelerator, which has empowered over 350 projects across the world. Together with SWG, the Foundation will bring  20 winning projects from the MetaBUILD III hackathon into an 8-week pre-acceleration program to grow and prepare these new teams to bring their first product iteration to market.

    - - - -

    The partnership’s goal is to bring great new products to life in Web3.  After the hack, NEAR Foundation and Startup Wise Guys will prepare all projects to join accelerators, make their first raise, and launch to market. 

    - - - -

    Startup Wise Guys’ Pre-Acceleration Program for MetaBUILD

    - - - -
    - - - -

    Let’s go over the program. For this occasion, we’ll be running an 8-week program with Startup Wise Guys, covering everything from finding your project’s mission, to setting up team structure, finance, and communication programs for your brand.

    - - - -


    Each week covers a specific topic, and will feature both recorded and live events as well as exercises for the projects to take on! 

    - - - -

    Each week, all teams will progress to fleshing out their new project’s company setup, brand, and prepare to launch to market. Throughout the program, Startup Wise Guys and NEAR will aid projects with 1-1 mentorships (invited from the ecosystem and from Startup Wise Guys’ network), pitch training and drills, Q&As, and a folder of ready-to-use learning materials.

    - - - -
      -
    • Week 1: Onboarding Session
    • -
    - - - -

    Onboarding of all projects into the program, and setting expectations for all upcoming weeks and events.

    - - - -
      -
    • Week 2: Setting Goals & KPIs
    • -
    - - - -

    Structuring each project’s journey. How to find a mission and vision for your project long term.

    - - - -
      -
    • Week 3: Problem Definition & Pitching
    • -
    - - - -

    Crafting your project’s pitch and problem-to-be-solved to define your selling points.

    - - - -
      -
    • Week 4: Product development & effective planning
    • -
    - - - -

    Planning the product’s development, and identifying key differentiators to give it unique aspects in the market.

    - - - -
      -
    • Week 5: Focus and Execution
    • -
    - - - -

    Crisis-handling in companies, and pace. How to maintain your team’s rhythm.

    - - - -
      -
    • Week 6: Sales & Team Management Basics
    • -
    - - - -

    Sales, marketing, and branding for early startups and projects. How to define your vector for gaining traction in the world.

    - - - -
      -
    • Week 7: Company Communications, Finances, Fundraising
    • -
    - - - -

    Company communications and finance preparations. How to define your key metrics of success, and prepare a structure to present to investors, as well as how to seek and select the right ones.

    - - - -
      -
    • Week 8: Legal Basics
    • -
    - - - -

    How to register your business, understanding your basic legal structure and needs to get started as a company. Also, going over any regulatory requirements like GDPR, and Intellectual Property, as well as minimizing legal needs.

    - - - -
      -
    • Week 9: Graduation & Pitches!
    • -
    - - - -

    Final day! Graduated projects who completed the program will present their project’s revamped pitches and go out to the world.

    - - - -

    Come Hack, and Build On!

    - - - -

    NEAR Foundation can’t wait to see the new exciting projects that will be born from MetaBUILD, and is excited about this new partnership with Startup Wise Guys in 2023. 

    - - - -

    The Foundation will share all progress along the way as we finalize the submission phase of MetaBUILD and move onto judging. So stay tuned and follow all updates on Twitter!

    -

    The post NEAR and Startup Wise Guys Partner on MetaBUILD’s Pre-Accelerator Program appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/startup-wise-guys/index.html b/public/blog/tag/startup-wise-guys/index.html deleted file mode 100644 index 2a819f85d..000000000 --- a/public/blog/tag/startup-wise-guys/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Startup Wise Guys Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/stateless-validation/feed/index.xml b/public/blog/tag/stateless-validation/feed/index.xml deleted file mode 100644 index a44b3f920..000000000 --- a/public/blog/tag/stateless-validation/feed/index.xml +++ /dev/null @@ -1,100 +0,0 @@ - - - - stateless validation Archives – NEAR Protocol - - /blog/tag/stateless-validation/ - - Tue, 30 Jan 2024 14:33:23 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - stateless validation Archives – NEAR Protocol - /blog/tag/stateless-validation/ - 32 - 32 - - - Phase 2 of NEAR Sharding Launches - /blog/phase-2-of-near-sharding-launches/ - - - Tue, 30 Jan 2024 14:33:22 +0000 - - - - - - - /?p=21200 - - The NEAR Foundation announced today that the Protocol Work Group will launch testing for Phase 2 of Sharding this week, …

    -

    The post Phase 2 of NEAR Sharding Launches appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation announced today that the Protocol Work Group will launch testing for Phase 2 of Sharding this week, marking a major milestone in the network’s development roadmap. Phase 2 introduces fundamental upgrades to NEAR’s core protocol architecture, enabling even greater scalability and decentralization for the network. The fourth edition of Stake Wars, an incentivized community testing initiative, will kick off on February 1.  

    - - - -

    NEAR’s vision of chain abstraction to facilitate broad adoption of decentralized apps requires an extremely scalable blockchain layer. From the start, NEAR has been designed to scale with demand towards mainstream adoption. A primary benefit of the new sharding implementation will be an up-to-10x speed improvement to NEAR’s already-fast transaction throughput. Sharding is NEAR’s unique approach to scaling, which partitions the blockchain into multiple parallel “shards.” Combined with NEAR already having the lowest transaction fees in Web3, this sharding upgrade positions NEAR at the forefront of Web3 in terms of both performance and scalability. Phase 2 greatly improves the network’s capacity for end user volume and is an important landmark on the road to global-scale usage of Web3. 

    - - - -

    “NEAR continues to make progress on bringing Chain Abstraction infrastructure that can scale to a billion users and beyond,” said Illia Polosukhin, Co-Founder of NEAR Protocol and CEO of NEAR Foundation. “The scalability improvements from stateless validation can unlock even better user experiences for more end-user applications, whether multichain DeFi-style dapps or those aimed at mainstream users.”

    - - - -

    Phase 2 introduces the most significant changes to the NEAR Protocol since its Mainnet launch in 2020. The biggest of these is the implementation of stateless validation: an innovative approach to state change, or the process of updating the status of all the data posted to the blockchain. Now, NEAR validators no longer have to maintain the state of a shard locally and can retrieve all the information they need to validate state changes, or “state witness,” from the network. 

    - - - -

    With stateless validation, NEAR can finally achieve the truest form of sharding, where shards can function mostly independently at the consensus level to improve decentralization and throughput while preserving the highest security guarantees. An added benefit is that the hardware requirements to run most validator nodes are dramatically reduced (a smaller number of “chunk proposer” validators with specialized hardware will validate blocks with state held in memory). This also paves the way for greater decentralization of the network by lowering the barrier to entry to become a validator.

    - - - -

    “We’re very excited about the potential for future proofing the NEAR protocol design with stateless validation,” said Bowen Wang, Director of Protocol at Pagoda. “From a research perspective, we expect that as zero-knowledge tech matures, more protocols will adopt a similar approach, where a smaller set of expensive machines execute transactions and produce proofs, while a bigger validator set validates the proofs. This will enable more unified security across networks and defragment Web3, advancing a key aspect of the chain abstraction vision.” 

    - - - -

    Phase 2 is a shift in direction from the original Nightshade sharding architecture NEAR launched with in 2020, bypassing some fundamental roadblocks in that protocol design around the implementation of challenges in the initial idea of Phase 2, while also unlocking additional benefits. Other network improvements in Phase 2 include in-memory trie, wherein validator nodes can load the entire state into RAM for maximized performance. This will greatly improve transaction throughput thanks to minimizing storage access. 

    - - - -
    Phase 2 is the third major upgrade to NEAR Protocol’s sharding since Mainnet launch in October 2020, showcasing the incredible shipping speed of the protocol engineering team.
    - - - -

    - - - -

    NEAR users should not experience any downtime with the transition to Phase 2 and no special action is required from validators, apart from adjusting hardware specs. Through dozens of protocol upgrades since Mainnet launch, including three major upgrades, the core NEAR protocol has had 100% uptime with zero disruption for developers and end users. 

    - - - -

    On Thursday, February 1, Stake Wars IV: Attack of the Transactions will launch to incentivize battle testing of the new sharding architecture. Planned to run through March 31, the latest edition of Stake Wars invites community members to test features and generate traffic. For more information about participating and deeper technical detail about Phase 2, visit the Stake Wars page on Github

    - - - -

    With the launch of Phase 2, NEAR becomes one of the only networks in Web3 to implement stateless validation to improve scaling and paves the way for further network performance and scalability improvements in the future roadmap. A technical paper with more detail about NEAR’s new sharding design is forthcoming later in Q1. Phase 2 is expected to launch on NEAR Mainnet in May 2024.

    -

    The post Phase 2 of NEAR Sharding Launches appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/stateless-validation/index.html b/public/blog/tag/stateless-validation/index.html deleted file mode 100644 index 192d8cd59..000000000 --- a/public/blog/tag/stateless-validation/index.html +++ /dev/null @@ -1,2 +0,0 @@ -stateless validation Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/statistics/feed/index.xml b/public/blog/tag/statistics/feed/index.xml deleted file mode 100644 index 4f3740983..000000000 --- a/public/blog/tag/statistics/feed/index.xml +++ /dev/null @@ -1,1090 +0,0 @@ - - - - Statistics Archives – NEAR Protocol - - /blog/tag/statistics/ - - Fri, 23 Dec 2022 12:31:26 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Statistics Archives – NEAR Protocol - /blog/tag/statistics/ - 32 - 32 - - - NEAR Weekly On Chain Data Report: December 23 - /blog/near-weekly-on-chain-data-report-december-23/ - - - Fri, 23 Dec 2022 14:00:00 +0000 - - - - /?p=19663 - - Transparency continues to be a core focus of the NEAR Fondation, so every week it will publish data to assess …

    -

    The post NEAR Weekly On Chain Data Report: December 23 appeared first on NEAR Protocol.

    -]]>
    - Transparency continues to be a core focus of the NEAR Fondation, so every week it will publish data to assess the health of the ecosystem. This is to aid the NEAR community in understanding the current state of NEAR across key metrics. The Weekly On Chain Data Report will also appear at the top of quarterly reports as well as monthly funding reports.

    - - - -

    Read the Quarterly Transparency Reports. 

    - - - -

    Read the Q3 Transparency Report 

    - - - -

    Read Last week’s  On-Chain Data Report.

    - - - -

    The Importance of Transparency

    - - - -

    The NEAR Foundation has been committed to transparency since inception. It values openness to all stakeholders, including investors, builders, and creators. The Foundation’s focus on openness to the entire community will always be a core tenet.

    - - - -

    The Foundation values the community’s continued support and feedback as it publishes these reports. It’s part of the Foundation’s ongoing response to the community to provide as much transparency as possible.

    - - - -

    New Accounts and Active Accounts

    - - - -

    Daily new account (or new wallet) creation ended the week at around 17,000 per day. This is a slight decline from last week, which ended with  20,000 daily new accounts. The peak for this week was logged on December 20th when 19,000 new wallets were created. Put into context, roughly 14,300 wallets were being created daily at the start of December, making it a positive month for new accounts.

    - - - -
    - - - -

    If a NEAR wallet makes an on-chain transaction, it’s counted in the Daily Number of Active Accounts metric. This past week, Daily Active Accounts ranged between 39,266 on December 18th to 46,235 on the 19th of the month. This is still well above August and September’s numbers, where Daily Active Accounts hovered around 10,000 with a Q4 2022 high of 183,000 accounts active logged on September 14.

    - - - -
    - - - -

    New Contracts and Active Contracts

    - - - -

    Smart contracts built on the NEAR blockchain are programs that automatically execute when certain parameters are met. By examining the Daily Number of New Contracts created, the community can get a better sense of how healthy the ecosystem is and its growth as well. 

    - - - -

    The more new smart contracts are being actively executed, the more projects and users are engaging with NEAR. There was a substantial increase in the number of daily new contracts to end the week, climbing from 28 on the 17th to 46 by the 21st. This high of the last 7 days  was 63 on the 16th, and the low was 26 on December 18th.

    - - - -
    - - - -

    Daily Number of Active Contracts measures contracts that were executed within a 24-hour time span. This ranged from a high of 797 on December 15th to a low of 535 on the 18th. These numbers are still well above the beginning of the year, where there were roughly between 200 to 400 daily active contracts.

    - - - -
    - - - -

    Used Gas and Gas Fee

    - - - -

    Gas Fees are the costs associated with conducting transactions on the NEAR network and blockchain. Validators for the network are compensated using Gas Fees for their services, incentivizing validators needed to secure the network.

    - - - -

    Over the last week, Used Gas on the NEAR network (or PetaGas) declined slightly from 7,489 on the 15th, ending the week at 6,226. This is fairly consistent with the entire month of December, indicating that individuals are on the network and transacting regularly. 

    - - - -
    - - - -

    During this past week, there has been a slight drop in the Gas Fee, which correlates with a drop in Used Gas. On December 18th, the Gas Fee was measured at 570, before peaking to 676 the following day. The rest of this week has hovered around 622. 

    - - - -
    - - - -

    Daily Transactions

    - - - -

    Finally, the Daily Number of Transactions shows how many times the blockchain logged a transaction over the past week. This week’s figures indicate a slight decrease from 454,757 on the 16th of December to 332,708 on the 21st. 

    - - - -
    - - - -

    These reports are generated every week and published on Friday.

    -

    The post NEAR Weekly On Chain Data Report: December 23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Weekly On-Chain Data Report: December 16  - /blog/near-weekly-on-chain-data-report-december-16/ - - - Fri, 16 Dec 2022 16:00:00 +0000 - - - - /?p=19593 - - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand …

    -

    The post NEAR Weekly On-Chain Data Report: December 16  appeared first on NEAR Protocol.

    -]]>
    - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand the health of the ecosystem. This will be on top of the quarterly reports, and the now monthly funding reports. 

    - - - -

    You can find the Quarterly Transparency Reports here. (The Q3 report will be published next week.)

    - - - -

    Last week’s On-Chain Data Report can be found here. 

    - - - -

    The Importance of Transparency

    - - - -

    Transparency has always been one of NEAR Foundation’s core beliefs. Openness to the community, investors, builders, and creators is one of the core tenets of being a Web3 project. 

    - - - -

    In recent months, in response to community frustration, the Foundation has endeavored to do more. This NEAR Weekly On-Chain Data Report is just one of the ways in which the Foundation is being more proactively transparent.  

    - - - -

    New Accounts and Active Accounts

    - - - -

    New Accounts are defined as new wallets created on the NEAR blockchain. While there was a decline in new accounts between the last week of November and the first week of December, this figure rose from an average of 14,000 per day to approximately 24,000 per day this week. New accounts reached a weekly high of 25,001 on December 12th.

    - - - -

    This puts last week’s New Accounts data in line with November’s average figure of 24,000 wallets per 24 hours. As noted last week, the peak for account creation in Q4 was September 13, during which 130,000 new wallets were created in a single day. Collectively, these numbers equate to nearly 2M  total wallets on the NEAR blockchain.

    - - - -
    - - - -

    The Daily Number of Active Accounts measures the number of NEAR wallets making on-chain transactions. Over the last week, Active Accounts hit a high of 92,440 before trending down to about 51,000 per day. 

    - - - -

    Historically, there have been highs of more than 100,000 active accounts on NEAR. The  high for Active Accounts on any one day in Q4 of 2022 was logged on September 14, during which 183,000 accounts were active.

    - - - -
    - - - -

    New Contracts and Active Contracts

    - - - -

    Smart contracts created on NEAR are programs stored on a blockchain that run when predetermined conditions are met. The Daily Number of New Contracts is valuable as a metric because it gives the community a way of measuring the NEAR ecosystem’s health and growth. If there are more active contracts, it follows that projects are more actively engaging with the NEAR protocol. 

    - - - -

    This week, the daily number of New Contract has been trending upward, whereas last week it rose and fell. A low of 17 New Contracts was measured on December 11th,, before falling to 50 on the 14th. A weekly high of 57 contracts were created on December 13th. 

    - - - -
    - - - -

    Active Contracts measure contracts executed during a 24-hour period. This metric also trended upward this week, with 640 measured on December 11th and and a high of 797 Active Contracts created on December 13th. 

    - - - -
    - - - -

    Used Gas and Gas Fee

    - - - -

    Gas Fees is a term used to describe the cost of making transactions on the NEAR network. These fees are paid to validators for the network services they provide to the NEAR blockchain. Gas fees incentivize validators to secure the network. 

    - - - -

    In the last week, Used Gas on NEAR (PetaGas) was measured at a high of 7,569 on December 11th and 6,758 on the 14th. To learn more about Gas on NEAR, check out the NEAR White Paper. (Rises in gas used can be attributed to many factors, with a common one being increased user activity on the NEAR network.) 

    - - - -
    - - - -

    Over the last week, there has been a slight drop in the Gas Fee (in NEAR), which correlates with a drop in Used Gas. On December 11th, the Gas Fee was measured at 756, before falling to 675 on the 14th. 

    - - - -
    - - - -

    Daily Transactions

    - - - -

    The Daily Number of Transactions illustrates the number of times the blockchain logged a transaction. The data from this week showcases an increase in the number of transactions, which was also the case over the previous week. Daily Number of Transactions hit a weekly high of 439,660 on December 11th before falling to 373,335 on the 14th. 

    -

    The post NEAR Weekly On-Chain Data Report: December 16  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Weekly On Chain Data Report: December 9 - /blog/near-transparency-report-december-9/ - - - Fri, 09 Dec 2022 10:38:36 +0000 - - - - /?p=19508 - - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand …

    -

    The post NEAR Weekly On Chain Data Report: December 9 appeared first on NEAR Protocol.

    -]]>
    - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand the health of the ecosystem. This will be on top of the quarterly reports, and the now monthly funding reports. 

    - - - -

    You can find the quarterly reports here.

    - - - -

    You can find monthly reports on funding here.  

    - - - -

    Last week’s transparency report can be found here. 

    - - - -

    The importance of transparency

    - - - -

    The NEAR Foundation has always held transparency as one of its core beliefs. Being open to the community, investors, builders and creators is one of the core tenets of being a Web3 project. But it’s become apparent the Foundation needs to do more. 

    - - - -

    The Foundation hears the frustration from the community, and it wants to be more pro-active in when and how it communicates. 

    - - - -

    New Accounts and Active Accounts

    - - - -

    New Accounts are new wallets being created on the NEAR blockchain. In the last days of November and the first days of December, the daily number of new accounts had been declining. This week however, activity has been trending up, with the average number of new accounts averaging 14,000 per day, with a weekly peak of 14,752 recorded on December 6.

    - - - -

    This is down on November’s figure of 24,000 wallets per 24 hours, on average. These numbers are conducive with the overall decline in sentiment around blockchain.

    - - - -

    Looking more broadly, the peak for account creation in Q4 was September 13 where 130,000 new wallets were created in one day. Collectively, these numbers equate to 22,551,000 total wallets on the NEAR blockchain.

    - - - -
    - - - -

    The Daily Number of Active Accounts is a measure of how many wallets on NEAR are making transactions on chain. Over the last week, the number of daily active accounts has oscillated between a a low of 12,639 on December 5, to a peak of 14,752 on December 6.

    - - - -

    Historically, this is a decline from highs of more than 100,000 active accounts on the network. The highest number of active accounts on any one day in Q4 this year was logged on September 14, where 183,000 accounts were active.

    - - - -
    - - - -

    New Contracts and Active Contracts

    - - - -

    Contracts on NEAR are simply programs stored on a blockchain that run when predetermined conditions are met. The Daily Number of New Contracts is a valuable metric for understanding the health and growth of an ecosystem.

    - - - -

    The more active contracts there are, the more projects are actively engaging with the NEAR protocol. The chart below shows a cyclical rhythm to new contracts, with rises and falls. Over the last seven days, the number of new contracts reached a daily high of 54 on December 4, and a weekly low of 27 on December 6. This range is broader compared to the week before, with last week’s highest number of 44 on November 30, to a low of 12 new contracts on November 27.

    - - - -
    - - - -

    Active contracts is a measure of contracts that execute in a 24 hour period. This number has remained consistent throughout the last week with an average of more than 600 active contracts on the NEAR network. Taking a historical perspective on these numbers, the average has declined in Q4, with previous highs in active contract activity coming in the third week of September 2022.

    - - - -
    - - - -

    Used Gas and Gas Fee

    - - - -

    Gas Fees are a catch all term for the cost of making transactions on the NEAR network. These fees are paid to validators for their services to the blockchain. Without these fees, there would be no incentive for anyone to keep the network secure.

    - - - -

    - - - -

    Over the last week, the daily amount of gas, expressed here as PetaGas, which is the equivalent of 0.1 $NEAR, has maintained a fairly consistent value between 5,949 PetaGas and 6,743 PetaGas. To learn more about Gas on NEAR, there is an excellent explainer in the NEAR White Paper. Compared with last week, the Daily Amount of Used Gas has decreased, from highs of more than 8,000 PetaGas.

    - - - -
    - - - -

    The Daily Amount of Gas correlates with the Daily Gas Fee used on the network. Over the last week, there has been an uptick in the amount of Gas used, which can be brought on by a number of different factors. One of the most common is increased activity among users of the network.

    - - - -
    - - - -

    Daily Transactions

    - - - -

    The daily number of transactions is a record of how many times the blockchain logged a transaction. This week’s data represents a healthy increase in the number of transactions. From lows of 328,000 transactions on December 3, to a weekly high of 388,000 transactions per day on December 6. Looking more broadly, NEAR transaction activity has been trending downwards in Q4, reflecting other on chain data presented here.

    - - - -
    - - - -

    These reports will be generated each week and published on Friday.

    -

    The post NEAR Weekly On Chain Data Report: December 9 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Funding Team Report: September 2022 - /blog/near-foundation-funding-team-report-september-2022/ - - - Fri, 18 Nov 2022 10:00:00 +0000 - - - - /?p=19093 - - Welcome to the NEAR Foundation Funding Team Report that captures and highlights data for the month of September 2022. The …

    -

    The post NEAR Foundation Funding Team Report: September 2022 appeared first on NEAR Protocol.

    -]]>
    - Welcome to the NEAR Foundation Funding Team Report that captures and highlights data for the month of September 2022. The purpose of this document is to provide transparency regarding what happened during the last month in our Funding Team, and is to be shared publicly to the ecosystem and our investor network.

    - - - -
    - - - -

    Summary 

    - - - -

    1. Grant data

    - - - -

    1.2. Approved Grant program data

    - - - -

    1.2. Grant highlights

    - - - -

    1.3 Completed Projects & Milestone data

    - - - -

    1.4 Effectiveness of the funding program

    - - - -

    2. External funding in the NEAR Ecosystem

    - - - -

    3. Ecosystem highlights

    - - - -
    - - - -

    1. Grant data

    - - - -

    1.1. Approved Grant Program data

    - - - -

    Data reflects projects that have applied for a Grant via the Grants Program and that have been signed by the NEAR Foundation during the month of September (01.09.2022 to 30.09.2022).

    - - - -

     *Note: all applications have been processed.

    - - - -

    General Grant data

    - - - -
    Applications received*   📥Grant Agreements  signed  ✅Conversion rateAverage Grant amount Committed amount in dollars 💵
    1392517%$78 K$1.9  M
    - - - -

    Grant tracks**

    - - - -
    Activation (up to $10 K)5
    Small Builder (up to $25 K)4
    Builder (up to $50 K)11
    Advanced Builder (up to $100 K)4
    Partner ($ ∞)2
    - - - -

    ** Please note that our current grant tracks have been updated. For more information please have a look at our updated grant tracks.

    - - - -

    Grants per category 

    - - - -

    Gaming / Metaverse – 7

    - - - -

    Infrastructure / Wallets – 6

    - - - -

    NFTs – 4

    - - - -

    Other – 4

    - - - -

    Social Impact – 2

    - - - -

    Institutional / Financial – 2

    - - - -

    Grants per country (Top 5)

    - - - -

    United States – 8

    - - - -

    United Kingdom – 2

    - - - -

    Switzerland – 2

    - - - -

    Malaysia – 2

    - - - -

    Ukraine – 1

    - - - -
    - - - -

    1.2. Grant highlights 

    - - - -

    This section provides highlights of grants that have been signed during the month.

    - - - -

    Gaming / Metaverse projects 

    - - - -
    NameWebsiteGrant trackLocation 
    ArcneswebsiteAdvanced BuilderPoland
    BonuzwebsiteAdvanced BuilderDubai
    ArheadwebsiteBuilderUnited Arab Emirates
    BearversewebsiteBuilderUnited States
    Gameplace by ZomboDuckswebsiteBuilderIsrael
    JoystickwebsiteSmall BuilderNigeria
    Open character creatorwebsiteActivationUnited States
    - - - -

    Infrastructure / Wallets projects 

    - - - -
    NameWebsiteGrant trackLocation 
    OnMachinawebsitePartnerUnited States
    Meteor WalletwebsiteBuilderMalaysia
    VerisoulwebsiteBuilderUnited States
    near.js – /Small BuilderUkraine
    Java-SDK part 3websiteSmall BuilderSwitzerland
    Tonana Bridge & ConnectorswebsiteActivationCzech Republic
    - - - -

    Institutional / Financial projects 

    - - - -
    NameWebsiteGrant trackLocation 
    Defolio/PartnerUnited Kingdom
    Near Access/ActivationUnited States
    - - - -

    Social Impact projects 

    - - - -
    NameWebsiteGrant trackLocation 
    BeeTogetherwebsiteBuilderSwitzerland 
    GRVTYwebsiteBuilderUnited Kingdom
    - - - -

    NFT’s projects 

    - - - -
    NameWebsiteGrant trackLocation 
    NEAR NFT DAOwebsiteBuilderUnited States
    NakshwebsiteSmall BuilderIndia
    3six9 NFT MarketplacewebsiteActivationMalaysia
    Solar DexwebsiteActivationUnited States
    - - - -

    Other projects 

    - - - -
    NameWebsiteGrant trackLocation 
    Three0websiteBuilderUnited States
    NextHollywoodwebsiteBuilderUnited States
    CrowdclasswebsiteBuilderPortugal
    Alpha LeaksActivationAustralia
    - - - -

    1.3 Completed Projects & Milestone data 

    - - - -

    Grant agreements are structured with milestones. Depending on the selected grant track, a grant can have from 1 to 5 milestones. For more information the funding team invites you to explore our milestone guide

    - - - -
    Projects having completed a milestone  ☑️61
    Projects having completed final milestone 13
    - - - -

    Projects completed per category 

    - - - -

    Gaming / Metaverse – 1

    - - - -

    Infrastructure / Wallets – 5

    - - - -

    NFTs – 1

    - - - -

    DAOs – 3

    - - - -

    Other – 3

    - - - -

    Gaming / Metaverse

    - - - -
    Alien Esports Industrywebsite BuilderUnited States
    - - - -
    Alien Esports Industry is a  platform to hold esports tournaments with integrated game mechanics that provide unique opportunities to gamers.
    - - - -

    Infrastructure / Wallets 

    - - - -
    KuutamowebsiteAdvanced BuilderDenmark
    - - - -
    Kuutamo is building out an enterprise-grade staking node management and reporting system dedicated to support NEAR and NEAR-affiliated networks. Kuutamo will provide practical tooling to enable individuals and organizations to operate secure, honest, and profitable validators in a straightforward way. 
    - - - -
    BlockperkswebsiteAdvanced BuilderUnited Kingdom
    - - - -
    Blockperks is building a complete Web3 infrastructure and NFT marketplace for brands, artists, and creators to successfully bridge from Web2 to Web3 with NEAR. Blockperks provides the platform architecture and an adaptive social media dApp so that organizations, clients, and end-users can easily onboard and tokenize assets through the creating and trading of NFT’s. 
    - - - -
    Solace ProtocolwebsiteActivationIndia
    - - - -
    Solace is a program (smart-contract) based non-custodial wallet for NEAR which eases user’s onboarding and enhances security using social recovery, written in Rust.
    - - - -
    Emblem VaultwebsiteBuilderUnited States
    - - - -
    Emblem Vault is an application that collects the value of a portfolio within a token, you can also add non-blockchain assets to the portfolio.
    - - - -
    Java SDK – Part 3websiteSmall BuilderSwitzerland
    - - - -
    From the team who delivered the Java-API part 1/2 and that took over the Borshj for maintenance. This time they would like to further enhance the Java API and implement services to create accounts, manage additional reward structure, and call other smart contracts methods.
    - - - -

    NFTs

    - - - -
    NFT Marketplace for Science IPswebsite Advanced BuilderUnited States
    - - - -
    NFT Marketplace for Science IPs is building a NFT marketplace for science IPs on top of our data & AI ecosystem platform, for which the project  innovates with smart contracts for best services to scientists worldwide.
    - - - -

    DAOs

    - - - -
    Deep Skillswebsite BuilderBritish Virgin Islands
    - - - -
    Deep Skills aims to diverse options of how current organizations recruit, educate, and coordinate talented individuals.
    - - - -
    Gydewebsite BuilderUnited States
    - - - -
    Gyde connects users with helping services that they are looking for. The DAO provides incentives via a token to allocate to reviewers on the platform. The DAO also acts as a data provider selling to governments and think tanks driving incentives for power users.
    - - - -
    NEAR Alexandriagithub BuilderBrazil
    - - - -
    NEAR Alexandria Is building the largest virtual library for NEAR content and academic content. The team will use metabuilders, meta designers, NEAR DAO council members and academics to build the virtual building, the objects, and the links from all the real books, papers, articles and texts in general that will be in the library.
    - - - -

    Other

    - - - -
    Vital Point AIwebsite BuilderCanada
    - - - -
    Vital Point AI is focused on open-source blockchain development using NEAR Protocol. With a proven record of delivering quality tutorials and dedication to the NEAR ecosystem, helping scale Vital Point Academy will benefit NEAR and the ecosystem in various ways.
    - - - -
    Aerxwebsite BuilderRussia
    - - - -
    A decentralized modular social network where any user can own their content according to the create2eart principle.
    - - - -
    NEAR NYCwebsite BuilderUnited States
    - - - -
    NEAR NYC is a dedicated NEAR community in NYC that will scale NEAR awareness and education by organizing bi-weekly meetups, managing localized social media accounts (Twitter, Telegram, Instagram, Meetup, Eventbrite), establish partnerships with community leaders, and organizing a NEAR NYC hacker house.
    - - - -

    1.4 Effectiveness of the funding program  

    - - - -

    Total external funding (overall amount) came from projects that have received a grant (around 44%).

    - - - -
    - - - -

    2. External funding in the NEAR Ecosystem

    - - - -

    This section provides information about external funding in the NEAR ecosystem

    - - - -
    • 12 closed projects in Q3 ‘22 – ($92.2M)
    • 4 finalizing rounds
    • 18 new fundraising processes kicked off 
    • 38 VC intros made
    • Closed Rounds (September data)
      • Sender Wallet Raised a $4.5M private round led by Pantera Capital with participation from Crypto.com, Jump, Amber Group, Woo Network, SevenX Ventures, Shima Capital, and others.
      • HillridgeRaised a $2.3M seed round to address climate protection in the agriculture industry with their Insurtech solution building on NEAR.
    - - - -
    • Closed Rounds (Q3 data)
      • Portalverse Networkraised a multi-million $ seed round with participation from Big Brain Holdings, 2Moon Capital, and Cogitent Ventures to bring the first decentralized cloud gaming and rendering network to the NEAR ecosystem.
      • Scorefam – secured a capital commitment of up to $25M from GEM Digital to expand their gaming NFT suite of products.
      • Token Terminal – raised $6.5M to expand their crypto asset data coverage, which will soon include NEAR Protocol and NEAR ecosystem projects.
      • Mystiko.Network – raised a $10M round this past month. Mystiko received a grant from NEAR Foundation to support NEAR through their transaction privacy layer.
      • Sweat Economyraised $13M in funding including a private token sale, to accelerate their move into Web3.
      • Nicheclosed a $1.8M pre-seed to bring decentralized social media to NEAR.
      • Aurigamiraised $12M in token rounds earlier this year to continue to grow DeFi on Aurora.
      • Play Ember – just closed a $1.4M token seed round to bring mobile gaming to NEAR. The team is currently exploring an equity round at this moment as well. 
    - - - -
    - - - -

    3. Ecosystem highlights  

    - - - -

    NEARWEEK is the one-stop-shop for all NEAR related news. Each weekly newsletter and edition is made possible via news contributions from the NEARWEEK community to the NEWS DAO. Subscribe or visit NEARWEEK.com to get your weekly dose of news from the NEARverse!

    - - - -

    For the month of September we invite you to read through the following newsletters : 

    - - - -

    Newsletter 74 

    - - - -

    Newsletter 75 

    - - - -

    Newsletter 76

    - - - -

    Newsletter 77 

    - - - -
    - - - -

    If you are interested in getting funded : 

    - - - - -

    The post NEAR Foundation Funding Team Report: September 2022 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Refer-and-Earn 2022 Q2 Report  - /blog/refer-and-earn-2022-q2-report/ - - - Wed, 12 Oct 2022 14:00:00 +0000 - - - /?p=18623 - - NEAR’s ever-growing and engaged community is one of the ecosystem’s greatest strengths. Remember the NEAR Foundation Grants team’s Refer-and-Earn bonus …

    -

    The post Refer-and-Earn 2022 Q2 Report  appeared first on NEAR Protocol.

    -]]>
    - NEAR’s ever-growing and engaged community is one of the ecosystem’s greatest strengths. Remember the NEAR Foundation Grants team’s Refer-and-Earn bonus scheme? A number of NEAR community members participated in Refer-and-Earn in early 2022, resulting in grants for dozens of exciting projects currently building on the NEAR ecosystem.  

    - - - -

    To demonstrate the power of the NEAR community, the Grants team just published its Refer-and-Earn Q2 2022 Report. Let’s take a look at the qualified projects currently building without limits that emerged from the Grants team’s Refer-and-Earn program. 

    - - - -

    Refer-and-Earn: Q2 Qualified Projects

    - - - -

    The NEAR ecosystem is the beneficiary of a number of your recommendations and referrals. A total of 26 quality projects emerged from Refer-and-Earn—each aligning with the NEAR Foundation’s Grants program objectives. 

    - - - -

    In no particular order, here are the Q2 2022 qualified projects: 

    - - - -
    1. Ref finance 
    2. Roco Finance 
    3. Lazy Learning
    4. Noft Games 
    5. Atocha Protocol 
    6. Bast.gg
    7. Omnia Defi
    8. KwikTrust
    9. BlockHealth 
    10. Marnotaur
    11. Exxaverse 
    12. Mambo Heritage
    13. NEAR mates 
    14. NFT Design Work 
    15. The Gorilla Squad
    16. Pawn Protocol 
    17. PureFi
    18. Solely NFT 
    19. Kyoto protocol 
    20. Deepwaters
    21. Bumper Finance 
    22. Dojo Finance 
    23. Loozr 
    24. bit brawl
    25. Blockperks
    26. Boundless Pay
    - - - -

    The Grants team has reached out to all Refer-and-Earn referrers. Thanks to your help and support, the Grants team is able to support innovative projects such as those listed above. 

    - - - -

    Start referring projects to NEAR Grants today

    - - - -

    The Grants team would like to extend an invite to those yet to participate in the Refer-and-Earn program. To get started, head over to the NEAR Grants Program Referral Initiative page

    - - - -

    Please note that only projects receiving a grant directly from NEAR Foundation will be eligible for the Refer-and-Earn bonus. Only the first recorded referral will be paid out—duplicate records will not be considered. NEAR Foundation no longer supports DeFi-related projects. 

    - - - -

    All referrals are calculated at the end of each quarter and only eligible referrals will be contacted. 

    - - - -

    Please contact grants@near.foundation for additional information or inquiries.

    -

    The post Refer-and-Earn 2022 Q2 Report  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR After NEARCON In Numbers - /blog/near-after-nearcon-in-numbers/ - - - Fri, 30 Sep 2022 13:00:00 +0000 - - - - /?p=18573 - - Anyone who made the trip to Lisbon for NEARCON 2022, or tuned in via the YouTube livestream or Twitter, knew …

    -

    The post NEAR After NEARCON In Numbers appeared first on NEAR Protocol.

    -]]>
    - Anyone who made the trip to Lisbon for NEARCON 2022, or tuned in via the YouTube livestream or Twitter, knew NEARCON was a smashing success. The vibe was something to behold. From devs and builders to other visionaries and champions of NEAR, NEARCON showcased the ecosystem and community at its very best—with boundless energy for creating without limits. 

    - - - -

    This is an energy that was also palpable to the press. Everything came together to produce  awe-inspiring momentum that is being sustained well beyond NEARCON’s aftermath.

    - - - -

    Let’s take a look at NEAR by the numbers in the wake of NEARCON to see just how the NEAR community is building without limits. 

    - - - -

    20M Accounts and 200M Transactions 

    - - - -

    Coming out of NEARCON, the total amount of NEAR accounts hit a new high of 20 million. To be sure, this was an ecosystem and community effort. But Sweat Economy, who presented at NEARCON, is responsible for onboarding 14 million new users into the NEAR ecosystem with their move-to-earn app. That’s 20x growth since this time last year! 

    - - - -

    Thanks to NEAR’s Nightshade sharding—Phase 1 of which was announced at NEARCON—this onboarding of the masses unfolded without a hitch. This example of NEAR’s infinite capacity is proof that it can welcome millions more users across the 800+ apps running on the protocol.

    - - - -

    Earlier this month, NEAR also hit a new milestone of 200 million on-chain transactions. Next up? 250 million. The ecosystem is growing by leaps and bounds, and doing so in a crypto winter. 

    - - - -

    21 Global Media Partners

    - - - -

    NEARCON was a major hit this year with members of the international press.  All told, the conference attracted 21 global media partners, with CoinDesk leading the pack as NEAR’s top tier sponsor.  

    - - - -

    Other major media outlets joined NEAR from around the world, including Cointelegraph, the Defiant, Coinpost Japan, W3volution Spain, and Business Insider Africa. 

    - - - -

    Over 250 Pieces of Media Coverage

    - - - -

    Naturally, with so many global media partners, there is quite a lot of great news to share. Seven NEAR announcements and five partnership stories were pushed out to the global media.  All together these ecosystem stories attracted 256+ pieces of coverage including a fantastic show roundup video by CryptoBanter, a hugely influential crypto YouTube channel that has over half a million subscribers. 

    - - - -

    While US media outlets led with most of the NEARCON coverage, NEAR’s flagship conference also saw consistent reporting from media in India, Korea, Vietnam and beyond. 

    - - - -

    Media Coverage Breakdown by Country

    - - - -
    1. Africa – 5 pieces of coverage
    2. Brazil – 5 pieces of coverage
    3. China – 5 pieces of coverage
    4. French – 8 pieces of coverage
    5. German – 2 pieces of coverage
    6. Italy – 4 pieces of coverage
    7. India – 18 pieces of coverage
    8. Japan – 2 pieces of coverage
    9. Korea – 11 pieces of coverage
    10. Spain – 5 pieces of coverage 
    11. UK – 12 pieces of coverage
    12. US – 25 pieces of coverage
    13. Vietnam – 5 pieces of coverage
    14. Global – 150+pieces of coverage
    - - - -

    $100M Entertainment Fund

    - - - -

    Perhaps the biggest story to come out of NEARCON was the launch of NEAR’s $100 million entertainment fund. It captivated the press, appearing in coverage from international news outlets such as CoinDesk, International Business Times, Journal Du Coin France, China’s leading crypto title Panony , CoinPost Japan and Coin Press Korea.

    - - - -

    And rightly so. By partnering with Caerus for this new $100 VC Fund and Lab, NEAR will help push new Web3 innovation in culture, media, and entertainment. This fund now places NEAR at the forefront of changing how creative projects are financed, produced, and distributed, as well as how it’s consumed, owned, and monetized. 

    - - - -

    11 Visionary ‘Women of Web3 Changemakers’

    - - - -

    Another big campaign launched at NEARCON—the Women of Web3 Changemakers. A partnership with Forkast News, thisinitiative celebrated 11 exceptional women shaping the future of Web3. 

    - - - -

    The campaign attracted a great deal of interest from a global audience, with mentions in CoinDesk, Fintech Finance, and Yahoo Finance.  

    - - - -

    NEAR Digital Collective (NDC) and Phase 1 Sharding announcements

    - - - -

    NEAR Co-founder Illia Polosukhin gave an exclusive interview with CoinDesk about the NEAR Digital Collective (NDC). This interview was syndicated in various media outlets across Africa, Brazil, and China.  

    - - - -

    CoinDesk also covered NEAR’s Phase 1 Sharding news, which made significant waves in the developer community as well as international headlines. Meanwhile, Pagoda announced their Pagoda Console—a ‘one stop’ tool shop that gives devs all the kit they need to build Web3 apps. 

    - - - -

    NEAR hubs launch in India and Vietnam

    - - - -

    NEARCON also witnessed the launch of two major regional hubs—Vietnam and India.  NEAR Foundation worked closely with the Vietnamese press to amplify the story locally, and with great success. Vietnam’s major tech titles covered the announcement, including Zing news.

    - - - -

    NEAR Foundation replicated this approach with India’s media outlets, garnering coverage in major titles such as YourStory, the local equivalent of TechCrunch. Interviews were also secured with Reuters, Bloomberg and Times of India. 

    - - - - - - - -

    NEAR Foundation pushed out announcements on Tether (USDT) going live on NEAR, Sender Wallet’s $3.5 million funding round, and Few and Far’s ambition to grow the NEAR NFT ecosystem. There were also announcements for NEAR’s partnership with Fireblocks, which will bring innovative crypto technologies to new global institutional investors, and SWEAT Economy’s tokenomics

    - - - -

    As with many of the other stories and announcements from NEARCON, these stories had mass global appeal. Coverage could be found in The Block, CointelegraphForbes India, and  CryptoTVPlus Africa.

    - - - -

    The sheer amount of positive press comes at a critical time for NEAR. The entire ecosystem and the wider Web3 world are building through a crypto winter but also battling other macroeconomic forces, post-Covid trauma, and climate change. It’s a time for resilience and creativity in how the NEAR and Web3 communities rethink and refashion the internet, and more importantly, the world. 

    - - - -

    NEARCON demonstrated to the people across the globe that the protocol, ecosystem, and community will not be deterred. Builders and investors are still flocking to NEAR to build the next generation of decentralized apps. 

    - - - -

    This is what creating without limits looks like. And it’s just the beginning!

    -

    The post NEAR After NEARCON In Numbers appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/statistics/index.html b/public/blog/tag/statistics/index.html deleted file mode 100644 index 3039346b7..000000000 --- a/public/blog/tag/statistics/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Statistics Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/sustainability/feed/index.xml b/public/blog/tag/sustainability/feed/index.xml deleted file mode 100644 index baa94bae8..000000000 --- a/public/blog/tag/sustainability/feed/index.xml +++ /dev/null @@ -1,237 +0,0 @@ - - - - Sustainability Archives – NEAR Protocol - - /blog/tag/sustainability/ - - Thu, 20 Jul 2023 15:12:17 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Sustainability Archives – NEAR Protocol - /blog/tag/sustainability/ - 32 - 32 - - - NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris - /blog/near-at-ethcc-highlights-sustainability-and-the-bos-take-center-stage-in-paris/ - - - Thu, 20 Jul 2023 17:00:00 +0000 - - - - - - - /?p=20742 - - Missed out on NEAR’s rendezvous at ETHCC 2023 in Paris? No need to worry. In this roundup, all NEAR enthusiasts …

    -

    The post NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris appeared first on NEAR Protocol.

    -]]>
    - Missed out on NEAR’s rendezvous at ETHCC 2023 in Paris? No need to worry. In this roundup, all NEAR enthusiasts can catch up on the enlightening presentations by BOS, Web3, and blockchain experts. You’re in the perfect place to delve into notable announcements made during the conference, from NEAR signing up to the Ethereum Climate Platform to an epic new interactive Polygon zkEVM app dashboard.

    - - - -

    ICYMI, it’s time to dive into all the key speeches, events, and announcements that unfolded in the City of Lights over this past weekend.

    - - - -

    Interactive Polygon zkEVM app dashboard launches on the BOS

    - - - -

    In the most significant partnership announcement of ETHCC, an interactive Polygon zkEVM app dashboard has launched on the Blockchain Operating System (BOS). This integration will not only increase accessibility and discoverability for zkEVM developers and users on the open web but also vastly improve user experience. 

    - - - -

    The collaboration is set to accelerate the creation of dApps that will onboard billions of users into the open web. The new Polygon zkEVM dashboard now combines the benefits of zero-knowledge technology with the power of the BOS to unlock even more seamless onboarding to the open web. 

    - - - -

    The dashboard brings a new suite of zero knowledge development capabilities to zkEVM developers and lets them build apps that can reach more users from day one. It’s a groundbreaking partnership that brings together the NEAR and Polygon ecosystems, two of the most innovative names in Ethereum and blockchain scalability.

    - - - -

    NEAR makes waves with sustainability commitment

    - - - -

    NEAR Foundation made a significant stride in its commitment to Web3 sustainability. As part of its ongoing efforts, NEAR signed up to the Ethereum Climate Platform, demonstrating its resolve towards minimizing the environmental impact of Web3 development. This move aligns with NEAR’s ethos and commitment to sustainable and scalable blockchain solutions.

    - - - -

    Marieke storms the BOS-tille at “Funding the Commons”

    - - - -

    Adding to the list of notable NEAR occurrences during ETHCC, NEAR Foundation CEO, Marieke Flament, was a keynote speaker at the “Funding the Commons” event held at Sorbonne Université on July 15. Marike’s message was one of bringing more ethics and equity to the entire blockchain and Web3 ecosystem.

    - - - -

    In her speech, titled “The Open Web is NEAR: How the BOS, NDC, and DAOs are creating a Decentralized Web,” Marieke explored how NEAR Foundation serves the ecosystem by building public goods like the BOS, DevHub, NDC, DAOs, and more. 

    - - - -

    “Funding the Commons” is an event designed to complement the Ethereum Community Conference, promoting connection amongst participants, and fostering new collaborations and projects. The event organizers also planned a dinner on July 15 at Le Procope Paris, where Marieke was among the most notable invited guests.

    - - - -

    Unpacking Insights: notable talks and events at ETH CC

    - - - -

    Near @ ETHCC wasn’t just a gathering of blockchain enthusiasts, but a hotbed of innovative discussions. Illia Polosukhin, co-founder of NEAR, and Nadir Dabit’s conversation around decentralized social networks piqued particular interest. They hinted at a shift in how we’ll connect and share information in the future and the potential role of decentralized social on the BOS.

    - - - -

    Matt Stephenson, head of crypto economics at crypto investment firm, Pantera Capital, took the audience on a thrilling Day Two journey through the intricacies of behavioral game theory. He showcased how game theory could be leveraged in this space, offering a unique lens to examine, understand, and potentially predict blockchain trends.

    - - - -

    Near @ ETHCC didn’t skimp on forward-looking conversations either. A panel featuring Max Mersch of Fabric Ventures, Maggie Love from SheFi, and Bilal El Alamy of PyratzLabs posed a pertinent question: “What’s the Next Big Use Case Being Built in the Bear Market?” Each speaker provided valuable insight about both challenges and opportunities posed by bear markets.

    - - - -

    Ecosystem Updates

    - - - -

    Despite the focus on the Near @ ETHCC side event itself, the NEAR ecosystem saw significant developments and milestones during the past few days.

    - - - -
      -
    • The NEAR Digital Collective’s I-AM-HUMAN movement has crossed 2,000 members in the NEAR ecosystem. The initiative allows users to vote, elect candidates for office, and shape the future of NEAR. You can sign up here.
    • - - - -
    • MintbaseSearch has gone live on NEAR mainnet along with its own ChatGPT plugin. Mintbase now enables users to ask anything about NFTs on the NEAR Protocol. More details here.
    • - - - -
    • Opolis has raised $6.6M in a bridge fundraising round with support from NEAR Foundation, Polygon Ventures, and Draper Capital. Read more details about the full announcement here.
    • - - - -
    • Black Snow: Battle For Earth, launched its demo version, offering an exciting free-to-play-and-earn experience that aims to enhance the NEAR ecosystem by boosting user count and transactions. Check out the demo here
    • -
    - - - -

    C’est la vie in Paris as ETHCC 2023 wraps up. As we reflect on these dynamic days, it’s clear that the future of NEAR and the BOS is exciting and full of potential. From environmental commitments to bold collaborations and fascinating talks, NEAR’s Parisian journey was full of engagement, enlightenment, and enthusiasm for everyone involved.

    -

    The post NEAR at ETHCC Highlights: Sustainability and the BOS Take Center Stage in Paris appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Signs Up to the Ethereum Climate Platform  - /blog/near-foundation-signs-up-to-the-ethereum-climate-platform/ - - - Mon, 17 Jul 2023 14:00:00 +0000 - - - - - /?p=20728 - - NEAR Foundation is thrilled to announce that it is signed up to the Ethereum Climate Platform. The Foundation has worked …

    -

    The post NEAR Foundation Signs Up to the Ethereum Climate Platform  appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is thrilled to announce that it is signed up to the Ethereum Climate Platform. The Foundation has worked on making the NEAR Protocol and open web sustainable from the get-go, and this move is a major demonstration of that continued commitment to Web3 sustainability. 

    - - - -

    The announcement also illustrates NEAR Foundation’s efforts at working collaboratively with globally recognized leaders to minimize the environmental impact of Web3 development. 

    - - - -

    Ethereum Climate Platform: accelerating climate finance at scale

    - - - -

    At COP27, ConsenSys and climate tech firm Allinfra convened and announced the Ethereum Climate Alliance. A group of technology companies, the ECA is aligned around the mission to accelerate decarbonization and scale climate action. It achieves this by deploying best-in-class technology and funding the development of digital environmental assets designed to mitigate greenhouse gas emissions and deliver positive environmental and social impact well into the future.

    - - - -

    Inspired by the Ethereum Merge, ECA is launching the Ethereum Climate Platform (ECP) — an initiative designed to collaboratively build a blockchain-based technology platform that will engage a decentralized community to accelerate climate finance at scale. The ECP is committed to redress and counteract the historical Ethereum-based carbon footprint, dating back to the network’s launch in 2015, as well as to accelerate the launch partners’ own decarbonization strategies.

    - - - -

    NEAR as a sustainability model for ECP and beyond

    - - - -

    By joining the ECP, NEAR Foundation is making clear its intention to act as a sustainability model to the broader tech and business community.  

    - - - -

    The collective includes a still-growing list of prominent stakeholders from the Web3 ecosystems, including Laser Digital (Nomura), Microsoft, Polygon, The Climate Collective, Celo, Aave, Filecoin, and UPC Capital Ventures. Beyond open web ecosystem, the ECP also includes civil society leaders who are committed to mitigating human-driven climate change.

    - - - -

    NEAR Foundation’s environmental stewardship is an integral part of its ethos. From inception, NEAR has focused on a computational alternative to PoW. 

    - - - -

    In this system, known as Proof-of-Stake (PoS), there are no miners. Instead, validators stake a given token amount to allow themselves to take part. PoS blockchains incentivize communities to own and control the network. Only then can they validate blocks and collect a block award. Functionally, NEAR’s PoS, called Nightshade, allows the platform to realize its ambition of being simple, scalable, and secure. 

    - - - -

    NEAR sustainability a cornerstone to mass Web3 adoption

    - - - -

    From the outset, NEAR Foundation has been dedicated to bringing a billion users into a more open web, said NEAR Foundation CEO, Marieke Flament. 

    - - - -

    “We recognised early on that sustainability would be a cornerstone of our approach to facilitating the widespread adoption of Web3 technologies,” Flament added. “By aligning with the Ethereum Climate Platform and implementing our Blockchain Operating System (BOS), we’re not just enhancing the user experience — we’re creating a paradigm shift in the blockchain industry that respects and supports our global environment.”

    - - - -

    On a social and ecological level, NEAR’s Nightshade sharding approach allows NEAR Foundation to deliver on its carbon-neutral commitment. In 2021, NEAR Protocol was awarded the Climate Neutral Product Label, and its developers have been leading the charge in this era of extraordinary energy efficiency, creating an infrastructure that is lightning-fast, remarkably secure, and capable of accommodating millions of Web3 users.

    - - - -

    NEAR Protocol achieved this after enlisting South Pole, a globally recognized climate solutions provider based in Zurich, Switzerland, to evaluate NEAR’s carbon footprint, find ways to reduce it, and counterbalance the remaining emissions with CO2 offsetting initiatives. The assessment revealed that NEAR Protocol was over 200,000 times more carbon efficient than Bitcoin, primarily due to the adoption of PoS over PoW.

    - - - -

    Reforestation projects offset the minimal environmental impact of NEAR, rendering the NEAR Blockchain carbon neutral. Performing transactions on NEAR contributes to tree-planting initiatives in Colombia, Zimbabwe, and the United States via these carbon-offsetting projects.

    - - - -

    “Having NEAR Foundation onboard this endeavor strengthens our joint mission significantly,” said Bill Kentrup, Executive Director of ECA. “Through persistent collective effort, we can bring to market climate finance tools that will accelate capital into climate-aligned assets and in turn,  significantly mitigate greenhouse gasses.” 

    - - - -

    “As a fellow pioneer in the Web3 space, their participation is invaluable,” said Kentrup, “and we’re sincerely excited about the potential this partnership holds for the future.”

    -

    The post NEAR Foundation Signs Up to the Ethereum Climate Platform  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/sustainability/index.html b/public/blog/tag/sustainability/index.html deleted file mode 100644 index fb9fadff7..000000000 --- a/public/blog/tag/sustainability/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Sustainability Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/sweat-economy/feed/index.xml b/public/blog/tag/sweat-economy/feed/index.xml deleted file mode 100644 index 307d15d3b..000000000 --- a/public/blog/tag/sweat-economy/feed/index.xml +++ /dev/null @@ -1,235 +0,0 @@ - - - - Sweat Economy Archives – NEAR Protocol - - /blog/tag/sweat-economy/ - - Tue, 17 Oct 2023 13:15:24 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Sweat Economy Archives – NEAR Protocol - /blog/tag/sweat-economy/ - 32 - 32 - - - Sweat Economy Launches in the USA, Opening the Door to Millions of New Web3 Users  - /blog/sweat-economy-launches-in-the-usa-opening-the-door-to-millions-of-new-web3-users/ - - - Tue, 17 Oct 2023 14:00:00 +0000 - - - - - - /?p=20973 - - Sweat Economy, creators of $SWEAT and leaders in helping the world become more active, is launching in the United States …

    -

    The post Sweat Economy Launches in the USA, Opening the Door to Millions of New Web3 Users  appeared first on NEAR Protocol.

    -]]>
    - Sweat Economy, creators of $SWEAT and leaders in helping the world become more active, is launching in the United States for the first time. 

    - - - -

    The decision to expand into the new territory was supported by a historic on chain vote by the Sweat Economy Community, and saw more than 380,000 community members take part in the decision. 

    - - - -

    The announcement will pave the way for millions of users in the United States, the Bahamas, Barbados, Botswana, Ghana, Jamaica, Pakistan, Zimbabwe, and Uganda, to be able to tokenize their physical activity within the Sweat Economy ecosystem — adding momentum to the burgeoning global movement economy. 

    - - - -

    Sweat Economy is a Web3 evolution of the Web2 health & fitness app — Sweatcoin — which now has more than 145 million registered users worldwide. It started in September 2022 when the project launched its crypto token $SWEAT alongside the Sweat Wallet mobile app. $SWEAT is effectively a tokenized form of physical activity; a new asset class that did not exist up to this moment, while Sweat Wallet is the mobile application that gives you the best experience of collecting and managing your $SWEAT. To start minting $SWEAT, users need to install the Sweatcoin app,  opt-in to “Walk into Crypto” and then install the Sweat Wallet app. 

    - - - -

    This means that instead of earning centralized sweatcoin points, users earn $SWEAT — a crypto token that represents the value of their physical activity and is traded on 20+ exchanges worldwide. Accrued $SWEAT can then be used in various ways, including deposited into “Growth Jars” to be saved and multiplied, and unlock exclusive rewards within the ecosystem. Users can also compete in the free-to-play Sweat Hero NFT game to win additional $SWEAT, while also having the option to purchase $SWEAT in-app using the MoonPay fiat on-ramp 

    - - - -

    “It’s incredible to see the progress of Sweat Economy as it enables us to achieve our mission to bring millions into the open web,” says Chris Donovan, CEO of the NEAR Foundation. 

    - - - -

    “As an industry leader in tokenizing physical activity, Sweat Economy’s launch into the U.S. represents a major milestone not just for the project, but for the entire NEAR ecosystem. It also demonstrates the incredible scalability of the NEAR Protocol, which has been able to seamlessly support one of the largest consumer apps in Web3 operating at a significant scale.”

    - - - -

    Since $SWEAT launched on NEAR Protocol, it has become one of the largest Dapps in the Web3 ecosystem, with more than 20 million wallets and more than 100,000 transactions per day. The Sweat Wallet app quickly became the number one most downloaded Finance app in more than 50 countries. This follows Sweat’s success as the fastest IDO ever to sell out on the DAO Maker platform. It has become one of the largest Web3 on-ramps in history. 

    - - - -

    “We are thrilled to finally bring the Sweat Economy experience to the United States and 8 other markets. Our community was making it loud and clear that they wanted and needed us there and we are happy that we finally can deliver for them,” says Oleg Fomenko, co-founder of Sweat Economy.

    - - - -

    “We are excited that residents of these countries will also be able to literally WALK INTO CRYPTO! Our global community of users has been instrumental in supporting this launch and we are thankful for their participation in the biggest ever governance vote that allocated nearly 700 million $SWEAT to the new community members in consideration for their verified physical activity. By expanding into these markets, we aim to inspire a new wave of physical activity and incentivize individuals to lead healthier lives, while paving the way for the next billion users looking to participate in the movement economy.”

    - - - -

    Sweat Economy’s announcement is another milestone as the NEAR community works hard to onboard one billion users to Web3. By choosing to build on NEAR, Sweat Economy will be well placed to leverage the protocol’s incredibly secure and infinitely scalable sharding infrastructure — unlocking the opportunity to onboard millions of potential users into a burgeoning Web3 movement economy.

    - - - -

    If you have yet to join the economy of movement, head to your mobile app store and download the Sweatcoin and Sweat Wallet apps today and see how millions of people are earning crypto just by being physically active. Join NEAR and Sweat Economy in building a healthier collective future!

    -

    The post Sweat Economy Launches in the USA, Opening the Door to Millions of New Web3 Users  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Case Study: Sweat Economy’s Oleg Fomenko on Reshaping Fitness with Move-to-Earn - /blog/case-study-sweat-economys-oleg-fomenko-on-reshaping-fitness-with-move-to-earn/ - - - Mon, 12 Jun 2023 14:00:00 +0000 - - - - /?p=20618 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: Sweat Economy’s Oleg Fomenko on Reshaping Fitness with Move-to-Earn appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In recent installments, NEAR Foundation explored the BOS with Pagoda’s Chief Product Officer Alex Chiocchi, and heard from OnMachina co-founder Jonathan Bryce on building decentralized storage. 

    - - - -

    In the latest case study, Sweat Economy founder Oleg Fomenko talks about revolutionizing fitness with blockchain technology. Aside from talking about Sweat Economy’s integration with NEAR, Fomenko also talks about integrating the Sweat Wallet app with the BOS. With over 6 million active users, the Sweat Wallet is the most active dApp on NEAR. 

    - - - -

    Watch the Sweat Economy Case Study video below.

    - - - -

    Sweat Economy’s Learn & Earn program brings in over 200,000 users

    - - - -

    As part of its partnership with NEAR Foundation, Sweat Economy launched its Learn & Earn feature in the Sweat Wallet to educate users about Stablecoins and promote USDT on NEAR in the Sweat Wallet. 

    - - - -

    In Sweat Economy’s Learn & Earn Program, which ran from May 23-31, Sweat Wallet users were rewarded with 1 USDT by completing the “What are Stablecoins?”  lesson and an interactive quiz. In total, 100,000 USDT was given out as rewards in this initiative. In just 9 Days: 

    - - - -
      -
    • 245,048+ users started the lesson
    • - - - -
    • 218,789 users completed the lesson: 218,789
    • - - - -
    • 130,068 users completed the lesson & quiz: 
    • - - - -
    • 100,000+ users were rewarded with 1 USDT (by completing the lesson and passing the quiz within 6 attempts)
    • -
    - - - -
    - -
    -

    The post Case Study: Sweat Economy’s Oleg Fomenko on Reshaping Fitness with Move-to-Earn appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Get Ready to SWEAT: Learn and Earn with the Most Active NEAR dApp - /blog/get-ready-to-sweat-learn-and-earn-with-the-most-active-near-dapp/ - - - Thu, 25 May 2023 16:58:10 +0000 - - - - /?p=20537 - - The NEAR Foundation is thrilled to announce a new campaign with Sweat Economy that will educate individuals about the basics …

    -

    The post <br>Get Ready to SWEAT: Learn and Earn with the Most Active NEAR dApp appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation is thrilled to announce a new campaign with Sweat Economy that will educate individuals about the basics of Web3 – while also promoting healthier lifestyles. Users can now take part* in the latest Learn & Earn lesson in the Sweat Wallet app to earn USDT token simply by learning more about stablecoins.

    - - - -

    This Learn & Earn feature teaches users about the basics of Web3 and crypto through interactive content and quizzes. Launching the first Learn & Earn lesson is an essential step in the collaboration between Sweat Economy and NEAR Foundation, leveraging Sweat Wallet’s 6M+ active user base to introduce more users into the NEAR ecosystem with incentives and seamless user experience.

    - - - -

    How Users can Learn & Earn with Sweat Wallet

    - - - -

    One of the most popular health & fitness applications, Sweatcoin has over 130 million users globally. Subsequently, the company launched Sweat Wallet last year, which runs entirely on the NEAR network and garnered 6M+ active users in less than one year’s time, since September 2022. Additionally, Sweat Wallet has been the one of the top dApps on DappRadar in terms of unique active wallets. As a result of this initial partnership, more than 20 million Near wallets were created.

    - - - -

    Learn & Earn is the latest endeavor to take the Movement Economy to the next level. In the first lesson of our partnership, users will be rewarded with USDT by completing the What are Stablecoins? lesson and an interactive quiz. In total, 100,000 USDT will be given out as rewards in this initiative.

    - - - -

    The community’s feedback on potential Learn & Earn topics will also be avidly sought out on Sweat Economy’s Twitter. This will provide a knowledge-compounding effect about Web3 and crypto within the SWEAT community and fitness enthusiasts in general. 

    - - - -

    The Sweat Wallet app is available in most countries now and it is launching in the United States on 12 September 2023. 

    - - - -

    “With the majority of our community being new to blockchain and crypto, we are excited to be enabling users to walk into crypto literally, and also giving them the opportunity to acquire invaluable knowledge of how web3 works and get rewarded for it,” said said Oleg Fomenko, co-founder of Sweat Economy. “This partnership will give 100,000 people the experience of holding Tether on Near and engaging with many more dApps active in the Near ecosystem.”

    - - - -

    Sweat Wallet’s new Learn & Earn feature is a great way for crypto-curious to tap into the world of crypto, Web3, and NEAR. With the ability to earn tokens for learning and taking quizzes, users now have more reasons to stay engaged within the Sweat Wallet app and the NEAR ecosystem. 

    - - - -

    Disclosure: Please note that the announcement of the partnership between NEAR Foundation and Sweat Economy is for informational purposes only and does not constitute financial advice or any other professional advice. Nothing in this announcement or in any related communication should be taken as such. The partnership is intended to offer certain benefits or services to their respective customers or clients and does not provide any investment advice, recommendation, or endorsement of any financial product or service.

    - - - -

    Any decision to invest or engage in any financial activity should be made based on personal research and professional advice obtained from a licensed financial advisor or other qualified professional.

    - - - -

    NEAR Foundation and Sweat Economy do not assume any liability or responsibility for any investment or financial decision made by individuals or organizations based on this announcement or any related communication.

    - - - -

    By reading this announcement, you acknowledge and agree that you will not rely on it as financial advice and will not hold NEAR Foundation or Sweat Economy liable for any losses or damages arising from any such reliance.

    -

    The post <br>Get Ready to SWEAT: Learn and Earn with the Most Active NEAR dApp appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/sweat-economy/index.html b/public/blog/tag/sweat-economy/index.html deleted file mode 100644 index e38fbb1e4..000000000 --- a/public/blog/tag/sweat-economy/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Sweat Economy Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/sweat/feed/index.xml b/public/blog/tag/sweat/feed/index.xml deleted file mode 100644 index b8e9addf5..000000000 --- a/public/blog/tag/sweat/feed/index.xml +++ /dev/null @@ -1,167 +0,0 @@ - - - - SWEAT Archives – NEAR Protocol - - /blog/tag/sweat/ - - Tue, 13 Jun 2023 20:47:09 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - SWEAT Archives – NEAR Protocol - /blog/tag/sweat/ - 32 - 32 - - - Case Study: Sweat Economy’s Oleg Fomenko on Reshaping Fitness with Move-to-Earn - /blog/case-study-sweat-economys-oleg-fomenko-on-reshaping-fitness-with-move-to-earn/ - - - Mon, 12 Jun 2023 14:00:00 +0000 - - - - /?p=20618 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: Sweat Economy’s Oleg Fomenko on Reshaping Fitness with Move-to-Earn appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In recent installments, NEAR Foundation explored the BOS with Pagoda’s Chief Product Officer Alex Chiocchi, and heard from OnMachina co-founder Jonathan Bryce on building decentralized storage. 

    - - - -

    In the latest case study, Sweat Economy founder Oleg Fomenko talks about revolutionizing fitness with blockchain technology. Aside from talking about Sweat Economy’s integration with NEAR, Fomenko also talks about integrating the Sweat Wallet app with the BOS. With over 6 million active users, the Sweat Wallet is the most active dApp on NEAR. 

    - - - -

    Watch the Sweat Economy Case Study video below.

    - - - -

    Sweat Economy’s Learn & Earn program brings in over 200,000 users

    - - - -

    As part of its partnership with NEAR Foundation, Sweat Economy launched its Learn & Earn feature in the Sweat Wallet to educate users about Stablecoins and promote USDT on NEAR in the Sweat Wallet. 

    - - - -

    In Sweat Economy’s Learn & Earn Program, which ran from May 23-31, Sweat Wallet users were rewarded with 1 USDT by completing the “What are Stablecoins?”  lesson and an interactive quiz. In total, 100,000 USDT was given out as rewards in this initiative. In just 9 Days: 

    - - - -
      -
    • 245,048+ users started the lesson
    • - - - -
    • 218,789 users completed the lesson: 218,789
    • - - - -
    • 130,068 users completed the lesson & quiz: 
    • - - - -
    • 100,000+ users were rewarded with 1 USDT (by completing the lesson and passing the quiz within 6 attempts)
    • -
    - - - -
    - -
    -

    The post Case Study: Sweat Economy’s Oleg Fomenko on Reshaping Fitness with Move-to-Earn appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Get Ready to SWEAT: Learn and Earn with the Most Active NEAR dApp - /blog/get-ready-to-sweat-learn-and-earn-with-the-most-active-near-dapp/ - - - Thu, 25 May 2023 16:58:10 +0000 - - - - /?p=20537 - - The NEAR Foundation is thrilled to announce a new campaign with Sweat Economy that will educate individuals about the basics …

    -

    The post <br>Get Ready to SWEAT: Learn and Earn with the Most Active NEAR dApp appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation is thrilled to announce a new campaign with Sweat Economy that will educate individuals about the basics of Web3 – while also promoting healthier lifestyles. Users can now take part* in the latest Learn & Earn lesson in the Sweat Wallet app to earn USDT token simply by learning more about stablecoins.

    - - - -

    This Learn & Earn feature teaches users about the basics of Web3 and crypto through interactive content and quizzes. Launching the first Learn & Earn lesson is an essential step in the collaboration between Sweat Economy and NEAR Foundation, leveraging Sweat Wallet’s 6M+ active user base to introduce more users into the NEAR ecosystem with incentives and seamless user experience.

    - - - -

    How Users can Learn & Earn with Sweat Wallet

    - - - -

    One of the most popular health & fitness applications, Sweatcoin has over 130 million users globally. Subsequently, the company launched Sweat Wallet last year, which runs entirely on the NEAR network and garnered 6M+ active users in less than one year’s time, since September 2022. Additionally, Sweat Wallet has been the one of the top dApps on DappRadar in terms of unique active wallets. As a result of this initial partnership, more than 20 million Near wallets were created.

    - - - -

    Learn & Earn is the latest endeavor to take the Movement Economy to the next level. In the first lesson of our partnership, users will be rewarded with USDT by completing the What are Stablecoins? lesson and an interactive quiz. In total, 100,000 USDT will be given out as rewards in this initiative.

    - - - -

    The community’s feedback on potential Learn & Earn topics will also be avidly sought out on Sweat Economy’s Twitter. This will provide a knowledge-compounding effect about Web3 and crypto within the SWEAT community and fitness enthusiasts in general. 

    - - - -

    The Sweat Wallet app is available in most countries now and it is launching in the United States on 12 September 2023. 

    - - - -

    “With the majority of our community being new to blockchain and crypto, we are excited to be enabling users to walk into crypto literally, and also giving them the opportunity to acquire invaluable knowledge of how web3 works and get rewarded for it,” said said Oleg Fomenko, co-founder of Sweat Economy. “This partnership will give 100,000 people the experience of holding Tether on Near and engaging with many more dApps active in the Near ecosystem.”

    - - - -

    Sweat Wallet’s new Learn & Earn feature is a great way for crypto-curious to tap into the world of crypto, Web3, and NEAR. With the ability to earn tokens for learning and taking quizzes, users now have more reasons to stay engaged within the Sweat Wallet app and the NEAR ecosystem. 

    - - - -

    Disclosure: Please note that the announcement of the partnership between NEAR Foundation and Sweat Economy is for informational purposes only and does not constitute financial advice or any other professional advice. Nothing in this announcement or in any related communication should be taken as such. The partnership is intended to offer certain benefits or services to their respective customers or clients and does not provide any investment advice, recommendation, or endorsement of any financial product or service.

    - - - -

    Any decision to invest or engage in any financial activity should be made based on personal research and professional advice obtained from a licensed financial advisor or other qualified professional.

    - - - -

    NEAR Foundation and Sweat Economy do not assume any liability or responsibility for any investment or financial decision made by individuals or organizations based on this announcement or any related communication.

    - - - -

    By reading this announcement, you acknowledge and agree that you will not rely on it as financial advice and will not hold NEAR Foundation or Sweat Economy liable for any losses or damages arising from any such reliance.

    -

    The post <br>Get Ready to SWEAT: Learn and Earn with the Most Active NEAR dApp appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/sweat/index.html b/public/blog/tag/sweat/index.html deleted file mode 100644 index b5d31cfe4..000000000 --- a/public/blog/tag/sweat/index.html +++ /dev/null @@ -1,2 +0,0 @@ -SWEAT Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/sweatcoin/feed/index.xml b/public/blog/tag/sweatcoin/feed/index.xml deleted file mode 100644 index 3a96b9990..000000000 --- a/public/blog/tag/sweatcoin/feed/index.xml +++ /dev/null @@ -1,99 +0,0 @@ - - - - Sweatcoin Archives – NEAR Protocol - - /blog/tag/sweatcoin/ - - Tue, 17 Oct 2023 13:15:24 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Sweatcoin Archives – NEAR Protocol - /blog/tag/sweatcoin/ - 32 - 32 - - - Sweat Economy Launches in the USA, Opening the Door to Millions of New Web3 Users  - /blog/sweat-economy-launches-in-the-usa-opening-the-door-to-millions-of-new-web3-users/ - - - Tue, 17 Oct 2023 14:00:00 +0000 - - - - - - /?p=20973 - - Sweat Economy, creators of $SWEAT and leaders in helping the world become more active, is launching in the United States …

    -

    The post Sweat Economy Launches in the USA, Opening the Door to Millions of New Web3 Users  appeared first on NEAR Protocol.

    -]]>
    - Sweat Economy, creators of $SWEAT and leaders in helping the world become more active, is launching in the United States for the first time. 

    - - - -

    The decision to expand into the new territory was supported by a historic on chain vote by the Sweat Economy Community, and saw more than 380,000 community members take part in the decision. 

    - - - -

    The announcement will pave the way for millions of users in the United States, the Bahamas, Barbados, Botswana, Ghana, Jamaica, Pakistan, Zimbabwe, and Uganda, to be able to tokenize their physical activity within the Sweat Economy ecosystem — adding momentum to the burgeoning global movement economy. 

    - - - -

    Sweat Economy is a Web3 evolution of the Web2 health & fitness app — Sweatcoin — which now has more than 145 million registered users worldwide. It started in September 2022 when the project launched its crypto token $SWEAT alongside the Sweat Wallet mobile app. $SWEAT is effectively a tokenized form of physical activity; a new asset class that did not exist up to this moment, while Sweat Wallet is the mobile application that gives you the best experience of collecting and managing your $SWEAT. To start minting $SWEAT, users need to install the Sweatcoin app,  opt-in to “Walk into Crypto” and then install the Sweat Wallet app. 

    - - - -

    This means that instead of earning centralized sweatcoin points, users earn $SWEAT — a crypto token that represents the value of their physical activity and is traded on 20+ exchanges worldwide. Accrued $SWEAT can then be used in various ways, including deposited into “Growth Jars” to be saved and multiplied, and unlock exclusive rewards within the ecosystem. Users can also compete in the free-to-play Sweat Hero NFT game to win additional $SWEAT, while also having the option to purchase $SWEAT in-app using the MoonPay fiat on-ramp 

    - - - -

    “It’s incredible to see the progress of Sweat Economy as it enables us to achieve our mission to bring millions into the open web,” says Chris Donovan, CEO of the NEAR Foundation. 

    - - - -

    “As an industry leader in tokenizing physical activity, Sweat Economy’s launch into the U.S. represents a major milestone not just for the project, but for the entire NEAR ecosystem. It also demonstrates the incredible scalability of the NEAR Protocol, which has been able to seamlessly support one of the largest consumer apps in Web3 operating at a significant scale.”

    - - - -

    Since $SWEAT launched on NEAR Protocol, it has become one of the largest Dapps in the Web3 ecosystem, with more than 20 million wallets and more than 100,000 transactions per day. The Sweat Wallet app quickly became the number one most downloaded Finance app in more than 50 countries. This follows Sweat’s success as the fastest IDO ever to sell out on the DAO Maker platform. It has become one of the largest Web3 on-ramps in history. 

    - - - -

    “We are thrilled to finally bring the Sweat Economy experience to the United States and 8 other markets. Our community was making it loud and clear that they wanted and needed us there and we are happy that we finally can deliver for them,” says Oleg Fomenko, co-founder of Sweat Economy.

    - - - -

    “We are excited that residents of these countries will also be able to literally WALK INTO CRYPTO! Our global community of users has been instrumental in supporting this launch and we are thankful for their participation in the biggest ever governance vote that allocated nearly 700 million $SWEAT to the new community members in consideration for their verified physical activity. By expanding into these markets, we aim to inspire a new wave of physical activity and incentivize individuals to lead healthier lives, while paving the way for the next billion users looking to participate in the movement economy.”

    - - - -

    Sweat Economy’s announcement is another milestone as the NEAR community works hard to onboard one billion users to Web3. By choosing to build on NEAR, Sweat Economy will be well placed to leverage the protocol’s incredibly secure and infinitely scalable sharding infrastructure — unlocking the opportunity to onboard millions of potential users into a burgeoning Web3 movement economy.

    - - - -

    If you have yet to join the economy of movement, head to your mobile app store and download the Sweatcoin and Sweat Wallet apps today and see how millions of people are earning crypto just by being physically active. Join NEAR and Sweat Economy in building a healthier collective future!

    -

    The post Sweat Economy Launches in the USA, Opening the Door to Millions of New Web3 Users  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/sweatcoin/index.html b/public/blog/tag/sweatcoin/index.html deleted file mode 100644 index 19fbec34a..000000000 --- a/public/blog/tag/sweatcoin/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Sweatcoin Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/taco-labs/feed/index.xml b/public/blog/tag/taco-labs/feed/index.xml deleted file mode 100644 index afe88a86c..000000000 --- a/public/blog/tag/taco-labs/feed/index.xml +++ /dev/null @@ -1,134 +0,0 @@ - - - - Taco Labs Archives – NEAR Protocol - - /blog/tag/taco-labs/ - - Wed, 17 May 2023 15:43:17 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Taco Labs Archives – NEAR Protocol - /blog/tag/taco-labs/ - 32 - 32 - - - Taco Labs and NEAR Foundation to Give Shopify Retailers Next-Gen Customer Loyalty Programs - /blog/taco-labs-and-near-foundation-to-give-shopify-retailers-next-gen-customer-loyalty-programs/ - - - Fri, 05 May 2023 14:00:00 +0000 - - - - - /?p=20477 - - E-commerce is entering a new era of customer loyalty as Taco Labs and NEAR Foundation join forces to revolutionize the …

    -

    The post Taco Labs and NEAR Foundation to Give Shopify Retailers Next-Gen Customer Loyalty Programs appeared first on NEAR Protocol.

    -]]>
    - E-commerce is entering a new era of customer loyalty as Taco Labs and NEAR Foundation join forces to revolutionize the way 5.6 million Shopify retailers engage and retain customers. This innovative partnership fosters personalized loyalty experiences that deepen connections between brands and consumers, transcending traditional loyalty program limitations.

    - - - -

    By merging Taco Labs’ inventive platform with NEAR’s speedy, carbon-neutral blockchain, Shopify retailers can develop captivating loyalty programs while overcoming Web3 adoption challenges, such as slow transactions and high fees. The alliance paves the way for engaging multiplayer experiences, token-gated access, and exclusive benefits that transform customer retention and brand affinity.In this new loyalty landscape, both brands and consumers stand to benefit from this groundbreaking collaboration.

    - - - -

    Taco Labs and NEAR: Loyalty reinvention unwrapped

    - - - -

    As e-commerce continues to evolve, customer loyalty programs must adapt to remain relevant and effective. Traditional loyalty programs often struggle to build meaningful connections with customers, resulting in missed opportunities for improved retention and brand loyalty. Taco Labs and NEAR Foundation have partnered to address this issue, offering groundbreaking solutions to Shopify retailers. 

    - - - -

    The Starbucks case study illustrates how these solutions can foster unique and engaging loyalty experiences. With its recently unveiled Odyssey initiative, Starbucks created a Web3 loyalty program centered on gamification and real-life participation. Customers engage in challenges — like trying new menu items — to earn digital collectible stamps (NFTs). These stamps can be traded, and provide access to exclusive perks like limited-edition token-gated products, virtual classes, and trips to Starbucks roasteries or coffee farms.

    - - - -

    Similar to Starbucks, Taco Labs is harnessing Web3 to create innovative and captivating customer experiences and connections. The Taco App is doing this through quest gamification, membership tiers, reward points, and referral programs. These experiences are delivered swiftly, seamlessly, and at scale using the NEAR Protocol.

    - - - -

    Taco Labs and NEAR Foundation will further facilitate innovative loyalty approaches, incentivizing brand-valuable behavior, enhancing customer engagement, and transforming the e-commerce loyalty landscape.

    - - - -

    Streamlining loyalty with no-code solutions

    - - - -

    Taco Labs’ comprehensive platform addresses both immediate business needs and fosters long-term growth. It enables brands to scale their loyalty programs without incurring high costs and adapts to various business models, making the platform suitable for diverse industries and market segments.

    - - - -

    A key strength of Taco Labs is its seamless integration with existing systems, connecting easily with popular e-commerce platforms like Shopify and in-store Point of Sale (POS) systems. This cross-channel integration ensures a cohesive and immersive customer experience across online and offline touchpoints.

    - - - -

    Taco’s no-code approach streamlines the process for brands, marketers, and agencies. The end-to-end workflow doesn’t require specialized technical knowledge or developers, allowing businesses to focus on building meaningful connections with customers.

    - - - -

    In the Web3 world, privacy and data security are crucial. Taco addresses this by giving brands control over customer data, which is stored on a decentralized, transparent network. This ensures security and privacy while enabling brands to leverage valuable information for decision-making.

    - - - -

    Combining Web3 and the user-friendly NEAR Protocol, Taco Labs revolutionizes customer loyalty programs. Taco’s scalable, adaptable, and secure features enable businesses to create engaging experiences that retain customers and foster lasting connections, differentiating loyalty programs in a competitive market.

    - - - -

    Spicing up Shopify loyalty

    - - - -

    Taco Labs and NEAR Foundation will provide innovative solutions for Shopify retailers to enhance customer loyalty programs. By using Web3 technology, businesses can launch exclusive, early-access products quickly. Integration with Shopify delivers Web3 benefits while preserving Web2’s convenience and user experience.

    - - - -

    With Nike’s successful CryptoKicks NFT campaign as another example, Taco Labs enables Shopify retailers to create similar experiences. Businesses can launch tiered NFTs to crowdfund new product lines, offering lifelong perks to early supporters, like monthly loyalty tokens for exclusive products and offers. This encourages early adoption and strengthens customer relationships.

    - - - -

    Taco Labs’ platform promotes brand-valuable behavior by allowing customers to buy, sell, and gift the NFTs they’ve received. This generates a dynamic ecosystem of gifting and trading, attracting new customers without costly marketing. The platform’s blockchain foundation enables comprehensive data analytics, providing customer insights while respecting privacy.

    - - - -

    A key advantage of Taco Labs and NEAR Foundation’s collaboration is user control over data. Customers can choose to share information or maintain privacy, fostering trust and a positive experience. With data stored on a public blockchain, no third party can revoke access, ensuring businesses retain full control over customer relationships.

    - - - -

    Taco Labs and NEAR offer Shopify retailers a powerful, flexible solution to boost customer loyalty and engagement by combining Web3 and Web 2 features. This partnership presents an excellent growth opportunity for businesses in the rapidly evolving digital landscape.

    - - - -

    The collaboration ushers in a new era of customer loyalty, empowering Shopify retailers to harness Web3 capabilities. By seamlessly integrating blockchain technology with existing platforms, businesses can create tailored, engaging experiences fostering lasting customer connections.

    - - - -

    From token-gated products to comprehensive analytics, this partnership enables unique, sustainable loyalty programs, blending the strengths of Web3 and Web2 technologies. As the future of customer engagement unfolds, Taco Labs and the NEAR ecosystem are at the forefront.

    -

    The post Taco Labs and NEAR Foundation to Give Shopify Retailers Next-Gen Customer Loyalty Programs appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/taco-labs/index.html b/public/blog/tag/taco-labs/index.html deleted file mode 100644 index 92ccd26ab..000000000 --- a/public/blog/tag/taco-labs/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Taco Labs Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/tekuno/feed/index.xml b/public/blog/tag/tekuno/feed/index.xml deleted file mode 100644 index 7abedec87..000000000 --- a/public/blog/tag/tekuno/feed/index.xml +++ /dev/null @@ -1,156 +0,0 @@ - - - - Tekuno Archives – NEAR Protocol - - /blog/tag/tekuno/ - - Thu, 06 Apr 2023 20:19:26 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Tekuno Archives – NEAR Protocol - /blog/tag/tekuno/ - 32 - 32 - - - NEAR Balkans’ Tekuno and Mastercard Team Up for Gamified NFT Experience - /blog/near-balkans-tekuno-and-mastercard-team-up-for-gamified-nft-experience/ - - - Fri, 07 Apr 2023 12:00:00 +0000 - - - - - - - /?p=20387 - - NEAR Foundation is thrilled to announce that Tekuno, one of the most innovative NEAR Balkans Hub projects, recently teamed up …

    -

    The post NEAR Balkans’ Tekuno and Mastercard Team Up for Gamified NFT Experience appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is thrilled to announce that Tekuno, one of the most innovative NEAR Balkans Hub projects, recently teamed up with Mastercard to serve up an incredibly unique real-life NFT experience. Attendees at the recent Money Motion (MoMo) Fintech conference in Zagreb, Croatia got a taste of how Web3 and NEAR can help brands reach new audiences with blockchain gamification.

    - - - -

    Mastercard, a leader in global payment systems, enabled the Tekuno team and NEAR Balkans to realize this ground-breaking experience with NFTs. The NFT activation provided MoMo visitors with a gamified experience through which they could gather evidence of their participation at the conference and various NFTs — a concept called Proof of Doings (PODs).

    - - - -

    These PODs had time and space restrictions, so participants could only pick them up during a particular period of the conference. PODs demonstrated a novel use case of how NFTs can be used to gamify real life, while strengthening Mastercard’s brand as forward-thinking in the loyalty and payments space.

    - - - -

    Behind the Tekuno and Mastercard partnership

    - - - -

    The city of Zagreb, Croatia, recently hosted the first edition of an exclusive FinTech conference called Money Motion. With Mastercard as one of the conference organizers and NEAR Balkans as a sponsor, this presented the perfect opportunity for collaboration.

    - - - -

    Before the conference, NEAR Balkans Hub’s Product Lab was ready to launch Tekuno,  a blockchain as a service (BaaS) platform for NFT experiences. A user-friendly product for seamless onboarding of mass audiences to Web3, the Tekuno platform makes blockchain knowledge a preference rather than a requirement. 

    - - - -

    Tekuno can be used for a variety of campaigns and experiences, including loyalty programs, marketing activations and events, CRM, HR initiatives, and much more. The technology does this through the creation of secure and transparent Proof-of-Doings (PODs) in the form of digital collectibles (NFTs) to attest and reward a wide range of activities. For the “Experience the Motion” campaign, Tekuno was used as proof-of-attendance.

    - - - -

    How MoMo attendees claimed NFT PODs

    - - - -

    In “Experience the Motion”, MoMo attendees proved their attendance by collecting a total of 5 different NFT PODs. These PODs were exclusive — attendees could only claim them at specific times during the conference.Attendees claimed their PODs by simply scanning QR codes at several predefined locations — the entrance, speakers presentations and panels, and the NEAR Balkans booth.

    - - - -

    The PODs functioned as a prize raffle gateway, which attendees entered by following certain rules. MoMo attendees competed for a number of exciting prizes, including: exclusive Mastercard merchandise; a special 1–2–1 session with Christian Rau, Senior Vice President Crypto and Fintech Enablement Mastercard Europe; an invitation to a Web3 NEAR educational workshop, VIP access tickets for conference party; and the grand prize — a Mastercard Priceless.com experience at Chiavalon, Istria, an  olive oil making and tasting experience for two. 

    - - - -

    NEAR Balkans and Mastercard campaign results 

    - - - -

    The “Experience the Motion” ultimately reached more than 14,000 people on social media, and was available for over 1,000 attendees over two days of the conference. Tekuno’s user-friendly technology made it possible to distribute more than 500 PODs to more than 200 unique collectors.

    - - - -

    Feedback from the attendees regarding the NFT experience and rewards was overwhelmingly positive. Participants found the Tekuno platform to be intuitive and easy to navigate. Participants  were able to easily open accounts, allowing them to follow the challenges and collect the PODs for a chance at winning exciting prizes. 

    - - - -

    “This is the most seamless experience I have ever had with a Web3 app, and I’ve experimented with many, trust me,” said Vlaho Hrdalo, Lawyer and Chairman of UBIK — Croatian Association for Blockchain and Cryptocurrency. 

    - - - -

    Nikola Škorić, the CEO of Electrocoin, Gold sponsor of the conference, added: “‘Experience the Motion ’ —  the NFT activation made possible by Mastercard and organized by NEAR Balkans and Tekuno for the Money Motion conference, engaged our audience in an authentic and fun way that brought extra value to the conference while rewarding the luckiest ones.”

    - - - -

    “We’re happy that Money Motion is a place of technology adoption and that brands see us as a great partner for such activities,” Škorić added.

    - - - -

    Driving engagement with NFTs

    - - - -

    As Mastercard and NEAR Balkans noted, many attendees, who ranged from fintech professionals to regional bank representatives, retail marketing leads, and others were particularly interested in Tekuno’s various use-cases. Indeed, it demonstrated the real-world applications and versatility of NFTs, helping traditional industries see the value in Web3 integrations. 

    - - - -

    Gea Kariž, Marketing Director at Mastercard Croatia, shared her insights on the successful collaboration between Mastercard, Money Motion, Tekuno, and NEAR Balkans. 

    - - - -

    ‘’Our collaboration with the Tekuno and NEAR Balkans teams provided Mastercard HR with a seamless and exceptional entrance into the Web3 domain,” said Kariž. “Through this activation, we not only gained significant brand visibility but also reinforced our commitment to embracing blockchain and other cutting-edge technologies.”

    - - - -

    “The added value of this campaign was the deep engagement we experienced with our end-users, fostering a strong sense of community around our brand and further solidifying our position as a forward-thinking and innovative company,” Kariž added.

    - - - -

    The NEAR Balkans General Manager, Ida Pandur, was similarly inspired by the partnership — especially as it aligns with NEAR Foundation’s Web2.5 strategy of onboarding the masses with real use cases in Web3.

    - - - -

    ‘’We at NEAR Balkans are committed to help and enable mass adoption of Web3 and decentralization into everyday lives,” said Pandur. “The way we do it is by educating, enabling and  partnering with innovative organizations to bring Web3 to users in simple, value added, use cases. We are happy to have been working with Mastercard and use Tekuno, which is one of the best Web2→Web3 tools UX wise to bring it to life at MoneyMotion and from the interest we see across the region, it’s just getting started.’’

    - - - -

    Sally Meouche-Grawi, CEO of Tekuno, noted that the campaign illustrated how Tekuno demonstrated that Web3 products can be user-friendly. 

    - - - -

    “We’re trying to make it as user friendly as possible, but it’s still realistically a Web3 product, but it’s a Web3 product that is easy to use,” said Meouche-Grawi. “And this is what a lot of these products are critically lacking, which is the easy onboarding experience.”

    - - - -

    “So, we are trying to set the standard… to show how we can create a Web3 product that any average user can actually use,” Meouche-Grawi added. “Because from my experience when it comes to Web3 products they are usually developed by developers for developers, this is the trend and we are trying to break it.’’

    -

    The post NEAR Balkans’ Tekuno and Mastercard Team Up for Gamified NFT Experience appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/tekuno/index.html b/public/blog/tag/tekuno/index.html deleted file mode 100644 index 0dd43f9c7..000000000 --- a/public/blog/tag/tekuno/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Tekuno Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/the-dock/feed/index.xml b/public/blog/tag/the-dock/feed/index.xml deleted file mode 100644 index 36acd3800..000000000 --- a/public/blog/tag/the-dock/feed/index.xml +++ /dev/null @@ -1,118 +0,0 @@ - - - - The Dock Archives – NEAR Protocol - - /blog/tag/the-dock/ - - Thu, 20 Jul 2023 13:08:59 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - The Dock Archives – NEAR Protocol - /blog/tag/the-dock/ - 32 - 32 - - - NEAR Foundation and Sail GP Elevate Mobile Fan Engagement with The Dock - /blog/near-foundation-and-sail-gp-elevate-mobile-fan-engagement-with-the-dock/ - - - Thu, 20 Jul 2023 14:00:00 +0000 - - - - - /?p=20736 - - SailGP and NEAR Foundation are embarking on a daring journey where sports meets blockchain. SailGP’s The Dock platform is ready …

    -

    The post NEAR Foundation and Sail GP Elevate Mobile Fan Engagement with The Dock appeared first on NEAR Protocol.

    -]]>
    - SailGP and NEAR Foundation are embarking on a daring journey where sports meets blockchain. SailGP’s The Dock platform is ready to make waves and redefine fan engagement in both sailing and sports at large. After its maiden voyage as a web-based platform on June 13th, The Dock is now ready to drop anchor with the launch of the new mobile app.

    - - - -

    The Dock is SailGP’s free loyalty program that brings fans closer than ever to the sport and will now be available in both Apple and Google Play Stores. And by leveraging the NEAR blockchain, users of The Dock will be able to claim unique rewards and digital assets using Web3 to engage sports fans like never before.

    - - - -

    Not to mention that The Dock is powered in part by Oracle, making the triad of SailGP and NEAR an excellent representation of building bridges between Web2 and Web3. 

    - - - -

    The Dock: A revolution in Fan Engagement

    - - - -

    The Dock is an immersive loyalty platform designed to reward and engage sports and sailing enthusiasts globally. The platform — and now mobile app — gives fans a chance to create personalized accounts, engage with unique and exclusive SailGP content, and earn points redeemable for exclusive rewards. 

    - - - -

    With offerings ranging from VIP access to SailGP events and signed merchandise to once-in-a-lifetime experiences with teams and athletes, The Dock is every fan’s passport to an interactive way of engaging with their favorite SailGP athletes and teams. The platform essentially encourages fans to interact more, and in doing so earn more. 

    - - - -

    With each interaction —± through videos, stories, behind-the-scenes content, quizzes, surveys, and polls — fans earn points that propel them closer to becoming a SailGP Champion. The accumulation of points unlocks new levels, each promising a unique set of exclusive benefits, enhancing the overall SailGP experience.

    - - - -

    The Dock and NEAR Protocol: A synergistic partnership

    - - - -

    A standout feature of The Dock is its fusion of Oracle’s CrowdTwist platform with the NEAR Protocol, symbolizing an industry-first partnership that bridges Web2 and Web3. This collaboration showcases how traditional and decentralized technologies can come together to revolutionize fan engagement in sports.

    - - - -

    Through the Dock’s ‘Season Pass’, fans can link an existing NEAR account or create a new one. This paves the way for exciting blockchain-based rewards, including digital collectibles commemorating their progress. Fans can also trade these digital collectibles for limited-edition collectibles, adding another layer of engagement and excitement.

    - - - -

    “Data is at the heart of SailGP — from the mid-race decisions made on the water to the league’s continued innovation around fan engagement,” said Rob Tarkoff, EVP of customer experience at Oracle. “We’re excited to support their newest CX initiative, The Dock, as they redefine their approach to the fan experience.”

    - - - -

    SailGP’s journey with Oracle and NEAR

    - - - -

    Since its inception in 2019, SailGP has harnessed the power of Oracle Cloud Infrastructure (OCI) to expand from a five-team, six-event startup to one of the fastest-growing sports leagues in the world with ten teams competing in 12 events throughout 2023 and 2024. Oracle has stepped up as the Title Partner for the inaugural Los Angeles Sail Grand Prix. Scheduled for July 22 and 23, it’s a thrilling new addition to SailGP’s 12-event global calendar for Season 4, which kicks off in Chicago on June 16.

    - - - -

    “Oracle’s cloud technology is at the heart of everything we do at SailGP, and this partnership extension reflects the power and results of our collaboration,” says Warren Jones, chief technology officer, SailGP. “We have no doubt Oracle will take our fan and athlete experience to even greater heights in the seasons to come and The Dock is a great example of this.”

    - - - -

    With the launch of The Dock’s mobile app, this exciting world of interactive sailboat racing, fan engagement, and blockchain rewards is now just a tap away. Anyone can download the app and embark on their journey to become a SailGP Champion, while also exploring the new fandom possibilities offered by the blend of Web2 and Web3 technologies.

    - - - -

    NEAR’s mission is to push the boundaries of the Web3 world, create experiences that allow everyone to engage with decentralized technology, and foster partnerships that provide real-world utility for blockchain. Whether you’re immersed in the NEAR ecosystem or a sports enthusiast intrigued by the intersection of blockchain and sports.

    - - - -

    The Dock promises an exciting glimpse into the future of fan engagement and loyalty platforms while bridging the gap between Web2 and Web3 with Oracle and NEAR. 
    Download The Dock mobile app today on the Apple App Store or Google Play and get started on your interactive journey.

    -

    The post NEAR Foundation and Sail GP Elevate Mobile Fan Engagement with The Dock appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/the-dock/index.html b/public/blog/tag/the-dock/index.html deleted file mode 100644 index 7dbae1680..000000000 --- a/public/blog/tag/the-dock/index.html +++ /dev/null @@ -1,2 +0,0 @@ -The Dock Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/the-littles/feed/index.xml b/public/blog/tag/the-littles/feed/index.xml deleted file mode 100644 index 81db168c2..000000000 --- a/public/blog/tag/the-littles/feed/index.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - the littles Archives – NEAR Protocol - - /blog/tag/the-littles/ - - Mon, 17 Jul 2023 20:22:33 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - the littles Archives – NEAR Protocol - /blog/tag/the-littles/ - 32 - 32 - - - TheFunPass™ Debuts at North America’s Largest Night Market with The Littles and NEAR - /blog/thefunpass-debuts-at-north-americas-largest-night-market-with-the-littles-and-near/ - - - Thu, 13 Jul 2023 22:00:00 +0000 - - - - - - /?p=20721 - - Everyone’s a winner playing carnival games thanks to TheFunPass™, a groundbreaking leap in Web3 that will redefine loyalty rewards and …

    -

    The post TheFunPass™ Debuts at North America’s Largest Night Market with The Littles and NEAR appeared first on NEAR Protocol.

    -]]>
    - Everyone’s a winner playing carnival games thanks to TheFunPass™, a groundbreaking leap in Web3 that will redefine loyalty rewards and transform the way we engage and connect with events and experiences. From the popular Web3 project, the littles, this innovative Web3 rewards app on the NEAR blockchain offers a solution that will transform the event landscape, that benefits event-goers but also empowers event operators. 

    - - - -

    It’s all about bridging the gap between the physical and digital worlds, as TheFunPass™ creates a seamless and immersive experience for users while driving value for businesses. 

    - - - -

    TheFunPass™ presents a brand-new model of interaction that empowers users, business operators, and The Littles holders alike. The Littles’ TheFunPass™ rewards app will debut at the Richmond Night Market, rethinking the entire carnival experience by connecting people through interactive missions, rewards, and personalized engagement. 

    - - - -

    Now every carnival-goer can win prizes, food, and once-in-a-lifetime trips — even if their skeeball doesn’t land in the bullseye — breathing new life into the classic carnival games.

    - - - -

    TheFunPass™ is the best way to win at carnival games

    - - - -

    Wil Lee and Cass Chan created the Web3 children’s media company, the littles, in 2021 offering a creative blend of animation, gaming, and real-world activations. The Littles is even joining up with TIME Studios to produce a children’s animation series. TheFunPass™, their latest endeavor, showcases their commitment to pushing the boundaries of interactive entertainment. Meanwhile, Lee is also the CEO and creator of Wun2Free Entertainment, a Company that has been producing events for over 10 years and hires over one hundred people each season, with TheFunPass™ as their latest endeavor. 

    - - - -

    TheFunPass™ is a rewards application that utilizes Web3 technology to enhance the way people emotionally engage with events. The application will debut at the Richmond Night Market in British Columbia, the largest night market in North America. TheFunPass™ engages user participation through missions, allowing them to earn digital and physical rewards unlocking exclusive benefits, digital collectibles, and unforgettable experiences. 

    - - - -

    TheFunPass™ not only engages event attendees but also presents a game-changing opportunity for businesses and operators. The app will also enable event operators and businesses to create customized missions and campaigns driving attendee participation and extending engagement before, during, and after the event. It’s a win-win scenario, where attendees enjoy immersive experiences and rewards, while businesses drive revenue growth and forge stronger connections with their audience.

    - - - -

    TheFunPass™ is a new and innovative way to experience the Richmond Night Market, which boasts over 500 food stalls, 100 retail shops, and an average attendance of over 1 million visitors per season. TheFunPass™ can reach tens of thousands of carnival-goers and engage them in unprecedented ways. The partnership between The Littles and NEAR will change the way people emotionally engage with events.

    - - - -
    - - - -

    The Littles and TheFunPass™ are a NEAR perfect match

    - - - -

    TheFunPass™, powered by NEAR, revolutionizes the traditional carnival experience, offering dynamic gameplay with location-based missions and rewarding social engagements. The app’s integration of digital and physical missions enables users to accrue reward points beyond the physical space confines, effectively turning the standard carnival participation model on its head thanks to the development support of LaunchBadge, a leading software development team trusted by the littles and NEAR. 

    - - - -

    “800 users for a soft launch has reaffirmed our decision to support The Fun Pass and the team’s vision to reimagine how we experience the night market with blockchain technology,” said Dillon Freeman, Blockchain Success Manager on NEAR Foundation’s BD team. “The team has been executing at a high level and we’re excited to see what they deliver in the coming months.”

    - - - -

    Beyond the in-person carnival fun, TheFunPass™ also facilitates year-round engagement with unique missions and reward opportunities, making the carnival-style fun available wherever and whenever. This innovative blend of phygital experiences is a game changer, enabling events to expand their reach and engage audiences more effectively.

    - - - -

    The mechanics of TheFunPass™ are simple: Play Games, Collect STARs, Win Rewards! Attendees participate in carnival games, scan QR codes or tap to gather STARs on TheFunPass™, and subsequently exchange these STARs for various rewards, regardless of their game outcomes. The participation model offers a tangible sense of achievement, transforming the carnival experience.

    - - - -
    - - - -

    TheFunPass™ ensures an exciting and ongoing engagement with its mission-based gameplay and reward system. After the carnival, users can continue to engage in digital missions, games, and rewards, offering an immersive experience that extends beyond its physical boundaries.

    - - - -
    - - - -

    Debuting at Richmond Night Market, the partnership between The Littles and NEAR, with the development expertise from Launchbadge, showcases a unique use case of Web3 technology. By using TheFunPass™, every visitor stands a chance to win prizes, while also partaking in a unique Web3 event experience, thereby redefining event participation.

    - - - -

    Empowering all stakeholders in the events industry 

    - - - -

    TheFunPass™ empowers The Littles holders by integrating them into its growth through a unique referral program, reflecting the app’s commitment to decentralization and community empowerment. This groundbreaking approach enables Littles holders to earn commissions by referring businesses and operators to the app’s expanding network.

    - - - -

    Beyond rewarding users, TheFunPass™ is an invaluable tool for businesses and operators. It enhances customer engagement, fosters loyalty, and promotes revenue growth. Additionally, the app provides businesses with valuable consumer behavior insights, enabling them to customize their offerings and establish meaningful connections with their audience.

    - - - -

    The Littles are poised to lead the web3 industry into the future with the launch of TheFunPass™, powered by NEAR. By introducing gamification and immersive experiences to events, concerts, and festivals worldwide, TheFunPass™ aims to revolutionize the event experience, heralding a new frontier of interaction for fans.

    - - - -

    TheFunPass™ presents a unique convergence of loyalty rewards, immersive experiences, and Web3 technology. As we step into the future of truly phygital experiences, every event-goer can look forward to a redefined, gamified, and winning event experience like never before.

    -

    The post TheFunPass™ Debuts at North America’s Largest Night Market with The Littles and NEAR appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/the-littles/index.html b/public/blog/tag/the-littles/index.html deleted file mode 100644 index 2a932c92f..000000000 --- a/public/blog/tag/the-littles/index.html +++ /dev/null @@ -1,2 +0,0 @@ -the littles Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/thefunpass/feed/index.xml b/public/blog/tag/thefunpass/feed/index.xml deleted file mode 100644 index 2cb28c626..000000000 --- a/public/blog/tag/thefunpass/feed/index.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - TheFunPass™ Archives – NEAR Protocol - - /blog/tag/thefunpass/ - - Mon, 17 Jul 2023 20:22:33 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - TheFunPass™ Archives – NEAR Protocol - /blog/tag/thefunpass/ - 32 - 32 - - - TheFunPass™ Debuts at North America’s Largest Night Market with The Littles and NEAR - /blog/thefunpass-debuts-at-north-americas-largest-night-market-with-the-littles-and-near/ - - - Thu, 13 Jul 2023 22:00:00 +0000 - - - - - - /?p=20721 - - Everyone’s a winner playing carnival games thanks to TheFunPass™, a groundbreaking leap in Web3 that will redefine loyalty rewards and …

    -

    The post TheFunPass™ Debuts at North America’s Largest Night Market with The Littles and NEAR appeared first on NEAR Protocol.

    -]]>
    - Everyone’s a winner playing carnival games thanks to TheFunPass™, a groundbreaking leap in Web3 that will redefine loyalty rewards and transform the way we engage and connect with events and experiences. From the popular Web3 project, the littles, this innovative Web3 rewards app on the NEAR blockchain offers a solution that will transform the event landscape, that benefits event-goers but also empowers event operators. 

    - - - -

    It’s all about bridging the gap between the physical and digital worlds, as TheFunPass™ creates a seamless and immersive experience for users while driving value for businesses. 

    - - - -

    TheFunPass™ presents a brand-new model of interaction that empowers users, business operators, and The Littles holders alike. The Littles’ TheFunPass™ rewards app will debut at the Richmond Night Market, rethinking the entire carnival experience by connecting people through interactive missions, rewards, and personalized engagement. 

    - - - -

    Now every carnival-goer can win prizes, food, and once-in-a-lifetime trips — even if their skeeball doesn’t land in the bullseye — breathing new life into the classic carnival games.

    - - - -

    TheFunPass™ is the best way to win at carnival games

    - - - -

    Wil Lee and Cass Chan created the Web3 children’s media company, the littles, in 2021 offering a creative blend of animation, gaming, and real-world activations. The Littles is even joining up with TIME Studios to produce a children’s animation series. TheFunPass™, their latest endeavor, showcases their commitment to pushing the boundaries of interactive entertainment. Meanwhile, Lee is also the CEO and creator of Wun2Free Entertainment, a Company that has been producing events for over 10 years and hires over one hundred people each season, with TheFunPass™ as their latest endeavor. 

    - - - -

    TheFunPass™ is a rewards application that utilizes Web3 technology to enhance the way people emotionally engage with events. The application will debut at the Richmond Night Market in British Columbia, the largest night market in North America. TheFunPass™ engages user participation through missions, allowing them to earn digital and physical rewards unlocking exclusive benefits, digital collectibles, and unforgettable experiences. 

    - - - -

    TheFunPass™ not only engages event attendees but also presents a game-changing opportunity for businesses and operators. The app will also enable event operators and businesses to create customized missions and campaigns driving attendee participation and extending engagement before, during, and after the event. It’s a win-win scenario, where attendees enjoy immersive experiences and rewards, while businesses drive revenue growth and forge stronger connections with their audience.

    - - - -

    TheFunPass™ is a new and innovative way to experience the Richmond Night Market, which boasts over 500 food stalls, 100 retail shops, and an average attendance of over 1 million visitors per season. TheFunPass™ can reach tens of thousands of carnival-goers and engage them in unprecedented ways. The partnership between The Littles and NEAR will change the way people emotionally engage with events.

    - - - -
    - - - -

    The Littles and TheFunPass™ are a NEAR perfect match

    - - - -

    TheFunPass™, powered by NEAR, revolutionizes the traditional carnival experience, offering dynamic gameplay with location-based missions and rewarding social engagements. The app’s integration of digital and physical missions enables users to accrue reward points beyond the physical space confines, effectively turning the standard carnival participation model on its head thanks to the development support of LaunchBadge, a leading software development team trusted by the littles and NEAR. 

    - - - -

    “800 users for a soft launch has reaffirmed our decision to support The Fun Pass and the team’s vision to reimagine how we experience the night market with blockchain technology,” said Dillon Freeman, Blockchain Success Manager on NEAR Foundation’s BD team. “The team has been executing at a high level and we’re excited to see what they deliver in the coming months.”

    - - - -

    Beyond the in-person carnival fun, TheFunPass™ also facilitates year-round engagement with unique missions and reward opportunities, making the carnival-style fun available wherever and whenever. This innovative blend of phygital experiences is a game changer, enabling events to expand their reach and engage audiences more effectively.

    - - - -

    The mechanics of TheFunPass™ are simple: Play Games, Collect STARs, Win Rewards! Attendees participate in carnival games, scan QR codes or tap to gather STARs on TheFunPass™, and subsequently exchange these STARs for various rewards, regardless of their game outcomes. The participation model offers a tangible sense of achievement, transforming the carnival experience.

    - - - -
    - - - -

    TheFunPass™ ensures an exciting and ongoing engagement with its mission-based gameplay and reward system. After the carnival, users can continue to engage in digital missions, games, and rewards, offering an immersive experience that extends beyond its physical boundaries.

    - - - -
    - - - -

    Debuting at Richmond Night Market, the partnership between The Littles and NEAR, with the development expertise from Launchbadge, showcases a unique use case of Web3 technology. By using TheFunPass™, every visitor stands a chance to win prizes, while also partaking in a unique Web3 event experience, thereby redefining event participation.

    - - - -

    Empowering all stakeholders in the events industry 

    - - - -

    TheFunPass™ empowers The Littles holders by integrating them into its growth through a unique referral program, reflecting the app’s commitment to decentralization and community empowerment. This groundbreaking approach enables Littles holders to earn commissions by referring businesses and operators to the app’s expanding network.

    - - - -

    Beyond rewarding users, TheFunPass™ is an invaluable tool for businesses and operators. It enhances customer engagement, fosters loyalty, and promotes revenue growth. Additionally, the app provides businesses with valuable consumer behavior insights, enabling them to customize their offerings and establish meaningful connections with their audience.

    - - - -

    The Littles are poised to lead the web3 industry into the future with the launch of TheFunPass™, powered by NEAR. By introducing gamification and immersive experiences to events, concerts, and festivals worldwide, TheFunPass™ aims to revolutionize the event experience, heralding a new frontier of interaction for fans.

    - - - -

    TheFunPass™ presents a unique convergence of loyalty rewards, immersive experiences, and Web3 technology. As we step into the future of truly phygital experiences, every event-goer can look forward to a redefined, gamified, and winning event experience like never before.

    -

    The post TheFunPass™ Debuts at North America’s Largest Night Market with The Littles and NEAR appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/thefunpass/index.html b/public/blog/tag/thefunpass/index.html deleted file mode 100644 index 9782585e4..000000000 --- a/public/blog/tag/thefunpass/index.html +++ /dev/null @@ -1,2 +0,0 @@ -TheFunPass™ Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ticketing/feed/index.xml b/public/blog/tag/ticketing/feed/index.xml deleted file mode 100644 index 0eadff78c..000000000 --- a/public/blog/tag/ticketing/feed/index.xml +++ /dev/null @@ -1,119 +0,0 @@ - - - - Ticketing Archives – NEAR Protocol - - /blog/tag/ticketing/ - - Thu, 27 Apr 2023 19:09:28 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Ticketing Archives – NEAR Protocol - /blog/tag/ticketing/ - 32 - 32 - - - Rove World v2 Simplifies Web3 Ticketing and Loyalty for Brands - /blog/rove-world-v2-simplifies-web3-ticketing-and-loyalty-for-brands/ - - - Wed, 12 Apr 2023 14:12:00 +0000 - - - - - - /?p=20449 - - Rove, one of the most user-friendly entertainment ecosystems in Web3, is now in collaboration with NEAR. Their next release, Rove …

    -

    The post Rove World v2 Simplifies Web3 Ticketing and Loyalty for Brands appeared first on NEAR Protocol.

    -]]>
    - Rove, one of the most user-friendly entertainment ecosystems in Web3, is now in collaboration with NEAR. Their next release, Rove World v2, will act as a one-stop mobile-based ticketing solution and loyalty rewards program for brands. The update will also feature an in-app store that will include major brands, sports leagues, and musical artists.

    - - - -

    Rove and Rove World v2 removes many of the key friction points that occur when brands and creators try to engage their audience with Web3 technology. Notable brands are already on board, as Rove has collaborated with the likes of Tommy Hilfiger on the Web2 side, alongside some of Web3’s largest brands such as Claynosaurz and MonkeDAO, with more exciting partnerships and activations to be announced soon.

    - - - -

    “A multichain approach was always at the forefront of our long-term growth strategy for Rove,” said Jason Desimone, Founder of Rove. “Having built and launched the initial version of the Rove World mobile app, our goal is to now expand the reach and traction of Rove to other ‘Layer 1’ blockchain communities and ecosystems that align with our vision and will help us achieve our goals with the launch of Rove v2.”

    - - - -

    Let’s take a look at how Rove World V2 is a game-changer for branded NFTs on NEAR.

    - - - -

    How Rove is helping brands amp up their NFTs

    - - - -

    The Rove ecosystem is a solution to many of the core issues facing brand and entertainment NFT campaigns, launches, and projects. That’s because Web3 itself is often difficult or daunting for the end user, who amongst other things might have questions about the value or utility of NFT ownership.

    - - - -

    What Rove brings to the table is a user-friendly mobile app where NFTs are minted in mere seconds and with minimal steps. Brands can also easily add utility to the NFTs which are easily accessible by the user. Rove’s vision aligns seamlessly with NEAR’s Web2.5 strategy of making the onboarding of the next billion users into Web3 as easy as possible.   

    - - - -

    Brand and entertainment NFT experiences built atop Rove and NEAR lets users log in seamlessly through familiar means like social media log-in, Apple ID, or facial ID. NFTs are easily sent and received on the Rove app via usernames, again with a similar Web2 interface to that of Venmo.

    - - - -

    Rove World v2 release lets brands create buzz

    - - - -

    The Rove World v2 release will be a major part of Rove’s suite of tools that make it easy for brands to get started with blockchain technology. Their approach is to allow brands to engage with NFTs in a collaborative manner that benefits creators, brands, and end users alike. Rove World v2 on Near is a huge leap in that direction.

    - - - -

    The main feature is the in-app store that brands can now leverage in combination with Rove’s flagship app for curated NFT launches and blockchain-based ticketing. Not only will attendees be able to claim NFTs instantly at the tap of their phone, but brands can also now leverage Rove World v2 to offer seamless in-app purchases via the mobile store.

    - - - -

    NEAR and entertainment continue to shine with Rove

    - - - -

    Rove has many brands in the pipeline across the fashion, film, music, and sports verticals that want a seamless NFT experience for their customers. This not only brings more notable and forward-thinking brands into NEAR’s orbit but also showcases how the NEAR ecosystem continues to make major strides in the sports and entertainment verticals. 

    - - - -

    Eventually, Rove will serve as a central ticketing and NFT project on NEAR. Users can easily create assets, mint the NFT, and distribute it however they’d like. The entire experience will be on a single mobile app, bridging the technical gap between users and brands while giving a fairer share to creators than mainstream NFT marketplaces.

    - - - -

    All assets on Rove and Rove World v2 also have some form of utility. Anyone who owns an NFT on Rove can stake that asset for Rove credits that unlock various perks. It’s a great example of how Rove is making all of Web3 simple, including things like staking. 

    - - - -

    Ticketing and NFT distribution for brands and creators are about to get a whole lot easier for everyone thanks to Rove. And with Rove World v2’s in-app store, major brands are lining up to be at the forefront of making web3 truly accessible, user-friendly, and financially fair.

    - - - -

    “NEAR’s emphasis on onboarding the next billion users into Web3 with a specialized focus on entertainment, sports, and culture fit identically with our approach,” said Rove’s Desimone. “Not to mention NEAR’s industry-leading technology which enables a seamless migration of the easy-to-use features of the Rove World mobile app onto the NEAR blockchain.”

    -

    The post Rove World v2 Simplifies Web3 Ticketing and Loyalty for Brands appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ticketing/index.html b/public/blog/tag/ticketing/index.html deleted file mode 100644 index 44b23dd01..000000000 --- a/public/blog/tag/ticketing/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ticketing Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/transfer-wizard/feed/index.xml b/public/blog/tag/transfer-wizard/feed/index.xml deleted file mode 100644 index 58fda152a..000000000 --- a/public/blog/tag/transfer-wizard/feed/index.xml +++ /dev/null @@ -1,127 +0,0 @@ - - - - Transfer Wizard Archives – NEAR Protocol - - /blog/tag/transfer-wizard/ - - Mon, 23 Oct 2023 19:18:35 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Transfer Wizard Archives – NEAR Protocol - /blog/tag/transfer-wizard/ - 32 - 32 - - - A Reminder to Migrate from NEAR Wallet - /blog/a-reminder-to-migrate-from-near-wallet/ - - - Thu, 12 Oct 2023 13:00:27 +0000 - - - - /?p=20966 - - In July, NEAR Foundation published “Embracing Decentralization: What’s Next for the NEAR Wallet”, a detailed exploration of how Pagoda is …

    -

    The post A Reminder to Migrate from NEAR Wallet appeared first on NEAR Protocol.

    -]]>
    - In July, NEAR Foundation published “Embracing Decentralization: What’s Next for the NEAR Wallet”, a detailed exploration of how Pagoda is migrating NEAR Wallet from being a browser wallet into a wallet hub. As we noted at the time, this wallet evolution illustrates the substantial growth of the NEAR ecosystem, which now offers a wide range of cross-chain wallets and native wallets. 

    - - - -

    As part of this wallet evolution, the NEAR Wallet is set to be discontinued on January 1, 2024.

    - - - -

    You can migrate to your wallet of choice using the automatic Wallet Transfer Wizard, integrated into the current NEAR Wallet, or manually by using your recovery phrase. Whichever path you choose, understand that your account and its assets are safe.

    - - - -

    Do not worry if you have not transferred your accounts by January 1, 2024 — the Transfer Wizard will still be available after the wallet functionality sunsets. And again, rest assured that your assets will remain secure until you import them to a new wallet.

    - - - -

    For more details on using  the Transfer Wizard, visit the Migrating from NEAR Wallet page. 

    -

    The post A Reminder to Migrate from NEAR Wallet appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Embracing Decentralization: What’s Next for the NEAR Wallet - /blog/embracing-decentralization-whats-next-for-the-near-wallet/ - - - Wed, 12 Jul 2023 16:30:00 +0000 - - - - /?p=20715 - - When NEAR Mainnet launched in late 2020, it included a wallet built and hosted by Pagoda’s (then known as Near …

    -

    The post Embracing Decentralization: What’s Next for the NEAR Wallet appeared first on NEAR Protocol.

    -]]>
    - When NEAR Mainnet launched in late 2020, it included a wallet built and hosted by Pagoda’s (then known as Near Inc.) core team on https://wallet.near.org/ to support NEAR’s unique account model. Nearly three years later, the NEAR wallet ecosystem is home to a myriad of high quality, open source wallets supported by NEAR’s community of active contributors. This significant milestone reflects NEAR’s ongoing commitment to empower users and foster decentralization. The evolution of NEAR wallets also showcases the substantial growth of the ecosystem, as NEAR now supports a diverse list of cross-chain wallets, as well as native wallets with innovative onboarding approaches such as FastAuth.

    - - - -

    To celebrate these excellent contributions from across the NEAR community, and to reflect the priority of decentralization, over the next few months Pagoda will start migrating the domain https://wallet.near.org/ from being a browser wallet to being a wallet hub. In this way, https://wallet.near.org/ will become the reference place for all NEAR wallets, allowing users to discover and implement the right wallets for their specific needs.

    - - - -

    If you currently use https://wallet.near.org/ as your main wallet, you have nothing to worry about. The Pagoda team has been working hard to build a Wallet Transfer Wizard to help you transfer your accounts to a new wallet easily and smoothly, while keeping your funds and assets safe. The Transfer Wizard will allow you to choose between Browser and Extension-based wallets, so you will still have the same friendly wallet experience you are accustomed to after the Wizard is finished.

    - - - -

    For more details, visit the Migrating from NEAR Wallet page. 

    - - - -

    Timeline for transitioning the main wallet domain 

    - - - -

    The NEAR Wallet will remain a browser wallet until January 1st, 2024, during which time the wallet will encourage and help you to transfer your accounts to a new wallet. You can do this manually with your recovery phrase or use the Transfer Wizard to securely migrate your accounts to the wallet of your choice. 

    - - - -

    Do not worry if you have not transferred your accounts by January 1st, 2024 the Transfer Wizard will still be available after the wallet functionality sunsets. Rest assured that your assets will remain secure until you import them to a new wallet.

    - - - -

    The Transfer Wizard will remain available on the new wallet landing page at wallet.near.org indefinitely. This repurposed page will act as an introduction to the various options for wallets in the NEAR ecosystem.

    - - - -

    A new era for NEAR Wallets

    - - - -

    This new step moves NEAR closer to achieving a truly decentralized ecosystem driven by its own community. Thanks to the wallet hub and the wallet selector (which enables the use of any compatible NEAR wallet in web applications), users will now be able to use any wallet they like. This will not only improve their experience on NEAR, but also the full spectrum of available Web3 experiences thanks to the BOS.

    -

    The post Embracing Decentralization: What’s Next for the NEAR Wallet appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/transfer-wizard/index.html b/public/blog/tag/transfer-wizard/index.html deleted file mode 100644 index a8c8a1d56..000000000 --- a/public/blog/tag/transfer-wizard/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Transfer Wizard Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/transparency-report/feed/index.xml b/public/blog/tag/transparency-report/feed/index.xml deleted file mode 100644 index 40e29aa27..000000000 --- a/public/blog/tag/transparency-report/feed/index.xml +++ /dev/null @@ -1,2373 +0,0 @@ - - - - Transparency report Archives – NEAR Protocol - - /blog/tag/transparency-report/ - - Wed, 12 Jul 2023 17:09:04 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Transparency report Archives – NEAR Protocol - /blog/tag/transparency-report/ - 32 - 32 - - - NEAR Foundation Transparency Report: Q2 2023 - /blog/near-foundation-transparency-report-q2-2023/ - - - Mon, 10 Jul 2023 19:30:34 +0000 - - - /?p=20705 - - Hello, NEAR World! Welcome to NEAR Foundation’s Transparency Report. Published quarterly, the Transparency Report explores the NEAR ecosystem’s progress, as …

    -

    The post NEAR Foundation Transparency Report: Q2 2023 appeared first on NEAR Protocol.

    -]]>
    - Hello, NEAR World! Welcome to NEAR Foundation’s Transparency Report. Published quarterly, the Transparency Report explores the NEAR ecosystem’s progress, as well as the latest technology news and updates from the NEAR ecosystem. 

    - - - -

    The Q2 edition of the Transparency report features a NEAR Foundation Treasury report and a variety of exciting updates on the recently announced Blockchain Operating System (BOS), the NEAR ecosystem’s thriving projects, and NEAR Foundation’s Web2.5 strategy. You’ll also get the latest on NEAR Horizon Accelerator, NDC, NEAR’s Web2 → Web3 partnerships, and more. 

    - - - -

    NEAR Foundation Treasury Update 

    - - - -

    At the end of Q2 2023, NEAR Foundation’s treasury totaled $0.9b, which included $349M fiat reserves, 315M NEAR ($435M at a closing price of $1.38) and $90M in Loans and Investments. Total treasury holdings declined $0.2B in the quarter, led by a fall in the price of NEAR to $1.38 from $1.99. Net $16M fiat and 1m NEAR was deployed in Q2.

    - - - -

    The NEAR Foundation has continued to adopt a highly responsible approach to treasury management in order to minimize the risk of loss in a turbulent market, while continuing capital deployment to fulfill its mission. Exposure to non-NEAR assets therefore has been limited, with fiat reserves held in highly rated Swiss bank accounts. 

    - - - -
    - - - -

    NEAR Foundation continues to maintain sufficient resources and runway to thrive in a multi-year market downturn, deploying capital in a targeted and responsible manner to help the NEAR ecosystem thrive and remain vibrant. As a result, the NEAR Foundation is in an extremely strong position to continue to support the ongoing growth and development of the NEAR Protocol and ecosystem.

    - - - -

    A recap of NEAR’s go-forward strategy 

    - - - -

    Since the Q1 transparency report, the industry has faced some significant headwinds, such as the SEC action against Binance and Coinbase. (You can see our response to the SEC action here.) Amidst a turbulent market, the NEAR Foundation’s vision and mission remain the same: we believe in building a better web — the open web — and our mission is to foster the adoption of the open web by supporting the self-sustainable growth of a decentralized NEAR ecosystem.

    - - - -

    As mentioned in the Q1 transparency report, to effectively move closer towards our collective vision, the NEAR Foundation has focused on 3 core strategies:

    - - - -
      -
    1. NEAR is the Blockchain Operating System (BOS): the open web is only possible with an open operating system, which only NEAR can deliver.
    2. - - - -
    3. NEAR is a thriving, decentralized ecosystem: the open web will lead to a safer, fairer, and censorship-resistant digital world.
    4. - - - -
    5. NEAR is where Web2 goes to become Web3: the open web will be the next generation of the internet, and will only reach mainstream if users from Web2 are migrated from Web3.
    6. -
    - - - -
    - - - -

    To achieve these strategies, NEAR Foundation is focused on two different approaches to bringing more users to NEAR. It begins with NEAR Foundation’s top-down approach to partnerships led by a world-class business development team. By working with major applications and brands with substantial, established communities, NEAR Foundation is partnering on real use cases that drive engagement on the BOS. High-traction use-cases for partnerships have primarily been around loyalty — especially across sports, gaming and retail. 

    - - - -

    Q2 saw a flurry of high profile announcements, including MarbleX, Shemaroo, Alibaba Cloud, Cosmose, and Skoda. There has also been a focus on bringing projects from other Web3 ecosystems onto the BOS, and many are leveraging the decentralized frontend component of BOS, including brands like Galxe.

    - - - -

    Q2 has also seen NEAR Foundation’s bottom-up, grassroots approach continue in full swing. Decentralization is a core principle of the Foundation —  it is key to the success of NEAR, as it creates a more fair and inclusive ecosystem for devs and end users alike, and continues to empower more activity in the wider community. The Foundation has supported the successful transition of the Marketing & Creatives DAO into the NDC, becoming fully autonomous entities funded by the NDC itself. The Foundation has also been supporting the NDC to be fully autonomous with its own treasury, and to take control of key community ceremonies like the Town Hall and Ecosystem Roundtable. NEAR Horizon is also a key part of the bottom-up approach, providing projects with much needed acceleration support. This quarter, Horizon launched with a bang at Consensus, and has started supporting its first batch of projects. NEAR Horizon has partnered with some top backers and service providers to ensure projects have the right resources to grow.

    - - - -

    Although not directly responsible for it, NEAR Foundation believes the overall development of the Blockchain Operating System itself — a common layer for discovering and creating open web experiences, across all blockchains — is key to enabling the ecosystem to thrive. The BOS is built on top of NEAR’s scalable, cost-effective, sustainable Layer 1. The layer 1 itself also has an ambitious roadmap to continue its groundbreaking development.

    - - - -

    The Foundation has been working closely with Pagoda and DevHub to ensure that the BOS supports the entire ecosystem and puts the builder at the heart of everything it does.

    - - - -

    Q2 Ecosystem OKR performance 

    - - - -
    - - - -

    Throughout Q2, the ecosystem has experienced several areas of growth towards its OKRs. While the ecosystem met many of its goals, there is always work to be done. 

    - - - -

    Our north star metric, Monthly Active Accounts, was at 1.1M at the end of Q2, 100k shy of the 1.2M target. We’ve seen continued strong traction from SWEAT, who are still the largest partner on NEAR in terms of MAA. The slight miss to the goal can mainly be attributed to longer than anticipated lead times in partnerships going from announcement to mainnet.

    - - - -

    The TL;DR on ecosystem OKR performance this quarter (see below for more detailed analysis): 

    - - - -
      -
    • NEAR is the BOS -
        -
      • Successful launch and migration of near.org on to the BOS — this was done at Consensus with a huge activation. 
      • - - - -
      • Sustained growth in the NEARProtocol Twitter following, hitting 1.9M followers — slightly short of the 2.2M target.
      • - - - -
      • A 3X increase in our Share of Voice to 15%, a huge uplift versus the target, driven primarily by the BOS launch and key partnership announcements.
      • - - - -
      • 16,000 active accounts on near.org since its launch in April.
      • -
      -
    • - - - -
    • NEAR is a thriving decentralized ecosystem -
        -
      • Marketing & Creatives DAO now fully transitioned to the NDC.
      • - - - -
      • NDC v1 Governance is about to be rolled out after hitting its key milestone of over 1,000 humans now participating.
      • - - - -
      • NPS in the community remains around 30, despite a target to grow to 40. 
      • - - - -
      • NEAR Horizon launched successfully its MVP with over 110 projects now on the platform
      • - - - -
      • External capital raising for projects on NEAR remains a challenge, driven mainly by the current climate. 
      • -
      -
    • - - - -
    • NEAR is where web2 comes to become web3 -
        -
      • 42 new strategic partners have been signed in Q2, including the announcement of 7 flagship deals and over 15 tier 2 deals. The challenge here remains the lag between announcement and launch on mainnet. 
      • -
      -
    • -
    - - - -

    OKR1: NEAR is the BOS 

    - - - -

    NEAR’s Blockchain Operating System is key to the creation and maintenance of a thriving ecosystem. A common layer for creating and discovering open web experiences, the BOS is designed to be used across all blockchains — all in one browser. In this way, the entire open web can become integrated and truly composable on a global level. 

    - - - -

    The BOS is an operating system designed specifically for the open web — built atop the layer 1 NEAR Protocol. Usable by any blockchain or dApp, the BOS allows the effortless creation and distribution of innovative decentralized apps across any blockchain. On the BOS, developers can build quickly using existing components in languages they already know, like Javascript, as well as leverage its social network to find, connect, and build communities on NEAR and beyond.

    - - - -

    The NEAR Protocol itself, the Layer 1, is a core part of the BOS tech stack and continues to be developed as the scalable, cost-effective, and simple backend to any Web3 tech stack.
    After a strong soft launch for the BOS at ETHDenver, in Q2 we saw the BOS launch fully at Consensus,  transforming near.org into a full BOS gateway — meaning that the entire site is now on chain, utilizing the full benefit of the BOS tech stack. The launch was incredibly well received, seeing a solid amount of coverage across media outlets such as Bloomberg, CoinMarketCap and Coindesk, as well as a strong increase in SOV across social platforms. 

    - - - -

    Near.org now has over 6,800 components from around 100 active developers, along with over 12,000 accounts. What this means is that NEAR now has over 1% of existing community members on the near.org gateway, and we continue to see members of the ecosystem onboarding to BOS, contributing and using applications. Aside from near.org component builders, from the latest Electric Capital report, there are over 500 active developers within the NEAR ecosystem.

    - - - -

    The NEAR DevHub continues to make progress evolving how developers interact with the BOS, through the launch of bounties, and support across ETHGlobal hackathon events such as ETHPrague and ETHWaterloo. NEAR DevHub is a decentralized community platform, built on the BOS, for NEAR developers to contribute to the ecosystem and stay informed about the latest news. It enables anyone to share ideas, match solutions, and access technical support and funding.

    - - - -

    NEAR Foundation also announced NEARCON 2023, which is set to return to Lisbon this November, the planning of which is already building on last year’s huge success. The nearcon.org site is now live, marking the first fully decentralized event site built on the BOS. Nearcon.org makes it possible to  buy your tickets in NEAR or Fiat, and see all the upcoming information for this year’s event.

    - - - -

    Although the NEARProtocol handle will come close to 2.2M followers in Q2, there has been a conscious strategy to slow down this acquisition to focus more on engagement based activity beyond just Twitter. Our conviction — based on data analytics — is that we now have a large % of high quality, relevant followers who can keep up-to-date with NEAR news and the ecosystem.

    - - - -

    The NEARProtocol Twitter handle also saw a huge uplift in Share of Voice, achieving over 15% in June — a key metric for measuring awareness and engagement of NEAR in relation to our competitor set. This measure takes the top 1,000 influencers in Web3 and measures how many times NEAR is mentioned versus other Web3 ecosystems. This has been primarily driven by the BOS narrative itself, but also from some of the high profile partnership announcements and events.

    - - - -

    OKR2: NEAR is a thriving decentralized Ecosystem 

    - - - -

    NEAR Foundation continues to make great progress in its mandate to support the decentralization of the NEAR ecosystem since the last transparency report. The NEAR Foundation remains deeply committed to supporting the decentralization of the NEAR ecosystem. By decentralizing, NEAR ensures that power lies with the community upon which the vibrant ecosystem thrives, and gives the worldwide community a voice in the future of blockchain and Web3. 

    - - - -

    NEAR Digital Collective (NDC)

    - - - -

    Since the last transparency report the NDC, along with support from the Foundation, has made excellent progress with the NDC being open to funding requests, the launch of “I Am Human” for voting integrity, and purpose trusts set up for Marketing and Creatives DAOs, which will allow for greater autonomy of the DAO community. We talk about these initiatives in more detail below.

    - - - -

    The NDC — the largest decentralization project in the NEAR ecosystem to date — is bringing together users, developers, and creators throughout the ecosystem with its innovative framework of governance. By developing this framework, it allows any member of the network to have a say in how NEAR is run by combining transparency, collective decision making, evolving governance models, and self-determination in a completely new way. 

    - - - -

    As part of its V1 Governance and in a partnership with Fractal, the NDC launched the I Am Human initiative, a “proof-of-personhood” where participants can get verified through a quick and simple process and mint a “Soul Bound Token”. This will facilitate integrity and fairness of the on-chain voting system, ensuring that each person can only vote once. By mid-June, the I Am Human Protocol verified over  1,000 people — a remarkable achievement for the NDC and decentralization. 

    - - - -

    In Q1, the NDC launched the Community Treasury with a budget of 5.7 million NEAR to support the development of the NEAR ecosystem. Following this launch, the Governance Working Group (GWG) and Legal Working Group (LWG) worked together on a set of terms and conditions to foster transparency and accountability of contributors requesting funding from the NDC. The process is now live. 

    - - - -

    The NEAR Community Treasury wallet is viewable here.

    - - - -

    Moving forward, the NDC will focus on increasing engagement and creating an even bigger impact on the community. It currently has a “Run for Office” call for contributors who want to participate in its governance and leadership. This is a great opportunity for motivated individuals to help build the open web we all believe in. 

    - - - -

    The NEAR Foundation is working with the GWG (Governance Working Group) and LWG (Legal Working Group) to provide educational tools to members of the community who are thinking of building (or scaling their existing projects) on the NEAR protocol. Keep an eye out for announcements!

    - - - -

    In the meantime, to learn more about the NDC and to participate in the projects and discussions, please see here

    - - - -

    Grassroots DAO funding activity

    - - - -

    The three core grassroots DAOs remain the key source of funding for anyone looking to build in the NEAR ecosystem. Confirming the NEAR Foundation efforts to decentralize operations and promote autonomy of the ecosystem, CreativesDAO now has set up its own community treasury via a Guernsey purpose trust similar to the NDC, and started allocating funding again. The DAO is now able to request funding directly to the NDC, making the process community-owned in its entirety.  

    - - - -

    Marketing DAO followed suit and its community treasury has recently been set up. Find more details in the announcement here. In addition to the trust, the MarketingDAO Charter has now been published, outlining its governance rules. 

    - - - -

    DevHub has also started the process of establishing its community treasury and we will have more developments in the near future. In the meantime, NEAR Foundation and DevHub worked together on automated flow for funding requests which greatly reduced completion time.

    - - - -

    NEAR Foundation recognises the exceptional work of the NDC and core DAOs. The Foundation will continue to support decentralization initiatives and the growth and development of the NEAR community.

    - - - -

    NEAR Horizon  

    - - - -

    NEAR Horizon is an early stage accelerator, coordinated by the NEAR Foundation, that’s revolutionizing how founders and builders find support in Web3. The mission of NEAR Horizon is to attract high-quality founders to build on NEAR and support their growth by facilitating connections with the right resources all in one place. The NEAR Horizon strategy consists of three main components: the Horizon dApp, partnerships, and easily accessible content resources.

    - - - -

    Horizon dApp

    - - - -

    Horizon has seen significant growth since launching April 26th, 2023. Over 160 projects and 30 contributors have produced 1,000+ transactions. The newly added service providers (sourced from the initial RFP in Q1) all bring a unique blend of talent, expertise, and innovative solutions, contributing to the diverse and vibrant ecosystem of NEAR Horizon. 
    Another exciting feature of Horizon is the Learn section. Founders at all stages can take advantage of a curated list of resources to best help where they need it the most, such as: Business Fundamentals, Growth and Marketing, Recruiting and Legal, and Technical areas.

    - - - -


    Horizon Partnerships

    - - - -

    For founders looking for additional support and guidance throughout their Horizon journey, the platform will also be equipped with programs facilitated through a NEAR Foundation partner, providing mentorship, business resources, and a direct line to startup capital. 

    - - - -

    These programs are available through a wide range of industry leading groups including Antler, Brinc, FabricX, CV Labs, Blockchain Founders Group, Decasonic and Dragonfly amongst others. Regardless of the path founders choose to take, NEAR Horizon will provide them with the support they need when they need it most to accelerate the growth of their Web3 projects built on NEAR.

    - - - -

    Our educational program partners design hackathons, fellowships, and educational content for students, early-career engineers, and current founders. We are excited to be partnered with Encode Club and Major League Hacking, who have both kicked off their various initiatives with NEAR Horizon in Q2. 

    - - - -

    In addition to working with a few chain-agnostic acceleration programs with a goal of bringing new projects to the growing NEAR ecosystem, we’ve also partnered with Outlier Ventures and Startup Wiseguys to facilitate a NEAR-specific acceleration program. The first Outlier Ventures cohort is set to kick off in July, and we look forward to bringing an update to the Q3 report. 

    - - - -

    We are also partnering with Web3 communities, DAOs, and incubators to provide workshops and resources to current and aspiring founders such as the NYC demo day in partnership with Banyan Collective, and another exciting Grants Demo Day hosted by Mintbase at the end of June. 

    - - - -

    Horizon was proud to host Pitch and Networking events at both Consensus and Collision, including fantastic speakers from Decasonic, Fabric, Press Start Capital and others. Over 100 projects applied to pitch and more than 500 people registered to attend and network. 
    The NEAR Horizon team is continuing to expand our community through founder experiences, engaging over 100 founders to-date. The Horizon team hosts weekly office hours, AMAs with service providers, and product demo days for founders to source live feedback on their products. To stay current on all the activities of NEAR Horizon follow us on NEAR.social @nearhorizon.near or on twitter.

    - - - -

    OKR3: Web2 → Web3 

    - - - -

    The NEAR Foundation BD team exceeded its goal in H1 2023 by bringing 74 partners to the NEAR blockchain versus a goal of 27. The 48 partnerships closed in Q2 also marked a significant increase from the 26 in Q1. The majority of these partners were considering other chains yet chose NEAR due to its focus on bridging Web2 with Web3, usability, conservative approach, and strong partner support.

    - - - -
    Number of partnershipsActualGoal (set in Jan ‘23 based on prior year #)
    Q12610
    Q24817
    Total7427
    - - - -

    In Q1 and Q2, BD had a targeted approach to focus on five main areas that we believe are uniquely unlocked by Web3: loyalty & rewards, social and the creator economy, gaming and the metaverse, sustainability, and infrastructure. The NEAR Foundation continues to partner with startups, as well as enterprises and governments. 16 of the 74 closed partnerships were with enterprises or governments. 

    - - - -
    Category# of Partnerships (Q1 + Q2)
    Loyalty & rewards19
    Social/creator economy12
    Gaming/metaverse12
    Sustainability6
    Infrastructure18
    Other7
    - - - -

    Loyalty and rewards: Loyalty  is a focus for us because loyalty in Web2 is broken. From sports teams to  movie studios there is a common problem. They lack a direct relationship with their customers. Simultaneously, consumers and fans are seeking new ways to demonstrate and be rewarded for their patronage. Web3 helps loyalty programs shift to open ecosystems, enables brands to build direct relationships with customers, and fosters composability among loyalty programs. 

    - - - -

    Notable partnerships:

    - - - -
      -
    • Cosmose AI — Loyalty-based shopping app that enables users to buy with crypto in order to lower transaction fees for both merchants and consumers. Cosmose represents a practical and real-world use case with initial traction in Singapore.
    • - - - -
    • Santo Spirit — Tequila brand of Sammy Hagar and Guy Fieri is launching a loyalty program on NEAR that includes virtual tastings, autographed collectibles and mystery NFTs for patrons.
    • - - - -
    • Tokenproof — Tokenproof powers custom, token-gated experiences for some of the most notable Web3 communities and the biggest Web2 brands via gated Shopify storefronts and real world interactive experiences.
    • -
    - - - -

    Creator economy: The NEAR Foundation has partnered with a number of entrepreneurs in the creator economy. These builders are using Web3 to give creators greater ownership and control, new monetization and royalty channels, and novel ways to interact with their community. Similarly, we are excited about new blockchain-based decentralized social networks and closed 2 partners who are building exclusively on NEAR (not yet announced). 

    - - - -

    Notable Partnerships:

    - - - -
      -
    • SLiC Images  — A digital rights-management platform for independent photographers and videographers to license and monetize their content founded and led by former NBA all-star Baron Davis and built on Mintbase technology.
    • - - - -
    • ARterra — ARterra is  leveling up fan engagement tools for game developers, individual creators, and brands via its Web3-based battle pass, quest, and duel systems that integrate seamlessly with Web2 platforms such as Discord, Youtube Gaming, and Twitch, as well as Web3 games.
    • - - - -
    • Djooky — Djooky is a music streaming and discovery tool that combines an online music competition with a marketplace. Musicians  can participate directly in the marketplace or get discovered by voting fans who earn rewards for being talent scouts  during the quarterly competitions. 
    • -
    - - - -

    Gaming and Metaverse: This is another focus area since Web3 unlocks new forms of digital ownership and in-game economies. In gaming, while not exclusively focused on Korea, we are spending considerable effort there given Korea’s history as a pioneer in gaming monetization, and Korean studios’ deep expertise in Web3, especially compared to other regions.

    - - - -

    Notable partnerships: 

    - - - -
      -
    • Netmarble — One of the largest game publishers worldwide is bringing a suite of Web3 games to NEAR.
    • - - - -
    • Vortex — Web3 subsidiary of INVEN, the “Reddit of Korea” and largest game media community in Korea with over 7M monthly active users is building exclusively on NEAR.
    • - - - -
    • PipeFlare — A provider of 17 casual Web3 games is transitioning from another chain to integrate exclusively with NEAR.
    • -
    - - - -

    Sustainability: The NEAR Foundation continues to back entrepreneurs and governments trying to solve environmental problems by leveraging the blockchain. Web3 can support supply chain transparency, verification and proof of green initiatives, and carbon credit systems. 

    - - - -

    Notable partnerships:

    - - - -
      -
    • SankalpTaru — One of the largest sustainability NGOs in India is leveraging the blockchain to bring accountability and transparency to afforestation activities. They have planted over 3.5 million trees and supported  over 30,000 farmers. 
    • - - - -
    • Raigarh District Administration — This district in India launched a blockchain based monitoring system for tracking industrial corporate social responsibility afforestation activities. In addition to the government participation, over 50 industry participants are involved in the initiative. 
    • - - - -
    • Flow Carbon — One of the pioneering climate technology companies, they are working towards bringing carbon credits onto the blockchain. Carbon offsetting will become more accessible and transparent to major institutional players through leveraging the power of blockchain technology.
    • -
    - - - -

    Infrastructure: This is an important focus for NEAR Foundation partnerships as it serves as the building blocks for new use cases. We aim to foster an environment that empowers builders through innovative infrastructure that helps projects better prototype and develop, communicate, and scale.

    - - - -
      -
    • Alibaba Cloud — Alibaba Cloud is collaborating with NEAR Foundation to provide Remote Procedure Call (RPC) as a service to NEAR ecosystem projects. In addition, Alibaba Cloud will focus on multi-chain data indexing which helps drive the adoption of the Blockchain Operating System (BOS) through supporting interoperability across different blockchains. 
    • - - - -
    • Urbit — An operating system designed to run peer-to-peer apps. Combined with the BOS, we hope to build the world’s first fully decentralized development environment.
    • - - - -
    • Fractal — One of the leading Web3 native identity infrastructure providers, Fractal will build important decentralized identity frameworks for the BOS.
    • -
    - - - -

    Supporting Existing Partners

    - - - -

    During Q2, the BD team also made significant progress in implementing the NEAR Foundation’s product strategy centered around the Blockchain Operating System (BOS). Workshops targeting both new potential partners and existing partners were organized, aiming to educate on the new BOS product strategy. These workshops were attended by 80% of our partners and have helped build awareness and understanding in the ecosystem about the potential of BOS in the market.

    - - - -

    Our existing partners have played a crucial role in driving our success in Q2. By collaborating closely with them and supporting their initiatives, we have achieved significant milestones and further strengthened our ecosystem.

    - - - -

    Identifying successes:

    - - - -
      -
    • SWEAT — The number 1 free app in over 60 countries which rewards users daily steps with a new-generation currency, launched a highly successful USDT campaign that acquired over 300K monthly active users (MAUs). Plans for supporting SWEAT’s launch in the US during Q3/Q4 are in place. Additionally, the testing and launch of Web3 new products, such as the Swap Feature and NFT game, are currently underway, aimed at further engaging new users.
    • - - - -
    • Cosmose AI — A $500M global platform that predicts and influences how people shop, secured approval from smartphone manufacturers to launch the Web3 version of their Lockscreen product, scheduled for Q4 2023. This is a significant milestone as Cosmose AI continues to apply web3 principles to further advance the AI-driven retail ecosystem. Next up in Q3 will be the launch of their cash back product (Kai-Kai) on mainnet.
    • - - - -
    • PlayEmber — A mobile game studio built on NEAR and backed by Big Brain Holdings, Shima Capital and others, received approval from both App Store and Google Play for the launch of the new version of their app, responsible for  51K MAUs, doubling their pre-app store listing numbers.
    • - - - -
    • Mintbase — A leading NFT marketplace built on NEAR celebrated the impact of their grantees on the ecosystem, highlighting their progress and achievements supported by the Mintbase Grants Program. 13 projects have been successfully nurtured through this program: NiftyRent, Namesky, QSTN, Explorins,Ailand, PWX, WallID  Roketo, Gorilla Shops, Cootoo, SLIC Images, Puzzle Task, and Everything.
    • -
    - - - -

    Geographical Focus

    - - - -

    The NEAR Foundation has taken an international approach to BD focusing on North America, EMEA, and Asia, specifically Korea, India, and Singapore. While the environment in North America remains uncertain for many entrepreneurs and enterprises due to ongoing concerns around regulation, we are continuing to see strong interest in Web3 in EMEA and Asia. BD will continue to prioritize these regions in 2023.

    - - - -
    Location# of Partnerships (Q1 + Q2)
    North America29
    EMEA14
    Asia29
    Other2
    - - - -

    We have always had an international footprint, and continue to foster communities around the world to thrive. NEAR community hubs generate local awareness and onboard new users, as well as support projects building on NEAR. Led by local entrepreneurs, and operating as independent legal entities, these hubs are crucial in helping NEAR Foundation reach its missions and objectives around the world. 

    - - - -

    NEAR Foundation has been supporting, through grants, two types of Regional Hub models — community hubs and partnership hubs. The goal of the community regional hubs is to build local community presence in regions, specifically targeted towards builders and those who want to get involved in NEAR’s decentralized ecosystem, as well as to build brand awareness in those regions. Partnership hubs have the specific mandate to forge deep relationships with partners in the region to build on the BOS.

    - - - -

    Starting with partnership hubs, NEAR Foundation made significant strides in expanding its presence in India and Korea during Q2, securing pivotal deals and paving the way for further geographic expansion.

    - - - -

    Korea

    - - - -

    We achieved significant progress in Korea with strategic wins, strengthening our position in what we consider a leading blockchain market. In Q1/ Q2, we closed 9 partnerships focused on gaming, entertainment and infrastructure to increase NEAR’s awareness and traction for chain adoption. Gaming is especially interesting in Korea due to the large audience, established game studios and blockchain expertise. Being a key part of the strategy, gaming  has strong blockchain use cases with digital ownership, in-game economies and monetization models. We partnered with top Korean gaming industry leaders such as Netmarble’s MARBLEX, the blockchain-powered subsidiary of the well-established developer and  publisher of mobile games, and Vortex Gaming, the Web3 subsidiary of Korea’s largest gaming community INVEN, to drive future growth. 

    - - - -

    In addition to gaming, we announced an exciting business partnership with Mirae Asset, a subsidiary of Asia’s largest financial group, Mirae Asset Global (headquartered in South Korea), to develop Web3 technology. Xangle, a leading South Korean crypto data and research platform, has added metrics for NEAR Protocol and the Sweat Economy to make information on the NEAR ecosystem more accessible in the region. With the deals signed, partnership announcements, community activations and development activities, we are very excited for the future opportunities in Korea. 

    - - - -

    India

    - - - -

    In India, we have achieved noteworthy progress on multiple fronts. In Q1/ Q2, we closed 12 partnerships focused on government, sustainability, entertainment, and the infrastructure space. Industry leading  partnerships such as Skoda and Shemaroo, will act as lighthouse partnerships for the region. In addition to the enterprise use cases, NEAR enabled sustainability and impact projects with SankalpTaru and District administration Raigarh (State of Chhattisgarh)  to bring transparency, traceability, and accountability in afforestation initiatives. We continue to engage with the developer community in India and raise awareness about BOS. We achieved substantial media coverage in India, further consolidating the brand awareness. In addition, we are engaging think tanks and government bodies by conducting/participating in Web3 workshops and brainstorming sessions to bridge the awareness gap.  

    - - - -

    - - - -

    Building stronger connections with the NEAR ecosystem 

    - - - -

    After efforts in generating and implementing feedback from the NEAR community, NEAR Foundation’s Community Team has kicked off several initiatives that have been driving engagement, including: 

    - - - -
      -
    • Actively leveraging NEAR platforms such as the Official NEAR Discord, Telegram, and NEARProtocol Twitter, the NEAR Foundation Community Team has been running regular Twitter Spaces and AMAs with many NEAR projects to continuously surface the many amazing things being built on NEAR throughout the wider network.
    • - - - -
    • NEAR Foundation’s commitment to transparency and stronger community connections continues through bi-weekly live Town Halls. These sessions, which take place every other Wednesday at 3:00 pm UTC on the NEARProtocol YouTube channel, provide an open platform for the NEAR Foundation leadership team to share progress on OKRs and for the core teams to deliver updates. NEAR ecosystem project teams and NEAR Foundation partners also have the opportunity to showcase what they’re actively building on NEAR. In the endeavor to further engage and boost community interaction, a Town Hall Hub has recently been developed on the BOS. This portal aims to serve as an open forum for all discussions, recommendations, and dialogues surrounding the Town Halls. It’s not just about receiving updates — it’s also about giving the NEAR community the power to shape and participate in these conversations. 
    • - - - -
    • To boost active community participation and drive engagement, the Foundation’s Community Team has been running weekly Quiz Night events on the NEAR Protocol Telegram. This initiative is designed to not only drive community engagement but also to create a cohesive and informed community, deeply aligned with NEAR Foundation’s mission and vision. We’ve put together a concise report on the recent success and feedback this initiative has received, which you can check out here.
    • -
    - - - -

    NEAR in the press 

    - - - -

    Q2 saw a number of top news stories from NEAR’s thriving ecosystem. NEAR was covered in over 300 articles across the globe in Q2, including over 20 tier 1 stories in outlets including  TechCrunchCoinDesk, Forbes  Journal du Coin , Entrepreneur India,  Business Insider Africa, Yahoo Finance  Yahoo Japan, Korea Herald, New Economy Japan  and Bloomberg. NEAR also appeared in over 40  tier 2 publications in outlets including the Block,  City AM, Blockworks, and Cointelegraph.

    - - - -

    Headlines included BOS going live, the launch of Horizon, and the Women in Web3 Changemakers list, as well as coverage from many of our partnership announcements, ecosystem hubs, and progress from many of NEAR Protocol’s ecosystem projects. Stories that made an impact included Cosmose AI partnering with NEAR protocol, collaborations with Alibaba, Skoda India, Vortex Gaming and Mirae Asset in Korea, and the launch of SailGP’s Web3 driven app The Dock, as well as Santos Spirit Tequila’s NFT.

    - - - -

    To find out more about NEAR Foundation’s and the NEAR ecosystem’s press coverage you can check out the  monthly roundups below:

    - - - -

    NEAR Foundation PR Roundup for April

    - - - -

    NEAR Foundation PR Roundup for May

    - - - -

    NEAR Foundation PR Roundup for June

    - - - -

    Ecosystem Highlights 

    - - - -

    NEAR Ecosystem on BOS

    - - - -

    With the announcement and launch of the Blockchain Operating system earlier this year, we have seen a splash of developments from projects both in and outside of the NEAR ecosystem building on BOS and deploying widgets and front ends. In Q2 we have seen both existing and new NEAR projects building on BOS, including Harmonic Guild, Flipside, Satori, Pikespeak, Genadrop, NEARWEEK, and others. These amazing teams are building components ranging from audio/video distribution platforms, data & analytics dashboard tools, no-code multi-chain NFT creation & minting tools, DAO tools, and news & media. We also saw an incredible example of BOS’s interoperability with Zavodil’s composable multi-chain app that seamlessly integrates with any connected blockchain wallet.
    Also in Q2, Galxe — a leading Web3 community building platform with over 10 million unique users to date — also deployed a component on BOS with the aim of bringing a seamless onboarding experience for SPACE ID’s referral program, “Voyage Season 2”. This integration makes Galxe the first major Web3 partner utilizing NEAR’s BOS for its offerings, simplifying the process for users to register .bnb domains and participate in the SPACE ID Voyage program through near.org.

    - - - -

    NEAR’s BOS promotes collaboration among builders by allowing them to fork and build reusable on-chain widgets, deploy decentralized front ends, as well as discover other dApps, components, and communities — all on one platform. This makes it easier for builders to create multi-chain experiences, extending NEAR beyond just being another Layer 1 network and transforming it into a decentralized OS that fosters collaboration across ecosystems.

    - - - -

    NEAR Ecosystem Project Updates

    - - - -

    In Q2, the NEAR ecosystem continued to see projects pushing large developments as well as launching on NEAR in verticals ranging from DeFi and payment solutions, to gaming and infrastructure. A few examples follow. 

    - - - -

    ChangeNOW, a leading cryptocurrency payment gateway, stepped up their game by incorporating NEAR, opening up new avenues for businesses to transact using NEAR tokens. Meanwhile, WOOFi DEX made its debut into on-chain derivatives on NEAR, rolling out the beta version of its perpetual futures powered by Orderly Network. The platform offers users the convenience of centralized exchanges coupled with the self-custody benefits of decentralized exchanges, shaping the future of on-chain derivatives trading.

    - - - -

    Further diversifying NEAR’s ecosystem, Namesky launched on NEAR Mainnet in Q2. Leveraging NEAR Protocol’s default feature of unique named wallets, Namesky acts as a marketplace for buying and selling NEAR accounts as NFTs using audited contracts, akin to having Ethereum Name Service (ENS) on NEAR.

    - - - -

    Expanding NEAR’s cross-chain relationships, Duel Network (originally a BSC project) expanded their presence on NEAR with the launch of Duel Soccer. This integration not only broadens NEAR’s ecosystem but also elevates Duel Network’s visibility across multiple chains.

    - - - -

    In the realm of security/trust, Gatenox, a specialized Web3 KYC platform, integrated with NEAR, making its KYC services available to NEAR-based projects, offering an extra layer of trust and safety.

    - - - -

    Overall, although there were no projects on NEAR fundraising in Q2, the NEAR ecosystem continued to see growth, innovation, and cross-chain integration.

    - - - -

    AI, ChatGPT, and NEAR

    - - - -


    As interest in AI and ChatGPT continues to grow, we are observing increasingly innovative developments bridging between ChatGPT and NEAR. Among the pioneers working on these developments is Peter Salomonson, a seasoned NEAR builder. Salomonson has integrated NEAR with ChatGPT to create a unique widget that enables users to generate, play, and download their own custom drum beats. 

    - - - -

    The Mintbase team is also adding to NEAR x ChatGPT developments by developing a versatile plugin for NEAR smart contracts and widgets. Mintbase’s integration — developed by team member Luis — is capable of writing, compiling, and deploying contracts, and it can also generate user interfaces based on the contracts’ ABI as well as deploy these interfaces as BOS widgets. 

    - - - -

    These developments are a testament to the continued growth, innovation, and vibrancy of the NEAR ecosystem. They also underscore the origin story of NEAR and its deeply rooted connection with AI. 

    - - - -

    Before co-founding NEAR Protocol, Illia Polosukhin had a rich history in the AI space, having worked on Google’s TensorFlow. When Illia and Alex Skidanov founded NEAR in 2017, it was originally conceived as a machine learning platform. In fact, at the time it was known as Near.ai. This background has informed NEAR’s belief in the intersection of blockchain and AI, and the potential for these technologies to work in harmony to create decentralized, intelligent systems that can drive innovation and empower individuals.

    - - - -

    For more insights on this topic, here are some recent articles featuring Illia and NEAR Foundation CEO Marieke Flament, in which they discuss the intersection of AI and blockchain and the potential of these technologies to revolutionize various industries:

    - - - - - - - -

    A Look Ahead 

    - - - -

    Looking ahead to Q3, the NEAR Foundation is continuing its current strategic focus. 

    - - - -

    In addition, we have worked closely with the ecosystem to paint a more complete picture of what a fully functioning Web3 ecosystem should look like, which is more of a multi pronged approach:

    - - - -

    The overarching framework is made up of three models:

    - - - -
      -
    • Participants Model — the Participants are the entities that take action within the ecosystem. This looks at three core audiences: Developers, Businesses, and Accounts. Developers build applications for Businesses, who in turn create experiences for the Accounts who interact with them. Each audience is important to monitor as each is dependent on each other.
    • - - - -
    • Monetization Model — the Monetization model is the lifeblood of the ecosystem, much like an economy is for a country. Monitoring how capital flows in and out, as well as the transaction volume within the ecosystem, is important to show how prosperous and active participants are within the economy.
    • - - - -
    • Public Goods Model — the Public Goods model underpins the framework, making it like the roads and power supply for a city. At the core is the protocol itself, but it also looks at validators and the overall health of the network.
    • -
    - - - -

    NEAR Foundation has primarily focused on the Participants Model to date, but it’s important we have observability and an aligned ecosystem approach to all metrics within all of these three models. To support this, the NEAR Foundation has helped create the Champions Sync — a collective of key ecosystem participants who are responsible for rallying the ecosystem around areas of the model that need attention. This is still in the early stages, and more about the model and action taken will be circulated shortly.

    - - - -

    NEAR Foundation will continue to focus on unique use cases that drive the adoption of Web3 technology. Our commitment to maintaining a high bar for partnerships and a disciplined approach to capital allocation will remain the cornerstone of our success.  The Foundation will also continue in its bottom up support, being at the service of the community to help empower participants to get involved. We will also continue to support projects to thrive through the NEAR Horizon program. 

    - - - -

    As NEAR continues to drive forward into uncertain market conditions, it’s more important than ever to prioritize the things that matter and stay true to our vision to create the Open Web. 

    - - - -
    - - - -

    This NEAR Foundation Transparency Report (the “Report“) is provided for informational purposes only. The information contained herein is provided on an “as is” basis, and the NEAR Foundation makes no representations or warranties, express or implied, regarding the accuracy, completeness, or reliability of the information contained in this Report.

    - - - -

    The NEAR Foundation, its affiliates, directors, employees, and agents, shall not be held liable for any errors, omissions, or inaccuracies in the information provided herein. NEAR Foundation reserves the right to update, modify, or amend any information contained in this Report without prior notice. This Report is not intended to provide financial, investment, legal, tax, or any other professional advice. Readers should consult with their own professional advisors before making any decisions based on the information contained in this Report.

    -

    The post NEAR Foundation Transparency Report: Q2 2023 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Transparency Report : Q3 2022 - /blog/near-foundation-transparency-report-q3-2022/ - - - Tue, 20 Dec 2022 14:00:00 +0000 - - - - /?p=19603 - - In this second NEAR Foundation Transparency Report covering Q3 of 2022, the Foundation aims to deliver on its commitment to  …

    -

    The post NEAR Foundation Transparency Report : Q3 2022 appeared first on NEAR Protocol.

    -]]>
    - In this second NEAR Foundation Transparency Report covering Q3 of 2022, the Foundation aims to deliver on its commitment to  consistent and frequent communication with the NEAR community. 

    - - - -

    This transparency report is one of NEAR Foundation’s vital contributions to the NEAR ecosystem’s long-term health and viability.

    - - - -

    NEAR Foundation Mission and Purpose

    - - - -

    NEAR’s mission is to:

    - - - -

    Remove every barrier for Web3 creators, by creating an ecosystem that is uniquely simple, safe, scalable, and sustainable.

    - - - -

    The Foundation’s purpose is the promotion and development of new technologies and applications, especially in the fields of open and decentralized software architectures, to enable innovation that benefits people around the world. This includes but is not limited to promoting and developing NEAR Protocol and related technologies, as well as promoting and supporting decentralized applications running on the NEAR Protocol.

    - - - -

    To deliver on its purpose, the Foundation is organized around 3 core areas of focus: awareness, support, and governance.

    - - - -

    Below, the Foundation shares details of how it allocated funding in Q3 of 2022. This includes the rationale informing these decisions as well as insight into future plans as the ecosystem heads into 2023 and beyond.

    - - - -

    Core Metrics

    - - - -
      -
    • The number of accounts on the NEAR Protocol grew from 15.6 million at the end of Q2 to over 20.6 million accounts at the end of Q3
    • - - - -
    • Weekly Active Wallets surged to 280k per week — up from 26k at the end of Q2.
    • - - - -
    • The number of weekly active developers held flat at 1.1k during this period.
    • -
    - - - -

    Total and Circulating Supply

    - - - -

    As of the end of Q3, NEAR’s total supply increased to 1.1b NEAR. This is up 14m compared to  the end of Q2 due to inflation and fewer transaction fees burned. 

    - - - -

    90% of the 5% annual inflation is sent to Validators to be paid out as staking rewards, with the residual 10% returned to the NEAR Foundation Treasury.

    - - - -

    Circulating supply increased 74m NEAR to 798m (73% of total supply) due to further unlocks in both the NEAR Foundation Treasury and contractual vesting schedules.

    - - - -
    - - - -

    Ecosystem Holdings

    - - - -

    At the end of Q3, 67% of total supply had been deployed to projects, partners, contributors, backers, and the broader ecosystem.

    - - - -
    - - - -

    465m NEAR had been staked (42% of total supply), representing 62% of all NEAR owned by the ecosystem.

    - - - -

    126 validators supported the network, with 33% of total staked NEAR delegated to the 9 largest validators.

    - - - -
    - - - -

    The NEAR Foundation Treasury

    - - - -

    At the end of Q3, NEAR Foundation held fiat reserves of $450m and 358m NEAR. 

    - - - -

    The Foundation has continued to adopt a highly responsible approach to treasury management in order to minimize the risk of loss in a turbulent market. Exposure to non-NEAR assets therefore has been limited, with fiat reserves held in AAA-rated Swiss  bank accounts. This strategy helps ensure that the Foundation maintains sufficient resources and runway even if the market downturn lasts for multiple years.. 

    - - - -

    As a result, the Foundation is in an extremely strong position to continue to distribute funds to high-quality projects for the foreseeable future.

    - - - -
    - - - -

    The NEAR Foundation in Q3

    - - - -

    During Q3, NEAR Foundation continued to support high quality projects that will support our mission to onboard 1 billion users.

    - - - -

    In total, the Foundation committed $39M during Q3, further contributing to our Q1’21 commitment of  an $800 million ecosystem fund

    - - - -

    The $800m ecosystem fund is split into four broad groups:

    - - - -
      -
    • $350M – Proximity DeFi Grants – to help projects in the space of financial innovation within the NEAR ecosystem. (Proximity will be publishing its own transparency report on December 21, 2022.) 
    • - - - -
    • $100M – Startup Funds – to decentralize capital deployment into dedicated investment funds within the ecosystem.
    • - - - -
    • $250M – Foundation Grants – to support projects building on NEAR through direct investment and grants.
    • - - - -
    • $100M – Regional Funds – to establish physical hubs in key regions around the world to provide a local presence. 
    • -
    - - - -

    Funds Distributed So Far from $800m Ecosystem Fund (to Partners):

    - - - -
    CategoryAnnouncementQ3 CommitmentsTotal Committed
    Proximity DeFi Grants$350m$350m
    Foundation Grants$250m$26m$159m
    Startup Funds$100m$10m$28m
    Regional Hubs$100m$3m$36m
    Total Ecosystem Fund$800m$39m$573m
    Charity & Education$0m$6m
    Total Capital Deployed$39m$579m
    - - - -

    Below, the Foundation shares details of how it allocated funding as of Q3 of 2022. This includes both the rationale for these decisions and insight into future plans.

    - - - -

    Startup Funds

    - - - -

    Allocation: $100 million 

    - - - -

    Committed: $28 million

    - - - -

    Committed in Q3: $10 million 

    - - - -

    NEAR Foundation believes that it should not be the sole distributor of capital to developers and entrepreneurs within the NEAR ecosystem. As necessary as the Foundation is to NEAR’s growth, decisions should not be made in a vacuum through a single centralized organization. 

    - - - -

    To help decentralize NEAR, the Foundation has in turn decentralized capital deployment. The Foundation has allocated grant funds to MetaWeb, MOVE Capital, Stealth Capital, and Open Web Collective, each of which is focused on funding projects within the NEAR ecosystem according to their own vision. 

    - - - -

    So far, the Foundation has committed $28 million to the existing funds. Specific updates from each fund are listed below:

    - - - -
      -
    • MetaWeb, a NEAR-native investment fund, has raised $30m from Sequoia, in addition to NF. MetaWeb has deployed over $11m across 36 investments to date, including Niche, Orderly, Above.Land, and Sender Wallet.
    • -
    - - - -
      -
    • MOVE Capital is a NEAR-native investment fund that has raised $13m from Accomplice and DCG, in addition to NF. MOVE has made 20 investments to date totalling over $7m, including Tonic, Calimero, Few & Far, and Sweatcoin.
    • - - - -
    • Stealth Capital is an investment fund for founders, and brings a wealth of experience supporting the development of projects on Solana and Polygon, as well as NEAR. Stealth had deployed $6m by the end of Q3.
    • - - - -
    • Open Web Collective is a blockchain accelerator and investor backing the builders of the multi-chain, decentralized web. Open Web Collective’s approach to supporting founders is hands-on, user-centric, and analytical.​
    • -
    - - - -

    Foundation Grants 

    - - - -

    Allocation: $250 million 

    - - - -

    Committed: $159 million

    - - - -

    Committed in Q3: $26 million 

    - - - -

    Foundation Grants cover a broad range of investments from grant allocation to direct investment. Grants are primarily focused on the following verticals: Infrastructure & Integrations, Gaming & Entertainment, NFTs, and DAOs.

    - - - -

    The Foundation has specific strategies for each vertical and has deployed capital across all of them.

    - - - -
    - - - -
      -
    • Infrastructure and Integrations – “Infrastructure” is a catch-all term for key ecosystem partnerships, integrations, and technologies that support access to mainnet and successful development on NEAR. These key components include: frictionless onboarding solutions, wallets, bridges, oracles, custodians, zero-knowledge technologies, privacy tools, and improved tooling for developers. Integrations with the NEAR network are laying the groundwork for the next phase of the community’s growth, which is bringing more users from Web2 into Web3 — what the Foundation calls Web 2.5. The following partnerships have been instrumental in making progress towards this initiative. - -
    • - - - -
    • Gaming / Entertainment – The Web3 gaming space is still wide open and rapidly evolving. The first wave of Web3 games proved that there was consumer demand for blockchain-based gaming. Right now, there is a great deal of room for experimentation, iterating on long-term sustainable models, introducing permissionless composability, and creating new forms of NFTs as well as games that are partially or even fully on-chain. - -
    • - - - -
    • NFTs –  NFTs on NEAR present a massive opportunity, in which NEAR’s flexible infrastructure and focus on usability are ideal for many NFT use cases, especially those focused on utility. With its strong position in the Web3 space, NEAR has the potential to become a leader in fostering sustainable and innovative NFT use cases that provide lasting value for all participants. - -
    • - - - -
    • DAOs – The Foundation believes NEAR has the strongest no-code, easy to use DAO tech stack in Web3 and sees DAOs as key enablers of decentralization. NEAR is helping communities govern their treasuries and activities in a completely decentralized way, with the help of our DAO stack.  We will continue to facilitate DAO use cases in investments, NFTs, gaming, sustainability, science, and beyond. - -
    • -
    - - - -

    In Q3, NEAR Foundation distributed a further $26 million to over 100 projects, including Mintbase, Circle, Satori, Clear Street, and OnMachina, as well as to Caerus to set up an Entertainment Venture Studio.

    - - - -

    Regional Hubs 

    - - - -

    Allocation: $100 million 

    - - - -

    Committed: $36 million 

    - - - -

    Committed in Q3: $3m – Banyan (US Hub), Balkans 

    - - - -

    As part of NEAR’s goal of  reaching a billion people, the Foundation has been actively helping NEAR community projects launch hubs across the globe. To be global, we must first be local — and that means connecting with people where they are and empowering them to build Web3 projects that address their own communities and needs. NEAR Hubs host local events in local languages to find the best people and projects and to forge partnerships with local organizations.

    - - - -

    To date, NEAR Foundation has launched seven regional hubs. An extension for the Balkans Hub and the launch of the US hub were announced in Q3: 

    - - - - - - - -
      -
    • Kenya Hub (Sankore) 
    • - - - -
    • Balkans Hub
    • - - - -
    • Vietnam Hub
    • - - - -
    • India Hub
    • - - - -
    • South Korea Hub
    • - - - -
    • US Hub 
    • -
    - - - -

    The Foundation chose these locations based on a variety of factors, including Web3 adoption, number of developers, regulatory environments, and available capital.

    - - - -

    NEAR Digital Collective Update

    - - - -

    Early in Q3 (July), NEAR announced the NEAR Digital Collective (NDC) — a pioneering effort in decentralizing ecosystem governance and funding. Through the NDC DAO, high-level decisions will be made on protocol and ecosystem development through a “fund-of-funds” structure, where working groups, projects, and ecosystem funds will build communities and invest in specific regions and verticals. NEAR sees the NDC as a potential model approach across Web3 for the creation and implementation of truly decentralized, on-chain governance.

    - - - -

    During Q3, following a positive community response, a Governance Working Group was formed to take the next steps to launch and implement the NDC. They solicited applications for interested contributors to join the Governance Working Group. This working group is tasked with producing a detailed roadmap and key milestones for NEAR governance implementation, focusing on the following areas:

    - - - -
      -
    • NEAR Constitution – Creation and ratification of shared values and basic rights for all community members. NEAR ecosystem’s north star.
    • - - - -
    • Governance Framework & Proposal Process – Vision for a decentralized governance system & core governance components confirming structure, responsibilities, participation rules, and dispute resolution process.
    • - - - -
    • Technical Governance Development Plan – On-chain practical implementation of the governance framework.
    • - - - -
    • Legal Framework – Legal structure for the governance structure to ensure sustainability, risk mitigation, and true community ownership.
    • - - - -
    • Community Engagement Guidelines – Standards to encourage positive, sustainable community behavior and interaction consistent with the values of the NEAR Constitution.
    • -
    - - - -

    Through Q3, the Governance Working Group has been working on a draft of a NEAR Constitution, a Legal Framework  for governance structure, and a Code of Conduct. Follow along for the latest from the NDC, including weekly updates.

    - - - -

    The Road Ahead

    - - - -

    NEAR remains committed to its mission to:

    - - - -

    Remove every barrier for Web3 creators, by creating an ecosystem that is uniquely simple, safe, scalable and sustainable.

    - - - -

    The Foundation will continue to support the ecosystem, drive awareness to NEAR and Web3, and — now more than ever — educate regulators across the globe.

    - - - -

    We will continue to invest and deploy capital in the key verticals mentioned above: Infrastructure, Integrations, Gaming/Entertainment, NFTs, DeFi, and DAOs.

    - - - -

    In addition, the Foundation will continue to decentralize and deploy capital into additional ecosystem funds and regional hubs that are dedicated to the ongoing health of the NEAR ecosystem.

    - - - -

    For any questions or feedback, please reach out to hello@near.foundation.

    - - - -

    All of these efforts are to allow you to create without limits. 

    - - - -

    We believe in a world where creativity is no longer held back by technology.

    - - - -

    A world without limits.

    - - - -

    Thank you!

    -

    The post NEAR Foundation Transparency Report : Q3 2022 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Transparency Report: December 2 - /blog/near-transparency-report-december-2/ - - - Fri, 02 Dec 2022 14:28:12 +0000 - - - /?p=19468 - - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand …

    -

    The post NEAR Transparency Report: December 2 appeared first on NEAR Protocol.

    -]]>
    - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand the health of the ecosystem. This will be on top of the quarterly reports, and the now monthly funding reports. 

    - - - -

    You can find the quarterly reports here.

    - - - -

    You can find monthly reports on funding here.  

    - - - -

    Last week’s transparency report can be found here. 

    - - - -

    The importance of transparency

    - - - -

    The NEAR Foundation has always held transparency as one of its core beliefs. Being open to the community, investors, builders and creators is one of the core tenets of being a Web3 project. But it’s become apparent the Foundation needs to do more. 

    - - - -

    The Foundation hears the frustration from the community, and it wants to be more pro-active in when and how it communicates. 

    - - - -

    New Accounts and Active Accounts

    - - - -

    New Accounts are new wallets being created on the NEAR blockchain. In November the number of new accounts has been declining. This week, new account creation has averaged 16,000 new accounts per day, down from a monthly average of 24,000 wallets per 24 hours.

    - - - -

    Looking at the quarter, the highest day for new account creation in Q3 was September 13 where 130,000 new wallets were created in one day. Collectively, these numbers equate to 22,454,000 total wallets on the NEAR blockchain.

    - - - -
    - - - -

    The Daily Number of Active Accounts is a measure of how many wallets on NEAR are making transactions on chain. Over the last week, the number of daily active accounts has been on average, above 50,000, remaining consistent across the week.

    - - - -

    Historically, as the chart below shows, this is a decline from highs of more than 100,000 active accounts on the network. The highest number of active accounts on any one day in Q3 this year was logged on September 14, where 183,000 accounts were active.

    - - - -
    - - - -

    New Contracts and Active Contracts

    - - - -

    Contracts on NEAR are simply programs stored on a blockchain that run when predetermined conditions are met. The Daily Number of New Contracts is a valuable metric for understanding the health and growth of an ecosystem.

    - - - -

    The more active contracts there are, the more projects are actively engaging with the NEAR protocol. The chart below shows a cyclical rhythm to new contracts, with rises and falls a common occurrence. Over the last seven days, the number of new contracts has risen from a low of 12 new contracts on November 27 to a high off 44 new contracts on November 30.

    - - - -
    - - - -

    Active contracts is a measure of contracts that execute in a 24 hour period. This number has remained consistent throughout the last week with an average of 500 active contracts on the NEAR network. Taking a historical perspective on these numbers, the average has declined in Q3, with previous highs in active contract activity coming in the third week of September 2022.

    - - - -
    - - - -

    Used Gas and Gas Fee

    - - - -

    Gas Fees are a catch all term for the cost of making transactions on the NEAR network. These fees are paid to validators for their services to the blockchain. Without these fees, there would be no incentive for anyone to keep the network secure.

    - - - -

    Over the last few weeks, the daily amount of gas, expressed here as PetaGas, which is the equivalent of 0.1 $NEAR, has risen. To learn more about Gas on NEAR, there is an excellent explainer in the NEAR White Paper. The Daily Amount of Used Gas has increased, briefly topping 8,000 PetaGas, before returning to the weekly average of just over 7,000 PetaGas.

    - - - -
    - - - -

    The Daily Amount of Gas correlates with the Daily Gas Fee used on the network. Over the last week, there has been an uptick in the amount of Gas used, which can be brought on by a number of different factors. One of the most common is increased activity among users of the network.

    - - - -
    - - - -

    Daily Transactions

    - - - -

    The daily number of transactions is a record of how many times the blockchain logged a transaction. The earliest data available is from the third and fourth weeks of November. The data shows that daily transactions had been trending upwards and at the end of November, were averaging more than 500,000 transactions per day. Since then, the number has declined sharply and now sits below 400,000.

    - - - -
    - - - -

    These reports will be generated each week and published on Friday.

    -

    The post NEAR Transparency Report: December 2 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Transparency Report: November 25 - /blog/near-transparency-report-november-25/ - - - Fri, 25 Nov 2022 18:02:23 +0000 - - - /?p=19273 - - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand …

    -

    The post NEAR Transparency Report: November 25 appeared first on NEAR Protocol.

    -]]>
    - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand the health of the ecosystem. This will be on top of the quarterly reports, and the now monthly funding reports. 

    - - - -

    You can find the quarterly reports here.

    - - - -

    You can find monthly reports on funding here.  

    - - - -

    Last week’s transparency report can be found here. 

    - - - -

    This week, the Foundation is focusing on the state of token supply in the ecosystem.

    - - - -

    The importance of transparency

    - - - -

    The NEAR Foundation has always held transparency as one of its core beliefs. Being open to the community, investors, builders and creators is one of the core tenets of being a Web3 project. But it’s become apparent the Foundation needs to do more. 

    - - - -

    The Foundation hears the frustration from the community, and it wants to be more pro-active in when and how it communicates. 

    - - - -

    Total Supply

    - - - -

    At Genesis, the NEAR blockchain was created with one billion tokens. Since then, the number of supply has increased to 1.1 billion. This number steadily rises due to inflation. For reference, 90% of the 5% annual inflation is sent to Validators to be paid out as staking rewards, with the residual 10% returned to the NEAR Foundation Treasury.

    - - - -
    - - - -

    The total number of live accounts has been increasing rapidly, up to a total of 22 million. At present, new accounts are created on NEAR at an average rate between 35,000 and 38,000 new accounts per day. This number is down from the week before, which average 37-39,000 accounts per day.

    - - - -
    - - - -

    Circulating Supply Statistics

    - - - -

    Below is a break down of the circulating supply. The blue section represents the total number of $NEAR, and the green section represents tokens not currently locked in lockup contracts.

    - - - -
    - - - -

    The number of tokens in circulating supply has been steadily increasing at a faster rate than the total circulating supply. In the past week, 3 million more $NEAR has moved from locked contracts to circulating, taking the number of circulating tokens from 827 million, to 830 million. This is typically due to further unlocks within both the NEAR Foundation Treasury and contractual vesting schedules.

    - - - -

    Active Accounts

    - - - -

    The most active accounts on NEAR are displayed here as the most active in the past 14 days. The most active account is relay.aurora, which is the main conduit by which Aurora moves transactions between Ethereum and NEAR. In the past two weeks, it recorded more than 900,000 transactions.

    - - - -
    - - - -

    The second most active account was oracle.sweat, which is allows SWEAT users to communicate with the NEAR blockchain. The oracle.sweat account made just under 800,000 transactions in the last two weeks. The remaining accounts, collectively recorded more than a million transactions in the time period.

    - - - -

    Daily Number of Transactions

    - - - -

    The daily number of transactions is a record of how many times the blockchain logged a transaction. The earliest data available is from the second week of November. The data shows that daily transactions have been trending upwards and sit just under one million transactions per day. This is significant growth from the previous average of 400,000 per day.

    - - - -
    - - - -

    These reports will be generated each week and published on Friday.

    - - - -

    -

    The post NEAR Transparency Report: November 25 appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Funding Team Report: October 2022  - /blog/near-foundation-funding-team-report-october-2022/ - - - Wed, 23 Nov 2022 16:45:00 +0000 - - - /?p=19108 - - Welcome to our Funding Team Report that captures and highlights data  for the month of October 2022. The purpose of …

    -

    The post NEAR Foundation Funding Team Report: October 2022  appeared first on NEAR Protocol.

    -]]>
    - Welcome to our Funding Team Report that captures and highlights data  for the month of October 2022. The purpose of this document is to provide transparency regarding our Funding Team’s activities last month, and is to be shared publicly to the NEAR ecosystem and our investor network.

    - - - -
    - - - -

    Summary 

    - - - -

    1. Grant data

    - - - -

    1.1. Approved Grant program data

    - - - -

    1.2. Grant highlights

    - - - -

    1.3 Completed projects & Milestone data

    - - - -

    1.4 Effectiveness of the funding program

    - - - -

    2. External funding in the NEAR Ecosystem

    - - - -

    3. Ecosystem highlights

    - - - -
    - - - -

    1. Grant data

    - - - -

    1.1. Approved Grant Program data

    - - - -

    Data reflects projects that have applied for a Grant via the Grants Program and that have been signed by the NEAR Foundation during the month of October (01.10.2022 to 31.10.2022).

    - - - -

     *Note: all applications have been processed.

    - - - -

    General Grant data

    - - - -
    Applications received*   📥Grant Agreements signed   ✅Conversion rateAverage Grant AmountCommitted amount in dollars 💵
    141148.5%$40 K$564 K 
    - - - -

    Grant tracks**

    - - - -
    Activation (up to $10 K)3
    Builder (up to $50 K)8
    Advanced Builder (up to $100 K)3
    - - - -

    ** For more information please have a look at our grant tracks.

    - - - -

    Grants per category 

    - - - -

    NFTs                                 5

    - - - -

    Infrastructure / Wallets             3

    - - - -

    Social Impact                        1

    - - - -

    Institutional / Financial            1

    - - - -

    Gaming / Metaverse                   1

    - - - -

    DAOs                                                 1

    - - - -

    Other                                2

    - - - -

    Grants per country (Top 5)

    - - - -

    United States                3

    - - - -

    United Kingdom               3

    - - - -

    Switzerland                  1

    - - - -

    Singapore                     1

    - - - -

    Thailand                      1

    - - - -
    - - - -

    1.2. Grant highlights 

    - - - -

    This section provides highlights of grants that have been signed during the month.

    - - - -

    NFT projects 

    - - - -
    KINOwebsiteAdvanced BuilderUnited States
    - - - -

    Disrupting Hollywood by allowing retail to invest in film making, create experiences for token holders and collectives. Founded by an Executive Producer who has sold shows with Matt Damon and Jimmy Kimmel, and a 3x Tech Founder (USC Law/London School of Economics) whose last web3 startup reached over 500k holders and $500m mcap. 

    - - - -
    KwikTrustwebsiteBuilder United Kingdom
    - - - -

    The Platform allows for easy, self-certified and third-party validation of files, with the results stored securely on a blockchain, creating an irrefutable record of activity. This will increase trust and transparency in the NEAR NFT space and be a platform for existing and upcoming NFTs.

    - - - -
    EndlesswebsiteBuilder Thailand
    - - - -

    Web3 gaming launchpad and building SDKs for gaming developers. The team has plenty of experience building web3 gaming platforms with their current company called Playfix

    - - - -
    Haus PassportwebsiteBuilder United Kingdom
    - - - -

    Data base on the NEAR blockchain that acts as a repository for information relating to a property, like a passport for a house. The goal is to provide a transparent platform to make buying and selling houses simpler, safer and quicker.

    - - - -
    NFT.HipHopwebsiteBuilder United States
    - - - -

    NFT.HipHop is being developed to be the primary destination for all Hip Hop-centric NFT/Web3 projects. The founder is deeply rooted within the NEAR Ecosystem and aims to bring his existing large web2 community in the Hip Hop space to NEAR.

    - - - -

    Infrastructure / Wallets projects 

    - - - -
    BlockversekitwebsiteAdvanced BuilderSpain
    - - - -

    NFT Analytics tool that allows tracking of held NFTs and provides updates for  upcoming mints and collections, with the focus on approaching the communities and people about NEAR. Strong connection with the TENK Bay and drives NFT growth within NEAR. 

    - - - -
    MAP ProtocolwebsiteBuilder Singapore
    - - - -

    MAP Protocol is an omnichain layer of Web3 with highly secure cross-chain communication built upon light-client and zk-SNARK technology. MAP Protocol connects both EVM & non-EVM chains, extending the EVM layer with pre-compiled smart contracts of destination chains seamlessly.

    - - - -
    NEARBlockswebsiteBuilder Indonesia 
    - - - -

    NEARBlocks features optimisations being provided by Invoker Labs.

    - - - -

    Institutional / Financial projects 

    - - - -
    Datality websiteActivationUnited States
    - - - -

    Datality brings trust and safety to connect researchers with research data providers. A two-sided data marketplace with blockchain as the transparent layer of trust.

    - - - -

    Social Impact projects 

    - - - -
    AidonicwebsiteBuilder Switzerland 
    - - - -

    AIDONIC offers digital cash and voucher assistance, powered by NEAR and by ensuring end-to-end transparency, cost- and speed efficiency and accountability for social fundraising and last-mile aid distribution.

    - - - -


    DAO’s

    - - - -
    Community Health AnalyticswebsiteBuilder United Kingdom
    - - - -

    Provide insights for the Near Ecosystem that improves its ability to collaborate effectively and operate thriving communities thanks to predictive indicators of viability as well as diagnostic tools for DAO Communities. 

    - - - -

    Gaming / Metaverse projects 

    - - - -
    Pixudi websiteBuilder Montenegro
    - - - -

    Pixudi is an NFT based blockchain project where a traditional race board game meets Heroes of Magic mechanics. It is more than a game, it’s bridge from the real world of board games to the blockchain world of NFT based on DAO mechanics.

    - - - -

    Other projects 

    - - - -
    Decent.landwebsiteActivationNetherlands
    - - - -

    Modular collection of social and identity protocols. Developers can use part of all of the stack for anything from adding social features to deploying a fully decentralized, token-aware web3 social network. decent.land is built using Arweave for permanent storage and NEAR for user-facing contracts.

    - - - -
    EV InitiativewebsiteActivationCanada
    - - - -

    EV charging network in the Americas with a web3 value creation mechanism for the drivers. Team has installed over 100 charging slots in the last six months and plans to integrate NEAR for settlements while increasing the installation of charging stations.

    - - - -

    1.3 Completed projects & Milestone data 

    - - - -

    Grant agreements are structured with milestones. Depending on the selected grant track, a grant can have from 1 to 5 milestones. For more information the funding team invites you to explore our milestone guide

    - - - -
    Projects having completed a milestone  ☑️53
    Projects having completed final milestone 9
    - - - -

    Projects completed per category 

    - - - -

    Infrastructure / Wallets             3

    - - - -

    Gaming / Metaverse                   3

    - - - -

    DAOs                   1

    - - - -

    Other                                2

    - - - -

    Infrastructure / Wallets projects 

    - - - -
    MyNearWalletwebsite Advanced BuilderSwitzerland 
    - - - -

    An inheritor of the official NEAR wallet. The most well-known and feature filled web wallet for the NEAR Ecosystem.

    - - - -
    BytePaywebsite Builder China
    - - - -

    Coding to earn, sell open-source product as NFT. BytePay is a platform that supports paid tasks to complete open-source projects on Github. Not only can you  code to earn but also sell open-source product as NFT.

    - - - -
    NEAR Blockchain Event WebhookswebsiteBuilder United Kingdom 
    - - - -

    The development of an MVP for a NEAR blockchain event push notification service. DApp developers would be able to subscribe to their contract events in their backend without having to implement their own indexer, instead implementing webhook endpoints to which this service would push updates.

    - - - -

    Gaming / Metaverse projects

    - - - -
    Reality NEARAdvanced BuilderUnited States
    - - - -

    Reality Near is a multi-metaverse that will combine Virtual Reality and Augmented Reality technologies so that users can experience their different enhanced realities like never before.

    - - - -
    MeowRushwebsite Builder/
    - - - -

    MeowRush is a PVP multiplayer game on the NEAR blockchain with different tournament modes: Race, Battle Royale, Obstacles, and Arcade. MeowRush is going to be integrated into the Meowverse metaverse with a Multi-chain ecosystem.

    - - - -
    Glory Games Worldswebsite BuilderSingapore
    - - - -

    GameFi for the masses, built on their own native Unreal game engine  with Augmented Reality/Virtual Reality engine.

    - - - -

    DAO’s

    - - - -
    Mute DAO website BuilderUnited Kingdom
    - - - -

    Mute is building a safe and secure community that focuses on protecting members of the crypto community by providing accurate and up-to-date information on projects, risk assessments, and education. 

    - - - -

    Other projects

    - - - -
    SharpShark website Builder Netherland
    - - - -

    SharpShark is a WEB3 copyright protection service that helps businesses protect and monetize their textual, visual, and other copyrightable content.

    - - - -
    Doublewebsite Builder United States
    - - - -

    A decentralized co-op platform for AMM liquidity providing that will double LP investors’ return on invested capital while at the same time boost liquidity for projects’ tokens.

    - - - -

    1.4 Effectiveness of the funding program  

    - - - -

    Total external funding (overall amount) came from projects that have received a grant (around 40%).

    - - - -
    - - - -

    2. External funding in the NEAR Ecosystem

    - - - -

    This section provides information about external funding in the NEAR ecosystem

    - - - -
    • 2 closed projects in Q4 ‘22 – ($6.2M)
    • 2 finalizing rounds
    • 20 new fundraising processes kicked off 
    • 22 VC intros made
    - - - -

    Closed Rounds (Quarter-to-Date)

    - - - -
    • EmpireDAORaised a $2.8m seed round with participation from NEAR Foundation to build a global community starting with a flagship location in NYC. Please stop by the NEAR space at EmpireDAO if you are ever in NYC! 
    - - - -
    • t2.worldRaised a $3.4m seed round led by Inflection and Archetype to empower readers and writers to grow their communities in the Web3 space.
    - - - -
    - - - -

    3. Ecosystem highlights  

    - - - -

    NEARWEEK is the one-stop-shop for all NEAR related news. Each weekly newsletter and edition is made possible via news contributions from the NEARWEEK community to the NEWS DAO. Subscribe or visit NEARWEEK.com to get your weekly dose of news from the NEARverse!

    - - - -

    For the month of October we invite you to read through the following newsletters : 

    - - - -

    Newsletter 78 

    - - - -

    Newsletter 79 

    - - - -

    Newsletter 80

    - - - -

    Newsletter 81 

    - - - -
    - - - -

    If you are interested in getting funded : 

    - - - -
    • explore the NEAR Funding  linktree
    • visit NF’s website : /
    • contact NF Grants : grants.@near.foundation 
    -

    The post NEAR Foundation Funding Team Report: October 2022  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Transparency Report: the State of Staking - /blog/near-transparency-report-the-state-of-staking/ - - - Mon, 21 Nov 2022 15:05:30 +0000 - - - /?p=19110 - - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand …

    -

    The post NEAR Transparency Report: the State of Staking appeared first on NEAR Protocol.

    -]]>
    - As part of the Foundation’s commitment to transparency, each week it will publish data to help the NEAR community understand the health of the ecosystem. This will be on top of the quarterly report, and the now monthly funding reports. 

    - - - -

    You can find the quarterly reports here.

    - - - -

    You can find monthly reports on funding here.  

    - - - -

    This week, the Foundation is focusing on the state of staking in the NEAR ecosystem. 

    - - - -

    The state of staking, as of Friday 18th November 2022

    - - - -
    - - - -

    At the time of writing, there is 469 million NEAR staked, which equates to approximately 42% of the total supply, or 56.5% of circulating supply. 

    - - - -

    The staking total is spread across 131 validators, which is up on last month’s total validator number of 126, a four percent increase in the decentralization of the network. 

    - - - -
    - - - -

    The seat price – the amount of NEAR required to be eligible for staking has fallen precipitously. From 100,000 NEAR in October to just 20,000 NEAR in November, this means securing the network has become more accessible than ever before. The Foundation expects the number of validators to grow significantly to approximately 300 by the end of this year, as NEAR Foundation starts to delegate to Stake Wars winning participants.

    - - - -

    This will continue as the protocol deploys its roadmap. In 2023, for example, the number of validators will continue to climb to a maximum of 400. You can read more about the road map here. 

    - - - -

    Staking Distribution 

    - - - -

    Of the 131 validators, eight validators hold 33% of the total staked balance, representing 154 million $NEAR. A total of 15 validators, hold 50% of the total staked balance, and 116 validators hold the other 50% of the total NEAR available. A stake of 33% is the stake that can halt the network, according to Pikespeak. 

    - - - -
    DistributionValidatorsStaked
    0-33%8154m
    33%-50%774m
    51%-75%21124m
    76%-100%95116m
    131469m
    - - - -

    To improve decentralisation, the Foundation, along with the ecosystem is continuing to improve the breadth and depth of the validators, and actively encourages stakeholders to delegate to validators outside the top 15. 

    - - - -

    Why are validators important? 

    - - - -

    The NEAR network is decentralized, meaning that multiple people collaborate in order to keep it safe. We call such people validators.

    - - - -

    In order to make sure that all the transactions in the network are valid, i.e. that nobody is trying to steal money, the validators follow a specific consensus mechanism.

    - - - -

    Currently, there are a few well-known consensus mechanisms to keep a blockchain working correctly and resistant to attacks. NEAR Protocol uses a version of Proof-of-Stake, particularly Thresholded Proof of Stake.

    - - - -

    In Proof-of-Stake, users show support to specific network validators by delegating NEAR tokens to them. This process is known as staking. The main idea is that, if a validator has a large amount of tokens delegated is because the community trusts them.

    - - - -

    Validators have two main jobs. The first is to validate and execute transactions, aggregating them in the blocks that form the blockchain. Their second job is to oversee other validators, making sure no one produces an invalid block or creates an alternative chain (eg. with the goal of creating a double spend).

    - - - -

    If a validator is caught misbehaving, then they get “slashed”, meaning that their stake (or part of it) is burned.

    - - - -

    In the NEAR networks, an attempt to manipulate the chain would mean taking control over the majority of the validators at once, so that the malicious activity won’t be flagged. However, this would require putting a huge sum of capital at risk, since an unsuccessful attack would mean slashing your staked tokens.

    - - - -

    Why is decentralization important? 

    - - - -

    Staking is not only about the rewards, it is the basis for security and stability of the NEAR Protocol. To avoid centralization, split your stake between smaller staking pools instead of putting everything in the largest one.

    - - - -

    - - - -

    Community members like Zavodil Validator have created excellent alternatives to NEAR’s official explorer, embedding metadata from the active staking pools to help you choose which Validators to Stake with. Also, consider joining the #staking channel on https://near.chat/ and ask questions!

    - - - -

    - - - -

    These reports will be published each week, and cover different aspects of the ecosystem. 

    -

    The post NEAR Transparency Report: the State of Staking appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Transparency Report  - /blog/near-foundation-transparency-report/ - - - Mon, 12 Sep 2022 10:33:47 +0000 - - - /?p=18379 - - With this report, the NEAR Foundation would like to expand the consistent and frequent communication with the NEAR community, to …

    -

    The post NEAR Foundation Transparency Report  appeared first on NEAR Protocol.

    -]]>
    - With this report, the NEAR Foundation would like to expand the consistent and frequent communication with the NEAR community, to contribute to the long-term health and viability of the ecosystem.

    - - - -

    As a result, the Foundation is publishing its first transparency report and committing to quarterly reports moving forward.

    - - - -

    The purpose of the Foundation, per its articles of incorporation is promoting and developing new technologies and applications, especially in the fields of open and decentralized software architectures, to enable innovation to benefit people around the world. A dominating but not exclusive focus is set on the promotion and development of the NEAR Protocol and related technologies as well as the promotion and support of applications using the NEAR Protocol. 

    - - - -

    To deliver on its purpose, the Foundation is organised around 3 core areas of focus awareness, support and governance. 

    - - - -

    Below the Foundation shares details of how it allocated funding in Q4 2021 and Q1 + Q2 of 2022. This will include the rationale for these decisions and insight into future plans.

    - - - -

    In totality, the Foundation deployed $540M in fiat and tokens during these three quarters. The allocation of these funds has helped the ecosystem while it grew at an unprecedented rate.

    - - - -
    • The number of accounts on the NEAR Protocol has grown from 1.1 million at the beginning of 2022 to 15.6 million accounts at the end of Q2. 
    • The number of weekly active developers deploying on mainnet has grown from 250 to 1,500 per week.
    • DAOs have surged from 50 to 700 and the number of projects deployed on NEAR has increased from 100 to 750.
    - - - -

    The NEAR Foundation in Q4 2021 

    - - - -

    In Q4 of 2021, the NEAR Foundation announced the launch of an $800 million ecosystem fund. The fund was to be split into four broad groups:

    - - - -
    • $350M – Proximity DeFi Grants – to help projects in the space of financial innovation within the NEAR Ecosystem.
    • $250M – Foundation Grants – to support projects building on NEAR, through direct investment and grants.
    • $100M – Startup Funds – to decentralize capital deployment into dedicated investment funds within the ecosystem.
    • $100M – Regional Funds – to establish physical hubs in key regions around the world to provide a local presence.
    - - - -

    The below goes into further detail about how much was allocated, how much was committed and what projects were included in the allocation. 

    - - - -
    CategoryAnnouncementCommitted
    Proximity DeFi Grants$350m$350m
    Foundation Grants$250m$133m
    Startup Funds$100m$18m
    Regional Hubs$100m$33m
    Total Ecosystem Fund$800m$534m
    Charity & Education$6m
    Total Capital Deployed$540m
    *Grants awarded in NEAR valued at $3.33 on 30th June 2022 
    - - - -

    Proximity DeFi Grants

    - - - -

    Allocation: $350 million 

    - - - -

    Committed: $350 million 

    - - - -

    Why DeFi? 

    - - - -

    DeFi is one of the cornerstones of a healthy blockchain ecosystem. The provision of financial products and services helps users learn the tools necessary to safely navigate a Web3 ecosystem, as well as drive innovation.

    - - - -

    DeFi helps other projects grow by facilitating quick, safe, and easy ways to move and swap currencies in and out of projects as they see fit. While the Foundation cannot deploy DeFi primitives itself, it can help support the creation of funds that can. Proximity forms that function inside the NEAR ecosystem. 

    - - - -

    Proximity is a research and development firm supporting projects building decentralized finance (DeFi) applications on NEAR and Aurora through grants, advisory services, and developer support. 

    - - - -

    Proximity’s allocation decisions are independent of the Foundation. 

    - - - -

    Ecosystem Grants 

    - - - -

    Allocation: $250 million 

    - - - -

    Committed: $133 million 

    - - - -

    Foundation Grants cover a broad range of investments from grant allocation to direct investment and are primarily focused on the following verticals: Infrastructure & Integrations, Gaming & Entertainment, NFTs, and DAOs.

    - - - -

    The Foundation has come up with specific strategies and has deployed capital within each vertical.

    - - - -
    - - - -
    • Infrastructure and Integrations – Infrastructure is a catch all term for key parts of the ecosystem that are needed to help unlock mass adoption. These include things like wallets, bridges, oracles, zk technologies, privacy tools, and improved tools for developers. Integrations with the NEAR network are crucial to bring more users into web3. The following partnerships have been instrumental in accelerating NEAR’s connection with the rest of web3.
    - - - -
    • Gaming / Entertainment – The web3 gaming space is still wide open. The first iteration of web3 games proved consumer demand. Now, there is room to iterate on long-term sustainable models, introduce permissionless composability, and create new forms of NFTs in addition to games that are primarily or even fully on-chain.
    - - - -
    • NFTs –  NFTs on NEAR is a large and extremely important opportunity in which NEAR has a unique tech advantage as NEAR NFTs are applications that are programmable. NEAR has a chance to be the first mover in true, long-term, sustainable and unique NFT use cases.
    - - - -
    • DAOs – We believe NEAR has the strongest no-code, easy to use, DAO tech stack that is already helping to decentrally govern key ecosystems and hundreds of millions of dollars. We will facilitate DAO use cases in investing, gaming, NFTs, sustainability, and science. 
    - - - -

    Startup Funds

    - - - -

    Allocation: $100 million 

    - - - -

    Committed: $18 million 

    - - - -

    The Foundation does not believe it should be the sole distributor of capital to developers and entrepreneurs. Decisions should not be made in a vacuum with just one centralized organization.

    - - - -

    In order to further decentralize capital deployment, the Foundation has allocated grant funds to MetaWebMOVE Capital, Stealth Capital, Open Web Collective who are focused on funding projects of the NEAR Ecosystem, each with their own thesis. 

    - - - -

    The Foundation has committed $18 million thus far to these funds that have subsequently made 50+ allocations into NEAR ecosystem projects. 

    - - - -
    • MetaWeb, another NEAR native investment fund, has raised $30m from Sequoia, in addition to NF. MetaWeb have made 33 investments to date, including Niche, Orderly, Above.Land, and Sender Wallet.
    • MOVE Capital is a NEAR native investment fund that has raised $13m from Accomplice and DCG, in addition to NF. MOVE has made 15 investments to date, including Tonic, Calimero, Few & Far, and Sweatcoin.
    • Stealth Capital is an investment fund for founders, and brings a wealth of experience supporting the development of projects on Solana and Polygon, as well as NEAR. 
    • Open Web Collective is a blockchain accelerator and investor backing the builders of the multi-chain, decentralized web. Open Web Collective’s approach to supporting founders is hands-on, user-centric, and analytical. 
    - - - -

    - - - -

    In addition to these, additional funds will be announced in the coming months, focused on specific verticals such as Sustainability, Sports & Entertainment, and Web2 → Web3.

    - - - -

    Collectively the NEAR Foundation believes these funds will help realize its vision of bringing a billion users to Web3 in a healthier, more decentralized way. 

    - - - -

    Regional Hubs 

    - - - -

    Allocation: $100 million 

    - - - -

    Committed: $33 million 

    - - - -

    To be global, we have to be local.

    - - - -

    As part of NEAR’s ambition to reach a billion people, the Foundation believes we need hubs around the world to connect with people where they are – with local events, in local languages, to find the best people wherever they are and forging partnerships with local organizations.

    - - - -

    The NEAR Foundation has outlined seven regional hubs as part of its roadmap. So far, three have launched: 

    - - - - - - - -

    In addition to these hubs, the Foundation will soon be announcing Vietnam and India hubs and will be launching additional hubs in South Korea and the US.

    - - - -

    The Foundation has chosen these locations based on a variety of factors, including web3 adoption, # of developers, regulatory environments, and available capital.

    - - - -
    - - - -

    Funding, Treasury & Decentralisation 

    - - - -

    In addition, the NEAR Foundation has received $560m from the following key backers: Tiger Capital, FTX, a16z, Circle, Dragon Fly, and many others.

    - - - -

    The Foundation has been very conservative in how the funds have been managed. Exposure to non-NEAR assets has been limited, with over $0.5b of funds raised held in fiat in Swiss bank accounts. This strategy helps ensure that the Foundation maintains sufficient resources throughout the market downturn. 

    - - - -

    This approach has left the Foundation in an extremely strong position to continue to distribute funds to high quality projects for the foreseeable future.

    - - - -


    - - - -
    - - - -

    The Foundation is on a continued decentralization journey, and as part of this mandate working on its promise to put tokens in the hands of the community. 

    - - - -

    The community has come together in response to Illia’s talk from ECC in Paris to implement an ecosystem-wide self-governance treasury called the NEAR Digital Collective (NDC).

    - - - -

    ​​The purpose of the NDC is to further decentralize NEAR’s ecosystem governance, distribute more of the Foundation’s token holdings to the community and move decision-making on-chain in order to make our community more resilient, transparent, and fair.

    - - - -

    A Community Working Group is now forming to take the next steps to launch and implement the NDC framework. This process is led and shaped by the community. Building better, sustainable self-governance at a global level starts with the community.

    - - - -

    Every voice matters and we believe the process now being launched can serve as a model approach across Web3 for the creation and implementation of truly decentralized, on-chain governance.

    - - - -

    The Road Ahead

    - - - -

    NEAR’s mission is to:

    - - - -

    Remove every barrier for Web3 creators, by creating an ecosystem that is uniquely simple, safe, scalable and sustainable.

    - - - -

    The NEAR Foundation is committed to this mission. We will continue to support the ecosystem, drive awareness to NEAR and web3, and continue to educate regulators around the world.

    - - - -

    The Foundational will continue to invest and deploy capital in the key verticals mentioned above: infrastructure, integrations, gaming / entertainment, NFTs, and DAOs

    - - - -

    In addition, the Foundation will continue to decentralize and deploy capital into additional ecosystem funds and regional hubs that are dedicated to the ongoing health of the NEAR ecosystem.

    - - - -

    As part of this journey, we are also committing to releasing quarterly transparency reports moving forward to show the NEAR community where capital is deployed and why. This will also include performance of the largest investments, grants, funds, and hubs

    - - - -

    For any questions or feedback, please reach out to hello@near.foundation.

    - - - -

    All of these efforts are to allow you to create without limits. 

    - - - -

    We believe in a world where creativity is no longer held back by technology.

    - - - -

    A world without limits.

    - - - -

    Thank you!

    -

    The post NEAR Foundation Transparency Report  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/transparency-report/index.html b/public/blog/tag/transparency-report/index.html deleted file mode 100644 index 49d06519e..000000000 --- a/public/blog/tag/transparency-report/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Transparency report Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/transparency/feed/index.xml b/public/blog/tag/transparency/feed/index.xml deleted file mode 100644 index 7655535fd..000000000 --- a/public/blog/tag/transparency/feed/index.xml +++ /dev/null @@ -1,654 +0,0 @@ - - - - Transparency Archives – NEAR Protocol - - /blog/tag/transparency/ - - Tue, 25 Apr 2023 16:54:52 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Transparency Archives – NEAR Protocol - /blog/tag/transparency/ - 32 - 32 - - - NEAR Foundation Transparency Report: Q1 2023 - /blog/near-foundation-transparency-report-q1-2023/ - - - Thu, 06 Apr 2023 14:17:15 +0000 - - - - - /?p=20385 - - Hello, NEAR World! Welcome to NEAR Foundation’s newly reformatted “Transparency Report”. Published quarterly, NEAR Foundation’s Transparency Report explores the NEAR …

    -

    The post NEAR Foundation Transparency Report: Q1 2023 appeared first on NEAR Protocol.

    -]]>
    - Hello, NEAR World! Welcome to NEAR Foundation’s newly reformatted “Transparency Report”. Published quarterly, NEAR Foundation’s Transparency Report explores the NEAR Foundation’s progress towards  its OKRs, as well as the latest technology news and updates from the NEAR ecosystem.

    - - - -

    NEAR Foundation is kicking off the new Transparency Report with the Q1 edition. It features a NEAR Foundation Treasury report and a variety of exciting updates on the recently announced Blockchain Operating System (BOS), the NEAR ecosystem’s thriving projects, and NEAR Foundation’s Web2.5 strategy. You’ll get the latest on NEAR Horizon Accelerator, NDC, NEAR’s Web2 → Web3 partnerships, and more. 

    - - - -

    NEAR Foundation Treasury Update

    - - - -

    At the end of Q1 2023, NEAR Foundation’s treasury totalled $1.1b, including $365m fiat reserves and 316m NEAR ($630m at a closing price of $1.99). 

    - - - -

    The NEAR Foundation has continued to adopt a highly responsible approach to treasury management in order to minimize the risk of loss in a turbulent market. Exposure to non-NEAR assets therefore has been limited, with fiat reserves held in AAA-rated Swiss bank accounts. 

    - - - -



    Q1 has been a turbulent quarter for the US banking sector. However, the NEAR Foundation treasury’s proactive risk management policies — including limited exposure to Silicon Valley Bank (under FDIC insurance levels) and no exposure to Credit Suisse — have prevented any loss of funds. NEAR Foundation’s risk management strategy helps ensure that the NEAR Foundation maintains sufficient resources and runway even if the market downturn lasts for multiple years. 

    - - - -

    As a result, the NEAR Foundation is in an extremely strong position to continue to support the ongoing growth and development of the NEAR protocol and ecosystem .

    - - - -

    A recap of NEAR’s go-forward strategy 

    - - - - - - - -

    Despite well-known issues with Web2 platforms and legacy institutions, and the significant progress made in the blockchain industry, Web3 has yet to fully deliver on its promise to open the web. The Web3 of today is held back by inaccessible user experiences, siloed apps that are difficult to discover and explore, few real-world use cases, and technology tribalism. While there is a lot of hype in Web3, there just isn’t enough value for users. 

    - - - -

    This is why the NEAR Foundation is focusing on making the most of NEAR protocol’s fundamentals and convictions. The NEAR protocol has the best tech in Web3, world-class talent, and an ample runway. The NEAR protocol also has the ability to achieve mainstream adoption through a focus on users, rather than cultish maximalism or hype, and the understanding that converting strong Web2 projects to Web3 will get the NEAR ecosystem there. 

    - - - -

    With NEAR’s recent launch of the Blockchain Operating System, this next phase of adoption is already underway. The BOS makes it easier than ever for Web2 apps and communities to take advantage of Web3’s opportunities while giving developers and end users a richer, more sustainable experience. 

    - - - -

    In 2023, NEAR Foundation is focused on two different approaches to bringing more users to the NEAR protocol and the BOS. It begins with the NEAR Foundation’s top-down approach to partnerships, led by a world-class business development team. By working with major applications and brands with substantial, established communities, the NEAR Foundation is partnering on real use cases that drive engagement on the NEAR protocol, like ticketing and earning. High-traction focus verticals for these partnerships include sports, entertainment, and loyalty. Major partnerships in recent months include Grupo Nutresa, Google Cloud, and Sweat Economy

    - - - -

    Q1 has also seen NEAR Foundation’s bottom-up, grassroots approach. This is designed to empower the NEAR ecosystem to invest in its own expansion through grants, primarily through 3 major community DAOs: Developer DAO, Marketing DAO, and Creatives DAO (visit the DAO websites to get involved). These grassroots DAOs will be supported by the NDC, which has launched several working groups in Q1. This quarter has also seen the launch of NEAR Horizon, an early-stage accelerator that will provide support across education, tech, hiring, legal, UX, and GTM guidance, to promising projects and founders on NEAR.

    - - - -

    With the launch of the NDC, the DAOs, and the accelerator, NEAR Foundation will focus less on the allocation of capital directly to projects. Instead, the NEAR Foundation will support the community in making these decisions and further decentralizing key elements of the ecosystem. Also, Proximity supports projects building DeFi applications on the NEAR protocol through grants, advisory services, and developer support.

    - - - -

    Q1 Ecosystem OKR performance

    - - - -

    Throughout Q1, NEAR Foundation experienced several areas of growth toward our OKRs. While the NEAR Foundation met many of its goals, there is always work to be done. 

    - - - -
    - - - -

    There is a lot of green. However, as an ecosystem we missed our North Star. NEAR Foundation’s goal was 2M MAAs but we came in short, just under 1M. There are a couple of key reasons for this, as well as a path forward to improve performance next quarter.

    - - - -
      -
    1. SWEAT (which still represents the majority of MAA) is revisiting their MAA ramp up. Current expectations are that MAA growth will occur mostly in the second half of the year, with the US app launching in September.
    2. - - - -
    3. NEAR Foundation’s BD team has been closing great deals (23 in Q1 alone) — most announcements haven’t been made (6 only) and most launches will be towards the end of the year.
    4. -
    - - - -

    NEAR Foundation has built a new model to better forecast and set MAA expectations. With this new model, the NEAR Foundation is expecting just over 1.5M MAAs in Q2 of this year with a path to 10M by the end of 2023.

    - - - -

    Outside of MAAs, the NEAR ecosystem  had a successful quarter with several areas of strength.

    - - - -
      -
    • Crystalized strategy around the BOS with new branding + alpha.nearpages.wpengine.com launched in Denver (6K+ accounts).
    • - - - -
    • Growth of Twitter followers far outpacing others in Web3 (175K per month vs. flat growth from others).
    • - - - -
    • NDC Trust launched and grassroots DAOs starting to become fully independent and operational.
    • - - - -
    • NEAR Horizon went from ideation to MVP with pre-cohort launch and partners signed up for full launch.
    • - - - -
    • Despite macro conditions, the NEAR Foundation continues to manage its treasury effectively and NEAR ecosystem–based projects continue to raise external capital (Open Forest Protocol, Few and Far,  Calimero). The Backer / VC Network data infrastructure was also revamped.
    • - - - -
    • Lots of exciting BD deals closed, setting the stage for a strong end of year when they go live.
    • - - - -
    • The Data / Analytics team was formed to operationalize KPIs and better track and understand what’s going on in the ecosystem.
    • - - - -
    • Q1 saw a consistent increase in total new accounts with 1.5m new accounts, as well as a consistent increase in total new contracts, seeing 3,800 new contracts on the NEAR protocol. Q1 also saw 25m transactions on the NEAR protocol.
    • -
    - - - -

    NEAR Foundation is currently working on a suite of real-time dashboards so the ecosystem can have visibility into the progress against our OKRs. You can find this at NEARAtlas.com

    - - - -

    OKR1: NEAR is the BOS 

    - - - -

    At ETHDenver, it was announced that the NEAR protocol announced that it is becoming the Blockchain Operating System — a common layer for discovering and creating Open Web experiences, across all blockchains. As part of that announcement, NEAR protocol launched Alpha.nearpages.wpengine.com, a composable frontend for Web3 allowing end users to easily and frictionlessly discover all of Web3’s possibilities in one seamless experience. It also enables developers to create and code interfaces in a single environment with the ability to fork a host of components to build apps faster, and more efficiently than ever before.

    - - - -

    The BOS announcement generated a lot of excitement, inspiring Pantera Capital’s Franklin Bi to tweet, “Decentralized frontends are the future.”

    - - - -

    Quoting Illia’s announcement tweet, Redpoint’s Managing Director Jason Warner said: “Something I actually think is interesting is what Illia and crew are doing with NEAR and what they are calling the open web. It’s an experiment worth running for sure starting with Near.Social.”

    - - - -

    “We need innovation at every level of the stack, not just the core protocol and smart contract layers,” tweeted Ali Yahya, General Partner at a16z crypto. “NEAR is leading the way.”

    - - - -

    Since launching alpha.nearpages.wpengine.com, there has been strong usage and curiosity from the NEAR ecosystem community, with 6,000 accounts created and over 2,500 individual components published. The Pagoda team has been working closely with the active community of builders to help enhance the BOS experience.

    - - - -

    Illia Polosukhin, CEO of Pagoda and co-founder of the NEAR protocol, also hosted a technical workshop where he zoomed in on each layer of the BOS stack and showed some examples of features, components to build from, and how gateways can become super apps by integrating with the BOS. 

    - - - -

    The next big update on the Blockchain Operating System will be at Consensus. You can find out more about NEAR’s presence at Consensus here.

    - - - -

    OKR2: NEAR is a thriving decentralized Ecosystem

    - - - -

    One of the NEAR Foundation’s core mandates is to support the continued decentralization of the NEAR ecosystem, and great progress has been made on this front since the previous transparency report. 

    - - - -

    A roundup of the ongoing decentralization efforts across the NEAR ecosystem follows. 

    - - - -

    NEAR Digital Collective (NDC)

    - - - -

    The NDC initiative was announced towards the end of last year, and has grown to become a grassroots movement with hundreds of participants, including users, projects, and other stakeholders. The NDC is focused on self-governance, aiming to empower the ecosystem to collectively make decisions in a robust and decentralized way on everything from funding to elected representatives and more. 

    - - - -

    There are now several working groups that have been launched as part of the NDC’s work, covering various ecosystem needs including governance (Governance WG), marketing (Distribution Network WG), project incubation (Startup DAO), and legal work (Legal WG). 

    - - - -

    To learn more about the NDC, please see here.

    - - - -

    NEAR Community Treasury Launch

    - - - -

    One of the NDC’s biggest achievements is the recent launch of the NEAR Community Treasury. Championed by the NDC’s Governance Working Group with support from the NEAR Foundation and other stakeholders, the NEAR Community Treasury leverages an innovative legal framework to provide the ecosystem with a robust, sustainable, and decentralized treasury. 

    - - - -

    At the outset, the NEAR Community Treasury will hold 5,662,061 NEAR, which was donated to the NEAR Digital Collective by the NEAR ecosystem community (along with a nominal amount of USDT that was donated by the NEAR Foundation as part of the administrative setup process). 

    - - - -

    The NEAR Community Treasury wallet is viewable here.

    - - - -

    Grassroots DAO funding activity

    - - - -

    The three core grassroots DAOs — Developer DAO, Marketing DAO, and Creatives DAO — have been making great strides recently in updating their internal governance and processes to ensure they are as transparent, sustainable, and effective as possible. 

    - - - -

    NEAR Foundation has been supporting each of the grassroots DAOs through that update process. Both the Developer DAO and Marketing DAO have already begun allocating funding again, and the Creatives DAO intends to follow suit shortly.

    - - - -

    The grassroots DAOs remain the key source of funding for anyone looking to build in the NEAR ecosystem.

    - - - -

    NEAR Horizon (Accelerator) 

    - - - -

    The mission of NEAR Horizon is to attract the highest quality founders to build on NEAR protocol and support them in taking off. To that end, NEAR Horizon’s strategy consists of three components. 

    - - - -

    Product

    - - - -

    The NEAR Horizon team is building a dApp on NEAR’s Blockchain Operating System that is a double-sided marketplace, which allows founders to find people and organizations who can help them. The team launched an MVP of the product for beta testers in early March 2023. 

    - - - -

    Partnerships

    - - - -

    The team is launching a series of RFPs (the first RFP was released in Feb 2023) to create partnerships with people and organizations who are well positioned to help Founders. In early Q2, the NEAR Horizon team will be releasing additional open calls for:

    - - - -
      -
    • Engineering support resources
    • - - - -
    • Talent / recruitment platforms and services
    • - - - -
    • Legal platforms and services
    • - - - -
    • Back office accounting platforms and services
    • - - - -
    • Marketing services
    • - - - -
    • Product management services
    • -
    - - - -

    Content & Tooling

    - - - -

    The NEAR Horizon team will provide asynchronous content and access to tooling within the dApp. Think go-to-market examples, legal how-to guides and tools like back office accounting software specifically made for Web3 businesses. 

    - - - -

    OKR3: Web2 → Web3 

    - - - -

    Starting in Q2 last year, the Business Development team’s  plan was to revamp and hire a full BD team, restructure past historic deals, solve for key infrastructure gaps, and bring the highest quality builders to the NEAR ecosystem. The team is now fully hired, ramped up, has met most key infrastructure gaps, and is in process of renegotiating past deals. Q1 marked the first full quarter that BD has focused on bringing builders to the NEAR ecosystem.

    - - - -

    The goal of BD is to help enterprises and startups realize that the NEAR protocol should be the default chain of choice to start building any blockchain application. Fundamentally, BD is attempting to kickstart a flywheel effect to drive network effects to attract builders to the NEAR protocol in order to make it that default choice. 

    - - - -
    - - - -

    The flywheel starts with enterprises, marquee use cases, or household brands building on NEAR that provide brand awareness and legitimacy. This in turn attracts startups to NEAR. Collectively, these support real world use cases and increase adoption to attract more users to the chain, which in turn draw more enterprises and startups to build on NEAR. 

    - - - -

    For core use cases, BD is focused on a few key categories, including gaming, loyalty and rewards, and emerging verticals such as sustainability and decentralized science. In Q1 we focused on improving the number of partnership opportunities we were seeing, and our pipeline has increased dramatically. We found high quality sources of leads to be from backer referrals and agencies / dev shops so have strengthened those ties. BD has also seen a rise in projects looking for more support and a number of builders came over from other chains to make NEAR as their primary, or sole, chain (e.g. Passion, Dropt, Solaire). Geographically, the team now has expanded its focus to India and Korea, and expects to drive meaningful opportunities from entrepreneurs in those countries. 

    - - - -

    SWEAT continues to be a  category leader in the move-to-earn space becoming one of the most popular Web3 apps in the world. SWEAT is being consistently used by a million monthly active users engaging voluntarily with NEAR protocol and using SWEAT tokens for staking or transactions. NEAR Foundation’s BD team will continue working with the talented SWEAT team on launching new features such as Learn & Earn, token swaps, and games that will create deeper bonds between the NEAR blockchain and SWEAT users. 

    - - - -

    For NEAR Foundation’s Q1 goals, the BD team set out to close three Tier 1 partnerships and seven Tier 2 partnerships for a total of 10 lighthouse partnerships — a goal which the NEAR Foundation surpassed. Although several of those deals are yet to be announced, NEAR Foundation is excited to highlight and welcome the following partners to the NEAR ecosystem:

    - - - -
      -
    • Dropt — By using Dropt, teams and enterprises can now easily and seamlessly introduce blockchain-powered loyalty and engagement mechanics into their customer journey. These Web3 features will help increase engagement, retention, and lifetime value without customers ever even knowing they are interacting with the blockchain.
    • -
    - - - -
      -
    • BORA (Kakao games) — An affiliate of Kakao Games and its parent company BORANETWORK, BORA is focused on game development and blockchain-based gaming ecosystems. NEAR and BORA will support each other in spreading local brand awareness, invest in research and collaboration on cross-chain, host events, and generate Web3 opportunities in Korea.
    • -
    - - - -
      -
    • WEMADE  – As one of the largest publicly-listed gaming companies in South Korea and a leading game developer in South Korea for over 20 years, WEMADE will be vital in NEAR’s push toward mainstream adoption of Web3. NEAR and WEMADE will support the development of blockchain apps in Korea as well as other markets.
    • -
    - - - -
      -
    • Crystals of Naramunz – Featured in a premium spot under Sweden Showcases side by side with traditional games at one of the biggest gaming events in the country.  Their alpha waitlist surpassed 10,000 signups.
    • -
    - - - -
      -
    • SLiC Images – In February, NBA All-Star Baron Davis announced SLiC Images, a photo and video rights management platform. Built on NEAR, it has received a grant worth $250K funded by Mintbase Grants Program.
    • -
    - - - -
      -
    • SeatlabNFT – Recently named as finalists in the Mobile and Emerging Technologies category for StartUp of the Year.
    • - - - -
    • Hydra Ventures – A first in the Web3 space, Hydra Ventures is designed to help other investment DAOs get off the ground. This partnership will open the door to the eventual launch of the first investment DAO in the Near ecosystem, with the goal of helping to provide critical funding to purpose-driven, socially impactful web3 startups.
    • -
    - - - -

    NEAR Foundation is also excited to partner with Flow Carbon (tokenized carbon credits market), Starchain Gazer (play and own gaming), Vizta Digital (fashion metaverse), and Popp (customer engagement for SMBs) to continue expanding the NEAR ecosystem. The NEAR Foundation’s BD team remains committed to bringing the best Web2 and Web3 builders to NEAR, and look forward to sharing next quarter’s list of partnerships.

    - - - -
    - - - -

    Building stronger connections with the NEAR ecosystem

    - - - -

    As part of NEAR Foundation’s ongoing commitment to transparency and building stronger connections with the NEAR ecosystem, a number of new initiatives are in progress. 

    - - - -

    First, the NEAR Foundation is restarting NEAR Town Halls. Similar to their previous incarnation, the Town Halls will be open to the entire NEAR ecosystem. Hosted by Marcus Ribeiro, a member of NEAR Foundation’s Community Team, they will be held bi-weekly — giving everyone a chance to get a firsthand look at the latest updates and exciting developments in the NEAR ecosystem. You can watch our March Town Hall here.

    - - - -

    Earlier this year, NEAR Foundation kickstarted the Ecosystem Roundtable. Meeting weekly, the Ecosystem Influencer Roundtable is designed to enhance communication and increase accountability between major ecosystem projects, Pagoda, and NEAR Foundation. The roundtable’s regular meetings help with aligning on updates, sharing insights from the ecosystem, and discussing high-level ecosystem goals. These meetings, however, are not for decision-making purposes. 

    - - - -

    Most recently, the Ecosystem Influencer Roundtable met at an offsite at ETHDenver. Over time, the goal is for the Ecosystem Influencer Roundtable to become more autonomous, and for the participants to work independently to collaborate, set goals and initiatives for the NEAR ecosystem, and develop their own governance structure. You can read more about the roundtable here

    - - - -

    The Community Team also put out a NEAR Foundation Community Survey. The goal of this survey was to measure the ecosystem sentiment around NEAR Foundation and gather feedback on where to focus and improve efforts.The common areas for improvement that were identified were around funding, improving communications and transparency, and improving the support and engagement with the NEAR ecosystem.

    - - - -

    Lastly, NEAR Foundation has been working on an overhaul of NEAR’s Twitter Spaces/AMAs, which showcase and highlight projects building on the NEAR ecosystem. The NEAR Foundation’s Community Team is finalizing a structured process for projects to leverage NEAR Foundation’s platforms to conduct Twitter Spaces/AMAs with the NEAR Foundation team. The team encourages feedback by following up to the Spaces/AMAs with a feedback form, which is reviewed to ensure community voices are heard and the valuable feedback is put into action. NEAR Foundation has run a few of these in a test flight to refine the project, and the new process should be live by May 2023. Stay tuned on NEAR Twitter, Telegram, and Discord accounts for an announcement on this new process. 

    - - - -

    NEAR in the press

    - - - -

    Q1 saw a number of top news stories from the NEAR Foundation and NEAR protocol’s thriving ecosystem. The NEAR ecosystem was covered in over 400 articles across the globe in Q1, including over 15 tier 1 stories in outlets including  CoinDesk, Forbes and  Bloomberg, and 34 tier 2 stories in outlets including  Block and Cointelegraph.  

    - - - -

    Headlines included the announcement of the Blockchain Operating System at ETHDenver, as well as coverage from many of our partnership announcements, ecosystem hubs, and progress from many of NEAR protocol’s ecosystem projects. These include Kakao Games, SlickImages (led by ex-NBA all-star Baron Davis), Recur, LedgerLive, Calimero, Few&Far and the NDC, amongst others (more details on these below).

    - - - -

    To find out more about NEAR Foundation’s and the NEAR ecosystem’s press coverage you can check out the  monthly roundups below:

    - - - -

    NEAR Foundation PR Roundup for January 

    - - - -

    NEAR Foundation PR Roundup for February

    - - - -


    NEAR Foundation PR Roundup for March

    - - - -

    Ecosystem Highlights

    - - - -

    Completed Raises

    - - - -

    Q1 2023 saw several projects complete a fundraising round.

    - - - - - - - -

    Ecosystem News & Community 

    - - - -
      -
    • The NDC GWG announced the NEAR Community Treasury is now live. 5.7 million NEAR is now available for decentralized funding of grassroots initiatives through the NDC. This is a major milestone in the efforts in decentralization of the NEAR ecosystem.
    • - - - -
    • DevDAO, the organization behind NEAR Developer Governance, made significant strides in fostering open discussions and development via the Community and Work Groups. They established a framework and platform for decentralized funding for developer opportunities, and distributed funding to several projects. At its core, DevDAO is an embodiment of the future of decentralization of the NEAR developer ecosystem. The roadmap includes a range of initiatives such as hackathons, virtual and in-person events, documentation, and dev support programs. If you’d like to learn how to get involved, check out this post outlining the various contribution pathways.
    • - - - -
    • The NEAR Wiki Landing page has been overhauled to provide a better user experience and a more refined journey for the end user to find what they’re looking for.
    • - - - -
    • NEAR DemoDay kicked off this quarter on the 15th and 16th of March. DemoDay is a full spectrum ecosystem showcase, aiming to run once a quarter, which brings projects, leaders and VCs/Funds together to showcase new projects as well as discussions of hot topics in the space and exciting developments on NEAR. It was an impactful event, garnering significant interest,  including from CoinTelegraph. DemoDay saw 64 projects registered, 22 projects presented live on DemoDay, with ten ecosystem VIP judges, including Marieke Flament and Alex Shevchenko and folks from Huobi Incubator and Pantera Capital. The recap content can be found on PitchTalk.com.
    • - - - -
    • The NEAR Foundation Community Team kicked off a weekly NF Ecosystem Amplification Twitter Spaces/AMAs series to highlight the multitude of projects building in the NEAR ecosystem. ~30 projects expressed their interest in participating.
    • - - - -
    • NEAR protocol is being included in CoinGecko’s Candy Rewards Learn and Earn Program. It is set to officially kick off in early April.
    • - - - -
    • The Governance Forum has gone from 8,888 members at the start of Q1 to 9,329 (~5% growth in the quarter). Weekly pageviews on the forum have gone up from 82,269 (December average) to 124,445 (~51% increase). However, the number of posts are down by 15% from the previous quarter.
    • - - - -
    • NEAR Social (BOS) has gone from 483 MAA at the start of Q1 to 4141 MAA as of today. (~857% growth in the quarter, ~319% growth since NEAR Day @ETH Denver)
    • -
    - - - -

    DeFi

    - - - -
      -
    • NEAR protocol saw a peak of $88m TVL in Q1 2023. Ref.Finance led the way for TVL on NEAR protocol, followed by MetaPool. There was, however, a 34% drop in TVL at the beginning of April as a result of the bankruptcy of Alameda, following on from the effects of FTX.
    • - - - -
    • Ref.Finance launched an Orderbook built on top of Orderly. The orderbook provides a transparent, efficient, and decentralized mechanism for matching buy and sell orders on the platform, allowing users to experience a Central Limit Order Book (CLOB)-like user interface.
    • - - - -
    • Spin launched Strategies, aka DeFi Option Vaults, on NEAR protocol. DeFi Options Vaults (DOVs) are instruments that simplify option investment strategies for users. The DOV automatically deploys staked assets into specific options strategies — a process entirely run by smart contracts.
    • -
    - - - -

    Gaming

    - - - -
      -
    • Duel Network, an innovative play-to-earn gaming project on BSC, launched their token on NEAR. By embracing NEAR’s technology and growing ecosystem, Duel Network is positioned to attract and engage users from BSC. This strategic move not only amplifies the Dual Network’s reach, but also strengthens the collaboration between NEAR protocol and other leading chains.
    • -
    - - - -

    NFTs

    - - - -
      -
    • EveryoneEatsEntertainment recently launched Music Feast, a decentralized label and NFT marketplace, on NEAR protocol. With Music Feast the team is aiming to bridge the gap between the traditional music industry and Web3 by utilizing high caliber talent, and simplifying the purchase process for the end user by masking the current complexities. For example, there is fiat on-ramping with auto generated non-custodial wallets. The platform launched with a NEARWEEK AMA, along with their pioneer artists AshleeBANKZ and world-renowned hip-hop icon DJWhooKid.
    • -
    - - - -
      -
    • They are currently working with 8 artists, and others are on the way. 
    • - - - -
    • Artists will release 6 NFTs per collection on a tiered system with each providing additional perks and benefits. 
    • - - - -
    • The main artist drop right now is Whoo Kid, featuring Ashlee Bankz. Between Whoo Kid and ClassiQ there are an estimated 1.3 million reachable fans.
    • -
    - - - -
      -
    • Salmon Wallet is building an all-in-one, open-source wallet with an integrated bridge, NFT marketplace, and other features. According to the project, the Source of Water NFTs work as an exclusive membership program — holding a Source of Water NFT grants a wallet perpetual free commissions on any swap/bridge/on-off-ramp. 
    • - - - -
    • YouMinter launched on mainnet. YouMinter is an NFT Social platform where users can create, communicate, and build a community within a sleek UI, with effortless onboarding and usage.
    • -
    - - - -

    Infra & Devs 

    - - - -
      -
    • A 2022 Near Foundation grant recipient completed and launched their Rust Smart Contract Security Course. And the best part? It’s completely free on YouTube.
    • - - - -
    • Welldone Studio / Welldone Wallet dropped a NEAR plugin for Remix IDE. WELLDONE Studio demoed their new plugin on April 4th, which enables developers to create and deploy smart contracts on NEAR with Remix Project, the most popular IDE on Ethereum.
    • - - - -
    • Coinpanda announced its API integration with the NEAR protocol. Coinpanda is an easy-to-use crypto tax platform that supports DeFi, NFTs, and 800+ integrations.
    • - - - -
    • At ETHDenver, Calimero announced the launch of private sharding on NEAR. Now anyone with minimum experience and proficiency in blockchain technology can launch their own private shard in a matter of minutes and be sure about the performance and security that is managed by the platform itself. This is facilitated by Calimero Console, a user-friendly interface that makes deploying, monitoring, and maintaining private shards a streamlined and user-friendly process.
    • - - - -
    • Keypom is a tool built and recently launched on NEAR that allows anyone to create highly customizable onboarding experiences for both new and existing users. They launched a companion no-code app as well as an SDK and docs at ETHDenver. Keypom will be at Consensus, where they’ll show off trial accounts — a way to instantly sign in and start using an app with the click of a link.
    • - - - -
    • NEAR Foundation, in partnership with Developer Governance, Proximity Labs and Aurora Labs, sponsored over $36,000 worth of bounties at ETHDenver, and there were a number of great submissions. There will be many more hackathons coming up this year, so be on the lookout for announcements so you don’t miss out.
    • - - - -
    • Aurora released Aurora Cloud, a turnkey blockchain solution for businesses transitioning to Web3.
    • -
    - - - -

    A Look Ahead

    - - - -

    to Q2, the NEAR Foundation is continuing its strategic focus on similar  OKRs to Q1, including more work on the Blockchain Operating System, the continuing efforts toward a thriving decentralized ecosystem, and our Web2.5 strategy.

    - - - -
    - - - -

    This NEAR Foundation Transparency Report (the “Report“) is provided for informational purposes only. The information contained herein is provided on an “as is” basis, and the NEAR Foundation makes no representations or warranties, express or implied, regarding the accuracy, completeness, or reliability of the information contained in this Report.

    - - - -

    The NEAR Foundation, its affiliates, directors, employees, and agents, shall not be held liable for any errors, omissions, or inaccuracies in the information provided herein. NEAR Foundation reserves the right to update, modify, or amend any information contained in this Report without prior notice. This Report is not intended to provide financial, investment, legal, tax, or any other professional advice. Readers should consult with their own professional advisors before making any decisions based on the information contained in this Report.

    -

    The post NEAR Foundation Transparency Report: Q1 2023 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/transparency/index.html b/public/blog/tag/transparency/index.html deleted file mode 100644 index 4f870df69..000000000 --- a/public/blog/tag/transparency/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Transparency Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/uk-crypto-asset-consultation/feed/index.xml b/public/blog/tag/uk-crypto-asset-consultation/feed/index.xml deleted file mode 100644 index 271a148c2..000000000 --- a/public/blog/tag/uk-crypto-asset-consultation/feed/index.xml +++ /dev/null @@ -1,752 +0,0 @@ - - - - UK Crypto Asset Consultation Archives – NEAR Protocol - - /blog/tag/uk-crypto-asset-consultation/ - - Thu, 04 May 2023 00:49:25 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - UK Crypto Asset Consultation Archives – NEAR Protocol - /blog/tag/uk-crypto-asset-consultation/ - 32 - 32 - - - NEAR Foundation’s Response to the UK Crypto Asset Consultation - /blog/near-foundations-response-to-the-uk-crypto-asset-consultation/ - - - Thu, 04 May 2023 00:49:16 +0000 - - - /?p=20475 - - The NEAR Foundation (the “Foundation”) submits this letter in response to the consultation and call for evidence by His Majesty’s …

    -

    The post NEAR Foundation’s Response to the UK Crypto Asset Consultation appeared first on NEAR Protocol.

    -]]>
    - -
  • Introduction
  • - - - - -

    The NEAR Foundation (the “Foundation”) submits this letter in response to the consultation and call for evidence by His Majesty’s Treasury (“HMT”), concerning the ‘Future Financial Services Regulatory Regime for Crypto Assets’[1] in the United Kingdom (“UK”) (“Consultation”). The Foundation believes that a clear and proportionate regulatory framework is essential for the meaningful global adoption of Web3 technology and welcomes HMT’s proactive engagement with industry participants towards achieving this goal.

    - - - -

    The Foundation is a Swiss-based regulated non-profit organisation created in September 2019, with a core mission (and legal mandate) of supporting the development and growth of the NEAR protocol (the “NEAR Protocol”) and its associated ecosystem (as well as the global adoption of open-web technologies more generally). The NEAR Protocol is a permissionless, open source, decentralised, proof-of-stake blockchain network.[2] There are more than 550,000 participants in the NEAR Protocol ecosystem, including over 4,000 developers and 1,000 projects building on the NEAR Protocol.

    - - - -

    A key aspect of the Foundation’s mission is advocating for clear, fair, and proportionate regulation of Web3 technology, and we recently publishedPolicy Principles[3] setting out the core values driving our advocacy work. We believe that the policy outcomes advanced by HMT are reasonable and capable of being achieved in the Web3 context with the right approach (i.e. regulatory equivalence is possible). In fact, we believe that many of Web3’s core characteristics (particularly decentralisation, disintermediation, transparency and immutability) make it uniquely well-suited to effectively achieving these policy outcomes. 

    - - - -

    The Consultation comes at a key crossroads for Web3 in general and Decentralised Finance (“DeFi”) more specifically. While DeFi currently represents a small fraction of the Traditional Finance (“TradFi”) markets, its potential for growth and broader positive impact is significant. As of January 2023, total volume on decentralised exchanges (“DEXes”) (a proxy for the total DeFi market cap) stood at $56 billion,[4] compared with the total value of traded shares on the largest exchanges worldwide of $41.8 billion as of June 2022[5]. As of 2022, there exists roughly 4.8 million DeFi users globally, and within Europe, the UK is marked as the most prominent DeFi player.[6] Beyond DeFi, UK’s cryptoasset activity is significant, with the UK occupying a place among the top 20 nations with high adoption of crypto activity.[7] 

    - - - -

    Given its comparative infancy, DeFi offers an opportunity for regulators to establish  proportional, adaptable, and clear regulatory frameworks that attract investment, job creation, and innovation to the UK and ultimately position the UK as a leader in the evolving DeFi landscape.

    - - - -
      -
    1. Chapter 11 Responses
    2. -
    - - - -

    36. Do you agree with the assessment of the challenges of regulating DeFi? Are there any additional challenges HM Treasury should consider?

    - - - -

     The Foundation broadly agrees with the challenges of regulating DeFi listed by HMT in the Consultation.[8] When compared to TradFi, DeFi raises different risks, involves different actors, and engages different policy considerations. While DeFi systems can be built to replicate the functional result of some existing TradFi activities, DeFi and TradFi use different technology and employ different legal and social/incentivisation arrangements. A different regulatory approach is therefore required.

    - - - -

    This different regulatory approach is likely to, and should at least in many respects, share the same principles and goals as existing TradFi regulation. However, it is essential for any effective DeFi regulatory framework to recognise and facilitate DeFi’s unique features (particularly decentralisation and disintermediation). Failure to do so risks stifling innovation and undermining the very policy objectives HMT is seeking to achieve.

    - - - -

    At a fundamental level, TradFi relies on rights and obligations defined by external legal contracts and laws, while DeFi operates on the basis of powers and incentives defined by internal deterministic peer-to-peer or peer-to-software systems. These are fundamentally different approaches to solving the problem of trust in transactions, with different risk profiles and regulatory outcomes.

    - - - -

    It is also important to note that while DeFi can be built to replicate certain TradFi activities, DeFi can be structured to operate in a fundamentally different way to achieve those outcomes. For example, consider a ‘transaction’ in the DeFi context. Even a very basic DeFi transaction – e.g. transferring cryptoassets from one cryptoasset wallet to another – involves several different actors (end-user(s), network miner/validator, network relayer, and possibly many others depending on the underlying blockchain network and the apps/services which the end-user opts to use) and complex technological processes (broadcasting a signed data package to a network’s memory pool (“Mempool”), selecting data packages/transactions from the Mempool by network miner/validators based on cryptoasset incentive structures, creating of new network blocks etc.).

    - - - -

    Consider further a ‘lending’ transaction in the context of a DeFi interest rate protocol. Although the term ‘lending’ is broadly used and easily understood in common parlance, it misrepresents the economic activity that these protocols enable. Users of these protocols “do not extend credit or incur debt, which are the essential characteristics of a loan transaction,”[9] and instead earn interest securely through overcollateralization and free market liquidation, not through lending. While collateralization exists in both DeFi and TradFi, the latter still depends on credit and debt relationships, making DeFi ‘secured loans’ fundamentally different from TradFi.  Moreover, DeFi interest rate protocols are permissionless — enabling pseudonymous participation — and employ a “peer-to-pool” model, making it hard or impossible to directly identify borrowers. Because DeFi transactions are conducted on a “peer-to-pool” or “peer-to-protocol” basis, meaning users supply and borrow fungible assets to and from a pool of liquidity stored within the protocol, not to and from specified counterparties, suppliers rely on overcollateralization and liquidation to ensure that they can withdraw their assets at any time, and not on trust of a counterparty.

    - - - -

    Grafting the language and concepts of TradFi onto Defi — including by mislabeling DeFi transactions as loans — can lead to misunderstandings and muddy the distinction between DeFi and TradFi, making it difficult for regulators to design appropriate and proportionate frameworks for DeFi. Any comparison of DeFi to TradFi should therefore carefully analyse the different participants, systems, technologies and risks involved.[10] 

    - - - -

    We broadly agree with the different characteristics of DeFi identified by HMT in the Consultation. We wanted, however, to highlight two of DeFi’s defining characteristics that are particularly relevant from a regulatory perspective and should inform any proposed cryptoasset regulatory framework:

    - - - -
      -
    • Decentralised. Decentralisation (as HMT appropriately notes[11]) can exist on a spectrum and in our view is most appropriately defined in terms of various forms of intrinsic network power/control being more or less distributed (we discuss these different forms of network power/control in more detail below). Where a project sits on the ‘spectrum’ of decentralisation is impacted, among other things, by factors such as decisions subjected to cryptoasset holder voting, governance participants, cryptoasset ownership distribution, the scope and extent of the original development team’s involvement, whether authority to alter, pause or shut down the protocol is present, the presence of a multi-signature wallet (“Multisig”) with elevated privileges, the members of the Multisig, the responsibility for addressing security issues, and treasury management methods. Decentralisation should be a critical aspect of any approach to cryptoasset regulation because it can impact the nature, number and geographic distribution of participants involved in a DeFi system (a much larger, distributed, fluctuating body of actors) as compared to any TradFi system.
    • - - - -
    • Dis-intermediated. Fully transparent/auditable ledgers and deterministic smart contracts enable trustless (or significantly trust-minimised) interactions and so facilitate systems that are resistant to extrinsic influence or control. This underpins two key features of DeFi: (i) the self-custody of assets; and (ii) the ability to transact on a peer-to-peer basis. Together these features enable genuine user autonomy and also change the potential risks which users are exposed to; and so (as with decentralisation) a thorough understanding of DeFi’s dis-intermediation features should inform any approach to cryptoasset regulation.
    • -
    - - - -

    Decentralisation and dis-intermediation in DeFi have the potential to offer powerful advantages over TradFi, creating robust systems that can enable a more secure, transparent, and efficient financial landscape. Key benefits of DeFi include reduced information asymmetry, increased transparency, faster settlements, enhanced liquidity, innovation enablement, streamlined processes, automation, lower transaction costs, and improved user control. By leveraging these attributes when regulating DeFi, HMT can fulfil its overarching objectives of fostering innovation, encouraging growth and competition while protecting the market and its users. Moreover, DeFi has the potential to benefit a wider range of participants and surpass some of the known limitations of TradFi.[12] 

    - - - -

    By way of example, the recent collapse of FTX (previously one of the largest centralised cryptoasset exchanges in the world) has exposed the risks and challenges of centralised actors in the cryptoasset space. As an initial matter, customers did not control or self-custody their assets at FTX (and the use of customer funds by FTX remains at issue).[13] FTX was also a highly centralised organisation, with most of its control and decision-making allegedly concentrated in the hands of its founder and former CEO, Sam Bankman-Fried, and other key individuals.[14] FTX also had a close and opaque relationship with Alameda Research, a trading firm also run by Bankman-Fried, which held a large position in FTT, the native token of FTX.[15] FTX offered bundled service offerings, such as derivatives, futures, options, and leveraged tokens, which increased its complexity and risk exposure.[16] FTX faced a liquidity crisis, a possible hack, and criminal charges against Bankman-Fried and FTX’s subsequent collapse significantly impacted many other centralised cryptoasset actors.  

    - - - -

    By contrast, DeFi networks and systems have demonstrated their resilience and strength during this market shock. As J.P. Morgan noted in a weekly report following the FTX collapse: “while the news of the collapse of FTX is empowering crypto sceptics, we would point out that all of the recent collapses in the crypto ecosystem have been from centralised players and not from decentralised protocols”.[17] Moreover, the turmoil in centralised exchanges wrought by the FTX collapse reinforced the clarion call for self-custody embodied by the crypto ethos of “not your keys, not your coins”, leading market participants to seek out decentralised alternatives.[18] 

    - - - -

    We note that a large part of HMT’s focus in the Consultation is on centralised cryptoasset actors and intermediaries, and we believe this is appropriate because it is in the context of large centralised actors that systemic risks are most likely to arise, engendered by (for example) the potential for conflicts of interest, anti-competitive behaviours (including market manipulation), and a lack of transparency. Similar risks can potentially exist in the DeFi context where some projects might be less decentralised and/or dis-intermediated because (for example) certain forms of intrinsic network power are concentrated in the hands of a small number of actors. This could lead to potentially harmful concentrations of power within DeFi networks which we believe are an appropriate focus for regulation (and which the disclosure and registration approaches to regulation described below are intended at least in part to mitigate).

    - - - -

    Regulators and academics along with the Web3 and DeFi industry globally have been considering how best to protect against the potentially harmful concentrations of power discussed above (particularly in the early stages of a network’s development) while still facilitating and protecting DeFi’s unique features and ensuring that responsible innovation can continue to take place.

    - - - -

    Some examples that are already being explored and could serve as a useful starting point to any Financial Services and Markets Act 2000 (“FSMA”)-based registration and disclosure regime include: (i) a tailored ‘lite’ registration and disclosure regime for cryptoasset issuance by initial development teams (which could serve as a ‘lite’ version of a FMSA-based registration & disclosure regime for cryptoassets); (ii) a safe harbour regime; (iii) self-regulatory approaches; (iv) new technologically-mediated approaches to disclosure such as Disclosure non-fungible tokens (“NFTs”) and Decentralised Autonomous Organisations (“DAOs”).

    - - - -

    Before looking at examples of each of these potential approaches in more detail, it is worth noting in what follows that we focus on approaches emphasising disclosure and reporting, rather than authorisation-based approaches. This is driven by the fact that DeFi’s decentralised character gives rise to novel jurisdiction issues, given that the potentially large and constantly fluctuating body of network participants can be operating from multiple (and constantly fluctuating) jurisdictions; for which there is no direct analogue in the TradFi context.  

    - - - -

    We would therefore caution HMT against implementing an authorisation-based regime in the DeFi context because in our view that would risk: (i) requiring network participants to go through the (potentially complex and costly) exercise of determining whether certain DeFi-related activities in certain jurisdictions require authorisation, thereby potentially creating ‘moats’ where only more sophisticated, well-resourced actors can participate in DeFi systems; (ii) requiring DeFi projects to evaluate potential authorisation requirements across a large (and constantly fluctuating) number of jurisdictions in a way that TradFi projects do not; and (iii) perhaps most importantly of all, compromising DeFi’s inherently permissionless, cross-border nature and so undermining decentralisation and dis-intermediation.

    - - - -

    Instead, we believe that a tailored disclosure and registration regime would help to preserve DeFi’s unique features (decentralisation and dis-intermediation) while also reducing information asymmetry, and enhancing transparency and the UK’s attractiveness as a jurisdiction for DeFi entrepreneurs, projects and investors.

    - - - -

    38. Do you agree with HM Treasury’s overall approach in seeking the same regulatory outcomes across comparable “DeFi” and “CeFi” activities, but likely through a different set of regulatory tools, and different timelines?

    - - - -

    We broadly agree with HMT’s overall approach. We refer to our answer to question 36 above, and in particular would emphasise the fact that any comparison of DeFi to CeFi/TradFi should be approached with caution on the basis that such comparisons are a useful heuristic but do not capture and risk obscuring DeFi’s qualitative differences. We believe that it is possible to achieve HMT’s desired overarching policy objectives — innovation, competition, consumer protection, financial stability and market integrity — in the DeFi context provided any regulatory framework proposed by HMT reinforces (rather than undermines) DeFi’s essential features.

    - - - -

    Indeed, it is these essential features that make DeFi a potentially more effective substrate for achieving policy objectives than TradFi — given features like transparency, auditability, decentralisation, and disintermediation can be built in and deterministically enforced by smart contracts in a trustless (or significantly trust-minimised) manner — which, in turn, can create an environment where financial regulations can be applied and monitored more efficiently and effectively.

    - - - -

    As we have noted above, opting for a ‘tech-agnostic’ approach in regulating DeFi presents obvious challenges and limitations, such as creating a framework that may not fully recognize or accommodate DeFi’s technical idiosyncrasies, or fails to provide adequate certainty for market participants. To address these challenges, policymakers and regulators should craft adaptive and flexible regulations suited to the unique characteristics of DeFi while working to keep pace with its technological advancements. This approach will help ensure that the regulatory framework remains effective and supportive of DeFi’s future development, ultimately promoting a robust, transparent, and secure DeFi ecosystem, which will evolve with DeFi technology and mature over time. Further details on our suggested approach below.

    - - - -

    Tailored Disclosure Regimes

    - - - -

    Improved and tailored disclosure in DeFi would be an important first step towards greater protection of DeFi participants. As an initial matter, it is important to recognise that disclosure in equity markets is ill-suited to elicit material information for token purchasers because such disclosure does not “cover a number of features unique to digital assets that would undoubtedly be considered important when making an investment decision”.[19] Instead, traditional disclosures are “designed for traditional corporate entities that typically issue and register equity and debt securities” and “focus on disclosure about companies, their management, and their financial results”.[20]  Tailored disclosure regimes exist elsewhere, for example, with respect to asset-backed securities.[21] 

    - - - -

    Several models for bespoke cryptoasset disclosures already exist. There have been domestic and international legislative proposals, such as European Markets in Crypto-Assets (MiCA) legislation,[22] recent bills in the US Congress,[23] the safe harbour proposals set out below, and other proposals by academics and lawyers including those referred to in this response.

    - - - -

    Potential disclosure elements for DeFi platforms could incorporate governance tokenholding data and any changes to this data (like listed equity holdings), and information about admin keys or other centralised controls, their scope, and arrangements. Additionally, such disclosure can include information regarding source code, token economics(e.g., asset supply schedule or protocol governance), information regarding the development team, network development plan, prior token sales, and trading platforms listing the tokens.[24] Another related element could require ongoing reporting of decentralisation efforts. This could encompass a variety of areas, such as the distribution of network nodes or the degree of participation from community members.

    - - - -

    Another important aspect of disclosure could centre around the technology component of each network. This could include regular code audits to ensure that the technology is secure, reliable, and able to perform its intended function. Additionally, the governance of the token could be subject to voting audits to ensure transparency in the decision-making process of each network. In some cases, financial reporting could also be required under a disclosure-based regime. This could include the provision of proof-of-reserves to demonstrate that the network has sufficient funds to back its operations, as well as the disclosure of revenue and expenses to provide insight into the financial health of the network.[25] 

    - - - -

    Mandated disclosures should also include a set of risk factors for the review of participants in DeFi, including risks such as regulatory, cybersecurity, operational, liquidity, smart contract, and interoperability risk. Such risk factors should be informed by guidelines crafted for DeFi that are similar to the European Securities and Market Authority ‘Guidelines on risk factors under the Prospectus Regulation’[26] and the Financial Conduct Authority’s Prospectus Directive under FSMA,[27] and may be crafted both by regulators or in connection with potential self-regulatory initiatives discussed below.

    - - - -

    Potential Safe Harbour Approaches

    - - - -

    A potential safe harbour could provide numerous benefits by fostering innovation and flexibility alongside regulatory certainty (and could incorporate elements of the tailored disclosure regime referenced above). It has the added advantage, as compared to sandbox approaches, of providing a clear rules-based framework to the industry that is applicable in the same way for all actors (while sandboxes are typically more discretionary in how they operate and so can often have a more limited scope; although in our view sandboxes do also have their merits). Several proposals have been made along these lines that are worthy of consideration and although they were not drafted with the UK regulation in mind, they are good source of information to guide HMT’s approach: (i) Hester Peirce’s “Token Safe Harbor Proposal 2.0” published in April 2021[28]; (ii) the Responsible Financial Innovation Act (“RFIA”)[29]; and (iii) LeXPunk’s “Safe Harbour X/Reg X”[30]. All of these approaches could also include a cross-border or interoperable sandbox approach.

    - - - -

    SEC Commissioner Hester Peirce’s Token Safe Harbor Proposal 2.0 provides a time-limited exemption for cryptoassets, affording initial development teams a three-year period to establish their networks as functional or decentralised, while exempting them from US federal securities registration. The exemption would continue to apply provided that the developer (i) complied with anti-fraud rules, (ii) provided semi-annual updates to the plan of development disclosure and a block explorer and (iii) made certain disclosures, including an explanation of governance mechanism for implementing changes to the protocol); a block explorer, and sufficient information for a third party to create tools for verifying the transaction history of the token. Lastly, upon the cessation of the grace period, the developer would be required to draft and disclose an exit report explaining why the network is sufficiently decentralised and the token is not a security (or otherwise register the token as a security).

    - - - -

    An analogue of the Token Safe Harbor Proposal 2.0 is the Safe Harbor X proposal by LeXpunK Army —  a community of lawyers and technologists who advocate for decentralised and peer-to-peer protocols — published in April 2022, which aims to address three key issues that the authors believe have impeded the adoption of Commissioner Peirce’s proposal:

    - - - -
      -
    1. The proposal’s focus on tokens without distinguishing between different types of transactions.
    2. - - - -
    3. The wide-ranging exemption covering the entire three-year network maturation period.
    4. - - - -
    5. The risk of regulatory arbitrage and unfair advantages for traditional or incapable issuers.
    6. -
    - - - -

    SafeHarbor X aims to address these concerns by modifying the approach in three key ways:

    - - - -
      -
    1. Focusing on exempting “qualifying distributions” of tokens to users and builders, rather than the token itself, allowing regulators to address potential abuses or unanticipated issues.
    2. - - - -
    3. Requiring eligible projects to be permissionless, open source, autonomous ‘public goods’ software to qualify for the exemption.
    4. - - - -
    5. Mandating an initial development team to be subject to a 12-month post-public-launch lockup for their autonomous crypto tokens, similar to the holding period for restricted securities under Rule 144.[31]
    6. -
    - - - -

    LeXpunK have also proposed a targeted disclosure and registration regime called Regulation X (“Reg X”)[32], which is designed to work alongside the SafeHarbor X proposal by affording projects that are not able to meet its (deliberately) strict requirements. The proposed Reg X offering exemption allows token projects to raise up to $75 million from accredited investors and up to $15 million from non-accredited investors in a 12-month period, subject to certain disclosure,anti-fraud requirements, and trading restrictions. The disclosure requirements include providing information about the network, its purpose, development plan, token economics, governance, risk factors, and insiders. The secondary market beneficial ownership reporting regime would require persons and groups who constitute large holders at the time of offering requiring them to file reports where ownership thresholds are exceeded and exit reports where holdings drop below the reporting threshold. Additional disclosures regarding extrinsically affiliated persons are also expected to be developed under the proposed framework, as well as to comply with certain trading restrictions and reporting obligations.The anti-fraud requirements require projects to comply  with the federal securities laws and regulations, as well as adopt a code of conduct and dispute resolution mechanism.

    - - - -

    The trading restrictions include limiting the amount of tokens that can be sold by insiders and affiliates in any 90-day period, and requiring them to file a notice of their intended sales with the SEC. The reporting obligations include filing annual and quarterly reports with the SEC, as well as disclosing any material events or changes that affect the network or the tokens.[33]

    - - - -

    By contrast to the Safe Harbor 2.0 and Safe Harbor and Regulation X proposals, the Lummis-Gillibrand Responsible Financial Innovation Act (RFIA)[34] aims to establish comprehensive disclosure requirements for ancillary assets[35] and their issuers. It mandates a one-year period following the submission of disclosure, during which issuers must detail their plans to support or discontinue the use and development of the ancillary asset, as well as information about markets and platforms utilising the asset.

    - - - -

    Both of these proposals should be analysed in the context of US security laws and its unique applications (and, in particular, the classification of cryptoassets for the purposes of US securities laws which has proven to be an extremely complex and somewhat controversial issue in the jurisdiction). The RFIA necessitates extensive corporate information about the issuer, including their history, experience, legal proceedings, and risk factors associated with the ancillary asset. While it shares some commonalities with Hester Peirce’s Token Safe Harbor Proposal 2.0 in terms of promoting transparency and addressing regulatory challenges, the RFIA has a broader scope and encompasses various aspects related to ancillary assets, including ownership information and related person transactions.

    - - - -

    HMT could also consider encouraging the adoption of a cross-border sandbox for DeFi. For example, the FCA is part of the Global Financial Innovation Network (“GFIN”)  — a collection of 20 regulators from countries including the UK, Canada, USA, and Australia — enabling firms to test innovative financial products, services, business models or regulatory technology. The GFIN model has not proven easy to implement. Indeed, in its first cross-border testing cohort, a total of 38 applications were received with only two firms successfully taking forward propositions to the live testing phase given the failure to implement testing plans that satisfied each jurisdiction’s criteria. Accordingly, it is crucial that any cross-border or interoperable sandbox format be attempted first with jurisdictions that are taking a similar approach to the DeFi space.

    - - - -

    Within a cross-border sandbox or collaborative law-making framework, regulators  could work together to clarify the treatment of various DeFi components, such as DAO frameworks[36], decentralisation models, risk factors and other disclosure requirements, KYC requirements, and the treatment of proof-of-stake versus proof-of-work networks.[37] 

    - - - -

    The safe harbour and cross-border sandbox approaches referenced above can be a valuable addition to any FMSA-based registration and disclosure regime for cryptoassets. Similarly, a RegX type approach serves as an intriguing ‘lite’ version of the same registration and disclosure framework that can facilitate access to capital for innovative DeFi projects. These methods are promising and potentially effective ways to achieve desired policy outcomes while fostering responsible innovation in the crypto space. By incorporating these approaches, regulators can promote the development of new, groundbreaking technologies in the cryptoasset ecosystem in a responsible and compliant manner.

    - - - -

    Self-Regulatory Approaches

    - - - -

    The self-regulating nature of DeFi protocols also makes them well-suited to governance by self-regulation, whether in a traditional or DAO form. Such a self-regulatory body could, among other things,  establish disclosure standards for DeFi to promote investor protection. These standards could include, for example, disclosure standards regarding the operation of any DeFi protocol and potential risks to users, standards relating to decentralised governance, decentralisation policies, terms of service and terms of use, risk assessment, safety modules and self-insurance, open source standards, and listing standards that seek to limit accessibility.

    - - - -

    Technologically-mediated approaches to disclosure

    - - - -

    Technologically-mediated approaches to disclosure also present new opportunities for developing methods of verifying knowledge for DeFi participants. In his article “Introducing Disclosure NFTs, Disclosure DAOs, and Disclosure DIDs”[38] and “Disclosure, Dapps, and DeFi”,[39] Professor Christopher Brummer introduced two technologically-mediated approaches to DeFi disclosure of particular interest, both of which draw upon DeFi’s unique strengths: (i) disclosure NFTs or decentralised identities (DIDs) and (ii) disclosure libraries.

    - - - -

    Disclosure NFTs can be employed to validate a user’s engagement with and understanding of the available disclosures. Users would interact with the available disclosures by reading or navigating through them and then complete tests or games designed to assess their comprehension. Upon successful completion, unique disclosure tokens would be issued, serving as proof that the user has thoroughly engaged with and internalised the relevant disclosures. These tokens, stored in the user’s digital wallet, could offer additional benefits, such as governance rights or access to specific services within the project, further incentivizing users to engage in the disclosure process.

    - - - -

    DeFi disclosures could also be linked to unique decentralised identifiers (“DIDs”) tied to a given individual. A DID is a unique text string that links an individual or entity to a set of data (“DID Document”) describing them. This data contains public keys, verification methods, and ways to communicate or interact with them, including network addresses like HTTP URLs. The DID Document acts as an authentication tool for the person or entity and helps build trust in their interactions. Upon completing disclosure comprehension, an individual’s DID could be provisioned with a credential to verify successful engagement. This credential can be stored off-chain in a personal datastore, wallet, or integrated into a digital driver’s licence as part of the individual’s disclosure DID. The information would be self-sovereign, granting the holder control over data access and usage.

    - - - -

    Decentralised Apps (“Dapps”) could verify delivery and engagement with disclosure, which may occur off-chain as in the Disclosure NFT example. Once confirmed, users can transact on the Dapp or others with similar risk profiles or disclosures, creating a decentralised, immutable chronological event record providing metadata related to past disclosure engagement.

    - - - -

    Disclosure Libraries aim to create a more collaborative and accessible environment for developing DeFi-specific disclosures, built as an online repository. Disclosure libraries could function as a platform where developers, lawyers, and nonprofits come together to access, share, and contribute to open-source disclosures for Web3 applications. These disclosure libraries could also form a repository for DeFi self regulatory initiatives efforts. These libraries would lower the entry barrier for startups, reduce development costs, and foster a culture of transparency, collaboration, and shared expertise within the ecosystem. The LeXpunK github repository on open source law, which includes open source templates and other materials for DAOs, is an example of how such a library could be structured.[40]

    - - - -

    39. What indicators should be used to measure and verify “decentralisation” (e.g. the degree of decentralisation of the underlying technology or governance of a DeFi protocol)?

    - - - -

    We refer to our response to question 36 above.

    - - - -

    As discussed above, decentralisation is most appropriately defined as the distribution of various types of intrinsic network power across participants in DeFi systems. A thorough understanding of decentralisation is essential for crafting an effective DeFi regulatory framework, as the nature and level of decentralisation fundamentally alters the number, nature and distribution of participants, and the way DeFi systems operate.

    - - - -

    There are various types of intrinsic network power, including:

    - - - -

    Validator Power: The power to read or access a blockchain network’s data. The validator power in open, permissionless blockchain networks is typically quite decentralised because the data is freely available to anyone (but this might not be the case in private, permissioned blockchain networks which we are not considering in our responses here). The more decentralised the validator power, the less likely any single validator can control or manipulate the network, leading to reduced risks of fraud or collusion. Elements that can be assessed to evaluate the decentralisation of validator power include node count and distribution of ownership of these nodes..

    - - - -

    Consensus Power: How agreement is reached among network participants on the validity of transactions and the overall state of the blockchain, including the power to write data to the blockchain in what is typically a two step process of (a) proposing a block; and (b) that proposed block being accepted by the other network nodes because it is consistent with the network’s consensus mechanism. Decentralisation in consensus power ensures that no single entity can dictate or manipulate the decision-making process, resulting in a robust and secure network.

    - - - -

    Protocol/Client Power: Protocol/client power refers to the control over the protocols and software clients used in DeFi networks. Decentralising protocol/client power through open-sourcing mitigates the risks of single points of failure, monopoly power, or a centralised entity driving the direction of the network without consideration for its users and stakeholders.

    - - - -

    Governance/User Power: This pertains to the influence users and stakeholders have over the rules, policies, and decision-making within a DeFi network. A decentralised governance structure, where users have a say in shaping the network’s future, ensures a more inclusive, democratic, and responsive system, which better aligns with the interests and needs of its participants. Related to governance and user power is contributor diversity, referring to the number and variety of developers who contribute to the source code of a DeFi network. A higher contributor diversity indicates a more decentralised software development process and reduces key person or team risk arising from dependence on a single developer or a core team.

    - - - -

    We note that there is not yet a standardised or industry-accepted set of standards for evaluating and/or verifying decentralisation, although there have been and will no doubt continue to be efforts to create a standardised framework.[41] The various disclosure approaches outlined in this response would be extremely helpful in this regard by helping to enhance transparency and reduce information asymmetry. As discussed above, we agree with HMT’s observation that decentralisation exists on a spectrum; and we would stress that, although some projects may claim to be decentralised when they are not, this does not mean that no projects are genuinely and substantially decentralised. We refer to our response to question 36 and, in particular, our discussion with respect to the critical role that decentralisation (and dis-intermediation) plays in mitigating potentially harmful concentrations of power in DeFi networks/systems.

    - - - -

    Relatedly, we acknowledge HMT’s observation that once certain DeFi networks/systems (or elements or those networks/systems) reach a certain level of decentralisation then they may not be practical to regulate. This is a significant observation because in our view: (i) it highlights that an authorisation-based regulatory approach to DeFi might risk being too inflexible to cater for this type of ‘transition’ as compared to a disclosure-based approach; (ii) it recognises the importance of decentralisation as a critical feature of DeFi networks/systems that qualitatively distinguishes it from TradFi, with different regulatory consequences; and (iii) decentralisation in this manner provides various consequential benefits to DeFi system components (as we have already described above – including increased transparency and reduced information asymmetry) that can ensure desired policy outcomes are still maintained even in the absence (or impracticability) of traditional regulation.

    - - - -
      -
    1. Chapter 12: Other Crypto Asset Activities (Miners and Validators)
    2. -
    - - - -

    44. Is there merit in regulating mining and validation activities in the UK? What would be the main regulatory outcomes beyond sustainability objectives?

    - - - -

    We broadly agree that there could be some merit in bringing certain types of mining/validation activities within the scope of a suitably targeted, light-touch disclosure-based regulatory regime. However, as with any other element of a DeFi network/system, great care has to be taken to ensure the specific technical details and idiosyncrasies are being appropriately taken into account — along with related opportunities and risks — when bringing any regulatory framework to bear.

    - - - -

    At the outset, it is important to highlight that mining (in proof-of-work networks) and validation (in proof-of-stake networks) activities take many different forms with different technological implementations. What is consistent across all of these forms is that mining/validation processes typically play an absolutely essential role in the functioning of a DeFi system (and blockchain networks more generally) via a host of processes including, for example, proposing new blocks for addition to the blockchain, choosing which transactions to include in proposed blocks, accepting or attesting proposed blocks, receiving block rewards and/or transactions fees and (taking these various processes together) maintaining network security. These processes are typically embodied in and form an integral part of crypto asset-based incentive frameworks that are deterministically enforced.

    - - - -

    Given the vitally important role that mining/validation activities play in DeFi (and other cryptoasset) networks and systems, great care should be taken to ensure that any proposed regulatory approach does not inhibit these activities, and in so doing stifle innovation or create uncertainty for market participants.

    - - - -

    It is also important to note that discussing ‘mining and validation activities’ writ large or as a monolithic category risks missing various critical technical, operational, and risk profile differences that should inform the regulatory approach. First and foremost it is important to situate these functions within the specific consensus mechanism and network in question. Proof-of-work and proof-of-stake are two different consensus mechanisms used in blockchain technology. Proof-of-work involves miners solving complex mathematical problems to validate transactions (most notably, Bitcoin), while proof-of-stake involves validators holding a certain amount of cryptocurrency and using it as collateral to validate transactions (NEAR Protocol, Polkadot, Ethereum, etc).[42] The Foundation’s focus will be on proof-of-stake networks, given that the NEAR Protocol is a layer-1 proof-of-stake network.[43]

    - - - -

    Validation activities

    - - - -

            A validator in a layer-1 network is a key role. Validators stake their cryptoassets in a shared pool[44] and then analyse blocks based on the rules set by the network and receive rewards in the form of network fee for verified transactions.[45] The network rewards can vary based on the amount of cryptoassets staked in the validators pool (generally with the more cryptoassets staked the higher the rewards). Each network determines its own reward and commission fee structure, which is generally enshrined in the deterministic rules of the network.[46] 

    - - - -

    Consider further the following high-level examples of different types of validation activities:

    - - - -
      -
    1. Single participant running a validator node. A participant operates their own validator node, contributing their resources to maintain network security and earn rewards in return.
    2. -
    - - - -
      -
    1. Delegated staking. Users delegate their cryptoassets to a trusted validator, who then stakes on their behalf, generally sharing the rewards and risks proportionally.
    2. -
    - - - -
      -
    1. Pooled staking. Participants pool their tokens together to create a shared validator node, distributing rewards and risks among the group based on each individual’s stake.
    2. -
    - - - -
      -
    1. Custodial staking. Users entrust their tokens to a third-party custodial service, which stakes on their behalf and manages rewards and risks, often for a fee.
    2. -
    - - - -
      -
    1. Liquid validator staking. Users stake their cryptoassets through a smart contract, with such staking contributions themselves made freely transferable (often in tokenised form), providing liquidity while still participating in staking.
    2. -
    - - - -

    These (and other) categories of validation activities clearly function very differently and present different potential risks. Across all of these categories however it is crucial to recognise that validation activities are typically controlled by the underlying networks and protocols, which utilise complex technical and cryptoasset-based incentivisation structures. Such structures are generally pre-determined and can be deterministically enforced, providing full transparency to all network participants.

    - - - -

    Given the vitally important role that validator activities play in DeFi networks and systems, regulators should exercise great care when proposing any approaches to avoid unduly restraining these activities, stifling innovation, or creating uncertainty for market participants.

    - - - -

    Collective Investment Scheme (“CIS”)

    - - - -

    One potential source of uncertainty for UK-based DeFi participants in the UK arises in connection with certain types of mining or validator activities and the definition of ‘Collective Investment Scheme’ under section 235 of the FSMA.[47] The definition includes arrangements with respect to property (including money) that allow participants to engage in or receive profits or income that stem from the acquisition, holding, management, or disposal of property, or sums paid out of such profits or income. The arrangements falling under the CIS definition must be such that the persons who are to participate (“Participants”) do not have day-to-day control over the management of the property, whether or not they have the right to be consulted or to give directions. They must also have the following characteristics: (i) the contributions of the Participants and the profits or income out of which payments are to be made to them are pooled, and (ii) the property is managed as a whole by or on behalf of the operator of the scheme.

    - - - -

    Presently, it is extremely unclear the extent to which different types of mining and validation activities — particularly pooled validator staking — might fall within the CIS definition. The current definition of CIS may not be suitable for DeFi practices primarily because: (i) it predates blockchain technology and therefore it is unable to address the nuanced aspects of decentralised technology; and (ii) it is a definition unique to the UK which focuses on scenarios where capital or assets are pooled and entrusted to third parties with significant investment discretion, which is not the case in DeFi. Moreover, with the borderless nature of blockchain technology in general, and permissionless nature of DeFi in particular, it would be challenging to pigeonhole validating activities under CIS. Schemes within the scope of s.235 are generally more centralised with a significant potential for abuse of power and conflicts of interest concentrated on a small number of people responsible for investment decisions (amongst other issues), as well as the fact that typically such ‘products’ are highly illiquid and/or carry significant risk.

    - - - -

    In the context of pooled validator staking, the risks present in TradFi do not apply because validation activities contribute to network functioning and security, rather than passive capital contribution as is the case under a CIS, and compensation for that work is often pre-determined and deterministically enforced by the relevant network or smart contracts (rather than dependent on the efforts or discretion of others).[48] Indeed, the discretion offered to a manager under a CIS is different to the narrow role of a validator in a proof of stake network that can be deterministically enforced on-chain through cryptoasset based incentivization structures to protect mining and validation function in networks. Regulation should not interfere or jeopardise the inherent on-chain cryptoasset-based incentivization structures that protect mining and validation functions within networks. Also, creating barriers to entry for staking could potentially concentrate validation power into the hands of a smaller number of well-resourced validators, negatively impacting DeFi’s key characteristics: decentralisation and dis-intermediation. We suggest that HMT considers exercising its power to carve-out pooled validator staking arrangements from the CIS definition, which would help promote certainty, encourage decentralisation, and support HMT’s overarching policy objectives.

    - - - -

    More generally, in our view any proposed approach to regulating mining and validation activities should focus on addressing potentially harmful concentrations of power – for example, where a large amount of a DeFi network’s consensus power is concentrated in the hands of a small number of actors, sometimes termed ‘validator dominance’. As with the other forms of potentially harmful concentrations of power in DeFi systems, validator dominance can reduce transparency and competition, and also raise consumer protection risks.

    - - - -

    A regulatory approach to tackle these potential risks  could involve a light-touch disclosure regime targeting validators operating at a certain scale, by way of a business. Disclosure requirements could be congruent with policy principles, ensuring that the regulatory environment remains conducive to the growth and development of DeFi networks and their participants.

    - - - -

    The eventual disclosure requirements could be designed by a joint regulator and self-regulatory initiative, and could include: (i) basic information about validators such as their identity, location of nodes, stake amount, uptime, security measures, technical specifications and performance metrics of the validator’s hardware and software; (ii) a standard set of risk factors applying to validators; and (iii) any fees/commission charged by validators. As mentioned above, in order to avoid potentially stifling validation activities or creating barriers to entry for individual network participants, we would suggest that any such regime should only apply to validators operating at scale and by way of a business (i.e. as a service offering to end users).

    - - - -

    Maximal Extractable Value (“MEV”)

    - - - -

    MEV refers to the profit that network miners and validators can obtain by strategically ordering or including transactions in the blocks they mine or validate within a blockchain network. MEV arises due to the decentralised nature of blockchain networks, where transactions are not processed simultaneously and miners/validators have some degree of control over transaction ordering in a block. HMT has identified MEV as an area of potential consideration.

    - - - -

    MEV is a critical component of DeFi systems (and blockchain networks more generally) because it underpins and typically forms an integral part of cryptoasset-based incentive structures which are designed to maintain and reinforce (amongst other things) the security and consensus of blockchain networks. MEV is also a highly nascent issue with very little data to inform the long-term impact of different types of MEV activities and strategies. Any regulation of MEV should therefore be carefully considered.[49] 

    - - - -

    At a high level MEV-based activities or strategies are typically categorised by industry participants into so-called positive (value-add) and negative (potentially harmful) strategies.

    - - - -
      -
    1. Positive (value-add) MEV strategies. These strategies are generally seen as beneficial or neutral to the network and its participants. They involve miners/validators extracting value without negatively impacting other users or the overall ecosystem. Examples of so-called positive MEV strategies include: (i) transaction prioritisation (transactions with higher fees are prioritised, which helps maintain a free market and the network’s incentivisation system); and (ii) arbitrage (exploitation of price differences across different cryptoasset markets, contributing to market efficiency).
    2. - - - -
    3. Negative (potentially harmful) MEV strategies. These strategies can potentially have adverse effects on the network and its participants, raising (amongst other things) consumer protection risks. They involve miners extracting value at the expense of other users or manipulating the network in a way that undermines its trustworthiness and efficiency. Examples of so-called negative MEV strategies include: (i) identifying lucrative transactions and replicating them before they are finalised on-chain, thereby capturing that value; and (ii) front-running (deliberately placing transactions before and after another transaction in an attempt to influence pricing of relevant cryptoassets).
    4. -
    - - - -

    There are already various efforts underway by industry participants to attempt to mitigate so-called negative MEV strategies, including:

    - - - -
      -
    1. MEV Auctions (e.g. Flashbots). Flashbots is a research organisation[50] that focuses on addressing the negative externalities of MEV. They have introduced a system called MEV-Geth, which enables miners to participate in sealed-bid auctions for transaction ordering rights. Users can submit their transactions directly to miners along with a bid representing the tip they are  willing to pay. This system creates a more transparent marketplace for MEV, reducing the likelihood of potentially harmful strategies.
    2. - - - -
    3. Fair Sequencing Services (“FSS”). Fair Sequencing Services[51] is a proposal to modify the way transactions are ordered within blocks. Instead of miners having complete control over transaction ordering, an FSS provider would decide the order based on predefined rules or algorithms that aim to reduce the potential for negative MEV strategies. FSS can be combined with other solutions like commit-reveal schemes, where users submit encrypted transactions that are revealed and processed only after a specific time, reducing the possibility of potentially harmful MEV strategies being deployed.
    4. - - - -
    5. Transaction Privacy Solutions. Privacy-enhancing technologies, such as zero-knowledge proofs and confidential transactions, can help obscure transaction details and make it harder for miners to identify and potentially exploit MEV opportunities.
    6. -
    - - - -

    As we identified above, MEV can play a vital role in DeFi networks and is a complex, nascent area. There is also very little data regarding the impact of different MEV activities/strategies and the potential issues to which they give rise. Therefore at this stage we do not believe any regulatory intervention by HMT would be wise or desirable (although that does not mean there may not be scope for regulatory intervention in the future). Instead, we would suggest that HMT continues to monitor the MEV environment and consider revisiting the area once there is more clarity regarding the longevity and impact of different MEV activities and strategies.

    - - - -

    45. Should staking (excluding “layer 1 staking”) be considered alongside crypto asset lending as an activity to be regulated in phase 2?

    - - - -

    Staking refers to a range of activities that involve locking up crypto assets in DeFi platforms or applications to earn rewards, such as provision of liquidity, yield farming, or other token-based incentives. These staking activities differ from layer 1 staking, which as described in more detail in our response to question 44, is the process of securing a blockchain network by validating transactions and creating new blocks. Staking in DeFi platforms or applications often involves complex mechanisms and contracts that expose participants to various types of risks, such as counterparty risk (the risk of default or fraud by the other party), liquidity risk (the risk of not being able to withdraw or exchange the staked assets), market risk (the risk of price fluctuations or volatility), and technology risk (the risk of hacking, bugs, or errors in the platform or application).  

    - - - -

    So-called cryptoasset ‘lending’, on the other hand, involves the ‘lending’ and ‘borrowing’ crypto assets through platforms that use digital assets as collateral (we would emphasise again – as already noted in our response to question 36 – that any comparison of DeFi to CeFi/TradFi (and the use of TradFi terms to describe certain DeFi processes) should be approached with caution on the basis that such comparisons are a useful heuristic but do not capture and risk obscuring DeFi’s qualitative differences). This activity allows borrowers to access capital without selling their crypto assets and enables lenders to earn interest on their idle assets. However, cryptoasset lending also entails risks, such as collateral risk (the risk of insufficient or devalued collateral), platform risk (the risk of insolvency or failure of the platform), and regulatory risk (the risk of non-compliance with existing or future regulations).

    - - - -

    Given the significant differences in the nature, risks, benefits, and potential systemic implications of both staking (excluding layer 1 staking) and crypto asset lending, it is essential to thoroughly examine these aspects before deciding whether they should be regulated in tandem in phase 2. Factors regulators should consider include:

    - - - -
      -
    • The types and levels of risks associated with these activities and how they can be mitigated or managed by the participants or the platforms.
    • - - - -
    • The degree of investor/consumer protection required in each case, considering that some staking and lending platforms might lack strict know-your-customer (KYC) and anti-money laundering (AML) processes or adequate disclosure of information and terms and conditions.
    • - - - -
    • The potential impact of these activities on the broader financial ecosystem and whether they could contribute to systemic risks or financial instability by creating interdependencies, contagion effects, or market distortions.
    • - - - -
    • The accessibility and transparency of staking and lending platforms for different types of investors, such as retail or institutional investors, and whether they provide fair and equal opportunities and treatment for all participants. By considering these factors, regulators can make an informed decision on whether staking, excluding layer 1 staking, should be considered alongside crypto asset lending for regulation in phase 2.
    • -
    - - - -

    We do not think that consumer-based permissionless staking for network security should be regulated in the same way as staking in DeFi platforms or applications. Consumer-based permissionless staking for network security is a simpler and more transparent activity that involves locking up cryptoassets in a blockchain network to secure its operations and earn rewards. This activity does not involve complex mechanisms that create additional risks for the participants. Moreover, consumer-based permissionless staking for network security does not pose significant systemic risks or financial stability concerns, as it is decentralised and distributed across many nodes that validate transactions and create new blocks. Therefore, we believe that consumer-based permissionless staking for network security should be treated differently from staking in DeFi platforms or applications for regulatory purposes.

    - - - -

            46.What do you think the most appropriate regulatory hooks for layer 1 staking activity would be (e.g. the staking pools or the validators themselves)?

    - - - -

            Please refer to the comprehensive answer to question 44 above.

    - - - -
    - - - -

    [1] Future Financial Services Regulatory Regime for Crypto Assets Consultation and call for evidence, HM Treasury, 2023 (available here)

    - - - -

    [2] The NEAR Whitepaper (available here).

    - - - -

    [3] NEAR Foundation Announces Policy Principles (available here).

    - - - -

    [4] Consensys, DeFi Market Commentary – January 2023 (available here).

    - - - -

    [5] Largest stock exchanges worldwide as of June 2022, by value of electronic order book share trading published by Statista (available here).

    - - - -

    [6] Dunja Radonic, Bankless Times, Eye-Opening DeFi Statistics & Facts for 2023 (available here).

    - - - -

    [7] See, e.g., Written Evidence Submitted by Chainalysis. Chainalysis, UK Parliament Committees, September 2022, (available here).

    - - - -

    [8] See note 1.

    - - - -

    [9] Jake Chervisnky, DeFi lending doesn’t exist (yet), Why DeFi protocols are mislabeled as lending protocols (available here).

    - - - -

    [10] See further Table 1, Crypto vs. traditional finance system, DeFi risks and the decentralisation illusion, BIS Quarterly Review, 06 December 2021 (available here).

    - - - -

    [11] Future Financial Services Regulatory Regime for Crypto Assets Consultation and call for evidence, paragraph 11.7, pg. 67, HM Treasury, 2023 (available here).

    - - - -

    [12] See paragraph 1.11 in the Consultation paper.

    - - - -

    [13] CFTC v. FTX Trading Ltd. et al., 1:22-cv-10503-PKC, SDNY, paras 56-62 (available here). See also, e.g., Sandali Handagama,  CoinDesk,, FTX Violated Its Own Terms of Service and Misused User Funds, Layers Say, 10 November 2022 (available here),

    - - - -

    [14] See KPMG, The collapse of FTX, Lessons and implications for stakeholders in the crypto industry, November 2022( available here).

    - - - -

    [15] Ibid.

    - - - -

    [16] Ibid.  

    - - - -

    [17] J.P. Morgan, U.S. Mid- and Small-Cap Banks Crypto Banking Weekly, November 11, 2022 (available here).

    - - - -

    [18] See, e.g., Lang Mei, Nasdaq, 5 January 2023, Learning the Hard Way: The FTX Debacle Once Again Demonstrates DeFi’s Strengths (available here) (“[b]lockchain analytics platform Nansen has reported a double-digit percentage increase in DeFi users in the aftermath of the FTX collapse”).

    - - - -

    [19] Hester M. Peirce, Remarks before the Digital Assets at Duke Conference, 20 June 2023 (available here).

    - - - -

    [20] Ibid.

    - - - -

    [21] Kennedy and Crypto, Chair Gary Gensler, 8 September 2022 (“[g]iven the nature of crypto investments, I recognize that it may be appropriate to be flexible in applying existing disclosure requirements. Tailored disclosures exist elsewhere — for example, asset-backed securities disclosure differs from that for equities”) (available here).

    - - - -

    [22] The EU Markets in Crypto-Assets (MiCA) text is available here. MiCa was approved in April 2023.

    - - - -

    [23] The Responsible Financial Innovation Act (a.k.a the Lummis-Gillibrand bill) presented to the US Senate in 2022 here.

    - - - -

    [24] The Current SEC Disclosure Framework Is Unfit for Crypto, Paradigm Policy, Rodrigo Seira, Justin Slaughter, Katie Biber, 20 April 2023 (available here).

    - - - -

    [25] In the past year, a few CeFi entities (Alameda, Celsius, Voyager etc) failed due to lack of reserve funds and transparency (among other things). In the Bankruptcy report filed re FTX, the major pitfalls of the exchange were based on its lack of appropriate controls, concentrated power, and commingled funds which also led to poor accounting and lack of reserves.

    - - - -

    [26]  Guidelines on risk factors under the Prospectus Regulation, European Securities and Markets Authority, 29 March 2019, (available here).

    - - - -

    [27]PRR 2 – FCA Handbook, Financial Conduct Authority, 01 January 2021, (available here).

    - - - -

    [28] SEC Commissioner Hester M. Peirce, Token Safe Harbor Proposal 2.0” (available here).

    - - - -

    [29] See note 11.

    - - - -

    [30] Safe Harbor X, LeXpunK-Army, 7 March 2023  (proposing a rule that would provide an exemption for the distribution of autonomous cryptoassets  to users and builders of autonomous software systems, based on the Token Safe Harbor Proposal 2.0, but with some modifications and additions, such as requiring semi-annual updates, an exit report, guidance on decentralisation criteria, and clarifying the definition and scope of autonomous cryptoassets  and autonomous cryptosystems). These safe harbour proposals would operate to effectively provide projects with conditioned routes to compliance, based on each project meeting various requirements (including disclosures, smart contract audits, and degree of decentralisation) (available here).

    - - - -

    [31] 17 CFR § 230.144. Rule 144 under US securities laws allows for the sale of restricted securities under certain conditions one of which is a holding period. See SEC, Rule 144: Selling Restricted and Control Securities, 16 January 2013 (available here).

    - - - -

    [32] LeXpunK Army, Reg-X-Proposal-An-Exempt-Offering-Framework-for-Token-Issuances, 25 April 2022 (available here).

    - - - -

    [33]  Ibid.

    - - - -

    [34] See note 11.

    - - - -

    [35] See Mayer Brown’s comments on the Lummis-Gillibrand bill referring to ‘ancillary assets’ as: ‘An ancillary asset includes any “intangible, fungible asset that is offered, sold, or otherwise provided to a person in connection with the purchase and sale of a security through an arrangement or scheme that constitutes an investment contract” but, importantly, does not include assets that have debt or equity-like characteristics’” (available here).

    - - - -

    [36] Model law consultations and proposals can serve as guidance or inspiration for other jurisdictions that are considering similar reforms or initiatives. COALA created a model law for DAO’s, organising industry players, academics, and regulators to collaborate on the language. The intention is to work with local governments to allow adoption of the Model Law. See, e.g., Model Law For Decentralised Autonomous Organizations, Constance Choi, Primavera De Filippi, Rick Dudley, Silke Not Elrifia, Coalition of Automated Legal Applications (COALA), 2021 (available here).

    - - - -

    [37] Fahad Saleh, The Review of Financial Studies, Blockchain without Waste: Proof-of-Stake, Volume 34, Issue 3, March 2021, Pages 1156–1190 ( available here).

    - - - -

    [38] Chris Brummer, Introducing Disclosure NFTs, Disclosure DAOs, and Disclosure DIDs, 24 March 2022, Medium (available here).

    - - - -

    [39] Chris Brummer, Disclosure, Dapps and DeFi, Stanford Journal of Blockchain Law & Policy, 29 June 2022 (available here).

    - - - -

    [40] See LexPunK Github materials here.

    - - - -

    [41] The Edinburgh Decentralisation Index is a proposed framework for measuring and comparing the degree of decentralisation in different blockchain systems. The framework consists of four layers: network, protocol, governance, and application. Each layer has a set of features that capture different aspects of decentralisation, such as node distribution, consensus mechanism, upgrade process, and smart contract functionality, and is assigned a score from 0 to 5 which is then aggregated (available here). Also, Consensys has analysed metrics of decentralisation on the Ethereum mainnet, including  network size, node diversity, node geography, client diversity, miner diversity, gas usage, gas fees, and transaction volume. Another analysis computes  the distribution of mining power in Bitcoin and Ethereum using three metrics (Gini coefficient, Shannon entropy, and Nakamoto coefficient) and three granularities (days, weeks, and months), while the so-called decentralised quotient measures decentralisation by calculating  the number of nodes by the number of validators or miners in a blockchain network (available here).

    - - - -

    [42] See, e.g.,Coinbase, What Is ‘Proof of Work’ or ‘Proof of Stake’? (available here).

    - - - -

    [43] See e.g., NEAR Protocol, Network NEAR Protocol, September 2022 (available here).

    - - - -

    [44] See note 23.

    - - - -

    [45] See note 23.

    - - - -

    [46] The NEAR Protocol has recently launched the Blockchain Operating System (“BOS”), which serves as a single platform that developers can build into and users can interact on, including by browsing and discovering Web3 products such as crypto exchanges, non-fungible token (NFT) galleries and social networks. The BOS will be compatible with all blockchains (currently supporting NEAR Protocol and Ethereum Virtual Machine chains), with NEAR protocol acting as the common entry point. The BOS offers a decentralised and composable and front end framework for building, launching, and using dApps, while leveraging common user experience frameworks such as profiles, notifications, and searching. With BOS, the NEAR protocol is transitioning from being only a layer 1 blockchain to a cross-chain solution aiming at lowering the barriers of entry into Web3.  For more information on the BOS, see, e.g., Near Protocol Announces the Blockchain Operating System, NEAR Foundation, 2 March 2023 (available here);

    - - - -

    [47] Financial Services Market Act 2000 (FSMA), s.235 (available here).

    - - - -

    [48] See ‘MEV’ section below.

    - - - -

    [49] For an excellent, detailed discussion of MEV, see Evan Zinaman, Where the Rubber Meets the Road: A MEV-aware, Functionalist Review of OFAC Risk ‘On the Base Layer,’  29 April 2023 (available here).

    - - - -

    [50] See further Flashbots Docs with more information on its work (available here).

    - - - -

    [51] Aru Juels et al.,  Chainlink, Fair Sequencing Services: Enabling a Provably Fair DeFi Ecosystem, 22 September 2020 (available here).

    -

    The post NEAR Foundation’s Response to the UK Crypto Asset Consultation appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/uk-crypto-asset-consultation/index.html b/public/blog/tag/uk-crypto-asset-consultation/index.html deleted file mode 100644 index 2059af287..000000000 --- a/public/blog/tag/uk-crypto-asset-consultation/index.html +++ /dev/null @@ -1,2 +0,0 @@ -UK Crypto Asset Consultation Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/ukraine/feed/index.xml b/public/blog/tag/ukraine/feed/index.xml deleted file mode 100644 index 5fad109cb..000000000 --- a/public/blog/tag/ukraine/feed/index.xml +++ /dev/null @@ -1,124 +0,0 @@ - - - - Ukraine Archives – NEAR Protocol - - /blog/tag/ukraine/ - - Thu, 05 Oct 2023 18:17:29 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Ukraine Archives – NEAR Protocol - /blog/tag/ukraine/ - 32 - 32 - - - Унікальна можливість для українців: Безкоштовні квитки на NEARCON ‘23 - /blog/%d1%83%d0%bd%d1%96%d0%ba%d0%b0%d0%bb%d1%8c%d0%bd%d0%b0-%d0%bc%d0%be%d0%b6%d0%bb%d0%b8%d0%b2%d1%96%d1%81%d1%82%d1%8c-%d0%b4%d0%bb%d1%8f-%d1%83%d0%ba%d1%80%d0%b0%d1%97%d0%bd%d1%86%d1%96%d0%b2-%d0%b1/ - - - Thu, 05 Oct 2023 18:17:28 +0000 - - - - - /?p=20949 - - NEARCON ’23 – це багатоденна конференція, яка збирає найяскравіших представників блокчейн-індустрії з усього світу. Це місце, де ви зможете почути …

    -

    The post Унікальна можливість для українців: Безкоштовні квитки на NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - NEARCON ’23 – це багатоденна конференція, яка збирає найяскравіших представників блокчейн-індустрії з усього світу. Це місце, де ви зможете почути найсвіжіші ідеї, познайомитися зі світовими експертами та знайти натхнення для вашої майбутньої кар’єри. NEARCON ’23 пропонує широкий спектр тематик, включаючи штучний інтелект, кібербезпеку, блокчейн, веб-розробку та багато іншого.

    - - - -

    Як невеликий акт солідарності, NEAR Foundation пропонує обмежену кількість БЕЗКОШТОВНИХ квитків для українців, які живуть у Португалії чи Іспанії, на NEARCON ‘23, що відбудеться в Лісабоні з 7 по 10 листопада.

    - - - -

    Це неймовірна можливість познайомитися зі світом Web3, розширити свої знання та знайти нові можливості для кар’єрного зростання. Не пропустіть цю унікальну можливість та отримайте безкоштовний квиток на NEARCON ’23 вже сьогодні!

    - - - -

    Що таке NEARCON?

    - - - -

    Ті, хто не знайомі з Web3, можуть не бути обізнані, що NEAR – це блокчейн, екосистема та міжнародна спільнота розробників, підприємців, фаундерів і провідних фігур у сфері децентралізації. 

    - - - -

    NEARCON – це основна щорічна подія для NEAR. Кожного року спільнота NEAR збирається, щоб слухати, навчатися, спілкуватися та розробляти надихаючі ідеї для майбутнього. 

    - - - -

    NEARCON – це найкраща освіта в галузі Web3! Як провідний децентралізований проект у світі, NEAR прагне привернути та надихати наступне покоління талантів Web3 з обмеженою кількістю безкоштовних місць.

    - - - -

    Що ви дізнаєтесь на NEARCON 2023

    - - - -

    Web3 складається з кількох ключових ролей і секторів, і на NEARCON ‘23 ми матимемо можливість почути виступи та взяти участь у панельних дискусіях із провідними фігурами в галузі Web3. 

    - - - -

    На NEARCON будуть обговорюватися такі теми як Open Web, де використовуються технології з відкритим кодом, включаючи NEAR. Також буде розглядатися взаємодія блокчейну та штучного інтелекту сьогодні та їхні перспективи в майбутньому, а також роль NEAR Digital Collective у децентралізації управління NEAR. Крім того, будуть поширені оновлення щодо регулювання та політики в сфері Web3.

    - - - -

    Як отримати безкоштовний квиток на NEARCON ‘23

    - - - -

    Отримати безкоштовні квиток на NEARCON ‘23 просто! 

    - - - -

    Основні вимоги включають:

    - - - -
      -
    • Ви є українцем, що тимчасово проживає в Іспанії/Португалії
    • - - - -
    • Ваш вік більше за 18 років
    • - - - -
    • Ви можете відвідати подію особисто в Лісабоні з 7 по 10 листопада
    • -
    - - - -

    Щоб отримати безкоштовний квиток на NEARCON ’23, переходьте за посиланням, заповніть форму аплікації. Вас буде перенаправлено до завершення оплати, де ви введете код знижки «UKFRENSNCON». Ви отримаєте квитанцію на ваш імейл, і квиток буде надіслано вам пізніше перед NEARCON ‘23.

    - - - -

    -

    The post Унікальна можливість для українців: Безкоштовні квитки на NEARCON ‘23 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/ukraine/index.html b/public/blog/tag/ukraine/index.html deleted file mode 100644 index ed41b379b..000000000 --- a/public/blog/tag/ukraine/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Ukraine Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/usdc/feed/index.xml b/public/blog/tag/usdc/feed/index.xml deleted file mode 100644 index 2485ae37f..000000000 --- a/public/blog/tag/usdc/feed/index.xml +++ /dev/null @@ -1,127 +0,0 @@ - - - - USDC Archives – NEAR Protocol - - /blog/tag/usdc/ - - Thu, 14 Sep 2023 13:39:47 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - USDC Archives – NEAR Protocol - /blog/tag/usdc/ - 32 - 32 - - - USDC Launches Natively on the NEAR Protocol  - /blog/usdc-launches-natively-on-the-near-protocol/ - - - Thu, 14 Sep 2023 13:00:00 +0000 - - - - /?p=20883 - - USDC, the open-source, permissionless protocol and stablecoin that enables any app to send and store digital dollars, is now native …

    -

    The post USDC Launches Natively on the NEAR Protocol  appeared first on NEAR Protocol.

    -]]>
    - USDC, the open-source, permissionless protocol and stablecoin that enables any app to send and store digital dollars, is now native on the NEAR blockchain. 

    - - - -

    The announcement opens the door for businesses built on NEAR to easily withdraw NEAR USDC and send it on-chain in seconds. Users can also swap USDC natively from Ethereum to NEAR and back — without incurring costs or delays from third-party bridges. MyNearWallet, Ledger, and wallet.near.org have all confirmed support allowing a user to hold USDC and interact with dapps on the B.O.S. Other wallets will follow over the coming days.

    - - - -

    Before this, USDC was only available on NEAR as a bridged form of USDC, known as USDC.e from Ethereum. This announcement means users get all the benefits of a native stablecoin, empowering developers to integrate stablecoin payments flows into their Javascript and  Rust-based decentralized applications. 

    - - - -

    This will unlock a new wave of accessibility for Web2 builders moving into Web3. It will also serve a vital role in NEAR’s mission of Web3 mass adoption, while helping developers build without limits on an open web.

    - - - -

    Native versus Bridged

    - - - -

    Circle brings USDC natively to new blockchain networks to empower developers to build on a stable foundation they can trust. Native USDC is officially issued by Circle and is always redeemable 1:1 for US dollars.

    - - - -

    In the case of NEAR, historically USDC was only available as a bridged version of USDC from Ethereum. USDC.e is not issued by Circle and is not compatible with Circle Account or Circle APIs. This brings a NEAR native version of USDC on chain. 

    - - - -

    To facilitate this shift, the NEAR Foundation will be working with ecosystem partners to help facilitate the migration of liquidity from bridged USDC to native USDC.

    - - - -

    Exchanges, digital wallets, institutional traders, and developers can now all access NEAR USDC via the Circle Account and Circle APIs. This unlocks a whole range of use cases including:  

    - - - -
      -
    • Making low cost payments and remittances globally in seconds.
    • - - - -
    • 24/7 trading, borrowing, and lending on apps like Burrow, Orderly, and Ref Finance.
    • - - - -
    • Enable users to hold savings in digital dollars without needing a traditional bank account. 
    • - - - -
    • Allow for enhanced cross-chain interoperability with other blockchains via NEAR’s extensive range of bridges. 
    • -
    - - - -

    In the DeFi realm, Ref Finance will also launch its stable 4-pool on September 14 onwards. Trisolaris, Burrow, Orderly, VEAX and others are all planning on bringing USDC to its platforms within the coming weeks.  

    - - - -

    USDC.e will still be supported by the ecosystem during the transition.

    - - - -

    Getting started with USDC 

    - - - -

    If you’re a business or project working on NEAR, you can readily access on/off-ramps for converting fiat currency to NEAR USDC by applying for a Circle Account.

    - - - -

    If you’re new to NEAR, you can find free resources for building apps, deploying smart contracts, creating B.O.S components, and more on the DevRel resources page. 

    - - - -

    For developers looking for documentation on building with USDC, check out Circle’s developer docs

    -

    The post USDC Launches Natively on the NEAR Protocol  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/usdc/index.html b/public/blog/tag/usdc/index.html deleted file mode 100644 index d4b2b58eb..000000000 --- a/public/blog/tag/usdc/index.html +++ /dev/null @@ -1,2 +0,0 @@ -USDC Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/user-owned-ai/feed/index.xml b/public/blog/tag/user-owned-ai/feed/index.xml deleted file mode 100644 index 72c910cdc..000000000 --- a/public/blog/tag/user-owned-ai/feed/index.xml +++ /dev/null @@ -1,190 +0,0 @@ - - - - User-Owned AI Archives – NEAR Protocol - - /blog/tag/user-owned-ai/ - - Fri, 19 Jan 2024 20:19:03 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - User-Owned AI Archives – NEAR Protocol - /blog/tag/user-owned-ai/ - 32 - 32 - - - Self-Sovereignty Is NEAR: A Vision for Our Ecosystem - /blog/self-sovereignty-is-near-a-vision-for-our-ecosystem/ - - - Fri, 19 Jan 2024 20:19:02 +0000 - - - - - - - /?p=21170 - - As a kid growing up in Ukraine in the ’90s after the dissolution of the USSR, I remember we watched …

    -

    The post Self-Sovereignty Is NEAR: A Vision for Our Ecosystem appeared first on NEAR Protocol.

    -]]>
    -

    - - - -

    As a kid growing up in Ukraine in the ’90s after the dissolution of the USSR, I remember we watched the price of bread go from 1,000 karbovanets, to 10,000, to 100,000 in less than five years (until that currency was thrown out altogether and replaced with hryvnia). When I first started working as a software developer as a teenager, I kept my earnings in cash in my room because I already understood that we couldn’t trust corrupt banks with our money.

    - - - -

    Between 2014 and 2016 alone, 77 banks failed in Ukraine. My grandparents still have their savings account bank books tracking the money they put away during the USSR years––but those savings don’t exist anymore. So even something that is yours, that you rightfully own, can go away if the system you’re a part of fails. The same thing is happening to millions of people living under hyperinflation, dictatorships, and war zones across the world, of course. And while these may seem like abstract or distant problems that won’t arrive at your doorstep, let me tell you from my own experience: nothing is guaranteed. 

    - - - -

    Every system is as fragile as the rules holding it together. And the rules can change. They’re changing around us right now, and I believe we are approaching a point of no return. 

    - - - -

    The Need for Digital Self-Sovereignty

    - - - -

    We need to create new economic opportunities for people everywhere via self-sovereignty, which should be a universal right and which technology can now provide, not just nation-states as in most other points in history. For citizens of nations who’ve enjoyed economic security and a high degree of sovereignty, this may not seem like an immediate-term issue. But it is. 

    - - - -

    The economics of tech companies leads inevitably to corrupting their original product or vision for the sake of profit in order to maintain growth, and more importantly, they naturally involve creating barriers for someone else to disrupt. In order to maintain their power, governments will use pressure and ingenuity in order to control their populations, too often to the point of violating human rights in the name of safety or security. 

    - - - -

    We all use our phones and computers a thousand times a day, prioritizing convenience over self-sovereignty because until now, we haven’t had a choice. We are now approaching a tipping point towards a dystopian future that we may not be able to come back from, brought on not just by governments but by the economics of tech companies. What happens when these incentives increasingly collide and push each other deeper into the lives of individuals for the sake of maintaining control and profit? 

    - - - -

    That’s right about where we are today. 

    - - - -

    Changing the Stakes with Generative AI

    - - - -

    Before founding NEAR, I was an AI researcher. I worked at Google where I contributed to TensorFlow, and eventually published a paper with a handful of colleagues called “Attention Is All You Need.” That paper introduced the Transformers architecture that powers ChatGPT, Bard, and most of the well-known LLMs behind last year’s explosive growth in AI. 

    - - - -

    I was first interested in AI because of the 2001 movie, “Artificial Intelligence.” Changing how we interact with computing and augmenting one’s intelligence to maximize human potential was, and still is, very appealing to me. And I still think it has the potential to make human lives, organizations, even governments better. But like any other technology, in the hands of the wrong people or with the wrong incentives, it also has the potential to make our lives terrible. 

    - - - -

    Generative AI is creating a universal and scalably personal method of enabling control and manipulation. Practically, it means your social feed and search results can ensure that you buy specific products or form a specific opinion. This will start in the form of commercial improvements that lead to more profit for tech giants: Netflix will generate a movie script that can shape your opinion, Facebook can reinforce that opinion by showing you more of it, and so on. This could even happen at a more fundamental level, such as flooding training data with specific information to influence all models trained on it. 

    - - - -

    If this granular information and vector of manipulation on such a personal level can be extracted or bought, it will be, and then it will become a tool for control. If it’s stored somewhere centralized and hackable, it will be stolen––we see this constantly with Web2 giants as it is. If governments can get access to this data, they will use it to maintain or grow their power. 

    - - - -

    The true danger that generative AI introduces is that this exploitation won’t just be on a systems level or a population level, it will become personal and incredibly specific. The depth of potential control and manipulation goes to the level of each and every human, no matter where they live, no matter where they keep their money. Such a powerful technology simply cannot remain in the hands of centralized companies, nor be too easy for governments to take over.

    - - - -

    So What Should We Do About It?

    - - - -

    So if people don’t yet feel the sense of urgency towards building new systems that uphold self-sovereignty, what will make it real for people? Changes in collective values are always driven by economic opportunity. The major revolutions of history started because of economic failures: American independence from Britain, the French Revolution, the collapse of the USSR, and so on. If people see ways to create better economic realities for themselves and their families, then they will turn values into actions. 

    - - - -

    Creating new opportunities for people via self-sovereignty is what NEAR is about. Complete self-sovereignty  has been the NEAR vision since day one: we want to build a world where all people can control their own assets, data, and power of governance. This sovereignty must apply not only at the level of individuals but also the organizations and communities they create, and eventually societies. 

    - - - -

    Self-sovereignty is a new primitive that hasn’t existed before today. One always needed to rely on some power of violence for ensuring rules are followed, most recently nation-states. One of the core principles of digital self-sovereignty is the ability to choose and switch between any service provider. There is no lock- in. There are no middlemen like banks or government agencies that can lose or steal assets, or change the rules on you out of nowhere. 

    - - - -

    Importantly, this must also apply to AI. People need to own their data so they know what it’s being used for and so they can actively consent to personalized experiences they think will improve their lives. Models must be governed transparently, in public, with clear rules and monitoring to proactively manage risk and reputation systems to build more clarity around information and traceability. Web3 can help to uphold, scale, and manage such systems to ensure AI is a force for good while also preventing it from being too exploitable. 

    - - - -

    Another major challenge, which is especially clear in governance but it also applies to corporations, is that when we select someone to represent our ideas for us as our delegate, they will always have their own interests and motivations in the mix as well. They don’t necessarily have nefarious intentions, it’s just a natural tendency. This is the “principal agent problem,” wherein the person elected behaves differently than the people who elected them or pay them would prefer based on their best interests. This is where AI governance systems can help by introducing neutral agents, where unbiased AI agents governed directly by a community can act on their behalf in a more reliable way. With transparent governance and monitoring, AI can be a force for good in individual lives as well as for the collective. 

    - - - -

    A Vision for the NEAR Future

    - - - -

    Despite my concerns about where the traditional tech paradigm is potentially heading, I remain a techno-optimist. I wouldn’t be doing this work if I didn’t think it was for the good of everyone, and I’ve read enough sci-fi to know that the outcomes of science and technology are much more about what people do with them than the tech itself. If we want something, we should build it. 

    - - - -

    I would like NEAR to become a fully sovereign operating system that is equipped with a personal AI assistant that optimizes for users’ needs without revealing private information about the user’s data or assets. It should also be able to interact and transact with other people’s AIs and the community’s AIs peer-to-peer. I call this “user-owned AI.”

    - - - -

    We also need shared community AIs, which are governed by the members of such a community. They represent the mix of needs and knowledge of all the members of such a community, from something like a small club or startup, to the city, to the nation-state, to the global level. There is always an opportunity to fork one community and create new ones. The community governs which data goes into training its community model, and can run inference (running live data through a model) privately in such a way that only the user sees input and output, while getting a proof that the selected model was used.

    - - - -

    To facilitate this vision, a lot of pieces need to come together:

    - - - -
      -
    • Economic and technological opportunity to enable users to onboard en masse.
    • - - - -
    • Open source software across the stack, from blockchain tech to AI models.
    • - - - -
    • Blockchains must get abstracted away from the user so they are not barriers to entry or participation. I call this the principle of Chain Abstraction.
    • - - - -
    • Applications must provide a novel value unlock: for example, Cosmose and Sweat. These apps reward users and serve as an economic gateway into a broader ecosystem of opportunities.
    • - - - -
    • On-edge, meaning hyperlocal, AI models that are usable by individuals (and free of manipulation).
    • - - - -
    • Community-owned AI models with governance and economic opportunity, replacing everything from business ops to government agencies. Self-governance by the people, for the people, at scale with the help of technology and decentralized peer-to-peer systems.
    • -
    - - - -

    Blockchains, peer-to-peer payments, Web3, zero-knowledge, very large language models and on-edge AI models: these are not separate technology verticals, but rather interconnected facets of a new digital paradigm of self-sovereignty. 

    - - - -

    We have the tools to remake how we provide for ourselves, how we work together and govern ourselves, and how we consume and generate information. Without gatekeepers, fair and open to everyone. And this is not a futuristic vision: it’s possible to start experimenting and building now, before our fragile and outdated systems and structures get weaker or fail, before too much centralization leads to the worst outcomes instead of the ones we all design and share together.

    ––Illia Polosukhin, Co-Founder of NEAR and CEO of NEAR Foundation

    -

    The post Self-Sovereignty Is NEAR: A Vision for Our Ecosystem appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/user-owned-ai/index.html b/public/blog/tag/user-owned-ai/index.html deleted file mode 100644 index d895a148f..000000000 --- a/public/blog/tag/user-owned-ai/index.html +++ /dev/null @@ -1,2 +0,0 @@ -User-Owned AI Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/validator-delegation/feed/index.xml b/public/blog/tag/validator-delegation/feed/index.xml deleted file mode 100644 index 222707764..000000000 --- a/public/blog/tag/validator-delegation/feed/index.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - - Validator Delegation Archives – NEAR Protocol - - /blog/tag/validator-delegation/ - - Thu, 14 Sep 2023 17:29:06 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Validator Delegation Archives – NEAR Protocol - /blog/tag/validator-delegation/ - 32 - 32 - - - Open Call for Feedback on NEAR Protocol Validator Delegation Proposals - /blog/open-call-for-feedback-on-near-protocol-validator-delegation-proposals/ - - - Thu, 14 Sep 2023 17:29:04 +0000 - - - - /?p=20890 - - Validators are the backbone of the NEAR Protocol, playing an integral role in upholding the network’s core values now and …

    -

    The post Open Call for Feedback on NEAR Protocol Validator Delegation Proposals appeared first on NEAR Protocol.

    -]]>
    - Validators are the backbone of the NEAR Protocol, playing an integral role in upholding the network’s core values now and into the future. Validators ensure that NEAR Protocol remains scalable, user-friendly, secure, trustworthy, and most importantly, decentralized. 

    - - - -

    NEAR validators provided community feedback on how to improve the validator experience, and we collectively listened. Responses suggested that routes to secure funding were unclear, and that existing delegations from the NEAR Foundation lacked transparency.
    The result of the community feedback process is a new NEAR Protocol Validator Delegation Proposal and an open call RFP to coordinate the NEAR Protocol Institutional Validator Programme. The RFP will be open until Monday September 24th, 2023.

    - - - -

    Drafted in collaboration with a number of ecosystem participants — Meta Pool, Banyan Collective, DevHub, Pagoda, Proximity, Validator Community, and NEAR Foundation — this proposal creates a framework for a refreshed validator delegation structure. It clearly defines a number of expectations for validators, aims to align incentives, assigns ownership, and enhances transparency around securing funding support.

    - - - -

    The proposal’s framework addresses three delegation trackscommunity validators, institutional validators, and 100% fee project validators — with the goals of improving transparency, strengthening the Nakamoto coefficient of the NEAR Protocol, and increasing validator selection at custody providers: 

    - - - -
      -
    • Community Validators — Individual participants or smaller entities within the NEAR Protocol ecosystem who choose to operate validator nodes. They are strong advocates of NEAR Protocol’s principles and values, and actively contribute to the decentralization and security of the blockchain. The proposal addresses issues that Community Validators face, including resource constraints, rewards, vulnerability to attacks, and limited influence, building on new proposals for Community validators put forward in June.
    • - - - -
    • Institutional Validators — Typically large entities, such as companies, financial institutions, or well-established organizations. They often have significant resources and stake in the NEAR Protocol, which allows them to operate powerful and reliable infrastructure to maintain the blockchain. This proposal addresses concerns around institutional validators such as network centralization, lack of community inclusivity, and inequality in influence.
    • - - - -
    • 100% Fee Project Validators  — A track to support growth activities resulting in onboarding of users to the NEAR Protocol, and continued engagement through retention programmes. 
    • -
    - - - -

    Firstly, check out the full NEAR Protocol Validator Delegation Proposal and provide any feedback publicly here. Your feedback is greatly appreciated to improve the proposal.

    - - - -

    Secondly, since this is an open call RFP to run the NEAR Protocol Institutional Validator programme, please return any applications to finance@near.foundation.

    - - - -

    Additionally, Restaking is coming to NEAR courtesy of Octopus Network. Under Octopus 2.0, $NEAR stakers will have the ability to secure appchains with their staked $NEAR. Find out more here

    - - - -

    Many thanks for your continued support to improve the validator experience and help secure the NEAR Protocol.  

    -

    The post Open Call for Feedback on NEAR Protocol Validator Delegation Proposals appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/validator-delegation/index.html b/public/blog/tag/validator-delegation/index.html deleted file mode 100644 index 35fbad9fb..000000000 --- a/public/blog/tag/validator-delegation/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Validator Delegation Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/veronica-korzh/feed/index.xml b/public/blog/tag/veronica-korzh/feed/index.xml deleted file mode 100644 index 1cf52d024..000000000 --- a/public/blog/tag/veronica-korzh/feed/index.xml +++ /dev/null @@ -1,131 +0,0 @@ - - - - Veronica Korzh Archives – NEAR Protocol - - /blog/tag/veronica-korzh/ - - Tue, 10 Oct 2023 13:01:39 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Veronica Korzh Archives – NEAR Protocol - /blog/tag/veronica-korzh/ - 32 - 32 - - - Women in Web3 Changemakers: Veronica Korzh  - /blog/women-in-web3-changemakers-veronica-korzh/ - - - Tue, 10 Oct 2023 12:59:03 +0000 - - - - /?p=20959 - - “I think balance is the crucial factor,” says Veronica Korzh, the co-founder and CEO of GeekPay, an all-in-one platform to …

    -

    The post Women in Web3 Changemakers: Veronica Korzh  appeared first on NEAR Protocol.

    -]]>
    - “I think balance is the crucial factor,” says Veronica Korzh, the co-founder and CEO of GeekPay, an all-in-one platform to streamline and secure batch payments in digital currencies to gig workers.

    - - - -

    “It doesn’t really matter if it’s Web2, Web3, Web5 or whatever — equality and diversity in terms of genders, races, religions brings more to the table.”

    - - - -

    Korzh is one of the 10 finalists of the 2023 Women in Web3 Changemakers List, an annual competition designed to champion women pushing boundaries in the space. Korzh, along with nine other outstanding candidates, are showing the industry the change women are bringing about during the advent of the Open Web. 

    - - - -

    Korzh was selected not only for her work at GeekPay, but because of the pivotal role she has played in supporting Ukrainian startups, helping them maintain access to funding and talent during a period where so many have been displaced after Russia’s invasion of Ukraine. 

    - - - -

    Korze is a Partner at SID Venture Partners, the first unique Ukrainian high-technology venture capital firm established by IT experts focusing on investments into early-stage technology startups.

    - - - -

    In little over a year, it has successfully funded 16 startups across a range of sectors, and recently became the most active venture investor in Ukrainian startups in the last 18 months

    - - - -

    A Web3 Journey 

    - - - -

    “My story is quite simple,” says Korzh, who is currently based in Lisbon. “I’ve been in the Ukrainian software business for about 15 years in project management, programme management, and also in product house roles”. 

    - - - -

    Korzh’s journey into Web3 came about after a chance encounter with Illia Polosukhin, one of the co-founders of NEAR Protocol. “I was always fascinated about technology, and blockchain has, for the last 10 years, been one of the most exciting technologies.” 

    - - - -

    This led Korzh to begin investigating what this breakthrough technology was really all about. At first, says Korzh, blockchain was difficult to understand, but there was something intriguing that led Korzh to dive deeper. At the time, Kurzh had been working on a fitness app in Ukraine, but that chance encounter led her to radically rethink the direction of her career. 

    - - - -

    “I moved to blockchain and here starts the most interesting part of my life,” she says. In less than two years, Korzh has helped 16 companies access funding and become the co-founder of her own Web3 company. But the road hasn’t been without its challenges. 

    - - - -

    Since the beginning of the Russian invasion in February 2022, the start-up sector in Ukraine’s bustling tech industry has been displaced. Dozens of companies had to relocate, further west in the country, or to welcoming hubs like Lisbon. This made evaluating companies on their merit more challenging. 

    - - - -

    Since then, Ukraine’s crypto native community has bounced back. Ukraine has managed to raise more than $100 million in cryptocurrency donations through its government-curated Crypto Fund of Ukraine, thanks to natively built projects like UkraineDAO. For Korzh and her colleagues, the journey to find the best startups has, despite the disruption, continued. 

    - - - -

    “The technology is still far away from what we would like to have in terms of the ecosystem.” This has meant assessing which projects should be funded, and which require more work, has been a challenge. But, says Korzh, that’s where women come in. 

    - - - -

    More balance, better results

    - - - -

    “I think balance is the secret sauce for progress for any business. The more balanced ecosystem you have, in terms of gender, the better your results.”

    - - - -

    Korzh believes increasing the number of women in Web3 can only help produce better results. “In terms of gender equality, this space is very male,” says Korzh. “It is very hard to find women founders.”

    - - - -

    This is where awards like the Women in Web3 Changemakers hopes to help showcase the work of women across the space and encourage others to take the plunge. 

    - - - -

    “I think awards can help say: ‘I’m capable enough to start my own company,’ or ‘I’m capable enough to understand how blockchain works.’ It’s an indicator for myself as a female founder to think, okay, maybe I should also try myself, maybe I can build something, maybe I can create an idea that then changes the world.” 

    - - - -
    - -
    -

    The post Women in Web3 Changemakers: Veronica Korzh  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/veronica-korzh/index.html b/public/blog/tag/veronica-korzh/index.html deleted file mode 100644 index 34d2023af..000000000 --- a/public/blog/tag/veronica-korzh/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Veronica Korzh Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/vortex-gaming/feed/index.xml b/public/blog/tag/vortex-gaming/feed/index.xml deleted file mode 100644 index 3887b9e35..000000000 --- a/public/blog/tag/vortex-gaming/feed/index.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - - Vortex Gaming Archives – NEAR Protocol - - /blog/tag/vortex-gaming/ - - Thu, 22 Jun 2023 18:38:35 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Vortex Gaming Archives – NEAR Protocol - /blog/tag/vortex-gaming/ - 32 - 32 - - - NEAR Foundation Partners with Vortex Gaming, a Web3 Subsidiary of Korea’s Largest Gaming Community INVEN - /blog/near-foundation-partners-with-vortex-gaming-a-web3-subsidiary-of-koreas-largest-gaming-community-inven/ - - - Fri, 23 Jun 2023 00:00:00 +0000 - - - - - - /?p=20658 - - NEAR Foundation is excited to announce a new partnership with Vortex Gaming, a Web3 subsidiary of the leading game industry …

    -

    The post NEAR Foundation Partners with Vortex Gaming, a Web3 Subsidiary of Korea’s Largest Gaming Community INVEN appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is excited to announce a new partnership with Vortex Gaming, a Web3 subsidiary of the leading game industry INVEN. INVEN is the largest game media·community in Korea, with a monthly active user (MAU) count of 7.2 million.

    - - - -

    With the guidance of the NEAR Korea Hub, NEAR Foundation and Vortex Gaming plan to achieve mutual growth by collaborating to support the growth of Vortex Gaming; strengthen the NEAR game ecosystem; conduct offline hackathons and events to foster developer talent; and enhance brand awareness and business networks.

    - - - -

    To support Web3 gaming, Vortex Gaming will leverage NEAR’s global layer 1 protocol, known for its user experience and scalability, and the Blockchain Operating System (BOS). The BOS is an OS for an open web, allowing developers to effortlessly build apps for an internet free from centralized platforms.

    - - - -

    “Following the leading companies in the gaming industry such as Kakao Games, Wemade, Netmarble’s Marblex, we expect our sustainable game ecosystem to be further enhanced through this partnership with INVEN,” said Marieke Flament, CEO of NEAR Foundation, expressed her delight at INVEN joining the NEAR ecosystem.

    - - - -

    Vortex Gaming: an open web community game changer

    - - - -

    Vortex Gaming is a content-based game community that builds services optimized for Web3 games. It also offers a global social media platform and features such as Gaming Guild. Vortex’s Gaming Guild will allow members to earn rewards by playing games, participating in tournaments, and contributing to the guild’s community. The guild system also provides a stronger sense of bonding between guild members, which can help strengthen user retention.

    - - - -

    Vortex Gaming also aims to break a major stereotype of current Web3 games as being dominated by a few profit-seeking individuals. It does this by offering specialized content that thoroughly explores the in-game economy, the completeness of the game, and gameplay guide. By leveraging its successful experience in building Web2 communities, Vortex Gaming plans to establish a robust user base by incorporating both high quality content and INVEN’s existing wide pool of users.

    - - - -

    INVEN is the largest game media·community in Korea. For over 20 years it has been the leading company in the game industry, driving the development as the top online game media platform. Based on content generated in-house, INVEN continues to innovate and expand into industries such as entertainment and Web3.

    - - - -

    “The ultimate goal is to build an integrated gamer community that encompasses both Web3 and traditional Web2 gamers by providing high quality Web3 and Web2 content alike,” said Vortex Gaming CEO, HOON JAI LEE. “Gamers and their communities are the most crucial components of the game ecosystem. In addition to offering game content for gamers and their communities, Vortex Gaming envisions establishing a sustainable cycle by incentivizing gamers’ production of content such as character builds and game guides”.

    - - - -

    The NEAR Korea Hub, responsible for business expansion across Korea and other Asian regions, has been instrumental in fostering this partnership. The Hub views Vortex’s onboarding as a significant moment that further accelerates the development of the NEAR gaming ecosystem.

    - - - -

    “While the strong content competitiveness of leading companies plays a crucial role in attracting many users to the NEAR ecosystem, community is the key driving force in maintaining this competitiveness,”said  Scott Lee, Co-CEO of NEAR Korea. “The synergy effects resulting from the onboarding of Vortex Gaming will further strengthen NEAR’s position as the optimal mainnet in the Web3 game ecosystem, accelerating ecosystem development.”

    -

    The post NEAR Foundation Partners with Vortex Gaming, a Web3 Subsidiary of Korea’s Largest Gaming Community INVEN appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/vortex-gaming/index.html b/public/blog/tag/vortex-gaming/index.html deleted file mode 100644 index 2a8d02140..000000000 --- a/public/blog/tag/vortex-gaming/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Vortex Gaming Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/wallet/feed/index.xml b/public/blog/tag/wallet/feed/index.xml deleted file mode 100644 index 607bb1dae..000000000 --- a/public/blog/tag/wallet/feed/index.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - Wallet Archives – NEAR Protocol - - /blog/tag/wallet/ - - Wed, 11 Jan 2023 17:41:32 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Wallet Archives – NEAR Protocol - /blog/tag/wallet/ - 32 - 32 - - - NEAR Wallet’s Evolution in 2023 - /blog/near-wallets-evolution-in-2023/ - - - Wed, 11 Jan 2023 17:03:36 +0000 - - - - /?p=19694 - - NEAR Foundation and Pagoda, along with the Wallets Working Group, have conducted extensive community discussions over the last several months …

    -

    The post NEAR Wallet’s Evolution in 2023 appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation and Pagoda, along with the Wallets Working Group, have conducted extensive community discussions over the last several months about the evolution of wallets in the NEAR ecosystem. In keeping with the Foundation’s goal to empower the community and continue to decentralize the ecosystem over time, the focus since NEARCON has been to expand the wallet offerings to NEAR users and to decentralize the NEAR Wallet.   

    - - - -

    MyNearWallet is now open source and under the stewardship of Developer DAO to maintain as a public good. (Pagoda took over MNW after Kikimora ceased operations in December due to funding issues.) DevDAO announced this week that they are accepting applications for teams to take over maintenance of MyNearWallet to evolve the product while keeping it open source for the benefit of the developer community. For more information about how to apply, visit the Developer DAO gigs board on NEAR Social. 

    - - - -

    If you have been using MyNearWallet or wallet.nearpages.wpengine.com, you don’t need to take any action. MyNearWallet service will not be interrupted in this transition and, in fact, users can expect product improvements over time from the chosen maintainer team. The goal is to offer more wallet options to users across the NEAR ecosystem and to decentralize the development of wallet products across the developer community. 

    - - - -

    Pagoda will continue maintaining wallet.nearpages.wpengine.com. Over time, the NEAR wallet will integrate into the forthcoming NEAR Discovery product. But for now, no action is needed from users. Legacy wallet users may consider migrating to another wallet now that an expanded range of options is available via Wallet Selector, which will soon live on wallet.nearpages.wpengine.com. Numerous wallets optimizing for a variety of user types, security requirements, and use cases are already available, with more on the way in Q1. 

    - - - -

    NEAR’s commitment to serving as the de facto entry point to Web3 remains intact. Building without limits is about continuously improving on industry standards and delivering the best possible experiences to developers and users alike. 

    -

    The post NEAR Wallet’s Evolution in 2023 appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/wallet/index.html b/public/blog/tag/wallet/index.html deleted file mode 100644 index 882196e69..000000000 --- a/public/blog/tag/wallet/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Wallet Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/we-are-developers-world-congress/feed/index.xml b/public/blog/tag/we-are-developers-world-congress/feed/index.xml deleted file mode 100644 index 4087efeb9..000000000 --- a/public/blog/tag/we-are-developers-world-congress/feed/index.xml +++ /dev/null @@ -1,109 +0,0 @@ - - - - We Are Developers World Congress Archives – NEAR Protocol - - /blog/tag/we-are-developers-world-congress/ - - Tue, 25 Jul 2023 19:40:43 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - We Are Developers World Congress Archives – NEAR Protocol - /blog/tag/we-are-developers-world-congress/ - 32 - 32 - - - NEAR at We Are Developers World Congress 2023: Build with BOS in Berlin - /blog/near-at-we-are-developers-world-congress-2023-build-with-bos-in-berlin/ - - - Tue, 25 Jul 2023 13:56:09 +0000 - - - - /?p=20754 - - NEAR is  gearing up for a big presence at the We Are Developers World Congress 2023. It’s an exciting opportunity …

    -

    The post NEAR at We Are Developers World Congress 2023: Build with BOS in Berlin appeared first on NEAR Protocol.

    -]]>
    - NEAR is  gearing up for a big presence at the We Are Developers World Congress 2023. It’s an exciting opportunity to demonstrate the power of the Blockchain Operating System (BOS), fostering a wave of innovation and expanding horizons for developers in Germany, the Balkans, and beyond.

    - - - -

    A dedicated NEAR team  will be engaging with attendees over 10,000 expected global attendees at We Are Developers. The congress will take place in the dynamic city of Berlin, Germany, on the 27th and 28th of July.

    - - - -

    So if you’re in the area and want to explore new BOS development opportunities in-person, NEAR at the We Are Developers World Congress 2023 is a must-attend.

    - - - -

    NEAR’s participation in the event

    - - - -

    Kicking off on Friday, July 28, 2023, from 9:00 AM to 11:00 AM, the “Mastering BOS” workshop, hosted by senior NEAR developers Andrej Šarić and Alen Meštrov. This deep dive session aims to equip attendees with the skills and knowledge to leverage BOS development and tolling, from a smooth onboarding process to deploying their first application.

    - - - -

    On Thursday, July 27, 2023, from 3:30 PM to 4:00 PM, Andrej Šarić will add depth to NEAR’s presence during “Exploring BOS.”  The session will delve into how BOS simplifies the application-building process, improves user onboarding, and facilitates multi-chain interactions, positioning it as an essential tool for developers and users alike.

    - - - -

    NEAR’s BOS booth will be an interactive hub, offering engaging activities and a fun quiz. Visitors can also get their hands on cool NEAR merchandise. And Tekuno’s Devs Without Limits activation allows participants to collect PODs at three specific locations: the “Mastering BOS” workshop, the “Exploring BOS” talk, and the NEAR BOS booth.

    - - - -

    The Tekuno collab will allow participants to collect PODs at specific locations, which unlocks a special “We Are Developers” Proof-of-Doing (POD) with a chance to win a ticket to NEARCON 2023. Successfully collecting all three PODs unlocks the “We Are Developers” POD, affirming their active participation and engagement at the congress.

    - - - -

    The Tekuno Activation: Devs Without Limits will be happening throughout the duration of the conference, from Thursday, July 27 to July 28, 2023.

    - - - -

    Importance of BOS and NEAR for the Developer Community

    - - - -

    The NEAR team will spread the word and underscore how BOS is making the application-building process smoother and more accessible for developers worldwide. By participating in the “Mastering BOS” workshop and “Exploring BOS” talk, developers can explore the myriad advantages of using BOS and the NEAR Protocol. 

    - - - -

    NEAR’s team will highlight BOS’s ability to facilitate composability, swift app creation, and its chain-agnostic capabilities, empowering developers attending the congress. NEAR’s presence at the congress aims to showcase BOS’s significant potential for expanding the NEAR ecosystem. 

    - - - -

    By engaging with global developers at this event, NEAR aspires to foster a greater understanding of BOS, stimulate increased adoption, and consequently, amplify awareness and growth of the NEAR community.  

    - - - -

    As NEAR gears up for We Are Developers World Congress 2023, their mission is clear —  to illuminate the immense potential of the Blockchain Operating System (BOS). The mission will be  to drive BOS  adoption, foster developer engagement, and strengthen the NEAR ecosystem.

    - - - -

    Mark your calendars for this awesome  event, and join us in the hip and modern city of Berlin on 27th and 28th July. From engaging workshops to in-depth discussions, come on down to the We Are Developers World Congress begin Berlin BOS building.

    -

    The post NEAR at We Are Developers World Congress 2023: Build with BOS in Berlin appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/we-are-developers-world-congress/index.html b/public/blog/tag/we-are-developers-world-congress/index.html deleted file mode 100644 index 66bb386aa..000000000 --- a/public/blog/tag/we-are-developers-world-congress/index.html +++ /dev/null @@ -1,2 +0,0 @@ -We Are Developers World Congress Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/we-are-developers/feed/index.xml b/public/blog/tag/we-are-developers/feed/index.xml deleted file mode 100644 index 39f07622b..000000000 --- a/public/blog/tag/we-are-developers/feed/index.xml +++ /dev/null @@ -1,117 +0,0 @@ - - - - We Are Developers Archives – NEAR Protocol - - /blog/tag/we-are-developers/ - - Thu, 27 Jul 2023 19:02:02 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - We Are Developers Archives – NEAR Protocol - /blog/tag/we-are-developers/ - 32 - 32 - - - NEAR’s BOS Impact at We Are Developers 2023 World Congress - /blog/nears-bos-impact-at-we-are-developers-2023-world-congress/ - - - Thu, 27 Jul 2023 16:45:00 +0000 - - - - /?p=20770 - - The excitement is palpable as NEAR hits the ground in the vibrant city of Berlin for the We Are Developers …

    -

    The post NEAR’s BOS Impact at We Are Developers 2023 World Congress appeared first on NEAR Protocol.

    -]]>
    - The excitement is palpable as NEAR hits the ground in the vibrant city of Berlin for the We Are Developers World Congress 2023. With a packed agenda and a bustling venue, the stage is set for a memorable exploration into the Blockchain Operating System (BOS).

    - - - -

    Amidst a crowd of enthusiastic developers, NEAR is showcasing the immense potential of BOS. The team looks forward to sparking curiosity, fostering innovation, and expanding horizons within the global developer community, setting the tone for a transformative two days.
    Let’s take a quick look at what happened on Day 1 with NEAR at We Are Developers, before taking a look at what’s on the schedule for Day 2, July 28th.

    - - - -

    On the agenda: NEAR’s engaging BOS offerings

    - - - -
    - - - -

    The conference kicked off with “Exploring BOS: The Blockchain Operating System by NEAR”, scheduled for Thursday, July 27, at 3:30 PM and led by Andrej Šarić, senior NEAR developer. The presentation dissectd how BOS is redefining the application-building landscape while highlighting user-friendly onboarding and seamless multi-chain interactions.

    - - - -

    Friday, July 28, will see the enlightening “Mastering BOS: A Developer Workshop”, helmed by Andrej along with fellow senior developer, Alen Meštrov. A must-attend for developers keen to enhance their BOS acumen, this comprehensive workshop promises an in-depth, immersive learning experience, centered around the innovative capabilities of BOS.

    - - - -
    - - - -

    Additionally, the “Tekuno Activation: Devs Without Limits” is adding an exciting gamified element to the conference, running throughout both days (more on this below). Attendees are encouraged to collect PODs at the NEAR booth, as well as during both BOS sessions, culminating in the exclusive “We Are Devs” POD and a shot at winning a ticket to NEARCON 2023.

    - - - -

    Making waves: the buzz at the NEAR booth

    - - - -
    - - - -

    NEAR’s BOS booth is serving as a dynamic hotspot of interactivity and engagement throughout the event. Attendees enthusiastically participated in the “How Big of a Dev BOS(s) are you really?” quiz, testing their knowledge about blockchain development while adding a dose of fun to their conference experience.

    - - - -

    In addition to being a learning hub, the booth continues to be a place for connection. Visitors had the opportunity to meet some of the brilliant minds behind NEAR, fostering meaningful interactions, exchanging ideas, and discussing BOS’s transformative potential. The booth was also brimming with awesome NEAR merchandise for everyone who stopped by.

    - - - -

    Tekuno activation: “Devs Without Limits” POD

    - - - -
    - - - -

    The feature stealing the spotlight at the NEAR booth is the Tekuno activation. Offering the exclusive “Devs Without Limits” NFT collection, attendees can collect PODs at the booth, the “Mastering BOS” workshop, and the “Exploring BOS” talk. Successfully gathering these PODs unlocks the ultimate “We Are Devs” POD and offers the chance to win a free ticket to NEARCON 2023.

    - - - -

    With the We Are Developers World Congress 2023 in full swing, the NEAR team continues to engage passionately with attendees and fellow developers. Every conversation, presentation, and interaction amplifies the buzz around the transformative power of the Blockchain Operating System (BOS).

    - - - -

    There’s plenty more to explore and experience as the event unfolds. If you haven’t yet visited the NEAR booth or attended our sessions, seize the opportunity to dive into BOS and discover its revolutionary impact on the application-building process. And don’t forget to partake in all the fun and rewards, like a chance to win NEARCON tickets with Tekuno PODs.

    -

    The post NEAR’s BOS Impact at We Are Developers 2023 World Congress appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/we-are-developers/index.html b/public/blog/tag/we-are-developers/index.html deleted file mode 100644 index 9b1b9c948..000000000 --- a/public/blog/tag/we-are-developers/index.html +++ /dev/null @@ -1,2 +0,0 @@ -We Are Developers Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/web3-accelerator/feed/index.xml b/public/blog/tag/web3-accelerator/feed/index.xml deleted file mode 100644 index 1a5f7c02f..000000000 --- a/public/blog/tag/web3-accelerator/feed/index.xml +++ /dev/null @@ -1,347 +0,0 @@ - - - - Web3 Accelerator Archives – NEAR Protocol - - /blog/tag/web3-accelerator/ - - Thu, 27 Jul 2023 15:11:27 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Web3 Accelerator Archives – NEAR Protocol - /blog/tag/web3-accelerator/ - 32 - 32 - - - Case Study: NEAR Foundation’s Laura Cunningham on the NEAR Horizon Startup Accelerator - /blog/case-study-near-foundations-laura-cunningham-on-the-near-horizon-startup-accelerator/ - - - Wed, 26 Jul 2023 16:00:00 +0000 - - - - /?p=20758 - - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR …

    -

    The post Case Study: NEAR Foundation’s Laura Cunningham on the NEAR Horizon Startup Accelerator appeared first on NEAR Protocol.

    -]]>
    - NEAR is a home to a number of amazing apps and projects. These developers, founders, and entrepreneurs are using NEAR to effortlessly create and distribute innovative decentralized apps, while helping build a more open web — free from centralized platforms. In these Case Study videos, NEAR Foundation showcases some of these projects. 

    - - - -

    In the latest NEAR Foundation Case Study video, viewers hear from Laura Cunningham, Team Lead at NEAR Horizon and General Manager at NEAR Foundation. NEAR Horizon is a Web3 accelerator program revolutionizing how founders and builders receive support in the open web. Laura takes viewers on a deep dive into Horizon’s startup accelerator marketplace, which the Horizon team built on the Blockchain Operating System (BOS). 

    - - - -

    “The BOS was our platform of choice for building NEAR Horizon because it makes Horizon much more accessible to founders and projects that are already in the ecosystem. And then ones coming in new, you can be building on another chain as long as you have some component of your stack on NEAR then you can apply and be part of NEAR Horizon,  ” she adds. “It is also incredibly composable, so we were able to fork different attributes that were already available on BOS and make use of them in our front end, so it made it a lot quicker to actually develop.”

    - - - -
    - -
    -

    The post Case Study: NEAR Foundation’s Laura Cunningham on the NEAR Horizon Startup Accelerator appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Horizon and Encode Club: Accelerating Blockchain Mastery for Builders - /blog/near-horizon-and-encode-club-accelerating-blockchain-mastery-for-builders/ - - - Tue, 09 May 2023 15:00:00 +0000 - - - - - /?p=20482 - - NEAR Horizon and Encode Club have joined forces with a singular mission: to simplify the entry into the Web3 sphere. …

    -

    The post NEAR Horizon and Encode Club: Accelerating Blockchain Mastery for Builders appeared first on NEAR Protocol.

    -]]>
    - NEAR Horizon and Encode Club have joined forces with a singular mission: to simplify the entry into the Web3 sphere. This partnership forms a structured pathway, offering builders and founders a seamless transition into the blockchain world. Anchoring their efforts on practical solutions, NEAR Horizon and Encode Club aim to foster an inclusive and accessible future in the ever-evolving decentralized landscape.

    - - - -

    Uniting Encode’s developer training expertise with NEAR’s advanced tech, the partnership goes beyond facilitation. It directly trains builders, fueling growth and actively shaping an open Web3.

    - - - -

    Encode x NEAR Horizon: Four steps to blockchain expertise

    - - - -

    This inclusive program is meticulously designed to accommodate everyone from those new to blockchain to well-versed industry professionals, promoting skill development and exploration in Web3.

    - - - -

    Here’s what to expect:

    - - - -
      -
    1. Encode x NEAR Horizon Educational Series: The journey commences with a four-week program of building awareness of Web3 and NEAR Technology. These sessions aim to demystify blockchain technology, making it approachable for newcomers while offering valuable insights for seasoned professionals. From introductory presentations to in-depth technical demos, the educational series lays a solid foundation for all participants.
    2. -
    - - - -
      -
    1. Encode x NEAR Horizon Bootcamp: An intense eight-week program offers a deep dive into the world of blockchain development. Participants engage in live classes, practical assignments, and collaborative group projects — all under the expert guidance of seasoned instructors. The bootcamp offers a hands-on learning experience, accelerating the participants’ transition from theory to practice.
    2. -
    - - - -
      -
    1. Encode x NEAR Horizon Hackathon: A four-week hackathon that supports builders in launching high-quality projects. This event is designed to challenge participants and allow them to apply their newfound skills. With technical workshops, mentorship, and continual support, the hackathon provides an excellent platform for budding developers to build, learn, and innovate.
    2. -
    - - - -
      -
    1. Encode x NEAR Horizon Accelerator Program: This eight-week program focuses on nurturing the most promising hackathon projects and ecosystem builders. By offering mentorship and weekly workshops, the accelerator program aims to transform innovative ideas into operational startups, contributing to the growth and diversity of the NEAR ecosystem.
    2. -
    - - - -

    In essence, this partnership between NEAR Foundation and Encode Club is more than just an event — it’s a comprehensive roadmap to blockchain mastery, designed to educate, engage, challenge, and inspire all who embark on the journey.

    - - - -

    Cultivating talent: Encode x NEAR Horizon growth strategy

    - - - -

    The program offers a well-structured process for developers to learn, practice and build startups while receiving mentorship support from Encode and NEAR Horizon. The program’s impact extends beyond individual growth, as it also fosters a thriving environment for the NEAR ecosystem and Web3 developers.

    - - - -

    Don’t miss the chance to be part of this enriching experience — an opportunity that promises to strengthen the NEAR ecosystem while nurturing the next generation of Web3 developers. Embark on a rewarding blockchain journey with the NEAR Horizon and Encode Club partnership. Whether it’s the educational series, hackathon, bootcamp, or accelerator program, NEAR Horizon and Encode provide the resources and opportunities you need to succeed in the world of blockchain. Your blockchain adventure starts here. 

    - - - -

    To start,  create a NEAR Horizon project profile and register to the Encode x NEAR Horizon program here. Stay updated on Encode Club’s programs via their website, Twitter, and Discord, and join a community that shares your passion for Web3 innovation and growth. NEAR Horizon was recently launched, read the press release here, and register in the NEAR Horizon platform here.

    -

    The post NEAR Horizon and Encode Club: Accelerating Blockchain Mastery for Builders appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Update on Near Decentralized Funding, DAOs, and Accelerator - /blog/update-on-near-decentralized-funding-daos-and-accelerator/ - - - Fri, 24 Feb 2023 16:00:00 +0000 - - - - - /?p=19785 - - Hello Nearians, We are more than halfway through the first quarter of 2023 and wanted to share a quick update …

    -

    The post Update on Near Decentralized Funding, DAOs, and Accelerator appeared first on NEAR Protocol.

    -]]>
    - Hello Nearians,

    - - - -

    We are more than halfway through the first quarter of 2023 and wanted to share a quick update on the progress NEAR Foundation has made on community funding and accelerator strategies.

    - - - -

    First, if you are a project building on NEAR or interested in building on NEAR and need some immediate support, please fill out this Project Support Form. NEAR Foundation will connect you with the appropriate person or organization who can assist. 

    - - - -

    Decentralizing Funding

    - - - -

    Important changes in the grant program were announced at the start of January, highlighting the Foundation’s goal for a more decentralized funding process by handing over decision making to community DAOs. What follows is the status of the initial DAOs. 

    - - - - - - - - - - - - - - - -
      -
    • NEAR Digital Collective (NDC) is a grassroots movement by the NEAR Community to decentralize. NDC V0 Governance is coming soon! The initial milestone is for the Community Treasury to come online, and it is actively being finalized. V0 focuses on funding the GrassrootsDAOs listed above: Marketing, Developer, and Creatives. - -
    • -
    - - - -

    The Accelerator

    - - - -

    From the accelerator side, NEAR Foundation’s past experience with the grants program showed us that founders and teams are in need of a variety of support in order to be successful and take their project to the next level. 

    - - - -

    To that end, the Foundation’s strategy consists of three elements

    - - - -
      -
    1. We are building a product on NEAR Discovery that will allow founders to connect with a range of contributors (e.g., investors, subject matter experts in areas like legal and finance) who can support them in their journey. We are launching an MVP in early March. -
        -
      1. If you are a founder, investor, mentor, or subject matter expert interested in being a beta tester, please fill out this form
      2. - - - -
      3. If you are a founder interested in participating in paid user research, please fill out this form.
      4. -
      -
    2. -
    - - - -
      -
    1. We recently made an open call to partner with accelerator programs that can help us fast track support needs for projects. We will be releasing additional open calls in the coming weeks as we continue building out the support network available for founders. These open calls will be for: -
        -
      1. Engineering support resources
      2. - - - -
      3. Talent / Recruitment platforms and services
      4. - - - -
      5. Legal platforms and services
      6. - - - -
      7. Back office accounting platforms and services
      8. - - - -
      9. Marketing services
      10. - - - -
      11. Product management services
      12. -
      -
    2. -
    - - - -
      -
    1. We are continuously developing and identifying learning content and tooling that are most helpful for early stage founders (e.g., accounting software geared towards Web3 teams, Go To Market exemplars, etc.). These resources will be available within the product.
    2. -
    - - - -

    Take 1 minute to help us pick a name for the Accelerator here (survey closes on March 1, 2023)!

    - - - -

    If you have any questions on decentralized funding, the DAOs, and Accelerator program, please reach out to the Community Team on Telegram, Discord, and other social media channels used by the NEAR community. 

    - - - -

    And again, if your project is building on NEAR or interested in doing so and you are in need of some immediate support, fill out this Project Support Form. NEAR Foundation will connect you with the appropriate person or organization who can assist. 

    -

    The post Update on Near Decentralized Funding, DAOs, and Accelerator appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/web3-accelerator/index.html b/public/blog/tag/web3-accelerator/index.html deleted file mode 100644 index a53e16a70..000000000 --- a/public/blog/tag/web3-accelerator/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Web3 Accelerator Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/web3-and-thrive-podcast/feed/index.xml b/public/blog/tag/web3-and-thrive-podcast/feed/index.xml deleted file mode 100644 index a5a24f126..000000000 --- a/public/blog/tag/web3-and-thrive-podcast/feed/index.xml +++ /dev/null @@ -1,128 +0,0 @@ - - - - Web3 and Thrive Podcast Archives – NEAR Protocol - - /blog/tag/web3-and-thrive-podcast/ - - Tue, 26 Sep 2023 18:11:56 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Web3 and Thrive Podcast Archives – NEAR Protocol - /blog/tag/web3-and-thrive-podcast/ - 32 - 32 - - - Women in Web3 Changemakers: Emily Rose Dallara - /blog/women-in-web3-changemakers-emily-rose-dallara/ - - - Tue, 26 Sep 2023 17:40:18 +0000 - - - - - /?p=20923 - - “A lot of the clients I work with don’t feel that they’re ever on top of anything,” says Emily Rose …

    -

    The post Women in Web3 Changemakers: Emily Rose Dallara appeared first on NEAR Protocol.

    -]]>
    - “A lot of the clients I work with don’t feel that they’re ever on top of anything,” says Emily Rose Dallara, an award winning leadership coach and founder of the Web 3 and Thrive Podcast.  

    - - - -

    Dallara is one of the 10 finalists of the 2023 Women in Web3 Changemakers List, an annual competition designed to champion women pushing boundaries in the space. Dallara, along with nine other outstanding candidates, is showing the industry the change women are bringing about during the advent of the Open Web. 

    - - - -

    Dallara was selected because of her work helping ambitious leaders confidently succeed without constant self-doubt or working 24/7. 

    - - - -

    “There’s always been this golden thread throughout my whole experience, which is helping other people thrive, elevating people, especially women, because we didn’t have much of a voice back then, when I first started out.” 

    - - - -

    But Dallara’s expertise in helping others came at a personal cost. Dallara had to learn through challenging personal experiences what happens when the fast-paced world of Web3 creeps ever further into your personal life and what can happen when boundaries are not in place. 

    - - - -

    Watch an extended NEAR Foundation video interview with Emily Rose Dallara below.

    - - - -

    Burning out  

    - - - -

    “I’ve had two burnouts and two layoffs, both related,” says Dallara, from her home in France.  “I just wanted to succeed. I wanted to make all the money that was promised. I wanted to learn as much as I could. And I just didn’t see another way of working. It was a 24/7 grind.”

    - - - -

    Dallara began her Web3 journey while living in and working in Bali. “I was very much on the humanitarian side. I did a lot of work in Southeast Asia and Japan, helping with merchant onboarding, and had my own e-commerce platform for women.”

    - - - -

    She found a niche helping young female entrepreneurs accept crypto from international clients, creating payment rails for merchants, before joining Bitcoin.com as a marketing manager. A flurry of advisory roles followed, and her CV quickly became a Who’s Who of the crypto community. 

    - - - -

    “I just didn’t have the boundaries in place. I didn’t have a support network in place, I didn’t have the experience to prevent that from happening. So I burnt out. And then a bit later when I was a marketing director.” 

    - - - -

    Finding a new path

    - - - -

    After a period of recovery and reflection, Dallara began to ask herself if she wanted to stay in the industry, and if she did, what would a different path look like. And it was during this period she found that a lot of the clients and colleagues she had worked with had experienced similar issues. 

    - - - -

    “Because it’s such a rapidly changing space that’s constantly innovating, they feel that if they don’t stay on top, or they don’t have all the information they need, or they don’t reply to Slack messages all the time, that they’re not going to succeed. That’s what they’re scared of. And so this was a fear that I carried as well. And it took me a long time to unravel that and understand that it wasn’t a valid fear.”

    - - - -

    But Dallara used that fear to help her understand what she should do next. After qualifying as an accredited coach, she decided she wanted to help other women learn the lessons she had without having to burn out first. 

    - - - -

    “We’re trying to create a bit of a movement. We can’t just go say to the VCs, ‘you need to train the people that you’re invested in as better leaders’. It’s not as simple as that. We have to make people aware first, we can’t make any changes without that.”

    - - - -

    Given her experience working at the breakneck speeds of the Web3 world, would she recommend the industry to other women? “It’s a huge opportunity. I would never have been in the roles I’ve been in in web two, it would have been a much, much slower process. It gave me the space to understand what I was really good at, in a really short time because people kept throwing opportunities at me because it was rare to have a woman who was a marketing leader in the space.” 

    - - - -

    Dallara advises any women looking at this space to be, above all, curious. “Know that you can make this whatever you want to make it. There’s no rules. You can build whatever you want to build, you can create the role, whatever you want to create. And it’s up to you to determine how you do that. And when. 

    - - - -
    - -
    -

    The post Women in Web3 Changemakers: Emily Rose Dallara appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/web3-and-thrive-podcast/index.html b/public/blog/tag/web3-and-thrive-podcast/index.html deleted file mode 100644 index 1874cd3c7..000000000 --- a/public/blog/tag/web3-and-thrive-podcast/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Web3 and Thrive Podcast Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/web3-b2b/feed/index.xml b/public/blog/tag/web3-b2b/feed/index.xml deleted file mode 100644 index 19b7d9c52..000000000 --- a/public/blog/tag/web3-b2b/feed/index.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - Web3 B2B Archives – NEAR Protocol - - /blog/tag/web3-b2b/ - - Mon, 25 Sep 2023 17:01:04 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Web3 B2B Archives – NEAR Protocol - /blog/tag/web3-b2b/ - 32 - 32 - - - NEAR Foundation Unlocks Web3 B2B Solutions with SK Inc. C&C Strategic Partnership  - /blog/near-foundation-unlocks-web3-b2b-solutions-with-sk-inc-cc-strategic-partnership/ - - - Thu, 21 Sep 2023 00:00:00 +0000 - - - - /?p=20903 - - The NEAR Foundation is joining forces with SK Inc. C&C, a global leader in the IT industry, to help Web3 …

    -

    The post NEAR Foundation Unlocks Web3 B2B Solutions with SK Inc. C&C Strategic Partnership  appeared first on NEAR Protocol.

    -]]>
    - The NEAR Foundation is joining forces with SK Inc. C&C, a global leader in the IT industry, to help Web3 businesses expand in the region. 

    - - - -

    The collaboration brings together two teams committed to helping companies find the right Web3 tools to make their business grow. NEAR Foundation and SK Inc. C&C agree to carry out joint research, share and support partners in both ecosystems and collaborate on marketing and raising awareness. 

    - - - -

    “I am very pleased to collaborate with a leading company in South Korea’s IT industry like SK Inc.C&C. This partnership is expected to serve as a significant milestone, leading to the emergence of various use cases and the creation of a user-centric ecosystem,” says Marieke Flament, CEO of NEAR Foundation. 

    - - - -

    The partnership with SK Inc. C&C will leverage the NEAR Foundation’s network to strengthen its technological and business growth, connecting with SK Inc. C&C’s local corporate clients to accelerate the recruitment of outstanding companies in the Korean market.

    - - - -

    “Various attempts are being made to discover Web3 services connected with public blockchains across various industries, including public, financial, manufacturing, and distribution sectors. Starting with NEAR Protocol, we will strengthen our collaboration with already market-validated public blockchain companies and embark on expanding the Web3 service ecosystem,” says Cheol Choi, Head of the Web3 and Convergence Group at SK Inc.C&C 

    - - - -

    SK Inc. C&C provides consulting services, enterprise resource planning (ERP) solutions, intelligent transportation systems (ITSs), geographic information systems (GISs), billing solutions as well as other systems and solutions used in telecommunications, financial, logistics, energy and chemical industries. The company is active in the United States, China, the Middle East and other markets in addition to South Korea. 

    - - - -

    Asia in focus

    - - - -

    South Korea has become a major hub for the NEAR Community. Since launching in November of 2022, NEAR Korea Hub has hit a number of major milestones in the Korean Web3 industry. 

    - - - -

    The Hub has significantly contributed to the expansion of the Web3 ecosystem over the past 6 months by forming partnerships with leading domestic technology companies, offering generous developer support, and forging long-term relationships with college blockchain clubs. 

    - - - -

    The partnership with SK Inc. C&C forms part of a wider strategy to help support Asia’s role in mainstream adoption of Web3 and Open Web technologies. The NEAR Foundation’s support of ecosystems across Asia culminated in its recent NEAR APAC conference that took place in Ho Chi Minh City, Vietnam. 
    “NEAR Protocol is actively making moves to conquer the Korean market. As evidenced by the management team’s visit to Korea during Korea Blockchain Week (KBW), where discussions were held with leading companies in various industries, we expect significant results initially led by SK Inc. C&C,” says Scott Lee, General Manager, NEAR Korea. 

    -

    The post NEAR Foundation Unlocks Web3 B2B Solutions with SK Inc. C&C Strategic Partnership  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/web3-b2b/index.html b/public/blog/tag/web3-b2b/index.html deleted file mode 100644 index 8134c958c..000000000 --- a/public/blog/tag/web3-b2b/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Web3 B2B Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/web3-finance/feed/index.xml b/public/blog/tag/web3-finance/feed/index.xml deleted file mode 100644 index 1bfdc3489..000000000 --- a/public/blog/tag/web3-finance/feed/index.xml +++ /dev/null @@ -1,101 +0,0 @@ - - - - Web3 Finance Archives – NEAR Protocol - - /blog/tag/web3-finance/ - - Fri, 09 Jun 2023 09:04:24 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Web3 Finance Archives – NEAR Protocol - /blog/tag/web3-finance/ - 32 - 32 - - - NEAR Foundation Joins Forces with Mirae Asset for the Next Leap in Web3 Finance - /blog/near-foundation-joins-forces-with-mirae-asset-for-the-next-leap-in-web3-finance/ - - - Fri, 09 Jun 2023 00:00:00 +0000 - - - - /?p=20574 - - In a pivotal partnership for the blockchain industry, NEAR Foundation is joining forces with Mirae Asset — a subsidiary of …

    -

    The post NEAR Foundation Joins Forces with Mirae Asset for the Next Leap in Web3 Finance appeared first on NEAR Protocol.

    -]]>
    - In a pivotal partnership for the blockchain industry, NEAR Foundation is joining forces with Mirae Asset — a subsidiary of Asia’s largest financial group Mirae Asset Global — to help bridge the gap between trad-fi and Web3. This collaborative endeavor will thrust Web3 into the spotlight in the traditional finance market in South Korea and the larger Asian region, driving innovation and growth in the sector.

    - - - -

    With the guidance of the NEAR Korea Hub, this partnership places NEAR Foundation and Mirae Asset at the helm of the Web3 business domain. Together, they will conduct in-depth research and foster collaboration on blockchain technology, laying a robust foundation for the use of Web3 by the traditional financial industry in the region.

    - - - -

    Simultaneously, global joint events are in the pipeline to bolster brand visibility, coupled with a planned mutual support system. This system will fortify the Web2/Web3 business network, carving out a strong pathway for the integration of these technologies.

    - - - -

    NEAR and Mirae Asset: propelling finance into the Web3 age

    - - - -

    NEAR is a global Layer 1 protocol with a strong emphasis on usability (NEAR Protocol). With its new Blockchain Operating System (BOS) feature FastAuth, NEAR offers a user-friendly gateway into the world of Web3, mirroring the simplicity of email login. By presenting accessible solutions through BOS, it eases the transition for traditional businesses and developers. This ease of entry into Web3 fosters an environment conducive to the growth of innovative financial services.

    - - - -

    “Our agreement with Mirae Asset will provide a platform for us to showcase the capabilities of NEAR Protocol and its powerful Blockchain Operating System to help transform the finance industry,” Marieke Flament, CEO of the NEAR Foundation. “We look forward to supporting this important partnership and helping to play a key role in transforming the future of Web3 finance.”

    - - - -

    A major financial player partners with NEAR Foundation

    - - - -

    Entering into an alliance with NEAR Foundation, Mirae Asset demonstrates its mission to transform into a top-tier global investment bank. Providing standout services in corporate finance, trading, wealth management, and private equity investments, it’s redefining the finance industry.

    - - - -

    “We will continue to innovate and develop the foundational blockchain technology that underpins the Web3 industry,” said Ahn In-sung, Head of the Digital Division at Mirae Asset. “We will actively collaborate with exceptional blockchain communities like NEAR Protocol to incorporate the technology into our global business.”

    - - - -

    Mirae Asset’s pursuit of innovation is embodied in the creation of the “Next Finance Initiative” (NFI). Teamed with South Korea’s key players like SK Telecom and Hana Financial Group, this partnership signals an intriguing expansion for the NEAR ecosystem. Another feature of this partnership involves NEAR Foundation joining the practical discussion body via the working group.

    - - - -

    The NEAR Korea Hub, responsible for business expansion across Korea and other Asian regions, has been instrumental in forming this partnership. The Hub views this alliance as a significant leap showcasing NEAR Protocol’s potential in the financial industry.

    - - - -

    “NEAR Foundation is expanding the horizons of Web3 industry by onboarding leaders in the gaming industry (Kakao Games Bora, WeMade, and Netmarble) and Mirae Asset, a pioneer in the financial industry,” said Scott Lee, General Manager, NEAR Korea Hub, commented. “NEAR Foundation will continue to expand its reach through collaborations with industry leaders to actively drive the transformation of the existing financial paradigm.”

    - - - -

    In essence, this alliance between NEAR Foundation and Mirae Asset marks a turning point in the realm of Web3 finance, firmly rooted in the innovative and scalable infrastructure of the NEAR Protocol, NEAR Foundation, and ecosystem.

    -

    The post NEAR Foundation Joins Forces with Mirae Asset for the Next Leap in Web3 Finance appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/web3-finance/index.html b/public/blog/tag/web3-finance/index.html deleted file mode 100644 index 1211474b2..000000000 --- a/public/blog/tag/web3-finance/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Web3 Finance Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/web3-gaming/feed/index.xml b/public/blog/tag/web3-gaming/feed/index.xml deleted file mode 100644 index 4e742b56c..000000000 --- a/public/blog/tag/web3-gaming/feed/index.xml +++ /dev/null @@ -1,629 +0,0 @@ - - - - Web3 Gaming Archives – NEAR Protocol - - /blog/tag/web3-gaming/ - - Tue, 12 Sep 2023 07:27:13 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Web3 Gaming Archives – NEAR Protocol - /blog/tag/web3-gaming/ - 32 - 32 - - - NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands - /blog/near-apac-day-2-recap-asia-gaming-trends-interoperability-and-web3-for-brands/ - - - Sun, 10 Sep 2023 14:28:46 +0000 - - - - - - - /?p=20841 - - It would’ve been hard to imagine topping a jam-packed Day 1 of NEAR APAC, but Day 2 managed to do …

    -

    The post NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands appeared first on NEAR Protocol.

    -]]>
    - It would’ve been hard to imagine topping a jam-packed Day 1 of NEAR APAC, but Day 2 managed to do just that. The gorgeous Sunday in Saigon covered a wide range of topics, including significant discussions on the future trends in Web3 such as how brands can hop on board the Web3 bandwagon and a creative proposal to unite all Layer 1’s for mass adoption.

    - - - -

    With each session, industry leaders shed light on challenges and the future trajectory of the fast-paced Web3 ecosystem in APAC. From the unique positioning of Web3 gaming in Asia to the potential rise of the next Web3 cycle, the discussions were varied and far-reaching. Let’s dive on into all the Day 2 happenings at NEAR APAC in Vietnam!

    - - - - - - - -

    Let’s begin the Day Two recap with a standout panel diving into the next big Web3 trends. Experts agreed that it won’t just be about technological progress, but also the transformative ways that blockchain will weave into daily life. Asset tokenization, generative AI integration, and the proliferation of decentralized creator economies were some top trends on the table.

    - - - -
    - - - -

    “Generative AI and asset tokenization are revolutionizing Web3 ecosystems, especially in growing economies like India,” said Sudeep Choudhari, head of blockchain at the India National Payments Corporation. “As integration across borders accelerates, we’ll also challenge traditional FX rates, anticipating a future with minimal cross-border payment costs.”

    - - - -

    Hanna Tantoco, APAC Marketing Director at Blockdaemon, piggybacked on the transformative role of generative AI in enhancing blockchain user experiences. She also pointed out the rising prominence of gaming in Asia, particularly on NEAR. Additionally, she highlighted Singapore’s burgeoning creator economy, powered largely by NFTs, as another future trend.

    - - - -

    How brands can futureproof themselves with blockchain

    - - - -

    Another morning highlight was a panel discussion about how brands and enterprises can harness the potential of Web3 to adapt and thrive. Key points revolved around democratizing user data control, countering data monopolization by tech giants, tokenizing assets, and challenges in linking the physical and digital worlds.

    - - - -

    “Enterprises often face challenges with hiring experts who may quickly move on to other projects,” observed Oleg Fomenko, founder of SWEAT. “While consultancies can provide insights, the real breakthrough comes when you start building and experimenting with MVPs. Though initial attempts might fall short, perseverance can yield surprising results.”

    - - - -
    - - - -

    Alex Chiocchi, CPO of Pagoda, added that Web3 streamlines verification, challenging traditional ad networks. By using an open blockchain system, excessive fees are prevented, promoting shared value with users. This shift allows benefits like self-custody and reputation while redistributing margins back to the people.

    - - - -

    Among the key takeaways from the session was that businesses harnessing blockchain’s capabilities can anticipate a transformative impact on the global economy, especially with asset tokenization’s projected growth through 2030. As brands navigate challenges like ensuring digital authenticity and early adoption, having a targeted strategy is crucial.

    - - - -

    Web3 gaming: Asia’s landscape and blockchain utilization

    - - - -

    The Asian gaming landscape is buzzing with the rise of Web3 development, promising an unprecedented era of innovation and user empowerment. Central to discussions at the “Web3 Gaming: Asia Landscape” session was the gaming community’s appetite for asset and data ownership, often prioritizing this over the complexities of Web3 itself.

    - - - -

    After attending Korea Blockchain Week, it’s evident that Japan and Korea’s mobile giants are pioneering in Web3 gaming,” said Luke Xie, founder of gaming VC fund Press Start Capital. “As opposed to Web3 games like Axie, creating AAA games takes much longer. Given the rapid pace of crypto, former mobile developers align better with this fast-paced dynamic.”

    - - - -

    Ishank Gupta, co-founder of Kratos Studios in India, emphasized that gamers prioritize asset and data ownership over backend Web3 tech. He predicted that blockchain games should bring benefits that gamers care about with a focus on ease of usability. For instance, leading studios in India are integrating well-known IP into Web3 games while ensuring they remain engaging.

    - - - -

    “We’re witnessing a new golden age of gaming driven by indie studios,” added Xie. “Small teams, empowered by AI, are crafting games that punch above their weight. We believe that on-chain gaming, while difficult to execute at present, is the future. It’s all about selecting the right chain based on tech, community, and support. NEAR excels at all of the above.”

    - - - -

    The panel agreed that the Web3 gaming industry in APAC and beyond is undergoing a transformative phase, with blockchain offering gamers more control over assets and data. As developers continue to build, the focus will be on seamless onboarding, speed, and user-centric experiences. Blockchains should be subtly integrated without disrupting the gaming experience.

    - - - -

    Bringing Web3 together with Multichain: a call for collaboration 

    - - - -

    Today’s blockchain landscape consists of independent Layer 1’s vying for supremacy, bringing up the core question of interoperability. With users often navigating several ecosystems, creating cross-chain experiences becomes paramount. This star-studded panel explored new frameworks to address hurdles and challenges in the current siloed multi-chain user experience.

    - - - -
    - - - -

    “Web3’s ethos is modularity, similar to Lego blocks,” explained NEAR CEO Marike Flament. “While we prioritize access and user growth, interoperability challenges persist. But trust and unified solutions drive adoption, not a fractured approach. It’s essential that technology seamlessly serves the end user.”

    - - - -

    Cameron Dennis, CEO of Banyan, added that key management is a critical issue. He pointed out ways to simplify these processes with tools like FastAuth. Dennis added that addressing the noticeable gap in cross-chain liquidity should be a focus. He believes that a true multichain future that drives adoption will solve key and wallet management for a better UX.

    - - - -

    “Reflecting on a decade in this space, the competitive landscape has shifted,” mused Mary Beth Buchanan from the Cardano Foundation who is also an advisor to NEAR, “Earlier, exchanges hesitated to collaborate, fearing a loss of advantage. Today, there’s a collective push to learn from one another, ensuring technology works seamlessly for the end user.”

    - - - -

    Cameron believes that reinforcing the current ecosystem is paramount before extending cross-chain efforts, even though creating a decentralized internet remains a resource-intensive endeavor.

    - - - -

    Marieke stressed the importance of open-source technology in attracting top talent. Drawing inspiration from Web2’s approach to 5G standardization, she suggested that Layer 1 leaders could unite in an ‘L20’ alliance to champion unified standards, fostering a unified vision for the industry’s future.

    - - - -

    And that’s a wrap for the official Day 2 sessions at NEAR APAC. From gaming and brand adoption to multi-chain standards and collaboration, it was clear that this first-of-its-kind regional event was a rousing success for developers and the NEAR community alike. Sunday in Saigon rolls on with more side events and after-parties, so stay tuned for the full ICYMI tomorrow.

    -

    The post NEAR APAC Day 2 Recap: Asia Gaming Trends, Interoperability, and Web3 for Brands appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation Partners with Hibiki Run on Open Web Digital Gachapon  - /blog/near-foundation-partners-with-hibiki-run-on-open-web-digital-gachapon/ - - - Wed, 05 Jul 2023 14:00:00 +0000 - - - - /?p=20699 - - NEAR Foundation is thrilled to announce a new strategic partnership with Hibiki Run, a platform lying at the nexus of …

    -

    The post NEAR Foundation Partners with Hibiki Run on Open Web Digital Gachapon  appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation is thrilled to announce a new strategic partnership with Hibiki Run, a platform lying at the nexus of innovation in music streaming and digital collectibles. Hibiki Run is revolutionizing music discovery by melding gaming thrills with crypto-driven Listen-to-Earn  (L2E) incentives. 

    - - - -

    Together, NEAR Foundation and Hibiki Run will explore innovative paths for creating engagement between Web3 content creators and end users. With the Japanese “Gachapon” vending machine capsule toys as a model, the collaboration will meld NEAR’s cutting-edge blockchain technology with Hibiki Run’s expertise in digital music, art, and exercise, new opportunities in each vertical for creation, distribution, and ownership.

    - - - -

    Bringing a ‘Digital Gachapon’ economy to the open web

    - - - -

    With “Digital Gachapon”, NEAR and Hibiki Run will bring a powerful economic tool to creators. When interacting with a Japanese Gachapon, layers insert coins into the machine, turn the knob, and receive a capsule with a random item. 

    - - - -

    Hibiki Run has innovatively digitized this exciting concept, integrating it with blockchain technology. In the digital Gachapon system, users utilize their tokens to receive digital items such as NFTs or unique digital assets — anything from exclusive music tracks, collectible art pieces, and rare gaming items, to access tokens for specific events or experiences. 

    - - - -

    The digital Gachapon’s strength lies in its element of surprise and the potential for rare, high-value rewards — transforming the token expenditure into an exciting event while providing a way for creators to distribute their content in a fun and engaging manner. 

    - - - -

    Hibiki Run and NEAR hope that with these types of innovative concepts, blockchain technology, and user-friendly interfaces, a new frontier of digital arts will open up. One that is interactive and immersive for creators and consumers alike. Like NEAR, Hibiki Run is committed to creating a decentralized, fair, and accessible ecosystem for artists. 

    -

    The post NEAR Foundation Partners with Hibiki Run on Open Web Digital Gachapon  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Škoda Ventures into NFTs with NEAR to Create the Škodaverse India - /blog/skoda-ventures-into-nfts-with-near-to-create-the-skodaverse-india/ - - - Tue, 20 Jun 2023 05:30:00 +0000 - - - - - /?p=20652 - - Škoda India, in collaboration with NEAR Protocol, announces its foray into the world of NFTs and blockchain technology with Škodaverse …

    -

    The post Škoda Ventures into NFTs with NEAR to Create the Škodaverse India appeared first on NEAR Protocol.

    -]]>
    - Škoda India, in collaboration with NEAR Protocol, announces its foray into the world of NFTs and blockchain technology with Škodaverse India. This new platform forms a part of the global Škodaverse initiative and will bring a fresh wave of digital innovation to Škoda automobile fans in India.

    - - - -

    Škoda, one of Europe’s biggest car manufacturers headquartered in the Czech Republic, is quickly becoming one of the most forward-thinking industry brands in Web3 and the metaverse. Late last year, the company announced its global Škodaverse initiative, integrating virtual test drives and NFTs into an immersive environment.

    - - - -

    And now the Škodaverse is coming to the Indian market, powered by the NEAR Protocol, that will enable Škoda fans to buy, trade, and engage with NFTs in Web3. It’s a crucial step in the brand’s journey towards building a tight-knit community of Škoda loyalists, offering a space for fans to connect, co-create, and establish long-term relationships with the brand.

    - - - -

    Steering Škoda fans towards NFTs with NEAR

    - - - -

    Mr. Christian Cahn von Seelen – Executive Director of Sales, Marketing, and Digital, Škoda at Auto Volkswagen India – expressed excitement at the unveiling of the Škodaverse India NFT platform. He envisions it as a dynamic hub for connection and creativity, exemplifying Škoda’s commitment to its customers and fans in India. The Škodaverse India will offer unique and immersive experiences to a rapidly growing market.

    - - - -

    “Škodaverse India signifies the brand’s leap into uncharted digital territory,” said von Seelen. It’s not just about creating extraordinary digital assets, it’s about forging deep connections with a community that shares an unwavering passion for the brand and its initiatives in India. It also showcases our commitment to sustainability and innovation, through leveraging carbon-neutral blockchain technology that enables secure, transparent, and decentralized transactions.”

    - - - -

    Škodaverse India is designing its metaverse platform to be exciting and engaging for Škoda enthusiasts of all demographics, whether they’re familiar with blockchain technology or not. Whether it’s an image, video, sound, or ticket, each NFT collection released on the Škodaverse India platform will be curated to create memorable driving experiences

    - - - -

    The first NFT collection, honoring sustainability, will be created on NEAR Protocol. As a South Pole-certified, carbon-neutral blockchain, NEAR’s eco-first philosophy aligns seamlessly with Škoda India’s sustainability efforts.

    - - - -

    Driving Škoda India’s Web3 Strategy into the future

    - - - -

    As part of the brand’s intensified Web3 strategy, Škoda Auto India is collaborating with Antier, a leading blockchain consulting firm, to foster the creation and minting of innovative NFTs. Each NFT collection released on the Škodaverse India platform will be thoughtfully curated to represent memorable driving experiences. 

    - - - -

    These unique collectibles will unlock exclusive experiences, strengthening the bond between Škodaverse and its community of users. The Škodaverse India platform also ensures users stay updated with the latest in the creation and sale of NFTs. Users can sign in, create, and maintain their profiles, and monitor for updates via Škodaverse India’s Discord, Telegram, and Twitter.

    - - - -

    With the launch of Škodaverse India, Škoda Auto India embraces blockchain technology, signaling a significant move towards Web3 applications. Powered by NEAR Protocol, Škodaverse India will offer engaging, community-building experiences, further solidifying Škoda’s position as a forward-thinking automobile brand in Web3 and the metaverse.

    -

    The post Škoda Ventures into NFTs with NEAR to Create the Škodaverse India appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation and MARBLEX to Expand Korea’s Web3 Gaming Industry with Aurora - /blog/near-foundation-and-marblex-to-expand-koreas-web3-gaming-industry-with-warp-bridge/ - - - Sun, 04 Jun 2023 06:35:49 +0000 - - - - - - /?p=20565 - - NEAR Foundation is excited to announce a new strategic partnership with MARBLEX, a blockchain subsidiary of Netmarble Corp, that will …

    -

    The post NEAR Foundation and MARBLEX to Expand Korea’s Web3 Gaming Industry with Aurora appeared first on NEAR Protocol.

    -]]>
    -

    - - - -

    NEAR Foundation is excited to announce a new strategic partnership with MARBLEX, a blockchain subsidiary of Netmarble Corp, that will help expand Korea’s Web3 gaming industry. MARBLEX will build on Aurora, NEAR’s Ethereum-compatible layer, for maximum scalability and blockchain gaming accessibility to onboard more players to Web3. 

    - - - -

    Under the new partnership facilitated by the NEAR Korea Hub, NEAR Foundation and MARBLEX plan to achieve mutual growth by linking the NEAR blockchain and Aurora with WARP Bridge to enable interactive collaboration, promote global joint marketing events, and enhance brand awareness. 

    - - - -

    - - - -

    Through WARP Bridge, competitive and casual gamers alike will now be able to enjoy a variety of games and exclusive content through NEAR’s Blockchain Operating System (BOS). The BOS leverages the NEAR Protocol’s fast transaction speeds as well as effortless scalability and onboarding (via FastAuth) to make the onboarding experience as easy as possible for the masses. 

    - - - -

    MARBLEX: a developer and publisher of mobile games

    - - - -

    A Web3 gaming giant constantly pushing the boundaries of what’s possible, MARBLEX is a well-established developer and publisher of mobile games with more than 6,000 experts from across the globe. MARBLEX’s goal is to bring the highest quality Web3 games to market by providing key services such as a cryptocurrency wallet, decentralized exchange, token staking, and an NFT Marketplace.

    “We expect NEAR’s core narrative to play a pivotal role in bolstering the overall MBX 3.0 ecosystem,” said Junki Moon, Business Division Director of MARBLEX added. “Through the collaborative integration of the NEAR Foundation’s extensive technical expertise with the content prowess of the MBX ecosystem, we will maintain our position as pioneers in the ever-evolving landscape of the global blockchain trends.”

    - - - -

    Robbie Lim, GM of Business Development at NEAR Foundation, added: “This collaboration with MARBLEX will be an important milestone in promoting various use cases based on BOS (Blockchain Operating System). We will continuously advance the gaming ecosystem of NEAR Protocol as well as attract numerous users to enter the Web3 scene by onboarding high-quality MBX content.”

    - - - -

    NEAR Korea Hub, which oversees business development in Korea and Asia, played a key role in this strategic partnership. The Hub also sees the partnership as breaking a barrier to Web3 entry for mobile gamers. 

    - - - -

    - - - -

    “NEAR Protocol provides a user experience similar to Web2 using Fast Auth account abstraction feature, greatly lowering the initial entry barrier to Web3,” said a spokesperson from NEAR Korea Hub. “We will continue to strongly partner with excellent domestic companies such as MARBLEX to implement a user-centered ecosystem where users can easily enjoy all services.”

    -

    The post NEAR Foundation and MARBLEX to Expand Korea’s Web3 Gaming Industry with Aurora appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation and ARterra Labs Level Up Gaming Fandom for the Open Web - /blog/near-foundation-and-arterra-labs-level-up-gaming-fandom-for-the-open-web/ - - - Wed, 31 May 2023 13:00:00 +0000 - - - - - /?p=20547 - - The ever-expanding gaming landscape faces significant challenges such as engagement and identity fragmentation. As fans navigate platforms like Twitch, Discord, …

    -

    The post NEAR Foundation and ARterra Labs Level Up Gaming Fandom for the Open Web appeared first on NEAR Protocol.

    -]]>
    - The ever-expanding gaming landscape faces significant challenges such as engagement and identity fragmentation. As fans navigate platforms like Twitch, Discord, and YouTube, brands and creators struggle to monetize their fan bases effectively. This is where ARterra Labs steps in — a company on a mission to revolutionize fan engagement and unlock Web3 fandom for the gaming industry.

    - - - -

    ARterra Labs aims to transform fan engagement in gaming by integrating its innovative Web3 solutions into existing Web2 ecosystems. Bridging the gap between platforms and simplifying monetization, ARterra Labs is set to attract millions of gamers through strategic partnerships and an ambitious plan to onboard over 5 million users, positioning itself as a game-changer in the industry.

    - - - -

    As ARterra Labs redefines gaming engagement, the NEAR Foundation’s blockchain technology will play a crucial role, powering ARterra’s innovative solutions such as the credential-based fan passport and the Battle Pass system.  

    - - - -

    How ARterra’s Battle Pass is energizing Web3 gaming

    - - - -

    ARterra Labs deploys three distinct products aimed at transforming the gaming landscape. With a credential-based fan passport, they offer a secure platform for fans to exhibit their unique identities and interests. 

    - - - -

    In addition, they introduce metaverse experiences, allowing fans to interact, engage, and form deeper bonds with their favorite franchises. Completing the trifecta is the Battle Pass system, a tiered reward structure that gamifies fan engagement, incentivizing both participation and loyalty. 

    - - - -

    ARterra Labs’ metaverse experiences immerse fans in virtual worlds where they can interact, engage, and connect with their favorite franchises. And the Battle Pass system gamifies fan engagement with a tiered reward system, incentivizing participation and loyalty.
    Central to ARterra’s strategy, the Battle Pass is a reward system on the NEAR blockchain, connecting to other chains via the BOS and LayerZero. It propels NFT liquidity within the NEAR ecosystem and unites gaming communities across networks. By rewarding active engagement, Battle Pass bolsters user loyalty and underscores NEAR’s role in settling cross-chain gaming transactions.

    - - - -

    Together, these three products serve as the foundation for ARterra Labs’ Experience Hub — an open-source marketplace that enables the creation of User-Generated Content (UGC) experiences for distribution to their extensive network. ARterra’s User-Generated Content (UGC) — primarily enabled through Fortnite’s Creative mode — serves as another cornerstone to its success, already captivating over 46 million gamers and maintaining a steady base of 500,000 monthly players.

    - - - -

    User experience and seamless onboarding play a critical role in ushering these gamers into the Web3 ecosystem. Key alliances with industry leaders like Complexity Gaming and GRID Esports’ Champion of Champions Tournament (CCT) further reinforce ARterra’s prominence.

    - - - -

    ARterra’s market strategy is twofold. Initially, it centers on activating Web3 fandom, using user-generated content effectively, and fostering unity in the gaming community. The second focus involves collaborating with premier Web3 gaming entities, offering gamer incentives, and constantly refining these tactics with data insights.

    - - - -

    Reshaping gaming for an open web

    - - - -

    Blending NEAR’s fast and scalable blockchain with ARterra’s innovative approach to gaming, the partnership is set to bring about radical improvements to the Web3 gaming experience. ARterra’s unique tools like the Discord-native tournament platform and the Battle Pass will foster enhanced interactions between gamers, developers, and brands.

    - - - -

    The alliance, cemented by a 12-month agreement that’s extendable indefinitely, emphasizes the faith NEAR Foundation is placing in ARterra’s potential. This cooperative venture bolsters NEAR’s position as the gaming fandom’s settlement layer across multiple chains while also ensuring priority access for NEAR ecosystem games to ARterra’s platform.

    - - - -

    It’s also a win-win for both players and builders. Gamers gain an immersive environment where rewards and exclusive content are the norm. Developers are offered a supportive platform, underpinned by the NEAR BOS and protocol, while brands can tap into a vibrant, engaged, and diverse audience.

    - - - -

    With ARterra Labs and NEAR Foundation’s shared vision, the focus will be on expanding and refining gaming platforms to attract more users, developers, and partners. The two will be dedicated to adding value within the gaming community, setting the stage for a significant growth spurt in the NEAR and Web3 gaming ecosystems alike.

    - - - -

    Amplifying the open web gaming journey with Battle Pass, metaverse realities, and the fan passport, ARterra Labs and NEAR Foundation don’t merely enhance the experience — they define a new standard. It’s a game-changing era in Web3 and fans are just barely unlocking the first level.

    -

    The post NEAR Foundation and ARterra Labs Level Up Gaming Fandom for the Open Web appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR Foundation and PipeFlare Team Up to Reshape Web3 Gaming - /blog/near-foundation-and-pipeflare-team-up-to-reshape-web3-gaming/ - - - Tue, 02 May 2023 14:00:00 +0000 - - - - - /?p=20468 - - NEAR Foundation and PipeFlare, a trailblazing play-to-earn (P2E) platform, are partnering to reshape Web3 gaming by building on Aurora, NEAR’s …

    -

    The post NEAR Foundation and PipeFlare Team Up to Reshape Web3 Gaming appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation and PipeFlare, a trailblazing play-to-earn (P2E) platform, are partnering to reshape Web3 gaming by building on Aurora, NEAR’s Ethereum-compatible layer. As Web3 gaming on NEAR accelerates, PipeFlare will enable gamers to play, earn crypto, and engage socially in a decentralized environment. Collaborating with NEAR Foundation, PipeFlare aims to redefine scalability, security, and sheer enjoyment in Web3 by leveraging the EVM-compatible development capabilities of Aurora.

    - - - -

    PipeFlare is one of the industry’s most reliable Web3-enabled gaming platforms, allowing users to earn cryptocurrency through gameplay, tasks, and activities. The partnership will help create more intricate, engaging Web3 games in a secure fashion. The collaboration will most certainly attract more users to Web3 gaming, while making NEAR a top choice for game developers.

    - - - -

    Let’s delve into the PipeFlare and NEAR Foundation partnership, the advantages of the NEAR Blockchain Operating System and tech stack for Web3 gaming, and how the collaboration positively impacts the future of the NEAR decentralized gaming ecosystem.

    - - - -

    Transforming play: PipeFlare’s NEAR-driven gaming evolution

    - - - -

    Pipeflare is one of the most reputable P2E gaming sites in the industry, backed by some of the largest investors in the blockchain space like DCG and Horizen Labs. All PipeFlare transactions are published publicly as well, giving gamers more transparency and peace of mind in Web3 gaming, earning, transacting, and collecting.

    - - - -

    Gamers can enjoy playing games, collecting free cryptocurrency from PipeFlare faucets, participating in airdrops, competing in weekly leaderboards, and earning rewards through the referral program. Additionally, players can buy and sell limited-mint NFTs on PipeFlare’s NFT marketplace. 

    - - - -

    PipeFlare’s exclusive Pyro NFT also brings perks like staking bonuses and a secret fourth crypto faucet to users. A dedicated support team demystifies blockchain and NFTs, while NEAR’s scalability enhances transactions without sacrificing speed or efficiency. This paves the way for PipeFlare’s explosive growth in the dynamic Web3 gaming market.

    - - - -

    As security becomes more paramount in safeguarding digital assets and identities in Web3 gaming, PipeFlare is now embracing the speed and security of NEAR infrastructure. This ensures the protection of user data and assets and provides a cutting-edge, trustworthy, and reliable Web3 gaming experience for users to explore and enjoy.

    - - - -

    Making Web3 Gaming more scalable, secure, and dev-friendly

    - - - -

    NEAR’s intuitive, developer-focused platform offers substantial advantages for PipeFlare, simplifying game development and empowering creators to craft groundbreaking Web3 gaming experiences for veteran gamers and newcomers alike. But the PipeFlare and NEAR Foundation collaboration will transcend mere technology integration. Harnessing the BOS, PipeFlare can introduce even deeper functionality to players in areas like NFTs, in-game token rewards, and community engagement. As one of the only platforms where NFTs can be ported into multiple games, PipeFlare is breaking new ground in the industry.

    - - - -

    NEAR Foundation is excited about this new portable NFT model in Web3 gaming, and will focus on the following three areas to help accelerate PipeFlare:

    - - - -
      -
    • Scalability. One of the biggest challenges facing Web3 gaming is scalability. Traditional blockchains are not designed to handle the high volume of transactions required for gaming. NEAR is a high-performance blockchain that can handle a large number of transactions per second, making it ideal for Web3 gaming.
    • -
    - - - -
      -
    • Security. Another important factor for Web3 gaming is security. Players need to be confident that their data and assets are safe when playing games on the blockchain. The BOS uses a variety of security measures to protect gamer data and ensure the protection and provenance of all digital assets.
    • -
    - - - -
      -
    • User-Friendliness. Web3 gaming needs to be user-friendly to succeed and grow in the long term. Users need to be able to easily create and manage their accounts, buy and sell NFTs, and play games. With the BOS being one of the most developer-friendly ecosystems to build on, PipeFlare is set to make big strides in Web3 gamer onboarding.
    • -
    - - - -

    To get the ball rolling, the partnership will initially focus on upgrading Pipeflare’s existing games and developing new ones using the BOS. This transition will enhance the gaming experience for users and showcase the capabilities of NEAR’s technology in the Web3 gaming space.

    - - - -

    The collaboration also marks substantial progress for the Web3 gaming industry, demonstrating that key players recognize NEAR’s potential. It also signals NEAR’s strong positioning to emerge as the premier blockchain for novel gaming experiences.

    -

    The post NEAR Foundation and PipeFlare Team Up to Reshape Web3 Gaming appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR and WEMADE Team Up to Accelerate Mainstream Web3 Adoption - /blog/near-and-wemade-team-up-to-accelerate-mainstream-web3-adoption/ - - - Thu, 23 Mar 2023 13:00:00 +0000 - - - - - /?p=20318 - - The Near Foundation is excited to announce that it’s partnering with WEMADE, one of the largest publicly-listed gaming companies in …

    -

    The post NEAR and WEMADE Team Up to Accelerate Mainstream Web3 Adoption appeared first on NEAR Protocol.

    -]]>
    - The Near Foundation is excited to announce that it’s partnering with WEMADE, one of the largest publicly-listed gaming companies in South Korea. A leading game developer in South Korea for over 20 years, WEMADE will be vital in Near’s push toward mainstream adoption of Web3.

    - - - -

    - - - -

    Near and WEMADE will support the development of blockchain apps in Korea as well as other markets. Near and WEMADE will also jointly work on mutual brand awareness, and collaborate on a number of Web3 community events and business opportunities.  

    - - - -

    - - - -

    “WEMADE and Near share a similar vision of enabling and accelerating the mainstream adoption of blockchain to create a future of nearly limitless potential use cases and benefits for all of us across many different areas of our daily lives,” said Shane Kim, CEO, WEMIX and Vice President, WEMADE. 

    - - - -

    - - - -

    “In order to achieve that vision, we must make it easier, faster, and more cost-effective for developers to onboard off-chain apps, organizations, and startups, and are confident that Near is ideally positioned to do so.”

    - - - -

    Onboarding end users and developers into Web3

    - - - -

    The partnership will do much to encourage developers, including game designers, to build on the Near. Beyond co-hosting community events like offline hackathons and boot camps, Near and WEMADE will work together on mutual brand awareness, invest in research and collaboration on cross-chain initiatives, and be on the lookout for potential Web3 business opportunities and founders. 

    - - - -


    A renowned leader in game development, WEMADE is at the forefront of a generational shift as the gaming industry pivots to blockchain technology. Its WEMIX subsidiary is building an experience-based, platform-driven, and service-oriented mega-ecosystem — one that will give users everywhere access to a wide array of easy-to-use Web3 apps and experiences.

    - - - -

    - - - -

    “We’re thrilled to be partnering with WEMADE as part of our shared vision towards a decentralized future for the gaming industry,” said Commenting on the partnership, Marieke Flament, CEO of the Near Foundation. “By joining forces, we are confident in our ability to accelerate the development of cutting-edge solutions that meet the growing needs of gamers and developers in the Web3 space.”

    - - - -

    - - - -

    The Near-WEMADE partnership marks the second major Web3 gaming partnership from the Near Korea Hub. The first, a partnership with BORA — the Web3 GameFi platform of Kakao Games — will also be vital in accelerating the mainstream adoption of Web3.  

    -

    The post NEAR and WEMADE Team Up to Accelerate Mainstream Web3 Adoption appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Near Partners with BORA, Web3 GameFi Platform of Kakao Games - /blog/near-partners-with-bora-one-of-koreas-largest-gamefi-platforms/ - - - Mon, 06 Mar 2023 14:00:00 +0000 - - - - - - - /?p=20253 - - Near is excited to announce a new strategic partnership with BORA, a Web3  gaming subsidiary of METABORA. Near and BORA …

    -

    The post Near Partners with BORA, Web3 GameFi Platform of Kakao Games appeared first on NEAR Protocol.

    -]]>
    - Near is excited to announce a new strategic partnership with BORA, a Web3  gaming subsidiary of METABORA. Near and BORA will support each other in spreading local brand awareness, invest in research and collaboration on cross-chain, host events, and generate Web3 opportunities in Korea. 

    - - - -

    An affiliate of Kakao Games and its parent company BORANETWORK, BORA is focused on game development and blockchain-based gaming ecosystems. Its mobile gaming titles include Friends Popcorn, Friends Town, and Friends Shot

    - - - -

    “We are thrilled to be working with Near and welcome their expertise, knowledge and network as we aim to transform the world of Web3 gaming,” said Vincent Lim, a CBO of BORA. “Together with Near we will not only explore cross-promotion opportunities, but also seek future collaborations on IP-based game development that will lead to mass adoption and give us the competitive edge we need to position ourselves as leading players in the web3 gaming space.”

    - - - -

    Since the launch of Near’s Korean Hub in November of 2022, BORA has been steadily building up awareness throughout South Korea, while focusing on Web3  innovation, business development, education, and talent. The hub is led by entrepreneurs Scott Lee and Ben Kang — both influential figures within South Korea’s growing blockchain community.

    - - - -

    “One of the big ambitions of the hub  is  to tap into the country’s active gaming community, and to  bring  amazing projects and creators to the Near ecosystem.” said Robbie Lim, GM, Partners & International at Near. “ The partnership with BORA is our first major win – and a big step forward for NEAR as it accelerates its ambition to become the go to layer 1 for the Web3 gaming community.” 

    -

    The post Near Partners with BORA, Web3 GameFi Platform of Kakao Games appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/web3-gaming/index.html b/public/blog/tag/web3-gaming/index.html deleted file mode 100644 index f2bbedb83..000000000 --- a/public/blog/tag/web3-gaming/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Web3 Gaming Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/web3-incubation/feed/index.xml b/public/blog/tag/web3-incubation/feed/index.xml deleted file mode 100644 index 1edd4704c..000000000 --- a/public/blog/tag/web3-incubation/feed/index.xml +++ /dev/null @@ -1,98 +0,0 @@ - - - - Web3 Incubation Archives – NEAR Protocol - - /blog/tag/web3-incubation/ - - Tue, 20 Jun 2023 13:53:03 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Web3 Incubation Archives – NEAR Protocol - /blog/tag/web3-incubation/ - 32 - 32 - - - NEAR Foundation and Seracle Team to Nurture the Web3 Ecosystem with DevOps Efficiency - /blog/near-foundation-and-seracle-team-to-nurture-the-web3-ecosystem-with-devops-efficiency/ - - - Wed, 07 Jun 2023 13:57:04 +0000 - - - - - /?p=20601 - - NEAR Foundation and Seracle, a top blockchain cloud platform, have established a partnership to revolutionize the world of Web3 development. …

    -

    The post NEAR Foundation and Seracle Team to Nurture the Web3 Ecosystem with DevOps Efficiency appeared first on NEAR Protocol.

    -]]>
    - NEAR Foundation and Seracle, a top blockchain cloud platform, have established a partnership to revolutionize the world of Web3 development. This alliance, forged in the name of innovation and cost-efficiency, capitalizes on Seracle’s unique Litenode architecture.

    - - - -

    This groundbreaking technology aims to drive down costs, with the potential for reducing a project’s monthly expenditures on node maintenance and DevOps by up to 90%.

    - - - -

    Introducing the Litenode and the Web3 Incubation Center

    - - - -

    The Litenode architecture is one of the linchpins in this strategic collaboration. Its design facilitates dramatic cost savings, all while ensuring quality isn’t compromised. But it doesn’t stop there. 

    - - - -

    The integration of a Web3 incubation center, nestled in the bustling tech hub of Pune, India, gives developers access to a fertile innovation environment. This collaborative center presents developers with a unique opportunity to immerse themselves in a vibrant ecosystem dedicated to the development, learning, and scaling of Web3 projects.

    - - - -

    “Seracle’s enthusiasm, technical capabilities, and experience in the Web3 space make them an ideal partner to grow NEAR,” said Arpit Sharma, Managing Director of APAC, MENA of NEAR Foundation, expressing enthusiasm for the collaboration’s potential. 

    - - - -

    This partnership, with its focus on communal growth and knowledge sharing, is poised to cultivate an enriched community of developers ready to take on the challenges of the Web3 landscape.

    - - - -

    How NEAR and Seracle are financing the next wave of Web3 

    - - - -

    To bring these ambitions to fruition, financial support is vital. Seracle has committed to providing substantial backing, offering platform credits from a pool of $100,000. These credits serve to alleviate the financial burdens of upfront costs, letting developers channel their focus into the creative process. 

    - - - -

    NEAR Foundation, in step with this initiative, pledges to offer grants to select innovative projects based at Seracle’s incubation center. Looking ahead, the partnership has set its sights high. The ambitious goal to onboard around 100 Web3 projects and engage with 5,000 developers this year underscores the commitment to growth and innovation. 

    - - - -

    Shrikant Bhalerao, CEO of Seracle, shares this vision and expresses his optimism about the partnership, stating that “NEAR boasts some of the most innovative solutions in the Web3 space. We anticipate that our partnership with NEAR will contribute to a significant 30% growth in our revenue.”

    - - - -

    With such dedication to growth and innovation, the collaboration between NEAR Foundation and Seracle is shaping up to be an inspiring chapter in the evolution of the Web3 ecosystem. Leveraging cost-efficient technology, fostering a vibrant community, and providing robust financial support, this partnership stands as a beacon for the future of Web3 development.

    -

    The post NEAR Foundation and Seracle Team to Nurture the Web3 Ecosystem with DevOps Efficiency appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/web3-incubation/index.html b/public/blog/tag/web3-incubation/index.html deleted file mode 100644 index 0f8eefeba..000000000 --- a/public/blog/tag/web3-incubation/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Web3 Incubation Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/web3-loyalty/feed/index.xml b/public/blog/tag/web3-loyalty/feed/index.xml deleted file mode 100644 index eecee7d8a..000000000 --- a/public/blog/tag/web3-loyalty/feed/index.xml +++ /dev/null @@ -1,134 +0,0 @@ - - - - Web3 Loyalty Archives – NEAR Protocol - - /blog/tag/web3-loyalty/ - - Wed, 17 May 2023 15:43:17 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Web3 Loyalty Archives – NEAR Protocol - /blog/tag/web3-loyalty/ - 32 - 32 - - - Taco Labs and NEAR Foundation to Give Shopify Retailers Next-Gen Customer Loyalty Programs - /blog/taco-labs-and-near-foundation-to-give-shopify-retailers-next-gen-customer-loyalty-programs/ - - - Fri, 05 May 2023 14:00:00 +0000 - - - - - /?p=20477 - - E-commerce is entering a new era of customer loyalty as Taco Labs and NEAR Foundation join forces to revolutionize the …

    -

    The post Taco Labs and NEAR Foundation to Give Shopify Retailers Next-Gen Customer Loyalty Programs appeared first on NEAR Protocol.

    -]]>
    - E-commerce is entering a new era of customer loyalty as Taco Labs and NEAR Foundation join forces to revolutionize the way 5.6 million Shopify retailers engage and retain customers. This innovative partnership fosters personalized loyalty experiences that deepen connections between brands and consumers, transcending traditional loyalty program limitations.

    - - - -

    By merging Taco Labs’ inventive platform with NEAR’s speedy, carbon-neutral blockchain, Shopify retailers can develop captivating loyalty programs while overcoming Web3 adoption challenges, such as slow transactions and high fees. The alliance paves the way for engaging multiplayer experiences, token-gated access, and exclusive benefits that transform customer retention and brand affinity.In this new loyalty landscape, both brands and consumers stand to benefit from this groundbreaking collaboration.

    - - - -

    Taco Labs and NEAR: Loyalty reinvention unwrapped

    - - - -

    As e-commerce continues to evolve, customer loyalty programs must adapt to remain relevant and effective. Traditional loyalty programs often struggle to build meaningful connections with customers, resulting in missed opportunities for improved retention and brand loyalty. Taco Labs and NEAR Foundation have partnered to address this issue, offering groundbreaking solutions to Shopify retailers. 

    - - - -

    The Starbucks case study illustrates how these solutions can foster unique and engaging loyalty experiences. With its recently unveiled Odyssey initiative, Starbucks created a Web3 loyalty program centered on gamification and real-life participation. Customers engage in challenges — like trying new menu items — to earn digital collectible stamps (NFTs). These stamps can be traded, and provide access to exclusive perks like limited-edition token-gated products, virtual classes, and trips to Starbucks roasteries or coffee farms.

    - - - -

    Similar to Starbucks, Taco Labs is harnessing Web3 to create innovative and captivating customer experiences and connections. The Taco App is doing this through quest gamification, membership tiers, reward points, and referral programs. These experiences are delivered swiftly, seamlessly, and at scale using the NEAR Protocol.

    - - - -

    Taco Labs and NEAR Foundation will further facilitate innovative loyalty approaches, incentivizing brand-valuable behavior, enhancing customer engagement, and transforming the e-commerce loyalty landscape.

    - - - -

    Streamlining loyalty with no-code solutions

    - - - -

    Taco Labs’ comprehensive platform addresses both immediate business needs and fosters long-term growth. It enables brands to scale their loyalty programs without incurring high costs and adapts to various business models, making the platform suitable for diverse industries and market segments.

    - - - -

    A key strength of Taco Labs is its seamless integration with existing systems, connecting easily with popular e-commerce platforms like Shopify and in-store Point of Sale (POS) systems. This cross-channel integration ensures a cohesive and immersive customer experience across online and offline touchpoints.

    - - - -

    Taco’s no-code approach streamlines the process for brands, marketers, and agencies. The end-to-end workflow doesn’t require specialized technical knowledge or developers, allowing businesses to focus on building meaningful connections with customers.

    - - - -

    In the Web3 world, privacy and data security are crucial. Taco addresses this by giving brands control over customer data, which is stored on a decentralized, transparent network. This ensures security and privacy while enabling brands to leverage valuable information for decision-making.

    - - - -

    Combining Web3 and the user-friendly NEAR Protocol, Taco Labs revolutionizes customer loyalty programs. Taco’s scalable, adaptable, and secure features enable businesses to create engaging experiences that retain customers and foster lasting connections, differentiating loyalty programs in a competitive market.

    - - - -

    Spicing up Shopify loyalty

    - - - -

    Taco Labs and NEAR Foundation will provide innovative solutions for Shopify retailers to enhance customer loyalty programs. By using Web3 technology, businesses can launch exclusive, early-access products quickly. Integration with Shopify delivers Web3 benefits while preserving Web2’s convenience and user experience.

    - - - -

    With Nike’s successful CryptoKicks NFT campaign as another example, Taco Labs enables Shopify retailers to create similar experiences. Businesses can launch tiered NFTs to crowdfund new product lines, offering lifelong perks to early supporters, like monthly loyalty tokens for exclusive products and offers. This encourages early adoption and strengthens customer relationships.

    - - - -

    Taco Labs’ platform promotes brand-valuable behavior by allowing customers to buy, sell, and gift the NFTs they’ve received. This generates a dynamic ecosystem of gifting and trading, attracting new customers without costly marketing. The platform’s blockchain foundation enables comprehensive data analytics, providing customer insights while respecting privacy.

    - - - -

    A key advantage of Taco Labs and NEAR Foundation’s collaboration is user control over data. Customers can choose to share information or maintain privacy, fostering trust and a positive experience. With data stored on a public blockchain, no third party can revoke access, ensuring businesses retain full control over customer relationships.

    - - - -

    Taco Labs and NEAR offer Shopify retailers a powerful, flexible solution to boost customer loyalty and engagement by combining Web3 and Web 2 features. This partnership presents an excellent growth opportunity for businesses in the rapidly evolving digital landscape.

    - - - -

    The collaboration ushers in a new era of customer loyalty, empowering Shopify retailers to harness Web3 capabilities. By seamlessly integrating blockchain technology with existing platforms, businesses can create tailored, engaging experiences fostering lasting customer connections.

    - - - -

    From token-gated products to comprehensive analytics, this partnership enables unique, sustainable loyalty programs, blending the strengths of Web3 and Web2 technologies. As the future of customer engagement unfolds, Taco Labs and the NEAR ecosystem are at the forefront.

    -

    The post Taco Labs and NEAR Foundation to Give Shopify Retailers Next-Gen Customer Loyalty Programs appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/web3-loyalty/index.html b/public/blog/tag/web3-loyalty/index.html deleted file mode 100644 index f116de13b..000000000 --- a/public/blog/tag/web3-loyalty/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Web3 Loyalty Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/web3-onboarding/feed/index.xml b/public/blog/tag/web3-onboarding/feed/index.xml deleted file mode 100644 index c50c07495..000000000 --- a/public/blog/tag/web3-onboarding/feed/index.xml +++ /dev/null @@ -1,113 +0,0 @@ - - - - Web3 Onboarding Archives – NEAR Protocol - - /blog/tag/web3-onboarding/ - - Wed, 17 May 2023 15:43:24 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Web3 Onboarding Archives – NEAR Protocol - /blog/tag/web3-onboarding/ - 32 - 32 - - - Rownd and NEAR Foundation are Cracking the Code of Web3 Onboarding - /blog/rownd-and-near-foundation-are-cracking-the-code-of-web3-onboarding/ - - - Tue, 16 May 2023 14:00:00 +0000 - - - - /?p=20495 - - One of the main reasons that the NEAR ecosystem exists is to onboard the next billion users to Web3 — …

    -

    The post Rownd and NEAR Foundation are Cracking the Code of Web3 Onboarding appeared first on NEAR Protocol.

    -]]>
    - One of the main reasons that the NEAR ecosystem exists is to onboard the next billion users to Web3 — and that mission has just made significant strides by partnering with Rownd. An industry leader in digital onboarding and identity, Rownd’s passwordless authentication tech will utilize NEAR for more seamless interaction and onboarding for both Web3 and Web2.

    - - - -

    Brands and businesses use Rownd to take users from landing pages to downloading apps while ensuring a streamlined registration process across platforms, websites, and mobile apps. 

    - - - -

    Now, companies that use Rownd can integrate NEAR apps into their mobile and desktop experiences, while still maintaining privacy and security via passwordless authentication.

    - - - -

    Addressing the persistent digital onboarding problem

    - - - -

    Engaging and retaining users is still a major challenge. A clear symptom of this problem is that only 2% of site visitors complete sign-up processes of all sorts. A whopping 60% leave during the sign-up stage itself. This high attrition rate can have a severe impact on customer acquisition and revenue generation efforts.

    - - - -

    Rownd directly confronts this problem, bringing to the table its innovative onboarding and authentication solutions. These are far from one-size-fits-all solutions. Rownd dynamically allows platforms to tailor the authentication and profile creation process to meet the specific needs and preferences of their users.

    - - - -

    This customization reduces friction and drop-off rates, improving user experience and making the process more appealing. When onboarding is user-centric and straightforward, it leads to higher conversion rates, ultimately benefiting both the user and the platform. Rownd doesn’t just address not a functional need but also builds trust and credibility amongst users.

    - - - -

    Rownd’s digital onboarding solution on NEAR

    - - - -

    Rownd’s solution is both elegant and robust. It employs compact code snippets and software development kits (SDKs) to create a network of interconnected digital platforms — from websites and blogs to landing pages and apps. This strategic platform unification consolidates user data into a single, comprehensive profile, which translates into a smooth cross-platform experience.

    - - - -

    Rownd goes a step further with adaptive sign-up. Rownd’s SDKs do not require hard coding design and authentication methods for apps and websites.  Rather, they are set in the platform. This allows developers and non-developers alike to dynamically change sign-in methods, branding, and where authentication occurs without editing code.

    - - - -

    Rownd also has a Web3 integration strategy, making it easier for users to navigate the often complex and intimidating world of crypto and Web3. They offer user-friendly custodial wallets for those new to the crypto space, while simultaneously allowing crypto-savvy users to link their existing wallets with minimal hassle. 

    - - - -

    This balanced approach ensures that Rownd’s onboarding solution is inclusive, comprehensive, and future-ready.

    - - - -

    NEAR Foundation and Rownd: the future of Web3 onboarding

    - - - -

    NEAR Foundation’s partnership with Rownd greatly expands the potential of the company

    - - - -

    ‘s advanced authentication and onboarding solutions. Rownd’s NEAR integration allows app developers to add a NEAR account/wallet to a new user in seconds.  This collaboration paves the way for faster adoption of Web3 technology in a secure, scalable, and decentralized environment. Brands and businesses will benefit from increased conversions and engagement of Web3 veterans and novices alike.

    - - - -

    Together, Rownd and the NEAR Foundation demonstrate the transformative potential of integrating state-of-the-art onboarding and passwordless authentication with the revolutionary Web3. By crafting a user-centric onboarding experience, they are making significant strides toward broadening the use of Web3 applications, marking a new era for digital experiences.

    -

    The post Rownd and NEAR Foundation are Cracking the Code of Web3 Onboarding appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/web3-onboarding/index.html b/public/blog/tag/web3-onboarding/index.html deleted file mode 100644 index 5e4eb1b95..000000000 --- a/public/blog/tag/web3-onboarding/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Web3 Onboarding Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/women-in-web3-changemakers/feed/index.xml b/public/blog/tag/women-in-web3-changemakers/feed/index.xml deleted file mode 100644 index 8cc61baac..000000000 --- a/public/blog/tag/women-in-web3-changemakers/feed/index.xml +++ /dev/null @@ -1,571 +0,0 @@ - - - - Women in Web3 Changemakers Archives – NEAR Protocol - - /blog/tag/women-in-web3-changemakers/ - - Tue, 10 Oct 2023 13:01:39 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Women in Web3 Changemakers Archives – NEAR Protocol - /blog/tag/women-in-web3-changemakers/ - 32 - 32 - - - Women in Web3 Changemakers: Veronica Korzh  - /blog/women-in-web3-changemakers-veronica-korzh/ - - - Tue, 10 Oct 2023 12:59:03 +0000 - - - - /?p=20959 - - “I think balance is the crucial factor,” says Veronica Korzh, the co-founder and CEO of GeekPay, an all-in-one platform to …

    -

    The post Women in Web3 Changemakers: Veronica Korzh  appeared first on NEAR Protocol.

    -]]>
    - “I think balance is the crucial factor,” says Veronica Korzh, the co-founder and CEO of GeekPay, an all-in-one platform to streamline and secure batch payments in digital currencies to gig workers.

    - - - -

    “It doesn’t really matter if it’s Web2, Web3, Web5 or whatever — equality and diversity in terms of genders, races, religions brings more to the table.”

    - - - -

    Korzh is one of the 10 finalists of the 2023 Women in Web3 Changemakers List, an annual competition designed to champion women pushing boundaries in the space. Korzh, along with nine other outstanding candidates, are showing the industry the change women are bringing about during the advent of the Open Web. 

    - - - -

    Korzh was selected not only for her work at GeekPay, but because of the pivotal role she has played in supporting Ukrainian startups, helping them maintain access to funding and talent during a period where so many have been displaced after Russia’s invasion of Ukraine. 

    - - - -

    Korze is a Partner at SID Venture Partners, the first unique Ukrainian high-technology venture capital firm established by IT experts focusing on investments into early-stage technology startups.

    - - - -

    In little over a year, it has successfully funded 16 startups across a range of sectors, and recently became the most active venture investor in Ukrainian startups in the last 18 months

    - - - -

    A Web3 Journey 

    - - - -

    “My story is quite simple,” says Korzh, who is currently based in Lisbon. “I’ve been in the Ukrainian software business for about 15 years in project management, programme management, and also in product house roles”. 

    - - - -

    Korzh’s journey into Web3 came about after a chance encounter with Illia Polosukhin, one of the co-founders of NEAR Protocol. “I was always fascinated about technology, and blockchain has, for the last 10 years, been one of the most exciting technologies.” 

    - - - -

    This led Korzh to begin investigating what this breakthrough technology was really all about. At first, says Korzh, blockchain was difficult to understand, but there was something intriguing that led Korzh to dive deeper. At the time, Kurzh had been working on a fitness app in Ukraine, but that chance encounter led her to radically rethink the direction of her career. 

    - - - -

    “I moved to blockchain and here starts the most interesting part of my life,” she says. In less than two years, Korzh has helped 16 companies access funding and become the co-founder of her own Web3 company. But the road hasn’t been without its challenges. 

    - - - -

    Since the beginning of the Russian invasion in February 2022, the start-up sector in Ukraine’s bustling tech industry has been displaced. Dozens of companies had to relocate, further west in the country, or to welcoming hubs like Lisbon. This made evaluating companies on their merit more challenging. 

    - - - -

    Since then, Ukraine’s crypto native community has bounced back. Ukraine has managed to raise more than $100 million in cryptocurrency donations through its government-curated Crypto Fund of Ukraine, thanks to natively built projects like UkraineDAO. For Korzh and her colleagues, the journey to find the best startups has, despite the disruption, continued. 

    - - - -

    “The technology is still far away from what we would like to have in terms of the ecosystem.” This has meant assessing which projects should be funded, and which require more work, has been a challenge. But, says Korzh, that’s where women come in. 

    - - - -

    More balance, better results

    - - - -

    “I think balance is the secret sauce for progress for any business. The more balanced ecosystem you have, in terms of gender, the better your results.”

    - - - -

    Korzh believes increasing the number of women in Web3 can only help produce better results. “In terms of gender equality, this space is very male,” says Korzh. “It is very hard to find women founders.”

    - - - -

    This is where awards like the Women in Web3 Changemakers hopes to help showcase the work of women across the space and encourage others to take the plunge. 

    - - - -

    “I think awards can help say: ‘I’m capable enough to start my own company,’ or ‘I’m capable enough to understand how blockchain works.’ It’s an indicator for myself as a female founder to think, okay, maybe I should also try myself, maybe I can build something, maybe I can create an idea that then changes the world.” 

    - - - -
    - -
    -

    The post Women in Web3 Changemakers: Veronica Korzh  appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Women in Web3 Changemakers: Erica Kang - /blog/women-in-web3-changemakers-erica-kang/ - - - Tue, 03 Oct 2023 16:00:00 +0000 - - - - /?p=20944 - - “The space needs more women,” says Erica Kang, the CEO and founder of KryptoSeoul, a community building team focused on …

    -

    The post Women in Web3 Changemakers: Erica Kang appeared first on NEAR Protocol.

    -]]>
    - “The space needs more women,” says Erica Kang, the CEO and founder of KryptoSeoul, a community building team focused on highlighting projects that are actively building in the space, connecting audiences in Asia and beyond. 

    - - - -

    “I think many people find it intimidating coming into this space, but I think women can add value.” 

    - - - -

    Kang is one of the 10 finalists of the 2023 Women in Web3 Changemakers List, an annual competition designed to champion women pushing boundaries in the space. Kang, along with nine other outstanding candidates, are showing the industry the change women are bringing about during the advent of the Open Web. 

    - - - -

    Kang was chosen because of her tireless work in the Web3 community. On top of creating one of the most vibrant meetups in Asia under KryptoSeoul, she’s also one of the main organisers of BUIDL Asia, as well as numerous hackathons and meetups, and has been a pivotal player in helping bring together some of the brightest technical talent under one roof. But getting to this point has been anything but easy.  

    - - - -

    Watch an extended NEAR Foundation video interview with Erica Kang below.

    - - - -

    Stepping off the ladder 

    - - - -

    Kang graduated from Stanford with a major in international relations and policy, giving her the foundations for being able to bring people from diverse backgrounds closer together. After graduating, she joined Korea Telecom, one of the largest telco companies in Asia, working in the strategy division, but found it stifling. 

    - - - -

    “It’s a very conservative culture,” says Kang. “The hierarchy is dramatic. Juniors don’t have an opportunity to strive for creating new things or innovations, even though they have amazing ideas. It’s hard to bring it up.” 

    - - - -

    But a chance encounter with a friend took Kang on a different path. “A friend recommended a very unique seminar, back in 2017. It’s very rare in Seoul, Korea to kind of have that kind of a seminar, especially on crypto.” 

    - - - -

    The opportunity to jump into an emerging new field of technology, and away from the hierarchy of corporate South Korea was too tempting.

    - - - -

    “Since then, I’ve been in the rabbit hole ever since.” Kang brought her experience in bringing people together in a role she describes as closer to a digital “diplomat” and started organising meet ups in and around South Korea from 2017 onwards.  

    - - - -

    Kang was well placed. South Korea has become one of the leaders in Web3 technology. The South Korean government has invested US$21 million into local services looking to utilize the metaverse, and has established a US$30 million metaverse fund to help startups expand. 

    - - - -

    Earlier this year, South Korea’s parliament approved the country’s first standalone crypto asset legislation, which integrates 19 crypto-related bills and authorises the Financial Services Commission (FSC) to oversee crypto asset operators and custodians. 

    - - - -

    But it hasn’t always been easy working in Web3.

    - - - -

    Growing Pains

    - - - -

     “I’ve been working in the space since 2017, and I did feel a lack of female culture here. It was devastating at times. And it was frustrating too. I really had to eliminate my femininity and had to prove I could really go up there and do my thing,” says Kang. 

    - - - -

    But the hard work, says Kang has paid off. “I think people get it now. I’ve just been building, and make a difference.” Kang is now considered one of the key pillars of the South Korean, and broader east Asian crypto community.

    - - - -

    She has also become a sounding board for many young female entrepreneurs thinking about jumping into the Web3 space. But Kang suggests they tread with caution. 

    - - - -

    “I think it’s really important for newbies to do your own research. Learn a lot and indulge yourself but when it comes to engaging in certain projects, and certain people investing in those people, you really have to be careful.” 

    - - - -

    Kang stresses there are reputational challenges working on some projects, but the opportunity to innovate and come up with new solutions to old problems is unique in the Web3 space. 

    - - - -
    - -
    -

    The post Women in Web3 Changemakers: Erica Kang appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Women in Web3 Changemakers: Emily Rose Dallara - /blog/women-in-web3-changemakers-emily-rose-dallara/ - - - Tue, 26 Sep 2023 17:40:18 +0000 - - - - - /?p=20923 - - “A lot of the clients I work with don’t feel that they’re ever on top of anything,” says Emily Rose …

    -

    The post Women in Web3 Changemakers: Emily Rose Dallara appeared first on NEAR Protocol.

    -]]>
    - “A lot of the clients I work with don’t feel that they’re ever on top of anything,” says Emily Rose Dallara, an award winning leadership coach and founder of the Web 3 and Thrive Podcast.  

    - - - -

    Dallara is one of the 10 finalists of the 2023 Women in Web3 Changemakers List, an annual competition designed to champion women pushing boundaries in the space. Dallara, along with nine other outstanding candidates, is showing the industry the change women are bringing about during the advent of the Open Web. 

    - - - -

    Dallara was selected because of her work helping ambitious leaders confidently succeed without constant self-doubt or working 24/7. 

    - - - -

    “There’s always been this golden thread throughout my whole experience, which is helping other people thrive, elevating people, especially women, because we didn’t have much of a voice back then, when I first started out.” 

    - - - -

    But Dallara’s expertise in helping others came at a personal cost. Dallara had to learn through challenging personal experiences what happens when the fast-paced world of Web3 creeps ever further into your personal life and what can happen when boundaries are not in place. 

    - - - -

    Watch an extended NEAR Foundation video interview with Emily Rose Dallara below.

    - - - -

    Burning out  

    - - - -

    “I’ve had two burnouts and two layoffs, both related,” says Dallara, from her home in France.  “I just wanted to succeed. I wanted to make all the money that was promised. I wanted to learn as much as I could. And I just didn’t see another way of working. It was a 24/7 grind.”

    - - - -

    Dallara began her Web3 journey while living in and working in Bali. “I was very much on the humanitarian side. I did a lot of work in Southeast Asia and Japan, helping with merchant onboarding, and had my own e-commerce platform for women.”

    - - - -

    She found a niche helping young female entrepreneurs accept crypto from international clients, creating payment rails for merchants, before joining Bitcoin.com as a marketing manager. A flurry of advisory roles followed, and her CV quickly became a Who’s Who of the crypto community. 

    - - - -

    “I just didn’t have the boundaries in place. I didn’t have a support network in place, I didn’t have the experience to prevent that from happening. So I burnt out. And then a bit later when I was a marketing director.” 

    - - - -

    Finding a new path

    - - - -

    After a period of recovery and reflection, Dallara began to ask herself if she wanted to stay in the industry, and if she did, what would a different path look like. And it was during this period she found that a lot of the clients and colleagues she had worked with had experienced similar issues. 

    - - - -

    “Because it’s such a rapidly changing space that’s constantly innovating, they feel that if they don’t stay on top, or they don’t have all the information they need, or they don’t reply to Slack messages all the time, that they’re not going to succeed. That’s what they’re scared of. And so this was a fear that I carried as well. And it took me a long time to unravel that and understand that it wasn’t a valid fear.”

    - - - -

    But Dallara used that fear to help her understand what she should do next. After qualifying as an accredited coach, she decided she wanted to help other women learn the lessons she had without having to burn out first. 

    - - - -

    “We’re trying to create a bit of a movement. We can’t just go say to the VCs, ‘you need to train the people that you’re invested in as better leaders’. It’s not as simple as that. We have to make people aware first, we can’t make any changes without that.”

    - - - -

    Given her experience working at the breakneck speeds of the Web3 world, would she recommend the industry to other women? “It’s a huge opportunity. I would never have been in the roles I’ve been in in web two, it would have been a much, much slower process. It gave me the space to understand what I was really good at, in a really short time because people kept throwing opportunities at me because it was rare to have a woman who was a marketing leader in the space.” 

    - - - -

    Dallara advises any women looking at this space to be, above all, curious. “Know that you can make this whatever you want to make it. There’s no rules. You can build whatever you want to build, you can create the role, whatever you want to create. And it’s up to you to determine how you do that. And when. 

    - - - -
    - -
    -

    The post Women in Web3 Changemakers: Emily Rose Dallara appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - NEAR at Collision Highlights - /blog/near-at-collision-highlights/ - - - Fri, 30 Jun 2023 13:46:27 +0000 - - - - - /?p=20682 - - Missed NEAR’s booth at Collision? We’ve got you covered with content from NEAR talks and panels. There were also a …

    -

    The post NEAR at Collision Highlights appeared first on NEAR Protocol.

    -]]>
    - Missed NEAR’s booth at Collision? We’ve got you covered with content from NEAR talks and panels. There were also a number of awesome announcements, including the big news out of Collision: Alibaba Cloud.

    - - - -

    From the winners of the Women in Web3 Changemakers awards being announced to exciting ecosystem developments, here’s a run down on all things NEAR from Collision 2023!! 

    - - - -

    ICYMI: Major Announcements @ Collision

    - - - -

    NEAR kicked off Collision with a roar, with two major news items rolling hot off the presses yesterday. Here’s the scoop: 

    - - - -

    NEAR Foundation and Alibaba Cloud Join Forces 

    - - - -

    First off, the NEAR Foundation announced a major partnership with Alibaba Cloud, the digital technology and intelligence backbone of Alibaba Group. The two will collaborate to offer Remote Procedure Calls (RPC) as a service and multi-chain data indexing to NEAR developers, users, and the broader ecosystem. 

    - - - -

    The goal is to make building decentralized applications on the BOS a breeze, and working with one of the world’s biggest tech infrastructure companies is a huge step in the right direction. Alibaba Cloud will also enhance plug-and-play capabilities for BOS builders everywhere, from China and APAC to Europe and the Americas.

    - - - -

    Winners of the Women of Web3 Changemakers Awards

    - - - -

    In other news, the ten winners of the Women in Web3 Changemakers initiative were just announced. These incredible women are leading the charge in the Web3 space, and NEAR Foundation is proud to recognize their outstanding contributions. 

    - - - -

    Selected from over 200 nominations and voted for by the public, these were chosen based on their inclusive and innovative ideas, impact within the Web3 space, and their contributions to significant projects. Read the full announcement for NEAR’s Women in Web3 Changemakers winners

    - - - -

    Highlights from NEAR at Collision 

    - - - -

    Geekpay breaks barriers in crypto transactions on NEAR

    - - - -

    GeekPay, a crypto payments platform for businesses and freelancers built on NEAR, surpassed $500,000 in total transactions during Collision. It also just hit 205 verified users, companies, and 120 transactions. GeekPay is transforming how companies handle digital currency payments to contractors, eliminating the need for lengthy wallet addresses and providing greater security for cross-border transactions.

    - - - -

    “NEAR is a perfect ecosystem and technology for cross-border payments in digital currencies for remote workers and contractors,” said Veronica Korzh, CEO and co-founder of GeekPay.

    - - - -

    GeekPay supports a range of digital currencies including NEAR and ETH, including functionality with tracking and analytics, secure payment processing, invoicing, and transaction categorization. GeekPay hurdling the $400,000 transaction mark shows that the future of crypto payments for work is being built on the BOS.

    - - - -

    Tenamint launches Toronto Regional Community with a bang

    - - - -

    Tenamint, a marketplace for fractionalized trading card collectibles built on the NEAR blockchain, christened the launch of the NEAR Toronto Regional Community during the NEAR Toronto Launch Party. The soiree was held on an iconic yacht, the Yankee Lady, during a sunset cruise for an epic post-event party to cap off Collision.

    - - - -

    “We’re thrilled to announce the launch of the NEAR Toronto Regional Community, a vibrant community dedicated to fostering collaboration, innovation, and growth in the Toronto region’s blockchain ecosystem,” said Sal Chaudhry, Tenamint co-founder and Toronto local.

    - - - -

    “At the NEAR Toronto Regional Community, we’re on a mission to foster collaboration, education, and entrepreneurial support within the blockchain community,” Sal added. “We aim to empower individuals and businesses in Toronto and beyond to explore, adopt, and thrive in the world of blockchain technology and beyond,”

    - - - -

    NEAR after Collision: Onward to ETHCC

    - - - -

    Collision 2023 is only beginning, but the BOS momentum won’t stop in Toronto. NEAR will also be at the Ethereum Community Conference (ETHCC) in Paris, from July 19th to 23rd.

    - - - -

    From exciting cross-chain discussions to insightful panels, interactive workshops, and pitch events, ETHCC promises to be another remarkable platform for BOS building and the wider NEAR community.

    - - - -

    So after immersing yourself in Collision 2023, remember to mark your calendars for NEAR’s presence at ETHCC as well. Here’s to continuing to make waves in Web3 and expanding into the Open Web – with you as the BOS!

    -

    The post NEAR at Collision Highlights appeared first on NEAR Protocol.

    -]]>
    - - - -
    - - Web3’s Leading Ladies: NEAR Foundation Honors 2023’s Women Changemakers  - /blog/web3s-leading-ladies-near-foundation-honors-2023s-women-changemakers/ - - - Thu, 29 Jun 2023 13:00:00 +0000 - - - - /?p=20674 - - As Collision 2023 rolls on, NEAR Foundation announced the ten winners of the Women in Web3 Changemakers award. These exceptional …

    -

    The post Web3’s Leading Ladies: NEAR Foundation Honors 2023’s Women Changemakers  appeared first on NEAR Protocol.

    -]]>
    - As Collision 2023 rolls on, NEAR Foundation announced the ten winners of the Women in Web3 Changemakers award. These exceptional women, chosen from a pool of 200 nominees worldwide, underline the significant contributions women can make throughout the Web3 ecosystem.

    - - - -

    “These Changemakers show us that together we can make a positive difference and shape the collective good of Web3,” says Marieke Flament, CEO of NEAR Foundation. “We must continue to help one another and nurture a strong, international community that includes both men and women.”

    - - - -

    The Women in Web3 Changemakers competition illuminates the groundbreaking work of influential women in the Web3 space. As this platform appreciates the significant strides made by these remarkable women, it’s important to recognize the unique journeys of all ten winners, each of whom has contributed to the evolution of the blockchain industry.

    - - - -

    Women behind the success of Web3 honored at Collision

    - - - -

    Candidates for the Women in Web3 Changemakers award come from all corners of the globe, each making unique marks on the Web3 ecosystem in their own respective ways. Each of the following women made the final top ten because they’ve carved out a niche, advocated for transformative solutions, and been a part of breakthrough blockchain initiatives.

    - - - -

    The full list of winners includes:

    - - - -
      -
    • Emily Rose Dallara: Web3 Leadership Coach and Podcast Producer
    • - - - -
    • Janine Grainger:  Co-founder and CEO, Easy Crypto AI
    • - - - -
    • Bridget Greenwood: Founder, The Bigger Pie
    • - - - -
    • Cathy Hackl: Chief Futurist and Chief Metaverse Officer at Journey
    • - - - -
    • Erica Kang: Founder and CEO, KrptoSeoul
    • - - - -
    • Irina Karagyaur: Founder and Director, BQ9
    • - - - -
    • Veronica Korzh: Co-founder and CEO, Geekpay
    • - - - -
    • Zoe Leavitt: Founder and CEO, Glass
    • - - - -
    • Alana Podrx: Founder and CEO, Eve Wealth
    • - - - -
    • Yaliwe Soko: Chair, United Africa Blockchain Association
    • -
    - - - -
    - - - -

    Handpicked by public vote from a pool of hundreds of applications, these Changemakers were assessed on criteria of inclusion, influence, and innovation. Each woman demonstrated the ability to drive societal good, make a substantial impact in the Web3 community, and contribute to critical projects, uplifting the global female presence in the Web3 landscape.

    - - - -

    “The Changemakers show that we can forge our own path into the ecosystem and create a collective narrative that has the power to break down barriers to entry and make Web3 more inclusive for everyone,” Flament continues. “I’m extremely honored to be championing this initiative and to spotlight these exceptionally talented women.”

    - - - -

    The diverse journeys of Women in Web3 Changemakers

    - - - -

    All ten winners of the Women in Web3 Changemakers awards come from a variety of backgrounds, geographies, and skill sets. Yaliwe Soko, for instance, is championing opportunities in Web3 to alleviate poverty and provide opportunities across Africa. Others like Cathy Hackle are icons in spheres like the metaverse.

    - - - -

    Erica Kang, meanwhile, spearheads KryptoSeoul and was responsible for  BUIDL ASIA 2022 conference, attended by ETH co-founder Vitalik Buterin and NEAR Protocol co-founder Illia Polosukhin. And through her organization The Bigger Pie, Bridget Greenwood is building an entire support ecosystem to advance both women and minorities in blockchain and crypto.

    - - - -

    Another changemaker, Emily Rose Dallara, is a Web3 leadership coach and podcast producer, who uses a Holistic Growth Coaching method to help overwhelmed leaders thrive — without the burnout. Helping to make digital assets more accessible, Kiwi-born Janine Grainger is the co-founder and CEO of Easy Crypto, a simple and secure way for anyone to get involved in crypto. Irina Karagyaur, the founder and director of BQ9, is working to turn great ideas into even better Web3 products through her crypto-fintech boutique advisory firm. 

    - - - -

    With Geekpay, co-founder and CEO Veronica Korzh is streamlining and securing digital payments without the stress and need for long wallet addresses. Zoe Leavitt, the founder and CEO of Glass, has set up shop in the loyalty space, allowing customers to level up their nights out by earning rewards from their favorite alcohol brands. And Alana Podrx, the founder and CEO of Eve Wealth, has created a community of women who share portfolios, co-invest, and support each other in self-guided wealth management through peer-to-peer learning. 

    - - - -

    Celebrating the individual successes and collective efforts of these Changemakers reflects the massive impact and influence of women in Web3. From Africa to Asia, from the metaverse and marketing to crypto media and education, each winner has blazed her unique trail and is impacting the Web3 ecosystem, inspiring both men and women to do the same.

    - - - -

    “I’m grateful for the hundreds of nominations we received from peers and employers who took the time to highlight the many achievements that the global female workforce has made to their organizations,” Flament continues. “By casting their ballot, the international community has shown that the contributions of women are being noticed.” 

    - - - -

    By celebrating the contributions of these Changemakers, the NEAR Foundation underscores its commitment to diversity, inclusion, and innovation in the Web3 space. As females in crypto continue to make strides, it’s vital to recognize and appreciate the efforts of women who are paving the way for an equitable and inclusive future in Web3 and beyond.

    -

    The post Web3’s Leading Ladies: NEAR Foundation Honors 2023’s Women Changemakers  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/women-in-web3-changemakers/index.html b/public/blog/tag/women-in-web3-changemakers/index.html deleted file mode 100644 index ed024b599..000000000 --- a/public/blog/tag/women-in-web3-changemakers/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Women in Web3 Changemakers Archives – NEAR Protocol
    \ No newline at end of file diff --git a/public/blog/tag/women-of-web3-changemakers/feed/index.xml b/public/blog/tag/women-of-web3-changemakers/feed/index.xml deleted file mode 100644 index d883db2a1..000000000 --- a/public/blog/tag/women-of-web3-changemakers/feed/index.xml +++ /dev/null @@ -1,138 +0,0 @@ - - - - Women of Web3 Changemakers Archives – NEAR Protocol - - /blog/tag/women-of-web3-changemakers/ - - Tue, 31 Oct 2023 17:24:46 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Women of Web3 Changemakers Archives – NEAR Protocol - /blog/tag/women-of-web3-changemakers/ - 32 - 32 - - - Women of Web3 Changemakers: Cathy Hackl - /blog/women-of-web3-changemakers-cathy-hackl/ - - - Tue, 31 Oct 2023 17:24:46 +0000 - - - - - /?p=21016 - - “I have always said that I’m not the typical face you see representing technology, and that’s why it’s essential for …

    -

    The post Women of Web3 Changemakers: Cathy Hackl appeared first on NEAR Protocol.

    -]]>
    - “I have always said that I’m not the typical face you see representing technology, and that’s why it’s essential for everyone to know that the future is for all,” says Cathy Hackl, a leading authority in emerging tech and co-founder of Journey, a consultancy that advises companies, brands, cities and governments about gaming, AR, AI, spatial computing, metaverse, web3, and virtual world strategies.

    - - - -

    Hackl is one of the 10 finalists of the 2023 Women in Web3 Changemakers List, an annual competition designed to champion women pushing boundaries in the space. Hackl, along with nine other outstanding candidates, are showing the industry the change women are bringing about during the advent of the Open Web. 

    - - - -

    Hackl was selected not only for her work advising companies like Nike, Walmart, Louis Vuitton, and Clinique on navigating emerging digital spaces and technologies, but her tireless work as an educator.

    - - - -

    She has taught at IE Business School and SDA Bocconi School of Management, two of the world’s leading business schools, and spoke at Ivy League universities across America. Hackl is one of the world’s leading female tech trailblazers that is constantly evolving and helping build a more inclusive future.

    - - - -

    But Hackl’s journey to becoming one of the world’s foremost leaders on emerging technologies nearly didn’t happen. 

    - - - -

    A chance encounter 

    - - - -

    Hackl started her career working in live video and live streaming in silicon valley. But it wasn’t until a chance encounter with VR that led her career in a completely new direction. 

    - - - -

    “I was invited to an event where there were some VR demos. I had the opportunity to try on a VR headset for the first time and experienced what it would be like to be in a solitary confinement cell in virtual reality. Within a few minutes, I felt claustrophobic and I took the device off, but something had changed. It felt like I was able to fully turn on my humanity dial again. I also knew I had seen something important, maybe it was part of the future of storytelling or maybe it was the future of business, but I was sure of one thing: this is what I wanted to do for the rest of my life.”

    - - - -

    Soon after that moment, Hackl left the video production space and went all in on AR and VR. Stints at companies like HTC and its VIVE VR project led Hackl to landing her dream job at Magic Leap, the American technology company specialising in augmented reality. 

    - - - -

    It was here that technologist Neal Stephenson and Chief Futurist at Magic Leap first coined the term “Metaverse”. But for Hackl, it wasn’t to be. When the pandemic struck she was among many that were laid off as the company contracted. 

    - - - -

    “I had to ask myself: what do I do now? This led me to Amazon Web Services, where I worked on several projects including large scale simulations and learned a lot about cloud computing.”

    - - - -

    During the Covid years, Hackl had been writing a lot about the Metaverse after she was first exposed to it at Magic Leap, helping her to connect to companies looking to explore the space.  

    - - - -

    “I eventually got the courage to leave AWS and launch off on my own. In 2021 I founded my own consulting firm. In just 10 months my company was acquired by Journey, where I am currently the co-founder and I lead the company’s virtual, gaming, and Metaverse studio.”

    - - - -

    Since then, Hackl has become one of the main proponents of metaverse technology, especially for women. 

    - - - -

    The future is female 

    - - - -

    According to research by McKinsey, women are spending more time in the proto-metaverse than men are and are more likely to spearhead and implement metaverse initiatives. 

    - - - -

    However, just as in the tech sector as a whole, women represent a minority in the metaverse economy. Both the entrepreneurial capital and the CEO roles in the metaverse space remain disproportionately reserved for men.

    - - - -

    “The research shows that women are more likely than men to engage in hybrid use cases in the metaverse, traversing both physical and digital worlds to participate in gaming, fitness, education, live events, and shopping via AR/VR technologies,” says Hackl. 

    - - - -

    “By contrast, men use the metaverse to participate in purely digital experiences such as gaming, trading nonfungible tokens (NFTs), and attending social events.”

    - - - -

    For Hackl, bringing women into technology results in more creative solutions and has more significant potential for innovations that meet women’s needs and promote gender equality. But their lack of inclusion comes with massive costs. 

    - - - -

    “Suppose women cannot access the Internet and do not feel safe online. In that case, they cannot develop the necessary digital skills to engage in digital spaces, which diminishes their opportunities to pursue careers in science, technology, engineering, and mathematics (STEM) related fields. By 2050, 75% of jobs will be connected to STEM areas. Yet today, women hold just 22% of positions in artificial intelligence”

    - - - -

    But Hackl feels the Web3 world is ready for change. “My message is always to be bold, speak your mind, and settle for more. The world needs your essence, work, art, creativity, femininity, intuition, and heart to make the Web3 industry. There will always be obstacles, but there is a vast community to mentor, support and stand by you to continue exploring, building, and creating in the Web3 industry.”

    -

    The post Women of Web3 Changemakers: Cathy Hackl appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/women-of-web3-changemakers/index.html b/public/blog/tag/women-of-web3-changemakers/index.html deleted file mode 100644 index 78227ff54..000000000 --- a/public/blog/tag/women-of-web3-changemakers/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Women of Web3 Changemakers Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/wormhole/feed/index.xml b/public/blog/tag/wormhole/feed/index.xml deleted file mode 100644 index 0d8e23f93..000000000 --- a/public/blog/tag/wormhole/feed/index.xml +++ /dev/null @@ -1,114 +0,0 @@ - - - - Wormhole Archives – NEAR Protocol - - /blog/tag/wormhole/ - - Wed, 17 May 2023 15:43:29 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Wormhole Archives – NEAR Protocol - /blog/tag/wormhole/ - 32 - 32 - - - NEAR Integrates Wormhole to Launch ZK-Enabled Cross-Chain Communication with Ethereum  - /blog/near-integrates-wormhole-to-launch-zk-enabled-cross-chain-communication-with-ethereum/ - - - Tue, 16 May 2023 15:00:00 +0000 - - - - - /?p=20492 - - Driving the evolution of Web3 through innovation and interoperability, bridging technology has become a critical factor in user adoption and …

    -

    The post NEAR Integrates Wormhole to Launch ZK-Enabled Cross-Chain Communication with Ethereum  appeared first on NEAR Protocol.

    -]]>
    - Driving the evolution of Web3 through innovation and interoperability, bridging technology has become a critical factor in user adoption and functionality. NEAR Foundation has chosen to bolster its multi-chain interoperability by integrating with Wormhole, harnessing the power of cutting-edge Zero-Knowledge (ZK) light clients. 

    - - - -

    This strategic move revolutionizes secure Web3 application communication, unlocking vast potential across diverse sectors including DeFi, NFTs, and governance. The integration represents a tangible stride towards a less abstract and more interconnected, trustless Web3. By incorporating Wormhole’s technology, NEAR Foundation envisions a practical shift where cross-chain transactions become efficient, secure, and user-friendly.

    - - - -

    NEAR’s unique position as a developer-friendly platform amplifies the impact of this integration, driving the adoption of Zero-Knowledge technology to a wider audience. The NEAR Foundation is not just creating a world of possibility but is actively building it, bringing advanced blockchain solutions to the mainstream.

    - - - -

    Signaling a new era of trustless cross-chain communication, this NEAR-Wormhole integration will be explored through the NEAR <> ETH corridor and the promise of Zero-Knowledge bridging.

    - - - -

    Wormhole: the key to NEAR’s vision of a multi-chain Web3

    - - - -

    Wormhole is forging its place in crypto as the industry-standard cross-chain messaging protocol, reliably facilitating transfers exceeding $35 billion dollars via countless cross-chain messages. In this integration, Wormhole’s role is vital, employing its advanced technology to connect the NEAR ecosystem with over 20 other high-value blockchain networks.

    - - - -

    The integration enables synergy of  Wormhole Connect’s technology with NEAR’s Blockchain Operating System (BOS) to enhance developer access to multiple chains and diverse liquidity. It will also serve to break down barriers for casual users, blending complex blockchain tech with a user-friendly experience.

    - - - -

    Moreover, Wormhole’s integration with NEAR’s BOS presents a significant opportunity for businesses using NEAR. This collaboration simplifies multi-chain interaction and introduces Zero-Knowledge proofs, making it easier for businesses to fully utilize blockchain technology in a straightforward and accessible manner.

    - - - -

    Wormhole’s NEAR <> ETH corridor opens opportunities 

    - - - -

    Born from this integration is the trustless NEAR <> ETH corridor, an innovation powered by Wormhole and secured by Zero-Knowledge (ZK) Proofs. This marks a shift from NEAR’s traditional Rainbow Bridge, introducing seamless integration of NEAR assets with Wormhole-linked chains.

    - - - -

    The NEAR <> ETH corridor represents a new class of zk-enabled bridges, offering heightened interconnectedness between the NEAR ecosystem and a multitude of Wormhole-facilitated applications. This trustless corridor is poised to catalyze more efficient and secure transactions, symbolizing a substantial stride toward a fully interoperable Web3 ecosystem.

    - - - -

    Making tomorrow’s crypto-verse trustless and ZK-based

    - - - -

    The NEAR and Wormhole integration isn’t just a stride toward the future — it’s a giant leap toward a new era powered by ZK Proofs. As part of the integration work, developers are building the first ZK light clients, which will play a crucial role in supporting the trustless NEAR <> ETH corridor.

    - - - -

    ZK light clients promise to revolutionize the bridging experience, discarding the need for trust assumptions and external validation. By offloading most of the computational load to an off-chain entity, these clients optimize storage and compute resources, paving the way for a streamlined and efficient bridging process. This innovation is set to redefine the standards of security and reliability in the blockchain sector.

    - - - -

    The integration between NEAR and Wormhole is a decisive step towards a future where cross-chain communication is seamless, secure, and trustless. It’s a future that opens up new horizons for developers and users alike, offering improved interoperability and accessibility. 

    - - - -

    With Wormhole, NEAR citizens can engage and interact with other chains in a blink of an eye.

    -

    The post NEAR Integrates Wormhole to Launch ZK-Enabled Cross-Chain Communication with Ethereum  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/wormhole/index.html b/public/blog/tag/wormhole/index.html deleted file mode 100644 index dbd564c64..000000000 --- a/public/blog/tag/wormhole/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Wormhole Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/zero-knowledge/feed/index.xml b/public/blog/tag/zero-knowledge/feed/index.xml deleted file mode 100644 index 672ee09dd..000000000 --- a/public/blog/tag/zero-knowledge/feed/index.xml +++ /dev/null @@ -1,114 +0,0 @@ - - - - Zero-Knowledge Archives – NEAR Protocol - - /blog/tag/zero-knowledge/ - - Wed, 17 May 2023 15:43:29 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - Zero-Knowledge Archives – NEAR Protocol - /blog/tag/zero-knowledge/ - 32 - 32 - - - NEAR Integrates Wormhole to Launch ZK-Enabled Cross-Chain Communication with Ethereum  - /blog/near-integrates-wormhole-to-launch-zk-enabled-cross-chain-communication-with-ethereum/ - - - Tue, 16 May 2023 15:00:00 +0000 - - - - - /?p=20492 - - Driving the evolution of Web3 through innovation and interoperability, bridging technology has become a critical factor in user adoption and …

    -

    The post NEAR Integrates Wormhole to Launch ZK-Enabled Cross-Chain Communication with Ethereum  appeared first on NEAR Protocol.

    -]]>
    - Driving the evolution of Web3 through innovation and interoperability, bridging technology has become a critical factor in user adoption and functionality. NEAR Foundation has chosen to bolster its multi-chain interoperability by integrating with Wormhole, harnessing the power of cutting-edge Zero-Knowledge (ZK) light clients. 

    - - - -

    This strategic move revolutionizes secure Web3 application communication, unlocking vast potential across diverse sectors including DeFi, NFTs, and governance. The integration represents a tangible stride towards a less abstract and more interconnected, trustless Web3. By incorporating Wormhole’s technology, NEAR Foundation envisions a practical shift where cross-chain transactions become efficient, secure, and user-friendly.

    - - - -

    NEAR’s unique position as a developer-friendly platform amplifies the impact of this integration, driving the adoption of Zero-Knowledge technology to a wider audience. The NEAR Foundation is not just creating a world of possibility but is actively building it, bringing advanced blockchain solutions to the mainstream.

    - - - -

    Signaling a new era of trustless cross-chain communication, this NEAR-Wormhole integration will be explored through the NEAR <> ETH corridor and the promise of Zero-Knowledge bridging.

    - - - -

    Wormhole: the key to NEAR’s vision of a multi-chain Web3

    - - - -

    Wormhole is forging its place in crypto as the industry-standard cross-chain messaging protocol, reliably facilitating transfers exceeding $35 billion dollars via countless cross-chain messages. In this integration, Wormhole’s role is vital, employing its advanced technology to connect the NEAR ecosystem with over 20 other high-value blockchain networks.

    - - - -

    The integration enables synergy of  Wormhole Connect’s technology with NEAR’s Blockchain Operating System (BOS) to enhance developer access to multiple chains and diverse liquidity. It will also serve to break down barriers for casual users, blending complex blockchain tech with a user-friendly experience.

    - - - -

    Moreover, Wormhole’s integration with NEAR’s BOS presents a significant opportunity for businesses using NEAR. This collaboration simplifies multi-chain interaction and introduces Zero-Knowledge proofs, making it easier for businesses to fully utilize blockchain technology in a straightforward and accessible manner.

    - - - -

    Wormhole’s NEAR <> ETH corridor opens opportunities 

    - - - -

    Born from this integration is the trustless NEAR <> ETH corridor, an innovation powered by Wormhole and secured by Zero-Knowledge (ZK) Proofs. This marks a shift from NEAR’s traditional Rainbow Bridge, introducing seamless integration of NEAR assets with Wormhole-linked chains.

    - - - -

    The NEAR <> ETH corridor represents a new class of zk-enabled bridges, offering heightened interconnectedness between the NEAR ecosystem and a multitude of Wormhole-facilitated applications. This trustless corridor is poised to catalyze more efficient and secure transactions, symbolizing a substantial stride toward a fully interoperable Web3 ecosystem.

    - - - -

    Making tomorrow’s crypto-verse trustless and ZK-based

    - - - -

    The NEAR and Wormhole integration isn’t just a stride toward the future — it’s a giant leap toward a new era powered by ZK Proofs. As part of the integration work, developers are building the first ZK light clients, which will play a crucial role in supporting the trustless NEAR <> ETH corridor.

    - - - -

    ZK light clients promise to revolutionize the bridging experience, discarding the need for trust assumptions and external validation. By offloading most of the computational load to an off-chain entity, these clients optimize storage and compute resources, paving the way for a streamlined and efficient bridging process. This innovation is set to redefine the standards of security and reliability in the blockchain sector.

    - - - -

    The integration between NEAR and Wormhole is a decisive step towards a future where cross-chain communication is seamless, secure, and trustless. It’s a future that opens up new horizons for developers and users alike, offering improved interoperability and accessibility. 

    - - - -

    With Wormhole, NEAR citizens can engage and interact with other chains in a blink of an eye.

    -

    The post NEAR Integrates Wormhole to Launch ZK-Enabled Cross-Chain Communication with Ethereum  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/zero-knowledge/index.html b/public/blog/tag/zero-knowledge/index.html deleted file mode 100644 index f7aba8b02..000000000 --- a/public/blog/tag/zero-knowledge/index.html +++ /dev/null @@ -1,2 +0,0 @@ -Zero-Knowledge Archives – NEAR Protocol \ No newline at end of file diff --git a/public/blog/tag/zk-proofs/feed/index.xml b/public/blog/tag/zk-proofs/feed/index.xml deleted file mode 100644 index 52f46b523..000000000 --- a/public/blog/tag/zk-proofs/feed/index.xml +++ /dev/null @@ -1,114 +0,0 @@ - - - - ZK Proofs Archives – NEAR Protocol - - /blog/tag/zk-proofs/ - - Wed, 17 May 2023 15:43:29 +0000 - en-US - - hourly - - 1 - https://wordpress.org/?v=6.4.3 - - - https://pages.near.org/wp-content/uploads/2020/09/cropped-favicon-32x32.png - ZK Proofs Archives – NEAR Protocol - /blog/tag/zk-proofs/ - 32 - 32 - - - NEAR Integrates Wormhole to Launch ZK-Enabled Cross-Chain Communication with Ethereum  - /blog/near-integrates-wormhole-to-launch-zk-enabled-cross-chain-communication-with-ethereum/ - - - Tue, 16 May 2023 15:00:00 +0000 - - - - - /?p=20492 - - Driving the evolution of Web3 through innovation and interoperability, bridging technology has become a critical factor in user adoption and …

    -

    The post NEAR Integrates Wormhole to Launch ZK-Enabled Cross-Chain Communication with Ethereum  appeared first on NEAR Protocol.

    -]]>
    - Driving the evolution of Web3 through innovation and interoperability, bridging technology has become a critical factor in user adoption and functionality. NEAR Foundation has chosen to bolster its multi-chain interoperability by integrating with Wormhole, harnessing the power of cutting-edge Zero-Knowledge (ZK) light clients. 

    - - - -

    This strategic move revolutionizes secure Web3 application communication, unlocking vast potential across diverse sectors including DeFi, NFTs, and governance. The integration represents a tangible stride towards a less abstract and more interconnected, trustless Web3. By incorporating Wormhole’s technology, NEAR Foundation envisions a practical shift where cross-chain transactions become efficient, secure, and user-friendly.

    - - - -

    NEAR’s unique position as a developer-friendly platform amplifies the impact of this integration, driving the adoption of Zero-Knowledge technology to a wider audience. The NEAR Foundation is not just creating a world of possibility but is actively building it, bringing advanced blockchain solutions to the mainstream.

    - - - -

    Signaling a new era of trustless cross-chain communication, this NEAR-Wormhole integration will be explored through the NEAR <> ETH corridor and the promise of Zero-Knowledge bridging.

    - - - -

    Wormhole: the key to NEAR’s vision of a multi-chain Web3

    - - - -

    Wormhole is forging its place in crypto as the industry-standard cross-chain messaging protocol, reliably facilitating transfers exceeding $35 billion dollars via countless cross-chain messages. In this integration, Wormhole’s role is vital, employing its advanced technology to connect the NEAR ecosystem with over 20 other high-value blockchain networks.

    - - - -

    The integration enables synergy of  Wormhole Connect’s technology with NEAR’s Blockchain Operating System (BOS) to enhance developer access to multiple chains and diverse liquidity. It will also serve to break down barriers for casual users, blending complex blockchain tech with a user-friendly experience.

    - - - -

    Moreover, Wormhole’s integration with NEAR’s BOS presents a significant opportunity for businesses using NEAR. This collaboration simplifies multi-chain interaction and introduces Zero-Knowledge proofs, making it easier for businesses to fully utilize blockchain technology in a straightforward and accessible manner.

    - - - -

    Wormhole’s NEAR <> ETH corridor opens opportunities 

    - - - -

    Born from this integration is the trustless NEAR <> ETH corridor, an innovation powered by Wormhole and secured by Zero-Knowledge (ZK) Proofs. This marks a shift from NEAR’s traditional Rainbow Bridge, introducing seamless integration of NEAR assets with Wormhole-linked chains.

    - - - -

    The NEAR <> ETH corridor represents a new class of zk-enabled bridges, offering heightened interconnectedness between the NEAR ecosystem and a multitude of Wormhole-facilitated applications. This trustless corridor is poised to catalyze more efficient and secure transactions, symbolizing a substantial stride toward a fully interoperable Web3 ecosystem.

    - - - -

    Making tomorrow’s crypto-verse trustless and ZK-based

    - - - -

    The NEAR and Wormhole integration isn’t just a stride toward the future — it’s a giant leap toward a new era powered by ZK Proofs. As part of the integration work, developers are building the first ZK light clients, which will play a crucial role in supporting the trustless NEAR <> ETH corridor.

    - - - -

    ZK light clients promise to revolutionize the bridging experience, discarding the need for trust assumptions and external validation. By offloading most of the computational load to an off-chain entity, these clients optimize storage and compute resources, paving the way for a streamlined and efficient bridging process. This innovation is set to redefine the standards of security and reliability in the blockchain sector.

    - - - -

    The integration between NEAR and Wormhole is a decisive step towards a future where cross-chain communication is seamless, secure, and trustless. It’s a future that opens up new horizons for developers and users alike, offering improved interoperability and accessibility. 

    - - - -

    With Wormhole, NEAR citizens can engage and interact with other chains in a blink of an eye.

    -

    The post NEAR Integrates Wormhole to Launch ZK-Enabled Cross-Chain Communication with Ethereum  appeared first on NEAR Protocol.

    -]]>
    - - - -
    -
    -
    diff --git a/public/blog/tag/zk-proofs/index.html b/public/blog/tag/zk-proofs/index.html deleted file mode 100644 index 96b73d542..000000000 --- a/public/blog/tag/zk-proofs/index.html +++ /dev/null @@ -1,2 +0,0 @@ -ZK Proofs Archives – NEAR Protocol \ No newline at end of file diff --git "a/public/blog/\321\203\320\275\321\226\320\272\320\260\320\273\321\214\320\275\320\260-\320\274\320\276\320\266\320\273\320\270\320\262\321\226\321\201\321\202\321\214-\320\264\320\273\321\217-\321\203\320\272\321\200\320\260\321\227\320\275\321\206\321\226\320\262-\320\261/index.html" "b/public/blog/\321\203\320\275\321\226\320\272\320\260\320\273\321\214\320\275\320\260-\320\274\320\276\320\266\320\273\320\270\320\262\321\226\321\201\321\202\321\214-\320\264\320\273\321\217-\321\203\320\272\321\200\320\260\321\227\320\275\321\206\321\226\320\262-\320\261/index.html" deleted file mode 100644 index 8da759667..000000000 --- "a/public/blog/\321\203\320\275\321\226\320\272\320\260\320\273\321\214\320\275\320\260-\320\274\320\276\320\266\320\273\320\270\320\262\321\226\321\201\321\202\321\214-\320\264\320\273\321\217-\321\203\320\272\321\200\320\260\321\227\320\275\321\206\321\226\320\262-\320\261/index.html" +++ /dev/null @@ -1,2 +0,0 @@ -Унікальна можливість для українців: Безкоштовні квитки на NEARCON ‘23 – NEAR Protocol

    Унікальна можливість для українців: Безкоштовні квитки на NEARCON ‘23

    NEAR Foundation
    October 5, 2023

    NEARCON ’23 – це багатоденна конференція, яка збирає найяскравіших представників блокчейн-індустрії з усього світу. Це місце, де ви зможете почути найсвіжіші ідеї, познайомитися зі світовими експертами та знайти натхнення для вашої майбутньої кар’єри. NEARCON ’23 пропонує широкий спектр тематик, включаючи штучний інтелект, кібербезпеку, блокчейн, веб-розробку та багато іншого.

    Як невеликий акт солідарності, NEAR Foundation пропонує обмежену кількість БЕЗКОШТОВНИХ квитків для українців, які живуть у Португалії чи Іспанії, на NEARCON ‘23, що відбудеться в Лісабоні з 7 по 10 листопада.

    Це неймовірна можливість познайомитися зі світом Web3, розширити свої знання та знайти нові можливості для кар’єрного зростання. Не пропустіть цю унікальну можливість та отримайте безкоштовний квиток на NEARCON ’23 вже сьогодні!

    Що таке NEARCON?

    Ті, хто не знайомі з Web3, можуть не бути обізнані, що NEAR – це блокчейн, екосистема та міжнародна спільнота розробників, підприємців, фаундерів і провідних фігур у сфері децентралізації. 

    NEARCON – це основна щорічна подія для NEAR. Кожного року спільнота NEAR збирається, щоб слухати, навчатися, спілкуватися та розробляти надихаючі ідеї для майбутнього. 

    NEARCON – це найкраща освіта в галузі Web3! Як провідний децентралізований проект у світі, NEAR прагне привернути та надихати наступне покоління талантів Web3 з обмеженою кількістю безкоштовних місць.

    Що ви дізнаєтесь на NEARCON 2023

    Web3 складається з кількох ключових ролей і секторів, і на NEARCON ‘23 ми матимемо можливість почути виступи та взяти участь у панельних дискусіях із провідними фігурами в галузі Web3. 

    На NEARCON будуть обговорюватися такі теми як Open Web, де використовуються технології з відкритим кодом, включаючи NEAR. Також буде розглядатися взаємодія блокчейну та штучного інтелекту сьогодні та їхні перспективи в майбутньому, а також роль NEAR Digital Collective у децентралізації управління NEAR. Крім того, будуть поширені оновлення щодо регулювання та політики в сфері Web3.

    Як отримати безкоштовний квиток на NEARCON ‘23

    Отримати безкоштовні квиток на NEARCON ‘23 просто! 

    Основні вимоги включають:

    • Ви є українцем, що тимчасово проживає в Іспанії/Португалії
    • Ваш вік більше за 18 років
    • Ви можете відвідати подію особисто в Лісабоні з 7 по 10 листопада

    Щоб отримати безкоштовний квиток на NEARCON ’23, переходьте за посиланням, заповніть форму аплікації. Вас буде перенаправлено до завершення оплати, де ви введете код знижки «UKFRENSNCON». Ви отримаєте квитанцію на ваш імейл, і квиток буде надіслано вам пізніше перед NEARCON ‘23.


    Share this:

    Join the community:

    Follow NEAR:

    More posts

    \ No newline at end of file diff --git a/src/pages/blog/[[...pages]].tsx b/src/pages/blog/[[...pages]].tsx deleted file mode 100644 index 0b5d62e63..000000000 --- a/src/pages/blog/[[...pages]].tsx +++ /dev/null @@ -1,69 +0,0 @@ -import type { GetServerSideProps } from 'next'; -import { useCallback, useEffect } from 'react'; - -import { VmComponent } from '@/components/vm/VmComponent'; -import { useBosComponents } from '@/hooks/useBosComponents'; -import { useClearCurrentComponent } from '@/hooks/useClearCurrentComponent'; -import { useCookiePreferences } from '@/hooks/useCookiePreferences'; -import { useDefaultLayout } from '@/hooks/useLayout'; -import { recordHandledError } from '@/utils/analytics'; -import type { NextPageWithLayout } from '@/utils/types'; - -export const getServerSideProps = (async ({ resolvedUrl }) => { - const isProd = ['https://near.org', 'https://dev.near.org'].some((url) => process.env.NEXT_PUBLIC_HOSTNAME === url); - const blog_branch = isProd ? 'main' : 'develop'; - const blogParts = resolvedUrl.split('blog/'); - let title = 'index.html'; - if (blogParts[1] !== title) { - title = `${blogParts[1].substring(0, blogParts[1].indexOf('/'))}/index.html`; - } - const res = await fetch( - `https://raw.githubusercontent.com/near/nearorg_marketing/${blog_branch}/public/blog/${title}`, - ).catch((e) => { - recordHandledError({ title, message: 'failed to fetch github blog html for requested title' }); - throw e; - }); - - const __html = await (await res.blob()).text(); - - return { props: { bloghtml: { __html } } }; -}) satisfies GetServerSideProps<{ bloghtml: any }>; - -const StaticBlogPage: NextPageWithLayout = (props) => { - useClearCurrentComponent(); - const cookieData = useCookiePreferences(); - const components = useBosComponents(); - - const onBlogLinkClick = useCallback((event: any) => { - const url = event.target.href; - if (url) { - event.preventDefault(); - window.location = url; - } - }, []); - - useEffect(() => { - //this query fetches almost all links, except the clickable elements that are children of a tags - // like document.querySelectorAll("h3[class^='headline_type-4']") - document.querySelectorAll("a[href^='/blog").forEach((element) => { - element.addEventListener('click', onBlogLinkClick); - }); - - return () => { - document.querySelectorAll("a[href^='/blog").forEach((element) => { - element.removeEventListener('click', onBlogLinkClick); - }); - }; - }, [onBlogLinkClick]); - - return ( - <> -
    - - - ); -}; - -StaticBlogPage.getLayout = useDefaultLayout; - -export default StaticBlogPage; From 0629d85920a17bed933ad38770e05b40bfeef44f Mon Sep 17 00:00:00 2001 From: Dmitriy Date: Thu, 27 Jun 2024 20:57:32 +0200 Subject: [PATCH 3/4] chore: attemp to fit search in sidebar --- src/components/layouts/DefaultLayout.tsx | 4 +- .../LargeScreenProfileDropdown.tsx | 2 +- src/components/sidebar-navigation/Search.tsx | 18 +++ src/components/sidebar-navigation/Sidebar.tsx | 13 ++ src/components/sidebar-navigation/styles.ts | 142 +++++++++++++++++- 5 files changed, 172 insertions(+), 7 deletions(-) create mode 100644 src/components/sidebar-navigation/Search.tsx diff --git a/src/components/layouts/DefaultLayout.tsx b/src/components/layouts/DefaultLayout.tsx index f24a7e501..77057f3c5 100644 --- a/src/components/layouts/DefaultLayout.tsx +++ b/src/components/layouts/DefaultLayout.tsx @@ -4,7 +4,7 @@ import styled from 'styled-components'; import { BosLoaderBanner } from '../BosLoaderBanner'; import { MarketingNavigation } from '../marketing-navigation/MarketingNavigation'; import { useSidebarLayoutEnabled } from '../sidebar-navigation/hooks'; -import { LargeScreenHeader } from '../sidebar-navigation/LargeScreenHeader'; +// import { LargeScreenHeader } from '../sidebar-navigation/LargeScreenHeader'; import { SidebarNavigation } from '../sidebar-navigation/SidebarNavigation'; import { useNavigationStore } from '../sidebar-navigation/store'; import { SMALL_SCREEN_LAYOUT_MAX_WIDTH } from '../sidebar-navigation/utils'; @@ -70,7 +70,7 @@ export function DefaultLayout({ children }: Props) { {sidebarLayoutEnabled ? : } - {sidebarLayoutEnabled && } + {/* {sidebarLayoutEnabled && } */} diff --git a/src/components/sidebar-navigation/LargeScreenProfileDropdown.tsx b/src/components/sidebar-navigation/LargeScreenProfileDropdown.tsx index 72eb3c74c..1f3718ad1 100644 --- a/src/components/sidebar-navigation/LargeScreenProfileDropdown.tsx +++ b/src/components/sidebar-navigation/LargeScreenProfileDropdown.tsx @@ -20,7 +20,7 @@ export const LargeScreenProfileDropdown = () => { }, [near]); return ( - + { + const components = useBosComponents(); + return ( + + + + ); +}; diff --git a/src/components/sidebar-navigation/Sidebar.tsx b/src/components/sidebar-navigation/Sidebar.tsx index 9828776a8..efbbc9aa4 100644 --- a/src/components/sidebar-navigation/Sidebar.tsx +++ b/src/components/sidebar-navigation/Sidebar.tsx @@ -3,6 +3,8 @@ import { useRouter } from 'next/router'; import { Tooltip } from '../lib/Tooltip'; import NearIconSvg from './icons/near-icon.svg'; +import { LargeScreenProfileDropdown } from './LargeScreenProfileDropdown'; +import { Search } from './Search'; import { useNavigationStore } from './store'; import * as S from './styles'; import { currentPathMatchesRoute } from './utils'; @@ -38,6 +40,13 @@ export const Sidebar = () => { + + + + + + + @@ -147,6 +156,10 @@ export const Sidebar = () => { + + + + ); diff --git a/src/components/sidebar-navigation/styles.ts b/src/components/sidebar-navigation/styles.ts index ed91c7b63..dcd5e337a 100644 --- a/src/components/sidebar-navigation/styles.ts +++ b/src/components/sidebar-navigation/styles.ts @@ -657,13 +657,23 @@ export const LargeScreenHeader = styled.header<{ } `; -export const LargeScreenHeaderActionWrapper = styled.div` +export const LargeScreenHeaderActionWrapper = styled.div<{ + $width?: string; + $alignItems?: string; + $justifyContent?: string; +}>` margin-left: -2px; display: flex; height: 40px; - width: 40px; - align-items: center; - justify-content: center; + width: ${(p) => p.$width ?? '40px'}; + align-items: ${(p) => p.$alignItems ?? 'center'}; + justify-content: ${(p) => p.$justifyContent ?? 'center'}; + + @media (max-width: ${SMALL_SCREEN_LAYOUT_MAX_WIDTH}px) { + .profile-dropdown-name { + display: none; + } + } `; export const LargeScreenHeaderNameWrapper = styled.div` @@ -872,3 +882,127 @@ export const Drawer = styled.div<{ `} } `; + +export const ProfileDropdownSection = styled(Section)<{ + $expanded: boolean; +}>` + @media (min-width: ${SMALL_SCREEN_LAYOUT_MAX_WIDTH}px) { + ${(p) => + p.$expanded + ? css` + .profile-dropdown-name { + visibility: visible; + } + ` + : css` + .profile-dropdown-name { + visibility: hidden; + } + `} + } + @media (max-width: ${SMALL_SCREEN_LAYOUT_MAX_WIDTH}px) { + display: none; + } +`; + +export const SearchSection = styled(Section)<{ + $expanded: boolean; +}>` + @media (min-width: ${SMALL_SCREEN_LAYOUT_MAX_WIDTH}px) { + ${(p) => + p.$expanded + ? css` + ${SearchIconWrapper} { + display: none; + } + ${SearchWrapper} { + display: block; + } + ` + : css` + ${SearchIconWrapper} { + display: block; + } + ${SearchWrapper} { + display: none; + } + `} + } + @media (max-width: ${SMALL_SCREEN_LAYOUT_MAX_WIDTH}px) { + display: none; + } +`; + +export const SearchWrapper = styled.div` + width: 100%; + height: 40px; + + > div, + > div > label, + > div > label > div { + height: 100%; + } +`; + +export const SearchIconWrapper = styled.div<{ + $expanded: boolean; +}>` + all: unset; + display: flex; + align-items: center; + gap: 0.5rem; + color: var(--sand11); + font-size: 0.875rem; + line-height: 1.2; + letter-spacing: 0.28px; + text-decoration: none !important; + white-space: nowrap; + cursor: pointer; + transition: all 150ms; + + &:hover { + color: var(--sand12); + + i { + background: var(--sand3); + } + } + + &:focus-visible { + i { + --outline-color: var(--violet5); + --outline-width: 2px; + } + } + + i { + --outline-width: 1px; + --outline-color: var(--sand6); + outline: var(--outline-width) solid var(--outline-color); + outline-offset: calc(var(--outline-width) * -1); + display: flex; + align-items: center; + justify-content: center; + color: currentColor; + font-size: 1.25rem; + border-radius: 4px; + width: 2.25rem; + height: 2.25rem; + flex-shrink: 0; + background: var(--white); + transition: all 150ms, outline 0ms; + } + + ${(p) => + p.$expanded + ? css` + // font-weight: 600; + // color: var(--sand12); + i { + // --outline-color: var(--sand12) !important; + // --outline-width: 2px; + } + ` + : undefined} + } +`; From d86899f46e58e1436503d07159e266c4bb958079 Mon Sep 17 00:00:00 2001 From: Dmitriy Date: Fri, 28 Jun 2024 18:22:56 +0200 Subject: [PATCH 4/4] fix: error for non-logged in users --- src/components/sidebar-navigation/Sidebar.tsx | 22 ++++++++++++++++++- src/components/sidebar-navigation/styles.ts | 11 +++++----- 2 files changed, 27 insertions(+), 6 deletions(-) diff --git a/src/components/sidebar-navigation/Sidebar.tsx b/src/components/sidebar-navigation/Sidebar.tsx index efbbc9aa4..f0e236e43 100644 --- a/src/components/sidebar-navigation/Sidebar.tsx +++ b/src/components/sidebar-navigation/Sidebar.tsx @@ -1,6 +1,9 @@ import Image from 'next/image'; import { useRouter } from 'next/router'; +import { useSignInRedirect } from '@/hooks/useSignInRedirect'; +import { useAuthStore } from '@/stores/auth'; + import { Tooltip } from '../lib/Tooltip'; import NearIconSvg from './icons/near-icon.svg'; import { LargeScreenProfileDropdown } from './LargeScreenProfileDropdown'; @@ -17,6 +20,14 @@ export const Sidebar = () => { const toggleExpandedSidebar = useNavigationStore((store) => store.toggleExpandedSidebar); const handleBubbledClickInSidebar = useNavigationStore((store) => store.handleBubbledClickInSidebar); const tooltipsDisabled = isSidebarExpanded; + const signedIn = useAuthStore((store) => store.signedIn); + const { requestAuthentication } = useSignInRedirect(); + + const handleCreateAccount = () => { + requestAuthentication(true); + }; + + console.log('signedIn: ', signedIn); const isNavigationItemActive = (route: string | string[], exactMatch = false) => { if (expandedDrawer) return false; @@ -158,7 +169,16 @@ export const Sidebar = () => { - + {signedIn ? ( + + ) : ( + + + + Sign-up or Login + + + )} diff --git a/src/components/sidebar-navigation/styles.ts b/src/components/sidebar-navigation/styles.ts index dcd5e337a..c2f611717 100644 --- a/src/components/sidebar-navigation/styles.ts +++ b/src/components/sidebar-navigation/styles.ts @@ -231,7 +231,7 @@ export const LoginItem = styled.button<{ display: flex; align-items: center; gap: 0.5rem; - color: var(--violet11); + color: var(--sand11); font-size: 0.875rem; line-height: 1.2; letter-spacing: 0.28px; @@ -241,10 +241,10 @@ export const LoginItem = styled.button<{ transition: all 150ms; &:hover { - color: var(--violet12); + color: var(--sand12); i { - background: var(--violet3); + background: var(--sand3); } ${NavigationItemThumbnail} { @@ -262,13 +262,13 @@ export const LoginItem = styled.button<{ i { --outline-width: 1px; - --outline-color: var(--violet8); + --outline-color: var(--sand6); outline: var(--outline-width) solid var(--outline-color); outline-offset: calc(var(--outline-width) * -1); display: flex; align-items: center; justify-content: center; - color: var(--violet8); + color: currentColor; font-size: 1.25rem; border-radius: 4px; width: 2.25rem; @@ -282,6 +282,7 @@ export const LoginItem = styled.button<{ overflow: hidden; text-overflow: ellipsis; transition: all var(--sidebar-expand-transition-speed); + font-weight: 600; } ${(p) =>