To develop applications on top of the forge, you shall pick up a SDK. Forge SDK is intended to make the interaction with the chain built by Forge as easy as possible. All SDK APIs are organized into the following categories:
For more information, please see: Forge SDK overview
forge cli
by $ npm install -g @arcblock/forge-cli
. Details.2.Install Rust development environment.
curl https://sh.rustup.rs -sSf | sh
, details3.Create your own Rust project.
$ cargo new demo
to create rust project names demo
. Dependencies
of Cargo.toml
rust
[dependencies]
forge_wallet = "^0.1.1"
forge_grpc = "^0.1.1"
forge_sdk
in main.rs
or lib.rs
rust
extern crate forge_grpc;
extern crate forge_wallet;
Details as rustsdkexample4.Coding you Rust project. Example as follows:
rust
let chain_address = "127.0.0.1:28210";
let chain_name = "chain_1";
connection::add_connection(chain_name, chain_address)?;
rust
forge_grpc::get_chain_info(Some(chain_name.to_string()))?;
Declare wallet: ```rust use forgegrpc::transaction; // -.create two wallets: alice, bob let alice = forgewallet::Wallet::createdefaultwallet()?; let bob = forgewallet::Wallet::createdefault_wallet()?;
// -.declare alice on chain let mut request = transaction::buildrequest::Request { wallet: alice.clone(), forgename: Some(chainname.tostring()), ..Default::default() }; let mut declare = transaction::builditx::Declare { moniker: Some(String::from("alice")), ..Default::default() }; forgegrpc::declare(&request, &declare)?;
// -.declare bob on chain request.wallet = bob.clone(); declare.moniker = Some(String::from("bob01")); let resp = forgegrpc::declare(&request, &declare)?; ```
rust
request.wallet = alice.clone();
forge_grpc::poke(&request)?;
rust
let transfer_itx = transaction::build_itx::Transfer {
to: Some(bob.address.to_owned()),
value: Some(1.0),
..Default::default()
};
forge_grpc::transfer(&request, &transfer_itx)?;
forge_web
default address 127.0.0.1:8210
.Details as rustsdkexample
forge_wallet: help you create local account, verify signature, etc. APIs as follows:
create_default_wallet() -> Result<Wallet>
from_wallet_type(w_type: &WalletType) -> Result<Wallet>
from_pk(pk: &[u8], w_type: &WalletType) -> Result<Wallet>
from_sk(sk: &[u8], w_type: &WalletType) -> Result<Wallet>
verify(&self, message: &[u8], signature: &[u8]) -> Result<bool>
hash(&self, message: &[u8]) -> Result<Vec<u8>>
sign(&self, message: &[u8]) -> Result<Vec<u8>>
etc
forge_grpc: help you get connection with forge chain, search sth from chain, send txs to forge chain, etc.
get_chain_info(chain_name: Option<String>)
get_chain_id(chain_name: Option<String>)
get_net_info(chain_name: Option<String>)
get_node_info(chain_name: Option<String>)
create_wallet(request: &wallet_client::CreateWallet, forge_name: Option<String>)
recover_wallet(request: &wallet_client::RecoverWallet, forge_name: Option<String>)
remove_wallet(request: &wallet_client::RemoveWallet, forge_name: Option<String>)
declare(request: &Request, dec: &build_itx::Declare)
poke(request: &Request)
transfer(request: &Request, transfer: &build_itx::Transfer)
create_asset(request: &Request, itx: &build_itx::CreateAsset)
etc
forge_util: provide some help apis, such as save a json to local
, etc.
forge did
from pk, or sk, or pk hash. forge did
example did:abt:zNYm1gM23ZGHNYDYyBwSaywzTqLKoj4WuTeC
.blake2b
,keccak
, sha2
, sha3
.ed25519
,secp256k1
.ed25519
.