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
- Host: GitHub
- URL: https://github.com/forbole/bookkeeper
- Owner: forbole
- Created: 2022-03-21T10:42:27.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-06T17:32:39.000Z (almost 4 years ago)
- Last Synced: 2024-06-20T05:16:07.216Z (almost 2 years ago)
- Language: Go
- Homepage:
- Size: 312 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
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"
}
}
```