From 0d468266c4da53413867b0058a5400507f1eea1a Mon Sep 17 00:00:00 2001 From: waymobetta Date: Tue, 10 Dec 2024 15:00:03 -0800 Subject: [PATCH 1/2] add .gitignore, readme, license, update description --- .gitignore | 0 Cargo.toml | 4 +++- README.md | 8 ++++++++ 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/Cargo.toml b/Cargo.toml index 0a5e361..244b5eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,9 @@ [package] -name = "sdk" +name = "arch_sdk" version = "0.1.0" edition = "2021" +description = "A Rust library for providing data types, constants, RPC methods and helper functions for programs that run inside the Arch Virtual Machine." +license = "MIT" [dependencies] arch_program = { workspace = true } diff --git a/README.md b/README.md new file mode 100644 index 0000000..060f033 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# arch-sdk + +[crates.io](https://crates.io/crates/arch-sdk) +[docs.rs](https://docs.rs/arch-sdk) + +#### License + +[MIT](https://github.com/Arch-Network/arch-sdk/blob/main/Cargo.toml#L6C1-L6C16) From 06224b8ead7e3c9d09d609dd12563e03dbde1bd8 Mon Sep 17 00:00:00 2001 From: waymobetta Date: Tue, 10 Dec 2024 16:42:38 -0800 Subject: [PATCH 2/2] add description --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 060f033..95ab057 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,10 @@ [crates.io](https://crates.io/crates/arch-sdk) [docs.rs](https://docs.rs/arch-sdk) +A Rust library for providing data types, constants, RPC methods and helper functions for programs that run inside the Arch Virtual Machine. + +Includes utilities for signatures, preparing fees and managing transactions. + #### License [MIT](https://github.com/Arch-Network/arch-sdk/blob/main/Cargo.toml#L6C1-L6C16)