-
Notifications
You must be signed in to change notification settings - Fork 0
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
add kairos deposit contract and contract-cli #26
Closed
Closed
Conversation
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
jonas089
force-pushed
the
feature/deposit-contract
branch
from
February 20, 2024 11:53
60b4d0a
to
c3e3d41
Compare
…t stable feat-2.0 (casper-node) modified: Cargo.lock modified: Cargo.toml new file: kairos-contract-cli/Cargo.lock new file: kairos-contract-cli/Cargo.toml new file: kairos-contract-cli/src/cli.rs new file: kairos-contract-cli/src/deployments.rs new file: kairos-contract-cli/src/deployments/call_create_purse.rs new file: kairos-contract-cli/src/deployments/call_incr_counter.rs new file: kairos-contract-cli/src/deployments/deploy_handler.rs new file: kairos-contract-cli/src/deployments/get_counter.rs new file: kairos-contract-cli/src/deployments/get_deposit_event.rs new file: kairos-contract-cli/src/deployments/put_deposit_session.rs new file: kairos-contract-cli/src/deployments/put_withdrawal_session.rs new file: kairos-contract-cli/src/lib.rs new file: kairos-contract-cli/src/main.rs new file: kairos-deposit-contract/build-macos-darwin-feat-2.0.sh new file: kairos-deposit-contract/build-ubuntu-feat-2.0.sh new file: kairos-deposit-contract/contract-types/Cargo.lock new file: kairos-deposit-contract/contract-types/Cargo.toml new file: kairos-deposit-contract/contract-types/src/lib.rs new file: kairos-deposit-contract/contract/.cargo/config.toml new file: kairos-deposit-contract/contract/Cargo.lock new file: kairos-deposit-contract/contract/Cargo.toml new file: kairos-deposit-contract/contract/src/address.rs new file: kairos-deposit-contract/contract/src/constants.rs new file: kairos-deposit-contract/contract/src/detail.rs new file: kairos-deposit-contract/contract/src/error.rs new file: kairos-deposit-contract/contract/src/main.rs new file: kairos-deposit-contract/deposit-session/Cargo.lock new file: kairos-deposit-contract/deposit-session/Cargo.toml new file: kairos-deposit-contract/deposit-session/src/main.rs new file: kairos-deposit-contract/malicious-reader/Cargo.lock new file: kairos-deposit-contract/malicious-reader/Cargo.toml new file: kairos-deposit-contract/malicious-reader/src/main.rs new file: kairos-deposit-contract/malicious-session/Cargo.lock new file: kairos-deposit-contract/malicious-session/Cargo.toml new file: kairos-deposit-contract/malicious-session/src/main.rs new file: kairos-deposit-contract/readme.md new file: kairos-deposit-contract/rust-toolchain.toml new file: kairos-deposit-contract/tests/Cargo.lock new file: kairos-deposit-contract/tests/Cargo.toml new file: kairos-deposit-contract/tests/rust-toolchain.toml new file: kairos-deposit-contract/tests/src/integration_tests.rs new file: kairos-deposit-contract/tests/src/test_fixture.rs new file: kairos-deposit-contract/tests/src/test_fixture/utils.rs new file: kairos-deposit-contract/withdrawal-session/Cargo.lock new file: kairos-deposit-contract/withdrawal-session/Cargo.toml new file: kairos-deposit-contract/withdrawal-session/src/main.rs
jonas089
force-pushed
the
feature/deposit-contract
branch
from
February 20, 2024 12:01
c3e3d41
to
a33af39
Compare
There are a lot of warnings being output when building with cargo. Could you remove unused imports, and follow the rust style-guide when naming enum variants, etc. |
I'll use clippy to get rid of warnings @marijanp. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Kairos deposit contract and kairos-contract-cli
For instructions on how to build and unit-test the contract, navigate to
kairos-deposit-contract/readme.md
The kairos-contract-cli can be used to interact with the contract once it has been deployed to cctl (see cspr-rad/kairos-cctl-env).