Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Watcher Api (WIP) #484

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ include 'quicktx'
include 'annotation-processor'
include 'hd-wallet'
include 'governance'
include 'watcher'

//CIPs
include 'cip'
Expand Down
7 changes: 7 additions & 0 deletions watcher/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Watcher

The Watcher module introduces APIs that can be used to:

- Monitor a submitted transaction for rollback
- Enable transaction chaining through a simple API
- Automatically rebuild and resubmit a transaction in case of a rollback (where possible)
14 changes: 14 additions & 0 deletions watcher/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
dependencies {
api project(':core')
}

publishing {
publications {
mavenJava(MavenPublication) {
pom {
name = 'Cardano Client Watcher'
description = 'Cardano Client Lib - Watcher Module'
}
}
}
}
Loading