forked from hyperledger-cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cactus-api-client): add support for plain socketio validators in…
… api-server and api-client Full description of changes and planning log available in hyperledger-cacti#1602. In general, this commit adds two new components - one for communicating with plain socketio validators using socketio interface, and verifier that implements similar features as socketio-server verifier. Closes: hyperledger-cacti#1602 Signed-off-by: Michal Bajer <michal.bajer@fujitsu.com>
- Loading branch information
Showing
15 changed files
with
1,777 additions
and
6 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
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
export * from "./public-api"; | ||
export { ApiClient } from "./api-client"; | ||
export { DefaultConsortiumProvider } from "./default-consortium-provider"; |
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 |
---|---|---|
@@ -1,2 +1,8 @@ | ||
export { ApiClient } from "./api-client"; | ||
export { DefaultConsortiumProvider } from "./default-consortium-provider"; | ||
export { | ||
SocketIOApiClient, | ||
SocketLedgerEvent, | ||
SocketIOApiClientOptions, | ||
} from "./socketio-api-client"; | ||
export { Verifier, VerifierEventListener } from "./verifier"; |
Oops, something went wrong.