https://github.com/wpdas/smart-contract-course
A simple project to demonstrate how to create a smart contract and publish it on the NEAR network. This is part of a course taught to the Nacif company team.
https://github.com/wpdas/smart-contract-course
Last synced: 18 days ago
JSON representation
A simple project to demonstrate how to create a smart contract and publish it on the NEAR network. This is part of a course taught to the Nacif company team.
- Host: GitHub
- URL: https://github.com/wpdas/smart-contract-course
- Owner: wpdas
- Created: 2025-11-28T05:56:19.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-11-28T05:58:39.000Z (7 months ago)
- Last Synced: 2025-11-30T16:22:46.172Z (7 months ago)
- Language: Rust
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# greeting-app
cargo-near-new-project-description
## How to Build Locally?
Install [`cargo-near`](https://github.com/near/cargo-near) and run:
```bash
cargo near build
```
## How to Test Locally?
```bash
cargo test
```
## How to Deploy?
Deployment is automated with GitHub Actions CI/CD pipeline.
To deploy manually, install [`cargo-near`](https://github.com/near/cargo-near) and run:
If you deploy for debugging purposes:
```bash
cargo near deploy build-non-reproducible-wasm
```
If you deploy production ready smart contract:
```bash
cargo near deploy build-reproducible-wasm
```
## Useful Links
- [cargo-near](https://github.com/near/cargo-near) - NEAR smart contract development toolkit for Rust
- [near CLI](https://near.cli.rs) - Interact with NEAR blockchain from command line
- [NEAR Rust SDK Documentation](https://docs.near.org/sdk/rust/introduction)
- [NEAR Documentation](https://docs.near.org)
- [NEAR StackOverflow](https://stackoverflow.com/questions/tagged/nearprotocol)
- [NEAR Discord](https://near.chat)
- [NEAR Telegram Developers Community Group](https://t.me/neardev)
- NEAR DevHub: [Telegram](https://t.me/neardevhub), [Twitter](https://twitter.com/neardevhub)