-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ccmodel-hepheastus): add Hepheastus plugin
Implementation of the paper Hepheastus https://ieeexplore.ieee.org/document/10363680 Authored-by: Bruno Mateus <[email protected]> Co-authored-by: Rafael Belchior <[email protected]> Co-authored-by: Peter Somogyvari <[email protected]> Signed-off-by: Rafael Belchior <[email protected]> fix(ccmodel-hepheastus): incorporate PR feedback Authored-by: Bruno Mateus <[email protected]> Signed-off-by: Rafael Belchior <[email protected]> Signed-off-by: Peter Somogyvari <[email protected]>
- Loading branch information
Showing
37 changed files
with
8,066 additions
and
30 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 |
---|---|---|
|
@@ -37,7 +37,6 @@ | |
"ccid", | ||
"ccmodel", | ||
"cctx", | ||
"CCTX", | ||
"celo", | ||
"cids", | ||
"clazz", | ||
|
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,3 @@ | ||
cactus-openapi-spec-plugin-consortium-manual.json | ||
src/main/typescript/generated/openapi/typescript-axios/.npmignore | ||
src/test/ccLogs |
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,134 @@ | ||
# `@hyperledger/cactus-plugin-ccmodel-hephaestus` | ||
|
||
The package provides `Hyperledger Cacti` a way to generate process models from arbitrary cross-chain use cases. The implementation follows the paper [Hephaestus](https://www.techrxiv.org/doi/full/10.36227/techrxiv.20718058.v3). | ||
|
||
With this plugin it will be possible to generate cross-chain models from local transactions in different ledgers (currently supports Besu, Ethereum, and Fabric), realizing arbitrary cross-chain use cases and allowing operators to monitor their applications. | ||
Through monitoring, errors like outliers and malicious behavior can be identified, which can enable programmatically stopping attacks (circuit breaker), including bridge hacks. | ||
|
||
## Summary | ||
|
||
- [`@hyperledger/cactus-plugin-ccmodel-hephaestus`](#hyperledgercactus-plugin-ccmodel-hephaestus) | ||
- [Summary](#summary) | ||
- [Getting Started](#getting-started) | ||
- [Prerequisites](#prerequisites) | ||
- [Architecture](#architecture) | ||
- [RxJS Transaction Monitoring](#rxjs-transaction-monitoring) | ||
- [Cross-Chain Model Pipeline](#cross-chain-model-pipeline) | ||
- [PM4Py Overview](#pm4py-overview) | ||
- [Running the tests](#running-the-tests) | ||
- [Usage](#usage) | ||
- [Contributing](#contributing) | ||
- [License](#license) | ||
|
||
|
||
## Getting Started | ||
|
||
Clone the git repository on your local machine. Follow these instructions that will get you a copy of the project up and running on your local machine for development and testing purposes. | ||
|
||
### Prerequisites | ||
|
||
In the root of the project to install the dependencies execute the command: | ||
```sh | ||
npm run configure | ||
``` | ||
|
||
The plugin requires Python and packages for process mining functionality. Install the following prerequisites: | ||
1. Python 3.x and pip: | ||
```sh | ||
sudo apt install python3 python3-pip | ||
``` | ||
2. Required Python packages: | ||
```sh | ||
pip3 install pm4py pandas | ||
``` | ||
|
||
Know how to use the following plugins of the project: | ||
|
||
- [cactus-plugin-ledger-connector-besu](https://github.com/hyperledger/cactus/tree/main/packages/cactus-plugin-ledger-connector-besu) | ||
- [cactus-plugin-ledger-connector-ethereum](https://github.com/hyperledger/cactus/tree/main/packages/cactus-plugin-ledger-connector-ethereum) | ||
- [cactus-plugin-ledger-connector-fabric](https://github.com/hyperledger/cactus/tree/main/packages/cactus-plugin-ledger-connector-fabric) | ||
|
||
|
||
## Architecture | ||
|
||
### RxJS Transaction Monitoring | ||
|
||
This plugin utilizes RxJS (Reactive Extensions for JavaScript) to monitor transactions issued in Hyperledger Besu, Hyperledger Ethereum, and Hyperledger Fabric connectors. | ||
|
||
RxJS provides a powerful framework for asynchronous or callback-based code, each connector maintains an RxJS `ReplaySubject`, named `txSubject`, which acts as a message bus for emitting transaction data. | ||
|
||
- When a transaction is issued in a connector, the `ReplaySubject` stores the value it observes in an internal buffer. This observation is achieved by passing the value to its `next` method. | ||
- When a new subscriber subscribes to the `txSubject`, it synchronously emits all values in its buffer in a First-In-First-Out (FIFO) manner. This ensures that subscribers receive the most recent transactional data, regardless of when they subscribe. | ||
- The transactional data emitted includes essential information such as the transaction ID, timestamp, and other parameters, which are necessary for creating transaction receipts within the plugin. | ||
|
||
### Cross-Chain Model Pipeline | ||
|
||
The plugin employs a structured pipeline to create a cross-chain model from monitored connector transactions: | ||
|
||
1. **Transaction Emission**: Connectors issue local transactions against their respective target blockchains. Each transaction's data is emitted by the `txSubject` to the subscribers within our plugin. | ||
|
||
2. **Receipt Polling**: Upon receiving of transactional data, the plugin processes it into transaction receipts. This step involves precessing transactional information received such as transaction IDs, timestamps, and other parameters. | ||
|
||
3. **Cross-Chain Event Logging**: Processed receipts information can then be used to create cross-chain events, forming a cross-chain event log. | ||
|
||
4. **Cross-Chain Model**: The plugin uses the cross chain event log to create the cross-chain model with the information received from the connectors, using the Process Mining for Python (PM4PY) library. This model can then be used to verify new and unmodeled transactional information received from the connectors. | ||
|
||
### PM4Py Overview | ||
|
||
[PM4Py](https://pm4py.fit.fraunhofer.de/) is an open-source library designed for process mining, that provides tools to analyze and visualize business processes. | ||
With it we can generate process models from the event logs created from transactional data and compare event logs with process models to identify deviations. | ||
|
||
## Running the tests | ||
- **monitor-4-besu-events.test.ts**: Tests the plugin's ability to monitor, capture, and process the transactional data from besu connectors, and exports transactional data, in both CSV and JSON formats, as cross-chain event logs. | ||
- **monitor-4-ethereum-events.test.ts**: Tests the plugin's ability to monitor, capture, and process the transactional data from ethereum connectors, and exports transactional data, in both CSV and JSON formats, as cross-chain event logs. | ||
- **monitor-4-fabric-events.test.ts**: Tests the plugin's ability to monitor, capture, and process the transactional data from fabric connectors, and exports transactional data, in both CSV and JSON formats, as cross-chain event logs. | ||
- **cross-chain-model-serialization.test.ts**: Tests the plugin's ability to create the cross-chain model using the PM4PY (Process Mining for Python) library and save it serialized. | ||
- **cross-chain-model-conformance-checking.test.ts**: Tests the plugin's ability to check the conformity of unmodeled transactions against the cross-chain model using the PM4PY (Process Mining for Python) library. | ||
- **besu-ethereum-asset-transfer.test.ts**: Tests the plugin's ability to detect non-conformance in asset transactions across two ledgers. | ||
- **ethereum-fabric-asset-transfer.test.ts**: Tests the plugin's ability to detect non-conformance in asset transactions across two ledgers. | ||
- **fabric-besu-asset-transfer.test.ts**: Tests the plugin's ability to detect non-conformance in asset transactions across two ledgers. | ||
|
||
## Usage | ||
Let us consider two conectors: one connected to Hyperledger Besu and, and another connected to Hyperledger Ethereum. To monitor cross-chain transactions and create a cross-chain model we should follow the next steps. | ||
|
||
After instantiating the connectors, we instantiate the plugin as follows: | ||
```typescript | ||
let hephaestusOptions: IPluginCcModelHephaestusOptions; | ||
|
||
hephaestusOptions = { | ||
instanceId: randomUUID(), | ||
logLevel: logLevel, | ||
besuTxObservable: besuConnector.getTxSubjectObservable(), | ||
ethereumTxObservable: ethereumConnector.getTxSubjectObservable(), | ||
sourceLedger: LedgerType.Besu2X, | ||
targetLedger: LedgerType.Ethereum, | ||
}; | ||
hephaestus = new CcModelHephaestus(hephaestusOptions); | ||
``` | ||
|
||
We set the desired caseID and start monitoring transactions. These are then processed into cross-chain events when received and added to the cross-chain event log: | ||
|
||
```typescript | ||
hephaestus.setCaseId("Desired_CaseID"); | ||
hephaestus.monitorTransactions(); | ||
``` | ||
|
||
We can create the cross-chain model with events created from the transactional data captured: | ||
|
||
```typescript | ||
await hephaestus.createModel(); | ||
``` | ||
|
||
After creating a model with the desired event logs, we can turn off modeling so that newly received transactional data will be compared against the model through a conformance check: | ||
|
||
```typescript | ||
hephaestus.setIsModeling(false); | ||
``` | ||
|
||
## Contributing | ||
We welcome contributions to Hyperledger Cactus in many forms, and there’s always plenty to do! | ||
|
||
Please review [CONTIRBUTING.md](https://github.com/hyperledger/cactus/blob/main/CONTRIBUTING.md "CONTIRBUTING.md") to get started. | ||
|
||
## License | ||
This distribution is published under the Apache License Version 2.0 found in the [LICENSE ](https://github.com/hyperledger/cactus/blob/main/LICENSE "LICENSE ")file. |
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,99 @@ | ||
{ | ||
"name": "@hyperledger/cactus-plugin-ccmodel-hephaestus", | ||
"version": "2.1.0", | ||
"description": "A web service plugin that provides management capabilities on cross-chain transactions visualization.", | ||
"keywords": [ | ||
"Hyperledger", | ||
"Cactus", | ||
"Integration", | ||
"Blockchain", | ||
"Distributed Ledger Technology" | ||
], | ||
"homepage": "https://github.com/hyperledger/cacti#readme", | ||
"bugs": { | ||
"url": "https://github.com/hyperledger/cacti/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/hyperledger/cacti.git" | ||
}, | ||
"license": "Apache-2.0", | ||
"author": { | ||
"name": "Hyperledger Cactus Contributors", | ||
"email": "[email protected]", | ||
"url": "https://www.hyperledger.org/use/cacti" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Please add yourself to the list of contributors", | ||
"email": "[email protected]", | ||
"url": "https://example.com" | ||
}, | ||
{ | ||
"name": "Iulia Mihaiu" | ||
}, | ||
{ | ||
"name": "Sabrina Scuri" | ||
}, | ||
{ | ||
"name": "Rafael Belchior" | ||
}, | ||
{ | ||
"name": "Bruno Mateus" | ||
} | ||
], | ||
"main": "dist/lib/main/typescript/index.js", | ||
"module": "dist/lib/main/typescript/index.js", | ||
"browser": "dist/cactus-plugin-ccmodel-hephaestus.web.umd.js", | ||
"types": "dist/types/main/typescript/index.d.ts", | ||
"files": [ | ||
"dist/*" | ||
], | ||
"scripts": { | ||
"build": "npm run tsc", | ||
"tsc": "tsc --project ./tsconfig.json", | ||
"watch": "npm-watch", | ||
"webpack": "npm-run-all webpack:dev webpack:prod", | ||
"webpack:dev": "npm-run-all webpack:dev:node webpack:dev:web", | ||
"webpack:dev:node": "webpack --env=dev --target=node --config ../../webpack.config.js", | ||
"webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js", | ||
"webpack:prod": "npm-run-all webpack:prod:node webpack:prod:web", | ||
"webpack:prod:node": "webpack --env=prod --target=node --config ../../webpack.config.js", | ||
"webpack:prod:web": "webpack --env=prod --target=web --config ../../webpack.config.js" | ||
}, | ||
"dependencies": { | ||
"@hyperledger/cactus-common": "2.1.0", | ||
"@hyperledger/cactus-core": "2.1.0", | ||
"@hyperledger/cactus-core-api": "2.1.0", | ||
"@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", | ||
"@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.1.0", | ||
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", | ||
"express": "4.21.2", | ||
"run-time-error-cjs": "1.4.0", | ||
"rxjs": "7.8.1", | ||
"typescript-optional": "2.0.1", | ||
"uuid": "10.0.0" | ||
}, | ||
"devDependencies": { | ||
"@hyperledger/cactus-plugin-keychain-memory": "2.1.0", | ||
"@hyperledger/cactus-test-geth-ledger": "2.1.0", | ||
"@hyperledger/cactus-test-tooling": "2.1.0", | ||
"@types/express": "5.0.0", | ||
"@types/uuid": "10.0.0", | ||
"body-parser": "1.20.3", | ||
"fabric-network": "2.2.20", | ||
"socket.io": "4.6.2", | ||
"uuid": "10.0.0", | ||
"web3": "1.6.1", | ||
"web3-core": "1.6.1" | ||
}, | ||
"engines": { | ||
"node": ">=18", | ||
"npm": ">=6" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"browserMinified": "dist/cactus-plugin-ccmodel-hephaestus.web.umd.min.js", | ||
"mainMinified": "dist/cactus-plugin-ccmodel-hephaestus.node.umd.min.js" | ||
} |
Oops, something went wrong.