-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use verify account signature function from SDK
- Loading branch information
Showing
8 changed files
with
32 additions
and
77 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
4 changes: 4 additions & 0 deletions
4
compliant-reward-distribution/indexer-and-server/CHANGELOG.md
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
12 changes: 6 additions & 6 deletions
12
compliant-reward-distribution/indexer-and-server/Cargo.lock
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "indexer" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
|
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
Submodule concordium-rust-sdk
updated
28 files
+2 −2 | .github/workflows/build-and-test.yaml | |
+10 −1 | CHANGELOG.md | |
+3 −13 | Cargo.toml | |
+2 −9 | README.md | |
+1 −1 | concordium-base | |
+1 −1 | examples/find-account.rs | |
+0 −102 | examples/monitor-postgres.rs | |
+0 −81 | examples/postgres.rs | |
+1 −1 | examples/transfer-indexer.rs | |
+0 −1 | src/cis0.rs | |
+1 −1 | src/cis2/mod.rs | |
+2 −0 | src/cis3.rs | |
+1 −1 | src/cis4.rs | |
+1 −0 | src/constants.rs | |
+11 −10 | src/contract_client.rs | |
+2 −0 | src/endpoints.rs | |
+7 −40 | src/lib.rs | |
+0 −368 | src/postgres.rs | |
+1,183 −0 | src/signatures.rs | |
+1 −1 | src/smart_contracts/mod.rs | |
+20 −4 | src/types/mod.rs | |
+0 −1 | src/types/smart_contracts.rs | |
+20 −0 | src/types/summary_helper.rs | |
+6 −0 | src/v2/conversions.rs | |
+26 −5 | src/v2/generated/concordium.v2.rs | |
+8 −8 | src/v2/mod.rs | |
+1 −1 | src/v2/proto_schema_version.rs | |
+10 −2 | src/web3id.rs |