forked from sneurlax/bip48
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
and add reference to secp256k1 script
- Loading branch information
Showing
2 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,22 @@ | ||
# `BIP48` | ||
BIP-0048 "Multi-Script Hierarchy for Multi-Sig Wallets" for Dart. | ||
BIP-0048 "Multi-Script Hierarchy for Multi-Sig Wallets" for Dart. | ||
|
||
Used to derive "shared accounts" from Hierarchical Deterministic (HD) wallets. | ||
|
||
## Getting started | ||
```bash | ||
git clone https://github.com/ManyMath/bip48 | ||
cd bip48 | ||
dart pub get | ||
dart run coinlib:build_linux | ||
# Refer to | ||
# https://github.com/peercoin/coinlib/tree/master/coinlib#installation-and-usage | ||
# for build instructions for your platform. Basically, use | ||
# `dart run coinlib:build_platform` (select from: `linux`, `macos`, `windows`, | ||
# `windows_crosscompile`, or `wsl`). If these don't work, check for build | ||
# scripts for your platform in the `scripts` folder. | ||
dart test | ||
``` | ||
|
||
## Usage | ||
See the example and tests for usage. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters