An open API service indexing awesome lists of open source software.

https://github.com/forbole/bookkeeper

Bookkeeping for various blockchains. Support Cosmos, Substrate, Flow, Elrond and more
https://github.com/forbole/bookkeeper

Last synced: 10 months ago
JSON representation

Bookkeeping for various blockchains. Support Cosmos, Substrate, Flow, Elrond and more

Awesome Lists containing this project

README

          

# Bookkeeper

To start:

```bash
make install && bookkeeper --input_json_path

```

Which the json config file should follow the following schema:

```json

{
"chains":[
{"chain_type":"cosmos",
"details": [
{
"chain_name":"desmos",
"grpc_endpoint":,
"rpc_endpoint":,
"validators":[
{
"validator_address":,
"self_delegation_address":
}],
"fund_holding_account":[]
}
]
}
],
"email_details":{
"from":{
"name":,
"host":,
"password":,
"address":
},
"to":[],
"subject":"Monthy report from bookkeeper",
"details":"Enjoy"
}
}

```