Embrace the power of Web3
Develop, test and deploy contracts using the stack you already know and love
$> npx create-near-app@latest✅ What do you want to build? › A Smart Contract✅ Name your project to create a contract: hello-near✅ Success! Created 'hello-near', a smart contract in TypescriptBuild, test, and deploy the project using your package manager:* npm install* npm run build* npm run test
npx create-near-app@latest
import { NearBindgen, near, call, view } from 'near-sdk-js';@NearBindgen({})class HelloNear {greeting: string = 'Hello';static schema = { "greeting": "string" };@view({})get_greeting(): string {return this.greeting;}@call({})set_greeting({ greeting }: { greeting: string }): void {this.greeting = greeting;}}
Transactions
Avg. Block Time
Avg. Txn. Price
Awesome Apps
Find all the documentation, examples and tutorials you need to get started with Near
Reach out to our community and get support with any questions or issues
Explore a collection of tools and resources to enhance your Near development experience
Discover innovative apps built on Near, showcasing the power of decentralized technology
Join us at conferences, meetups, and workshops to connect with the Near community worldwide
Loading ...