Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Lower-level API for interfacing with the NEAR Protocol via JSONRPC.

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
NotificationsYou must be signed in to change notification settings

near/near-jsonrpc-client-rs

Lower-level API for interfacing with the NEAR Protocol via JSONRPC.

Crates.ioDocumentationMIT or Apache 2.0 LicensedDependency Status

Usage

Each one of the valid JSON RPC methods are defined in themethods module.For instance, to make atx request, you start with thetx moduleand construct a request using themethods::tx::RpcTransactionStatusRequest struct.

use near_jsonrpc_client::{methods,JsonRpcClient};use near_jsonrpc_primitives::types::transactions::TransactionInfo;let mainnet_client =JsonRpcClient::connect("https://archival-rpc.mainnet.near.org");let tx_status_request = methods::tx::RpcTransactionStatusRequest{transaction_info:TransactionInfo::TransactionId{hash:"9FtHUFBQsZ2MG77K3x3MJ9wjX3UT8zE1TczCrhZEcG8U".parse()?,account_id:"miraclx.near".parse()?,},};// call a method on the server via the connected clientlet tx_status = mainnet_client.call(tx_status_request).await?;println!("{:?}", tx_status);

Check outthe examples folder for a comprehensive list of helpful demos. You can run the examples withcargo. For example:cargo run --example view_account.

Releasing

Versioning and releasing of this crate is automated and managed bycustom fork ofcargo-workspaces. To publish a new version of this crate, you can do so by bumping theversion under the[workspace.metadata.workspaces] section in thepackage manifest and submit a PR.

We have CI Infrastructure put in place to automate the process of publishing all crates once a version change has merged into master.

However, before you release, make sure theCHANGELOG is up to date and that the[Unreleased] section is present but empty.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submittedfor inclusion in the work by you, as defined in the Apache-2.0 license, shall bedual licensed as below, without any additional terms or conditions.

License

Licensed under either of

at your option.


[8]ページ先頭

©2009-2025 Movatter.jp