Archives: Docs

Docs

Protocol

Login with NEARThe RPC API enables you to retrieve the current genesis and protocol configuration. Genesis Config Returns current genesis configuration. method: EXPERIMENTAL_genesis_config params: none Example: “`json { “jsonrpc”: “2.0”, “id”: “dontcare”, “method”: “EXPERIMENTAL_genesis_config” } “` “`js const response = await near.connection.provider.experimental_genesisConfig(); “` “`bash http post https://rpc.testnet.near.org jsonrpc=2.0 id=dontcare method=EXPERIMENTAL_genesis_config “` Example response: “`json { …

Protocol Read More »

Tools

Login with NEARWelcome! The NEAR ecosystem has a complete set of tools for you to make the most out of the NEAR network. In this page you will find: Wallets to handle your assets. Explorers to quickly obtain information from the blockchain. Websites to simplify creating and participating on governance projects. Developer tools to deploy …

Tools Read More »

Skeleton and Rust Architecture

Login with NEARIn this article, you’ll learn about the basic architecture behind the NFT contract that you’ll develop while following this “Zero to Hero” series. You’ll discover the contract’s layout and you’ll see how the Rust files are structured in order to build a feature-complete smart contract. info Skeleton Contract You can find the skeleton …

Skeleton and Rust Architecture Read More »

Pre-deployed Contract

Login with NEARCreate your first non-fungible token by using a pre-deployed NFT smart contract which works exactly as the one you will build on this tutorial. Prerequisites To complete this tutorial successfully, you’ll need a NEAR Wallet and NEAR CLI Using the NFT contract Minting an NFT token on NEAR is a simple process that …

Pre-deployed Contract Read More »

NFT Zero to Hero

Login with NEARIn this 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 start by minting an NFT using a pre-deployed contract and by the end you’ll end up building a fully-fledged NFT smart contract that supports every extension. Prerequisites To …

NFT Zero to Hero Read More »

Scroll to Top