NEO•ONE
The One for easy, fast, & fun NEO blockchain development
Get StartedTake Course >

Powerful

NEO•ONE makes coding, testing and deploying NEO dapps easy, fast, efficient and enjoyable.

The complete end-to-end framework offers effortless startup and empowers you with tooling every step of the way.

Intuitive

Write idiomatic TypeScript smart contracts that look, feel and work just like a normal TypeScript program.

Test smart contracts with familiar frameworks like Jest using the intuitive client APIs.

Approachable

NEO•ONE courses distill the essentials of dapp development into bite-sized interactive learning chapters. Build, test and write the UI for smart contracts with the NEO•ONE editor.

With the most comprehensive documentation available for NEO, you'll always have a resource to reference.

Try Now

Take NEO•ONE for a spin, right in your browser, no setup required! The example below implements a full token and ICO smart contract. Click "Run Tests" and you'll notice there's a failure. Try to fix it!
Learn everything from the fundamentals to advanced topics of NEO•ONE development with NEO•ONE Courses. We'll walk through building the contract below and more using the NEO•ONE Editor.
NEO•ONE

Authoring

Authoring smart contracts has never been easier. First class TypeScript integration means that smart contracts are strongly typed and will never leave you guessing at what's supported. Write idiomatic TypeScript with inline compiler diagnostics using the NEO•ONE TypeScript plugin.
import { withContracts } from '../generated/test';

describe('Token', () => {
  test('has name, symbol and decimals properties', async () => {
    await withContracts(async ({ token }) => {
      const [name, symbol, decimals] = await Promise.all([token.name(), token.symbol(), token.decimals()]);
      expect(name).toEqual('Eon');
      expect(symbol).toEqual('EON');
      expect(decimals.toNumber()).toEqual(8);
    });
  });
});

Testing

Test smart contracts with human-friendly NEO•ONE client APIs. Each test runs a fresh full node and comes with handy utilities to enable scenarios like fast forwarding the node's block time to a point in the future.

Developer Tools

NEO•ONE's Developer Tools makes developing a decentralized application easier, faster and much more satisfying. Developers can switch between preloaded local development wallets, fast forward the current block time, access links to a local NEO Tracker instance and more.
DOCS
InstallationMain ConceptsAdvanced GuidesAPI ReferenceContributing
CHANNELS
GitHubStack OverflowDiscord ChatTwitterYouTube
COPYRIGHT © 2021 NEO•ONE