https://github.com/sandoche/nearwrite
NEARwrite is an experimental note taking app storing notes with encryption on NEAR Protocol and IPFS
https://github.com/sandoche/nearwrite
Last synced: about 2 months ago
JSON representation
NEARwrite is an experimental note taking app storing notes with encryption on NEAR Protocol and IPFS
- Host: GitHub
- URL: https://github.com/sandoche/nearwrite
- Owner: sandoche
- Created: 2022-07-27T14:39:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-08T09:49:44.000Z (about 3 years ago)
- Last Synced: 2025-01-11T20:41:54.986Z (9 months ago)
- Language: TypeScript
- Size: 974 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NEARwrite
> NEARwrite is an experimental note taking app storing notes with encryption on NEAR Protocol and IPFS
⚠️ We are currently usin near-sdk-js@next so we do not recommend to use this app in production
## Requirements
- near-cli `npm install -g near-cli`
## Installation
```sh
cd app
npm installcd ../contract
npm install
```## Development
### Frontend
```sh
cd app
npm run dev
```### Smart contract
```sh
cd contract
npm run build
npm run deploy
near call $contract_id init --accountId $contract_id --deposit 0.1
```