Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gcash/meep
Meep is a command line Bitcoin Cash script debugger
https://github.com/gcash/meep
Last synced: about 1 month ago
JSON representation
Meep is a command line Bitcoin Cash script debugger
- Host: GitHub
- URL: https://github.com/gcash/meep
- Owner: gcash
- License: mit
- Created: 2019-05-30T06:11:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-18T21:03:43.000Z (over 2 years ago)
- Last Synced: 2024-06-19T00:40:09.344Z (6 months ago)
- Language: Go
- Size: 99.6 KB
- Stars: 26
- Watchers: 5
- Forks: 6
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bitcoin-cash - meep - a command line Bitcoin Cash script debugger. (Bitcoin Script tools / R)
README
# meep
Meep is a command line Bitcoin Cash script debugger### Install
```
go get github.com/gcash/meep
```### Usage
```
Usage:
meep [OPTIONS] debug [debug-OPTIONS]Enter the script debugging mode
Application Options:
-v, --version Print the version number and exitHelp Options:
-h, --help Show this help message[debug command options]
-t, --tx= the full transaction hex or BCH mainnet txid. If only a txid is provided the
transaction will be looked up via the RPC server.
-i, --idx= the input index to debug
-a, --amt= the amount of the input (in satoshis) we're debugging. This can be omitted if the
transaction is in the BCH blockchain as it will be looked up via the RPC server.
-s, --pkscript= the input's scriptPubkey. This can be omitted if the transaction is in the BCH
blockchain as it will be looked up via the RPC server.
--rpcserver= A hostname:port for a gRPC API to use to fetch the transaction and scriptPubkey if
not providing through the options. (default: bchd.greyh.at:8335)```
### Examples
```
// P2PKH
meep debug --tx=048e890c1931a8c3f908d5826943c47021c5bfebc6c8ef96684207c53cfa7ea3// Tree signature
meep debug --tx=3332086562ccde663bec7928352098992b9e626bb8f1e95486d618219598c578// Last will
meep debug --tx=b0f79eea9e05fe83e198efff4363e3e347d5efd77a22fbf39a09347162fb2560
```