-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #154 from manuelmauro/abi
Support ABI
- Loading branch information
Showing
18 changed files
with
3,726 additions
and
15 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
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,24 @@ | ||
[package] | ||
authors = ["Manuel Mauro <[email protected]>", "Ivan Schuetz <[email protected]>",] | ||
description = "Application Binary Interface (ABI) to invoke smart contract methods with a standarized interface." | ||
edition = "2018" | ||
keywords = ["Algorand", "sdk"] | ||
license = "MIT" | ||
name = "algonaut_abi" | ||
repository = "https://github.com/manuelmauro/algonaut" | ||
version = "0.3.0" | ||
|
||
[dependencies] | ||
algonaut_core = {path = "../algonaut_core", version = "0.3.0"} | ||
serde = {version = "1.0", features = ["derive"]} | ||
regex = "1.5.5" | ||
lazy_static = "1.4.0" | ||
sha2 = "0.10.1" | ||
derive_more = "0.99.13" | ||
thiserror = "1.0.23" | ||
num-bigint = "0.4.3" | ||
|
||
[dev-dependencies] | ||
serde_json = "1.0.40" | ||
rand = "0.8.5" | ||
num-bigint = { version = "0.4.3", features = ["rand"] } |
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 @@ | ||
# algonaut_abi | ||
|
||
For more information refer to [algonaut](https://crates.io/crates/algonaut) crate. |
Oops, something went wrong.