Docs Category: 2.build

What is Data Infrastructure?

Login with NEARNEAR offers ready-to-use solutions to access and monitor on-chain data easily. This is very useful to automate actions based on specific events, cache data to reduce latency, gather usage data of the blockchain, and even study user preferences. In NEAR you will find three main solutions to access and monitor on-chain data: Data …

What is Data Infrastructure? Read More »

What are Primitives?

Login with NEARPrimitives are fundamental building blocks that can be combined to create a fully functional application. Blockchain primitives include Fungible Tokens (FT), Non Fungible Tokens (NFT), Decentralized Autonomous organizations (DAO), Link Drops and more. Fungible Tokens (FT) Fungible tokens represent an asset on a blockchain that is interchangeable. Besides the native NEAR token, users …

What are Primitives? Read More »

Authenticate NEAR Users

Login with NEARRecently NEAR has approved a new standard that, among other things, enables users to authenticate into a backend service. The basic idea is that the user will sign a challenge with their NEAR wallet, and the backend will verify the signature. If the signature is valid, then the user is authenticated. Backend Auth …

Authenticate NEAR Users Read More »

What are Web3 Apps?

Login with NEARWeb3 Applications – also known as decentralized apps (dApps) – leverage smart contracts and blockchain data to offer transparency, security and giving back control to users over their assets and data. NEAR simplifies building Web3 apps for the general public, making it easy to interact with different blockchains, while helping to onboard users …

What are Web3 Apps? Read More »

Hello WebApp

Login with NEARIn this guide we will show you how to quickly spin up a frontend where users can login using their wallets and interact with a contract. tip earching to integrate NEAR in your App? If you already have an application and want to integrate NEAR into it, we recommend you to first go …

Hello WebApp Read More »

Choose your Dev Environment

Login with NEARThe environments in which you can develop Components are divided into two categories: Web Tools: Online tools that allow you to quickly start building and sharing components. Local Tools: Tools that allow you to develop and test components locally. tip andling collaborations If you plan to collaborate with multiple people, we recommend you …

Choose your Dev Environment Read More »

What are NEAR Components?

Login with NEARNEAR Components are a new way to build web applications. They are composable, reusable and decentralized. tip ou can login to interact with the examples in this section. Familiar to Web Developers NEAR Components are built on top of React Components, meaning that they: Handle input through the props variable Handle state through …

What are NEAR Components? Read More »

Yield and Resume

Login with NEARNEAR smart contracts can yield execution, until an external service resumes them. In practice, the contract yields a cross-contract call to itself, until an external service executes a function and the contract decides to resume. This is a powerful feature that allows contracts to wait for external events, such as a response from …

Yield and Resume Read More »

SDK Types

Login with NEARLets discuss which types smart contracts use to input and output data, as well as how such data is stored and handled in the contract’s code. ### Native Types Smart contracts can receive, store and return data using JS native types: – `string` – `number` – `boolean` – `Array` – `Map` – `Object` …

SDK Types Read More »

Scroll to Top