Skip to content

Commit

Permalink
readme fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed Nov 6, 2024
1 parent 760acef commit 3b92aa0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 19 deletions.
2 changes: 1 addition & 1 deletion chain/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ readme = "README.md"
repository = "https://github.com/multiversx/mx-sdk-rs"
homepage = "https://multiversx.com/"
documentation = "https://docs.multiversx.com/"
description = "MultiversX VM interfaces and base types"
description = "MultiversX chain interfaces, constants, and base types"
keywords = ["multiversx", "blockchain", "vm", "tools"]
categories = ["cryptography::cryptocurrencies", "development-tools::debugging"]

Expand Down
15 changes: 1 addition & 14 deletions sdk/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,8 @@

General purpose collection of tools & SDKs to interact with the MultiversX blockchain from Rust projects.

## Example
It provides communication via the MultiversX gateway API.

```rust
use multiversx_sdk::blockchain::rpc::{CommunicationProxy, DEVNET_GATEWAY};

#[tokio::test]
async fn get_network_config() {
let blockchain = CommunicationProxy::new(DEVNET_GATEWAY.to_string());
let network_config = blockchain.get_network_config().await.unwrap();

println!("network_config: {:?}", network_config)
}
```

More examples in `./examples`.

## Acknowledgements

Expand Down
4 changes: 0 additions & 4 deletions sdk/http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,3 @@ async fn get_network_config() {
```

More examples in `./examples`.

## Acknowledgements

Project originally started by [Bicarus labs](https://github.com/bicarus-labs/elrond-sdk-erdrs), later integrated into the MultiversX official codebase.

0 comments on commit 3b92aa0

Please sign in to comment.