Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/likecoin/likecoin-prayer
LikeCoin batch transaction service used for automated payments
https://github.com/likecoin/likecoin-prayer
cosmos-sdk ethereum firebase likecoin web3
Last synced: 2 days ago
JSON representation
LikeCoin batch transaction service used for automated payments
- Host: GitHub
- URL: https://github.com/likecoin/likecoin-prayer
- Owner: likecoin
- License: gpl-3.0
- Created: 2018-03-29T12:45:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-01T21:15:08.000Z (about 1 year ago)
- Last Synced: 2024-05-07T12:02:58.146Z (6 months ago)
- Topics: cosmos-sdk, ethereum, firebase, likecoin, web3
- Language: JavaScript
- Homepage:
- Size: 2.37 MB
- Stars: 14
- Watchers: 9
- Forks: 3
- Open Issues: 67
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# likecoin-prayer
[![CircleCI](https://circleci.com/gh/likecoin/likecoin-prayer.svg?style=svg)](https://circleci.com/gh/likecoin/likecoin-prayer)
[![Greenkeeper badge](https://badges.greenkeeper.io/likecoin/likecoin-prayer.svg)](https://greenkeeper.io/)> A firestore based util for batching our payments, and praying for infura/ethereum network to handle them.
## Folder structure
```bash
├── config
│ ├── accounts.js # eth accounts for payment
│ ├── config.js # config file
│ └── serviceAccountKey.json # firestore crendentials
├── constant # constant
│ └── likecoin.js # LikeCoin contract for abi calls
├── util # helper functions
│ ├── firebase.js # firebase/firestore singleton/util
│ ├── gcloudPub.js # optional gcloud pubsub log
│ ├── logger.js # firestore tx logger for likecoin-tx-poll usage
│ ├── poller.js # firestore watcher for gas price update
│ └── web3.js # web3/tx related functions
└── index.js # main entry
```## Dev Setup
``` bash
# Remeber to setup accounts.js config.js and serviceAccountKey.json first!# install dependencies
npm install# run the program
npm start```