NEAR

NEAR Developer Portal

Embrace the power of Web3

Building Contracts Has Never Been Easier

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 Typescript
Build, test, and deploy the project using your package manager:
* npm install
* npm run build
* npm run test
One Command Setup
npx create-near-app@latest
Easy to Read Contracts
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;
}
}
Start Now

Why choose NEAR?

2,33 B +

Transactions

1.30 s

Avg. Block Time

$ 0.01

Avg. Txn. Price

500 +

Awesome Apps

Resources

    Loading ...