This repository has been archived by the owner on May 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
509 additions
and
35 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
host: null, | ||
port: null, | ||
log: { | ||
level: "info", | ||
filter: null, | ||
path: null | ||
}, | ||
|
||
// Settings for blockchain related function | ||
blockchain: { | ||
|
||
// Address to where web3js should connect to. Should be WS endpoint. | ||
provider: null, | ||
|
||
// Address of deployed pinning contract | ||
pinningContractAddress: null, | ||
|
||
// Starting block that upon first start of the service, will the blockchain be crawled for the past events. | ||
startingBlock: "genesis", | ||
|
||
// Specify behavior of EventsEmitter, that retrieves events from blockchain and pass them onwards for further processing. | ||
eventsEmitter: { | ||
// If to use polling strategy, if false then listening is used. | ||
polling: true, | ||
|
||
// Interval in milliseconds, how often is blockchain checked. | ||
pollingInterval: null, | ||
|
||
// Number of blocks that will be waited before passing an event for further processing. | ||
confirmations: 0 | ||
}, | ||
|
||
// Specify behavior of NewBlockEmitter, that detects new blocks on blockchain. | ||
newBlockEmitter: { | ||
// If to use polling strategy, if false then listening is used. | ||
polling: false, | ||
|
||
// Interval in milliseconds, how often is blockchain checked. | ||
pollingInterval: null | ||
} | ||
}, | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.