Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/afilini/bip174.org
https://github.com/afilini/bip174.org
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/afilini/bip174.org
- Owner: afilini
- License: apache-2.0
- Created: 2020-12-18T21:51:14.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-20T09:34:07.000Z (11 months ago)
- Last Synced: 2024-10-12T20:35:27.685Z (about 1 month ago)
- Language: Rust
- Size: 948 KB
- Stars: 42
- Watchers: 6
- Forks: 3
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE_APACHE
Awesome Lists containing this project
README
# bip174.org
## About
[bip174.org](https://bip174.org) is a *Partially Signed Bitcoin Transaction* (aka PSBT) editor and explorer that runs in the browser. It's designed to help developers who work with PSBTs and might need to
either just see what's inside a PSBT or make changes to it.This repository contains the source code of the website: the web app is built in Rust using the [yew](https://yew.rs) framework.
### Build
When building for the first time, ensure to install dependencies first:
```
yarn install
```And then build in release mode with optimizations enabled:
```
yarn run build
```### Develop locally
To work locally you can compile the project in debug mode with a *watch* that automatically reloads the page after the code is changed. This command will do everything for you:
```
yarn run dev
```