# Make Ledger Entries
This is a helper for making account and deposit style ledger entry payloads. It can be used to create the JSON payload to `POST <env>-ows-ledger.theorchard.io/ledger/bulk`

## Getting started
1. Set up your virtualenv:
```sh
virtualenv -p python3 env
source env/bin/activate
pip3 install -r requirements.txt
```
2. Get your abacus_event_id ready.
3. Get your csv file ready. See `test_data.csv` for an example.
- Use uppercase for the header columns
- Use commas as a separator; do not include white space
4. Run it!
```
python3 main.py <abacus_event_id> <csv file> > output.json
```