{"id":13756747,"url":"https://github.com/CityOfZion/neo-storm","last_synced_at":"2025-05-10T04:30:54.957Z","repository":{"id":57494127,"uuid":"145393205","full_name":"CityOfZion/neo-storm","owner":"CityOfZion","description":"Smart contract framework for the NEO smart economy written in the Go programming language.","archived":false,"fork":false,"pushed_at":"2019-08-27T06:06:42.000Z","size":132,"stargazers_count":38,"open_issues_count":15,"forks_count":10,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-04-02T13:11:12.677Z","etag":null,"topics":["blockchain","neo","smart-contracts","virtual-machine","vm"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CityOfZion.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-20T09:04:27.000Z","updated_at":"2024-07-09T09:50:59.000Z","dependencies_parsed_at":"2022-09-02T06:12:24.097Z","dependency_job_id":null,"html_url":"https://github.com/CityOfZion/neo-storm","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CityOfZion%2Fneo-storm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CityOfZion%2Fneo-storm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CityOfZion%2Fneo-storm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CityOfZion%2Fneo-storm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CityOfZion","download_url":"https://codeload.github.com/CityOfZion/neo-storm/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253365186,"owners_count":21897180,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blockchain","neo","smart-contracts","virtual-machine","vm"],"created_at":"2024-08-03T11:00:52.702Z","updated_at":"2025-05-10T04:30:54.560Z","avatar_url":"https://github.com/CityOfZion.png","language":"Go","funding_links":[],"categories":["Smart Contract Development"],"sub_categories":["Go"],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg\n    src=\"http://res.cloudinary.com/vidsy/image/upload/v1503160820/CoZ_Icon_DARKBLUE_200x178px_oq0gxm.png\"\n    width=\"125px\"\n  \u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eneo-storm\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n    Smart contract framework for the NEO smart economy written in the Go programming language.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/CityOfZion/neo-storm/releases\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/tag/CityOfZion/neo-storm.svg?style=flat\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://circleci.com/gh/CityOfZion/neo-storm/tree/master\"\u003e\n    \u003cimg src=\"https://circleci.com/gh/CityOfZion/neo-storm/tree/master.svg?style=shield\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n# Overview\n- Golang to NVM bytecode compiler\n- NEO Virtual machine\n- Smart contract debugger\n- Private network for quickly deploying and testing smart contracts\n- Tooling for deploying smart contracts in production environments\n- Package manager for smart contract modules that are written in Go\n\n# Installation\nThe following section will help you with installing neo-storm and it's dependencies. \n\n[**A very in-depth tutorial about how to get started with neo-storm can be found here**](https://medium.com/@likkee.chong/neo-token-contract-nep-5-in-go-f6b0102c59ee)\n\n## Project dependencies\n### Golang\nneo-storm requires a working and proper ***Golang*** installation. To install Golang you can check out these [installation instructions](https://golang.org/doc/install).\n\n### Godep\nFor package management neo-storm uses ***dep***. To install dep you can check out these [installations instructions](https://github.com/golang/dep).\n\n# Installing the neo-storm framework\n### Unix\n`neo-storm` uses [dep](https://github.com/golang/dep) as its dependency manager. After installing `dep` you can run:\n```\nmake install\n```\n\nAfter the installation is completed, you can find the binary in `bin/neo-storm` or globally use `neo-storm`.\n\n# Getting started\nLot's of **examples contracts** can be found in the [examples folder](https://github.com/CityOfZion/neo-storm/tree/master/examples).\n\n### Create a new smart contract\nTo create a new smart contract you can run the `init` command:\n```\nneo-storm init --name mycontract\n```\n\nThis will generate a folder called `mycontract` with a `main.go` file in the root directory.\n\nThe folder structure will look like this:\n```\n- mycontract\n    - main.go\n```\n\nAnd will produce the following `main.go` file in the root of the directory:\n```\npackage mycontract\n\nimport \"github.com/CityOfZion/neo-storm/interop/runtime\"\n\nfunc Main(op string, args []interface{}) {\n    runtime.Notify(\"Hello world!\")\n}\n```\n\n### Compiling smart contracts\nTo compile a smart contract you can run the `compile` command:\n```\nneo-storm compile -i path/to/file.go\n```\nThis will output an `.avm` file in the same directory you executed this command in.\n\nYou can change location directory of the output file by adding the `-o, --out` flag.\n```\nneo-storm compile -i path/to/file.go -o path/to/file.avm\n```\n\n# Tutorials\n- [Step-by-step guide on issuing your NEP-5 token on NEO’s Private net using Go](https://medium.com/@likkee.chong/neo-token-contract-nep-5-in-go-f6b0102c59ee)\n\n# Contributing\nFeel free to contribute to this project after reading the\n[contributing guidelines](https://github.com/CityOfZion/neo-storm/blob/master/CONTRIBUTING.md).\n\n# Contact\n- [@anthdm](https://github.com/anthdm) on Github\n- [@anthdm](https://twitter.com/anthdm) on Twitter\n- [@jeroenptrs](https://github.com/jeroenptrs) on Github\n- [@_jptrs](https://twitter.com/_jptrs) on Twitter\n- Reach out to us on the [NEO Discord](https://discordapp.com/invite/R8v48YA) channel\n- Send us an email: anthony@cityofzion.io\n\n# Licence\n- Open-source MIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCityOfZion%2Fneo-storm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FCityOfZion%2Fneo-storm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCityOfZion%2Fneo-storm/lists"}