Skip to content
This repository has been archived by the owner on Mar 2, 2023. It is now read-only.

Commit

Permalink
Beancounter v0.0.2
Browse files Browse the repository at this point in the history
Beancounter is a command line utility to audit the balance in cold and
gateway wallets. The tool derives receive and change addresses for a given wallet
and then connects to Electrum servers to fetch transactions and compute the final
balance.
  • Loading branch information
mbyczkowski committed Sep 27, 2018
0 parents commit 3cebcf3
Show file tree
Hide file tree
Showing 222 changed files with 43,425 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
tmp/
*.csv
10 changes: 10 additions & 0 deletions BUG-BOUNTY.md
@@ -0,0 +1,10 @@
Serious about security
======================

Square recognizes the important contributions the security research community
can make. We therefore encourage reporting security issues with the code
contained in this repository.

If you believe you have discovered a security vulnerability, please follow the
guidelines at <https://bugcrowd.com/squareopensource>.

18 changes: 18 additions & 0 deletions CONTRIBUTING.md
@@ -0,0 +1,18 @@
# Contributing

We appreciate your desire to contribute code to this repo. You may do so through GitHub
by forking the repository and sending a pull request.

When submitting code, please make every effort to follow existing conventions
and style in order to keep the code as readable as possible. Please also make
sure all tests pass.

Before your code can be accepted into the project you must also sign the
[Individual Contributor License Agreement (CLA)][1].

Pull requests need to be approved by two members of Square's security engineering team.

Commits are signed by Square's security engineers. Merges are signed by GitHub. Contributors
are not required to sign their commits.

[1]: https://spreadsheets.google.com/spreadsheet/viewform?formkey=dDViT2xzUHAwRkI3X3k5Z0lQM091OGc6MQ&ndplr=1
136 changes: 136 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions Gopkg.toml
@@ -0,0 +1,46 @@
# Gopkg.toml example
#
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[[constraint]]
branch = "master"
name = "github.com/btcsuite/btcd"

[[constraint]]
branch = "master"
name = "github.com/btcsuite/btcutil"

[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.2"

[[constraint]]
name = "gopkg.in/alecthomas/kingpin.v2"
version = "2.2.6"

[prune]
go-tests = true
unused-packages = true

0 comments on commit 3cebcf3

Please sign in to comment.