-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #179 from Patrik-Stas/fix/assure-txs-listed
List transactions in UI based on basic 'serialized' tx representation
- Loading branch information
Showing
31 changed files
with
380 additions
and
207 deletions.
There are no files selected for viewing
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,20 @@ | ||
[ | ||
{ | ||
"id": "SOVRIN_BUILDERNET", | ||
"ui": { | ||
"priority": 1, | ||
"display": "BuilderNet", | ||
"display-long": "Sovrin BuilderNet", | ||
"description": "For active development of your solution.", | ||
"tutorial": "Get your DID and start writing on the network", | ||
"tutorial-link": "https://selfserve.sovrin.org/", | ||
"logo-address": "/static/sovrin.png" | ||
}, | ||
"aliases": [ | ||
"sovbuilder" | ||
], | ||
"es" : { | ||
"index": "txs-sovbuilder" | ||
} | ||
} | ||
] |
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,15 @@ | ||
{ | ||
"verbose": true, | ||
"ignore": ["node_modules", ".next"], | ||
"watch": ["src/**/*"], | ||
"ext": "js json", | ||
"env": { | ||
"ES_URL": "http://localhost:9200", | ||
"DAEMON_URL": "http://localhost:3709", | ||
"LOG_LEVEL": "info", | ||
"PORT" : 3708, | ||
"LOG_HTTP_REQUESTS" : true, | ||
"LOG_HTTP_RESPONSES" : true, | ||
"NETWORKS_CONFIG_PATH": "./app-config/sovrin-buildernet.json" | ||
} | ||
} |
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
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
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,25 @@ | ||
const SOCKETIO_EVENT = { | ||
LEDGER_TX_SCANNED: 'ledger-tx-scanned', | ||
LEDGER_TX_SCAN_SCHEDULED: 'ledger-tx-scan-scheduled', | ||
SCANNED_TX_PROCESSED: 'tx-processed', | ||
SCANNED_TX_PROCESSING_SCHEDULED: 'tx-rescan-scheduled' | ||
} | ||
|
||
const INTERNAL_EVENT = { | ||
TX_RESCAN_SCHEDULED: 'tx-rescan-scheduled', | ||
TX_NOT_AVAILABLE: 'tx-not-available', | ||
TX_PROCESSED: 'tx-processed', | ||
TX_RESOLUTION_ERROR: 'tx-resolution-error', | ||
TX_INGESTION_ERROR: 'tx-ingestion-error' | ||
} | ||
|
||
const OPERATION_TYPES = { | ||
LEDGER_CPY: 'ledgercpy', | ||
EXPANSION: 'expansion' | ||
} | ||
|
||
module.exports = { | ||
OPERATION_TYPES, | ||
INTERNAL_EVENT, | ||
SOCKETIO_EVENT | ||
} |
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
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
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
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.