packages feed

burnt-explorer 0.1.0.0 → 0.1.1

raw patch · 2 files changed

+23/−2 lines, 2 files

Files

+ README.md view
@@ -0,0 +1,21 @@+# burnt-explorer++This unsophisticated application prints all [`OP_RETURN`](https://en.bitcoin.it/wiki/OP_RETURN) cryptocurrency transaction outputs in a given block range. Usage:++```+burnt-explorer <start height> <stop height>+```++You must have the `blackcoind` binary (name currently hard-coded) available in `$PATH`.++Output format is the following:++```+<transaction id> <vout index> <value> <script hex> <decoded script>+```++[`bitcoin-script` package](https://hackage.haskell.org/package/bitcoin-script) is used for decoding scripts.++## License++This software is licensed under under [the Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) (the “License”); you may not use this software except in compliance with the License. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License.
burnt-explorer.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                burnt-explorer-version:             0.1.0.0+version:             0.1.1 synopsis:            List OP_RETURN cryptocurrency transaction outputs. -- description: license:             Apache-2.0@@ -15,7 +15,7 @@ -- copyright: category:            Cryptocurrency build-type:          Simple--- extra-source-files:+extra-source-files:  README.md cabal-version:       >=1.10  executable burnt-explorer