Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kanzure/webcashjs
Webcash is an experimental e-cash (electronic cash). See https://webcash.org/
https://github.com/kanzure/webcashjs
digital-currency ecash javascript typescript virtual-currency webcash
Last synced: 2 months ago
JSON representation
Webcash is an experimental e-cash (electronic cash). See https://webcash.org/
- Host: GitHub
- URL: https://github.com/kanzure/webcashjs
- Owner: kanzure
- Created: 2022-03-19T19:02:56.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T12:44:43.000Z (almost 2 years ago)
- Last Synced: 2024-09-16T23:28:39.103Z (3 months ago)
- Topics: digital-currency, ecash, javascript, typescript, virtual-currency, webcash
- Language: TypeScript
- Homepage:
- Size: 138 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Webcash
This is a webcash library for nodejs.
Webcash is an experimental new electronic cash ("e-cash") that enables decentralized and instant payments to anyone, anywhere in the world. Users send webcash to one another directly on a decentralized peer-to-peer basis by copying-and-pasting their webcash to their recipient. The central server helps webcash wallets detect double-spending and ensure the integrity of the monetary supply according to the supply schedule.
Navigate to https://webcash.org/ for more information, including the Terms of Service.
# Installation
```
npm install webcash
```# Usage
```
import { SecretWebcash, PublicWebcash } from "webcash"
```# Development
```
npm run test
npm run build
```