#provider #near #abstraction #blockchain #status #json-rpc #transaction

near-providers

High-level abstractions for interacting with the NEAR blockchain, simplifying JSON RPC calls

1 unstable release

0.1.0-alpha Mar 20, 2024

#98 in #near

Download history 147/week @ 2024-03-19 5/week @ 2024-03-26 18/week @ 2024-04-02

170 downloads per month
Used in 2 crates

MIT/Apache

27KB
203 lines

near-providers

The near-providers crate provides a high-level abstraction over the near-jsonrpc-client for interacting with the NEAR blockchain. It simplifies the process of sending transactions, querying chain status, and performing other chain-related tasks by encapsulating the JSON RPC calls into easy-to-use methods.

Features

  • Simplified interaction with the NEAR blockchain.
  • Methods for querying blockchain status, sending transactions, and fetching transaction or block information.
  • Support for both synchronous and asynchronous transactions.
  • Implementation of the Provider trait to allow for easy extension with more providers in the future.

Getting Started

Prerequisites

This crate requires Rust and Cargo. Ensure you have the latest version of Rust installed. You can install Rust using rustup.

Adding near-providers to Your Crate

To use near-providers, add it as a dependency in your Cargo.toml:

[dependencies]
near-providers = "0.1.0-alpha"

Usage

Below is an example of creating a new account, deploying a contract, and querying account state:

use near_providers::JsonRpcProvider;

#[tokio::main]
async fn main() {
    let provider = JsonRpcProvider::new("https://rpc.testnet.near.org");
    
    match provider.status().await {
        Ok(status) => println!("Chain status: {:?}", status),
        Err(e) => eprintln!("Error fetching chain status: {:?}", e),
    }
}

Examples

The crate includes examples that demonstrate how to use various features. To run an example, use the following command:

cargo run --example <example_name>

For instance, to test the send_transaction function:

cargo run --example contract_change_method_commit

Contributing

We welcome contributions to the near-providers crate! Please feel free to submit pull requests or open issues to suggest improvements or add new features.

Dependencies

~32–50MB
~770K SLoC